Repository: teacherpeterpan/Logic-LLM Branch: main Commit: d29f1e5e7203 Files: 855 Total size: 27.7 MB Directory structure: gitextract_0ng_n_ee/ ├── .gitignore ├── LICENSE ├── README.md ├── baselines/ │ ├── evaluation.py │ ├── gpt3_baseline.py │ ├── icl_examples/ │ │ ├── AR-LSAT_CoT.txt │ │ ├── AR-LSAT_Direct.txt │ │ ├── FOLIO_CoT.txt │ │ ├── FOLIO_Direct.txt │ │ ├── LogicalDeduction_CoT.txt │ │ ├── LogicalDeduction_Direct.txt │ │ ├── ProntoQA_CoT.txt │ │ ├── ProntoQA_Direct.txt │ │ ├── ProofWriter_CoT.txt │ │ └── ProofWriter_Direct.txt │ └── utils.py ├── data/ │ ├── AR-LSAT/ │ │ ├── dev.json │ │ ├── test.json │ │ └── train.json │ ├── FOLIO/ │ │ ├── dev.json │ │ └── train.json │ ├── LogicalDeduction/ │ │ ├── dev.json │ │ └── train.json │ ├── ProntoQA/ │ │ └── dev.json │ └── ProofWriter/ │ ├── dev.json │ ├── test.json │ └── train.json ├── models/ │ ├── backup_answer_generation.py │ ├── evaluation.py │ ├── logic_inference.py │ ├── logic_program.py │ ├── prompts/ │ │ ├── AR-LSAT-long-no-grounding.txt │ │ ├── AR-LSAT-long.txt │ │ ├── AR-LSAT.txt │ │ ├── FOLIO.txt │ │ ├── LogicalDeduction.txt │ │ ├── ProntoQA.txt │ │ ├── ProofWriter.txt │ │ ├── self-correct-AR-LSAT.txt │ │ └── self-correct-FOLIO.txt │ ├── self_refinement.py │ ├── symbolic_solvers/ │ │ ├── Prover9/ │ │ │ ├── .gdb_history │ │ │ ├── COPYING │ │ │ ├── Changelog │ │ │ ├── Makefile │ │ │ ├── README.AMD_64 │ │ │ ├── README.first │ │ │ ├── README.make │ │ │ ├── README.release-reminder │ │ │ ├── TODO/ │ │ │ │ ├── ADAM_2007_loose_ends │ │ │ │ ├── README │ │ │ │ ├── factor.in │ │ │ │ ├── mace4-segv.in │ │ │ │ └── temp │ │ │ ├── VERSION_DATE.h │ │ │ ├── apps.examples/ │ │ │ │ ├── BA-sheffer │ │ │ │ ├── MOL-cand.296 │ │ │ │ ├── Makefile │ │ │ │ ├── OL.in │ │ │ │ ├── README │ │ │ │ ├── backup.Jan14/ │ │ │ │ │ ├── BA-sheffer.out │ │ │ │ │ ├── MOL-cand.238 │ │ │ │ │ ├── OL.6 │ │ │ │ │ ├── OL.8 │ │ │ │ │ ├── OL.8.out │ │ │ │ │ ├── OL.8.upper-covers │ │ │ │ │ ├── lattice-sax.rewritten │ │ │ │ │ ├── meet-join-equations.out │ │ │ │ │ ├── mjc01s-equations.out │ │ │ │ │ ├── qg.iso3 │ │ │ │ │ └── qg.out3 │ │ │ │ ├── backup.Mar10/ │ │ │ │ │ ├── BA-sheffer.out │ │ │ │ │ ├── MOL-cand.238 │ │ │ │ │ ├── OL.6 │ │ │ │ │ ├── OL.8 │ │ │ │ │ ├── OL.8.out │ │ │ │ │ ├── OL.8.upper-covers │ │ │ │ │ ├── lattice-sax.rewritten │ │ │ │ │ ├── meet-join-equations.out │ │ │ │ │ ├── mjc01s-equations.out │ │ │ │ │ ├── qg.iso3 │ │ │ │ │ └── qg.out3 │ │ │ │ ├── distributivity │ │ │ │ ├── err │ │ │ │ ├── index.html │ │ │ │ ├── interp.OL6 │ │ │ │ ├── lattice-sax │ │ │ │ ├── lattice-sax.id-check │ │ │ │ ├── lattice.rules │ │ │ │ ├── meet-join-equations │ │ │ │ ├── mjc01s-equations │ │ │ │ ├── non-MOL-OML │ │ │ │ ├── qg.in │ │ │ │ ├── run-all │ │ │ │ └── sed1 │ │ │ ├── apps.src/ │ │ │ │ ├── .gdb_history │ │ │ │ ├── H65d.givens │ │ │ │ ├── Makefile │ │ │ │ ├── README.directproof │ │ │ │ ├── README.solaris │ │ │ │ ├── TAGS │ │ │ │ ├── awk1 │ │ │ │ ├── clausefilter.c │ │ │ │ ├── clausetester.c │ │ │ │ ├── complex.c │ │ │ │ ├── demods │ │ │ │ ├── demods2 │ │ │ │ ├── directproof.c │ │ │ │ ├── dprofiles.c │ │ │ │ ├── g2.model │ │ │ │ ├── gen_trc_defs.c │ │ │ │ ├── h1.in │ │ │ │ ├── h1.out │ │ │ │ ├── idfilter.c │ │ │ │ ├── interp3.dtd │ │ │ │ ├── interp3.xsl │ │ │ │ ├── interpfilter.c │ │ │ │ ├── interpformat.c │ │ │ │ ├── isofilter.c │ │ │ │ ├── isofilter0.c │ │ │ │ ├── isofilter2.c │ │ │ │ ├── latfilter.c │ │ │ │ ├── lt.dist │ │ │ │ ├── lt.m3 │ │ │ │ ├── miniscope.c │ │ │ │ ├── mirror-flip.c │ │ │ │ ├── notes │ │ │ │ ├── old/ │ │ │ │ │ ├── README │ │ │ │ │ ├── cdprover.c │ │ │ │ │ ├── deny.c │ │ │ │ │ ├── latgen.c │ │ │ │ │ ├── modelformat.c │ │ │ │ │ └── undeny.c │ │ │ │ ├── olfilter.c │ │ │ │ ├── perm3.c │ │ │ │ ├── problems │ │ │ │ ├── proof3.dtd │ │ │ │ ├── proof3.xsl │ │ │ │ ├── prooftrans.c │ │ │ │ ├── py1 │ │ │ │ ├── renamer.c │ │ │ │ ├── rewriter.c │ │ │ │ ├── rewriter2.c │ │ │ │ ├── sed.db-to-queries │ │ │ │ ├── sed1 │ │ │ │ ├── sed2 │ │ │ │ ├── sig.py │ │ │ │ ├── sigtest.c │ │ │ │ ├── t1.in │ │ │ │ ├── test-directproof/ │ │ │ │ │ ├── 3.1.direct │ │ │ │ │ ├── 3.1.out │ │ │ │ │ ├── 3.6.direct │ │ │ │ │ ├── 3.6.out │ │ │ │ │ ├── 3b.direct │ │ │ │ │ ├── 3b.prf │ │ │ │ │ ├── AD-gt.direct │ │ │ │ │ ├── AD-gt.out │ │ │ │ │ ├── bw.direct │ │ │ │ │ ├── bw.out │ │ │ │ │ ├── dist-short-long.direct │ │ │ │ │ ├── dist-short-long.out │ │ │ │ │ ├── omlsax2.direct │ │ │ │ │ ├── omlsax2.out │ │ │ │ │ ├── rba.direct │ │ │ │ │ ├── rba.out │ │ │ │ │ ├── results-on-std-examples │ │ │ │ │ ├── temp │ │ │ │ │ └── temp0 │ │ │ │ ├── test_clause_eval.c │ │ │ │ ├── test_complex.c │ │ │ │ ├── unfast.c │ │ │ │ └── upper-covers.c │ │ │ ├── bin/ │ │ │ │ ├── attack │ │ │ │ ├── autosketches4 │ │ │ │ ├── clausefilter │ │ │ │ ├── clausetester │ │ │ │ ├── complex │ │ │ │ ├── directproof │ │ │ │ ├── dprofiles │ │ │ │ ├── fof-prover9 │ │ │ │ ├── gen_trc_defs │ │ │ │ ├── get_givens │ │ │ │ ├── get_interps │ │ │ │ ├── get_kept │ │ │ │ ├── gvizify │ │ │ │ ├── idfilter │ │ │ │ ├── interpfilter │ │ │ │ ├── interpformat │ │ │ │ ├── isofilter │ │ │ │ ├── isofilter0 │ │ │ │ ├── isofilter2 │ │ │ │ ├── ladr_to_tptp │ │ │ │ ├── latfilter │ │ │ │ ├── looper │ │ │ │ ├── mace4 │ │ │ │ ├── miniscope │ │ │ │ ├── mirror-flip │ │ │ │ ├── newauto │ │ │ │ ├── newsax │ │ │ │ ├── olfilter │ │ │ │ ├── perm3 │ │ │ │ ├── proof3fo.xsl │ │ │ │ ├── prooftrans │ │ │ │ ├── prover9 │ │ │ │ ├── prover9-mace4 │ │ │ │ ├── renamer │ │ │ │ ├── rewriter │ │ │ │ ├── sigtest │ │ │ │ ├── test_clause_eval │ │ │ │ ├── test_complex │ │ │ │ ├── tptp_to_ladr │ │ │ │ ├── unfast │ │ │ │ └── upper-covers │ │ │ ├── bob/ │ │ │ │ ├── ChangelogBV │ │ │ │ ├── ioutil.c │ │ │ │ ├── ioutil.h │ │ │ │ ├── just.c │ │ │ │ └── prooftrans.c │ │ │ ├── ladr/ │ │ │ │ ├── Changelog.old │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile~ │ │ │ │ ├── README.ac-redundancy │ │ │ │ ├── README.char-types │ │ │ │ ├── README.kbo │ │ │ │ ├── README.termorder │ │ │ │ ├── TAGS │ │ │ │ ├── a.out │ │ │ │ ├── ac_redun.c │ │ │ │ ├── ac_redun.h │ │ │ │ ├── ac_redun.o │ │ │ │ ├── accanon.c │ │ │ │ ├── accanon.h │ │ │ │ ├── accanon.o │ │ │ │ ├── attrib.c │ │ │ │ ├── attrib.h │ │ │ │ ├── attrib.o │ │ │ │ ├── avltree.c │ │ │ │ ├── avltree.h │ │ │ │ ├── avltree.o │ │ │ │ ├── backdemod.c │ │ │ │ ├── backdemod.h │ │ │ │ ├── backdemod.o │ │ │ │ ├── banner.c │ │ │ │ ├── banner.h │ │ │ │ ├── banner.o │ │ │ │ ├── basic.c │ │ │ │ ├── basic.h │ │ │ │ ├── basic.o │ │ │ │ ├── btm.c │ │ │ │ ├── btm.h │ │ │ │ ├── btm.o │ │ │ │ ├── btu.c │ │ │ │ ├── btu.h │ │ │ │ ├── btu.o │ │ │ │ ├── clash.c │ │ │ │ ├── clash.h │ │ │ │ ├── clash.o │ │ │ │ ├── clause_eval.c │ │ │ │ ├── clause_eval.h │ │ │ │ ├── clause_eval.o │ │ │ │ ├── clause_misc.c │ │ │ │ ├── clause_misc.h │ │ │ │ ├── clause_misc.o │ │ │ │ ├── clauseid.c │ │ │ │ ├── clauseid.h │ │ │ │ ├── clauseid.o │ │ │ │ ├── clauses.c │ │ │ │ ├── clauses.c~ │ │ │ │ ├── clauses.h │ │ │ │ ├── clauses.h.bak │ │ │ │ ├── clauses.o │ │ │ │ ├── clausify.c │ │ │ │ ├── clausify.h │ │ │ │ ├── clausify.o │ │ │ │ ├── clist.c │ │ │ │ ├── clist.h │ │ │ │ ├── clist.o │ │ │ │ ├── clock.c │ │ │ │ ├── clock.h │ │ │ │ ├── clock.o │ │ │ │ ├── cnf.c │ │ │ │ ├── cnf.h │ │ │ │ ├── cnf.o │ │ │ │ ├── compile │ │ │ │ ├── complex.c │ │ │ │ ├── complex.h │ │ │ │ ├── complex.o │ │ │ │ ├── compress.c │ │ │ │ ├── compress.h │ │ │ │ ├── compress.o │ │ │ │ ├── cycle │ │ │ │ ├── definitions.c │ │ │ │ ├── definitions.h │ │ │ │ ├── definitions.o │ │ │ │ ├── demod.c │ │ │ │ ├── demod.h │ │ │ │ ├── demod.o │ │ │ │ ├── di_tree.c │ │ │ │ ├── di_tree.h │ │ │ │ ├── di_tree.o │ │ │ │ ├── dioph.c │ │ │ │ ├── dioph.h │ │ │ │ ├── dioph.o │ │ │ │ ├── discrim.c │ │ │ │ ├── discrim.h │ │ │ │ ├── discrim.o │ │ │ │ ├── discrimb.c │ │ │ │ ├── discrimb.h │ │ │ │ ├── discrimb.o │ │ │ │ ├── discrimw.c │ │ │ │ ├── discrimw.h │ │ │ │ ├── discrimw.o │ │ │ │ ├── dollar.c │ │ │ │ ├── dollar.c.save │ │ │ │ ├── dollar.h │ │ │ │ ├── dollar.o │ │ │ │ ├── dots │ │ │ │ ├── error │ │ │ │ ├── fastparse.c │ │ │ │ ├── fastparse.h │ │ │ │ ├── fastparse.o │ │ │ │ ├── fatal.c │ │ │ │ ├── fatal.h │ │ │ │ ├── fatal.o │ │ │ │ ├── features.c │ │ │ │ ├── features.h │ │ │ │ ├── features.o │ │ │ │ ├── flatdemod.c │ │ │ │ ├── flatdemod.h │ │ │ │ ├── flatdemod.o │ │ │ │ ├── flatterm.c │ │ │ │ ├── flatterm.h │ │ │ │ ├── flatterm.o │ │ │ │ ├── formula.c │ │ │ │ ├── formula.c.work │ │ │ │ ├── formula.h │ │ │ │ ├── formula.o │ │ │ │ ├── fpa.c │ │ │ │ ├── fpa.h │ │ │ │ ├── fpa.o │ │ │ │ ├── fpalist.c │ │ │ │ ├── fpalist.h │ │ │ │ ├── fpalist.o │ │ │ │ ├── glist.c │ │ │ │ ├── glist.h │ │ │ │ ├── glist.o │ │ │ │ ├── hash.c │ │ │ │ ├── hash.h │ │ │ │ ├── hash.o │ │ │ │ ├── header.h │ │ │ │ ├── hints.c │ │ │ │ ├── hints.h │ │ │ │ ├── hints.o │ │ │ │ ├── html/ │ │ │ │ │ ├── ac_redun.html │ │ │ │ │ ├── accanon.html │ │ │ │ │ ├── attrib.html │ │ │ │ │ ├── avltree.html │ │ │ │ │ ├── backdemod.html │ │ │ │ │ ├── banner.html │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── btm.html │ │ │ │ │ ├── btu.html │ │ │ │ │ ├── clash.html │ │ │ │ │ ├── clause_eval.html │ │ │ │ │ ├── clause_misc.html │ │ │ │ │ ├── clauseid.html │ │ │ │ │ ├── clauses.html │ │ │ │ │ ├── clausify.html │ │ │ │ │ ├── clist.html │ │ │ │ │ ├── clock.html │ │ │ │ │ ├── cnf.html │ │ │ │ │ ├── compress.html │ │ │ │ │ ├── definitions.html │ │ │ │ │ ├── demod.html │ │ │ │ │ ├── di_tree.html │ │ │ │ │ ├── dioph.html │ │ │ │ │ ├── discrim.html │ │ │ │ │ ├── discrimb.html │ │ │ │ │ ├── discrimw.html │ │ │ │ │ ├── fastparse.html │ │ │ │ │ ├── fatal.html │ │ │ │ │ ├── features.html │ │ │ │ │ ├── flatdemod.html │ │ │ │ │ ├── flatterm.html │ │ │ │ │ ├── formula.html │ │ │ │ │ ├── fpa.html │ │ │ │ │ ├── fpalist.html │ │ │ │ │ ├── glist.html │ │ │ │ │ ├── hash.html │ │ │ │ │ ├── hints.html │ │ │ │ │ ├── ibuffer.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── int_code.html │ │ │ │ │ ├── interp.html │ │ │ │ │ ├── ioutil.html │ │ │ │ │ ├── ivy.html │ │ │ │ │ ├── just.html │ │ │ │ │ ├── lindex.html │ │ │ │ │ ├── listterm.html │ │ │ │ │ ├── literals.html │ │ │ │ │ ├── maximal.html │ │ │ │ │ ├── memory.html │ │ │ │ │ ├── mindex.html │ │ │ │ │ ├── multiset.html │ │ │ │ │ ├── nonport.html │ │ │ │ │ ├── options.html │ │ │ │ │ ├── order.html │ │ │ │ │ ├── paramod.html │ │ │ │ │ ├── parautil.html │ │ │ │ │ ├── parse.html │ │ │ │ │ ├── pindex.html │ │ │ │ │ ├── random.html │ │ │ │ │ ├── resolve.html │ │ │ │ │ ├── sos.html │ │ │ │ │ ├── std_options.html │ │ │ │ │ ├── strbuf.html │ │ │ │ │ ├── string.html │ │ │ │ │ ├── subsume.html │ │ │ │ │ ├── symbols.html │ │ │ │ │ ├── term.html │ │ │ │ │ ├── termflag.html │ │ │ │ │ ├── termorder.html │ │ │ │ │ ├── tlist.html │ │ │ │ │ ├── top_input.html │ │ │ │ │ ├── topform.html │ │ │ │ │ ├── tptp_trans.html │ │ │ │ │ ├── unify.html │ │ │ │ │ ├── weight.html │ │ │ │ │ └── xproofs.html │ │ │ │ ├── ibuffer.c │ │ │ │ ├── ibuffer.h │ │ │ │ ├── ibuffer.o │ │ │ │ ├── index.h │ │ │ │ ├── index.html.master │ │ │ │ ├── int_code.c │ │ │ │ ├── int_code.c~ │ │ │ │ ├── int_code.h │ │ │ │ ├── int_code.o │ │ │ │ ├── interp.c │ │ │ │ ├── interp.h │ │ │ │ ├── interp.o │ │ │ │ ├── ioutil.c │ │ │ │ ├── ioutil.h │ │ │ │ ├── ioutil.o │ │ │ │ ├── ivy.c │ │ │ │ ├── ivy.h │ │ │ │ ├── ivy.o │ │ │ │ ├── just.c │ │ │ │ ├── just.h │ │ │ │ ├── just.o │ │ │ │ ├── kol.pl │ │ │ │ ├── kol.py │ │ │ │ ├── ladr.h │ │ │ │ ├── libladr.a │ │ │ │ ├── lindex.c │ │ │ │ ├── lindex.h │ │ │ │ ├── lindex.o │ │ │ │ ├── listterm.c │ │ │ │ ├── listterm.h │ │ │ │ ├── listterm.o │ │ │ │ ├── literals.c │ │ │ │ ├── literals.h │ │ │ │ ├── literals.o │ │ │ │ ├── maximal.c │ │ │ │ ├── maximal.h │ │ │ │ ├── maximal.o │ │ │ │ ├── memory.c │ │ │ │ ├── memory.c~ │ │ │ │ ├── memory.h │ │ │ │ ├── memory.o │ │ │ │ ├── mindex.c │ │ │ │ ├── mindex.h │ │ │ │ ├── mindex.o │ │ │ │ ├── multiset.c │ │ │ │ ├── multiset.h │ │ │ │ ├── multiset.o │ │ │ │ ├── nonport.c │ │ │ │ ├── nonport.h │ │ │ │ ├── nonport.o │ │ │ │ ├── options.c │ │ │ │ ├── options.h │ │ │ │ ├── options.o │ │ │ │ ├── order.c │ │ │ │ ├── order.h │ │ │ │ ├── order.o │ │ │ │ ├── paramod.c │ │ │ │ ├── paramod.h │ │ │ │ ├── paramod.o │ │ │ │ ├── parautil.c │ │ │ │ ├── parautil.h │ │ │ │ ├── parautil.o │ │ │ │ ├── parse.c │ │ │ │ ├── parse.h │ │ │ │ ├── parse.o │ │ │ │ ├── pindex.c │ │ │ │ ├── pindex.h │ │ │ │ ├── pindex.o │ │ │ │ ├── pub │ │ │ │ ├── random.c │ │ │ │ ├── random.h │ │ │ │ ├── random.o │ │ │ │ ├── resolve.c │ │ │ │ ├── resolve.h │ │ │ │ ├── resolve.o │ │ │ │ ├── save/ │ │ │ │ │ ├── attrib.c │ │ │ │ │ ├── btm.c │ │ │ │ │ ├── btu.c │ │ │ │ │ ├── call_weight.c │ │ │ │ │ ├── clash.c │ │ │ │ │ ├── clause.c │ │ │ │ │ ├── clist.c │ │ │ │ │ ├── cnf.c.alarm │ │ │ │ │ ├── commands.c │ │ │ │ │ ├── commands.h │ │ │ │ │ ├── commands2.c │ │ │ │ │ ├── detach.c │ │ │ │ │ ├── detach.h │ │ │ │ │ ├── detach.h.bak │ │ │ │ │ ├── detach.o │ │ │ │ │ ├── discrim.c │ │ │ │ │ ├── features.c │ │ │ │ │ ├── formula.c │ │ │ │ │ ├── fpa.c │ │ │ │ │ ├── fpalist.c │ │ │ │ │ ├── fsyms_clist │ │ │ │ │ ├── glist.c │ │ │ │ │ ├── goals_to_denials │ │ │ │ │ ├── hash.c │ │ │ │ │ ├── interp.c │ │ │ │ │ ├── interp_remove_skolems │ │ │ │ │ ├── just.c │ │ │ │ │ ├── lex_compare │ │ │ │ │ ├── lindex.c │ │ │ │ │ ├── mindex.c │ │ │ │ │ ├── options.c │ │ │ │ │ ├── parse.c │ │ │ │ │ ├── pindex.c │ │ │ │ │ ├── printing │ │ │ │ │ ├── read_tptp_file.c │ │ │ │ │ ├── sos.c │ │ │ │ │ ├── sos.c.old │ │ │ │ │ ├── sos.h │ │ │ │ │ ├── sos.h~ │ │ │ │ │ ├── str_toupper │ │ │ │ │ ├── strbuf.c │ │ │ │ │ ├── term.c │ │ │ │ │ ├── unify.c │ │ │ │ │ ├── weight1.c │ │ │ │ │ └── weight1.h │ │ │ │ ├── sed.1 │ │ │ │ ├── sed.symbols │ │ │ │ ├── sed1 │ │ │ │ ├── sed2 │ │ │ │ ├── sed3 │ │ │ │ ├── std_options.c │ │ │ │ ├── std_options.h │ │ │ │ ├── std_options.o │ │ │ │ ├── strbuf.c │ │ │ │ ├── strbuf.h │ │ │ │ ├── strbuf.o │ │ │ │ ├── string.c │ │ │ │ ├── string.h │ │ │ │ ├── string.o │ │ │ │ ├── subsume.c │ │ │ │ ├── subsume.h │ │ │ │ ├── subsume.o │ │ │ │ ├── symbols.c │ │ │ │ ├── symbols.c~ │ │ │ │ ├── symbols.h │ │ │ │ ├── symbols.o │ │ │ │ ├── t1.in │ │ │ │ ├── temp │ │ │ │ ├── temp25 │ │ │ │ ├── term.c │ │ │ │ ├── term.h │ │ │ │ ├── term.o │ │ │ │ ├── termflag.c │ │ │ │ ├── termflag.h │ │ │ │ ├── termflag.o │ │ │ │ ├── termorder.c │ │ │ │ ├── termorder.h │ │ │ │ ├── termorder.o │ │ │ │ ├── test.c │ │ │ │ ├── tlist.c │ │ │ │ ├── tlist.h │ │ │ │ ├── tlist.o │ │ │ │ ├── top_input.c │ │ │ │ ├── top_input.h │ │ │ │ ├── top_input.o │ │ │ │ ├── topform.c │ │ │ │ ├── topform.h │ │ │ │ ├── topform.o │ │ │ │ ├── tptp_trans.c │ │ │ │ ├── tptp_trans.c.work │ │ │ │ ├── tptp_trans.c~ │ │ │ │ ├── tptp_trans.h │ │ │ │ ├── tptp_trans.o │ │ │ │ ├── unify.c │ │ │ │ ├── unify.h │ │ │ │ ├── unify.o │ │ │ │ ├── util/ │ │ │ │ │ ├── backup │ │ │ │ │ ├── doc5 │ │ │ │ │ ├── init-package │ │ │ │ │ ├── init-types │ │ │ │ │ ├── make_dep │ │ │ │ │ ├── make_htmls │ │ │ │ │ ├── make_protos │ │ │ │ │ ├── new-type │ │ │ │ │ ├── options-for-gui.py │ │ │ │ │ ├── options-for-gui.py~ │ │ │ │ │ ├── proto │ │ │ │ │ ├── temp │ │ │ │ │ └── to-html │ │ │ │ ├── weight.c │ │ │ │ ├── weight.h │ │ │ │ ├── weight.o │ │ │ │ ├── weight2.c │ │ │ │ ├── weight2.h │ │ │ │ ├── weight2.o │ │ │ │ ├── weighttest │ │ │ │ ├── work │ │ │ │ ├── xproofs.c │ │ │ │ ├── xproofs.h │ │ │ │ └── xproofs.o │ │ │ ├── libtoolize.patch │ │ │ ├── mace4.examples/ │ │ │ │ ├── README │ │ │ │ ├── group2.in │ │ │ │ └── rw1.in │ │ │ ├── mace4.src/ │ │ │ │ ├── Changelog.old │ │ │ │ ├── Makefile │ │ │ │ ├── README.memory │ │ │ │ ├── TAGS │ │ │ │ ├── arithmetic.c │ │ │ │ ├── arithmetic.h │ │ │ │ ├── arithmetic.o │ │ │ │ ├── commandline.c │ │ │ │ ├── commandline.o │ │ │ │ ├── estack.c │ │ │ │ ├── estack.h │ │ │ │ ├── estack.o │ │ │ │ ├── ground.c │ │ │ │ ├── ground.h │ │ │ │ ├── ground.o │ │ │ │ ├── h1.in │ │ │ │ ├── h1.out │ │ │ │ ├── help │ │ │ │ ├── help2 │ │ │ │ ├── index.html │ │ │ │ ├── libmace4.a │ │ │ │ ├── mace4.c │ │ │ │ ├── mace4.o │ │ │ │ ├── msearch.c │ │ │ │ ├── msearch.c~ │ │ │ │ ├── msearch.h │ │ │ │ ├── msearch.o │ │ │ │ ├── mstate.c │ │ │ │ ├── mstate.h │ │ │ │ ├── mstate.o │ │ │ │ ├── negprop.c │ │ │ │ ├── negprop.o │ │ │ │ ├── negpropindex.c │ │ │ │ ├── negpropindex.o │ │ │ │ ├── ordercells.c │ │ │ │ ├── ordercells.o │ │ │ │ ├── print.c │ │ │ │ ├── print.o │ │ │ │ ├── propagate.c │ │ │ │ ├── propagate.h │ │ │ │ ├── propagate.o │ │ │ │ ├── pub │ │ │ │ ├── puzzles/ │ │ │ │ │ ├── f1.in │ │ │ │ │ ├── f1.in~ │ │ │ │ │ ├── f1.out │ │ │ │ │ ├── kenken6.in │ │ │ │ │ ├── kenken6.out │ │ │ │ │ ├── queens1.in │ │ │ │ │ ├── queens1.out │ │ │ │ │ ├── queens2.in │ │ │ │ │ ├── queens2.out │ │ │ │ │ ├── send-money.in │ │ │ │ │ ├── send-money.out │ │ │ │ │ ├── sudoku.in │ │ │ │ │ ├── sudoku.out │ │ │ │ │ ├── temp │ │ │ │ │ ├── zebra1.in │ │ │ │ │ ├── zebra1.out │ │ │ │ │ ├── zebra2.in │ │ │ │ │ └── zebra2.out │ │ │ │ ├── r1.in │ │ │ │ ├── save/ │ │ │ │ │ ├── raw-cooked │ │ │ │ │ └── raw-cooked~ │ │ │ │ ├── select.c │ │ │ │ ├── select.o │ │ │ │ ├── syms.c │ │ │ │ ├── syms.h │ │ │ │ ├── syms.o │ │ │ │ ├── t1.in │ │ │ │ ├── temp │ │ │ │ ├── util.c │ │ │ │ └── util.o │ │ │ ├── manpages/ │ │ │ │ ├── mace4.1 │ │ │ │ └── prover9.1 │ │ │ ├── prover9.examples/ │ │ │ │ ├── README │ │ │ │ ├── x2.hints │ │ │ │ ├── x2.in │ │ │ │ └── x2.out │ │ │ ├── provers.src/ │ │ │ │ ├── .gdb_history │ │ │ │ ├── Makefile │ │ │ │ ├── README.actions │ │ │ │ ├── README.doc │ │ │ │ ├── README.new-sos-limit │ │ │ │ ├── README.parts │ │ │ │ ├── README.process │ │ │ │ ├── README.sos │ │ │ │ ├── README.symbol_order │ │ │ │ ├── README.white-black │ │ │ │ ├── README.wired-in │ │ │ │ ├── TAGS │ │ │ │ ├── actions.c │ │ │ │ ├── actions.h │ │ │ │ ├── autosketches.examples/ │ │ │ │ │ ├── BA.in │ │ │ │ │ ├── BA.out │ │ │ │ │ ├── README │ │ │ │ │ ├── ec.in │ │ │ │ │ ├── ec.out │ │ │ │ │ ├── err │ │ │ │ │ ├── go │ │ │ │ │ ├── n3.in │ │ │ │ │ ├── n3.out │ │ │ │ │ ├── newauto.c.from_bob │ │ │ │ │ ├── newsax.c.from_bob │ │ │ │ │ ├── xhn.in │ │ │ │ │ └── xhn.out │ │ │ │ ├── autosketches4 │ │ │ │ ├── autosketches4.c │ │ │ │ ├── demodulate.c │ │ │ │ ├── demodulate.h │ │ │ │ ├── fof-prover9 │ │ │ │ ├── fof-prover9.c │ │ │ │ ├── foffer.c │ │ │ │ ├── foffer.h │ │ │ │ ├── forward_subsume.c │ │ │ │ ├── forward_subsume.h │ │ │ │ ├── giv_select.c │ │ │ │ ├── giv_select.h │ │ │ │ ├── index_lits.c │ │ │ │ ├── index_lits.h │ │ │ │ ├── iterate4.c │ │ │ │ ├── ladr_to_tptp │ │ │ │ ├── ladr_to_tptp.c │ │ │ │ ├── mprover.c │ │ │ │ ├── newauto │ │ │ │ ├── newauto.c │ │ │ │ ├── newsax │ │ │ │ ├── newsax.c │ │ │ │ ├── options │ │ │ │ ├── pred_elim.c │ │ │ │ ├── pred_elim.h │ │ │ │ ├── prover9 │ │ │ │ ├── prover9.c │ │ │ │ ├── provers.c │ │ │ │ ├── provers.h │ │ │ │ ├── pub │ │ │ │ ├── save/ │ │ │ │ │ ├── attributes.c │ │ │ │ │ ├── attributes.h │ │ │ │ │ ├── auto.c │ │ │ │ │ ├── auto.h │ │ │ │ │ ├── cgrep.c │ │ │ │ │ ├── control_sos.c │ │ │ │ │ ├── control_sos.h │ │ │ │ │ ├── definitions.c │ │ │ │ │ ├── definitions.h │ │ │ │ │ ├── fork_and_wait │ │ │ │ │ ├── lits_index.c │ │ │ │ │ ├── lits_index.h │ │ │ │ │ ├── loop2.c │ │ │ │ │ ├── picker.c │ │ │ │ │ ├── picker.h │ │ │ │ │ ├── ploop4.c │ │ │ │ │ ├── poptions.c │ │ │ │ │ ├── poptions.h │ │ │ │ │ ├── prover9-simple.c │ │ │ │ │ └── prover9.h │ │ │ │ ├── search-structures.h │ │ │ │ ├── search.c │ │ │ │ ├── search.h │ │ │ │ ├── semantics.c │ │ │ │ ├── semantics.h │ │ │ │ ├── test.p │ │ │ │ ├── tptp_to_ladr │ │ │ │ ├── tptp_to_ladr.c │ │ │ │ ├── unfold.c │ │ │ │ ├── unfold.h │ │ │ │ ├── utilities.c │ │ │ │ ├── utilities.h │ │ │ │ ├── white_black.c │ │ │ │ └── white_black.h │ │ │ ├── rev.py │ │ │ ├── sed.gnu-blurb │ │ │ ├── test.src/ │ │ │ │ ├── Makefile │ │ │ │ ├── TAGS │ │ │ │ ├── avltest │ │ │ │ ├── avltest.c │ │ │ │ ├── t1 │ │ │ │ ├── t2 │ │ │ │ ├── t2.in │ │ │ │ ├── tptp_test │ │ │ │ └── tptp_test.c │ │ │ ├── utilities/ │ │ │ │ ├── attack │ │ │ │ ├── get_givens │ │ │ │ ├── get_interps │ │ │ │ ├── get_kept │ │ │ │ ├── gvizify │ │ │ │ ├── looper │ │ │ │ ├── proof3fo.xsl │ │ │ │ └── prover9-mace4 │ │ │ └── utilities-old/ │ │ │ ├── attack2 │ │ │ ├── iterate │ │ │ ├── looper.pl │ │ │ ├── oproofs_to_goals │ │ │ ├── oproofs_to_hints │ │ │ ├── proofs_to_goals │ │ │ └── proofs_to_hints │ │ ├── csp_solver/ │ │ │ ├── __init__.py │ │ │ └── csp_solver.py │ │ ├── fol_solver/ │ │ │ ├── Formula.py │ │ │ ├── __init__.py │ │ │ ├── fol_parser.py │ │ │ ├── fol_prover9_parser.py │ │ │ └── prover9_solver.py │ │ ├── pyke_solver/ │ │ │ ├── __init__.py │ │ │ └── pyke_solver.py │ │ └── z3_solver/ │ │ ├── __init__.py │ │ ├── code_translator.py │ │ ├── sat_problem_solver.py │ │ └── z3_solver_test.py │ └── utils.py ├── outputs/ │ └── logic_programs/ │ ├── AR-LSAT_dev_gpt-3.5-turbo.json │ ├── AR-LSAT_dev_gpt-4.json │ ├── AR-LSAT_dev_text-davinci-003.json │ ├── FOLIO_dev_gpt-3.5-turbo.json │ ├── FOLIO_dev_gpt-4.json │ ├── FOLIO_dev_text-davinci-003.json │ ├── LogicalDeduction_dev_gpt-3.5-turbo.json │ ├── LogicalDeduction_dev_gpt-4.json │ ├── LogicalDeduction_dev_text-davinci-003.json │ ├── ProntoQA_dev_gpt-3.5-turbo.json │ ├── ProntoQA_dev_gpt-4.json │ ├── ProntoQA_dev_text-davinci-003.json │ ├── ProofWriter_dev_gpt-3.5-turbo.json │ ├── ProofWriter_dev_gpt-4.json │ └── ProofWriter_dev_text-davinci-003.json ├── requirements.txt └── solver_examples/ ├── folio_prover9.py └── prover9_example.py ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitignore ================================================ # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] *$py.class # C extensions *.so debug/ backupcodes/ outputs/logic_inference/* outputs/self_refine models/symbolic_solvers/swipl models/__pycache__/ *.sh baselines/results/ models/symbolic_solvers/pyke_solver/.cache_program models/symbolic_solvers/z3_solver/.cache_program # Distribution / packaging .Python build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ wheels/ share/python-wheels/ *.egg-info/ .installed.cfg *.egg MANIFEST # PyInstaller # Usually these files are written by a python script from a template # before PyInstaller builds the exe, so as to inject date/other infos into it. *.manifest *.spec # Installer logs pip-log.txt pip-delete-this-directory.txt # Unit test / coverage reports htmlcov/ .tox/ .nox/ .coverage .coverage.* .cache nosetests.xml coverage.xml *.cover *.py,cover .hypothesis/ .pytest_cache/ cover/ # Translations *.mo *.pot # Django stuff: *.log local_settings.py db.sqlite3 db.sqlite3-journal # Flask stuff: instance/ .webassets-cache # Scrapy stuff: .scrapy # Sphinx documentation docs/_build/ # PyBuilder .pybuilder/ target/ # Jupyter Notebook .ipynb_checkpoints # IPython profile_default/ ipython_config.py # pyenv # For a library or package, you might want to ignore these files since the code is # intended to run in multiple environments; otherwise, check them in: # .python-version # pipenv # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. # However, in case of collaboration, if having platform-specific dependencies or dependencies # having no cross-platform support, pipenv may install dependencies that don't work, or not # install all needed dependencies. #Pipfile.lock # poetry # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. # This is especially recommended for binary packages to ensure reproducibility, and is more # commonly ignored for libraries. # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control #poetry.lock # pdm # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. #pdm.lock # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it # in version control. # https://pdm.fming.dev/#use-with-ide .pdm.toml # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm __pypackages__/ # Celery stuff celerybeat-schedule celerybeat.pid # SageMath parsed files *.sage.py # Environments .env .venv env/ venv/ ENV/ env.bak/ venv.bak/ # Spyder project settings .spyderproject .spyproject # Rope project settings .ropeproject # mkdocs documentation /site # mypy .mypy_cache/ .dmypy.json dmypy.json # Pyre type checker .pyre/ # pytype static type analyzer .pytype/ # Cython debug symbols cython_debug/ # PyCharm # JetBrains specific template is maintained in a separate JetBrains.gitignore that can # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore # and can be added to the global gitignore or merged into this file. For a more nuclear # option (not recommended) you can uncomment the following to ignore the entire idea folder. #.idea/ ================================================ FILE: LICENSE ================================================ MIT License Copyright (c) 2023 Liangming Pan Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: README.md ================================================ # Logic-LM Data and Codes for ["LOGIC-LM: Empowering Large Language Models with Symbolic Solvers for Faithful Logical Reasoning"](https://arxiv.org/abs/2305.12295) (Findings of EMNLP 2023). Authors: **Liangming Pan, Alon Albalak, Xinyi Wang, William Yang Wang**. [NLP Group](http://nlp.cs.ucsb.edu/), University of California, Santa Barbara ## Introduction Large Language Models (LLMs) have shown human-like reasoning abilities but still struggle with complex logical problems. This paper introduces a novel framework, **Logic-LM**, which integrates LLMs with symbolic solvers to improve logical problem-solving. Our method first utilizes LLMs to translate a natural language problem into a symbolic formulation. Afterward, a deterministic symbolic solver performs inference on the formulated problem. We also introduce a self-refinement module, which utilizes the symbolic solver's error messages to revise symbolic formalizations. We demonstrate Logic-LM's effectiveness on five logical reasoning datasets: ProofWriter, PrOntoQA, FOLIO, LogicalDeduction, and AR-LSAT. On average, Logic-LM achieves a significant performance boost of 39.2% over using LLM alone with standard prompting and 18.4% over LLM with chain-of-thought prompting. Our findings suggest that Logic-LM, by combining LLMs with symbolic logic, offers a promising avenue for faithful logical reasoning. ![The general framework of Logic-LM](./framework.png) First, install all the required packages: ```bash pip install -r requirements.txt ``` ## Datasets The datasets we used are preprocessed and stored in the `./data` folder. We evaluate on the following datasets: - [ProntoQA](https://github.com/asaparov/prontoqa): Deductive resoning dataset. We use the 5-hop subset of the *fictional characters* version, consisting of 500 testing examples. - [ProofWriter](https://allenai.org/data/proofwriter): Deductive resoning dataset. We use the depth-5 subset of the OWA version. To reduce overall experimentation costs, we randomly sample 600 examples in the test set and ensure a balanced label distribution. - [FOLIO](https://github.com/Yale-LILY/FOLIO): First-Order Logic reasoning dataset. We use the entire FOLIO test set for evaluation, consisting of 204 examples. - [LogicalDeduction](https://github.com/google/BIG-bench/tree/main/bigbench/benchmark_tasks/logical_deduction): Constraint Satisfaction Problems (CSPs). We use the full test set consisting of 300 examples. - [AR-LSAT](https://github.com/zhongwanjun/AR-LSAT): Analytical Reasoning (AR) problems, containing all analytical logic reasoning questions from the Law School Admission Test from 1991 to 2016. We use the test set which has 230 multiple-choice questions. ## Baselines To replicate the **Standard-LM (Direct)** and the **Chain-of-Thought (CoT)** baselines, please run the following commands: ```bash cd ./baselines python gpt3_baseline.py \ --api_key "Your OpenAI API Key" \ --model_name "Model Name [text-davinci-003 | gpt-4]" \ --dataset_name "Dataset Name [ProntoQA | ProofWriter | FOLIO | LogicalDeduction | AR-LSAT]" \ --split dev \ --mode "Baseline [Direct | CoT]" \ --max_new_tokens "16 for Direct; 1024 for CoT" \ ``` The results will be saved in `./baselines/results`. To evaluate the results, please run the following commands: ```bash python evaluate.py \ --dataset_name "Dataset Name [ProntoQA | ProofWriter | FOLIO | LogicalDeduction | AR-LSAT]" \ --model_name "Model Name [text-davinci-003 | gpt-4]" \ --split dev \ --mode "Baseline [Direct | CoT]" \ ``` ## Logic Program Generation To generate logic programs for logical reasoning problems in each dataset, at the root directory, run the following commands: ```bash python models/logic_program.py \ --api_key "Your OpenAI API Key" \ --dataset_name "Dataset Name [ProntoQA | ProofWriter | FOLIO | LogicalDeduction | AR-LSAT]" \ --split dev \ --model_name "Model Name [text-davinci-003 | gpt-4]" \ --max_new_tokens 1024 \ ``` The generated logic programs will be saved in `outputs/logic_programs`. You can also reuse the logic programs we generated in `./outputs/logic_programs`. ## Logic Inference with Symbolic Solver After generating logic programs, we can perform inference with symbolic solvers. At the root directory, run the following commands: ```bash DATASET="Dataset Name [ProntoQA | ProofWriter | FOLIO | LogicalDeduction | AR-LSAT]" SPLIT="Dataset Split [dev | test]" MODEL="The logic programs are generated by which model? [text-davinci-003 | gpt-4]" BACKUP="The random backup answer (random) or CoT-Logic collabration mode (LLM)" python models/logic_inference.py \ --model_name ${MODEL} \ --dataset_name ${DATASET} \ --split ${SPLIT} \ --backup_strategy ${BACKUP} \ --backup_LLM_result_path ./baselines/results/CoT_${DATASET}_${SPLIT}_${MODEL}.json ``` The logic reasoning results will be saved in `outputs/logic_inferences`. Backup Strategies: - `random`: If the generated logic program cannot be executed by the symbolic solver, we will use random guess as the prediction. - `LLM`: If the generated logic program cannot be executed by the symbolic solver, we will back up to using CoT to generate the prediction. To run this mode, you need to have the corresponding baseline LLM results stored in `./baselines/results`. To make the inference more efficient, the model will just load the baseline LLM results and use them as the prediction if the symbolic solver fails. ## Evaluation To evaluate the logic reasoning results, please run the following commands: ```bash python models/evaluation.py \ --dataset_name "Dataset Name [ProntoQA | ProofWriter | FOLIO | LogicalDeduction]" \ --model_name "The logic programs are generated by which model? [text-davinci-003 | gpt-4]" \ --split dev \ --backup "The basic mode (random) or CoT-Logic collabration mode (LLM)" ``` ## Self-Refinement After generating the logic programs without self-refinement, run the following commands for self-refinement: ```bash DATASET="Dataset Name [ProntoQA | ProofWriter | FOLIO | LogicalDeduction | AR-LSAT]" SPLIT="Dataset Split [dev | test]" MODEL="The logic programs are generated by which model? [text-davinci-003 | gpt-4]" BACKUP="The random backup answer (random) or CoT-Logic collabration mode (LLM)" python models/self_refinement.py \ --model_name ${MODEL} \ --dataset_name ${DATASET} \ --split ${SPLIT} \ --backup_strategy ${BACKUP} \ --backup_LLM_result_path ./baselines/results/CoT_${DATASET}_${SPLIT}_${MODEL}.json --api_key "Your OpenAI API Key" \ --maximum_rounds 3 \ ``` The self-refinement results will be saved in `outputs/logic_inferences`. ## Reference Please cite the paper in the following format if you use this dataset during your research. ``` @inproceedings{PanLogicLM23, author = {Liangming Pan and Alon Albalak and Xinyi Wang and William Yang Wang}, title = {{Logic-LM:} Empowering Large Language Models with Symbolic Solvers for Faithful Logical Reasoning}, booktitle = {Findings of the 2023 Conference on Empirical Methods in Natural Language Processing (Findings of EMNLP)}, address = {Singapore}, year = {2023}, month = {Dec}, url = {https://arxiv.org/abs/2305.12295} } ``` ## Credit The codes for the SMT solver are modified from [SatLM](https://github.com/xiye17/sat-lm). ## Q&A If you encounter any problem, please either directly contact the [Liangming Pan](liangmingpan@ucsb.edu) or leave an issue in the github repo. ================================================ FILE: baselines/evaluation.py ================================================ import re import json from tqdm import tqdm import random import os import argparse def extract_number(string): # Remove all characters except digits, decimal point and negative sign try: num_string = re.sub(r'[^\d.-]', '', string) num_string = num_string.replace('$', '') return float(num_string) except: try: return float(random.randint(0, 100)) # return float(w2n.word_to_num(string)) except: # print('Error: ', string) print('Error') return float(random.randint(0, 100)) def argmax(iterable): return max(enumerate(iterable), key=lambda x: x[1])[0] # these functions are heavily influenced by the HF squad_metrics.py script def normalize_text(s): """Removing articles and punctuation, and standardizing whitespace are all typical text processing steps.""" import string, re def remove_articles(text): regex = re.compile(r"\b(a|an|the)\b", re.UNICODE) return re.sub(regex, " ", text) def white_space_fix(text): return " ".join(text.split()) def remove_punc(text): exclude = set(string.punctuation) return "".join(ch for ch in text if ch not in exclude) def lower(text): return text.lower() return white_space_fix(remove_articles(remove_punc(lower(s)))) def compute_exact_match(prediction, truth): return int(normalize_text(prediction) == normalize_text(truth)) # return prediction == truth def compute_f1(prediction, truth): pred_tokens = normalize_text(prediction).split() truth_tokens = normalize_text(truth).split() # if either the prediction or the truth is no-answer then f1 = 1 if they agree, 0 otherwise if len(pred_tokens) == 0 or len(truth_tokens) == 0: return int(pred_tokens == truth_tokens) common_tokens = set(pred_tokens) & set(truth_tokens) # if there are no common tokens then f1 = 0 if len(common_tokens) == 0: return 0 prec = len(common_tokens) / len(pred_tokens) rec = len(common_tokens) / len(truth_tokens) return 2 * (prec * rec) / (prec + rec) def evaluate_sample(prediction, gold_answers): em_score = max((compute_exact_match(prediction, answer)) for answer in gold_answers) f1_score = max((compute_f1(prediction, answer)) for answer in gold_answers) return em_score, f1_score def get_choice(answer_str): choices = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'A)', 'B)', 'C)', 'D)', 'E)', 'F)', 'G)', 'H)', 'A.', 'B.', 'C.', 'D.', 'E.', 'F.', 'G.', 'H.'] for c in choices: if answer_str.startswith(c): return c.replace(')', '') return None def evaluate_QA(result_file): with open(result_file, 'r') as f: QA_results = json.load(f) total_em = 0.0 total_f1 = 0.0 count = 0 for sample in QA_results: gold_answer = sample['answer'].replace('(', '').replace(')', '').strip() answer_str = sample['predicted_answer'].strip() prediction = get_choice(answer_str) indicators = ['the correct option is', 'the correct answer is', 'The correct answer is', 'The correct option is', 'Thus, the answer is'] if prediction is None: for indicator in indicators: if answer_str.find(indicator)>=0: answer_str = answer_str.split(indicator)[1].strip() prediction = get_choice(answer_str) break if prediction is None: print(answer_str) print(f"prediction: {prediction} \t gold_answers: {gold_answer} \t match: {prediction == gold_answer}") em_score = 1.0 if prediction == gold_answer else 0.0 total_em += em_score count += 1 avg_em = total_em / count print(f"EM: {avg_em}") def parse_args(): parser = argparse.ArgumentParser() parser.add_argument('--dataset_name', type=str) parser.add_argument('--model_name', type=str) parser.add_argument('--mode', type=str) parser.add_argument('--split', type=str, default='dev') parser.add_argument('--result_path', type=str, default='./results') args = parser.parse_args() return args if __name__ == "__main__": args = parse_args() result_file = os.path.join(args.result_path, f'{args.mode}_{args.dataset_name}_{args.split}_{args.model_name}.json') evaluate_QA(result_file) ================================================ FILE: baselines/gpt3_baseline.py ================================================ import json import os from tqdm import tqdm from collections import OrderedDict from typing import Dict, List, Tuple from utils import OpenAIModel import argparse class GPT3_Reasoning_Graph_Baseline: def __init__(self, args): self.args = args self.data_path = args.data_path self.dataset_name = args.dataset_name self.split = args.split self.model_name = args.model_name self.save_path = args.save_path self.demonstration_path = args.demonstration_path self.mode = args.mode self.openai_api = OpenAIModel(args.api_key, args.model_name, args.stop_words, args.max_new_tokens) self.prompt_creator = self.prompt_LSAT self.label_phrase = 'The correct option is:' def prompt_LSAT(self, in_context_example, test_example): full_prompt = in_context_example context = test_example['context'].strip() question = test_example['question'].strip() options = '\n'.join([opt.strip() for opt in test_example['options']]) full_prompt = full_prompt.replace('[[CONTEXT]]', context) full_prompt = full_prompt.replace('[[QUESTION]]', question) full_prompt = full_prompt.replace('[[OPTIONS]]', options) return full_prompt def load_in_context_examples(self): with open(os.path.join(self.demonstration_path, f'{self.dataset_name}_{self.mode}.txt')) as f: in_context_examples = f.read() return in_context_examples def load_raw_dataset(self, split): with open(os.path.join(self.data_path, self.dataset_name, f'{split}.json')) as f: raw_dataset = json.load(f) return raw_dataset def reasoning_graph_generation(self): # load raw dataset raw_dataset = self.load_raw_dataset(self.split) print(f"Loaded {len(raw_dataset)} examples from {self.split} split.") # load in-context examples in_context_examples = self.load_in_context_examples() outputs = [] for example in tqdm(raw_dataset): question = example['question'] # create prompt full_prompt = self.prompt_creator(in_context_examples, example) output = self.openai_api.generate(full_prompt) # get the answer label_phrase = self.label_phrase generated_answer = output.split(label_phrase)[-1].strip() generated_reasoning = output.split(label_phrase)[0].strip() # create output output = {'id': example['id'], 'question': question, 'answer': example['answer'], 'predicted_reasoning': generated_reasoning, 'predicted_answer': generated_answer} outputs.append(output) # save outputs with open(os.path.join(self.save_path, f'{self.mode}_{self.dataset_name}_{self.split}_{self.model_name}.json'), 'w') as f: json.dump(outputs, f, indent=2, ensure_ascii=False) def batch_reasoning_graph_generation(self, batch_size=10): # load raw dataset raw_dataset = self.load_raw_dataset(self.split) print(f"Loaded {len(raw_dataset)} examples from {self.split} split.") # load in-context examples in_context_examples = self.load_in_context_examples() outputs = [] # split dataset into chunks dataset_chunks = [raw_dataset[i:i + batch_size] for i in range(0, len(raw_dataset), batch_size)] for chunk in tqdm(dataset_chunks): # create prompt full_prompts = [self.prompt_creator(in_context_examples, example) for example in chunk] try: batch_outputs = self.openai_api.batch_generate(full_prompts) # create output for sample, output in zip(chunk, batch_outputs): # get the answer dict_output = self.update_answer(sample, output) outputs.append(dict_output) except: # generate one by one if batch generation fails for sample, full_prompt in zip(chunk, full_prompts): try: output = self.openai_api.generate(full_prompt) # get the answer dict_output = self.update_answer(sample, output) outputs.append(dict_output) except: print('Error in generating example: ', sample['id']) # save outputs with open(os.path.join(self.save_path, f'{self.mode}_{self.dataset_name}_{self.split}_{self.model_name}.json'), 'w') as f: json.dump(outputs, f, indent=2, ensure_ascii=False) def update_answer(self, sample, output): label_phrase = self.label_phrase generated_answer = output.split(label_phrase)[-1].strip() generated_reasoning = output.split(label_phrase)[0].strip() dict_output = {'id': sample['id'], 'question': sample['question'], 'answer': sample['answer'], 'predicted_reasoning': generated_reasoning, 'predicted_answer': generated_answer} return dict_output def parse_args(): parser = argparse.ArgumentParser() parser.add_argument('--data_path', type=str, default='../data') parser.add_argument('--dataset_name', type=str) parser.add_argument('--split', type=str) parser.add_argument('--save_path', type=str, default='./results') parser.add_argument('--demonstration_path', type=str, default='./icl_examples') parser.add_argument('--api_key', type=str) parser.add_argument('--model_name', type=str) parser.add_argument('--stop_words', type=str, default='------') parser.add_argument('--mode', type=str) parser.add_argument('--max_new_tokens', type=int) args = parser.parse_args() return args if __name__ == '__main__': args = parse_args() gpt3_problem_reduction = GPT3_Reasoning_Graph_Baseline(args) gpt3_problem_reduction.batch_reasoning_graph_generation(batch_size=10) ================================================ FILE: baselines/icl_examples/AR-LSAT_CoT.txt ================================================ Given a problem statement as contexts, the task is to answer a logical reasoning question. ------ Context: During a single week, from Monday through Friday, tours will be conducted of a company's three divisions\u2014Operations, Production, and Sales. Exactly five tours will be conducted that week, one each day. The schedule of tours for the week must conform to the following restrictions: Each division is toured at least once. The Operations division is not toured on Monday. The Production division is not toured on Wednesday. The Sales division is toured on two consecutive days, and on no other days. If the Operations division is toured on Thursday, then the Production division is toured on Friday. Question: Which one of the following CANNOT be true of the week's tour schedule? Options: A) The division that is toured on Monday is also toured on Tuesday. B) The division that is toured on Monday is also toured on Friday. C) The division that is toured on Tuesday is also toured on Thursday. D) The division that is toured on Wednesday is also toured on Friday. E) The division that is toured on Thursday is also toured on Friday. Reasoning: Since Thursday and Friday already have tours planned, only Monday, Tuesday and Wednesday tours need to be determined. On Tuesday, the Sales division is toured since that division is toured on only two consecutive days, i.e either Monday and Tuesday or Tuesday and Wednesday. A different division is toured on Thursday. Therefore, the final answer is C. The correct option is: C ------ Context: Each of seven candidates for the position of judge\u2014Hamadi, Jefferson, Kurtz, Li, McDonnell, Ortiz, and Perkins\u2014will be appointed to an open position on one of two courts\u2014the appellate court or the trial court. There are three open positions on the appellate court and six open positions on the trial court, but not all of them will be filled at this time. The judicial appointments will conform to the following conditions: Li must be appointed to the appellate court. Kurtz must be appointed to the trial court. Hamadi cannot be appointed to the same court as Perkins. Question: Which one of the following is an acceptable set of appointments of candidates to courts? Options: A) appellate: Hamadi, Ortiz trial: Jefferson, Kurtz, Li, McDonnell, Perkins B) appellate: Hamadi, Li, Perkins trial: Jefferson, Kurtz, McDonnell, Ortiz C) appellate: Kurtz, Li, Perkins trial: Hamadi, Jefferson, McDonnell, Ortiz D) appellate: Li, McDonnell, Ortiz trial: Hamadi, Jefferson, Kurtz, Perkins E) appellate: Li, Perkins trial: Hamadi, Jefferson, Kurtz, McDonnell, Ortiz Reasoning: Li must be appointed to appellate court, so we rule out option A. Kurtz must be appointed to trial court, so we rule out option C. Hamadi and Perkins cannot be appointed to the same court, so we rule out option B and D. Therefore, the final answer is E. The correct option is: E ------ Context: [[CONTEXT]] Question: [[QUESTION]] Options: [[OPTIONS]] Reasoning: ================================================ FILE: baselines/icl_examples/AR-LSAT_Direct.txt ================================================ Given a problem statement as contexts, the task is to answer a logical reasoning question. ------ Context: During a single week, from Monday through Friday, tours will be conducted of a company's three divisions\u2014Operations, Production, and Sales. Exactly five tours will be conducted that week, one each day. The schedule of tours for the week must conform to the following restrictions: Each division is toured at least once. The Operations division is not toured on Monday. The Production division is not toured on Wednesday. The Sales division is toured on two consecutive days, and on no other days. If the Operations division is toured on Thursday, then the Production division is toured on Friday. Question: Which one of the following CANNOT be true of the week's tour schedule? Options: A) The division that is toured on Monday is also toured on Tuesday. B) The division that is toured on Monday is also toured on Friday. C) The division that is toured on Tuesday is also toured on Thursday. D) The division that is toured on Wednesday is also toured on Friday. E) The division that is toured on Thursday is also toured on Friday. The correct option is: C ------ Context: Each of seven candidates for the position of judge\u2014Hamadi, Jefferson, Kurtz, Li, McDonnell, Ortiz, and Perkins\u2014will be appointed to an open position on one of two courts\u2014the appellate court or the trial court. There are three open positions on the appellate court and six open positions on the trial court, but not all of them will be filled at this time. The judicial appointments will conform to the following conditions: Li must be appointed to the appellate court. Kurtz must be appointed to the trial court. Hamadi cannot be appointed to the same court as Perkins. Question: Which one of the following is an acceptable set of appointments of candidates to courts? Options: A) appellate: Hamadi, Ortiz trial: Jefferson, Kurtz, Li, McDonnell, Perkins B) appellate: Hamadi, Li, Perkins trial: Jefferson, Kurtz, McDonnell, Ortiz C) appellate: Kurtz, Li, Perkins trial: Hamadi, Jefferson, McDonnell, Ortiz D) appellate: Li, McDonnell, Ortiz trial: Hamadi, Jefferson, Kurtz, Perkins E) appellate: Li, Perkins trial: Hamadi, Jefferson, Kurtz, McDonnell, Ortiz The correct option is: E ------ Context: [[CONTEXT]] Question: [[QUESTION]] Options: [[OPTIONS]] The correct option is: ================================================ FILE: baselines/icl_examples/FOLIO_CoT.txt ================================================ Given a problem statement as contexts, the task is to answer a logical reasoning question. ------ Context: The Blake McFall Company Building is a commercial warehouse listed on the National Register of Historic Places. The Blake McFall Company Building was added to the National Register of Historic Places in 1990. The Emmet Building is a five-story building in Portland, Oregon. The Emmet Building was built in 1915. The Emmet Building is another name for the Blake McFall Company Building. John works at the Emmet Building. Question: Based on the above information, is the following statement true, false, or uncertain? The Blake McFall Company Building is located in Portland, Oregon. Options: A) True B) False C) Uncertain Reasoning: The Blake McFall Company Building is another name for the Emmet Building. The Emmet Building is located in Portland, Oregon. Therefore, the Blake McFall Company Building is located in Portland, Oregon. The correct option is: A ------ Context: People eat meat regularly or are vegetation. If people eat meat regularly, then they enjoy eating hamburgers and steaks. All people who are vegetarian are conscious of the environment or their health. If people are conscious about the environment or their health, then they do not go to fast food places often. If people have busy schedules without time to cook, then they go to fast food places often. If Jeremy does not both go to fast food places often and is conscious about the environment or their health, then he goes to fast food places often. Question: Based on the above information, is the following statement true, false, or uncertain? If Jeremy has a busy schedule without time to cook, then Jeremy does not enjoy eating hamburgers and steaks. Options: A) True B) False C) Uncertain Reasoning: If Jeremy has a busy schedule without time to cook or enjoy eating hamburgers and steaks, then Jeremy goes to fast food places often. If people are conscious about the environment or their health, then they do not go to fast food places often. This means that Jeremy is not conscious about the environment or his health. All people who are vegetarian are conscious of the environment or their health. Therefore, Jeremy is not vegetarian. People eat meat regularly or are vegetation. Therefore, Jeremy eats meat regularly. If people eat meat regularly, then they enjoy eating hamburgers and steaks. Therefore, Jeremy enjoys eating hamburgers and steaks. The correct option is: B ------ Context: [[CONTEXT]] Question: [[QUESTION]] Options: [[OPTIONS]] Reasoning: ================================================ FILE: baselines/icl_examples/FOLIO_Direct.txt ================================================ Given a problem statement as contexts, the task is to answer a logical reasoning question. ------ Context: All people who regularly drink coffee are dependent on caffeine. People either regularly drink coffee or joke about being addicted to caffeine. No one who jokes about being addicted to caffeine is unaware that caffeine is a drug. Rina is either a student and unaware that caffeine is a drug, or neither a student nor unaware that caffeine is a drug. If Rina is not a person dependent on caffeine and a student, then Rina is either a person dependent on caffeine and a student, or neither a person dependent on caffeine nor a student. Question: Based on the above information, is the following statement true, false, or uncertain? Rina is a person who jokes about being addicted to caffeine or unaware that caffeine is a drug. Options: A) True B) False C) Uncertain The correct option is: A ------ Context: William Dickinson was a British politician who sat in the House of Commons William Dickinson attended Westminster school for high school and then the University of Edinburgh. The University of Edinburgh is a university located in the United Kingdom. William Dickinson supported the Portland Whigs. People who supported the Portland Whigs did not get a seat in the Parliament. Question: Based on the above information, is the following statement true, false, or uncertain? William Dickinson went to schools located in the United Kingdom for both high school and university. Options: A) True B) False C) Uncertain The correct option is: C ------ Context: [[CONTEXT]] Question: [[QUESTION]] Options: [[OPTIONS]] The correct option is: ================================================ FILE: baselines/icl_examples/LogicalDeduction_CoT.txt ================================================ Given a problem statement as contexts, the task is to answer a logical reasoning question. ------ Context: The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a quail, an owl, a raven, a falcon, and a robin. The owl is the leftmost. The robin is to the left of the raven. The quail is the rightmost. The raven is the third from the left. Question: Which of the following is true? Options: A) The quail is the rightmost. B) The owl is the rightmost. C) The raven is the rightmost. D) The falcon is the rightmost. E) The robin is the rightmost. Reasoning: The owl is the leftmost. This means owl is not the rightmost. The robin is to the left of the raven. This means neither robin nor raven is the rightmost. The quail is the rightmost. This directly answers the question, so option A) The quail is the rightmost is true. The raven is the third from the left. This means raven is also not the rightmost. So, the answer is: A) The quail is the rightmost. The correct option is: A ------ Context: The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a bus, a motorcyle, a hatchback, a station wagon, a minivan, a truck, and a limousine. The station wagon is the fourth-newest. The motorcyle is newer than the truck. The station wagon is older than the hatchback. The minivan is newer than the hatchback. The bus is newer than the minivan. The truck is newer than the limousine. Question: Which of the following is true? Options: A) The bus is the third-oldest. B) The motorcyle is the third-oldest. C) The hatchback is the third-oldest. D) The station wagon is the third-oldest. E) The minivan is the third-oldest. F) The truck is the third-oldest. G) The limousine is the third-oldest. Reasoning: The station wagon is the fourth-newest. This means it is the fourth-oldest, so option D is incorrect. The station wagon is older than the hatchback. Since the station wagon is the fourth-oldest, the hatchback must be among the three newest cars, so it cannot be the third-oldest, and option C is incorrect. The minivan is newer than the hatchback. Given the previous point, the minivan must also be among the three newest cars and cannot be the third-oldest. So, option E is incorrect. The bus is newer than the minivan. From the previous point, the bus must be among the two newest cars, and it cannot be the third-oldest. So, option A is incorrect. The truck is newer than the limousine. The limousine is older than the truck, so the limousine cannot be the third-oldest. So, option G is incorrect. Therefore, the answer is: B) The motorcyle is the third-oldest. The correct option is: B ------ Context: [[CONTEXT]] Question: [[QUESTION]] Options: [[OPTIONS]] Reasoning: ================================================ FILE: baselines/icl_examples/LogicalDeduction_Direct.txt ================================================ Given a problem statement as contexts, the task is to answer a logical reasoning question. ------ Context: The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Ana, Eve, Ada, Dan, Rob, Amy, and Joe. Dan finished third. Ana finished above Ada. Amy finished last. Dan finished below Rob. Eve finished below Ada. Rob finished below Joe. Question: Which of the following is true? Options: A) Ana finished third. B) Eve finished third. C) Ada finished third. D) Dan finished third. E) Rob finished third. F) Amy finished third. G) Joe finished third. The correct option is: D ------ Context: The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a bus, a motorcyle, a hatchback, a station wagon, a minivan, a truck, and a limousine. The station wagon is the fourth-newest. The motorcyle is newer than the truck. The station wagon is older than the hatchback. The minivan is newer than the hatchback. The bus is newer than the minivan. The truck is newer than the limousine. Question: Which of the following is true? Options: A) The bus is the third-oldest. B) The motorcyle is the third-oldest. C) The hatchback is the third-oldest. D) The station wagon is the third-oldest. E) The minivan is the third-oldest. F) The truck is the third-oldest. G) The limousine is the third-oldest. The correct option is: B ------ Context: [[CONTEXT]] Question: [[QUESTION]] Options: [[OPTIONS]] The correct option is: ================================================ FILE: baselines/icl_examples/ProntoQA_CoT.txt ================================================ Given a problem statement as contexts, the task is to answer a logical reasoning question. ------ Context: Jompuses are not shy. Jompuses are yumpuses. Each yumpus is aggressive. Each yumpus is a dumpus. Dumpuses are not wooden. Dumpuses are wumpuses. Wumpuses are red. Every wumpus is an impus. Each impus is opaque. Impuses are tumpuses. Numpuses are sour. Tumpuses are not sour. Tumpuses are vumpuses. Vumpuses are earthy. Every vumpus is a zumpus. Zumpuses are small. Zumpuses are rompuses. Max is a yumpus. Question: Is the following statement true or false? Max is sour. Options: A) True B) False Reasoning: Max is a yumpus. Each yumpus is a dumpus. So Max is dumpus. Dumpuses are wumpuses. So Max is wumpus. Every wumpus is an impus. So Max is an impus. Impuses are tumpuses. So Max is a tumpus. Tumpuses are not sour. So Max is not sour. The correct option is: B ------ Context: Every tumpus is not angry. Tumpuses are rompuses. Every numpus is not bright. Rompuses are not luminous. Rompuses are yumpuses. Yumpuses are transparent. Yumpuses are zumpuses. Each zumpus is not bitter. Zumpuses are impuses. Impuses are red. Each impus is a dumpus. Every dumpus is happy. Each dumpus is a vumpus. Vumpuses are bright. Every vumpus is a jompus. Jompuses are large. Each jompus is a wumpus. Stella is a yumpus. Question: Is the following statement true or false? Stella is bright. Options: A) True B) False Reasoning: Stella is a yumpus. Yumpuses are zumpuses. So Stella is a zumpus. Each zumpus is an impus. So Stella is an impus. Each impus is a dumpus. So Stella is a dumpus. Every dumpus is a vumpus. So Stella is a vumpus. Vumpuses are bright. So Stella is bright. The correct option is: A ------ Context: [[CONTEXT]] Question: [[QUESTION]] Options: [[OPTIONS]] Reasoning: ================================================ FILE: baselines/icl_examples/ProntoQA_Direct.txt ================================================ Given a problem statement as contexts, the task is to answer a logical reasoning question. ------ Context: Jompuses are not shy. Jompuses are yumpuses. Each yumpus is aggressive. Each yumpus is a dumpus. Dumpuses are not wooden. Dumpuses are wumpuses. Wumpuses are red. Every wumpus is an impus. Each impus is opaque. Impuses are tumpuses. Numpuses are sour. Tumpuses are not sour. Tumpuses are vumpuses. Vumpuses are earthy. Every vumpus is a zumpus. Zumpuses are small. Zumpuses are rompuses. Max is a yumpus. Question: Is the following statement true or false? Max is sour. Options: A) True B) False The correct option is: B ------ Context: Every tumpus is not angry. Tumpuses are rompuses. Every numpus is not bright. Rompuses are not luminous. Rompuses are yumpuses. Yumpuses are transparent. Yumpuses are zumpuses. Each zumpus is not bitter. Zumpuses are impuses. Impuses are red. Each impus is a dumpus. Every dumpus is happy. Each dumpus is a vumpus. Vumpuses are bright. Every vumpus is a jompus. Jompuses are large. Each jompus is a wumpus. Stella is a yumpus. Question: Is the following statement true or false? Stella is bright. Options: A) True B) False The correct option is: A ------ Context: [[CONTEXT]] Question: [[QUESTION]] Options: [[OPTIONS]] The correct option is: ================================================ FILE: baselines/icl_examples/ProofWriter_CoT.txt ================================================ Given a problem statement as contexts, the task is to answer a logical reasoning question. ------ Context: The cow is blue. The cow is round. The cow likes the lion. The cow visits the tiger. The lion is cold. The lion is nice. The lion likes the squirrel. The squirrel is round. The squirrel sees the lion. The squirrel visits the cow. The tiger likes the cow. The tiger likes the squirrel. If something is cold then it visits the tiger. If something visits the tiger then it is nice. If something sees the tiger and it is young then it is blue. If something is nice then it sees the tiger. If something likes the squirrel and it likes the cow then it visits the tiger. If something is nice and it sees the tiger then it is young. If the cow is cold and the cow visits the lion then the lion sees the squirrel. Question: Based on the above information, is the following statement true, false, or unknown? The tiger is not young. Options: A) True B) False C) Unknown Reasoning: The tiger likes the cow. The tiger likes the squirrel. If something likes the squirrel and it likes the cow, then it visits the tiger. So the tiger visits the tiger. If something visits the tiger then it is nice. So the tiger is nice. If something is nice and it sees the tiger then it is young. So the tiger is young. The correct option is: B ------ Context: The dog sees the rabbit. The dog sees the squirrel. The dog sees the tiger. The rabbit eats the dog. The rabbit does not eat the tiger. The rabbit does not like the tiger. The squirrel does not see the rabbit. The tiger does not eat the rabbit. The tiger is not kind. The tiger likes the dog. The tiger sees the dog. If something is cold then it likes the rabbit. If something eats the tiger and it is nice then it likes the rabbit. If something likes the squirrel then the squirrel likes the rabbit. If something likes the rabbit and the rabbit is kind then it sees the tiger. If something likes the tiger then the tiger is young. If something is young and it eats the rabbit then it likes the tiger. If something sees the rabbit then the rabbit is cold. If something likes the rabbit then it likes the squirrel. If something likes the squirrel then the squirrel is cold. Question: Based on the above information, is the following statement true, false, or unknown? The rabbit is cold. Options: A) True B) False C) Uncertain Reasoning: The dog sees the rabbit. If something sees the rabbit then the rabbit is cold. So the rabbit is cold. The correct option is: A ------ Context: [[CONTEXT]] Question: [[QUESTION]] Options: [[OPTIONS]] Reasoning: ================================================ FILE: baselines/icl_examples/ProofWriter_Direct.txt ================================================ Given a problem statement as contexts, the task is to answer a logical reasoning question. ------ Context: The cow is blue. The cow is round. The cow likes the lion. The cow visits the tiger. The lion is cold. The lion is nice. The lion likes the squirrel. The squirrel is round. The squirrel sees the lion. The squirrel visits the cow. The tiger likes the cow. The tiger likes the squirrel. If something is cold then it visits the tiger. If something visits the tiger then it is nice. If something sees the tiger and it is young then it is blue. If something is nice then it sees the tiger. If something likes the squirrel and it likes the cow then it visits the tiger. If something is nice and it sees the tiger then it is young. If the cow is cold and the cow visits the lion then the lion sees the squirrel. Question: Based on the above information, is the following statement true, false, or unknown? The tiger is not young. Options: A) True B) False C) Unknown The correct option is: B ------ Context: The dog sees the rabbit. The dog sees the squirrel. The dog sees the tiger. The rabbit eats the dog. The rabbit does not eat the tiger. The rabbit does not like the tiger. The squirrel does not see the rabbit. The tiger does not eat the rabbit. The tiger is not kind. The tiger likes the dog. The tiger sees the dog. If something is cold then it likes the rabbit. If something eats the tiger and it is nice then it likes the rabbit. If something likes the squirrel then the squirrel likes the rabbit. If something likes the rabbit and the rabbit is kind then it sees the tiger. If something likes the tiger then the tiger is young. If something is young and it eats the rabbit then it likes the tiger. If something sees the rabbit then the rabbit is cold. If something likes the rabbit then it likes the squirrel. If something likes the squirrel then the squirrel is cold. Question: Based on the above information, is the following statement true, false, or unknown? The rabbit is cold. Options: A) True B) False C) Uncertain The correct option is: A ------ Context: [[CONTEXT]] Question: [[QUESTION]] Options: [[OPTIONS]] The correct option is: ================================================ FILE: baselines/utils.py ================================================ import backoff # for exponential backoff import openai import os import asyncio from typing import Any @backoff.on_exception(backoff.expo, openai.error.RateLimitError) def completions_with_backoff(**kwargs): return openai.Completion.create(**kwargs) @backoff.on_exception(backoff.expo, openai.error.RateLimitError) def chat_completions_with_backoff(**kwargs): return openai.ChatCompletion.create(**kwargs) async def dispatch_openai_chat_requests( messages_list: list[list[dict[str,Any]]], model: str, temperature: float, max_tokens: int, top_p: float, stop_words: list[str] ) -> list[str]: """Dispatches requests to OpenAI API asynchronously. Args: messages_list: List of messages to be sent to OpenAI ChatCompletion API. model: OpenAI model to use. temperature: Temperature to use for the model. max_tokens: Maximum number of tokens to generate. top_p: Top p to use for the model. stop_words: List of words to stop the model from generating. Returns: List of responses from OpenAI API. """ async_responses = [ openai.ChatCompletion.acreate( model=model, messages=x, temperature=temperature, max_tokens=max_tokens, top_p=top_p, stop = stop_words ) for x in messages_list ] return await asyncio.gather(*async_responses) async def dispatch_openai_prompt_requests( messages_list: list[list[dict[str,Any]]], model: str, temperature: float, max_tokens: int, top_p: float, stop_words: list[str] ) -> list[str]: async_responses = [ openai.Completion.acreate( model=model, prompt=x, temperature=temperature, max_tokens=max_tokens, top_p=top_p, frequency_penalty = 0.0, presence_penalty = 0.0, stop = stop_words ) for x in messages_list ] return await asyncio.gather(*async_responses) class OpenAIModel: def __init__(self, API_KEY, model_name, stop_words, max_new_tokens) -> None: openai.api_key = API_KEY self.model_name = model_name self.max_new_tokens = max_new_tokens self.stop_words = stop_words # used for chat-gpt and gpt-4 def chat_generate(self, input_string, temperature = 0.0): response = chat_completions_with_backoff( model = self.model_name, messages=[ {"role": "user", "content": input_string} ], max_tokens = self.max_new_tokens, temperature = temperature, top_p = 1.0, stop = self.stop_words ) generated_text = response['choices'][0]['message']['content'].strip() return generated_text # used for text/code-davinci def prompt_generate(self, input_string, temperature = 0.0): response = completions_with_backoff( model = self.model_name, prompt = input_string, max_tokens = self.max_new_tokens, temperature = temperature, top_p = 1.0, frequency_penalty = 0.0, presence_penalty = 0.0, stop = self.stop_words ) generated_text = response['choices'][0]['text'].strip() return generated_text def generate(self, input_string, temperature = 0.0): if self.model_name in ['text-davinci-002', 'code-davinci-002', 'text-davinci-003']: return self.prompt_generate(input_string, temperature) elif self.model_name in ['gpt-4', 'gpt-3.5-turbo']: return self.chat_generate(input_string, temperature) else: raise Exception("Model name not recognized") def batch_chat_generate(self, messages_list, temperature = 0.0): open_ai_messages_list = [] for message in messages_list: open_ai_messages_list.append( [{"role": "user", "content": message}] ) predictions = asyncio.run( dispatch_openai_chat_requests( open_ai_messages_list, self.model_name, temperature, self.max_new_tokens, 1.0, self.stop_words ) ) return [x['choices'][0]['message']['content'].strip() for x in predictions] def batch_prompt_generate(self, prompt_list, temperature = 0.0): predictions = asyncio.run( dispatch_openai_prompt_requests( prompt_list, self.model_name, temperature, self.max_new_tokens, 1.0, self.stop_words ) ) return [x['choices'][0]['text'].strip() for x in predictions] def batch_generate(self, messages_list, temperature = 0.0): if self.model_name in ['text-davinci-002', 'code-davinci-002', 'text-davinci-003']: return self.batch_prompt_generate(messages_list, temperature) elif self.model_name in ['gpt-4', 'gpt-3.5-turbo']: return self.batch_chat_generate(messages_list, temperature) else: raise Exception("Model name not recognized") def generate_insertion(self, input_string, suffix, temperature = 0.0): response = completions_with_backoff( model = self.model_name, prompt = input_string, suffix= suffix, temperature = temperature, max_tokens = self.max_new_tokens, top_p = 1.0, frequency_penalty = 0.0, presence_penalty = 0.0 ) generated_text = response['choices'][0]['text'].strip() return generated_text ================================================ FILE: data/AR-LSAT/dev.json ================================================ [ { "id": "ar_lsat_200006_1-G_1_1", "context": "Four boys—Fred, Juan, Marc, and Paul—and three girls—Nita, Rachel, and Trisha—will be assigned to a row of five adjacent lockers, numbered consecutively 1 through 5, arranged along a straight wall. The following conditions govern the assignment of lockers to the seven children: Each locker must be assigned to either one or two children, and each child must be assigned to exactly one locker. Each shared locker must be assigned to one girl and one boy. Juan must share a locker, but Rachel cannot share a locker. Nita's locker cannot be adjacent to Trisha's locker. Fred must be assigned to locker 3.", "question": "Which one of the following is a complete and accurate list of the children who must be among those assigned to shared lockers?", "options": [ "A) Fred, Juan", "B) Juan, Paul", "C) Juan, Marc, Paul", "D) Juan, Marc, Trisha", "E) Juan, Nita, Trisha" ], "answer": "E" }, { "id": "ar_lsat_200006_1-G_1_2", "context": "Four boys—Fred, Juan, Marc, and Paul—and three girls—Nita, Rachel, and Trisha—will be assigned to a row of five adjacent lockers, numbered consecutively 1 through 5, arranged along a straight wall. The following conditions govern the assignment of lockers to the seven children: Each locker must be assigned to either one or two children, and each child must be assigned to exactly one locker. Each shared locker must be assigned to one girl and one boy. Juan must share a locker, but Rachel cannot share a locker. Nita's locker cannot be adjacent to Trisha's locker. Fred must be assigned to locker 3.", "question": "If Trisha is assigned to locker 3 and Marc alone is assigned to locker 1, then which one of the following must be true?", "options": [ "A) Juan is assigned to locker 4.", "B) Juan is assigned to locker 5.", "C) Paul is assigned to locker 2.", "D) Rachel is assigned to locker 2.", "E) Rachel is assigned to locker 5." ], "answer": "B" }, { "id": "ar_lsat_200006_1-G_1_3", "context": "Four boys—Fred, Juan, Marc, and Paul—and three girls—Nita, Rachel, and Trisha—will be assigned to a row of five adjacent lockers, numbered consecutively 1 through 5, arranged along a straight wall. The following conditions govern the assignment of lockers to the seven children: Each locker must be assigned to either one or two children, and each child must be assigned to exactly one locker. Each shared locker must be assigned to one girl and one boy. Juan must share a locker, but Rachel cannot share a locker. Nita's locker cannot be adjacent to Trisha's locker. Fred must be assigned to locker 3.", "question": "If the four boys are assigned to consecutively numbered lockers and Juan is assigned to locker 5, then which one of the following is a complete and accurate list of lockers each of which CANNOT be a shared locker?", "options": [ "A) locker 2", "B) locker 4", "C) locker 1, locker 2", "D) locker 1, locker 4", "E) locker 2, locker 4" ], "answer": "D" }, { "id": "ar_lsat_200006_1-G_1_4", "context": "Four boys—Fred, Juan, Marc, and Paul—and three girls—Nita, Rachel, and Trisha—will be assigned to a row of five adjacent lockers, numbered consecutively 1 through 5, arranged along a straight wall. The following conditions govern the assignment of lockers to the seven children: Each locker must be assigned to either one or two children, and each child must be assigned to exactly one locker. Each shared locker must be assigned to one girl and one boy. Juan must share a locker, but Rachel cannot share a locker. Nita's locker cannot be adjacent to Trisha's locker. Fred must be assigned to locker 3.", "question": "Once Rachel has been assigned to a locker, what is the maximum number of different lockers each of which could be the locker to which Juan is assigned?", "options": [ "A) one", "B) two", "C) three", "D) four", "E) five" ], "answer": "C" }, { "id": "ar_lsat_200006_1-G_1_5", "context": "Four boys—Fred, Juan, Marc, and Paul—and three girls—Nita, Rachel, and Trisha—will be assigned to a row of five adjacent lockers, numbered consecutively 1 through 5, arranged along a straight wall. The following conditions govern the assignment of lockers to the seven children: Each locker must be assigned to either one or two children, and each child must be assigned to exactly one locker. Each shared locker must be assigned to one girl and one boy. Juan must share a locker, but Rachel cannot share a locker. Nita's locker cannot be adjacent to Trisha's locker. Fred must be assigned to locker 3.", "question": "If the first three lockers are assigned to girls, which one of the following must be true?", "options": [ "A) Juan is assigned to locker 1.", "B) Nita is assigned to locker 3.", "C) Trisha is assigned to locker 1.", "D) Juan is assigned to the same locker as Trisha.", "E) Paul is assigned to the same locker as Trisha." ], "answer": "A" }, { "id": "ar_lsat_200006_1-G_1_6", "context": "Four boys—Fred, Juan, Marc, and Paul—and three girls—Nita, Rachel, and Trisha—will be assigned to a row of five adjacent lockers, numbered consecutively 1 through 5, arranged along a straight wall. The following conditions govern the assignment of lockers to the seven children: Each locker must be assigned to either one or two children, and each child must be assigned to exactly one locker. Each shared locker must be assigned to one girl and one boy. Juan must share a locker, but Rachel cannot share a locker. Nita's locker cannot be adjacent to Trisha's locker. Fred must be assigned to locker 3.", "question": "If lockers 1 and 2 are each assigned to one boy and are not shared lockers, then locker 4 must be assigned to", "options": [ "A) Juan", "B) Paul", "C) Rachel", "D) Juan and Nita", "E) Marc and Trisha" ], "answer": "C" }, { "id": "ar_lsat_200006_1-G_2_7", "context": "A music store carries exactly ten types of CDs—both new and used of each of jazz, opera, pop, rap, and soul. The store is having a sale on some of these types of CDs. The following conditions must apply: Used pop is on sale; new opera is not. If both types of pop are on sale, then all soul is. If both types of jazz are on sale, then no rap is. If neither type of jazz is on sale, then new pop is. If either type of rap is on sale, then no soul is.", "question": "Which one of the following could be a complete and accurate list of the types of CDs that are on sale?", "options": [ "A) new jazz, used jazz, used opera, used pop, new rap", "B) new jazz, used pop, used rap, new soul", "C) used opera, used pop, new rap, used rap", "D) used opera, new pop, used pop, new soul", "E) used jazz, used pop, new soul, used soul" ], "answer": "E" }, { "id": "ar_lsat_200006_1-G_2_8", "context": "A music store carries exactly ten types of CDs—both new and used of each of jazz, opera, pop, rap, and soul. The store is having a sale on some of these types of CDs. The following conditions must apply: Used pop is on sale; new opera is not. If both types of pop are on sale, then all soul is. If both types of jazz are on sale, then no rap is. If neither type of jazz is on sale, then new pop is. If either type of rap is on sale, then no soul is.", "question": "If new soul is not on sale, then which one of the following must be true?", "options": [ "A) New rap is not on sale.", "B) New rap is on sale.", "C) Used opera is not on sale.", "D) At least one type of jazz is not on sale.", "E) At least one type of pop is not on sale." ], "answer": "E" }, { "id": "ar_lsat_200006_1-G_2_9", "context": "A music store carries exactly ten types of CDs—both new and used of each of jazz, opera, pop, rap, and soul. The store is having a sale on some of these types of CDs. The following conditions must apply: Used pop is on sale; new opera is not. If both types of pop are on sale, then all soul is. If both types of jazz are on sale, then no rap is. If neither type of jazz is on sale, then new pop is. If either type of rap is on sale, then no soul is.", "question": "If both types of jazz are on sale, then which one of the following is the minimum number of types of new CDs that could be included in the sale?", "options": [ "A) one", "B) two", "C) three", "D) four", "E) five" ], "answer": "A" }, { "id": "ar_lsat_200006_1-G_2_10", "context": "A music store carries exactly ten types of CDs—both new and used of each of jazz, opera, pop, rap, and soul. The store is having a sale on some of these types of CDs. The following conditions must apply: Used pop is on sale; new opera is not. If both types of pop are on sale, then all soul is. If both types of jazz are on sale, then no rap is. If neither type of jazz is on sale, then new pop is. If either type of rap is on sale, then no soul is.", "question": "Which one of the following CANNOT be true?", "options": [ "A) Neither type of opera and neither type of rap is on sale.", "B) Neither type of jazz and neither type of opera is on sale.", "C) Neither type of opera and neither type of soul is on sale.", "D) Neither type of jazz and neither type of soul is on sale.", "E) Neither type of jazz and neither type of rap is on sale." ], "answer": "D" }, { "id": "ar_lsat_200006_1-G_2_11", "context": "A music store carries exactly ten types of CDs—both new and used of each of jazz, opera, pop, rap, and soul. The store is having a sale on some of these types of CDs. The following conditions must apply: Used pop is on sale; new opera is not. If both types of pop are on sale, then all soul is. If both types of jazz are on sale, then no rap is. If neither type of jazz is on sale, then new pop is. If either type of rap is on sale, then no soul is.", "question": "If neither type of jazz is on sale, then each of the following must be true EXCEPT:", "options": [ "A) Used opera is on sale.", "B) New rap is not on sale.", "C) Used rap is not on sale.", "D) New soul is on sale.", "E) Used soul is on sale." ], "answer": "A" }, { "id": "ar_lsat_200006_1-G_2_12", "context": "A music store carries exactly ten types of CDs—both new and used of each of jazz, opera, pop, rap, and soul. The store is having a sale on some of these types of CDs. The following conditions must apply: Used pop is on sale; new opera is not. If both types of pop are on sale, then all soul is. If both types of jazz are on sale, then no rap is. If neither type of jazz is on sale, then new pop is. If either type of rap is on sale, then no soul is.", "question": "If new soul is the only type of new CD on sale, then which one of the following CANNOT be true?", "options": [ "A) Used jazz is not on sale.", "B) Used opera is not on sale.", "C) Used rap is not on sale.", "D) Used soul is on sale.", "E) Used soul is not on sale." ], "answer": "A" }, { "id": "ar_lsat_200006_1-G_2_13", "context": "A music store carries exactly ten types of CDs—both new and used of each of jazz, opera, pop, rap, and soul. The store is having a sale on some of these types of CDs. The following conditions must apply: Used pop is on sale; new opera is not. If both types of pop are on sale, then all soul is. If both types of jazz are on sale, then no rap is. If neither type of jazz is on sale, then new pop is. If either type of rap is on sale, then no soul is.", "question": "If exactly four of the five types of used CDs are the only CDs on sale, then which one of the following could be true?", "options": [ "A) Used jazz is not on sale.", "B) Used opera is not on sale.", "C) Used rap is not on sale.", "D) Neither type of jazz is on sale.", "E) Neither type of rap and neither type of soul is on sale." ], "answer": "C" }, { "id": "ar_lsat_200006_1-G_3_14", "context": "During a single week, from Monday through Friday, tours will be conducted of a company's three divisions—Operations, Production, and Sales. Exactly five tours will be conducted that week, one each day. The schedule of tours for the week must conform to the following restrictions: Each division is toured at least once. The Operations division is not toured on Monday. The Production division is not toured on Wednesday. The Sales division is toured on two consecutive days, and on no other days. If the Operations division is toured on Thursday, then the Production division is toured on Friday.", "question": "Which one of the following CANNOT be true of the week's tour schedule?", "options": [ "A) The division that is toured on Monday is also toured on Tuesday.", "B) The division that is toured on Monday is also toured on Friday.", "C) The division that is toured on Tuesday is also toured on Thursday.", "D) The division that is toured on Wednesday is also toured on Friday.", "E) The division that is toured on Thursday is also toured on Friday." ], "answer": "C" }, { "id": "ar_lsat_200006_1-G_3_15", "context": "During a single week, from Monday through Friday, tours will be conducted of a company's three divisions—Operations, Production, and Sales. Exactly five tours will be conducted that week, one each day. The schedule of tours for the week must conform to the following restrictions: Each division is toured at least once. The Operations division is not toured on Monday. The Production division is not toured on Wednesday. The Sales division is toured on two consecutive days, and on no other days. If the Operations division is toured on Thursday, then the Production division is toured on Friday.", "question": "If in addition to the Sales division one other division is toured on two consecutive days, then it could be true of the week's tour schedule both that the", "options": [ "A) Production division is toured on Monday and that the Operations division is toured on Thursday", "B) Production division is toured on Tuesday and that the Sales division is toured on Wednesday", "C) Operations division is toured on Tuesday and that the Production division is toured on Friday", "D) Sales division is toured on Monday and that the Operations division is toured on Friday", "E) Sales division is toured on Wednesday and that the Production division is toured on Friday" ], "answer": "B" }, { "id": "ar_lsat_200006_1-G_3_16", "context": "During a single week, from Monday through Friday, tours will be conducted of a company's three divisions—Operations, Production, and Sales. Exactly five tours will be conducted that week, one each day. The schedule of tours for the week must conform to the following restrictions: Each division is toured at least once. The Operations division is not toured on Monday. The Production division is not toured on Wednesday. The Sales division is toured on two consecutive days, and on no other days. If the Operations division is toured on Thursday, then the Production division is toured on Friday.", "question": "If in the week's tour schedule the division that is toured on Tuesday is also toured on Friday, then for which one of the following days must a tour of the Production division be scheduled?", "options": [ "A) Monday", "B) Tuesday", "C) Wednesday", "D) Thursday", "E) Friday" ], "answer": "A" }, { "id": "ar_lsat_200006_1-G_3_17", "context": "During a single week, from Monday through Friday, tours will be conducted of a company's three divisions—Operations, Production, and Sales. Exactly five tours will be conducted that week, one each day. The schedule of tours for the week must conform to the following restrictions: Each division is toured at least once. The Operations division is not toured on Monday. The Production division is not toured on Wednesday. The Sales division is toured on two consecutive days, and on no other days. If the Operations division is toured on Thursday, then the Production division is toured on Friday.", "question": "If in the week's tour schedule the division that is toured on Monday is not the division that is toured on Tuesday, then which one of the following could be true of the week's schedule?", "options": [ "A) A tour of the Sales division is scheduled for some day earlier in the week than is any tour of the Production division.", "B) A tour of the Operations division is scheduled for some day earlier in the week than is any tour of the Production division.", "C) The Sales division is toured on Monday.", "D) The Production division is toured on Tuesday.", "E) The Operations division is toured on Wednesday." ], "answer": "E" }, { "id": "ar_lsat_200006_1-G_3_18", "context": "During a single week, from Monday through Friday, tours will be conducted of a company's three divisions—Operations, Production, and Sales. Exactly five tours will be conducted that week, one each day. The schedule of tours for the week must conform to the following restrictions: Each division is toured at least once. The Operations division is not toured on Monday. The Production division is not toured on Wednesday. The Sales division is toured on two consecutive days, and on no other days. If the Operations division is toured on Thursday, then the Production division is toured on Friday.", "question": "If in the week's tour schedule the division that is toured on Tuesday is also toured on Wednesday, then which one of the following must be true of the week's tour schedule?", "options": [ "A) The Production division is toured on Monday.", "B) The Operations division is toured on Tuesday.", "C) The Sales division is toured on Wednesday.", "D) The Sales division is toured on Thursday.", "E) The Production division is toured on Friday." ], "answer": "A" }, { "id": "ar_lsat_200006_1-G_4_19", "context": "A crew of up to five workers is to install a partition in at most three days. The crew completes five tasks in this order: framing, wallboarding, taping, sanding, priming. The crew is selected from the following list, which specifies exactly the tasks each person can do: George: taping Helena: sanding, priming Inga: framing, priming Kelly: framing, sanding Leanda: wallboarding, taping Maricita: sanding Olaf: wallboarding, priming The following conditions must apply: At least one task is done each day. Taping and priming are done on different days. Each crew member does at least one task during the installation, but no more than one task a day. Each task is done by exactly one worker, completed the day it is started and before the next task begins.", "question": "Which one of the following could be a complete and accurate list of the members of the crew?", "options": [ "A) George, Helena, Inga, Kelly", "B) George, Helena, Kelly, Leanda", "C) Helena, Inga, Kelly, Olaf", "D) Helena, Inga, Maricita, Olaf", "E) George, Helena, Leanda, Maricita, Olaf" ], "answer": "B" }, { "id": "ar_lsat_200006_1-G_4_20", "context": "A crew of up to five workers is to install a partition in at most three days. The crew completes five tasks in this order: framing, wallboarding, taping, sanding, priming. The crew is selected from the following list, which specifies exactly the tasks each person can do: George: taping Helena: sanding, priming Inga: framing, priming Kelly: framing, sanding Leanda: wallboarding, taping Maricita: sanding Olaf: wallboarding, priming The following conditions must apply: At least one task is done each day. Taping and priming are done on different days. Each crew member does at least one task during the installation, but no more than one task a day. Each task is done by exactly one worker, completed the day it is started and before the next task begins.", "question": "If the installation takes three days, and if the same two crew members work on the first and third days, then which one of the following could be the pair of crew members who work on those two days?", "options": [ "A) Helena and Inga", "B) Inga and Kelly", "C) Inga and Leanda", "D) Kelly and Olaf", "E) Leanda and Olaf" ], "answer": "D" }, { "id": "ar_lsat_200006_1-G_4_21", "context": "A crew of up to five workers is to install a partition in at most three days. The crew completes five tasks in this order: framing, wallboarding, taping, sanding, priming. The crew is selected from the following list, which specifies exactly the tasks each person can do: George: taping Helena: sanding, priming Inga: framing, priming Kelly: framing, sanding Leanda: wallboarding, taping Maricita: sanding Olaf: wallboarding, priming The following conditions must apply: At least one task is done each day. Taping and priming are done on different days. Each crew member does at least one task during the installation, but no more than one task a day. Each task is done by exactly one worker, completed the day it is started and before the next task begins.", "question": "Each of the following could be a complete and accurate list of the members of the crew EXCEPT:", "options": [ "A) Helena, Inga, Kelly, Maricita", "B) Inga, Kelly, Leanda, Olaf", "C) George, Helena, Inga, Leanda", "D) Inga, Leanda, Maricita, Olaf", "E) Kelly, Leanda, Maricita, Olaf" ], "answer": "A" }, { "id": "ar_lsat_200006_1-G_4_22", "context": "A crew of up to five workers is to install a partition in at most three days. The crew completes five tasks in this order: framing, wallboarding, taping, sanding, priming. The crew is selected from the following list, which specifies exactly the tasks each person can do: George: taping Helena: sanding, priming Inga: framing, priming Kelly: framing, sanding Leanda: wallboarding, taping Maricita: sanding Olaf: wallboarding, priming The following conditions must apply: At least one task is done each day. Taping and priming are done on different days. Each crew member does at least one task during the installation, but no more than one task a day. Each task is done by exactly one worker, completed the day it is started and before the next task begins.", "question": "If the installation takes three days, and if the sanding is done on the third day, then which one of the following could be a list of all the crew members who work on the second day?", "options": [ "A) Inga", "B) Kelly", "C) Olaf", "D) George and Helena", "E) Leanda and Olaf" ], "answer": "E" }, { "id": "ar_lsat_200006_1-G_4_23", "context": "A crew of up to five workers is to install a partition in at most three days. The crew completes five tasks in this order: framing, wallboarding, taping, sanding, priming. The crew is selected from the following list, which specifies exactly the tasks each person can do: George: taping Helena: sanding, priming Inga: framing, priming Kelly: framing, sanding Leanda: wallboarding, taping Maricita: sanding Olaf: wallboarding, priming The following conditions must apply: At least one task is done each day. Taping and priming are done on different days. Each crew member does at least one task during the installation, but no more than one task a day. Each task is done by exactly one worker, completed the day it is started and before the next task begins.", "question": "Which one of the following could be a pair of members of the crew both of whom work on the same days as each other and each of whom perform two tasks?", "options": [ "A) George and Maricita", "B) Helena and Kelly", "C) Inga and Leanda", "D) Kelly and Leanda", "E) Leanda and Olaf" ], "answer": "D" }, { "id": "ar_lsat_200310_2-G_1_1", "context": "A closet contains exactly six hangers—1, 2, 3, 4, 5, and 6—hanging, in that order, from left to right. It also contains exactly six dresses—one gauze, one linen, one polyester, one rayon, one silk, and one wool—a different dress on each of the hangers, in an order satisfying the following conditions: The gauze dress is on a lower-numbered hanger than the polyester dress. The rayon dress is on hanger 1 or hanger 6. Either the wool dress or the silk dress is on hanger 3. The linen dress hangs immediately to the right of the silk dress.", "question": "Which one of the following could be an accurate matching of the hangers to the fabrics of the dresses that hang on them?", "options": [ "A) 1: wool; 2: gauze; 3: silk; 4: linen; 5: polyester; 6: rayon", "B) 1: rayon; 2: wool; 3: gauze; 4: silk; 5: linen; 6: polyester", "C) 1: polyester; 2: gauze; 3: wool; 4: silk; 5: linen; 6: rayon", "D) 1: linen; 2: silk; 3: wool; 4: gauze; 5: polyester; 6: rayon", "E) 1: gauze; 2: rayon; 3: silk; 4: linen; 5: wool; 6: polyester" ], "answer": "A" }, { "id": "ar_lsat_200310_2-G_1_2", "context": "A closet contains exactly six hangers—1, 2, 3, 4, 5, and 6—hanging, in that order, from left to right. It also contains exactly six dresses—one gauze, one linen, one polyester, one rayon, one silk, and one wool—a different dress on each of the hangers, in an order satisfying the following conditions: The gauze dress is on a lower-numbered hanger than the polyester dress. The rayon dress is on hanger 1 or hanger 6. Either the wool dress or the silk dress is on hanger 3. The linen dress hangs immediately to the right of the silk dress.", "question": "If both the silk dress and the gauze dress are on odd-numbered hangers, then which one of the following could be true?", "options": [ "A) The polyester dress is on hanger 1.", "B) The wool dress is on hanger 2.", "C) The polyester dress is on hanger 4.", "D) The linen dress is on hanger 5.", "E) The wool dress is on hanger 6." ], "answer": "B" }, { "id": "ar_lsat_200310_2-G_1_3", "context": "A closet contains exactly six hangers—1, 2, 3, 4, 5, and 6—hanging, in that order, from left to right. It also contains exactly six dresses—one gauze, one linen, one polyester, one rayon, one silk, and one wool—a different dress on each of the hangers, in an order satisfying the following conditions: The gauze dress is on a lower-numbered hanger than the polyester dress. The rayon dress is on hanger 1 or hanger 6. Either the wool dress or the silk dress is on hanger 3. The linen dress hangs immediately to the right of the silk dress.", "question": "If the silk dress is on an even-numbered hanger, which one of the following could be on the hanger immediately to its left?", "options": [ "A) the gauze dress", "B) the linen dress", "C) the polyester dress", "D) the rayon dress", "E) the wool dress" ], "answer": "E" }, { "id": "ar_lsat_200310_2-G_1_4", "context": "A closet contains exactly six hangers—1, 2, 3, 4, 5, and 6—hanging, in that order, from left to right. It also contains exactly six dresses—one gauze, one linen, one polyester, one rayon, one silk, and one wool—a different dress on each of the hangers, in an order satisfying the following conditions: The gauze dress is on a lower-numbered hanger than the polyester dress. The rayon dress is on hanger 1 or hanger 6. Either the wool dress or the silk dress is on hanger 3. The linen dress hangs immediately to the right of the silk dress.", "question": "If the polyester dress is on hanger 2, then which one of the following must be true?", "options": [ "A) The silk dress is on hanger 1.", "B) The wool dress is on hanger 3.", "C) The linen dress is on hanger 4.", "D) The linen dress is on hanger 5.", "E) The rayon dress is on hanger 6." ], "answer": "E" }, { "id": "ar_lsat_200310_2-G_1_5", "context": "A closet contains exactly six hangers—1, 2, 3, 4, 5, and 6—hanging, in that order, from left to right. It also contains exactly six dresses—one gauze, one linen, one polyester, one rayon, one silk, and one wool—a different dress on each of the hangers, in an order satisfying the following conditions: The gauze dress is on a lower-numbered hanger than the polyester dress. The rayon dress is on hanger 1 or hanger 6. Either the wool dress or the silk dress is on hanger 3. The linen dress hangs immediately to the right of the silk dress.", "question": "Which one of the following CANNOT be true?", "options": [ "A) The linen dress hangs immediately next to the gauze dress.", "B) The polyester dress hangs immediately to the right of the rayon dress.", "C) The rayon dress hangs immediately to the left of the wool dress.", "D) The silk dress is on a lower-numbered hanger than the gauze dress.", "E) The wool dress is on a higher-numbered hanger than the rayon dress." ], "answer": "B" }, { "id": "ar_lsat_200310_2-G_1_6", "context": "A closet contains exactly six hangers—1, 2, 3, 4, 5, and 6—hanging, in that order, from left to right. It also contains exactly six dresses—one gauze, one linen, one polyester, one rayon, one silk, and one wool—a different dress on each of the hangers, in an order satisfying the following conditions: The gauze dress is on a lower-numbered hanger than the polyester dress. The rayon dress is on hanger 1 or hanger 6. Either the wool dress or the silk dress is on hanger 3. The linen dress hangs immediately to the right of the silk dress.", "question": "Which one of the following CANNOT hang immediately next to the rayon dress?", "options": [ "A) the gauze dress", "B) the linen dress", "C) the polyester dress", "D) the silk dress", "E) the wool dress" ], "answer": "D" }, { "id": "ar_lsat_200310_2-G_1_7", "context": "A closet contains exactly six hangers—1, 2, 3, 4, 5, and 6—hanging, in that order, from left to right. It also contains exactly six dresses—one gauze, one linen, one polyester, one rayon, one silk, and one wool—a different dress on each of the hangers, in an order satisfying the following conditions: The gauze dress is on a lower-numbered hanger than the polyester dress. The rayon dress is on hanger 1 or hanger 6. Either the wool dress or the silk dress is on hanger 3. The linen dress hangs immediately to the right of the silk dress.", "question": "Assume that the original condition that the linen dress hangs immediately to the right of the silk dress is replaced by the condition that the wool dress hangs immediately to the right of the silk dress. If all the other initial conditions remain in effect, which one of the following must be false?", "options": [ "A) The linen dress is on hanger 1.", "B) The gauze dress is on hanger 2.", "C) The wool dress is on hanger 4.", "D) The silk dress is on hanger 5.", "E) The polyester dress is on hanger 6." ], "answer": "D" }, { "id": "ar_lsat_200310_2-G_2_8", "context": "At a children's festival, exactly four songs are performed, each exactly once: \"Night's All Right,\" \"Question Man,\" \"Rhino Rock,\" and \"Sammy.\" The songs are performed consecutively, each on a different one of exactly four instruments: flute, guitar, harmonica, or keyboard. The songs are performed in accordance with the following: The first song performed is not performed on the flute. If \"Sammy\" is performed on the keyboard, then \"Rhino Rock\" is performed on the harmonica. If \"Question Man\" is performed on the keyboard, then \"Night's All Right\" is performed on the flute. The song performed on the keyboard immediately follows \"Rhino Rock\" and immediately precedes \"Night's All Right.\"", "question": "Which one of the following could be an accurate matching of the four songs performed at the festival with the instruments on which they are performed, listed in order from the first song performed to the last?", "options": [ "A) \"Night's All Right\": guitar;\" Question Man\": keyboard; \"Sammy\": guitar;\" Rhino Rock\": flute", "B) \"Question Man\": guitar;\" Rhino Rock\": harmonica; \"Sammy\": keyboard;\" Night's All Right\": flute", "C) \"Rhino Rock\": flute;\" Question Man\": keyboard; \"Night's All Right\": harmonica;\" Sammy\": guitar", "D) \"Sammy\": harmonica;\" Night's All Right\": guitar; \"Question Man\": keyboard;\" Rhino Rock\": flute", "E) \"Sammy\": harmonica;\" Rhino Rock\": guitar; \"Question Man\": flute;\" Night's All Right\": keyboard" ], "answer": "B" }, { "id": "ar_lsat_200310_2-G_2_9", "context": "At a children's festival, exactly four songs are performed, each exactly once: \"Night's All Right,\" \"Question Man,\" \"Rhino Rock,\" and \"Sammy.\" The songs are performed consecutively, each on a different one of exactly four instruments: flute, guitar, harmonica, or keyboard. The songs are performed in accordance with the following: The first song performed is not performed on the flute. If \"Sammy\" is performed on the keyboard, then \"Rhino Rock\" is performed on the harmonica. If \"Question Man\" is performed on the keyboard, then \"Night's All Right\" is performed on the flute. The song performed on the keyboard immediately follows \"Rhino Rock\" and immediately precedes \"Night's All Right.\"", "question": "Which one of the following could be true?", "options": [ "A) \"Question Man\" immediately follows the song performed on the keyboard.", "B) \"Night's All Right\" immediately precedes the song performed on the keyboard.", "C) \"Question Man\" immediately precedes the song performed on the guitar.", "D) \"Rhino Rock\" immediately precedes the song performed on the harmonica.", "E) \"Sammy\" immediately precedes the song performed on the guitar." ], "answer": "E" }, { "id": "ar_lsat_200310_2-G_2_10", "context": "At a children's festival, exactly four songs are performed, each exactly once: \"Night's All Right,\" \"Question Man,\" \"Rhino Rock,\" and \"Sammy.\" The songs are performed consecutively, each on a different one of exactly four instruments: flute, guitar, harmonica, or keyboard. The songs are performed in accordance with the following: The first song performed is not performed on the flute. If \"Sammy\" is performed on the keyboard, then \"Rhino Rock\" is performed on the harmonica. If \"Question Man\" is performed on the keyboard, then \"Night's All Right\" is performed on the flute. The song performed on the keyboard immediately follows \"Rhino Rock\" and immediately precedes \"Night's All Right.\"", "question": "Which one of the following CANNOT be true of the song performed on the flute?", "options": [ "A) It immediately precedes \"Question Man.\"", "B) It immediately follows \"Question Man.\"", "C) It immediately precedes \"Rhino Rock.\"", "D) It immediately follows \"Night's All Right.\"", "E) It immediately follows \"Sammy.\"" ], "answer": "C" }, { "id": "ar_lsat_200310_2-G_2_11", "context": "At a children's festival, exactly four songs are performed, each exactly once: \"Night's All Right,\" \"Question Man,\" \"Rhino Rock,\" and \"Sammy.\" The songs are performed consecutively, each on a different one of exactly four instruments: flute, guitar, harmonica, or keyboard. The songs are performed in accordance with the following: The first song performed is not performed on the flute. If \"Sammy\" is performed on the keyboard, then \"Rhino Rock\" is performed on the harmonica. If \"Question Man\" is performed on the keyboard, then \"Night's All Right\" is performed on the flute. The song performed on the keyboard immediately follows \"Rhino Rock\" and immediately precedes \"Night's All Right.\"", "question": "If \"Rhino Rock\" is the second song performed at the festival, then which one of the following could be true?", "options": [ "A) The first song performed is performed on the keyboard.", "B) The third song performed is performed on the guitar.", "C) The third song performed is performed on the flute.", "D) \"Night's All Right\" is performed on the guitar.", "E) \"Rhino Rock\" is performed on the guitar." ], "answer": "E" }, { "id": "ar_lsat_200310_2-G_2_12", "context": "At a children's festival, exactly four songs are performed, each exactly once: \"Night's All Right,\" \"Question Man,\" \"Rhino Rock,\" and \"Sammy.\" The songs are performed consecutively, each on a different one of exactly four instruments: flute, guitar, harmonica, or keyboard. The songs are performed in accordance with the following: The first song performed is not performed on the flute. If \"Sammy\" is performed on the keyboard, then \"Rhino Rock\" is performed on the harmonica. If \"Question Man\" is performed on the keyboard, then \"Night's All Right\" is performed on the flute. The song performed on the keyboard immediately follows \"Rhino Rock\" and immediately precedes \"Night's All Right.\"", "question": "If \"Question Man\" is the third song performed at the festival, then each of the following could be true EXCEPT:", "options": [ "A) \"Question Man\" is performed on the guitar.", "B) \"Question Man\" is performed on the keyboard.", "C) \"Rhino Rock\" is performed on the guitar.", "D) \"Sammy\" is performed on the guitar.", "E) \"Sammy\" is performed on the harmonica." ], "answer": "A" }, { "id": "ar_lsat_200310_2-G_3_13", "context": "Each of the seven members of the board of directors—Guzman, Hawking, Lepp, Miyauchi, Upchurch, Wharton, and Zhu—serves on exactly one of two committees—the finance committee or the incentives committee. Only board members serve on these committees. Committee membership is consistent with the following conditions: If Guzman serves on the finance committee, then Hawking serves on the incentives committee. If Lepp serves on the finance committee, then Miyauchi and Upchurch both serve on the incentives committee. Wharton serves on a different committee from the one on which Zhu serves. Upchurch serves on a different committee from the one on which Guzman serves. If Zhu serves on the finance committee, so does Hawking.", "question": "Which one of the following could be a complete and accurate list of the members of the finance committee?", "options": [ "A) Guzman, Hawking, Miyauchi, Wharton", "B) Guzman, Lepp, Zhu", "C) Hawking, Miyauchi, Zhu", "D) Hawking, Upchurch, Wharton, Zhu", "E) Miyauchi, Upchurch, Wharton" ], "answer": "E" }, { "id": "ar_lsat_200310_2-G_3_14", "context": "Each of the seven members of the board of directors—Guzman, Hawking, Lepp, Miyauchi, Upchurch, Wharton, and Zhu—serves on exactly one of two committees—the finance committee or the incentives committee. Only board members serve on these committees. Committee membership is consistent with the following conditions: If Guzman serves on the finance committee, then Hawking serves on the incentives committee. If Lepp serves on the finance committee, then Miyauchi and Upchurch both serve on the incentives committee. Wharton serves on a different committee from the one on which Zhu serves. Upchurch serves on a different committee from the one on which Guzman serves. If Zhu serves on the finance committee, so does Hawking.", "question": "Which one of the following pairs of board members CANNOT both serve on the incentives committee?", "options": [ "A) Guzman and Hawking", "B) Guzman and Wharton", "C) Hawking and Wharton", "D) Miyauchi and Upchurch", "E) Miyauchi and Wharton" ], "answer": "C" }, { "id": "ar_lsat_200310_2-G_3_15", "context": "Each of the seven members of the board of directors—Guzman, Hawking, Lepp, Miyauchi, Upchurch, Wharton, and Zhu—serves on exactly one of two committees—the finance committee or the incentives committee. Only board members serve on these committees. Committee membership is consistent with the following conditions: If Guzman serves on the finance committee, then Hawking serves on the incentives committee. If Lepp serves on the finance committee, then Miyauchi and Upchurch both serve on the incentives committee. Wharton serves on a different committee from the one on which Zhu serves. Upchurch serves on a different committee from the one on which Guzman serves. If Zhu serves on the finance committee, so does Hawking.", "question": "What is the maximum number of members on the finance committee?", "options": [ "A) two", "B) three", "C) four", "D) five", "E) six" ], "answer": "C" }, { "id": "ar_lsat_200310_2-G_3_16", "context": "Each of the seven members of the board of directors—Guzman, Hawking, Lepp, Miyauchi, Upchurch, Wharton, and Zhu—serves on exactly one of two committees—the finance committee or the incentives committee. Only board members serve on these committees. Committee membership is consistent with the following conditions: If Guzman serves on the finance committee, then Hawking serves on the incentives committee. If Lepp serves on the finance committee, then Miyauchi and Upchurch both serve on the incentives committee. Wharton serves on a different committee from the one on which Zhu serves. Upchurch serves on a different committee from the one on which Guzman serves. If Zhu serves on the finance committee, so does Hawking.", "question": "If Miyauchi and Wharton both serve on the finance committee, then which one of the following could be true?", "options": [ "A) Guzman and Lepp both serve on the finance committee.", "B) Guzman and Upchurch both serve on the incentives committee.", "C) Hawking and Zhu both serve on the finance committee.", "D) Lepp and Upchurch both serve on the incentives committee.", "E) Zhu and Upchurch both serve on the finance committee." ], "answer": "D" }, { "id": "ar_lsat_200310_2-G_3_17", "context": "Each of the seven members of the board of directors—Guzman, Hawking, Lepp, Miyauchi, Upchurch, Wharton, and Zhu—serves on exactly one of two committees—the finance committee or the incentives committee. Only board members serve on these committees. Committee membership is consistent with the following conditions: If Guzman serves on the finance committee, then Hawking serves on the incentives committee. If Lepp serves on the finance committee, then Miyauchi and Upchurch both serve on the incentives committee. Wharton serves on a different committee from the one on which Zhu serves. Upchurch serves on a different committee from the one on which Guzman serves. If Zhu serves on the finance committee, so does Hawking.", "question": "If Guzman serves on the incentives committee, then which one of the following must be true?", "options": [ "A) Hawking serves on the finance committee.", "B) Lepp serves on the incentives committee.", "C) Miyauchi serves on the finance committee.", "D) Wharton serves on the incentives committee.", "E) Zhu serves on the finance committee." ], "answer": "B" }, { "id": "ar_lsat_200310_2-G_4_18", "context": "Eight people—Fiona, George, Harriet, Ingrid, Karl, Manuel, Olivia, and Peter—are sitting, evenly spaced, around a circular picnic table. Any two of them are said to be sitting directly across from one another if and only if there are exactly three other people sitting between them, counting in either direction around the table. The following conditions apply: Fiona sits directly across from George. Harriet sits immediately next to neither Fiona nor Karl. Ingrid sits immediately next to, and immediately clockwise from, Olivia.", "question": "Which one of the following could be the order in which four of the people are seated, with no one else seated between them, counting clockwise around the table?", "options": [ "A) George, Peter, Karl, Fiona", "B) Harriet, Olivia, Ingrid, Karl", "C) Ingrid, Fiona, Peter, Manuel", "D) Olivia, Manuel, Karl, George", "E) Peter, Harriet, Karl, Fiona" ], "answer": "C" }, { "id": "ar_lsat_200310_2-G_4_19", "context": "Eight people—Fiona, George, Harriet, Ingrid, Karl, Manuel, Olivia, and Peter—are sitting, evenly spaced, around a circular picnic table. Any two of them are said to be sitting directly across from one another if and only if there are exactly three other people sitting between them, counting in either direction around the table. The following conditions apply: Fiona sits directly across from George. Harriet sits immediately next to neither Fiona nor Karl. Ingrid sits immediately next to, and immediately clockwise from, Olivia.", "question": "If Harriet and Olivia each sits immediately next to George, then which one of the following could be the two people each of whom sits immediately next to Peter?", "options": [ "A) Fiona and Karl", "B) Fiona and Olivia", "C) Harriet and Ingrid", "D) Harriet and Karl", "E) Karl and Manuel" ], "answer": "D" }, { "id": "ar_lsat_200310_2-G_4_20", "context": "Eight people—Fiona, George, Harriet, Ingrid, Karl, Manuel, Olivia, and Peter—are sitting, evenly spaced, around a circular picnic table. Any two of them are said to be sitting directly across from one another if and only if there are exactly three other people sitting between them, counting in either direction around the table. The following conditions apply: Fiona sits directly across from George. Harriet sits immediately next to neither Fiona nor Karl. Ingrid sits immediately next to, and immediately clockwise from, Olivia.", "question": "If George does not sit immediately next to Harriet, then which one of the following could be the two people each of whom sits immediately next to Manuel?", "options": [ "A) Fiona and Harriet", "B) Fiona and Peter", "C) George and Karl", "D) George and Peter", "E) Harriet and Peter" ], "answer": "A" }, { "id": "ar_lsat_200310_2-G_4_21", "context": "Eight people—Fiona, George, Harriet, Ingrid, Karl, Manuel, Olivia, and Peter—are sitting, evenly spaced, around a circular picnic table. Any two of them are said to be sitting directly across from one another if and only if there are exactly three other people sitting between them, counting in either direction around the table. The following conditions apply: Fiona sits directly across from George. Harriet sits immediately next to neither Fiona nor Karl. Ingrid sits immediately next to, and immediately clockwise from, Olivia.", "question": "If Manuel sits immediately next to Olivia, then which one of the following people must sit immediately next to Fiona?", "options": [ "A) Harriet", "B) Ingrid", "C) Karl", "D) Manuel", "E) Peter" ], "answer": "C" }, { "id": "ar_lsat_200310_2-G_4_22", "context": "Eight people—Fiona, George, Harriet, Ingrid, Karl, Manuel, Olivia, and Peter—are sitting, evenly spaced, around a circular picnic table. Any two of them are said to be sitting directly across from one another if and only if there are exactly three other people sitting between them, counting in either direction around the table. The following conditions apply: Fiona sits directly across from George. Harriet sits immediately next to neither Fiona nor Karl. Ingrid sits immediately next to, and immediately clockwise from, Olivia.", "question": "What is the minimum possible number of people sitting between Ingrid and Manuel, counting clockwise from Ingrid around the table?", "options": [ "A) zero", "B) one", "C) two", "D) three", "E) four" ], "answer": "A" }, { "id": "ar_lsat_200310_2-G_4_23", "context": "Eight people—Fiona, George, Harriet, Ingrid, Karl, Manuel, Olivia, and Peter—are sitting, evenly spaced, around a circular picnic table. Any two of them are said to be sitting directly across from one another if and only if there are exactly three other people sitting between them, counting in either direction around the table. The following conditions apply: Fiona sits directly across from George. Harriet sits immediately next to neither Fiona nor Karl. Ingrid sits immediately next to, and immediately clockwise from, Olivia.", "question": "If Karl sits directly across from Ingrid, then each of the following people could sit immediately next to Olivia EXCEPT:", "options": [ "A) Fiona", "B) George", "C) Harriet", "D) Manuel", "E) Peter" ], "answer": "B" }, { "id": "ar_lsat_200310_2-G_4_24", "context": "Eight people—Fiona, George, Harriet, Ingrid, Karl, Manuel, Olivia, and Peter—are sitting, evenly spaced, around a circular picnic table. Any two of them are said to be sitting directly across from one another if and only if there are exactly three other people sitting between them, counting in either direction around the table. The following conditions apply: Fiona sits directly across from George. Harriet sits immediately next to neither Fiona nor Karl. Ingrid sits immediately next to, and immediately clockwise from, Olivia.", "question": "If Karl sits directly across from Harriet, then what is the minimum possible number of people sitting between George and Karl, counting clockwise from George to Karl?", "options": [ "A) zero", "B) one", "C) two", "D) three", "E) four" ], "answer": "C" }, { "id": "ar_lsat_201106_2-G_1_1", "context": "Each of seven candidates for the position of judge—Hamadi, Jefferson, Kurtz, Li, McDonnell, Ortiz, and Perkins—will be appointed to an open position on one of two courts—the appellate court or the trial court. There are three open positions on the appellate court and six open positions on the trial court, but not all of them will be filled at this time. The judicial appointments will conform to the following conditions: Li must be appointed to the appellate court. Kurtz must be appointed to the trial court. Hamadi cannot be appointed to the same court as Perkins.", "question": "Which one of the following is an acceptable set of appointments of candidates to courts?", "options": [ "A) appellate: Hamadi, Ortiz trial: Jefferson, Kurtz, Li, McDonnell, Perkins", "B) appellate: Hamadi, Li, Perkins trial: Jefferson, Kurtz, McDonnell, Ortiz", "C) appellate: Kurtz, Li, Perkins trial: Hamadi, Jefferson, McDonnell, Ortiz", "D) appellate: Li, McDonnell, Ortiz trial: Hamadi, Jefferson, Kurtz, Perkins", "E) appellate: Li, Perkins trial: Hamadi, Jefferson, Kurtz, McDonnell, Ortiz" ], "answer": "E" }, { "id": "ar_lsat_201106_2-G_1_2", "context": "Each of seven candidates for the position of judge—Hamadi, Jefferson, Kurtz, Li, McDonnell, Ortiz, and Perkins—will be appointed to an open position on one of two courts—the appellate court or the trial court. There are three open positions on the appellate court and six open positions on the trial court, but not all of them will be filled at this time. The judicial appointments will conform to the following conditions: Li must be appointed to the appellate court. Kurtz must be appointed to the trial court. Hamadi cannot be appointed to the same court as Perkins.", "question": "Which one of the following CANNOT be true?", "options": [ "A) Hamadi and McDonnell are both appointed to the appellate court.", "B) McDonnell and Ortiz are both appointed to the appellate court.", "C) Ortiz and Perkins are both appointed to the appellate court.", "D) Hamadi and Jefferson are both appointed to the trial court.", "E) Ortiz and Perkins are both appointed to the trial court." ], "answer": "B" }, { "id": "ar_lsat_201106_2-G_1_3", "context": "Each of seven candidates for the position of judge—Hamadi, Jefferson, Kurtz, Li, McDonnell, Ortiz, and Perkins—will be appointed to an open position on one of two courts—the appellate court or the trial court. There are three open positions on the appellate court and six open positions on the trial court, but not all of them will be filled at this time. The judicial appointments will conform to the following conditions: Li must be appointed to the appellate court. Kurtz must be appointed to the trial court. Hamadi cannot be appointed to the same court as Perkins.", "question": "Which one of the following CANNOT be true?", "options": [ "A) Jefferson and McDonnell are both appointed to the appellate court.", "B) Jefferson and McDonnell are both appointed to the trial court.", "C) McDonnell and Ortiz are both appointed to the trial court.", "D) McDonnell and Perkins are both appointed to the appellate court.", "E) McDonnell and Perkins are both appointed to the trial court." ], "answer": "A" }, { "id": "ar_lsat_201106_2-G_1_4", "context": "Each of seven candidates for the position of judge—Hamadi, Jefferson, Kurtz, Li, McDonnell, Ortiz, and Perkins—will be appointed to an open position on one of two courts—the appellate court or the trial court. There are three open positions on the appellate court and six open positions on the trial court, but not all of them will be filled at this time. The judicial appointments will conform to the following conditions: Li must be appointed to the appellate court. Kurtz must be appointed to the trial court. Hamadi cannot be appointed to the same court as Perkins.", "question": "If Ortiz is appointed to the appellate court, which one of the following must be true?", "options": [ "A) Hamadi is appointed to the appellate court.", "B) Jefferson is appointed to the appellate court.", "C) Jefferson is appointed to the trial court.", "D) Perkins is appointed to the appellate court.", "E) Perkins is appointed to the trial court." ], "answer": "C" }, { "id": "ar_lsat_201106_2-G_1_5", "context": "Each of seven candidates for the position of judge—Hamadi, Jefferson, Kurtz, Li, McDonnell, Ortiz, and Perkins—will be appointed to an open position on one of two courts—the appellate court or the trial court. There are three open positions on the appellate court and six open positions on the trial court, but not all of them will be filled at this time. The judicial appointments will conform to the following conditions: Li must be appointed to the appellate court. Kurtz must be appointed to the trial court. Hamadi cannot be appointed to the same court as Perkins.", "question": "Which one of the following, if substituted for the condition that Hamadi cannot be appointed to the same court as Perkins, would have the same effect on the appointments of the seven candidates?", "options": [ "A) Hamadi and Perkins cannot both be appointed to the appellate court.", "B) If Hamadi is not appointed to the trial court, then Perkins must be.", "C) If Perkins is appointed to the same court as Jefferson, then Hamadi cannot be.", "D) If Hamadi is appointed to the same court as Li, then Perkins must be appointed to the same court as Kurtz.", "E) No three of Hamadi, Kurtz, Li, and Perkins can be appointed to the same court as each other." ], "answer": "E" }, { "id": "ar_lsat_201106_2-G_2_6", "context": "Exactly six members of a skydiving team—Larue, Ohba, Pei, Trevino, Weiss, and Zacny—each dive exactly once, one at a time, from a plane, consistent with the following conditions: Trevino dives from the plane at some time before Weiss does. Larue dives from the plane either first or last. Neither Weiss nor Zacny dives from the plane last. Pei dives from the plane at some time after either Ohba or Larue but not both.", "question": "Which one of the following could be an accurate list of the members in the order in which they dive from the plane, from first to last?", "options": [ "A) Larue, Trevino, Ohba, Zacny, Pei, Weiss", "B) Larue, Trevino, Pei, Zacny, Weiss, Ohba", "C) Weiss, Ohba, Trevino, Zacny, Pei, Larue", "D) Trevino, Weiss, Pei, Ohba, Zacny, Larue", "E) Trevino, Weiss, Zacny, Larue, Pei, Ohba" ], "answer": "B" }, { "id": "ar_lsat_201106_2-G_2_7", "context": "Exactly six members of a skydiving team—Larue, Ohba, Pei, Trevino, Weiss, and Zacny—each dive exactly once, one at a time, from a plane, consistent with the following conditions: Trevino dives from the plane at some time before Weiss does. Larue dives from the plane either first or last. Neither Weiss nor Zacny dives from the plane last. Pei dives from the plane at some time after either Ohba or Larue but not both.", "question": "Which one of the following must be true?", "options": [ "A) At least two of the members dive from the plane after Larue.", "B) At least two of the members dive from the plane after Ohba.", "C) At least two of the members dive from the plane after Pei.", "D) At least two of the members dive from the plane after Trevino.", "E) At least two of the members dive from the plane after Weiss." ], "answer": "D" }, { "id": "ar_lsat_201106_2-G_2_8", "context": "Exactly six members of a skydiving team—Larue, Ohba, Pei, Trevino, Weiss, and Zacny—each dive exactly once, one at a time, from a plane, consistent with the following conditions: Trevino dives from the plane at some time before Weiss does. Larue dives from the plane either first or last. Neither Weiss nor Zacny dives from the plane last. Pei dives from the plane at some time after either Ohba or Larue but not both.", "question": "If Larue dives from the plane last, then each of the following could be true EXCEPT:", "options": [ "A) Trevino dives from the plane fourth.", "B) Weiss dives from the plane fourth.", "C) Ohba dives from the plane fifth.", "D) Pei dives from the plane fifth.", "E) Zacny dives from the plane fifth." ], "answer": "C" }, { "id": "ar_lsat_201106_2-G_2_9", "context": "Exactly six members of a skydiving team—Larue, Ohba, Pei, Trevino, Weiss, and Zacny—each dive exactly once, one at a time, from a plane, consistent with the following conditions: Trevino dives from the plane at some time before Weiss does. Larue dives from the plane either first or last. Neither Weiss nor Zacny dives from the plane last. Pei dives from the plane at some time after either Ohba or Larue but not both.", "question": "If Zacny dives from the plane immediately after Weiss, then which one of the following must be false?", "options": [ "A) Larue dives from the plane first.", "B) Trevino dives from the plane third.", "C) Zacny dives from the plane third.", "D) Pei dives from the plane fourth.", "E) Zacny dives from the plane fourth." ], "answer": "D" }, { "id": "ar_lsat_201106_2-G_2_10", "context": "Exactly six members of a skydiving team—Larue, Ohba, Pei, Trevino, Weiss, and Zacny—each dive exactly once, one at a time, from a plane, consistent with the following conditions: Trevino dives from the plane at some time before Weiss does. Larue dives from the plane either first or last. Neither Weiss nor Zacny dives from the plane last. Pei dives from the plane at some time after either Ohba or Larue but not both.", "question": "If Trevino dives from the plane immediately after Larue, then each of the following could be true EXCEPT:", "options": [ "A) Ohba dives from the plane third.", "B) Weiss dives from the plane third.", "C) Zacny dives from the plane third.", "D) Pei dives from the plane fourth.", "E) Weiss dives from the plane fourth." ], "answer": "A" }, { "id": "ar_lsat_201106_2-G_3_11", "context": "A company's six vehicles—a hatchback, a limousine, a pickup, a roadster, a sedan, and a van—are serviced during a certain week—Monday through Saturday—one vehicle per day. The following conditions must apply: At least one of the vehicles is serviced later in the week than the hatchback. The roadster is serviced later in the week than the van and earlier in the week than the hatchback. Either the pickup and the van are serviced on consecutive days, or the pickup and the sedan are serviced on consecutive days, but not both. The sedan is serviced earlier in the week than the pickup or earlier in the week than the limousine, but not both.", "question": "Which one of the following could be the order in which the vehicles are serviced, from Monday through Saturday?", "options": [ "A) the hatchback, the pickup, the sedan, the limousine, the van, the roadster", "B) the pickup, the sedan, the van, the roadster, the hatchback, the limousine", "C) the pickup, the van, the sedan, the roadster, the limousine, the hatchback", "D) the van, the roadster, the pickup, the hatchback, the sedan, the limousine", "E) the van, the sedan, the pickup, the roadster, the hatchback, the limousine" ], "answer": "B" }, { "id": "ar_lsat_201106_2-G_3_12", "context": "A company's six vehicles—a hatchback, a limousine, a pickup, a roadster, a sedan, and a van—are serviced during a certain week—Monday through Saturday—one vehicle per day. The following conditions must apply: At least one of the vehicles is serviced later in the week than the hatchback. The roadster is serviced later in the week than the van and earlier in the week than the hatchback. Either the pickup and the van are serviced on consecutive days, or the pickup and the sedan are serviced on consecutive days, but not both. The sedan is serviced earlier in the week than the pickup or earlier in the week than the limousine, but not both.", "question": "Which one of the following CANNOT be the vehicle serviced on Thursday?", "options": [ "A) the hatchback", "B) the limousine", "C) the pickup", "D) the sedan", "E) the van" ], "answer": "E" }, { "id": "ar_lsat_201106_2-G_3_13", "context": "A company's six vehicles—a hatchback, a limousine, a pickup, a roadster, a sedan, and a van—are serviced during a certain week—Monday through Saturday—one vehicle per day. The following conditions must apply: At least one of the vehicles is serviced later in the week than the hatchback. The roadster is serviced later in the week than the van and earlier in the week than the hatchback. Either the pickup and the van are serviced on consecutive days, or the pickup and the sedan are serviced on consecutive days, but not both. The sedan is serviced earlier in the week than the pickup or earlier in the week than the limousine, but not both.", "question": "If neither the pickup nor the limousine is serviced on Monday, then which one of the following must be true?", "options": [ "A) The hatchback and the limousine are serviced on consecutive days.", "B) The hatchback and the sedan are serviced on consecutive days.", "C) The van is serviced on Monday.", "D) The limousine is serviced on Saturday.", "E) The pickup is serviced on Saturday." ], "answer": "C" }, { "id": "ar_lsat_201106_2-G_3_14", "context": "A company's six vehicles—a hatchback, a limousine, a pickup, a roadster, a sedan, and a van—are serviced during a certain week—Monday through Saturday—one vehicle per day. The following conditions must apply: At least one of the vehicles is serviced later in the week than the hatchback. The roadster is serviced later in the week than the van and earlier in the week than the hatchback. Either the pickup and the van are serviced on consecutive days, or the pickup and the sedan are serviced on consecutive days, but not both. The sedan is serviced earlier in the week than the pickup or earlier in the week than the limousine, but not both.", "question": "If the limousine is not serviced on Saturday, then each of the following could be true EXCEPT:", "options": [ "A) The limousine is serviced on Monday.", "B) The roadster is serviced on Tuesday.", "C) The hatchback is serviced on Wednesday.", "D) The roadster is serviced on Wednesday.", "E) The sedan is serviced on Wednesday." ], "answer": "E" }, { "id": "ar_lsat_201106_2-G_3_15", "context": "A company's six vehicles—a hatchback, a limousine, a pickup, a roadster, a sedan, and a van—are serviced during a certain week—Monday through Saturday—one vehicle per day. The following conditions must apply: At least one of the vehicles is serviced later in the week than the hatchback. The roadster is serviced later in the week than the van and earlier in the week than the hatchback. Either the pickup and the van are serviced on consecutive days, or the pickup and the sedan are serviced on consecutive days, but not both. The sedan is serviced earlier in the week than the pickup or earlier in the week than the limousine, but not both.", "question": "If the sedan is serviced earlier in the week than the pickup, then which one of the following could be true?", "options": [ "A) The limousine is serviced on Wednesday.", "B) The sedan is serviced on Wednesday.", "C) The van is serviced on Wednesday.", "D) The hatchback is serviced on Friday.", "E) The limousine is serviced on Saturday." ], "answer": "A" }, { "id": "ar_lsat_201106_2-G_3_16", "context": "A company's six vehicles—a hatchback, a limousine, a pickup, a roadster, a sedan, and a van—are serviced during a certain week—Monday through Saturday—one vehicle per day. The following conditions must apply: At least one of the vehicles is serviced later in the week than the hatchback. The roadster is serviced later in the week than the van and earlier in the week than the hatchback. Either the pickup and the van are serviced on consecutive days, or the pickup and the sedan are serviced on consecutive days, but not both. The sedan is serviced earlier in the week than the pickup or earlier in the week than the limousine, but not both.", "question": "If the limousine is serviced on Saturday, then which one of the following must be true?", "options": [ "A) The pickup is serviced earlier in the week than the roadster.", "B) The pickup is serviced earlier in the week than the sedan.", "C) The sedan is serviced earlier in the week than the roadster.", "D) The hatchback and the limousine are serviced on consecutive days.", "E) The roadster and the hatchback are serviced on consecutive days." ], "answer": "B" }, { "id": "ar_lsat_201106_2-G_3_17", "context": "A company's six vehicles—a hatchback, a limousine, a pickup, a roadster, a sedan, and a van—are serviced during a certain week—Monday through Saturday—one vehicle per day. The following conditions must apply: At least one of the vehicles is serviced later in the week than the hatchback. The roadster is serviced later in the week than the van and earlier in the week than the hatchback. Either the pickup and the van are serviced on consecutive days, or the pickup and the sedan are serviced on consecutive days, but not both. The sedan is serviced earlier in the week than the pickup or earlier in the week than the limousine, but not both.", "question": "Which one of the following could be the list of the vehicles serviced on Tuesday, Wednesday, and Friday, listed in that order?", "options": [ "A) the pickup, the hatchback, the limousine", "B) the pickup, the roadster, the hatchback", "C) the sedan, the limousine, the hatchback", "D) the van, the limousine, the hatchback", "E) the van, the roadster, the limousine" ], "answer": "B" }, { "id": "ar_lsat_201106_2-G_4_18", "context": "A street entertainer has six boxes stacked one on top of the other and numbered consecutively 1 through 6, from the lowest box up to the highest. Each box contains a single ball, and each ball is one of three colors—green, red, or white. Onlookers are to guess the color of each ball in each box, given that the following conditions hold: There are more red balls than white balls. There is a box containing a green ball that is lower in the stack than any box that contains a red ball. There is a white ball in a box that is immediately below a box that contains a green ball.", "question": "If there are exactly two white balls, then which one of the following boxes could contain a green ball?", "options": [ "A) box 1", "B) box 3", "C) box 4", "D) box 5", "E) box 6" ], "answer": "B" }, { "id": "ar_lsat_201106_2-G_4_19", "context": "A street entertainer has six boxes stacked one on top of the other and numbered consecutively 1 through 6, from the lowest box up to the highest. Each box contains a single ball, and each ball is one of three colors—green, red, or white. Onlookers are to guess the color of each ball in each box, given that the following conditions hold: There are more red balls than white balls. There is a box containing a green ball that is lower in the stack than any box that contains a red ball. There is a white ball in a box that is immediately below a box that contains a green ball.", "question": "If there are green balls in boxes 5 and 6, then which one of the following could be true?", "options": [ "A) There are red balls in boxes 1 and 4.", "B) There are red balls in boxes 2 and 4.", "C) There is a white ball in box 1.", "D) There is a white ball in box 2.", "E) There is a white ball in box 3." ], "answer": "C" }, { "id": "ar_lsat_201106_2-G_4_20", "context": "A street entertainer has six boxes stacked one on top of the other and numbered consecutively 1 through 6, from the lowest box up to the highest. Each box contains a single ball, and each ball is one of three colors—green, red, or white. Onlookers are to guess the color of each ball in each box, given that the following conditions hold: There are more red balls than white balls. There is a box containing a green ball that is lower in the stack than any box that contains a red ball. There is a white ball in a box that is immediately below a box that contains a green ball.", "question": "The ball in which one of the following boxes must be the same color as at least one of the other balls?", "options": [ "A) box 2", "B) box 3", "C) box 4", "D) box 5", "E) box 6" ], "answer": "E" }, { "id": "ar_lsat_201106_2-G_4_21", "context": "A street entertainer has six boxes stacked one on top of the other and numbered consecutively 1 through 6, from the lowest box up to the highest. Each box contains a single ball, and each ball is one of three colors—green, red, or white. Onlookers are to guess the color of each ball in each box, given that the following conditions hold: There are more red balls than white balls. There is a box containing a green ball that is lower in the stack than any box that contains a red ball. There is a white ball in a box that is immediately below a box that contains a green ball.", "question": "Which one of the following must be true?", "options": [ "A) There is a green ball in a box that is lower than box 4.", "B) There is a green ball in a box that is higher than box 4.", "C) There is a red ball in a box that is lower than box 4.", "D) There is a red ball in a box that is higher than box 4.", "E) There is a white ball in a box that is lower than box 4." ], "answer": "A" }, { "id": "ar_lsat_201106_2-G_4_22", "context": "A street entertainer has six boxes stacked one on top of the other and numbered consecutively 1 through 6, from the lowest box up to the highest. Each box contains a single ball, and each ball is one of three colors—green, red, or white. Onlookers are to guess the color of each ball in each box, given that the following conditions hold: There are more red balls than white balls. There is a box containing a green ball that is lower in the stack than any box that contains a red ball. There is a white ball in a box that is immediately below a box that contains a green ball.", "question": "If there are red balls in boxes 2 and 3, then which one of the following could be true?", "options": [ "A) There is a red ball in box 1.", "B) There is a white ball in box 1.", "C) There is a green ball in box 4.", "D) There is a red ball in box 5.", "E) There is a white ball in box 6." ], "answer": "C" }, { "id": "ar_lsat_201106_2-G_4_23", "context": "A street entertainer has six boxes stacked one on top of the other and numbered consecutively 1 through 6, from the lowest box up to the highest. Each box contains a single ball, and each ball is one of three colors—green, red, or white. Onlookers are to guess the color of each ball in each box, given that the following conditions hold: There are more red balls than white balls. There is a box containing a green ball that is lower in the stack than any box that contains a red ball. There is a white ball in a box that is immediately below a box that contains a green ball.", "question": "If boxes 2, 3, and 4 all contain balls that are the same color as each other, then which one of the following must be true?", "options": [ "A) Exactly two of the boxes contain a green ball.", "B) Exactly three of the boxes contain a green ball.", "C) Exactly three of the boxes contain a red ball.", "D) Exactly one of the boxes contains a white ball.", "E) Exactly two of the boxes contain a white ball." ], "answer": "D" }, { "id": "ar_lsat_201112_2-G_1_1", "context": "A professor must determine the order in which five of her students—Fernando, Ginny, Hakim, Juanita, and Kevin—will perform in an upcoming piano recital. Each student performs one piece, and no two performances overlap. The following constraints apply: Ginny must perform earlier than Fernando. Kevin must perform earlier than Hakim and Juanita. Hakim must perform either immediately before or immediately after Fernando.", "question": "Which one of the following could be the order, from first to last, in which the students perform?", "options": [ "A) Ginny, Fernando, Hakim, Kevin, Juanita", "B) Ginny, Juanita, Kevin, Hakim, Fernando", "C) Ginny, Kevin, Hakim, Juanita, Fernando", "D) Kevin, Ginny, Juanita, Fernando, Hakim", "E) Kevin, Juanita, Fernando, Hakim, Ginny" ], "answer": "D" }, { "id": "ar_lsat_201112_2-G_1_2", "context": "A professor must determine the order in which five of her students—Fernando, Ginny, Hakim, Juanita, and Kevin—will perform in an upcoming piano recital. Each student performs one piece, and no two performances overlap. The following constraints apply: Ginny must perform earlier than Fernando. Kevin must perform earlier than Hakim and Juanita. Hakim must perform either immediately before or immediately after Fernando.", "question": "If Juanita performs earlier than Ginny, then which one of the following could be true?", "options": [ "A) Fernando performs fourth.", "B) Ginny performs second.", "C) Hakim performs third.", "D) Juanita performs third.", "E) Kevin performs second." ], "answer": "A" }, { "id": "ar_lsat_201112_2-G_1_3", "context": "A professor must determine the order in which five of her students—Fernando, Ginny, Hakim, Juanita, and Kevin—will perform in an upcoming piano recital. Each student performs one piece, and no two performances overlap. The following constraints apply: Ginny must perform earlier than Fernando. Kevin must perform earlier than Hakim and Juanita. Hakim must perform either immediately before or immediately after Fernando.", "question": "Which one of the following CANNOT be true?", "options": [ "A) Fernando performs immediately before Juanita.", "B) Ginny performs immediately before Hakim.", "C) Hakim performs immediately before Ginny.", "D) Juanita performs immediately before Ginny.", "E) Kevin performs immediately before Hakim." ], "answer": "C" }, { "id": "ar_lsat_201112_2-G_1_4", "context": "A professor must determine the order in which five of her students—Fernando, Ginny, Hakim, Juanita, and Kevin—will perform in an upcoming piano recital. Each student performs one piece, and no two performances overlap. The following constraints apply: Ginny must perform earlier than Fernando. Kevin must perform earlier than Hakim and Juanita. Hakim must perform either immediately before or immediately after Fernando.", "question": "The order in which the students perform is fully determined if which one of the following is true?", "options": [ "A) Fernando performs immediately before Hakim.", "B) Ginny performs immediately before Fernando.", "C) Hakim performs immediately before Juanita.", "D) Juanita performs immediately before Hakim.", "E) Kevin performs immediately before Fernando." ], "answer": "E" }, { "id": "ar_lsat_201112_2-G_1_5", "context": "A professor must determine the order in which five of her students—Fernando, Ginny, Hakim, Juanita, and Kevin—will perform in an upcoming piano recital. Each student performs one piece, and no two performances overlap. The following constraints apply: Ginny must perform earlier than Fernando. Kevin must perform earlier than Hakim and Juanita. Hakim must perform either immediately before or immediately after Fernando.", "question": "How many of the students are there any one of whom could perform fourth?", "options": [ "A) one", "B) two", "C) three", "D) four", "E) five" ], "answer": "B" }, { "id": "ar_lsat_201112_2-G_2_6", "context": "As part of an open house at a crafts studio, three teachers—Jiang, Kudrow, and Lanning—will give six consecutive presentations on six different subjects. Jiang will present on needlework and origami; Kudrow on pottery, stenciling, and textile making; and Lanning on woodworking. The order of their presentations will meet the following conditions: Kudrow cannot give two presentations in a row. The presentation on stenciling must be given earlier than the one on origami. The presentation on textile making must be given earlier than the one on woodworking.", "question": "Which one of the following could be the order of the presentations, from first to sixth?", "options": [ "A) stenciling, origami, needlework, textile making, pottery, woodworking", "B) stenciling, origami, pottery, woodworking, needlework, textile making", "C) stenciling, origami, textile making, woodworking, needlework, pottery", "D) textile making, origami, stenciling, woodworking, needlework, pottery", "E) textile making, stenciling, woodworking, needlework, pottery, origami" ], "answer": "C" }, { "id": "ar_lsat_201112_2-G_2_7", "context": "As part of an open house at a crafts studio, three teachers—Jiang, Kudrow, and Lanning—will give six consecutive presentations on six different subjects. Jiang will present on needlework and origami; Kudrow on pottery, stenciling, and textile making; and Lanning on woodworking. The order of their presentations will meet the following conditions: Kudrow cannot give two presentations in a row. The presentation on stenciling must be given earlier than the one on origami. The presentation on textile making must be given earlier than the one on woodworking.", "question": "If textile making is presented fifth, which one of the following could be true?", "options": [ "A) Needlework is presented sixth.", "B) Pottery is presented fourth.", "C) Stenciling is presented second.", "D) Stenciling is presented third.", "E) Woodworking is presented second." ], "answer": "D" }, { "id": "ar_lsat_201112_2-G_2_8", "context": "As part of an open house at a crafts studio, three teachers—Jiang, Kudrow, and Lanning—will give six consecutive presentations on six different subjects. Jiang will present on needlework and origami; Kudrow on pottery, stenciling, and textile making; and Lanning on woodworking. The order of their presentations will meet the following conditions: Kudrow cannot give two presentations in a row. The presentation on stenciling must be given earlier than the one on origami. The presentation on textile making must be given earlier than the one on woodworking.", "question": "If needlework is presented first, which one of the following could be true?", "options": [ "A) Origami is presented sixth.", "B) Pottery is presented second.", "C) Stenciling is presented third.", "D) Textile making is presented fifth.", "E) Woodworking is presented third." ], "answer": "E" }, { "id": "ar_lsat_201112_2-G_2_9", "context": "As part of an open house at a crafts studio, three teachers—Jiang, Kudrow, and Lanning—will give six consecutive presentations on six different subjects. Jiang will present on needlework and origami; Kudrow on pottery, stenciling, and textile making; and Lanning on woodworking. The order of their presentations will meet the following conditions: Kudrow cannot give two presentations in a row. The presentation on stenciling must be given earlier than the one on origami. The presentation on textile making must be given earlier than the one on woodworking.", "question": "Jiang CANNOT give both", "options": [ "A) the first and third presentations", "B) the first and fourth presentations", "C) the first and fifth presentations", "D) the second and third presentations", "E) the second and fourth presentations" ], "answer": "B" }, { "id": "ar_lsat_201112_2-G_2_10", "context": "As part of an open house at a crafts studio, three teachers—Jiang, Kudrow, and Lanning—will give six consecutive presentations on six different subjects. Jiang will present on needlework and origami; Kudrow on pottery, stenciling, and textile making; and Lanning on woodworking. The order of their presentations will meet the following conditions: Kudrow cannot give two presentations in a row. The presentation on stenciling must be given earlier than the one on origami. The presentation on textile making must be given earlier than the one on woodworking.", "question": "If needlework is presented sixth, which one of the following must be true?", "options": [ "A) Origami is presented fourth.", "B) Pottery is presented fifth.", "C) Stenciling is presented third.", "D) Textile making is presented first.", "E) Woodworking is presented fourth." ], "answer": "B" }, { "id": "ar_lsat_201112_2-G_2_11", "context": "As part of an open house at a crafts studio, three teachers—Jiang, Kudrow, and Lanning—will give six consecutive presentations on six different subjects. Jiang will present on needlework and origami; Kudrow on pottery, stenciling, and textile making; and Lanning on woodworking. The order of their presentations will meet the following conditions: Kudrow cannot give two presentations in a row. The presentation on stenciling must be given earlier than the one on origami. The presentation on textile making must be given earlier than the one on woodworking.", "question": "Which one of the following CANNOT be the subject of the second presentation?", "options": [ "A) needlework", "B) origami", "C) pottery", "D) textile making", "E) woodworking" ], "answer": "C" }, { "id": "ar_lsat_201112_2-G_3_12", "context": "The organizer of a luncheon will select exactly five foods to be served from among exactly eight foods: two desserts—F and G; three main courses—N, O, and P; three side dishes—T, V, and W. Only F, N, and T are hot foods. The following requirements will be satisfied: At least one dessert, at least one main course, and at least one side dish must be selected. At least one hot food must be selected. If either P or W is selected, both must be selected. If G is selected, O must be selected. If N is selected, V cannot be selected.", "question": "Which one of the following is a list of foods that could be the foods selected?", "options": [ "A) F, N, O, T, V", "B) F, O, P, T, W", "C) G, N, P, T, W", "D) G, O, P, T, V", "E) G, O, P, V, W" ], "answer": "B" }, { "id": "ar_lsat_201112_2-G_3_13", "context": "The organizer of a luncheon will select exactly five foods to be served from among exactly eight foods: two desserts—F and G; three main courses—N, O, and P; three side dishes—T, V, and W. Only F, N, and T are hot foods. The following requirements will be satisfied: At least one dessert, at least one main course, and at least one side dish must be selected. At least one hot food must be selected. If either P or W is selected, both must be selected. If G is selected, O must be selected. If N is selected, V cannot be selected.", "question": "Which one of the following is a pair of foods of which the organizer of the luncheon must select at least one?", "options": [ "A) F, T", "B) G, O", "C) N, T", "D) O, P", "E) V, W" ], "answer": "D" }, { "id": "ar_lsat_201112_2-G_3_14", "context": "The organizer of a luncheon will select exactly five foods to be served from among exactly eight foods: two desserts—F and G; three main courses—N, O, and P; three side dishes—T, V, and W. Only F, N, and T are hot foods. The following requirements will be satisfied: At least one dessert, at least one main course, and at least one side dish must be selected. At least one hot food must be selected. If either P or W is selected, both must be selected. If G is selected, O must be selected. If N is selected, V cannot be selected.", "question": "If O is the only main course selected, then which one of the following CANNOT be selected?", "options": [ "A) F", "B) G", "C) T", "D) V", "E) W" ], "answer": "E" }, { "id": "ar_lsat_201112_2-G_3_15", "context": "The organizer of a luncheon will select exactly five foods to be served from among exactly eight foods: two desserts—F and G; three main courses—N, O, and P; three side dishes—T, V, and W. Only F, N, and T are hot foods. The following requirements will be satisfied: At least one dessert, at least one main course, and at least one side dish must be selected. At least one hot food must be selected. If either P or W is selected, both must be selected. If G is selected, O must be selected. If N is selected, V cannot be selected.", "question": "If F is not selected, which one of the following could be true?", "options": [ "A) P is the only main course selected.", "B) T is the only side dish selected.", "C) Exactly two hot foods are selected.", "D) Exactly three main courses are selected.", "E) Exactly three side dishes are selected." ], "answer": "D" }, { "id": "ar_lsat_201112_2-G_3_16", "context": "The organizer of a luncheon will select exactly five foods to be served from among exactly eight foods: two desserts—F and G; three main courses—N, O, and P; three side dishes—T, V, and W. Only F, N, and T are hot foods. The following requirements will be satisfied: At least one dessert, at least one main course, and at least one side dish must be selected. At least one hot food must be selected. If either P or W is selected, both must be selected. If G is selected, O must be selected. If N is selected, V cannot be selected.", "question": "If T and V are the only side dishes selected, then which one of the following is a pair of foods each of which must be selected?", "options": [ "A) F and G", "B) F and N", "C) F and P", "D) N and O", "E) O and P" ], "answer": "A" }, { "id": "ar_lsat_201112_2-G_4_17", "context": "A television programming director is scheduling a three-hour block of programs beginning at 1 P.M. The programs that are to fill this time block include an hour-long program called Generations and four half-hour programs: Roamin', Sundown, Terry, and Waterloo. The programs will be shown one after the other, each program shown exactly once. The schedule must meet the following constraints: Generations starts on the hour rather than the half hour. Terry starts on the half hour rather than the hour. Roamin' is shown earlier than Sundown. If Waterloo is shown earlier than Terry, it is shown immediately before Terry.", "question": "Which one of the following could be the order in which the programs are shown, from earliest to latest?", "options": [ "A) Generations, Roamin', Waterloo, Terry, Sundown", "B) Roamin', Sundown, Waterloo, Terry, Generations", "C) Roamin', Terry, Waterloo, Generations, Sundown", "D) Waterloo, Roamin', Sundown, Terry, Generations", "E) Waterloo, Terry, Sundown, Roamin', Generations" ], "answer": "B" }, { "id": "ar_lsat_201112_2-G_4_18", "context": "A television programming director is scheduling a three-hour block of programs beginning at 1 P.M. The programs that are to fill this time block include an hour-long program called Generations and four half-hour programs: Roamin', Sundown, Terry, and Waterloo. The programs will be shown one after the other, each program shown exactly once. The schedule must meet the following constraints: Generations starts on the hour rather than the half hour. Terry starts on the half hour rather than the hour. Roamin' is shown earlier than Sundown. If Waterloo is shown earlier than Terry, it is shown immediately before Terry.", "question": "If Waterloo is the first program, then how many orders are there in which the remaining programs could be shown?", "options": [ "A) one", "B) two", "C) three", "D) four", "E) five" ], "answer": "B" }, { "id": "ar_lsat_201112_2-G_4_19", "context": "A television programming director is scheduling a three-hour block of programs beginning at 1 P.M. The programs that are to fill this time block include an hour-long program called Generations and four half-hour programs: Roamin', Sundown, Terry, and Waterloo. The programs will be shown one after the other, each program shown exactly once. The schedule must meet the following constraints: Generations starts on the hour rather than the half hour. Terry starts on the half hour rather than the hour. Roamin' is shown earlier than Sundown. If Waterloo is shown earlier than Terry, it is shown immediately before Terry.", "question": "If Roamin' is the second program, then each of the following could be true EXCEPT:", "options": [ "A) Sundown is the third program.", "B) Sundown is the fourth program.", "C) Terry is the fifth program.", "D) Waterloo is the third program.", "E) Waterloo is the fifth program." ], "answer": "D" }, { "id": "ar_lsat_201112_2-G_4_20", "context": "A television programming director is scheduling a three-hour block of programs beginning at 1 P.M. The programs that are to fill this time block include an hour-long program called Generations and four half-hour programs: Roamin', Sundown, Terry, and Waterloo. The programs will be shown one after the other, each program shown exactly once. The schedule must meet the following constraints: Generations starts on the hour rather than the half hour. Terry starts on the half hour rather than the hour. Roamin' is shown earlier than Sundown. If Waterloo is shown earlier than Terry, it is shown immediately before Terry.", "question": "If Sundown is the third program, then which one of the following must be true?", "options": [ "A) Generations is the first program.", "B) Roamin' is the first program.", "C) Roamin' is the second program.", "D) Terry is the fifth program.", "E) Waterloo is the fourth program." ], "answer": "E" }, { "id": "ar_lsat_201112_2-G_4_21", "context": "A television programming director is scheduling a three-hour block of programs beginning at 1 P.M. The programs that are to fill this time block include an hour-long program called Generations and four half-hour programs: Roamin', Sundown, Terry, and Waterloo. The programs will be shown one after the other, each program shown exactly once. The schedule must meet the following constraints: Generations starts on the hour rather than the half hour. Terry starts on the half hour rather than the hour. Roamin' is shown earlier than Sundown. If Waterloo is shown earlier than Terry, it is shown immediately before Terry.", "question": "If Generations is the third program, then which one of the following could be true?", "options": [ "A) Roamin' is the second program.", "B) Roamin' is the fifth program.", "C) Sundown is the fourth program.", "D) Terry is the fourth program.", "E) Waterloo is the second program." ], "answer": "C" }, { "id": "ar_lsat_201112_2-G_4_22", "context": "A television programming director is scheduling a three-hour block of programs beginning at 1 P.M. The programs that are to fill this time block include an hour-long program called Generations and four half-hour programs: Roamin', Sundown, Terry, and Waterloo. The programs will be shown one after the other, each program shown exactly once. The schedule must meet the following constraints: Generations starts on the hour rather than the half hour. Terry starts on the half hour rather than the hour. Roamin' is shown earlier than Sundown. If Waterloo is shown earlier than Terry, it is shown immediately before Terry.", "question": "Which one of the following CANNOT be true?", "options": [ "A) Sundown is shown immediately before Generations.", "B) Waterloo is shown immediately before Roamin'.", "C) Generations is shown immediately before Sundown.", "D) Roamin' is shown immediately before Terry.", "E) Terry is shown immediately before Waterloo." ], "answer": "B" }, { "id": "ar_lsat_201112_2-G_4_23", "context": "A television programming director is scheduling a three-hour block of programs beginning at 1 P.M. The programs that are to fill this time block include an hour-long program called Generations and four half-hour programs: Roamin', Sundown, Terry, and Waterloo. The programs will be shown one after the other, each program shown exactly once. The schedule must meet the following constraints: Generations starts on the hour rather than the half hour. Terry starts on the half hour rather than the hour. Roamin' is shown earlier than Sundown. If Waterloo is shown earlier than Terry, it is shown immediately before Terry.", "question": "Which one of the following, if substituted for the constraint that Generations starts on the hour rather than the half hour, would have the same effect in determining the order in which the programs are shown?", "options": [ "A) Generations is not shown immediately before Terry.", "B) Generations is either the first program or the fifth.", "C) Generations is neither the second program nor the fourth.", "D) If Generations is shown third, then Roamin' is shown first.", "E) If Generations is not shown first, then it is shown later than Terry." ], "answer": "C" }, { "id": "ar_lsat_201210_3-G_1_1", "context": "Five students—Manolo, Nadia, Owen, Peng, and Rana—are each to deliver exactly one speech. Speeches are on exactly one of two topics—friendship and liberty. Each student has only one major: two major in geology, two in history, and one in journalism. The following conditions must apply: Exactly two of the students speak on friendship. A geology major and a history major speak on friendship. Manolo speaks on friendship. Rana speaks on liberty. Neither Peng nor Rana is a geology major. Nadia is a geology major.", "question": "Which one of the following could be a list of the majors of Manolo, Nadia, Owen, Peng, and Rana, respectively?", "options": [ "A) geology, geology, journalism, journalism, history", "B) geology, geology, history, history, history", "C) history, geology, geology, journalism, history", "D) history, geology, journalism, geology, history", "E) history, history, geology, journalism, history" ], "answer": "C" }, { "id": "ar_lsat_201210_3-G_1_2", "context": "Five students—Manolo, Nadia, Owen, Peng, and Rana—are each to deliver exactly one speech. Speeches are on exactly one of two topics—friendship and liberty. Each student has only one major: two major in geology, two in history, and one in journalism. The following conditions must apply: Exactly two of the students speak on friendship. A geology major and a history major speak on friendship. Manolo speaks on friendship. Rana speaks on liberty. Neither Peng nor Rana is a geology major. Nadia is a geology major.", "question": "If Peng speaks on friendship, then which one of the following could be true?", "options": [ "A) Manolo is a history major.", "B) Nadia speaks on friendship.", "C) Owen speaks on friendship.", "D) Owen is a journalism major.", "E) Peng is a journalism major." ], "answer": "D" }, { "id": "ar_lsat_201210_3-G_1_3", "context": "Five students—Manolo, Nadia, Owen, Peng, and Rana—are each to deliver exactly one speech. Speeches are on exactly one of two topics—friendship and liberty. Each student has only one major: two major in geology, two in history, and one in journalism. The following conditions must apply: Exactly two of the students speak on friendship. A geology major and a history major speak on friendship. Manolo speaks on friendship. Rana speaks on liberty. Neither Peng nor Rana is a geology major. Nadia is a geology major.", "question": "If Owen is a geology major who speaks on friendship, then which one of the following must be true?", "options": [ "A) Manolo is a history major.", "B) Nadia speaks on friendship.", "C) Peng speaks on friendship.", "D) Peng is a history major.", "E) Rana is a journalism major." ], "answer": "A" }, { "id": "ar_lsat_201210_3-G_1_4", "context": "Five students—Manolo, Nadia, Owen, Peng, and Rana—are each to deliver exactly one speech. Speeches are on exactly one of two topics—friendship and liberty. Each student has only one major: two major in geology, two in history, and one in journalism. The following conditions must apply: Exactly two of the students speak on friendship. A geology major and a history major speak on friendship. Manolo speaks on friendship. Rana speaks on liberty. Neither Peng nor Rana is a geology major. Nadia is a geology major.", "question": "If Nadia speaks on friendship, then which one of the following must be false?", "options": [ "A) Manolo is a geology major.", "B) Manolo is a history major.", "C) Owen is a geology major.", "D) Peng is a history major.", "E) Rana is a history major." ], "answer": "A" }, { "id": "ar_lsat_201210_3-G_1_5", "context": "Five students—Manolo, Nadia, Owen, Peng, and Rana—are each to deliver exactly one speech. Speeches are on exactly one of two topics—friendship and liberty. Each student has only one major: two major in geology, two in history, and one in journalism. The following conditions must apply: Exactly two of the students speak on friendship. A geology major and a history major speak on friendship. Manolo speaks on friendship. Rana speaks on liberty. Neither Peng nor Rana is a geology major. Nadia is a geology major.", "question": "Rana must be a journalism major if which one of the following is true?", "options": [ "A) Manolo is a geology major and Peng is a history major.", "B) Owen is a geology major and Manolo is a history major.", "C) Owen is a geology major and Peng is a history major.", "D) Both Manolo and Nadia speak on friendship.", "E) Both Manolo and Peng speak on friendship." ], "answer": "C" }, { "id": "ar_lsat_201210_3-G_2_6", "context": "Each of exactly seven professors—Powell, Shihab, Taylor, Vaughan, Wood, Young, and Zabel—gives exactly one guest lecture in the literary theory course. The lectures are ordered from first through seventh, and their order must conform to the following: Powell lectures before Wood. Taylor lectures before Shihab. Vaughan lectures before Zabel. Shihab is no later than third. Young is not seventh. Powell lectures first if, but only if, Young lectures before Vaughan.", "question": "Which one of the following could be the order in which the professors lecture, from first to last?", "options": [ "A) Powell, Young, Taylor, Shihab, Vaughan, Zabel, Wood", "B) Taylor, Powell, Shihab, Wood, Vaughan, Young, Zabel", "C) Taylor, Vaughan, Shihab, Wood, Powell, Young, Zabel", "D) Vaughan, Taylor, Shihab, Powell, Wood, Zabel, Young", "E) Young, Taylor, Shihab, Powell, Vaughan, Zabel, Wood" ], "answer": "B" }, { "id": "ar_lsat_201210_3-G_2_7", "context": "Each of exactly seven professors—Powell, Shihab, Taylor, Vaughan, Wood, Young, and Zabel—gives exactly one guest lecture in the literary theory course. The lectures are ordered from first through seventh, and their order must conform to the following: Powell lectures before Wood. Taylor lectures before Shihab. Vaughan lectures before Zabel. Shihab is no later than third. Young is not seventh. Powell lectures first if, but only if, Young lectures before Vaughan.", "question": "Which one of the following could lecture first?", "options": [ "A) Shihab", "B) Vaughan", "C) Wood", "D) Young", "E) Zabel" ], "answer": "B" }, { "id": "ar_lsat_201210_3-G_2_8", "context": "Each of exactly seven professors—Powell, Shihab, Taylor, Vaughan, Wood, Young, and Zabel—gives exactly one guest lecture in the literary theory course. The lectures are ordered from first through seventh, and their order must conform to the following: Powell lectures before Wood. Taylor lectures before Shihab. Vaughan lectures before Zabel. Shihab is no later than third. Young is not seventh. Powell lectures first if, but only if, Young lectures before Vaughan.", "question": "Which one of the following CANNOT given the second guest lecture?", "options": [ "A) Powell", "B) Shihab", "C) Taylor", "D) Vaughan", "E) Wood" ], "answer": "E" }, { "id": "ar_lsat_201210_3-G_2_9", "context": "Each of exactly seven professors—Powell, Shihab, Taylor, Vaughan, Wood, Young, and Zabel—gives exactly one guest lecture in the literary theory course. The lectures are ordered from first through seventh, and their order must conform to the following: Powell lectures before Wood. Taylor lectures before Shihab. Vaughan lectures before Zabel. Shihab is no later than third. Young is not seventh. Powell lectures first if, but only if, Young lectures before Vaughan.", "question": "If Shihab lectures second and Zabel lectures fourth, then which one of the following could be true?", "options": [ "A) Powell lectures sixth", "B) Taylor lectures third", "C) Vaughan lectures fifth", "D) Wood lectures fifth", "E) Young lectures third" ], "answer": "A" }, { "id": "ar_lsat_201210_3-G_2_10", "context": "Each of exactly seven professors—Powell, Shihab, Taylor, Vaughan, Wood, Young, and Zabel—gives exactly one guest lecture in the literary theory course. The lectures are ordered from first through seventh, and their order must conform to the following: Powell lectures before Wood. Taylor lectures before Shihab. Vaughan lectures before Zabel. Shihab is no later than third. Young is not seventh. Powell lectures first if, but only if, Young lectures before Vaughan.", "question": "Which one of the following CANNOT be the guest lecture that Vaughan gives?", "options": [ "A) second", "B) third", "C) fourth", "D) sixth", "E) seventh" ], "answer": "E" }, { "id": "ar_lsat_201210_3-G_2_11", "context": "Each of exactly seven professors—Powell, Shihab, Taylor, Vaughan, Wood, Young, and Zabel—gives exactly one guest lecture in the literary theory course. The lectures are ordered from first through seventh, and their order must conform to the following: Powell lectures before Wood. Taylor lectures before Shihab. Vaughan lectures before Zabel. Shihab is no later than third. Young is not seventh. Powell lectures first if, but only if, Young lectures before Vaughan.", "question": "If Young lectures fourth and Taylor lectures first, then which one of the following must be true?", "options": [ "A) Powell lectures no earlier than sixth", "B) Shihab lectures second.", "C) Vaughan lectures no later than third.", "D) Wood lectures seventh.", "E) Zabel lectures no earlier than sixth." ], "answer": "E" }, { "id": "ar_lsat_201210_3-G_2_12", "context": "Each of exactly seven professors—Powell, Shihab, Taylor, Vaughan, Wood, Young, and Zabel—gives exactly one guest lecture in the literary theory course. The lectures are ordered from first through seventh, and their order must conform to the following: Powell lectures before Wood. Taylor lectures before Shihab. Vaughan lectures before Zabel. Shihab is no later than third. Young is not seventh. Powell lectures first if, but only if, Young lectures before Vaughan.", "question": "If Zabel lectures fourth, then which one of the following could be true?", "options": [ "A) Powell lectures second.", "B) Powell lectures seventh.", "C) Wood lectures third.", "D) Young lectures second.", "E) Young lectures sixth." ], "answer": "E" }, { "id": "ar_lsat_201210_3-G_3_13", "context": "A toy retailer is opening a small satellite store with exactly three aisles, numbered from 1 (lowest) to 3 (highest). Six sections—Fantasy, Hobbies, Music, Puzzles, Reading, and Science—will each be confined to exactly one aisle, with each aisle containing at least one of the sections. The following conditions hold: Reading must be located in the same aisle as either Fantasy or Music. Fantasy must be located in a lower-numbered aisle than both Music and Puzzles. Science must be located in a lower-numbered aisle than Puzzles. Science cannot be located in a lower-numbered aisle than Hobbies.", "question": "If aisle 1 contains Hobbies only, which one of the following could be true?", "options": [ "A) Fantasy is located in aisle 3.", "B) Music is located in aisle 2.", "C) Puzzles is located in aisle 2.", "D) Reading is located in aisle 3.", "E) Science is located in aisle 3." ], "answer": "D" }, { "id": "ar_lsat_201210_3-G_3_14", "context": "A toy retailer is opening a small satellite store with exactly three aisles, numbered from 1 (lowest) to 3 (highest). Six sections—Fantasy, Hobbies, Music, Puzzles, Reading, and Science—will each be confined to exactly one aisle, with each aisle containing at least one of the sections. The following conditions hold: Reading must be located in the same aisle as either Fantasy or Music. Fantasy must be located in a lower-numbered aisle than both Music and Puzzles. Science must be located in a lower-numbered aisle than Puzzles. Science cannot be located in a lower-numbered aisle than Hobbies.", "question": "If aisle 3 contains Puzzles only, which one of the following must be true?", "options": [ "A) Fantasy is located in aisle 1.", "B) Hobbies is located in aisle 1.", "C) Music is located in aisle 1.", "D) Reading is located in aisle 1.", "E) Science is located in aisle 2." ], "answer": "A" }, { "id": "ar_lsat_201210_3-G_3_15", "context": "A toy retailer is opening a small satellite store with exactly three aisles, numbered from 1 (lowest) to 3 (highest). Six sections—Fantasy, Hobbies, Music, Puzzles, Reading, and Science—will each be confined to exactly one aisle, with each aisle containing at least one of the sections. The following conditions hold: Reading must be located in the same aisle as either Fantasy or Music. Fantasy must be located in a lower-numbered aisle than both Music and Puzzles. Science must be located in a lower-numbered aisle than Puzzles. Science cannot be located in a lower-numbered aisle than Hobbies.", "question": "If each aisle contains exactly two of the six sections, then Science must be located in the same aisle as", "options": [ "A) Fantasy", "B) Hobbies", "C) Music", "D) Puzzles", "E) Reading" ], "answer": "B" }, { "id": "ar_lsat_201210_3-G_3_16", "context": "A toy retailer is opening a small satellite store with exactly three aisles, numbered from 1 (lowest) to 3 (highest). Six sections—Fantasy, Hobbies, Music, Puzzles, Reading, and Science—will each be confined to exactly one aisle, with each aisle containing at least one of the sections. The following conditions hold: Reading must be located in the same aisle as either Fantasy or Music. Fantasy must be located in a lower-numbered aisle than both Music and Puzzles. Science must be located in a lower-numbered aisle than Puzzles. Science cannot be located in a lower-numbered aisle than Hobbies.", "question": "Which one of the following CANNOT be the list of the sections located in aisle 2?", "options": [ "A) Hobbies, Music", "B) Music, Reading", "C) Music, Science", "D) Hobbies, Music, Science", "E) Music, Reading, Science" ], "answer": "A" }, { "id": "ar_lsat_201210_3-G_3_17", "context": "A toy retailer is opening a small satellite store with exactly three aisles, numbered from 1 (lowest) to 3 (highest). Six sections—Fantasy, Hobbies, Music, Puzzles, Reading, and Science—will each be confined to exactly one aisle, with each aisle containing at least one of the sections. The following conditions hold: Reading must be located in the same aisle as either Fantasy or Music. Fantasy must be located in a lower-numbered aisle than both Music and Puzzles. Science must be located in a lower-numbered aisle than Puzzles. Science cannot be located in a lower-numbered aisle than Hobbies.", "question": "If aisle 2 contains Science only, then each of the following must be true EXCEPT:", "options": [ "A) Fantasy is located in aisle 1.", "B) Hobbies is located in aisle 1.", "C) Music is located in aisle 3.", "D) Puzzles is located in aisle 3.", "E) Reading is located in aisle 1." ], "answer": "E" }, { "id": "ar_lsat_201210_3-G_4_18", "context": "Millville has created three new development zones: Z1, Z2, and Z3. Within these zones, subzones can be designated for housing, industrial, or retail use, with no subzone designated for more than one use. By city regulation, a total of no more than three subzones can be designated for each of the three uses. The following restrictions are in place: Retail subzones are not allowed in Z1. No more than two subzones for housing are allowed in any particular zone. No more than one retail subzone is allowed in any zone in which a subzone is designated for housing. Industrial subzones are not allowed in any zone in which a subzone is designated for housing or three subzones are designated for retail use.", "question": "Which one of the following is an allowable way of designating subzones within the three zones?", "options": [ "A) Z1: no designated subzones Z2: one housing subzone, two retail subzones Z3: one industrial subzone, one retail subzone", "B) Z1: one housing subzone, one industrial subzone Z2: two housing subzones, one retail subzone Z3: one industrial subzone, one retail subzone", "C) Z1: one housing subzone, one retail subzone Z2: two housing subzones, one retail subzone Z3: one industrial subzone, one retail subzone", "D) Z1: one industrial subzone Z2: three housing subzones Z3: three retail subzones", "E) Z1: one industrial subzone Z2: two housing subzones, one retail subzone Z3: one industrial subzone, two retail subzones" ], "answer": "E" }, { "id": "ar_lsat_201210_3-G_4_19", "context": "Millville has created three new development zones: Z1, Z2, and Z3. Within these zones, subzones can be designated for housing, industrial, or retail use, with no subzone designated for more than one use. By city regulation, a total of no more than three subzones can be designated for each of the three uses. The following restrictions are in place: Retail subzones are not allowed in Z1. No more than two subzones for housing are allowed in any particular zone. No more than one retail subzone is allowed in any zone in which a subzone is designated for housing. Industrial subzones are not allowed in any zone in which a subzone is designated for housing or three subzones are designated for retail use.", "question": "Which one of the following CANNOT be true within a single zone?", "options": [ "A) Two subzones are designated, one housing and one retail.", "B) Two subzones are designated, one industrial and one retail.", "C) Three subzones are designated, all of them retail.", "D) Four subzones are designated, none of them industrial.", "E) Four subzones are designated, two retail and two industrial." ], "answer": "D" }, { "id": "ar_lsat_201210_3-G_4_20", "context": "Millville has created three new development zones: Z1, Z2, and Z3. Within these zones, subzones can be designated for housing, industrial, or retail use, with no subzone designated for more than one use. By city regulation, a total of no more than three subzones can be designated for each of the three uses. The following restrictions are in place: Retail subzones are not allowed in Z1. No more than two subzones for housing are allowed in any particular zone. No more than one retail subzone is allowed in any zone in which a subzone is designated for housing. Industrial subzones are not allowed in any zone in which a subzone is designated for housing or three subzones are designated for retail use.", "question": "What is the maximum number of designated subzones allowed in Z3?", "options": [ "A) 2", "B) 3", "C) 4", "D) 5", "E) 6" ], "answer": "D" }, { "id": "ar_lsat_201210_3-G_4_21", "context": "Millville has created three new development zones: Z1, Z2, and Z3. Within these zones, subzones can be designated for housing, industrial, or retail use, with no subzone designated for more than one use. By city regulation, a total of no more than three subzones can be designated for each of the three uses. The following restrictions are in place: Retail subzones are not allowed in Z1. No more than two subzones for housing are allowed in any particular zone. No more than one retail subzone is allowed in any zone in which a subzone is designated for housing. Industrial subzones are not allowed in any zone in which a subzone is designated for housing or three subzones are designated for retail use.", "question": "If three subzones are designated for each use, then which one of the following is allowed?", "options": [ "A) Exactly one subzone in Z3 is designated for industrial use and exactly one subzone in Z3 is designated for retail use.", "B) Exactly two subzones in Z2 are designated for housing.", "C) Three subzones in Z1 are designated for industrial use.", "D) Three subzones in Z2 are designated for industrial use and exactly one subzone in Z2 is designated for retail use.", "E) Three subzones in Z3 are designated for retail use." ], "answer": "B" }, { "id": "ar_lsat_201210_3-G_4_22", "context": "Millville has created three new development zones: Z1, Z2, and Z3. Within these zones, subzones can be designated for housing, industrial, or retail use, with no subzone designated for more than one use. By city regulation, a total of no more than three subzones can be designated for each of the three uses. The following restrictions are in place: Retail subzones are not allowed in Z1. No more than two subzones for housing are allowed in any particular zone. No more than one retail subzone is allowed in any zone in which a subzone is designated for housing. Industrial subzones are not allowed in any zone in which a subzone is designated for housing or three subzones are designated for retail use.", "question": "If one subzone in each of the zones is designated for industrial use, then which one of the following is allowed?", "options": [ "A) More subzones are designated for retail use in Z2 than in Z3.", "B) A subzone in one of the zones is designated for housing.", "C) Exactly two subzones are designated in Z1.", "D) Exactly three subzones each are designated in Z2 and Z3.", "E) Exactly four subzones are designated in Z3." ], "answer": "A" }, { "id": "ar_lsat_201210_3-G_4_23", "context": "Millville has created three new development zones: Z1, Z2, and Z3. Within these zones, subzones can be designated for housing, industrial, or retail use, with no subzone designated for more than one use. By city regulation, a total of no more than three subzones can be designated for each of the three uses. The following restrictions are in place: Retail subzones are not allowed in Z1. No more than two subzones for housing are allowed in any particular zone. No more than one retail subzone is allowed in any zone in which a subzone is designated for housing. Industrial subzones are not allowed in any zone in which a subzone is designated for housing or three subzones are designated for retail use.", "question": "If three subzones in all are designated for retail use and a subzone in Z2 is designated for housing, then which one of the following is allowed?", "options": [ "A) Two subzones in Z1 are designated for housing.", "B) More subzones are designated for industrial use in Z2 than in Z3.", "C) More subzones are designated for retail use in Z2 than in Z3.", "D) The same number of subzones are designated for retail use in Z2 and Z3.", "E) A subzone in Z3 is designated for housing." ], "answer": "A" }, { "id": "ar_lsat_201306_2-G_1_1", "context": "A researcher is studying seven manuscripts—F, G, H, L, M, P, and S—to determine their relative ages. It is known that no two manuscripts were written at the same time. The researcher has also determined the following: H was written earlier than S but later than F. P was the next manuscript written after G. At least four of the manuscripts were written earlier than L. At least four of the manuscripts were written later than M. H was not written fifth.", "question": "Which one of the following could be the order in which the manuscripts were written, from first to last?", "options": [ "A) F, M, G, H, P, L, S", "B) G, P, M, F, H, S, L", "C) H, F, M, G, P, L, S", "D) L, F, M, G, P, H, S", "E) M, F, H, S, L, G, P" ], "answer": "E" }, { "id": "ar_lsat_201306_2-G_1_2", "context": "A researcher is studying seven manuscripts—F, G, H, L, M, P, and S—to determine their relative ages. It is known that no two manuscripts were written at the same time. The researcher has also determined the following: H was written earlier than S but later than F. P was the next manuscript written after G. At least four of the manuscripts were written earlier than L. At least four of the manuscripts were written later than M. H was not written fifth.", "question": "Which one of the following manuscripts CANNOT have been written third?", "options": [ "A) S", "B) P", "C) M", "D) H", "E) G" ], "answer": "A" }, { "id": "ar_lsat_201306_2-G_1_3", "context": "A researcher is studying seven manuscripts—F, G, H, L, M, P, and S—to determine their relative ages. It is known that no two manuscripts were written at the same time. The researcher has also determined the following: H was written earlier than S but later than F. P was the next manuscript written after G. At least four of the manuscripts were written earlier than L. At least four of the manuscripts were written later than M. H was not written fifth.", "question": "If H was the next manuscript written after M, which one of the following could be true?", "options": [ "A) F was written second.", "B) G was written third.", "C) H was written fourth.", "D) P was written third.", "E) S was written fourth." ], "answer": "E" }, { "id": "ar_lsat_201306_2-G_1_4", "context": "A researcher is studying seven manuscripts—F, G, H, L, M, P, and S—to determine their relative ages. It is known that no two manuscripts were written at the same time. The researcher has also determined the following: H was written earlier than S but later than F. P was the next manuscript written after G. At least four of the manuscripts were written earlier than L. At least four of the manuscripts were written later than M. H was not written fifth.", "question": "Which one of the following manuscripts CANNOT have been written fourth?", "options": [ "A) F", "B) G", "C) H", "D) P", "E) S" ], "answer": "D" }, { "id": "ar_lsat_201306_2-G_1_5", "context": "A researcher is studying seven manuscripts—F, G, H, L, M, P, and S—to determine their relative ages. It is known that no two manuscripts were written at the same time. The researcher has also determined the following: H was written earlier than S but later than F. P was the next manuscript written after G. At least four of the manuscripts were written earlier than L. At least four of the manuscripts were written later than M. H was not written fifth.", "question": "If P was written earlier than H, then any of the following could be true EXCEPT:", "options": [ "A) F was written first.", "B) G was written third.", "C) H was written sixth.", "D) L was written seventh.", "E) M was written second." ], "answer": "D" }, { "id": "ar_lsat_201306_2-G_2_6", "context": "Exactly six petri dishes—labeled dish 1 through dish 6—are to be stored in an otherwise empty refrigerator. There are three available shelves—the bottom shelf, the middle shelf, and the top shelf. The placement of the dishes must be consistent with the following conditions: No more than three dishes are stored on any shelf. Dish 2 is stored at least one shelf above dish 6. Dish 6 is stored either one shelf above or one shelf below dish 5. Dish 1 is not stored on the same shelf as dish 4.", "question": "Which one of the following is an acceptable placement of dishes on the bottom, middle, and top shelves?", "options": [ "A) bottom: dish 1 middle: dish 6 top: dishes 2, 3, 4, 5", "B) bottom: dishes 1, 3 middle: dish 6 top: dishes 2, 4, 5", "C) bottom: dish 2 middle: dishes 4, 6 top: dishes 1, 3, 5", "D) bottom: dishes 3, 5 middle: dish 6 top: dishes 1, 2, 4", "E) bottom: dishes 4, 6 middle: dishes 1, 3 top: dishes 2, 5" ], "answer": "B" }, { "id": "ar_lsat_201306_2-G_2_7", "context": "Exactly six petri dishes—labeled dish 1 through dish 6—are to be stored in an otherwise empty refrigerator. There are three available shelves—the bottom shelf, the middle shelf, and the top shelf. The placement of the dishes must be consistent with the following conditions: No more than three dishes are stored on any shelf. Dish 2 is stored at least one shelf above dish 6. Dish 6 is stored either one shelf above or one shelf below dish 5. Dish 1 is not stored on the same shelf as dish 4.", "question": "If dish 6 is the only dish stored on the bottom shelf, which one of the following could be the list of dishes that are stored together on the middle shelf?", "options": [ "A) dish 1, dish 3", "B) dish 2, dish 4", "C) dish 2, dish 3", "D) dish 3, dish 5", "E) dish 4, dish 5" ], "answer": "E" }, { "id": "ar_lsat_201306_2-G_2_8", "context": "Exactly six petri dishes—labeled dish 1 through dish 6—are to be stored in an otherwise empty refrigerator. There are three available shelves—the bottom shelf, the middle shelf, and the top shelf. The placement of the dishes must be consistent with the following conditions: No more than three dishes are stored on any shelf. Dish 2 is stored at least one shelf above dish 6. Dish 6 is stored either one shelf above or one shelf below dish 5. Dish 1 is not stored on the same shelf as dish 4.", "question": "If dish 1, dish 2, and dish 3 are stored on the same shelf as each other, which one of the following could be true?", "options": [ "A) Exactly one of the dishes is stored on the top shelf.", "B) Exactly two of the dishes are stored on the top shelf.", "C) Exactly two of the dishes are stored on the middle shelf.", "D) Exactly three of the dishes are stored on the middle shelf.", "E) Exactly three of the dishes are stored on the bottom shelf." ], "answer": "C" }, { "id": "ar_lsat_201306_2-G_2_9", "context": "Exactly six petri dishes—labeled dish 1 through dish 6—are to be stored in an otherwise empty refrigerator. There are three available shelves—the bottom shelf, the middle shelf, and the top shelf. The placement of the dishes must be consistent with the following conditions: No more than three dishes are stored on any shelf. Dish 2 is stored at least one shelf above dish 6. Dish 6 is stored either one shelf above or one shelf below dish 5. Dish 1 is not stored on the same shelf as dish 4.", "question": "If exactly one of the shelves has no dish stored on it, which one of the following must be true?", "options": [ "A) Exactly three of the dishes are stored on the bottom shelf.", "B) Exactly three of the dishes are stored on the middle shelf.", "C) Dish 1 is stored on the same shelf as dish 5.", "D) Dish 2 is stored on the same shelf as dish 3.", "E) Dish 4 is stored on the same shelf as dish 5." ], "answer": "B" }, { "id": "ar_lsat_201306_2-G_2_10", "context": "Exactly six petri dishes—labeled dish 1 through dish 6—are to be stored in an otherwise empty refrigerator. There are three available shelves—the bottom shelf, the middle shelf, and the top shelf. The placement of the dishes must be consistent with the following conditions: No more than three dishes are stored on any shelf. Dish 2 is stored at least one shelf above dish 6. Dish 6 is stored either one shelf above or one shelf below dish 5. Dish 1 is not stored on the same shelf as dish 4.", "question": "If dish 5 is the only dish stored on the bottom shelf and if exactly two of the dishes are stored on the middle shelf, then which one of the following is a pair of dishes that must be among the dishes stored on the top shelf?", "options": [ "A) dish 1 and dish 2", "B) dish 1 and dish 6", "C) dish 2 and dish 3", "D) dish 2 and dish 4", "E) dish 3 and dish 4" ], "answer": "C" }, { "id": "ar_lsat_201306_2-G_2_11", "context": "Exactly six petri dishes—labeled dish 1 through dish 6—are to be stored in an otherwise empty refrigerator. There are three available shelves—the bottom shelf, the middle shelf, and the top shelf. The placement of the dishes must be consistent with the following conditions: No more than three dishes are stored on any shelf. Dish 2 is stored at least one shelf above dish 6. Dish 6 is stored either one shelf above or one shelf below dish 5. Dish 1 is not stored on the same shelf as dish 4.", "question": "If exactly one of the dishes is stored on the middle shelf, which one of the following could be the list of dishes stored on the top shelf?", "options": [ "A) dish 1, dish 2", "B) dish 1, dish 5", "C) dish 2, dish 3", "D) dish 3, dish 4", "E) dish 3, dish 5" ], "answer": "A" }, { "id": "ar_lsat_201306_2-G_3_12", "context": "A company operates vending machines in four schools: Ferndale, Gladstone, Hafford, and Isley. The company delivers juices in one of its two trucks and snacks in the other truck. Each week, exactly one delivery of juices and exactly one delivery of snacks is made to each school, subject to the following conditions: Snacks must be delivered to Ferndale at some time before they are delivered to Hafford. Gladstone cannot be the fourth school to which juices are delivered. Gladstone must be the third school to which snacks are delivered. The first school to which juices are delivered must be the fourth one to which snacks are delivered.", "question": "Which one of the following could be the schedule of deliveries to the schools, from the first to the fourth?", "options": [ "A) Juices: Hafford, Ferndale, Gladstone, Isley Snacks: Ferndale, Isley, Gladstone, Hafford", "B) Juices: Hafford, Isley, Ferndale, Gladstone Snacks: Isley, Ferndale, Gladstone, Hafford", "C) Juices: Isley, Ferndale, Gladstone, Hafford Snacks: Hafford, Ferndale, Gladstone, Isley", "D) Juices: Isley, Gladstone, Ferndale, Hafford Snacks: Ferndale, Gladstone, Hafford, Isley", "E) Juices: Isley, Hafford, Gladstone, Ferndale Snacks: Ferndale, Isley, Gladstone, Hafford" ], "answer": "A" }, { "id": "ar_lsat_201306_2-G_3_13", "context": "A company operates vending machines in four schools: Ferndale, Gladstone, Hafford, and Isley. The company delivers juices in one of its two trucks and snacks in the other truck. Each week, exactly one delivery of juices and exactly one delivery of snacks is made to each school, subject to the following conditions: Snacks must be delivered to Ferndale at some time before they are delivered to Hafford. Gladstone cannot be the fourth school to which juices are delivered. Gladstone must be the third school to which snacks are delivered. The first school to which juices are delivered must be the fourth one to which snacks are delivered.", "question": "If Hafford is the fourth school to which juices are delivered, which one of the following must be true?", "options": [ "A) Ferndale is the second school to which juices are delivered.", "B) Gladstone is the third school to which juices are delivered.", "C) Ferndale is the second school to which snacks are delivered.", "D) Hafford is the second school to which snacks are delivered.", "E) Isley is the first school to which snacks are delivered." ], "answer": "D" }, { "id": "ar_lsat_201306_2-G_3_14", "context": "A company operates vending machines in four schools: Ferndale, Gladstone, Hafford, and Isley. The company delivers juices in one of its two trucks and snacks in the other truck. Each week, exactly one delivery of juices and exactly one delivery of snacks is made to each school, subject to the following conditions: Snacks must be delivered to Ferndale at some time before they are delivered to Hafford. Gladstone cannot be the fourth school to which juices are delivered. Gladstone must be the third school to which snacks are delivered. The first school to which juices are delivered must be the fourth one to which snacks are delivered.", "question": "If Isley is the third school to which juices are delivered, which one of the following could be true?", "options": [ "A) Juices are delivered to Gladstone at some time before they are delivered to Hafford.", "B) Juices are delivered to Isley at some time before they are delivered to Hafford.", "C) Snacks are delivered to Ferndale at some time before they are delivered to Isley.", "D) Snacks are delivered to Gladstone at some time before they are delivered to Isley.", "E) Snacks are delivered to Hafford at some time before they are delivered to Gladstone." ], "answer": "C" }, { "id": "ar_lsat_201306_2-G_3_15", "context": "A company operates vending machines in four schools: Ferndale, Gladstone, Hafford, and Isley. The company delivers juices in one of its two trucks and snacks in the other truck. Each week, exactly one delivery of juices and exactly one delivery of snacks is made to each school, subject to the following conditions: Snacks must be delivered to Ferndale at some time before they are delivered to Hafford. Gladstone cannot be the fourth school to which juices are delivered. Gladstone must be the third school to which snacks are delivered. The first school to which juices are delivered must be the fourth one to which snacks are delivered.", "question": "If Isley is the first school to which snacks are delivered, which one of the following could be true?", "options": [ "A) Ferndale is the second school to which juices are delivered.", "B) Hafford is the second school to which juices are delivered.", "C) Hafford is the third school to which juices are delivered.", "D) Isley is the first school to which juices are delivered.", "E) Hafford is the second school to which snacks are delivered." ], "answer": "A" }, { "id": "ar_lsat_201306_2-G_3_16", "context": "A company operates vending machines in four schools: Ferndale, Gladstone, Hafford, and Isley. The company delivers juices in one of its two trucks and snacks in the other truck. Each week, exactly one delivery of juices and exactly one delivery of snacks is made to each school, subject to the following conditions: Snacks must be delivered to Ferndale at some time before they are delivered to Hafford. Gladstone cannot be the fourth school to which juices are delivered. Gladstone must be the third school to which snacks are delivered. The first school to which juices are delivered must be the fourth one to which snacks are delivered.", "question": "Which one of the following could be true?", "options": [ "A) Both juices and snacks are delivered to Gladstone at some time before they are delivered to Ferndale.", "B) Both juices and snacks are delivered to Gladstone at some time before they are delivered to Isley.", "C) Both juices and snacks are delivered to Hafford at some time before they are delivered to Isley.", "D) Both juices and snacks are delivered to Isley at some time before they are delivered to Ferndale.", "E) Both juices and snacks are delivered to Isley at some time before they are delivered to Hafford." ], "answer": "D" }, { "id": "ar_lsat_201306_2-G_3_17", "context": "A company operates vending machines in four schools: Ferndale, Gladstone, Hafford, and Isley. The company delivers juices in one of its two trucks and snacks in the other truck. Each week, exactly one delivery of juices and exactly one delivery of snacks is made to each school, subject to the following conditions: Snacks must be delivered to Ferndale at some time before they are delivered to Hafford. Gladstone cannot be the fourth school to which juices are delivered. Gladstone must be the third school to which snacks are delivered. The first school to which juices are delivered must be the fourth one to which snacks are delivered.", "question": "Which one of the following, if substituted for the condition that Gladstone cannot be the fourth school to which juices are delivered, would have the same effect in determining the delivery schedule?", "options": [ "A) Ferndale must be either the second school or the fourth school to which juices are delivered.", "B) Gladstone must be either the second school or the third school to which juices are delivered.", "C) Hafford must be either the first school or the fourth school to which juices are delivered.", "D) The first school to which juices are delivered must be either Ferndale or Isley.", "E) The fourth school to which juices are delivered must be either Hafford or Isley." ], "answer": "B" }, { "id": "ar_lsat_201306_2-G_4_18", "context": "Each of five paralegals—Frank, Gina, Hiro, Kevin, and Laurie—is being assigned to exactly one of three cases—the Raimes, Sicoli, or Thompson case. At least one paralegal will be assigned to each case. The following conditions must apply: Either Frank is assigned to Raimes and Kevin is assigned to Thompson, or Frank is not assigned to Raimes and Kevin is not assigned to Thompson. Either Frank is the sole paralegal assigned to his case or Gina is the sole paralegal assigned to her case, but not both. Hiro is assigned to Sicoli.", "question": "Which one of the following could be the assignment of paralegals to cases?", "options": [ "A) Raimes: Frank Sicoli: Gina, Hiro, Kevin Thompson: Laurie", "B) Raimes: Kevin Sicoli: Gina Thompson: Frank, Hiro, Laurie", "C) Raimes: Gina, Kevin Sicoli: Frank, Hiro Thompson: Laurie", "D) Raimes: Kevin, Laurie Sicoli: Gina, Hiro Thompson: Frank", "E) Raimes: Frank, Kevin, Laurie Sicoli: Hiro Thompson: Gina" ], "answer": "D" }, { "id": "ar_lsat_201306_2-G_4_19", "context": "Each of five paralegals—Frank, Gina, Hiro, Kevin, and Laurie—is being assigned to exactly one of three cases—the Raimes, Sicoli, or Thompson case. At least one paralegal will be assigned to each case. The following conditions must apply: Either Frank is assigned to Raimes and Kevin is assigned to Thompson, or Frank is not assigned to Raimes and Kevin is not assigned to Thompson. Either Frank is the sole paralegal assigned to his case or Gina is the sole paralegal assigned to her case, but not both. Hiro is assigned to Sicoli.", "question": "Which one of the following CANNOT be the complete assignment of paralegals to the Sicoli case?", "options": [ "A) Frank, Hiro, Kevin", "B) Frank, Hiro, Laurie", "C) Gina, Hiro, Kevin", "D) Gina, Hiro, Laurie", "E) Hiro, Kevin, Laurie" ], "answer": "E" }, { "id": "ar_lsat_201306_2-G_4_20", "context": "Each of five paralegals—Frank, Gina, Hiro, Kevin, and Laurie—is being assigned to exactly one of three cases—the Raimes, Sicoli, or Thompson case. At least one paralegal will be assigned to each case. The following conditions must apply: Either Frank is assigned to Raimes and Kevin is assigned to Thompson, or Frank is not assigned to Raimes and Kevin is not assigned to Thompson. Either Frank is the sole paralegal assigned to his case or Gina is the sole paralegal assigned to her case, but not both. Hiro is assigned to Sicoli.", "question": "If exactly two of the paralegals are assigned to the Thompson case, then which one of the following could be the complete assignment of paralegals to the Raimes case?", "options": [ "A) Gina", "B) Kevin", "C) Laurie", "D) Gina, Kevin", "E) Kevin, Laurie" ], "answer": "A" }, { "id": "ar_lsat_201306_2-G_4_21", "context": "Each of five paralegals—Frank, Gina, Hiro, Kevin, and Laurie—is being assigned to exactly one of three cases—the Raimes, Sicoli, or Thompson case. At least one paralegal will be assigned to each case. The following conditions must apply: Either Frank is assigned to Raimes and Kevin is assigned to Thompson, or Frank is not assigned to Raimes and Kevin is not assigned to Thompson. Either Frank is the sole paralegal assigned to his case or Gina is the sole paralegal assigned to her case, but not both. Hiro is assigned to Sicoli.", "question": "If one of the cases has Gina and Laurie as the only paralegals assigned to it, then each of the following must be false EXCEPT:", "options": [ "A) Frank is assigned to the Raimes case.", "B) Frank is assigned to the Sicoli case.", "C) Gina is assigned to the Raimes case.", "D) Kevin is assigned to the Raimes case.", "E) Laurie is assigned to the Thompson case." ], "answer": "C" }, { "id": "ar_lsat_201306_2-G_4_22", "context": "Each of five paralegals—Frank, Gina, Hiro, Kevin, and Laurie—is being assigned to exactly one of three cases—the Raimes, Sicoli, or Thompson case. At least one paralegal will be assigned to each case. The following conditions must apply: Either Frank is assigned to Raimes and Kevin is assigned to Thompson, or Frank is not assigned to Raimes and Kevin is not assigned to Thompson. Either Frank is the sole paralegal assigned to his case or Gina is the sole paralegal assigned to her case, but not both. Hiro is assigned to Sicoli.", "question": "Which one of the following CANNOT be the complete assignment of paralegals to the Thompson case?", "options": [ "A) Gina", "B) Laurie", "C) Gina, Kevin", "D) Gina, Laurie", "E) Kevin, Laurie" ], "answer": "D" }, { "id": "ar_lsat_201306_2-G_4_23", "context": "Each of five paralegals—Frank, Gina, Hiro, Kevin, and Laurie—is being assigned to exactly one of three cases—the Raimes, Sicoli, or Thompson case. At least one paralegal will be assigned to each case. The following conditions must apply: Either Frank is assigned to Raimes and Kevin is assigned to Thompson, or Frank is not assigned to Raimes and Kevin is not assigned to Thompson. Either Frank is the sole paralegal assigned to his case or Gina is the sole paralegal assigned to her case, but not both. Hiro is assigned to Sicoli.", "question": "If Kevin is the sole paralegal assigned to one of the cases then which one of the following lists all of the paralegals any one of", "options": [ "A) Frank, Kevin, Laurie", "B) Frank, Kevin", "C) Frank", "D) Gina", "E) Kevin" ], "answer": "B" }, { "id": "ar_lsat_201409_3-G_1_1", "context": "A record producer is planning the contents of a CD consisting of a sequence of exactly five instrumental pieces—Reciprocity, Salammbo, Trapezoid, Vancouver, and Wisteria. To create and sustain certain moods, the sequence of pieces will satisfy the following constraints: Salammbo must be earlier than Vancouver. Trapezoid must either be earlier than both Reciprocity and Salammbo or later than both Reciprocity and Salammbo. Wisteria must either be earlier than both Reciprocity and Trapezoid or later than both Reciprocity and Trapezoid.", "question": "The five pieces could appear in which one of the following sequences on the CD, in order from first to last?", "options": [ "A) Reciprocity, Trapezoid, Wisteria, Salammbo, Vancouver", "B) Salammbo, Reciprocity, Trapezoid, Vancouver, Wisteria", "C) Trapezoid, Wisteria, Salammbo, Vancouver, Reciprocity", "D) Vancouver, Wisteria, Salammbo, Reciprocity, Trapezoid", "E) Wisteria, Salammbo, Vancouver, Trapezoid, Reciprocity" ], "answer": "B" }, { "id": "ar_lsat_201409_3-G_1_2", "context": "A record producer is planning the contents of a CD consisting of a sequence of exactly five instrumental pieces—Reciprocity, Salammbo, Trapezoid, Vancouver, and Wisteria. To create and sustain certain moods, the sequence of pieces will satisfy the following constraints: Salammbo must be earlier than Vancouver. Trapezoid must either be earlier than both Reciprocity and Salammbo or later than both Reciprocity and Salammbo. Wisteria must either be earlier than both Reciprocity and Trapezoid or later than both Reciprocity and Trapezoid.", "question": "If Salammbo is the fourth piece on the CD, then which one of the following must be true?", "options": [ "A) Reciprocity is earlier on the CD than Wisteria.", "B) Salammbo is earlier on the CD than Trapezoid.", "C) Trapezoid is earlier on the CD than Reciprocity.", "D) Vancouver is earlier on the CD than Wisteria.", "E) Wisteria is earlier on the CD than Trapezoid." ], "answer": "C" }, { "id": "ar_lsat_201409_3-G_1_3", "context": "A record producer is planning the contents of a CD consisting of a sequence of exactly five instrumental pieces—Reciprocity, Salammbo, Trapezoid, Vancouver, and Wisteria. To create and sustain certain moods, the sequence of pieces will satisfy the following constraints: Salammbo must be earlier than Vancouver. Trapezoid must either be earlier than both Reciprocity and Salammbo or later than both Reciprocity and Salammbo. Wisteria must either be earlier than both Reciprocity and Trapezoid or later than both Reciprocity and Trapezoid.", "question": "If Reciprocity is the first piece on the CD, then which one of the following could be true?", "options": [ "A) Trapezoid is the second piece on the CD.", "B) Vancouver is the third piece on the CD.", "C) Wisteria is the third piece on the CD.", "D) Salammbo is the fourth piece on the CD.", "E) Trapezoid is the last piece on the CD." ], "answer": "B" }, { "id": "ar_lsat_201409_3-G_1_4", "context": "A record producer is planning the contents of a CD consisting of a sequence of exactly five instrumental pieces—Reciprocity, Salammbo, Trapezoid, Vancouver, and Wisteria. To create and sustain certain moods, the sequence of pieces will satisfy the following constraints: Salammbo must be earlier than Vancouver. Trapezoid must either be earlier than both Reciprocity and Salammbo or later than both Reciprocity and Salammbo. Wisteria must either be earlier than both Reciprocity and Trapezoid or later than both Reciprocity and Trapezoid.", "question": "If Trapezoid is the second piece on the CD, then which one of the following could be true?", "options": [ "A) Salammbo is the first piece on the CD.", "B) Reciprocity is the first piece on the CD.", "C) Vancouver is the third piece on the CD.", "D) Wisteria is the fourth piece on the CD.", "E) Reciprocity is the last piece on the CD." ], "answer": "E" }, { "id": "ar_lsat_201409_3-G_1_5", "context": "A record producer is planning the contents of a CD consisting of a sequence of exactly five instrumental pieces—Reciprocity, Salammbo, Trapezoid, Vancouver, and Wisteria. To create and sustain certain moods, the sequence of pieces will satisfy the following constraints: Salammbo must be earlier than Vancouver. Trapezoid must either be earlier than both Reciprocity and Salammbo or later than both Reciprocity and Salammbo. Wisteria must either be earlier than both Reciprocity and Trapezoid or later than both Reciprocity and Trapezoid.", "question": "The first and second pieces on the CD, listed in order, could be", "options": [ "A) Reciprocity and Vancouver", "B) Reciprocity and Wisteria", "C) Salammbo and Trapezoid", "D) Trapezoid and Wisteria", "E) Wisteria and Salammbo" ], "answer": "E" }, { "id": "ar_lsat_201409_3-G_1_6", "context": "A record producer is planning the contents of a CD consisting of a sequence of exactly five instrumental pieces—Reciprocity, Salammbo, Trapezoid, Vancouver, and Wisteria. To create and sustain certain moods, the sequence of pieces will satisfy the following constraints: Salammbo must be earlier than Vancouver. Trapezoid must either be earlier than both Reciprocity and Salammbo or later than both Reciprocity and Salammbo. Wisteria must either be earlier than both Reciprocity and Trapezoid or later than both Reciprocity and Trapezoid.", "question": "If Vancouver is the second piece on the CD, then which one of the following could be true?", "options": [ "A) Wisteria is the first piece on the CD.", "B) Salammbo is the third piece on the CD.", "C) Trapezoid is the third piece on the CD.", "D) Reciprocity is the fourth piece on the CD.", "E) Reciprocity is the last piece on the CD." ], "answer": "D" }, { "id": "ar_lsat_201409_3-G_1_7", "context": "A record producer is planning the contents of a CD consisting of a sequence of exactly five instrumental pieces—Reciprocity, Salammbo, Trapezoid, Vancouver, and Wisteria. To create and sustain certain moods, the sequence of pieces will satisfy the following constraints: Salammbo must be earlier than Vancouver. Trapezoid must either be earlier than both Reciprocity and Salammbo or later than both Reciprocity and Salammbo. Wisteria must either be earlier than both Reciprocity and Trapezoid or later than both Reciprocity and Trapezoid.", "question": "If Wisteria is the first piece on the CD, then which one of the following CANNOT be true?", "options": [ "A) Trapezoid is the third piece on the CD.", "B) Vancouver is the third piece on the CD.", "C) Salammbo is the fourth piece on the CD.", "D) Vancouver is the fourth piece on the CD", "E) Trapezoid is the last piece on the CD." ], "answer": "A" }, { "id": "ar_lsat_201409_3-G_2_8", "context": "At a business symposium there will be exactly five speakers: Long, Molina, Xiao, Yoshida, and Zimmerman. Each speaker will give exactly one speech, in either the Gold Room or the Rose Room. In each room, there will be exactly one speech at 1 P.M. and one speech at 2 P.M. In one of the rooms, yet to be determined, there will also be a speech at 3 P.M. The schedule of speeches is constrained by the following: Molina's speech must be earlier than Long's, and in the same room. Neither Xiao's speech nor Yoshida's speech can be earlier than Zimmerman's. If Long's speech is in the Gold Room, then Xiao's and Zimmerman's speeches must both be in the Rose Room.", "question": "Which one of the following could be the speeches given in each room, listed in the order in which they occur?", "options": [ "A) Gold Room: Molina's, Long's Rose Room: Zimmerman's, Xiao's, Yoshida's", "B) Gold Room: Molina's, Yoshida's, Long's Rose Room: Xiao's Zimmerman's", "C) Gold Room: Xiao's, Molina's, Long's Rose Room: Zimmerman's, Yoshida's", "D) Gold Room: Yoshida's, Long's, Molina's Rose Room: Zimmerman's, Xiao's", "E) Gold Room: Zimmerman's, Molina's Rose Room: Xiao's, Yoshida's, Long's" ], "answer": "A" }, { "id": "ar_lsat_201409_3-G_2_9", "context": "At a business symposium there will be exactly five speakers: Long, Molina, Xiao, Yoshida, and Zimmerman. Each speaker will give exactly one speech, in either the Gold Room or the Rose Room. In each room, there will be exactly one speech at 1 P.M. and one speech at 2 P.M. In one of the rooms, yet to be determined, there will also be a speech at 3 P.M. The schedule of speeches is constrained by the following: Molina's speech must be earlier than Long's, and in the same room. Neither Xiao's speech nor Yoshida's speech can be earlier than Zimmerman's. If Long's speech is in the Gold Room, then Xiao's and Zimmerman's speeches must both be in the Rose Room.", "question": "Which one of the following pairs of speeches CANNOT be given at the same time?", "options": [ "A) Long's and Yoshida's", "B) Long's and Zimmerman's", "C) Molina's and Xiao's", "D) Xiao's and Yoshida's", "E) Yoshida's and Zimmerman's" ], "answer": "B" }, { "id": "ar_lsat_201409_3-G_2_10", "context": "At a business symposium there will be exactly five speakers: Long, Molina, Xiao, Yoshida, and Zimmerman. Each speaker will give exactly one speech, in either the Gold Room or the Rose Room. In each room, there will be exactly one speech at 1 P.M. and one speech at 2 P.M. In one of the rooms, yet to be determined, there will also be a speech at 3 P.M. The schedule of speeches is constrained by the following: Molina's speech must be earlier than Long's, and in the same room. Neither Xiao's speech nor Yoshida's speech can be earlier than Zimmerman's. If Long's speech is in the Gold Room, then Xiao's and Zimmerman's speeches must both be in the Rose Room.", "question": "If Xiao's speech is at 3 P.M., which one of the following CANNOT be true?", "options": [ "A) Long's speech is in the same room as Yoshida's.", "B) Molina's speech is in the same room as Xiao's.", "C) Xiao's speech is in the same room as Yoshida's.", "D) Xiao's speech is in the same room as Zimmerman's.", "E) Yoshida's speech is in the same room as Zimmerman's." ], "answer": "A" }, { "id": "ar_lsat_201409_3-G_2_11", "context": "At a business symposium there will be exactly five speakers: Long, Molina, Xiao, Yoshida, and Zimmerman. Each speaker will give exactly one speech, in either the Gold Room or the Rose Room. In each room, there will be exactly one speech at 1 P.M. and one speech at 2 P.M. In one of the rooms, yet to be determined, there will also be a speech at 3 P.M. The schedule of speeches is constrained by the following: Molina's speech must be earlier than Long's, and in the same room. Neither Xiao's speech nor Yoshida's speech can be earlier than Zimmerman's. If Long's speech is in the Gold Room, then Xiao's and Zimmerman's speeches must both be in the Rose Room.", "question": "Which one of the following could be a complete and accurate list of the speeches given in the Gold Room, in the order in which they occur?", "options": [ "A) Long's, Molina's", "B) Molina's, Yoshida's", "C) Molina's, Yoshida's, Long's", "D) Yoshida's, Zimmerman's, Xiao's", "E) Zimmerman's, Molina's, Long's" ], "answer": "C" }, { "id": "ar_lsat_201409_3-G_2_12", "context": "At a business symposium there will be exactly five speakers: Long, Molina, Xiao, Yoshida, and Zimmerman. Each speaker will give exactly one speech, in either the Gold Room or the Rose Room. In each room, there will be exactly one speech at 1 P.M. and one speech at 2 P.M. In one of the rooms, yet to be determined, there will also be a speech at 3 P.M. The schedule of speeches is constrained by the following: Molina's speech must be earlier than Long's, and in the same room. Neither Xiao's speech nor Yoshida's speech can be earlier than Zimmerman's. If Long's speech is in the Gold Room, then Xiao's and Zimmerman's speeches must both be in the Rose Room.", "question": "If Yoshida's speech is at 1 P.M., which one of the following could be true?", "options": [ "A) Long's speech is at 1 P.M. in the Gold Room.", "B) Long's speech is at 2 P.M. in the Rose Room.", "C) Molina's speech is at 2 P.M. in the Gold Room.", "D) Xiao's speech is at 3 P.M. in the Gold Room.", "E) Xiao's speech is at 1 P.M. in the Rose Room." ], "answer": "C" }, { "id": "ar_lsat_201409_3-G_2_13", "context": "At a business symposium there will be exactly five speakers: Long, Molina, Xiao, Yoshida, and Zimmerman. Each speaker will give exactly one speech, in either the Gold Room or the Rose Room. In each room, there will be exactly one speech at 1 P.M. and one speech at 2 P.M. In one of the rooms, yet to be determined, there will also be a speech at 3 P.M. The schedule of speeches is constrained by the following: Molina's speech must be earlier than Long's, and in the same room. Neither Xiao's speech nor Yoshida's speech can be earlier than Zimmerman's. If Long's speech is in the Gold Room, then Xiao's and Zimmerman's speeches must both be in the Rose Room.", "question": "Which one of the following, if substituted for the constraint that neither Xiao's speech nor Yoshida's speech can be earlier than Zimmerman's, would have the same effect in determining the schedule of speeches with regard to rooms and times?", "options": [ "A) Long's speech must be at 3 P.M.", "B) Molina's speech cannot be earlier than Zimmerman's.", "C) Either Xiao's speech or Yoshida's speech must be after Zimmerman's.", "D) Either Xiao's speech or Yoshida's speech or both must be at 2 P.M.", "E) Zimmerman's speech must be at 1 P.M." ], "answer": "E" }, { "id": "ar_lsat_201409_3-G_3_14", "context": "During the seventeenth century, three families—the Trents, the Williamses, and the Yandells—owned the five buildings that constituted the center of their village—the forge, the granary, the inn, the mill, and the stable. Each family owned at least one of the buildings and each building was owned by exactly one of the families. The historical evidence establishes the following about the ownership of the buildings: The Williamses owned more of the buildings than the Yandells owned. Neither the inn nor the mill belonged to the owner of the forge. Either the Trents owned the stable or the Yandells owned the inn, or both.", "question": "Which one of the following could be an accurate matching of each family to the building or buildings it owned?", "options": [ "A) Trents: the granary, the stable Williamses: the inn, the mill Yandells: the forge", "B) Trents: the granary, the mill Williamses: the inn, the stable Yandells: the forge", "C) Trents: the forge, the mill Williamses: the granary, the stable Yandells: the inn", "D) Trents: the forge, the granary Williamses: the mill Yandells: the inn, the stable", "E) Trents: the stable Williamses: the inn, the mill Yandells: the forge, the granary" ], "answer": "A" }, { "id": "ar_lsat_201409_3-G_3_15", "context": "During the seventeenth century, three families—the Trents, the Williamses, and the Yandells—owned the five buildings that constituted the center of their village—the forge, the granary, the inn, the mill, and the stable. Each family owned at least one of the buildings and each building was owned by exactly one of the families. The historical evidence establishes the following about the ownership of the buildings: The Williamses owned more of the buildings than the Yandells owned. Neither the inn nor the mill belonged to the owner of the forge. Either the Trents owned the stable or the Yandells owned the inn, or both.", "question": "Which one of the following is a pair of buildings that CANNOT both have been owned by the Trents?", "options": [ "A) the forge, the granary", "B) the granary, the mill", "C) the granary, the stable", "D) the inn, the mill", "E) the inn, the stable" ], "answer": "D" }, { "id": "ar_lsat_201409_3-G_3_16", "context": "During the seventeenth century, three families—the Trents, the Williamses, and the Yandells—owned the five buildings that constituted the center of their village—the forge, the granary, the inn, the mill, and the stable. Each family owned at least one of the buildings and each building was owned by exactly one of the families. The historical evidence establishes the following about the ownership of the buildings: The Williamses owned more of the buildings than the Yandells owned. Neither the inn nor the mill belonged to the owner of the forge. Either the Trents owned the stable or the Yandells owned the inn, or both.", "question": "If the Yandells owned the mill, which one of the following must be true?", "options": [ "A) The Trents owned the forge.", "B) The Trents owned the inn.", "C) The Williamses owned the forge.", "D) The Williamses owned the granary.", "E) The Williamses owned the inn." ], "answer": "D" }, { "id": "ar_lsat_201409_3-G_3_17", "context": "During the seventeenth century, three families—the Trents, the Williamses, and the Yandells—owned the five buildings that constituted the center of their village—the forge, the granary, the inn, the mill, and the stable. Each family owned at least one of the buildings and each building was owned by exactly one of the families. The historical evidence establishes the following about the ownership of the buildings: The Williamses owned more of the buildings than the Yandells owned. Neither the inn nor the mill belonged to the owner of the forge. Either the Trents owned the stable or the Yandells owned the inn, or both.", "question": "If one of the families owned both the granary and the inn, which one of the following could be true?", "options": [ "A) The Trents owned the granary.", "B) The Trents owned the mill.", "C) The Williamses owned the forge.", "D) The Williamses owned the stable.", "E) The Yandells owned the inn." ], "answer": "B" }, { "id": "ar_lsat_201409_3-G_3_18", "context": "During the seventeenth century, three families—the Trents, the Williamses, and the Yandells—owned the five buildings that constituted the center of their village—the forge, the granary, the inn, the mill, and the stable. Each family owned at least one of the buildings and each building was owned by exactly one of the families. The historical evidence establishes the following about the ownership of the buildings: The Williamses owned more of the buildings than the Yandells owned. Neither the inn nor the mill belonged to the owner of the forge. Either the Trents owned the stable or the Yandells owned the inn, or both.", "question": "If the Trents owned exactly one of the buildings, which one of the following is a complete and accurate list of the buildings any one of which could be the building that the Trents owned?", "options": [ "A) the forge", "B) the forge, the mill", "C) the inn, the stable", "D) the forge, the granary, the mill", "E) the forge, the mill, the stable" ], "answer": "E" }, { "id": "ar_lsat_201409_3-G_4_19", "context": "A florist is filling a customer's order for three bouquets—bouquet 1, bouquet 2, and bouquet 3. Each of the bouquets is to be composed of one or more of five kinds of flowers—lilies, peonies, roses, snapdragons, and tulips—subject to the following conditions: Bouquets 1 and 3 cannot have any kind of flower in common. Bouquets 2 and 3 must have exactly two kinds of flowers in common. Bouquet 3 must have snapdragons. If a bouquet has lilies, that bouquet must also have roses but cannot have snapdragons. If a bouquet has tulips, that bouquet must also have peonies.", "question": "Which one of the following could be a complete and accurate list of the kinds of flowers in each of the bouquets?", "options": [ "A) bouquet 1: lilies, roses bouquet 2: peonies, roses, tulips bouquet 3: peonies, snapdragons, tulips", "B) bouquet 1: peonies, roses bouquet 2: peonies, snapdragons bouquet 3: peonies, snapdragons, tulips", "C) bouquet 1: peonies, tulips bouquet 2: roses, snapdragons, tulips bouquet 3: roses, snapdragons", "D) bouquet 1: roses bouquet 2: peonies, snapdragons bouquet 3: lilies, peonies, snapdragons", "E) bouquet 1: snapdragons bouquet 2: lilies, roses bouquet 3: lilies, roses" ], "answer": "A" }, { "id": "ar_lsat_201409_3-G_4_20", "context": "A florist is filling a customer's order for three bouquets—bouquet 1, bouquet 2, and bouquet 3. Each of the bouquets is to be composed of one or more of five kinds of flowers—lilies, peonies, roses, snapdragons, and tulips—subject to the following conditions: Bouquets 1 and 3 cannot have any kind of flower in common. Bouquets 2 and 3 must have exactly two kinds of flowers in common. Bouquet 3 must have snapdragons. If a bouquet has lilies, that bouquet must also have roses but cannot have snapdragons. If a bouquet has tulips, that bouquet must also have peonies.", "question": "If lilies are in bouquet 1, which one of the following must", "options": [ "A) Lilies are in bouquet 2.", "B) Peonies are in bouquet 3.", "C) Roses are in bouquet 2.", "D) Tulips are in bouquet 2.", "E) Tulips are in bouquet 3." ], "answer": "B" }, { "id": "ar_lsat_201409_3-G_4_21", "context": "A florist is filling a customer's order for three bouquets—bouquet 1, bouquet 2, and bouquet 3. Each of the bouquets is to be composed of one or more of five kinds of flowers—lilies, peonies, roses, snapdragons, and tulips—subject to the following conditions: Bouquets 1 and 3 cannot have any kind of flower in common. Bouquets 2 and 3 must have exactly two kinds of flowers in common. Bouquet 3 must have snapdragons. If a bouquet has lilies, that bouquet must also have roses but cannot have snapdragons. If a bouquet has tulips, that bouquet must also have peonies.", "question": "If tulips are in bouquet 1, which one of the following could be a complete and accurate list of the kinds of flowers in bouquet 2?", "options": [ "A) peonies, tulips", "B) peonies, snapdragons", "C) peonies, snapdragons, tulips", "D) peonies, roses, tulips", "E) peonies, roses, snapdragons, tulips" ], "answer": "E" }, { "id": "ar_lsat_201409_3-G_4_22", "context": "A florist is filling a customer's order for three bouquets—bouquet 1, bouquet 2, and bouquet 3. Each of the bouquets is to be composed of one or more of five kinds of flowers—lilies, peonies, roses, snapdragons, and tulips—subject to the following conditions: Bouquets 1 and 3 cannot have any kind of flower in common. Bouquets 2 and 3 must have exactly two kinds of flowers in common. Bouquet 3 must have snapdragons. If a bouquet has lilies, that bouquet must also have roses but cannot have snapdragons. If a bouquet has tulips, that bouquet must also have peonies.", "question": "Which one of the following CANNOT be a complete and accurate list of the kinds of flowers in bouquet 2?", "options": [ "A) lilies, roses", "B) peonies, tulips", "C) peonies, roses, snapdragons", "D) peonies, roses, tulips", "E) peonies, roses, snapdragons, tulips" ], "answer": "A" }, { "id": "ar_lsat_201409_3-G_4_23", "context": "A florist is filling a customer's order for three bouquets—bouquet 1, bouquet 2, and bouquet 3. Each of the bouquets is to be composed of one or more of five kinds of flowers—lilies, peonies, roses, snapdragons, and tulips—subject to the following conditions: Bouquets 1 and 3 cannot have any kind of flower in common. Bouquets 2 and 3 must have exactly two kinds of flowers in common. Bouquet 3 must have snapdragons. If a bouquet has lilies, that bouquet must also have roses but cannot have snapdragons. If a bouquet has tulips, that bouquet must also have peonies.", "question": "Which one of the following CANNOT be true?", "options": [ "A) Lilies and roses are the only kinds of flowers in bouquet 1.", "B) Peonies and tulips are the only kinds of flowers in bouquet 1.", "C) Lilies, peonies, and roses are the only kinds of flowers in bouquet 2.", "D) Peonies, roses, and snapdragons are the only kinds of flowers in bouquet 2.", "E) Peonies, snapdragons, and tulips are the only kinds of flowers in bouquet 3." ], "answer": "C" }, { "id": "ar_lsat_201506_4-G_1_1", "context": "A corporation's Human Resources department must determine annual bonuses for seven employees—Kimura, Lopez, Meng, and Peterson, who work in the Finance department; and Vaughan, Xavier, and Zane, who work in the Graphics department. Each employee will receive either a $1,000 bonus, a $3,000 bonus, or a $5,000 bonus, in accordance with the following: No one in the Graphics department receives a $1,000 bonus. Any employee who was rated Highly Effective receives a larger bonus than anyone in his or her department who was not rated Highly Effective. Only Lopez, Meng, and Xavier were rated Highly Effective.", "question": "Which one of the following is an allowable distribution of bonuses to the seven employees?", "options": [ "A) [Finance] Kimura: $1,000; Lopez: $5,000; Meng: $5,000; Peterson: $1,000 [Graphics] Vaughan: $3,000; Xavier: $3,000; Zane: $3,000", "B) [Finance] Kimura: $1,000; Lopez: $5,000; Meng: $5,000; Peterson: $3,000 [Graphics] Vaughan: $3,000; Xavier: $5,000; Zane: $1,000", "C) [Finance] Kimura: $1,000; Lopez: $5,000; Meng: $5,000; Peterson: $3,000 [Graphics] Vaughan: $3,000; Xavier: $5,000; Zane: $3,000", "D) [Finance] Kimura: $3,000; Lopez: $5,000; Meng: $3,000; Peterson: $1,000 [Graphics] Vaughan: $3,000; Xavier: $5,000; Zane: $3,000", "E) [Finance] Kimura: $3,000; Lopez: $5,000; Meng: $5,000; Peterson: $1,000 [Graphics] Vaughan: $1,000; Xavier: $5,000; Zane: $3,000" ], "answer": "C" }, { "id": "ar_lsat_201506_4-G_1_2", "context": "A corporation's Human Resources department must determine annual bonuses for seven employees—Kimura, Lopez, Meng, and Peterson, who work in the Finance department; and Vaughan, Xavier, and Zane, who work in the Graphics department. Each employee will receive either a $1,000 bonus, a $3,000 bonus, or a $5,000 bonus, in accordance with the following: No one in the Graphics department receives a $1,000 bonus. Any employee who was rated Highly Effective receives a larger bonus than anyone in his or her department who was not rated Highly Effective. Only Lopez, Meng, and Xavier were rated Highly Effective.", "question": "If Lopez does not receive the same bonus as Meng, which one of the following could be true?", "options": [ "A) Kimura receives a $3,000 bonus.", "B) Lopez receives a $3,000 bonus.", "C) Peterson receives a $3,000 bonus.", "D) Kimura receives the same bonus as Vaughan.", "E) Peterson receives a larger bonus than Kimura." ], "answer": "B" }, { "id": "ar_lsat_201506_4-G_1_3", "context": "A corporation's Human Resources department must determine annual bonuses for seven employees—Kimura, Lopez, Meng, and Peterson, who work in the Finance department; and Vaughan, Xavier, and Zane, who work in the Graphics department. Each employee will receive either a $1,000 bonus, a $3,000 bonus, or a $5,000 bonus, in accordance with the following: No one in the Graphics department receives a $1,000 bonus. Any employee who was rated Highly Effective receives a larger bonus than anyone in his or her department who was not rated Highly Effective. Only Lopez, Meng, and Xavier were rated Highly Effective.", "question": "If only one of the employees receives a $1,000 bonus, which one of the following must be true?", "options": [ "A) Meng receives a $5,000 bonus.", "B) Peterson receives a $3,000 bonus.", "C) Meng receives a $3,000 bonus.", "D) The employee who receives a $1,000 bonus is Peterson.", "E) The employee who receives a $1,000 bonus is Kimura." ], "answer": "E" }, { "id": "ar_lsat_201506_4-G_1_4", "context": "A corporation's Human Resources department must determine annual bonuses for seven employees—Kimura, Lopez, Meng, and Peterson, who work in the Finance department; and Vaughan, Xavier, and Zane, who work in the Graphics department. Each employee will receive either a $1,000 bonus, a $3,000 bonus, or a $5,000 bonus, in accordance with the following: No one in the Graphics department receives a $1,000 bonus. Any employee who was rated Highly Effective receives a larger bonus than anyone in his or her department who was not rated Highly Effective. Only Lopez, Meng, and Xavier were rated Highly Effective.", "question": "Which one of the following must be true?", "options": [ "A) At least one of the employees receives a $1,000 bonus.", "B) At least three of the employees receives a $3,000 bonuses.", "C) At most three of the employees receives a $3,000 bonuses.", "D) At least two of the employees receives a $5,000 bonuses.", "E) At most three of the employees receives a $5,000 bonuses." ], "answer": "E" }, { "id": "ar_lsat_201506_4-G_1_5", "context": "A corporation's Human Resources department must determine annual bonuses for seven employees—Kimura, Lopez, Meng, and Peterson, who work in the Finance department; and Vaughan, Xavier, and Zane, who work in the Graphics department. Each employee will receive either a $1,000 bonus, a $3,000 bonus, or a $5,000 bonus, in accordance with the following: No one in the Graphics department receives a $1,000 bonus. Any employee who was rated Highly Effective receives a larger bonus than anyone in his or her department who was not rated Highly Effective. Only Lopez, Meng, and Xavier were rated Highly Effective.", "question": "If exactly two of the employees receive $5,000 bonuses, which one of the following must be true?", "options": [ "A) Lopez receives a $3,000 bonus.", "B) Meng receives a $3,000 bonus.", "C) Meng is one of the employees who receives a $5,000 bonus.", "D) Peterson receives a $1,000 bonus.", "E) Peterson receives a $3,000 bonus." ], "answer": "D" }, { "id": "ar_lsat_201506_4-G_1_6", "context": "A corporation's Human Resources department must determine annual bonuses for seven employees—Kimura, Lopez, Meng, and Peterson, who work in the Finance department; and Vaughan, Xavier, and Zane, who work in the Graphics department. Each employee will receive either a $1,000 bonus, a $3,000 bonus, or a $5,000 bonus, in accordance with the following: No one in the Graphics department receives a $1,000 bonus. Any employee who was rated Highly Effective receives a larger bonus than anyone in his or her department who was not rated Highly Effective. Only Lopez, Meng, and Xavier were rated Highly Effective.", "question": "Any of the following could be true of the seven employees EXCEPT:", "options": [ "A) The same number receive $1,000 bonuses as receive $3,000 bonuses.", "B) More receive $1,000 bonuses than receive $3,000 bonuses.", "C) The same number receive $1,000 bonuses as receive $5,000 bonuses.", "D) More receive $1,000 bonuses than receive $5,000 bonuses.", "E) More receive $3,000 bonuses than receive $5,000 bonuses." ], "answer": "B" }, { "id": "ar_lsat_201506_4-G_2_7", "context": "A landscaper will plant exactly seven trees today—a hickory, a larch, a maple, an oak, a plum, a sycamore, and a walnut. Each tree must be planted on exactly one of three lots—1, 2, or 3—in conformity with the following requirements: The trees planted on one lot are the hickory, the oak, and exactly one other tree. The maple is not planted on the same lot as the walnut. Either the larch or the walnut, but not both, is planted on lot 1. Either the maple or the oak, but not both, is planted on lot 2. More trees are planted on lot 3 than on lot 1.", "question": "Which one of the following could be the list of the trees that the landscaper plants on each of the lots today?", "options": [ "A) lot 1: the larch, the maple lot 2: the hickory, the oak lot 3: the plum, the sycamore, the walnut", "B) lot 1: the larch, the maple lot 2: the hickory, the oak, the walnut lot 3: the plum, the sycamore", "C) lot 1: the maple lot 2: the hickory, the larch, the oak lot 3: the plum, the sycamore, the walnut", "D) lot 1: the sycamore, the walnut lot 2: the larch, the maple lot 3: the hickory, the oak, the plum", "E) lot 1: the walnut lot 2: the plum, the sycamore lot 3: the hickory, the maple, the oak" ], "answer": "D" }, { "id": "ar_lsat_201506_4-G_2_8", "context": "A landscaper will plant exactly seven trees today—a hickory, a larch, a maple, an oak, a plum, a sycamore, and a walnut. Each tree must be planted on exactly one of three lots—1, 2, or 3—in conformity with the following requirements: The trees planted on one lot are the hickory, the oak, and exactly one other tree. The maple is not planted on the same lot as the walnut. Either the larch or the walnut, but not both, is planted on lot 1. Either the maple or the oak, but not both, is planted on lot 2. More trees are planted on lot 3 than on lot 1.", "question": "If the hickory is planted on lot 2, then which one of the following trees must be planted on lot 3?", "options": [ "A) the larch", "B) the maple", "C) the plum", "D) the sycamore", "E) the walnut" ], "answer": "B" }, { "id": "ar_lsat_201506_4-G_2_9", "context": "A landscaper will plant exactly seven trees today—a hickory, a larch, a maple, an oak, a plum, a sycamore, and a walnut. Each tree must be planted on exactly one of three lots—1, 2, or 3—in conformity with the following requirements: The trees planted on one lot are the hickory, the oak, and exactly one other tree. The maple is not planted on the same lot as the walnut. Either the larch or the walnut, but not both, is planted on lot 1. Either the maple or the oak, but not both, is planted on lot 2. More trees are planted on lot 3 than on lot 1.", "question": "Which one of the following is a complete and accurate list of the trees any of which could be planted on lot 1?", "options": [ "A) the hickory, the plum, the sycamore, the walnut", "B) the hickory, the sycamore, the walnut", "C) the larch, the plum, the sycamore, the walnut", "D) the larch, the plum, the walnut", "E) the plum, the sycamore, the walnut" ], "answer": "C" }, { "id": "ar_lsat_201506_4-G_2_10", "context": "A landscaper will plant exactly seven trees today—a hickory, a larch, a maple, an oak, a plum, a sycamore, and a walnut. Each tree must be planted on exactly one of three lots—1, 2, or 3—in conformity with the following requirements: The trees planted on one lot are the hickory, the oak, and exactly one other tree. The maple is not planted on the same lot as the walnut. Either the larch or the walnut, but not both, is planted on lot 1. Either the maple or the oak, but not both, is planted on lot 2. More trees are planted on lot 3 than on lot 1.", "question": "If the walnut is planted on lot 3, then which one of the following could be true?", "options": [ "A) The sycamore is planted on lot 1.", "B) The hickory is planted on lot 2.", "C) The larch is planted on lot 2.", "D) The plum is planted on lot 3.", "E) The sycamore is planted on lot 3." ], "answer": "A" }, { "id": "ar_lsat_201506_4-G_2_11", "context": "A landscaper will plant exactly seven trees today—a hickory, a larch, a maple, an oak, a plum, a sycamore, and a walnut. Each tree must be planted on exactly one of three lots—1, 2, or 3—in conformity with the following requirements: The trees planted on one lot are the hickory, the oak, and exactly one other tree. The maple is not planted on the same lot as the walnut. Either the larch or the walnut, but not both, is planted on lot 1. Either the maple or the oak, but not both, is planted on lot 2. More trees are planted on lot 3 than on lot 1.", "question": "Where each of the trees is planted is completely determined if which one of the following trees is planted on lot 2?", "options": [ "A) the walnut", "B) the sycamore", "C) the plum", "D) the maple", "E) the larch" ], "answer": "A" }, { "id": "ar_lsat_201506_4-G_3_12", "context": "Seven librarians—Flynn, Gomez, Hill, Kitson, Leung, Moore, and Zahn—are being scheduled for desk duty for one week—Monday through Saturday. The librarians will be on duty exactly one day each. On each day except Saturday, there will be exactly one librarian on duty, with two on duty on Saturday, subject to the following constraints: Hill must be on desk duty earlier in the week than Leung. Both Hill and Moore must be on desk duty earlier in the week than Gomez. Flynn must be on desk duty earlier in the week than both Kitson and Moore. Kitson must be on desk duty earlier in the week than Zahn. Unless Leung is on desk duty on Saturday, Leung must be on desk duty earlier in the week than Flynn.", "question": "Which one of the following is an acceptable schedule for the librarians, listed in order from Monday through Saturday?", "options": [ "A) Flynn; Hill; Moore; Kitson; Zahn; Gomez and Leung", "B) Flynn; Moore; Hill; Leung; Kitson; Gomez and Zahn", "C) Hill; Kitson; Moore; Flynn; Gomez; Leung and Zahn", "D) Hill; Leung; Flynn; Moore; Zahn; Gomez and Kitson", "E) Leung; Flynn; Kitson; Moore; Hill; Gomez and Zahn" ], "answer": "A" }, { "id": "ar_lsat_201506_4-G_3_13", "context": "Seven librarians—Flynn, Gomez, Hill, Kitson, Leung, Moore, and Zahn—are being scheduled for desk duty for one week—Monday through Saturday. The librarians will be on duty exactly one day each. On each day except Saturday, there will be exactly one librarian on duty, with two on duty on Saturday, subject to the following constraints: Hill must be on desk duty earlier in the week than Leung. Both Hill and Moore must be on desk duty earlier in the week than Gomez. Flynn must be on desk duty earlier in the week than both Kitson and Moore. Kitson must be on desk duty earlier in the week than Zahn. Unless Leung is on desk duty on Saturday, Leung must be on desk duty earlier in the week than Flynn.", "question": "Which one of the following CANNOT be on desk duty on Tuesday?", "options": [ "A) Flynn", "B) Hill", "C) Kitson", "D) Moore", "E) Zahn" ], "answer": "E" }, { "id": "ar_lsat_201506_4-G_3_14", "context": "Seven librarians—Flynn, Gomez, Hill, Kitson, Leung, Moore, and Zahn—are being scheduled for desk duty for one week—Monday through Saturday. The librarians will be on duty exactly one day each. On each day except Saturday, there will be exactly one librarian on duty, with two on duty on Saturday, subject to the following constraints: Hill must be on desk duty earlier in the week than Leung. Both Hill and Moore must be on desk duty earlier in the week than Gomez. Flynn must be on desk duty earlier in the week than both Kitson and Moore. Kitson must be on desk duty earlier in the week than Zahn. Unless Leung is on desk duty on Saturday, Leung must be on desk duty earlier in the week than Flynn.", "question": "If Kitson is on desk duty earlier in the week than Moore, which one of the following CANNOT be true?", "options": [ "A) Flynn is on desk duty earlier in the week than Leung.", "B) Gomez is on desk duty earlier in the week than Kitson.", "C) Gomez is on desk duty earlier in the week than Zahn.", "D) Hill is on desk duty earlier in the week than Kitson.", "E) Zahn is on desk duty earlier in the week than Moore." ], "answer": "B" }, { "id": "ar_lsat_201506_4-G_3_15", "context": "Seven librarians—Flynn, Gomez, Hill, Kitson, Leung, Moore, and Zahn—are being scheduled for desk duty for one week—Monday through Saturday. The librarians will be on duty exactly one day each. On each day except Saturday, there will be exactly one librarian on duty, with two on duty on Saturday, subject to the following constraints: Hill must be on desk duty earlier in the week than Leung. Both Hill and Moore must be on desk duty earlier in the week than Gomez. Flynn must be on desk duty earlier in the week than both Kitson and Moore. Kitson must be on desk duty earlier in the week than Zahn. Unless Leung is on desk duty on Saturday, Leung must be on desk duty earlier in the week than Flynn.", "question": "If Zahn is on desk duty on Thursday, which one of the following must be true?", "options": [ "A) Flynn is on desk duty earlier in the week than Leung.", "B) Hill is on desk duty earlier in the week than Flynn.", "C) Hill is on desk duty earlier in the week than Moore.", "D) Hill is on desk duty earlier in the week than Zahn.", "E) Kitson is on desk duty earlier in the week than Moore." ], "answer": "A" }, { "id": "ar_lsat_201506_4-G_3_16", "context": "Seven librarians—Flynn, Gomez, Hill, Kitson, Leung, Moore, and Zahn—are being scheduled for desk duty for one week—Monday through Saturday. The librarians will be on duty exactly one day each. On each day except Saturday, there will be exactly one librarian on duty, with two on duty on Saturday, subject to the following constraints: Hill must be on desk duty earlier in the week than Leung. Both Hill and Moore must be on desk duty earlier in the week than Gomez. Flynn must be on desk duty earlier in the week than both Kitson and Moore. Kitson must be on desk duty earlier in the week than Zahn. Unless Leung is on desk duty on Saturday, Leung must be on desk duty earlier in the week than Flynn.", "question": "If Moore is on desk duty on Tuesday, which one of the following must be true?", "options": [ "A) Hill is on desk duty on Thursday.", "B) Kitson is on desk duty on Thursday.", "C) Leung is on desk duty on Saturday.", "D) Zahn is on desk duty on Friday.", "E) Zahn is on desk duty on Saturday." ], "answer": "C" }, { "id": "ar_lsat_201506_4-G_3_17", "context": "Seven librarians—Flynn, Gomez, Hill, Kitson, Leung, Moore, and Zahn—are being scheduled for desk duty for one week—Monday through Saturday. The librarians will be on duty exactly one day each. On each day except Saturday, there will be exactly one librarian on duty, with two on duty on Saturday, subject to the following constraints: Hill must be on desk duty earlier in the week than Leung. Both Hill and Moore must be on desk duty earlier in the week than Gomez. Flynn must be on desk duty earlier in the week than both Kitson and Moore. Kitson must be on desk duty earlier in the week than Zahn. Unless Leung is on desk duty on Saturday, Leung must be on desk duty earlier in the week than Flynn.", "question": "If Flynn is on desk duty earlier in the week than Hill, which one of the following must be true?", "options": [ "A) Hill is on desk duty earlier in the week than Kitson.", "B) Hill is on desk duty earlier in the week than Zahn.", "C) Kitson is on desk duty earlier in the week than Moore.", "D) Moore is on desk duty earlier in the week than Leung.", "E) Moore is on desk duty earlier in the week than Zahn." ], "answer": "D" }, { "id": "ar_lsat_201506_4-G_3_18", "context": "Seven librarians—Flynn, Gomez, Hill, Kitson, Leung, Moore, and Zahn—are being scheduled for desk duty for one week—Monday through Saturday. The librarians will be on duty exactly one day each. On each day except Saturday, there will be exactly one librarian on duty, with two on duty on Saturday, subject to the following constraints: Hill must be on desk duty earlier in the week than Leung. Both Hill and Moore must be on desk duty earlier in the week than Gomez. Flynn must be on desk duty earlier in the week than both Kitson and Moore. Kitson must be on desk duty earlier in the week than Zahn. Unless Leung is on desk duty on Saturday, Leung must be on desk duty earlier in the week than Flynn.", "question": "Which one of the following, if substituted for the constraint that Flynn must be on desk duty earlier in the week than both Kitson and Moore, would have the same effect in determining the schedule for the librarians?", "options": [ "A) Flynn cannot be on desk duty on Thursday.", "B) Only Flynn or Hill can be on desk duty on Monday.", "C) Only Hill and Leung can be on desk duty earlier than Flynn.", "D) Flynn must be on desk duty earlier in the week than both Gomez and Kitson.", "E) Flynn must be on desk duty earlier in the week than both Moore and Zahn." ], "answer": "C" }, { "id": "ar_lsat_201506_4-G_4_19", "context": "Each issue of a business newsletter has five slots, numbered 1 through 5. The policy of the newsletter requires that there are at least three features per issue, with each feature completely occupying one or more of the slots. Each feature can be one of four types—finance, industry, marketing, or technology. Any slot not containing a feature contains a graphic. The newsletters policy further requires that each issue be structured as follows: Any feature occupying more than one slot must occupy consecutively numbered slots. If an issue has any finance or technology feature, then a finance or technology feature must occupy slot 1. An issue can have at most one industry feature.", "question": "Which one of the following is an allowable structure for an issue of the newsletter?", "options": [ "A) slot 1: a finance feature; slot 2: an industry feature; slot 3: a second industry feature; slot 4: a graphic; slot 5: a graphic", "B) slot 1: a graphic; slot 2: a technology feature; slot 3: a second technology feature; slot 4: a graphic; slot 5: a third technology feature", "C) slots 1 and 2: a single industry feature; slots 3 and 4: a single marketing feature; slot 5: a finance feature", "D) slot 1: a technology feature; slots 2 and 3: a single industry feature; slot 4: a finance feature; slot 5: a graphic", "E) slot 1: a technology feature; slots 2 and 4: a single marketing feature; slot 3: an industry feature; slot 5: a graphic" ], "answer": "D" }, { "id": "ar_lsat_201506_4-G_4_20", "context": "Each issue of a business newsletter has five slots, numbered 1 through 5. The policy of the newsletter requires that there are at least three features per issue, with each feature completely occupying one or more of the slots. Each feature can be one of four types—finance, industry, marketing, or technology. Any slot not containing a feature contains a graphic. The newsletters policy further requires that each issue be structured as follows: Any feature occupying more than one slot must occupy consecutively numbered slots. If an issue has any finance or technology feature, then a finance or technology feature must occupy slot 1. An issue can have at most one industry feature.", "question": "If an issue of the newsletter has no technology feature and if there is a finance feature that occupies both slots 4 and 5, then which one of the following is required for that issue?", "options": [ "A) A finance feature occupies slot 1.", "B) A finance feature occupies slot 2 or slot 3 or both.", "C) A marketing feature occupies slot 2.", "D) An industry feature or a marketing feature occupies slot 2.", "E) An industry feature or a marketing feature occupies slot 3." ], "answer": "A" }, { "id": "ar_lsat_201506_4-G_4_21", "context": "Each issue of a business newsletter has five slots, numbered 1 through 5. The policy of the newsletter requires that there are at least three features per issue, with each feature completely occupying one or more of the slots. Each feature can be one of four types—finance, industry, marketing, or technology. Any slot not containing a feature contains a graphic. The newsletters policy further requires that each issue be structured as follows: Any feature occupying more than one slot must occupy consecutively numbered slots. If an issue has any finance or technology feature, then a finance or technology feature must occupy slot 1. An issue can have at most one industry feature.", "question": "Which one of the following is NOT allowed for an issue of the newsletter?", "options": [ "A) There is exactly one industry feature, and it occupies slot 1.", "B) There is exactly one finance feature, and it occupies slot 2.", "C) There is exactly one technology feature, and it occupies slot 3.", "D) Each feature except the feature occupying slot 1 is either a finance feature or a marketing feature.", "E) Each feature except the feature occupying slot 5 is either an industry feature or a marketing feature." ], "answer": "E" }, { "id": "ar_lsat_201506_4-G_4_22", "context": "Each issue of a business newsletter has five slots, numbered 1 through 5. The policy of the newsletter requires that there are at least three features per issue, with each feature completely occupying one or more of the slots. Each feature can be one of four types—finance, industry, marketing, or technology. Any slot not containing a feature contains a graphic. The newsletters policy further requires that each issue be structured as follows: Any feature occupying more than one slot must occupy consecutively numbered slots. If an issue has any finance or technology feature, then a finance or technology feature must occupy slot 1. An issue can have at most one industry feature.", "question": "If, in a particular issue of the newsletter, slot 1 is occupied by the only industry feature in that issue, then which one of the following is required for that issue?", "options": [ "A) There is an industry feature that occupies slots 1 and 2, and only those slots.", "B) There is an industry feature that occupies slots 1, 2, and 3, and only those slots.", "C) There is a marketing feature that occupies slot 2 or slot 3 or both.", "D) There is a marketing feature that occupies one or more of slots 2, 3, and 4.", "E) There is a marketing feature that occupies slot 3 or slot 5 or both." ], "answer": "D" }, { "id": "ar_lsat_201506_4-G_4_23", "context": "Each issue of a business newsletter has five slots, numbered 1 through 5. The policy of the newsletter requires that there are at least three features per issue, with each feature completely occupying one or more of the slots. Each feature can be one of four types—finance, industry, marketing, or technology. Any slot not containing a feature contains a graphic. The newsletters policy further requires that each issue be structured as follows: Any feature occupying more than one slot must occupy consecutively numbered slots. If an issue has any finance or technology feature, then a finance or technology feature must occupy slot 1. An issue can have at most one industry feature.", "question": "Any of the following is allowed for an issue of the newsletter EXCEPT:", "options": [ "A) There is exactly one finance feature and no industry or marketing feature.", "B) There is exactly one industry feature and no finance or marketing feature.", "C) There is exactly one industry feature and no marketing or technology feature.", "D) There is exactly one marketing feature and no finance or technology feature.", "E) There is exactly one marketing feature and no industry or technology feature." ], "answer": "D" }, { "id": "ar_lsat_201512_3-G_1_1", "context": "Six entertainers—Robinson, Shahpari, Tigay, Wu, Yeaton, and Zane—are being scheduled for the six performances on the opening day of a community festival. Each entertainer will perform at one of six times—in the morning at 9:00 A.M., 10:00 A.M., or 11:00 A.M., or in the afternoon at 2:00 P.M., 3:00 P.M., or 4:00 P.M.—with no two entertainers performing at the same scheduled time. The order in which the entertainers perform is subject to the following constraints: Robinson must perform at some time before Zane. Yeaton's performance must be the next performance after Wu's. Tigay must perform in the afternoon. Zane must perform in the morning.", "question": "Which one of the following could be the order, from first to last, in which the entertainers are scheduled to perform?", "options": [ "A) Robinson, Shahpari, Zane, Tigay, Wu, Yeaton", "B) Robinson, Wu, Yeaton, Zane, Shahpari, Tigay", "C) Robinson, Zane, Tigay, Shahpari, Wu, Yeaton", "D) Shahpari, Robinson, Zane, Wu, Tigay, Yeaton", "E) Wu, Yeaton, Zane, Shahpari, Tigay, Robinson" ], "answer": "A" }, { "id": "ar_lsat_201512_3-G_1_2", "context": "Six entertainers—Robinson, Shahpari, Tigay, Wu, Yeaton, and Zane—are being scheduled for the six performances on the opening day of a community festival. Each entertainer will perform at one of six times—in the morning at 9:00 A.M., 10:00 A.M., or 11:00 A.M., or in the afternoon at 2:00 P.M., 3:00 P.M., or 4:00 P.M.—with no two entertainers performing at the same scheduled time. The order in which the entertainers perform is subject to the following constraints: Robinson must perform at some time before Zane. Yeaton's performance must be the next performance after Wu's. Tigay must perform in the afternoon. Zane must perform in the morning.", "question": "If Wu is scheduled to perform in the morning, then which one of the following could be true?", "options": [ "A) Robinson is scheduled to perform at 10:00 A.M.", "B) Shahpari is scheduled to perform at 3:00 P.M.", "C) Tigay is scheduled to perform at 2:00 P.M.", "D) Yeaton is scheduled to perform at 3:00 P.M.", "E) Zane is scheduled to perform at 11:00 A.M." ], "answer": "B" }, { "id": "ar_lsat_201512_3-G_1_3", "context": "Six entertainers—Robinson, Shahpari, Tigay, Wu, Yeaton, and Zane—are being scheduled for the six performances on the opening day of a community festival. Each entertainer will perform at one of six times—in the morning at 9:00 A.M., 10:00 A.M., or 11:00 A.M., or in the afternoon at 2:00 P.M., 3:00 P.M., or 4:00 P.M.—with no two entertainers performing at the same scheduled time. The order in which the entertainers perform is subject to the following constraints: Robinson must perform at some time before Zane. Yeaton's performance must be the next performance after Wu's. Tigay must perform in the afternoon. Zane must perform in the morning.", "question": "Shahpari CANNOT be scheduled to perform at which one of the following times?", "options": [ "A) 9:00 A.M.", "B) 10:00 A.M.", "C) 11:00 A.M.", "D) 2:00 P.M.", "E) 3:00 P.M." ], "answer": "D" }, { "id": "ar_lsat_201512_3-G_1_4", "context": "Six entertainers—Robinson, Shahpari, Tigay, Wu, Yeaton, and Zane—are being scheduled for the six performances on the opening day of a community festival. Each entertainer will perform at one of six times—in the morning at 9:00 A.M., 10:00 A.M., or 11:00 A.M., or in the afternoon at 2:00 P.M., 3:00 P.M., or 4:00 P.M.—with no two entertainers performing at the same scheduled time. The order in which the entertainers perform is subject to the following constraints: Robinson must perform at some time before Zane. Yeaton's performance must be the next performance after Wu's. Tigay must perform in the afternoon. Zane must perform in the morning.", "question": "What is the earliest time that Wu could be scheduled to perform?", "options": [ "A) 9:00 A.M.", "B) 10:00 A.M.", "C) 11:00 A.M.", "D) 2:00 P.M.", "E) 3:00 P.M." ], "answer": "C" }, { "id": "ar_lsat_201512_3-G_1_5", "context": "Six entertainers—Robinson, Shahpari, Tigay, Wu, Yeaton, and Zane—are being scheduled for the six performances on the opening day of a community festival. Each entertainer will perform at one of six times—in the morning at 9:00 A.M., 10:00 A.M., or 11:00 A.M., or in the afternoon at 2:00 P.M., 3:00 P.M., or 4:00 P.M.—with no two entertainers performing at the same scheduled time. The order in which the entertainers perform is subject to the following constraints: Robinson must perform at some time before Zane. Yeaton's performance must be the next performance after Wu's. Tigay must perform in the afternoon. Zane must perform in the morning.", "question": "Which one of the following is a complete and accurate list of the entertainers who must be scheduled to perform in the afternoon?", "options": [ "A) Tigay", "B) Tigay, Wu", "C) Tigay, Yeaton", "D) Tigay, Wu, Yeaton", "E) Tigay, Shahpari, Yeaton" ], "answer": "C" }, { "id": "ar_lsat_201512_3-G_2_6", "context": "Exactly six of eight ceramic bowls, each crafted by exactly one of eight potters—Larsen, Mills, Neiman, Olivera, Park, Reigel, Serra, and Vance—will be displayed in a row in positions consecutively numbered 1 through 6, one bowl per position. The display is subject to the following conditions: If Larsen's bowl is displayed, Mills's bowl cannot be displayed. Park's bowl can be displayed only if it is next to Olivera's bowl and next to Serra's bowl. Reigel's bowl can be displayed only in either position 1 or position 6. Serra's bowl cannot be displayed in either position 2 or position 4. Neiman's bowl can be displayed only in position 5.", "question": "Which one of the following could be the display of bowls, listed by potters name, in order from position 1 through position 6?", "options": [ "A) Larsen, Mills, Serra, Park, Olivera, Reigel", "B) Larsen, Neiman, Olivera, Park, Serra, Vance", "C) Mills, Olivera, Park, Serra, Reigel, Vance", "D) Reigel, Park, Serra, Olivera, Neiman, Mills", "E) Serra, Park, Olivera, Vance, Larsen, Reigel" ], "answer": "E" }, { "id": "ar_lsat_201512_3-G_2_7", "context": "Exactly six of eight ceramic bowls, each crafted by exactly one of eight potters—Larsen, Mills, Neiman, Olivera, Park, Reigel, Serra, and Vance—will be displayed in a row in positions consecutively numbered 1 through 6, one bowl per position. The display is subject to the following conditions: If Larsen's bowl is displayed, Mills's bowl cannot be displayed. Park's bowl can be displayed only if it is next to Olivera's bowl and next to Serra's bowl. Reigel's bowl can be displayed only in either position 1 or position 6. Serra's bowl cannot be displayed in either position 2 or position 4. Neiman's bowl can be displayed only in position 5.", "question": "If Neiman's bowl and Park's bowl are both displayed, which one of the following is a potter whose bowl could be displayed in position 1?", "options": [ "A) Larsen", "B) Park", "C) Reigel", "D) Serra", "E) Vance" ], "answer": "D" }, { "id": "ar_lsat_201512_3-G_2_8", "context": "Exactly six of eight ceramic bowls, each crafted by exactly one of eight potters—Larsen, Mills, Neiman, Olivera, Park, Reigel, Serra, and Vance—will be displayed in a row in positions consecutively numbered 1 through 6, one bowl per position. The display is subject to the following conditions: If Larsen's bowl is displayed, Mills's bowl cannot be displayed. Park's bowl can be displayed only if it is next to Olivera's bowl and next to Serra's bowl. Reigel's bowl can be displayed only in either position 1 or position 6. Serra's bowl cannot be displayed in either position 2 or position 4. Neiman's bowl can be displayed only in position 5.", "question": "If Larsen's bowl is displayed in position 6 and Olivera's bowl is displayed in position 2, which one of the following must be true?", "options": [ "A) Mills's bowl is displayed in position 3.", "B) Serra's bowl is displayed in position 1.", "C) Serra's bowl is displayed in position 3.", "D) Vance's bowl is displayed in position 1.", "E) Vance's bowl is displayed in position 3." ], "answer": "C" }, { "id": "ar_lsat_201512_3-G_2_9", "context": "Exactly six of eight ceramic bowls, each crafted by exactly one of eight potters—Larsen, Mills, Neiman, Olivera, Park, Reigel, Serra, and Vance—will be displayed in a row in positions consecutively numbered 1 through 6, one bowl per position. The display is subject to the following conditions: If Larsen's bowl is displayed, Mills's bowl cannot be displayed. Park's bowl can be displayed only if it is next to Olivera's bowl and next to Serra's bowl. Reigel's bowl can be displayed only in either position 1 or position 6. Serra's bowl cannot be displayed in either position 2 or position 4. Neiman's bowl can be displayed only in position 5.", "question": "If Park's bowl is displayed in position 4, then the bowl displayed in position 2 must be", "options": [ "A) Larsen's, Mills's, or Vance's", "B) Larsen's, Neiman's, or Vance's", "C) Larsen's, Serra's, or Vance's", "D) Mills's, Reigel's, or Vance's", "E) Mills's, Serra's, or Vance's" ], "answer": "A" }, { "id": "ar_lsat_201512_3-G_2_10", "context": "Exactly six of eight ceramic bowls, each crafted by exactly one of eight potters—Larsen, Mills, Neiman, Olivera, Park, Reigel, Serra, and Vance—will be displayed in a row in positions consecutively numbered 1 through 6, one bowl per position. The display is subject to the following conditions: If Larsen's bowl is displayed, Mills's bowl cannot be displayed. Park's bowl can be displayed only if it is next to Olivera's bowl and next to Serra's bowl. Reigel's bowl can be displayed only in either position 1 or position 6. Serra's bowl cannot be displayed in either position 2 or position 4. Neiman's bowl can be displayed only in position 5.", "question": "If Larsen's bowl is displayed in position 1 and Olivera's bowl is displayed in position 4, which one of the following is a potter whose bowl CANNOT be displayed?", "options": [ "A) Neiman", "B) Park", "C) Reigel", "D) Serra", "E) Vance" ], "answer": "B" }, { "id": "ar_lsat_201512_3-G_2_11", "context": "Exactly six of eight ceramic bowls, each crafted by exactly one of eight potters—Larsen, Mills, Neiman, Olivera, Park, Reigel, Serra, and Vance—will be displayed in a row in positions consecutively numbered 1 through 6, one bowl per position. The display is subject to the following conditions: If Larsen's bowl is displayed, Mills's bowl cannot be displayed. Park's bowl can be displayed only if it is next to Olivera's bowl and next to Serra's bowl. Reigel's bowl can be displayed only in either position 1 or position 6. Serra's bowl cannot be displayed in either position 2 or position 4. Neiman's bowl can be displayed only in position 5.", "question": "Which one of the following is a potter whose bowl must be displayed?", "options": [ "A) Neiman", "B) Olivera", "C) Park", "D) Reigel", "E) Vance" ], "answer": "B" }, { "id": "ar_lsat_201512_3-G_2_12", "context": "Exactly six of eight ceramic bowls, each crafted by exactly one of eight potters—Larsen, Mills, Neiman, Olivera, Park, Reigel, Serra, and Vance—will be displayed in a row in positions consecutively numbered 1 through 6, one bowl per position. The display is subject to the following conditions: If Larsen's bowl is displayed, Mills's bowl cannot be displayed. Park's bowl can be displayed only if it is next to Olivera's bowl and next to Serra's bowl. Reigel's bowl can be displayed only in either position 1 or position 6. Serra's bowl cannot be displayed in either position 2 or position 4. Neiman's bowl can be displayed only in position 5.", "question": "If Neiman's bowl, Park's bowl, and Reigel's bowl are all displayed, which one of the following must be true?", "options": [ "A) Neiman's bowl is displayed next to Reigel's bowl.", "B) Neiman's bowl is displayed next to Vance's bowl.", "C) Olivera's bowl is displayed next to Reigel's bowl.", "D) Olivera's bowl is displayed next to Vance's bowl.", "E) Serra's bowl is displayed next to Vance's bowl." ], "answer": "A" }, { "id": "ar_lsat_201512_3-G_3_13", "context": "Four employees—Jackson, Larabee, Paulson, and Torillo—are to select from among four offices—W, X, Y, and Z. The order in which they select, from first to fourth, is to be decided by a random drawing. Each employee has ranked the offices from first (highest) to fourth (lowest) as follows: Jackson: Y, X, Z, W Larabee: X, Z, W, Y Paulson: Y, Z, X, W Torillo: X, Y, Z, W The following restrictions must apply: Each employee selects an office that has not been selected previously. Each employee selects only one office. Each employee selects the office that he or she ranks highest among the unselected offices.", "question": "Which one of the following is a possible matching of employees with the offices they select?", "options": [ "A) Jackson: W; Larabee: Y; Paulson: X; Torillo: Z", "B) Jackson: Z; Larabee: X; Paulson: W; Torillo: Y", "C) Jackson: X; Larabee: W; Paulson: Z; Torillo: Y", "D) Jackson: Y; Larabee: W; Paulson: X; Torillo: Z", "E) Jackson: Y; Larabee: Z; Paulson: X; Torillo: W" ], "answer": "B" }, { "id": "ar_lsat_201512_3-G_3_14", "context": "Four employees—Jackson, Larabee, Paulson, and Torillo—are to select from among four offices—W, X, Y, and Z. The order in which they select, from first to fourth, is to be decided by a random drawing. Each employee has ranked the offices from first (highest) to fourth (lowest) as follows: Jackson: Y, X, Z, W Larabee: X, Z, W, Y Paulson: Y, Z, X, W Torillo: X, Y, Z, W The following restrictions must apply: Each employee selects an office that has not been selected previously. Each employee selects only one office. Each employee selects the office that he or she ranks highest among the unselected offices.", "question": "Which one of the following must be true?", "options": [ "A) At most one of the employees selects the office he or she ranks first.", "B) At most one of the employees selects the office he or she ranks second.", "C) At least one of the employees selects the office he or she ranks first.", "D) At least one of the employees selects the office he or she ranks second.", "E) At least one of the employees selects the office he or she ranks third." ], "answer": "C" }, { "id": "ar_lsat_201512_3-G_3_15", "context": "Four employees—Jackson, Larabee, Paulson, and Torillo—are to select from among four offices—W, X, Y, and Z. The order in which they select, from first to fourth, is to be decided by a random drawing. Each employee has ranked the offices from first (highest) to fourth (lowest) as follows: Jackson: Y, X, Z, W Larabee: X, Z, W, Y Paulson: Y, Z, X, W Torillo: X, Y, Z, W The following restrictions must apply: Each employee selects an office that has not been selected previously. Each employee selects only one office. Each employee selects the office that he or she ranks highest among the unselected offices.", "question": "Which one of the following could be true?", "options": [ "A) Exactly two of the employees each selects the office he or she ranks third.", "B) Exactly two of the employees each selects the office he or she ranks fourth.", "C) Exactly three of the employees each selects the office he or she ranks second.", "D) Exactly three of the employees each selects the office he or she ranks third.", "E) Exactly three of the employees each selects the office he or she ranks fourth." ], "answer": "A" }, { "id": "ar_lsat_201512_3-G_3_16", "context": "Four employees—Jackson, Larabee, Paulson, and Torillo—are to select from among four offices—W, X, Y, and Z. The order in which they select, from first to fourth, is to be decided by a random drawing. Each employee has ranked the offices from first (highest) to fourth (lowest) as follows: Jackson: Y, X, Z, W Larabee: X, Z, W, Y Paulson: Y, Z, X, W Torillo: X, Y, Z, W The following restrictions must apply: Each employee selects an office that has not been selected previously. Each employee selects only one office. Each employee selects the office that he or she ranks highest among the unselected offices.", "question": "If Paulson selects office W, then which one of the following could be true?", "options": [ "A) Exactly two of the employees each selects the office he or she ranks second.", "B) Exactly two of the employees each selects the office he or she ranks third.", "C) Exactly three of the employees each selects the office he or she ranks first.", "D) Jackson selects office X.", "E) Larabee selects office Z." ], "answer": "E" }, { "id": "ar_lsat_201512_3-G_3_17", "context": "Four employees—Jackson, Larabee, Paulson, and Torillo—are to select from among four offices—W, X, Y, and Z. The order in which they select, from first to fourth, is to be decided by a random drawing. Each employee has ranked the offices from first (highest) to fourth (lowest) as follows: Jackson: Y, X, Z, W Larabee: X, Z, W, Y Paulson: Y, Z, X, W Torillo: X, Y, Z, W The following restrictions must apply: Each employee selects an office that has not been selected previously. Each employee selects only one office. Each employee selects the office that he or she ranks highest among the unselected offices.", "question": "Which one of the following must be true?", "options": [ "A) Jackson does not select office X.", "B) Larabee does not select office W.", "C) Larabee does not select office Z.", "D) Torillo does not select office X.", "E) Paulson does not select office X." ], "answer": "E" }, { "id": "ar_lsat_201512_3-G_4_18", "context": "Exactly five volunteers—Haddad, Joslin, Kwon, Molina, and Nash—are being assigned to three community committees—X, Y, and Z. Each committee will have three volunteers assigned to it, with each volunteer on a committee holding exactly one of three positions—leader, secretary, or treasurer. The following conditions apply: If Nash is assigned to a committee, Nash must be the leader for that committee. Molina must be assigned to exactly one committee. Kwon must be assigned to Y but cannot be assigned to Z. Joslin must be the secretary for Y but cannot be assigned to X or Z.", "question": "Which one of the following could be the assignment of volunteers to Z?", "options": [ "A) leader: Haddad; secretary: Molina; treasurer: Joslin", "B) leader: Joslin; secretary: Haddad; treasurer: Molina", "C) leader: Kwon; secretary: Haddad; treasurer: Molina", "D) leader: Molina; secretary: Nash; treasurer: Haddad", "E) leader: Nash; secretary: Molina; treasurer: Haddad" ], "answer": "E" }, { "id": "ar_lsat_201512_3-G_4_19", "context": "Exactly five volunteers—Haddad, Joslin, Kwon, Molina, and Nash—are being assigned to three community committees—X, Y, and Z. Each committee will have three volunteers assigned to it, with each volunteer on a committee holding exactly one of three positions—leader, secretary, or treasurer. The following conditions apply: If Nash is assigned to a committee, Nash must be the leader for that committee. Molina must be assigned to exactly one committee. Kwon must be assigned to Y but cannot be assigned to Z. Joslin must be the secretary for Y but cannot be assigned to X or Z.", "question": "If Kwon is assigned to be treasurer for exactly two of the committees, then any of the following could be true EXCEPT:", "options": [ "A) Haddad is assigned to be leader for Y.", "B) Haddad is assigned to be secretary for Z.", "C) Haddad is assigned to be treasurer for X.", "D) Molina is assigned to be treasurer for Z.", "E) Nash is assigned to be leader for Y." ], "answer": "C" }, { "id": "ar_lsat_201512_3-G_4_20", "context": "Exactly five volunteers—Haddad, Joslin, Kwon, Molina, and Nash—are being assigned to three community committees—X, Y, and Z. Each committee will have three volunteers assigned to it, with each volunteer on a committee holding exactly one of three positions—leader, secretary, or treasurer. The following conditions apply: If Nash is assigned to a committee, Nash must be the leader for that committee. Molina must be assigned to exactly one committee. Kwon must be assigned to Y but cannot be assigned to Z. Joslin must be the secretary for Y but cannot be assigned to X or Z.", "question": "Each of the following must be true EXCEPT:", "options": [ "A) Haddad is assigned to X.", "B) Haddad is assigned to Y.", "C) Kwon is assigned to X.", "D) Molina is assigned to Z.", "E) Nash is assigned to X." ], "answer": "B" }, { "id": "ar_lsat_201512_3-G_4_21", "context": "Exactly five volunteers—Haddad, Joslin, Kwon, Molina, and Nash—are being assigned to three community committees—X, Y, and Z. Each committee will have three volunteers assigned to it, with each volunteer on a committee holding exactly one of three positions—leader, secretary, or treasurer. The following conditions apply: If Nash is assigned to a committee, Nash must be the leader for that committee. Molina must be assigned to exactly one committee. Kwon must be assigned to Y but cannot be assigned to Z. Joslin must be the secretary for Y but cannot be assigned to X or Z.", "question": "If Kwon is assigned to be leader for exactly one of the committees, then for which of the committees is the assignment of volunteers to positions fully determined?", "options": [ "A) X only", "B) Y only", "C) X and Y, but not Z", "D) Y and Z, but not X", "E) X and Z, but not Y" ], "answer": "B" }, { "id": "ar_lsat_201512_3-G_4_22", "context": "Exactly five volunteers—Haddad, Joslin, Kwon, Molina, and Nash—are being assigned to three community committees—X, Y, and Z. Each committee will have three volunteers assigned to it, with each volunteer on a committee holding exactly one of three positions—leader, secretary, or treasurer. The following conditions apply: If Nash is assigned to a committee, Nash must be the leader for that committee. Molina must be assigned to exactly one committee. Kwon must be assigned to Y but cannot be assigned to Z. Joslin must be the secretary for Y but cannot be assigned to X or Z.", "question": "The assignment of volunteers to committees and positions is fully determined if which one of the following is true?", "options": [ "A) Haddad is assigned to be leader for exactly one of the committees.", "B) Haddad is assigned to be secretary for exactly two of the committees.", "C) Haddad is assigned to be treasurer for all three of the committees.", "D) Kwon is assigned to be treasurer for exactly two of the committees.", "E) Nash is assigned to be leader for all three of the committees." ], "answer": "C" }, { "id": "ar_lsat_201512_3-G_4_23", "context": "Exactly five volunteers—Haddad, Joslin, Kwon, Molina, and Nash—are being assigned to three community committees—X, Y, and Z. Each committee will have three volunteers assigned to it, with each volunteer on a committee holding exactly one of three positions—leader, secretary, or treasurer. The following conditions apply: If Nash is assigned to a committee, Nash must be the leader for that committee. Molina must be assigned to exactly one committee. Kwon must be assigned to Y but cannot be assigned to Z. Joslin must be the secretary for Y but cannot be assigned to X or Z.", "question": "Which one of the following, if substituted for the condition that Molina must be assigned to exactly one committee, would have the same effect in determining the assignment of volunteers to committees?", "options": [ "A) Haddad must be assigned to more committees than Molina.", "B) Joslin must be assigned to more committees than Molina.", "C) Kwon must be assigned to more committees than Molina.", "D) Molina must be assigned to more committees than Haddad.", "E) Nash must be assigned to more committees than Molina." ], "answer": "C" }, { "id": "ar_lsat_201609_3-G_1_1", "context": "In one week—Monday through Friday—a library's bookmobile will visit five of the following six neighborhoods—Hidden Hills, Lakeville, Nottingham, Oldtown, Park Plaza, and Sunnyside. Exactly one neighborhood will be visited on each of the five days, and none of the neighborhoods will be visited on more than one day. The bookmobile's schedule must conform to the following conditions: Hidden Hills is visited, but not on Friday. If Oldtown is visited, then it is visited on the day immediately before Hidden Hills is visited. If Lakeville is visited, then it is visited on Wednesday. Nottingham and Sunnyside are both visited, but not on consecutive days.", "question": "The five neighborhoods visited by the bookmobile, listed in order from Monday through Friday, could be", "options": [ "A) Nottingham, Lakeville, Oldtown, Hidden Hills, and Sunnyside", "B) Nottingham, Oldtown, Hidden Hills, Sunnyside, and Park Plaza", "C) Oldtown, Hidden Hills, Lakeville, Nottingham, and Sunnyside", "D) Sunnyside, Oldtown, Lakeville, Hidden Hills, and Nottingham", "E) Sunnyside, Park Plaza, Nottingham, Oldtown, and Hidden Hills" ], "answer": "B" }, { "id": "ar_lsat_201609_3-G_1_2", "context": "In one week—Monday through Friday—a library's bookmobile will visit five of the following six neighborhoods—Hidden Hills, Lakeville, Nottingham, Oldtown, Park Plaza, and Sunnyside. Exactly one neighborhood will be visited on each of the five days, and none of the neighborhoods will be visited on more than one day. The bookmobile's schedule must conform to the following conditions: Hidden Hills is visited, but not on Friday. If Oldtown is visited, then it is visited on the day immediately before Hidden Hills is visited. If Lakeville is visited, then it is visited on Wednesday. Nottingham and Sunnyside are both visited, but not on consecutive days.", "question": "Which one of the following neighborhoods CANNOT be visited on Thursday?", "options": [ "A) Hidden Hills", "B) Nottingham", "C) Oldtown", "D) Park Plaza", "E) Sunnyside" ], "answer": "C" }, { "id": "ar_lsat_201609_3-G_1_3", "context": "In one week—Monday through Friday—a library's bookmobile will visit five of the following six neighborhoods—Hidden Hills, Lakeville, Nottingham, Oldtown, Park Plaza, and Sunnyside. Exactly one neighborhood will be visited on each of the five days, and none of the neighborhoods will be visited on more than one day. The bookmobile's schedule must conform to the following conditions: Hidden Hills is visited, but not on Friday. If Oldtown is visited, then it is visited on the day immediately before Hidden Hills is visited. If Lakeville is visited, then it is visited on Wednesday. Nottingham and Sunnyside are both visited, but not on consecutive days.", "question": "If Hidden Hills is visited on Monday, which one of the following must be true?", "options": [ "A) Lakeville is visited on Wednesday.", "B) Nottingham is visited on Tuesday.", "C) Park Plaza is visited on Thursday.", "D) Sunnyside is visited on Tuesday.", "E) Sunnyside is visited on Friday" ], "answer": "A" }, { "id": "ar_lsat_201609_3-G_1_4", "context": "In one week—Monday through Friday—a library's bookmobile will visit five of the following six neighborhoods—Hidden Hills, Lakeville, Nottingham, Oldtown, Park Plaza, and Sunnyside. Exactly one neighborhood will be visited on each of the five days, and none of the neighborhoods will be visited on more than one day. The bookmobile's schedule must conform to the following conditions: Hidden Hills is visited, but not on Friday. If Oldtown is visited, then it is visited on the day immediately before Hidden Hills is visited. If Lakeville is visited, then it is visited on Wednesday. Nottingham and Sunnyside are both visited, but not on consecutive days.", "question": "If Hidden Hills is visited on Wednesday, which one of the following must be true?", "options": [ "A) Nottingham is visited on Monday.", "B) Oldtown is visited on Tuesday.", "C) Park Plaza is visited on Friday.", "D) Sunnyside is visited on Monday.", "E) Sunnyside is visited on Thursday" ], "answer": "B" }, { "id": "ar_lsat_201609_3-G_1_5", "context": "In one week—Monday through Friday—a library's bookmobile will visit five of the following six neighborhoods—Hidden Hills, Lakeville, Nottingham, Oldtown, Park Plaza, and Sunnyside. Exactly one neighborhood will be visited on each of the five days, and none of the neighborhoods will be visited on more than one day. The bookmobile's schedule must conform to the following conditions: Hidden Hills is visited, but not on Friday. If Oldtown is visited, then it is visited on the day immediately before Hidden Hills is visited. If Lakeville is visited, then it is visited on Wednesday. Nottingham and Sunnyside are both visited, but not on consecutive days.", "question": "If Nottingham is visited on Thursday, which one of the following must be true?", "options": [ "A) Hidden Hills is visited on Wednesday.", "B) Lakeville is visited on Wednesday.", "C) Oldtown is visited on Monday.", "D) Park Plaza is visited on Friday.", "E) Sunnyside is visited on Tuesday." ], "answer": "D" }, { "id": "ar_lsat_201609_3-G_2_6", "context": "Six park rangers—Jefferson, Koguchi, Larson, Mendez, Olsen, and Pruitt—are each to be assigned to monitor one of three areas—area 1, area 2, and area 3—in a national park. At least one ranger, but no more than three, is assigned to each area. The assignment must conform to the following conditions: Mendez is assigned to area 3. Neither Olsen nor Pruitt is assigned to area 1. Larson is assigned to the same area as either Koguchi or Mendez but not to the same area as both. If Olsen is assigned to area 2, then Jefferson is assigned to the same area as Koguchi; otherwise, Jefferson is assigned to a different area than Koguchi.", "question": "Which one of the following is a permissible assignment of rangers to park areas?", "options": [ "A) area 1: Jefferson, Koguchi; area 2: Larson, Olsen; area 3: Mendez, Pruitt", "B) area 1: Koguchi, Larson; area 2: Olsen, Pruitt; area 3: Jefferson, Mendez", "C) area 1: Koguchi, Pruitt; area 2: Jefferson; area 3: Larson, Mendez, Olsen", "D) area 1: Jefferson, Koguchi, Larson; area 2: Mendez, Olsen; area 3: Pruitt", "E) area 1: Jefferson, Koguchi, Larson; area 2: Olsen, Pruitt; area 3: Mendez" ], "answer": "E" }, { "id": "ar_lsat_201609_3-G_2_7", "context": "Six park rangers—Jefferson, Koguchi, Larson, Mendez, Olsen, and Pruitt—are each to be assigned to monitor one of three areas—area 1, area 2, and area 3—in a national park. At least one ranger, but no more than three, is assigned to each area. The assignment must conform to the following conditions: Mendez is assigned to area 3. Neither Olsen nor Pruitt is assigned to area 1. Larson is assigned to the same area as either Koguchi or Mendez but not to the same area as both. If Olsen is assigned to area 2, then Jefferson is assigned to the same area as Koguchi; otherwise, Jefferson is assigned to a different area than Koguchi.", "question": "If Olsen is the sole ranger assigned to area 2, then which one of the following could be the complete assignment of rangers to area 3?", "options": [ "A) Mendez", "B) Larson, Mendez", "C) Mendez, Pruitt", "D) Jefferson, Koguchi, Mendez", "E) Jefferson, Mendez, Pruitt" ], "answer": "C" }, { "id": "ar_lsat_201609_3-G_2_8", "context": "Six park rangers—Jefferson, Koguchi, Larson, Mendez, Olsen, and Pruitt—are each to be assigned to monitor one of three areas—area 1, area 2, and area 3—in a national park. At least one ranger, but no more than three, is assigned to each area. The assignment must conform to the following conditions: Mendez is assigned to area 3. Neither Olsen nor Pruitt is assigned to area 1. Larson is assigned to the same area as either Koguchi or Mendez but not to the same area as both. If Olsen is assigned to area 2, then Jefferson is assigned to the same area as Koguchi; otherwise, Jefferson is assigned to a different area than Koguchi.", "question": "If exactly one ranger is assigned to area 1, then which one of the following must be true?", "options": [ "A) Jefferson is assigned to area 1.", "B) Koguchi is assigned to area 2.", "C) Larson is assigned to area 3.", "D) Olsen is assigned to area 3.", "E) Pruitt is assigned to area 2." ], "answer": "D" }, { "id": "ar_lsat_201609_3-G_2_9", "context": "Six park rangers—Jefferson, Koguchi, Larson, Mendez, Olsen, and Pruitt—are each to be assigned to monitor one of three areas—area 1, area 2, and area 3—in a national park. At least one ranger, but no more than three, is assigned to each area. The assignment must conform to the following conditions: Mendez is assigned to area 3. Neither Olsen nor Pruitt is assigned to area 1. Larson is assigned to the same area as either Koguchi or Mendez but not to the same area as both. If Olsen is assigned to area 2, then Jefferson is assigned to the same area as Koguchi; otherwise, Jefferson is assigned to a different area than Koguchi.", "question": "Which one of the following rangers CANNOT be assigned to area 3?", "options": [ "A) Pruitt", "B) Olsen", "C) Larson", "D) Koguchi", "E) Jefferson" ], "answer": "D" }, { "id": "ar_lsat_201609_3-G_2_10", "context": "Six park rangers—Jefferson, Koguchi, Larson, Mendez, Olsen, and Pruitt—are each to be assigned to monitor one of three areas—area 1, area 2, and area 3—in a national park. At least one ranger, but no more than three, is assigned to each area. The assignment must conform to the following conditions: Mendez is assigned to area 3. Neither Olsen nor Pruitt is assigned to area 1. Larson is assigned to the same area as either Koguchi or Mendez but not to the same area as both. If Olsen is assigned to area 2, then Jefferson is assigned to the same area as Koguchi; otherwise, Jefferson is assigned to a different area than Koguchi.", "question": "If Koguchi is assigned to area 2, then which one of the following could be true?", "options": [ "A) Jefferson is assigned to area 2.", "B) Jefferson is assigned to area 3.", "C) Larson is assigned to area 1.", "D) Olsen is assigned to area 2.", "E) Pruitt is assigned to area 3" ], "answer": "E" }, { "id": "ar_lsat_201609_3-G_2_11", "context": "Six park rangers—Jefferson, Koguchi, Larson, Mendez, Olsen, and Pruitt—are each to be assigned to monitor one of three areas—area 1, area 2, and area 3—in a national park. At least one ranger, but no more than three, is assigned to each area. The assignment must conform to the following conditions: Mendez is assigned to area 3. Neither Olsen nor Pruitt is assigned to area 1. Larson is assigned to the same area as either Koguchi or Mendez but not to the same area as both. If Olsen is assigned to area 2, then Jefferson is assigned to the same area as Koguchi; otherwise, Jefferson is assigned to a different area than Koguchi.", "question": "If Larson and Olsen are assigned to the same area, then which one of the following could be true?", "options": [ "A) Jefferson is assigned to area 3.", "B) Koguchi is assigned to area 2.", "C) Larson is assigned to area 1.", "D) Olsen is assigned to area 2.", "E) Pruitt is assigned to area 3" ], "answer": "B" }, { "id": "ar_lsat_201609_3-G_2_12", "context": "Six park rangers—Jefferson, Koguchi, Larson, Mendez, Olsen, and Pruitt—are each to be assigned to monitor one of three areas—area 1, area 2, and area 3—in a national park. At least one ranger, but no more than three, is assigned to each area. The assignment must conform to the following conditions: Mendez is assigned to area 3. Neither Olsen nor Pruitt is assigned to area 1. Larson is assigned to the same area as either Koguchi or Mendez but not to the same area as both. If Olsen is assigned to area 2, then Jefferson is assigned to the same area as Koguchi; otherwise, Jefferson is assigned to a different area than Koguchi.", "question": "If Jefferson is assigned to area 2, then which one of the following must be true?", "options": [ "A) Koguchi is assigned to area 1.", "B) Larson is assigned to area 1.", "C) Olsen is assigned to area 2.", "D) Pruitt is assigned to area 2.", "E) Pruitt is assigned to area 3" ], "answer": "A" }, { "id": "ar_lsat_201609_3-G_3_13", "context": "An economics department is assigning six teaching assistants—Ramos, Smith, Taj, Vogel, Yi, and Zane—to three courses—Labor, Markets, and Pricing. Each assistant will be assigned to exactly one course, and each course will have at least one assistant assigned to it. The assignment of assistants to courses is subject to the following conditions: Markets must have exactly two assistants assigned to it. Smith and Taj must be assigned to the same course as each other. Vogel and Yi cannot be assigned to the same course as each other. Yi and Zane must both be assigned to Pricing if either one of them is.", "question": "Which one of the following could be the complete assignment of assistants to Pricing?", "options": [ "A) Ramos, Yi, and Zane", "B) Smith, Taj, and Yi", "C) Smith, Taj, Yi, and Zane", "D) Taj, Yi, and Zane", "E) Vogel, Yi, and Zane" ], "answer": "A" }, { "id": "ar_lsat_201609_3-G_3_14", "context": "An economics department is assigning six teaching assistants—Ramos, Smith, Taj, Vogel, Yi, and Zane—to three courses—Labor, Markets, and Pricing. Each assistant will be assigned to exactly one course, and each course will have at least one assistant assigned to it. The assignment of assistants to courses is subject to the following conditions: Markets must have exactly two assistants assigned to it. Smith and Taj must be assigned to the same course as each other. Vogel and Yi cannot be assigned to the same course as each other. Yi and Zane must both be assigned to Pricing if either one of them is.", "question": "Which one of the following CANNOT be the complete assignment of assistants to Labor?", "options": [ "A) Ramos, Vogel", "B) Ramos, Zane", "C) Smith, Taj", "D) Vogel, Zane", "E) Yi, Zane" ], "answer": "B" }, { "id": "ar_lsat_201609_3-G_3_15", "context": "An economics department is assigning six teaching assistants—Ramos, Smith, Taj, Vogel, Yi, and Zane—to three courses—Labor, Markets, and Pricing. Each assistant will be assigned to exactly one course, and each course will have at least one assistant assigned to it. The assignment of assistants to courses is subject to the following conditions: Markets must have exactly two assistants assigned to it. Smith and Taj must be assigned to the same course as each other. Vogel and Yi cannot be assigned to the same course as each other. Yi and Zane must both be assigned to Pricing if either one of them is.", "question": "Which one of the following could be true?", "options": [ "A) Ramos and Vogel are both assigned to Markets.", "B) Ramos and Taj are both assigned to Markets.", "C) Smith and Vogel are both assigned to Markets.", "D) Smith and Zane are both assigned to Pricing.", "E) Vogel and Zane are both assigned to Pricing." ], "answer": "A" }, { "id": "ar_lsat_201609_3-G_3_16", "context": "An economics department is assigning six teaching assistants—Ramos, Smith, Taj, Vogel, Yi, and Zane—to three courses—Labor, Markets, and Pricing. Each assistant will be assigned to exactly one course, and each course will have at least one assistant assigned to it. The assignment of assistants to courses is subject to the following conditions: Markets must have exactly two assistants assigned to it. Smith and Taj must be assigned to the same course as each other. Vogel and Yi cannot be assigned to the same course as each other. Yi and Zane must both be assigned to Pricing if either one of them is.", "question": "If Vogel is assigned to the same course as Zane, which one of the following CANNOT be true?", "options": [ "A) Ramos is assigned to Labor.", "B) Smith is assigned to Labor.", "C) Taj is assigned to Markets.", "D) Ramos is assigned to Pricing.", "E) Smith is assigned to Pricing." ], "answer": "C" }, { "id": "ar_lsat_201609_3-G_3_17", "context": "An economics department is assigning six teaching assistants—Ramos, Smith, Taj, Vogel, Yi, and Zane—to three courses—Labor, Markets, and Pricing. Each assistant will be assigned to exactly one course, and each course will have at least one assistant assigned to it. The assignment of assistants to courses is subject to the following conditions: Markets must have exactly two assistants assigned to it. Smith and Taj must be assigned to the same course as each other. Vogel and Yi cannot be assigned to the same course as each other. Yi and Zane must both be assigned to Pricing if either one of them is.", "question": "If no other assistant is assigned to the same course as Ramos, which one of the following must be true?", "options": [ "A) Taj is assigned to Labor.", "B) Vogel is assigned to Labor.", "C) Yi is assigned to Markets.", "D) Zane is assigned to Markets.", "E) Smith is assigned to Pricing" ], "answer": "D" }, { "id": "ar_lsat_201609_3-G_4_18", "context": "There are exactly six computers—P, Q, R, S, T, and U—on a small network. Exactly one of those computers was infected by a virus from outside the network, and that virus was then transmitted between computers on the network. Each computer received the virus exactly once. The following pieces of information concerning the spread of the virus have been established: No computer transmitted the virus to more than two other computers on the network. S transmitted the virus to exactly one other computer on the network. The computer that transmitted the virus to R also transmitted it to S. Either R or T transmitted the virus to Q. Either T or U transmitted the virus to P.", "question": "One possible route of the virus from the first computer in the network infected to Q is", "options": [ "A) from R to P to T to Q", "B) from T to S to R to Q", "C) from T to S to U to Q", "D) from U to P to R to Q", "E) from U to T to P to R to Q" ], "answer": "D" }, { "id": "ar_lsat_201609_3-G_4_19", "context": "There are exactly six computers—P, Q, R, S, T, and U—on a small network. Exactly one of those computers was infected by a virus from outside the network, and that virus was then transmitted between computers on the network. Each computer received the virus exactly once. The following pieces of information concerning the spread of the virus have been established: No computer transmitted the virus to more than two other computers on the network. S transmitted the virus to exactly one other computer on the network. The computer that transmitted the virus to R also transmitted it to S. Either R or T transmitted the virus to Q. Either T or U transmitted the virus to P.", "question": "Which one of the following could be the computer that was infected from outside the network?", "options": [ "A) P", "B) Q", "C) R", "D) S", "E) T" ], "answer": "E" }, { "id": "ar_lsat_201609_3-G_4_20", "context": "There are exactly six computers—P, Q, R, S, T, and U—on a small network. Exactly one of those computers was infected by a virus from outside the network, and that virus was then transmitted between computers on the network. Each computer received the virus exactly once. The following pieces of information concerning the spread of the virus have been established: No computer transmitted the virus to more than two other computers on the network. S transmitted the virus to exactly one other computer on the network. The computer that transmitted the virus to R also transmitted it to S. Either R or T transmitted the virus to Q. Either T or U transmitted the virus to P.", "question": "If T did not transmit the virus to any other computer on the network, which one of the following must be true?", "options": [ "A) P transmitted the virus to S.", "B) Q transmitted the virus to R.", "C) U transmitted the virus to S.", "D) P did not transmit the virus to any other computer on the network.", "E) R did not transmit the virus to any other computer on the network." ], "answer": "A" }, { "id": "ar_lsat_201609_3-G_4_21", "context": "There are exactly six computers—P, Q, R, S, T, and U—on a small network. Exactly one of those computers was infected by a virus from outside the network, and that virus was then transmitted between computers on the network. Each computer received the virus exactly once. The following pieces of information concerning the spread of the virus have been established: No computer transmitted the virus to more than two other computers on the network. S transmitted the virus to exactly one other computer on the network. The computer that transmitted the virus to R also transmitted it to S. Either R or T transmitted the virus to Q. Either T or U transmitted the virus to P.", "question": "Any of the following computers could have transmitted the virus to two other computers on the network EXCEPT:", "options": [ "A) P", "B) Q", "C) R", "D) T", "E) U" ], "answer": "C" }, { "id": "ar_lsat_201609_3-G_4_22", "context": "There are exactly six computers—P, Q, R, S, T, and U—on a small network. Exactly one of those computers was infected by a virus from outside the network, and that virus was then transmitted between computers on the network. Each computer received the virus exactly once. The following pieces of information concerning the spread of the virus have been established: No computer transmitted the virus to more than two other computers on the network. S transmitted the virus to exactly one other computer on the network. The computer that transmitted the virus to R also transmitted it to S. Either R or T transmitted the virus to Q. Either T or U transmitted the virus to P.", "question": "The spread of the virus among the computers is completely determined if which one of the following is true?", "options": [ "A) R transmitted the virus to Q.", "B) T transmitted the virus to Q.", "C) T transmitted the virus to S.", "D) U transmitted the virus to P.", "E) U transmitted the virus to R" ], "answer": "C" }, { "id": "ar_lsat_201609_3-G_4_23", "context": "There are exactly six computers—P, Q, R, S, T, and U—on a small network. Exactly one of those computers was infected by a virus from outside the network, and that virus was then transmitted between computers on the network. Each computer received the virus exactly once. The following pieces of information concerning the spread of the virus have been established: No computer transmitted the virus to more than two other computers on the network. S transmitted the virus to exactly one other computer on the network. The computer that transmitted the virus to R also transmitted it to S. Either R or T transmitted the virus to Q. Either T or U transmitted the virus to P.", "question": "If P is the only computer that transmitted the virus to two other computers on the network, which one of the following must be true?", "options": [ "A) S transmitted the virus to T.", "B) T transmitted the virus to P.", "C) Q did not transmit the virus to any other computer on the network.", "D) R did not transmit the virus to any other computer on the network.", "E) U did not transmit the virus to any other computer on the network." ], "answer": "C" } ] ================================================ FILE: data/AR-LSAT/test.json ================================================ [ { "id": "ar_lsat_200010_3-G_1_1", "context": "Of the eight students—George, Helen, Irving, Kyle, Lenore, Nina, Olivia, and Robert—in a seminar, exactly six will give individual oral reports during three consecutive days—Monday, Tuesday, and Wednesday. Exactly two reports will be given each day—one in the morning and one in the afternoon—according to the following conditions: Tuesday is the only day on which George can give a report. Neither Olivia nor Robert can give an afternoon report. If Nina gives a report, then on the next day Helen and Irving must both give reports, unless Nina's report is given on Wednesday.", "question": "Which one of the following could be the schedule of the students' reports?", "options": [ "A) Mon. morning: Helen; Mon. afternoon: Robert Tues. morning: Olivia; Tues. afternoon: Irving Wed. morning: Lenore; Wed. afternoon: Kyle", "B) Mon. morning: Irving; Mon. afternoon: Olivia Tues. morning: Helen; Tues. afternoon: Kyle Wed. morning: Nina; Wed. afternoon: Lenore", "C) Mon. morning: Lenore; Mon. afternoon: Helen Tues. morning: George; Tues. afternoon: Kyle Wed. morning: Robert; Wed. afternoon: Irving", "D) Mon. morning: Nina; Mon. afternoon: Helen Tues. morning: Robert; Tues. afternoon: Irving Wed. morning: Olivia; Wed. afternoon: Lenore", "E) Mon. morning: Olivia; Mon. afternoon: Nina Tues. morning: Irving; Tues. afternoon: Helen Wed. morning: Kyle; Wed. afternoon: George" ], "answer": "C" }, { "id": "ar_lsat_200010_3-G_1_2", "context": "Of the eight students—George, Helen, Irving, Kyle, Lenore, Nina, Olivia, and Robert—in a seminar, exactly six will give individual oral reports during three consecutive days—Monday, Tuesday, and Wednesday. Exactly two reports will be given each day—one in the morning and one in the afternoon—according to the following conditions: Tuesday is the only day on which George can give a report. Neither Olivia nor Robert can give an afternoon report. If Nina gives a report, then on the next day Helen and Irving must both give reports, unless Nina's report is given on Wednesday.", "question": "If Kyle and Lenore do not give reports, then the morning reports on Monday, Tuesday, and Wednesday, respectively, could be given by", "options": [ "A) Helen, George, and Nina", "B) Irving, Robert, and Helen", "C) Nina, Helen, and Olivia", "D) Olivia, Robert, and Irving", "E) Robert, George, and Helen" ], "answer": "D" }, { "id": "ar_lsat_200010_3-G_1_3", "context": "Of the eight students—George, Helen, Irving, Kyle, Lenore, Nina, Olivia, and Robert—in a seminar, exactly six will give individual oral reports during three consecutive days—Monday, Tuesday, and Wednesday. Exactly two reports will be given each day—one in the morning and one in the afternoon—according to the following conditions: Tuesday is the only day on which George can give a report. Neither Olivia nor Robert can give an afternoon report. If Nina gives a report, then on the next day Helen and Irving must both give reports, unless Nina's report is given on Wednesday.", "question": "Which one of the following is a pair of students who, if they give reports on the same day as each other, must give reports on Wednesday?", "options": [ "A) George and Lenore", "B) Helen and Nina", "C) Irving and Robert", "D) Kyle and Nina", "E) Olivia and Kyle" ], "answer": "B" }, { "id": "ar_lsat_200010_3-G_1_4", "context": "Of the eight students—George, Helen, Irving, Kyle, Lenore, Nina, Olivia, and Robert—in a seminar, exactly six will give individual oral reports during three consecutive days—Monday, Tuesday, and Wednesday. Exactly two reports will be given each day—one in the morning and one in the afternoon—according to the following conditions: Tuesday is the only day on which George can give a report. Neither Olivia nor Robert can give an afternoon report. If Nina gives a report, then on the next day Helen and Irving must both give reports, unless Nina's report is given on Wednesday.", "question": "If George, Nina, and Robert give reports and they do so on different days from one another, which one of the following could be true?", "options": [ "A) Helen gives a report on Wednesday.", "B) Nina gives a report on Monday.", "C) Nina gives a report on Tuesday.", "D) Olivia gives a report on Monday.", "E) Robert gives a report on Wednesday." ], "answer": "A" }, { "id": "ar_lsat_200010_3-G_1_5", "context": "Of the eight students—George, Helen, Irving, Kyle, Lenore, Nina, Olivia, and Robert—in a seminar, exactly six will give individual oral reports during three consecutive days—Monday, Tuesday, and Wednesday. Exactly two reports will be given each day—one in the morning and one in the afternoon—according to the following conditions: Tuesday is the only day on which George can give a report. Neither Olivia nor Robert can give an afternoon report. If Nina gives a report, then on the next day Helen and Irving must both give reports, unless Nina's report is given on Wednesday.", "question": "If Kyle gives the afternoon report on Tuesday, and Helen gives the afternoon report on Wednesday, which one of the following could be the list of the students who give the morning reports on Monday, Tuesday, and Wednesday, respectively?", "options": [ "A) Irving, Lenore, and Nina", "B) Lenore, George, and Irving", "C) Nina, Irving, and Lenore", "D) Robert, George, and Irving", "E) Robert, Irving, and Lenore" ], "answer": "D" }, { "id": "ar_lsat_200010_3-G_1_6", "context": "Of the eight students—George, Helen, Irving, Kyle, Lenore, Nina, Olivia, and Robert—in a seminar, exactly six will give individual oral reports during three consecutive days—Monday, Tuesday, and Wednesday. Exactly two reports will be given each day—one in the morning and one in the afternoon—according to the following conditions: Tuesday is the only day on which George can give a report. Neither Olivia nor Robert can give an afternoon report. If Nina gives a report, then on the next day Helen and Irving must both give reports, unless Nina's report is given on Wednesday.", "question": "If Helen, Kyle, and Lenore, not necessarily in that order, give the three morning reports, which one of the following must be true?", "options": [ "A) Helen gives a report on Monday.", "B) Irving gives a report on Monday.", "C) Irving gives a report on Wednesday.", "D) Kyle gives a report on Tuesday.", "E) Kyle gives a report on Wednesday." ], "answer": "B" }, { "id": "ar_lsat_200010_3-G_2_7", "context": "The organizer of a reading club will select at least five and at most six works from a group of nine works. The group consists of three French novels, three Russian novels, two French plays, and one Russian play. The organizer's selection of works must conform to the following requirements: No more than four French works are selected. At least three but no more than four novels are selected. At least as many French novels as Russian novels are selected. If both French plays are selected, then the Russian play is not selected.", "question": "Which one of the following could be the organizer's selection of works?", "options": [ "A) one French novel, two Russian novels, one French play, one Russian play", "B) two French novels, one Russian novel, two French plays, one Russian play", "C) two French novels, two Russian novels, two French plays", "D) three French novels, one Russian novel, two French plays", "E) three French novels, two Russian novels, one Russian play" ], "answer": "C" }, { "id": "ar_lsat_200010_3-G_2_8", "context": "The organizer of a reading club will select at least five and at most six works from a group of nine works. The group consists of three French novels, three Russian novels, two French plays, and one Russian play. The organizer's selection of works must conform to the following requirements: No more than four French works are selected. At least three but no more than four novels are selected. At least as many French novels as Russian novels are selected. If both French plays are selected, then the Russian play is not selected.", "question": "Which one of the following could be true about the organizer's selection of works?", "options": [ "A) No Russian novels are selected.", "B) Exactly one French novel is selected.", "C) All three plays are selected.", "D) All three Russian novels are selected.", "E) All five French works are selected." ], "answer": "A" }, { "id": "ar_lsat_200010_3-G_2_9", "context": "The organizer of a reading club will select at least five and at most six works from a group of nine works. The group consists of three French novels, three Russian novels, two French plays, and one Russian play. The organizer's selection of works must conform to the following requirements: No more than four French works are selected. At least three but no more than four novels are selected. At least as many French novels as Russian novels are selected. If both French plays are selected, then the Russian play is not selected.", "question": "If the works selected include three French novels, which one of the following could be a complete and accurate list of the remaining works selected?", "options": [ "A) one Russian novel", "B) two French plays", "C) one Russian novel, one Russian play", "D) one Russian novel, two French plays", "E) two Russian novels, one French play" ], "answer": "C" }, { "id": "ar_lsat_200010_3-G_2_10", "context": "The organizer of a reading club will select at least five and at most six works from a group of nine works. The group consists of three French novels, three Russian novels, two French plays, and one Russian play. The organizer's selection of works must conform to the following requirements: No more than four French works are selected. At least three but no more than four novels are selected. At least as many French novels as Russian novels are selected. If both French plays are selected, then the Russian play is not selected.", "question": "The organizer must at least select", "options": [ "A) one French novel and one French play", "B) one French novel and one Russian play", "C) one Russian novel and one French play", "D) two French novels", "E) two Russian novels" ], "answer": "D" }, { "id": "ar_lsat_200010_3-G_2_11", "context": "The organizer of a reading club will select at least five and at most six works from a group of nine works. The group consists of three French novels, three Russian novels, two French plays, and one Russian play. The organizer's selection of works must conform to the following requirements: No more than four French works are selected. At least three but no more than four novels are selected. At least as many French novels as Russian novels are selected. If both French plays are selected, then the Russian play is not selected.", "question": "Any one of the following could be true about the organizer's selections of works EXCEPT:", "options": [ "A) No Russian novels and exactly one play are selected.", "B) Exactly one Russian novel and both French plays are selected.", "C) Exactly two French novels and the Russian play are selected.", "D) Exactly two French novels and exactly two plays are selected.", "E) Exactly two Russian novels and exactly one play are selected." ], "answer": "A" }, { "id": "ar_lsat_200010_3-G_3_12", "context": "At a concert, exactly eight compositions—F, H, L, O, P, R, S, and T—are to be performed exactly once each, consecutively and one composition at a time. The order of their performance must satisfy the following conditions: T is performed either immediately before F or immediately after R. At least two compositions are performed either after F and before R, or after R and before F. O is performed either first or fifth. The eighth composition performed is either L or H. P is performed at some time before S. At least one composition is performed either after O and before S, or after S and before O.", "question": "Which one of the following lists the compositions in an order in which they could be performed during the concert, from first through eighth?", "options": [ "A) L, P, S, R, O, T, F, H", "B) O, T, P, F, S, H, R, L", "C) P, T, F, S, L, R, O, H", "D) P, T, F, S, O, R, L, H", "E) T, F, P, R, O, L, S, H" ], "answer": "A" }, { "id": "ar_lsat_200010_3-G_3_13", "context": "At a concert, exactly eight compositions—F, H, L, O, P, R, S, and T—are to be performed exactly once each, consecutively and one composition at a time. The order of their performance must satisfy the following conditions: T is performed either immediately before F or immediately after R. At least two compositions are performed either after F and before R, or after R and before F. O is performed either first or fifth. The eighth composition performed is either L or H. P is performed at some time before S. At least one composition is performed either after O and before S, or after S and before O.", "question": "P CANNOT be performed", "options": [ "A) second", "B) third", "C) fourth", "D) sixth", "E) seventh" ], "answer": "E" }, { "id": "ar_lsat_200010_3-G_3_14", "context": "At a concert, exactly eight compositions—F, H, L, O, P, R, S, and T—are to be performed exactly once each, consecutively and one composition at a time. The order of their performance must satisfy the following conditions: T is performed either immediately before F or immediately after R. At least two compositions are performed either after F and before R, or after R and before F. O is performed either first or fifth. The eighth composition performed is either L or H. P is performed at some time before S. At least one composition is performed either after O and before S, or after S and before O.", "question": "If T is performed fifth and F is performed sixth, then S must be performed either", "options": [ "A) fourth or seventh", "B) third or sixth", "C) third or fourth", "D) second or seventh", "E) first or fourth" ], "answer": "A" }, { "id": "ar_lsat_200010_3-G_3_15", "context": "At a concert, exactly eight compositions—F, H, L, O, P, R, S, and T—are to be performed exactly once each, consecutively and one composition at a time. The order of their performance must satisfy the following conditions: T is performed either immediately before F or immediately after R. At least two compositions are performed either after F and before R, or after R and before F. O is performed either first or fifth. The eighth composition performed is either L or H. P is performed at some time before S. At least one composition is performed either after O and before S, or after S and before O.", "question": "If O is performed immediately after T, then F must be performed either", "options": [ "A) first or second", "B) second or third", "C) fourth or sixth", "D) fourth or seventh", "E) sixth or seventh" ], "answer": "E" }, { "id": "ar_lsat_200010_3-G_3_16", "context": "At a concert, exactly eight compositions—F, H, L, O, P, R, S, and T—are to be performed exactly once each, consecutively and one composition at a time. The order of their performance must satisfy the following conditions: T is performed either immediately before F or immediately after R. At least two compositions are performed either after F and before R, or after R and before F. O is performed either first or fifth. The eighth composition performed is either L or H. P is performed at some time before S. At least one composition is performed either after O and before S, or after S and before O.", "question": "If S is performed fourth, which one of the following could be an accurate list of the compositions performed first, second, and third, respectively?", "options": [ "A) F, H, P", "B) H, P. L", "C) O, P, R", "D) O, P, T", "E) P, R, T" ], "answer": "C" }, { "id": "ar_lsat_200010_3-G_3_17", "context": "At a concert, exactly eight compositions—F, H, L, O, P, R, S, and T—are to be performed exactly once each, consecutively and one composition at a time. The order of their performance must satisfy the following conditions: T is performed either immediately before F or immediately after R. At least two compositions are performed either after F and before R, or after R and before F. O is performed either first or fifth. The eighth composition performed is either L or H. P is performed at some time before S. At least one composition is performed either after O and before S, or after S and before O.", "question": "If P is performed third and S is performed sixth, the composition performed fifth must be either", "options": [ "A) F or H", "B) F or O", "C) F or T", "D) H or L", "E) O or R" ], "answer": "C" }, { "id": "ar_lsat_200010_3-G_3_18", "context": "At a concert, exactly eight compositions—F, H, L, O, P, R, S, and T—are to be performed exactly once each, consecutively and one composition at a time. The order of their performance must satisfy the following conditions: T is performed either immediately before F or immediately after R. At least two compositions are performed either after F and before R, or after R and before F. O is performed either first or fifth. The eighth composition performed is either L or H. P is performed at some time before S. At least one composition is performed either after O and before S, or after S and before O.", "question": "If exactly two compositions are performed after F but before O, then R must be performed", "options": [ "A) first", "B) third", "C) fourth", "D) sixth", "E) seventh" ], "answer": "D" }, { "id": "ar_lsat_200010_3-G_4_19", "context": "On each of exactly seven consecutive days (day 1 though day 7), a pet shop features exactly one of three breeds of kitten—Himalayan, Manx, Siamese—and exactly one of three breeds of puppy—Greyhound, Newfoundland, Rottweiler. The following conditions must apply: Greyhounds are featured on day 1. No breed is featured on any two consecutive days. Any breed featured on day 1 is not featured on day 7. Himalayans are featured on exactly three days, but not on day 1. Rottweilers are not featured on day 7, nor on any day that features Himalayans.", "question": "Which one of the following could be the order in which the breeds of kitten are featured in the pet shop, from day 1 though day 7?", "options": [ "A) Himalayan, Manx, Siamese, Himalayan, Manx, Himalayan, Siamese", "B) Manx, Himalayan, Siamese, Himalayan, Manx Himalayan, Manx", "C) Manx, Himalayan, Manx, Himalayan, Siamese, Manx, Siamese", "D) Siamese, Himalayan, Manx, Himalayan, Siamese, Siamese, Himalayan", "E) Siamese, Himalayan, Siamese, Himalayan, Manx, Siamese, Himalayan" ], "answer": "E" }, { "id": "ar_lsat_200010_3-G_4_20", "context": "On each of exactly seven consecutive days (day 1 though day 7), a pet shop features exactly one of three breeds of kitten—Himalayan, Manx, Siamese—and exactly one of three breeds of puppy—Greyhound, Newfoundland, Rottweiler. The following conditions must apply: Greyhounds are featured on day 1. No breed is featured on any two consecutive days. Any breed featured on day 1 is not featured on day 7. Himalayans are featured on exactly three days, but not on day 1. Rottweilers are not featured on day 7, nor on any day that features Himalayans.", "question": "If Himalayans are not featured on day 2, which one of the following could be true?", "options": [ "A) Manx are featured on day 3.", "B) Siamese are featured on day 4.", "C) Rottweilers are featured on day 5.", "D) Himalayans are featured on day 6.", "E) Greyhounds are featured on day 7." ], "answer": "B" }, { "id": "ar_lsat_200010_3-G_4_21", "context": "On each of exactly seven consecutive days (day 1 though day 7), a pet shop features exactly one of three breeds of kitten—Himalayan, Manx, Siamese—and exactly one of three breeds of puppy—Greyhound, Newfoundland, Rottweiler. The following conditions must apply: Greyhounds are featured on day 1. No breed is featured on any two consecutive days. Any breed featured on day 1 is not featured on day 7. Himalayans are featured on exactly three days, but not on day 1. Rottweilers are not featured on day 7, nor on any day that features Himalayans.", "question": "Which one of the following could be true?", "options": [ "A) Greyhounds and Siamese are both featured on day 2.", "B) Greyhounds and Himalayans are both featured on day 7.", "C) Rottweilers and Himalayans are both featured on day 4.", "D) Rottweilers and Manx are both featured on day 5.", "E) Newfoundlands and Manx are both featured on day 6." ], "answer": "D" }, { "id": "ar_lsat_200010_3-G_4_22", "context": "On each of exactly seven consecutive days (day 1 though day 7), a pet shop features exactly one of three breeds of kitten—Himalayan, Manx, Siamese—and exactly one of three breeds of puppy—Greyhound, Newfoundland, Rottweiler. The following conditions must apply: Greyhounds are featured on day 1. No breed is featured on any two consecutive days. Any breed featured on day 1 is not featured on day 7. Himalayans are featured on exactly three days, but not on day 1. Rottweilers are not featured on day 7, nor on any day that features Himalayans.", "question": "If Himalayans are not featured on day 7, then which one of the following pairs of days CANNOT feature both the same breed of kitten and the same breed of puppy?", "options": [ "A) day 1 and day 3", "B) day 2 and day 6", "C) day 3 and day 5", "D) day 4 and day 6", "E) day 5 and day 7" ], "answer": "B" }, { "id": "ar_lsat_200010_3-G_4_23", "context": "On each of exactly seven consecutive days (day 1 though day 7), a pet shop features exactly one of three breeds of kitten—Himalayan, Manx, Siamese—and exactly one of three breeds of puppy—Greyhound, Newfoundland, Rottweiler. The following conditions must apply: Greyhounds are featured on day 1. No breed is featured on any two consecutive days. Any breed featured on day 1 is not featured on day 7. Himalayans are featured on exactly three days, but not on day 1. Rottweilers are not featured on day 7, nor on any day that features Himalayans.", "question": "Which one of the following could be true?", "options": [ "A) There are exactly four breeds that are each featured on three days.", "B) Greyhounds are featured on every day that Himalayans are.", "C) Himalayans are featured on every day that Greyhounds are.", "D) Himalayans are featured on every day that Rottweilers are not.", "E) Rottweilers are featured on every day that Himalayans are not." ], "answer": "A" }, { "id": "ar_lsat_200010_3-G_4_24", "context": "On each of exactly seven consecutive days (day 1 though day 7), a pet shop features exactly one of three breeds of kitten—Himalayan, Manx, Siamese—and exactly one of three breeds of puppy—Greyhound, Newfoundland, Rottweiler. The following conditions must apply: Greyhounds are featured on day 1. No breed is featured on any two consecutive days. Any breed featured on day 1 is not featured on day 7. Himalayans are featured on exactly three days, but not on day 1. Rottweilers are not featured on day 7, nor on any day that features Himalayans.", "question": "If Himalayans are not featured on day 7, which one of the following could be true?", "options": [ "A) Greyhounds are featured on days 3 and 5.", "B) Newfoundlands are featured on day 3.", "C) Rottweilers are featured on day 6.", "D) Rottweilers are featured only on day 3.", "E) Rottweilers are featured on exactly three days." ], "answer": "D" }, { "id": "ar_lsat_200312_1-G_1_1", "context": "A panel of five scientists will be formed. The panelists will be selected from among three botanists—F, G, and H—three chemists—K, L, and M—and three zoologists—P, Q, and R. Selection is governed by the following conditions: The panel must include at least one scientist of each of the three types. If more than one botanist is selected, then at most one zoologist is selected. F and K cannot both be selected. K and M cannot both be selected. If M is selected, both P and R must be selected.", "question": "Which one of the following is an acceptable selection of scientists for the panel?", "options": [ "A) F, G, K, P, Q", "B) G, H, K, L, M", "C) G, H, K, L, R", "D) H, K, M, P, R", "E) H, L, M, P, Q" ], "answer": "C" }, { "id": "ar_lsat_200312_1-G_1_2", "context": "A panel of five scientists will be formed. The panelists will be selected from among three botanists—F, G, and H—three chemists—K, L, and M—and three zoologists—P, Q, and R. Selection is governed by the following conditions: The panel must include at least one scientist of each of the three types. If more than one botanist is selected, then at most one zoologist is selected. F and K cannot both be selected. K and M cannot both be selected. If M is selected, both P and R must be selected.", "question": "If M is the only chemist selected for the panel, which one of the following must be true?", "options": [ "A) F and G are both selected.", "B) G and H are both selected.", "C) H and P are both selected.", "D) F, G, and H are all selected.", "E) P, Q, and R are all selected." ], "answer": "E" }, { "id": "ar_lsat_200312_1-G_1_3", "context": "A panel of five scientists will be formed. The panelists will be selected from among three botanists—F, G, and H—three chemists—K, L, and M—and three zoologists—P, Q, and R. Selection is governed by the following conditions: The panel must include at least one scientist of each of the three types. If more than one botanist is selected, then at most one zoologist is selected. F and K cannot both be selected. K and M cannot both be selected. If M is selected, both P and R must be selected.", "question": "If four of the scientists selected are F, L, Q, and R, which one of the following must be the fifth scientist selected?", "options": [ "A) G", "B) H", "C) K", "D) M", "E) P" ], "answer": "E" }, { "id": "ar_lsat_200312_1-G_1_4", "context": "A panel of five scientists will be formed. The panelists will be selected from among three botanists—F, G, and H—three chemists—K, L, and M—and three zoologists—P, Q, and R. Selection is governed by the following conditions: The panel must include at least one scientist of each of the three types. If more than one botanist is selected, then at most one zoologist is selected. F and K cannot both be selected. K and M cannot both be selected. If M is selected, both P and R must be selected.", "question": "If P is the only zoologist selected, which one of the following must be true?", "options": [ "A) If K is selected, G cannot be selected.", "B) If L is selected, F cannot be selected.", "C) If exactly one chemist is selected, it must be K.", "D) If exactly two chemists are selected, F cannot be selected.", "E) If exactly two chemists are selected, G cannot be selected." ], "answer": "D" }, { "id": "ar_lsat_200312_1-G_1_5", "context": "A panel of five scientists will be formed. The panelists will be selected from among three botanists—F, G, and H—three chemists—K, L, and M—and three zoologists—P, Q, and R. Selection is governed by the following conditions: The panel must include at least one scientist of each of the three types. If more than one botanist is selected, then at most one zoologist is selected. F and K cannot both be selected. K and M cannot both be selected. If M is selected, both P and R must be selected.", "question": "If both G and H are among the scientists selected, then the panel must include either", "options": [ "A) F or else K", "B) F or else M", "C) K or else M", "D) M or else Q", "E) P or else Q" ], "answer": "A" }, { "id": "ar_lsat_200312_1-G_2_6", "context": "A loading dock consists of exactly six bays numbered 1 through 6 consecutively from one side of the dock to the other. Each bay is holding a different one of exactly six types of cargo—fuel, grain, livestock, machinery, produce, or textiles. The following apply: The bay holding grain has a higher number than the bay holding livestock. The bay holding livestock has a higher number than the bay holding textiles. The bay holding produce has a higher number than the bay holding fuel. The bay holding textiles is next to the bay holding produce.", "question": "Which one of the following lists could accurately identify the cargo held in each of the loading dock's first three bays, listed in order from bay 1 to bay 3?", "options": [ "A) fuel, machinery, textiles", "B) grain, machinery, fuel", "C) machinery, livestock, fuel", "D) machinery, textiles, fuel", "E) machinery, textiles, produce" ], "answer": "A" }, { "id": "ar_lsat_200312_1-G_2_7", "context": "A loading dock consists of exactly six bays numbered 1 through 6 consecutively from one side of the dock to the other. Each bay is holding a different one of exactly six types of cargo—fuel, grain, livestock, machinery, produce, or textiles. The following apply: The bay holding grain has a higher number than the bay holding livestock. The bay holding livestock has a higher number than the bay holding textiles. The bay holding produce has a higher number than the bay holding fuel. The bay holding textiles is next to the bay holding produce.", "question": "Which one of the following CANNOT be the type of cargo held in bay 4?", "options": [ "A) grain", "B) livestock", "C) machinery", "D) produce", "E) textiles" ], "answer": "A" }, { "id": "ar_lsat_200312_1-G_2_8", "context": "A loading dock consists of exactly six bays numbered 1 through 6 consecutively from one side of the dock to the other. Each bay is holding a different one of exactly six types of cargo—fuel, grain, livestock, machinery, produce, or textiles. The following apply: The bay holding grain has a higher number than the bay holding livestock. The bay holding livestock has a higher number than the bay holding textiles. The bay holding produce has a higher number than the bay holding fuel. The bay holding textiles is next to the bay holding produce.", "question": "If there is exactly one bay between the bay holding machinery and the bay holding grain, then for exactly how many of the six bays is the type of cargo that bay is holding completely determined?", "options": [ "A) two", "B) three", "C) four", "D) five", "E) six" ], "answer": "C" }, { "id": "ar_lsat_200312_1-G_2_9", "context": "A loading dock consists of exactly six bays numbered 1 through 6 consecutively from one side of the dock to the other. Each bay is holding a different one of exactly six types of cargo—fuel, grain, livestock, machinery, produce, or textiles. The following apply: The bay holding grain has a higher number than the bay holding livestock. The bay holding livestock has a higher number than the bay holding textiles. The bay holding produce has a higher number than the bay holding fuel. The bay holding textiles is next to the bay holding produce.", "question": "Which one of the following could be the bay holding livestock?", "options": [ "A) bay 1", "B) bay 2", "C) bay 3", "D) bay 5", "E) bay 6" ], "answer": "D" }, { "id": "ar_lsat_200312_1-G_2_10", "context": "A loading dock consists of exactly six bays numbered 1 through 6 consecutively from one side of the dock to the other. Each bay is holding a different one of exactly six types of cargo—fuel, grain, livestock, machinery, produce, or textiles. The following apply: The bay holding grain has a higher number than the bay holding livestock. The bay holding livestock has a higher number than the bay holding textiles. The bay holding produce has a higher number than the bay holding fuel. The bay holding textiles is next to the bay holding produce.", "question": "Which one of the following must be false?", "options": [ "A) The bay holding fuel is next to the bay holding machinery.", "B) The bay holding grain is next to the bay holding machinery.", "C) The bay holding livestock is next to the bay holding fuel.", "D) The bay holding produce is next to the bay holding livestock.", "E) The bay holding textiles is next to the bay holding fuel." ], "answer": "C" }, { "id": "ar_lsat_200312_1-G_2_11", "context": "A loading dock consists of exactly six bays numbered 1 through 6 consecutively from one side of the dock to the other. Each bay is holding a different one of exactly six types of cargo—fuel, grain, livestock, machinery, produce, or textiles. The following apply: The bay holding grain has a higher number than the bay holding livestock. The bay holding livestock has a higher number than the bay holding textiles. The bay holding produce has a higher number than the bay holding fuel. The bay holding textiles is next to the bay holding produce.", "question": "If the bay holding produce is next to the bay holding livestock, then each of the following could be true EXCEPT:", "options": [ "A) Bay 2 is holding fuel.", "B) Bay 4 is holding produce.", "C) Bay 4 is holding textiles.", "D) Bay 5 is holding grain.", "E) Bay 5 is holding machinery." ], "answer": "C" }, { "id": "ar_lsat_200312_1-G_2_12", "context": "A loading dock consists of exactly six bays numbered 1 through 6 consecutively from one side of the dock to the other. Each bay is holding a different one of exactly six types of cargo—fuel, grain, livestock, machinery, produce, or textiles. The following apply: The bay holding grain has a higher number than the bay holding livestock. The bay holding livestock has a higher number than the bay holding textiles. The bay holding produce has a higher number than the bay holding fuel. The bay holding textiles is next to the bay holding produce.", "question": "If bay 4 is holding produce, then for exactly how many of the six bays is the type of cargo that bay is holding completely determined?", "options": [ "A) two", "B) three", "C) four", "D) five", "E) six" ], "answer": "C" }, { "id": "ar_lsat_200312_1-G_3_13", "context": "A bakery makes exactly three kinds of cookie—oatmeal, peanut butter, and sugar. Exactly three batches of each kind of cookie are made each week (Monday through Friday) and each batch is made, from start to finish, on a single day. The following conditions apply: No two batches of the same kind of cookie are made on the same day. At least one batch of cookies is made on Monday. The second batch of oatmeal cookies is made on the same day as the first batch of peanut butter cookies. The second batch of sugar cookies is made on Thursday.", "question": "Which one of the following could be a complete and accurate list of the days on which the batches of each kind of cookie are made?", "options": [ "A) oatmeal: Monday, Wednesday, Thursday peanut butter: Wednesday, Thursday, Friday sugar: Monday, Thursday, Friday", "B) oatmeal: Monday, Tuesday, Thursday peanut butter: Tuesday, Wednesday, Thursday sugar: Monday, Wednesday, Thursday", "C) oatmeal: Tuesday, Wednesday, Thursday peanut butter: Wednesday, Thursday, Friday sugar: Tuesday, Thursday, Friday", "D) oatmeal: Monday, Tuesday, Thursday peanut butter: Monday, Wednesday, Thursday sugar: Monday, Thursday, Friday", "E) oatmeal: Monday, Thursday, Friday peanut butter: Tuesday, Wednesday, Thursday sugar: Monday, Thursday, Friday" ], "answer": "A" }, { "id": "ar_lsat_200312_1-G_3_14", "context": "A bakery makes exactly three kinds of cookie—oatmeal, peanut butter, and sugar. Exactly three batches of each kind of cookie are made each week (Monday through Friday) and each batch is made, from start to finish, on a single day. The following conditions apply: No two batches of the same kind of cookie are made on the same day. At least one batch of cookies is made on Monday. The second batch of oatmeal cookies is made on the same day as the first batch of peanut butter cookies. The second batch of sugar cookies is made on Thursday.", "question": "How many of the days, Monday through Friday, are such that at most two batches of cookies could be made on that day?", "options": [ "A) one", "B) two", "C) three", "D) four", "E) five" ], "answer": "A" }, { "id": "ar_lsat_200312_1-G_3_15", "context": "A bakery makes exactly three kinds of cookie—oatmeal, peanut butter, and sugar. Exactly three batches of each kind of cookie are made each week (Monday through Friday) and each batch is made, from start to finish, on a single day. The following conditions apply: No two batches of the same kind of cookie are made on the same day. At least one batch of cookies is made on Monday. The second batch of oatmeal cookies is made on the same day as the first batch of peanut butter cookies. The second batch of sugar cookies is made on Thursday.", "question": "If the first batch of peanut butter cookies is made on Tuesday, then each of the following could be true EXCEPT:", "options": [ "A) Two different kinds of cookie have their first batch made on Monday.", "B) Two different kinds of cookie have their first batch made on Tuesday.", "C) Two different kinds of cookie have their second batch made on Wednesday.", "D) Two different kinds of cookie have their second batch made on Thursday.", "E) Two different kinds of cookie have their third batch made on Friday." ], "answer": "C" }, { "id": "ar_lsat_200312_1-G_3_16", "context": "A bakery makes exactly three kinds of cookie—oatmeal, peanut butter, and sugar. Exactly three batches of each kind of cookie are made each week (Monday through Friday) and each batch is made, from start to finish, on a single day. The following conditions apply: No two batches of the same kind of cookie are made on the same day. At least one batch of cookies is made on Monday. The second batch of oatmeal cookies is made on the same day as the first batch of peanut butter cookies. The second batch of sugar cookies is made on Thursday.", "question": "If no batch of cookies is made on Wednesday, then which one of the following must be true?", "options": [ "A) Exactly three batches of cookies are made on Tuesday.", "B) Exactly three batches of cookies are made on Friday.", "C) At least two batches of cookies are made on Monday.", "D) At least two batches of cookies are made on Thursday.", "E) Fewer batches of cookies are made on Monday than on Tuesday." ], "answer": "D" }, { "id": "ar_lsat_200312_1-G_3_17", "context": "A bakery makes exactly three kinds of cookie—oatmeal, peanut butter, and sugar. Exactly three batches of each kind of cookie are made each week (Monday through Friday) and each batch is made, from start to finish, on a single day. The following conditions apply: No two batches of the same kind of cookie are made on the same day. At least one batch of cookies is made on Monday. The second batch of oatmeal cookies is made on the same day as the first batch of peanut butter cookies. The second batch of sugar cookies is made on Thursday.", "question": "If the number of batches made on Friday is exactly one, then which one of the following could be true?", "options": [ "A) The first batch of sugar cookies is made on Monday.", "B) The first batch of oatmeal cookies is made on Tuesday.", "C) The third batch of oatmeal cookies is made on Friday.", "D) The first batch of peanut butter cookies is made on Wednesday.", "E) The second batch of peanut butter cookies is made on Tuesday." ], "answer": "A" }, { "id": "ar_lsat_200312_1-G_3_18", "context": "A bakery makes exactly three kinds of cookie—oatmeal, peanut butter, and sugar. Exactly three batches of each kind of cookie are made each week (Monday through Friday) and each batch is made, from start to finish, on a single day. The following conditions apply: No two batches of the same kind of cookie are made on the same day. At least one batch of cookies is made on Monday. The second batch of oatmeal cookies is made on the same day as the first batch of peanut butter cookies. The second batch of sugar cookies is made on Thursday.", "question": "If one kind of cookie's first batch is made on the same day as another kind of cookie's third batch, then which one of the following could be false?", "options": [ "A) At least one batch of cookies is made on each of the five days.", "B) At least two batches of cookies are made on Wednesday.", "C) Exactly one batch of cookies is made on Monday.", "D) Exactly two batches of cookies are made on Tuesday.", "E) Exactly one batch of cookies is made on Friday." ], "answer": "E" }, { "id": "ar_lsat_200312_1-G_4_19", "context": "For the school paper, five students—Jiang, Kramer, Lopez, Megregian, and O'Neill—each review one or more of exactly three plays: Sunset, Tamerlane, and Undulation, but do not review any other plays. The following conditions must apply: Kramer and Lopez each review fewer of the plays than Megregian. Neither Lopez nor Megregian reviews any play Jiang reviews. Kramer and O'Neill both review Tamerlane. Exactly two of the students review exactly the same play or plays as each other.", "question": "Which one of the following could be an accurate and complete list of the students who review only Sunset?", "options": [ "A) Lopez", "B) O'Neill", "C) Jiang, Lopez", "D) Kramer, O'Neill", "E) Lopez, Megregian" ], "answer": "A" }, { "id": "ar_lsat_200312_1-G_4_20", "context": "For the school paper, five students—Jiang, Kramer, Lopez, Megregian, and O'Neill—each review one or more of exactly three plays: Sunset, Tamerlane, and Undulation, but do not review any other plays. The following conditions must apply: Kramer and Lopez each review fewer of the plays than Megregian. Neither Lopez nor Megregian reviews any play Jiang reviews. Kramer and O'Neill both review Tamerlane. Exactly two of the students review exactly the same play or plays as each other.", "question": "Which one of the following must be true?", "options": [ "A) Jiang reviews more of the plays than Lopez does.", "B) Megregian reviews more of the plays than Jiang does.", "C) Megregian reviews more of the plays than O'Neill does.", "D) O'Neill reviews more of the plays than Jiang does.", "E) O'Neill reviews more of the plays than Kramer does." ], "answer": "B" }, { "id": "ar_lsat_200312_1-G_4_21", "context": "For the school paper, five students—Jiang, Kramer, Lopez, Megregian, and O'Neill—each review one or more of exactly three plays: Sunset, Tamerlane, and Undulation, but do not review any other plays. The following conditions must apply: Kramer and Lopez each review fewer of the plays than Megregian. Neither Lopez nor Megregian reviews any play Jiang reviews. Kramer and O'Neill both review Tamerlane. Exactly two of the students review exactly the same play or plays as each other.", "question": "If exactly three of the students review Undulation, which one of the following could be true?", "options": [ "A) Megregian does not review Undulation.", "B) O'Neill does not review Undulation.", "C) Jiang reviews Undulation.", "D) Lopez reviews Tamerlane.", "E) O'Neill reviews Sunset." ], "answer": "E" }, { "id": "ar_lsat_200312_1-G_4_22", "context": "For the school paper, five students—Jiang, Kramer, Lopez, Megregian, and O'Neill—each review one or more of exactly three plays: Sunset, Tamerlane, and Undulation, but do not review any other plays. The following conditions must apply: Kramer and Lopez each review fewer of the plays than Megregian. Neither Lopez nor Megregian reviews any play Jiang reviews. Kramer and O'Neill both review Tamerlane. Exactly two of the students review exactly the same play or plays as each other.", "question": "Which one of the following could be an accurate and complete list of the students who review Tamerlane?", "options": [ "A) Jiang, Kramer", "B) Kramer, O'Neill", "C) Kramer, Lopez, O'Neill", "D) Kramer, Megregian, O'Neill", "E) Lopez, Megregian, O'Neill" ], "answer": "D" }, { "id": "ar_lsat_200312_1-G_4_23", "context": "For the school paper, five students—Jiang, Kramer, Lopez, Megregian, and O'Neill—each review one or more of exactly three plays: Sunset, Tamerlane, and Undulation, but do not review any other plays. The following conditions must apply: Kramer and Lopez each review fewer of the plays than Megregian. Neither Lopez nor Megregian reviews any play Jiang reviews. Kramer and O'Neill both review Tamerlane. Exactly two of the students review exactly the same play or plays as each other.", "question": "If Jiang does not review Tamerlane, then which one of the following must be true?", "options": [ "A) Jiang reviews Sunset.", "B) Lopez reviews Undulation.", "C) Megregian reviews Sunset.", "D) Megregian reviews Tamerlane.", "E) O'Neill reviews Undulation." ], "answer": "D" }, { "id": "ar_lsat_201110_2-G_1_1", "context": "An administrator must assign parking spaces to six new employees: Robertson, Souza, Togowa, Vaughn, Xu, and Young. Each of the six employees must be assigned one of the following parking spaces: #1, #2, #3, #4, #5, or #6. No two employees can be assigned the same parking space. The following rules govern the assignment of parking spaces: Young must be assigned a higher-numbered parking space than Togowa. Xu must be assigned a higher-numbered parking space than Souza. Robertson must be assigned a higher-numbered parking space than Young. Robertson must be assigned parking space #1, #2, #3, or #4.", "question": "Which one of the following could be the assignment of parking spaces to the new employees?", "options": [ "A) #1: Young; #2: Souza; #3: Vaughn; #4: Robertson; #5: Togowa; #6: Xu", "B) #1: Vaughn; #2: Togowa; #3: Young; #4: Souza; #5: Robertson; #6: Xu", "C) #1: Togowa; #2: Young; #3: Xu; #4: Robertson; #5: Souza; #6: Vaughn", "D) #1: Togowa; #2: Robertson; #3: Young; #4: Souza; #5: Vaughn; #6: Xu", "E) #1: Souza; #2: Togowa; #3: Young; #4: Robertson; #5: Xu; #6: Vaughn" ], "answer": "E" }, { "id": "ar_lsat_201110_2-G_1_2", "context": "An administrator must assign parking spaces to six new employees: Robertson, Souza, Togowa, Vaughn, Xu, and Young. Each of the six employees must be assigned one of the following parking spaces: #1, #2, #3, #4, #5, or #6. No two employees can be assigned the same parking space. The following rules govern the assignment of parking spaces: Young must be assigned a higher-numbered parking space than Togowa. Xu must be assigned a higher-numbered parking space than Souza. Robertson must be assigned a higher-numbered parking space than Young. Robertson must be assigned parking space #1, #2, #3, or #4.", "question": "If Togowa is assigned a higher-numbered parking space than Souza, then which one of the following could be true?", "options": [ "A) Young is assigned parking space #2.", "B) Vaughn is assigned parking space #5.", "C) Togowa is assigned parking space #3.", "D) Souza is assigned parking space #2.", "E) Robertson is assigned parking space #3." ], "answer": "B" }, { "id": "ar_lsat_201110_2-G_1_3", "context": "An administrator must assign parking spaces to six new employees: Robertson, Souza, Togowa, Vaughn, Xu, and Young. Each of the six employees must be assigned one of the following parking spaces: #1, #2, #3, #4, #5, or #6. No two employees can be assigned the same parking space. The following rules govern the assignment of parking spaces: Young must be assigned a higher-numbered parking space than Togowa. Xu must be assigned a higher-numbered parking space than Souza. Robertson must be assigned a higher-numbered parking space than Young. Robertson must be assigned parking space #1, #2, #3, or #4.", "question": "The assignment of parking spaces to each of the new employees is fully and uniquely determined if which one of the following is true?", "options": [ "A) Souza is assigned parking space #1.", "B) Young is assigned parking space #2.", "C) Vaughn is assigned parking space #3.", "D) Robertson is assigned parking space #4.", "E) Xu is assigned parking space #5." ], "answer": "C" }, { "id": "ar_lsat_201110_2-G_1_4", "context": "An administrator must assign parking spaces to six new employees: Robertson, Souza, Togowa, Vaughn, Xu, and Young. Each of the six employees must be assigned one of the following parking spaces: #1, #2, #3, #4, #5, or #6. No two employees can be assigned the same parking space. The following rules govern the assignment of parking spaces: Young must be assigned a higher-numbered parking space than Togowa. Xu must be assigned a higher-numbered parking space than Souza. Robertson must be assigned a higher-numbered parking space than Young. Robertson must be assigned parking space #1, #2, #3, or #4.", "question": "For how many of the six new employees is the assignment of a parking space limited to one of only two possible spaces?", "options": [ "A) none", "B) two", "C) three", "D) four", "E) five" ], "answer": "D" }, { "id": "ar_lsat_201110_2-G_1_5", "context": "An administrator must assign parking spaces to six new employees: Robertson, Souza, Togowa, Vaughn, Xu, and Young. Each of the six employees must be assigned one of the following parking spaces: #1, #2, #3, #4, #5, or #6. No two employees can be assigned the same parking space. The following rules govern the assignment of parking spaces: Young must be assigned a higher-numbered parking space than Togowa. Xu must be assigned a higher-numbered parking space than Souza. Robertson must be assigned a higher-numbered parking space than Young. Robertson must be assigned parking space #1, #2, #3, or #4.", "question": "If Young is assigned a higher-numbered parking space than Souza, then which one of the following could be true?", "options": [ "A) Togowa is assigned parking space #1.", "B) Young is assigned parking space #2.", "C) Robertson is assigned parking space #3.", "D) Souza is assigned parking space #3.", "E) Vaughn is assigned parking space #4." ], "answer": "A" }, { "id": "ar_lsat_201110_2-G_1_6", "context": "An administrator must assign parking spaces to six new employees: Robertson, Souza, Togowa, Vaughn, Xu, and Young. Each of the six employees must be assigned one of the following parking spaces: #1, #2, #3, #4, #5, or #6. No two employees can be assigned the same parking space. The following rules govern the assignment of parking spaces: Young must be assigned a higher-numbered parking space than Togowa. Xu must be assigned a higher-numbered parking space than Souza. Robertson must be assigned a higher-numbered parking space than Young. Robertson must be assigned parking space #1, #2, #3, or #4.", "question": "If Robertson is assigned parking space #3, then which one of the following must be true?", "options": [ "A) Souza is assigned parking space #4.", "B) Togowa is assigned parking space #2.", "C) Vaughn is assigned parking space #5.", "D) Xu is assigned parking space #6.", "E) Young is assigned parking space #2." ], "answer": "E" }, { "id": "ar_lsat_201110_2-G_2_7", "context": "A government needs to assign new ambassadors to Venezuela, Yemen, and Zambia. The candidates for these ambassadorships are Jaramillo, Kayne, Landon, Novetzke, and Ong. One ambassador will be assigned to each country, and no ambassador will be assigned to more than one country. The assignment of the ambassadors must meet the following constraints: Either Kayne or Novetzke, but not both, is assigned to one of the ambassadorships. If Jaramillo is assigned to one of the ambassadorships, then so is Kayne. If Ong is assigned as ambassador to Venezuela, Kayne is not assigned as ambassador to Yemen. If Landon is assigned to an ambassadorship, it is to Zambia.", "question": "Which one of the following could be the assignment of the ambassadors?", "options": [ "A) Venezuela: Jaramillo Yemen: Ong Zambia: Novetzke", "B) Venezuela: Kayne Yemen: Jaramillo Zambia: Landon", "C) Venezuela: Landon Yemen: Novetzke Zambia: Ong", "D) Venezuela: Novetzke Yemen: Jaramillo Zambia: Kayne", "E) Venezuela: Ong Yemen: Kayne Zambia: Landon" ], "answer": "B" }, { "id": "ar_lsat_201110_2-G_2_8", "context": "A government needs to assign new ambassadors to Venezuela, Yemen, and Zambia. The candidates for these ambassadorships are Jaramillo, Kayne, Landon, Novetzke, and Ong. One ambassador will be assigned to each country, and no ambassador will be assigned to more than one country. The assignment of the ambassadors must meet the following constraints: Either Kayne or Novetzke, but not both, is assigned to one of the ambassadorships. If Jaramillo is assigned to one of the ambassadorships, then so is Kayne. If Ong is assigned as ambassador to Venezuela, Kayne is not assigned as ambassador to Yemen. If Landon is assigned to an ambassadorship, it is to Zambia.", "question": "The pair of candidates who are not assigned to ambassadorships could be", "options": [ "A) Jaramillo and Novetzke", "B) Jaramillo and Ong", "C) Kayne and Landon", "D) Kayne and Novetzke", "E) Landon and Ong" ], "answer": "A" }, { "id": "ar_lsat_201110_2-G_2_9", "context": "A government needs to assign new ambassadors to Venezuela, Yemen, and Zambia. The candidates for these ambassadorships are Jaramillo, Kayne, Landon, Novetzke, and Ong. One ambassador will be assigned to each country, and no ambassador will be assigned to more than one country. The assignment of the ambassadors must meet the following constraints: Either Kayne or Novetzke, but not both, is assigned to one of the ambassadorships. If Jaramillo is assigned to one of the ambassadorships, then so is Kayne. If Ong is assigned as ambassador to Venezuela, Kayne is not assigned as ambassador to Yemen. If Landon is assigned to an ambassadorship, it is to Zambia.", "question": "If Ong is assigned as ambassador to Venezuela, then the other two ambassadors assigned could be", "options": [ "A) Jaramillo and Landon", "B) Jaramillo and Novetzke", "C) Kayne and Landon", "D) Kayne and Novetzke", "E) Landon and Novetzke" ], "answer": "E" }, { "id": "ar_lsat_201110_2-G_2_10", "context": "A government needs to assign new ambassadors to Venezuela, Yemen, and Zambia. The candidates for these ambassadorships are Jaramillo, Kayne, Landon, Novetzke, and Ong. One ambassador will be assigned to each country, and no ambassador will be assigned to more than one country. The assignment of the ambassadors must meet the following constraints: Either Kayne or Novetzke, but not both, is assigned to one of the ambassadorships. If Jaramillo is assigned to one of the ambassadorships, then so is Kayne. If Ong is assigned as ambassador to Venezuela, Kayne is not assigned as ambassador to Yemen. If Landon is assigned to an ambassadorship, it is to Zambia.", "question": "If Kayne is assigned as ambassador to Yemen, which one of the following must be true?", "options": [ "A) Jaramillo is assigned as ambassador to Venezuela.", "B) Landon is assigned as ambassador to Zambia.", "C) Ong is assigned as ambassador to Zambia.", "D) Jaramillo is not assigned to an ambassadorship.", "E) Ong is not assigned to an ambassadorship." ], "answer": "A" }, { "id": "ar_lsat_201110_2-G_2_11", "context": "A government needs to assign new ambassadors to Venezuela, Yemen, and Zambia. The candidates for these ambassadorships are Jaramillo, Kayne, Landon, Novetzke, and Ong. One ambassador will be assigned to each country, and no ambassador will be assigned to more than one country. The assignment of the ambassadors must meet the following constraints: Either Kayne or Novetzke, but not both, is assigned to one of the ambassadorships. If Jaramillo is assigned to one of the ambassadorships, then so is Kayne. If Ong is assigned as ambassador to Venezuela, Kayne is not assigned as ambassador to Yemen. If Landon is assigned to an ambassadorship, it is to Zambia.", "question": "Which one of the following CANNOT be true?", "options": [ "A) Jaramillo is assigned as ambassador to Zambia.", "B) Kayne is assigned as ambassador to Zambia.", "C) Novetzke is assigned as ambassador to Zambia.", "D) Landon is not assigned to an ambassadorship.", "E) Ong is not assigned to an ambassadorship." ], "answer": "C" }, { "id": "ar_lsat_201110_2-G_2_12", "context": "A government needs to assign new ambassadors to Venezuela, Yemen, and Zambia. The candidates for these ambassadorships are Jaramillo, Kayne, Landon, Novetzke, and Ong. One ambassador will be assigned to each country, and no ambassador will be assigned to more than one country. The assignment of the ambassadors must meet the following constraints: Either Kayne or Novetzke, but not both, is assigned to one of the ambassadorships. If Jaramillo is assigned to one of the ambassadorships, then so is Kayne. If Ong is assigned as ambassador to Venezuela, Kayne is not assigned as ambassador to Yemen. If Landon is assigned to an ambassadorship, it is to Zambia.", "question": "Which one of the following, if substituted for the constraint that if Jaramillo is assigned to one of the ambassadorships, then so is Kayne, would have the same effect in determining the assignment of the ambassadors?", "options": [ "A) If Kayne is assigned to an ambassadorship, then so is Jaramillo.", "B) If Landon and Ong are both assigned to ambassadorships, then so is Novetzke.", "C) If Ong is not assigned to an ambassadorship, then Kayne is assigned to an ambassadorship.", "D) Jaramillo and Novetzke are not both assigned to ambassadorships.", "E) Novetzke and Ong are not both assigned to ambassadorships." ], "answer": "D" }, { "id": "ar_lsat_201110_2-G_3_13", "context": "On the first day of a two-day study for a cycling magazine, four riders—Reynaldo, Seamus, Theresa, and Yuki—will each test one of four bicycles—F, G, H, and J. Each rider will then test a different one of the bicycles on the second day. Each rider tests only one bicycle per day, and all four bicycles are tested each day. The assignment of riders to bicycles is subject to the following conditions: Reynaldo cannot test F. Yuki cannot test J. Theresa must be one of the testers for H. The bicycle that Yuki tests on the first day must be tested by Seamus on the second day.", "question": "Which one of the following is a possible assignment of riders to bicycles, with the riders for each bicycle listed in the order in which they test the bicycle?", "options": [ "A) F: Seamus, Reynaldo; G: Yuki, Seamus; H: Theresa, Yuki; J: Reynaldo, Theresa", "B) F: Seamus, Yuki; G: Reynaldo, Theresa; H: Yuki, Seamus; J: Theresa, Reynaldo", "C) F: Yuki, Seamus; G: Seamus, Reynaldo; H: Theresa, Yuki; J: Reynaldo, Theresa", "D) F: Yuki, Seamus; G: Theresa, Reynaldo; H: Reynaldo, Theresa; J: Seamus, Yuki", "E) F: Yuki, Theresa; G: Seamus, Yuki; H: Theresa, Reynaldo; J: Reynaldo, Seamus" ], "answer": "C" }, { "id": "ar_lsat_201110_2-G_3_14", "context": "On the first day of a two-day study for a cycling magazine, four riders—Reynaldo, Seamus, Theresa, and Yuki—will each test one of four bicycles—F, G, H, and J. Each rider will then test a different one of the bicycles on the second day. Each rider tests only one bicycle per day, and all four bicycles are tested each day. The assignment of riders to bicycles is subject to the following conditions: Reynaldo cannot test F. Yuki cannot test J. Theresa must be one of the testers for H. The bicycle that Yuki tests on the first day must be tested by Seamus on the second day.", "question": "If Theresa tests G on the second day, then which one of the following must be true?", "options": [ "A) Reynaldo tests H on the first day.", "B) Reynaldo tests J on the first day.", "C) Theresa tests H on the second day.", "D) Theresa tests J on the first day.", "E) Yuki tests H on the second day." ], "answer": "E" }, { "id": "ar_lsat_201110_2-G_3_15", "context": "On the first day of a two-day study for a cycling magazine, four riders—Reynaldo, Seamus, Theresa, and Yuki—will each test one of four bicycles—F, G, H, and J. Each rider will then test a different one of the bicycles on the second day. Each rider tests only one bicycle per day, and all four bicycles are tested each day. The assignment of riders to bicycles is subject to the following conditions: Reynaldo cannot test F. Yuki cannot test J. Theresa must be one of the testers for H. The bicycle that Yuki tests on the first day must be tested by Seamus on the second day.", "question": "Any of the following could be true EXCEPT:", "options": [ "A) Reynaldo tests J on the first day.", "B) Reynaldo tests J on the second day.", "C) Seamus tests H on the first day.", "D) Yuki tests H on the first day.", "E) Yuki tests H on the second day." ], "answer": "D" }, { "id": "ar_lsat_201110_2-G_3_16", "context": "On the first day of a two-day study for a cycling magazine, four riders—Reynaldo, Seamus, Theresa, and Yuki—will each test one of four bicycles—F, G, H, and J. Each rider will then test a different one of the bicycles on the second day. Each rider tests only one bicycle per day, and all four bicycles are tested each day. The assignment of riders to bicycles is subject to the following conditions: Reynaldo cannot test F. Yuki cannot test J. Theresa must be one of the testers for H. The bicycle that Yuki tests on the first day must be tested by Seamus on the second day.", "question": "Which one of the following CANNOT be true?", "options": [ "A) Reynaldo tests G on the second day.", "B) Seamus tests F on the first day.", "C) Theresa tests F on the second day.", "D) Reynaldo tests H on the first day.", "E) Yuki tests F on the second day." ], "answer": "C" }, { "id": "ar_lsat_201110_2-G_3_17", "context": "On the first day of a two-day study for a cycling magazine, four riders—Reynaldo, Seamus, Theresa, and Yuki—will each test one of four bicycles—F, G, H, and J. Each rider will then test a different one of the bicycles on the second day. Each rider tests only one bicycle per day, and all four bicycles are tested each day. The assignment of riders to bicycles is subject to the following conditions: Reynaldo cannot test F. Yuki cannot test J. Theresa must be one of the testers for H. The bicycle that Yuki tests on the first day must be tested by Seamus on the second day.", "question": "If Theresa tests J on the first day, then which one of the following could be true?", "options": [ "A) Reynaldo tests G on the second day.", "B) Seamus tests H on the first day.", "C) Yuki tests H on the second day.", "D) Seamus is one of the testers for J.", "E) Theresa is one of the testers for G." ], "answer": "B" }, { "id": "ar_lsat_201110_2-G_3_18", "context": "On the first day of a two-day study for a cycling magazine, four riders—Reynaldo, Seamus, Theresa, and Yuki—will each test one of four bicycles—F, G, H, and J. Each rider will then test a different one of the bicycles on the second day. Each rider tests only one bicycle per day, and all four bicycles are tested each day. The assignment of riders to bicycles is subject to the following conditions: Reynaldo cannot test F. Yuki cannot test J. Theresa must be one of the testers for H. The bicycle that Yuki tests on the first day must be tested by Seamus on the second day.", "question": "Which one of the following CANNOT be true?", "options": [ "A) Both Reynaldo and Seamus test J.", "B) Both Reynaldo and Theresa test J.", "C) Both Reynaldo and Yuki test G.", "D) Both Seamus and Theresa test G.", "E) Both Theresa and Yuki test F." ], "answer": "D" }, { "id": "ar_lsat_201110_2-G_4_19", "context": "Exactly eight books—F, G, H, I, K, L, M, O—are placed on a bookcase with exactly three shelves—the top shelf, the middle shelf, and the bottom shelf. At least two books are placed on each shelf. The following conditions must apply: More of the books are placed on the bottom shelf than the top shelf. I is placed on the middle shelf. K is placed on a higher shelf than F. O is placed on a higher shelf than L. F is placed on the same shelf as M.", "question": "Which one of the following could be a complete and accurate list of the books placed on the bottom shelf?", "options": [ "A) F, M", "B) F, H, M", "C) G, H, K", "D) F, G, M, O", "E) G, H, L, M" ], "answer": "B" }, { "id": "ar_lsat_201110_2-G_4_20", "context": "Exactly eight books—F, G, H, I, K, L, M, O—are placed on a bookcase with exactly three shelves—the top shelf, the middle shelf, and the bottom shelf. At least two books are placed on each shelf. The following conditions must apply: More of the books are placed on the bottom shelf than the top shelf. I is placed on the middle shelf. K is placed on a higher shelf than F. O is placed on a higher shelf than L. F is placed on the same shelf as M.", "question": "It is fully determined which of the shelves each of the books is placed on if which one of the following is true?", "options": [ "A) I and M are placed on the same shelf as each other.", "B) K and G are placed on the same shelf as each other.", "C) L and F are placed on the same shelf as each other.", "D) M and H are placed on the same shelf as each other.", "E) H and O are placed on the same shelf as each other." ], "answer": "A" }, { "id": "ar_lsat_201110_2-G_4_21", "context": "Exactly eight books—F, G, H, I, K, L, M, O—are placed on a bookcase with exactly three shelves—the top shelf, the middle shelf, and the bottom shelf. At least two books are placed on each shelf. The following conditions must apply: More of the books are placed on the bottom shelf than the top shelf. I is placed on the middle shelf. K is placed on a higher shelf than F. O is placed on a higher shelf than L. F is placed on the same shelf as M.", "question": "Which one of the following must be true?", "options": [ "A) O is placed on a shelf higher than the shelf M is placed on.", "B) K is placed on a shelf higher than the shelf G is placed on.", "C) I is placed on a shelf higher than the shelf F is placed on.", "D) G is placed on a shelf higher than the shelf O is placed on.", "E) F is placed on a shelf higher than the shelf L is placed on." ], "answer": "A" }, { "id": "ar_lsat_201110_2-G_4_22", "context": "Exactly eight books—F, G, H, I, K, L, M, O—are placed on a bookcase with exactly three shelves—the top shelf, the middle shelf, and the bottom shelf. At least two books are placed on each shelf. The following conditions must apply: More of the books are placed on the bottom shelf than the top shelf. I is placed on the middle shelf. K is placed on a higher shelf than F. O is placed on a higher shelf than L. F is placed on the same shelf as M.", "question": "If G is placed on the top shelf, then which one of the following could be a complete and accurate list of the books placed on the middle shelf?", "options": [ "A) H, I", "B) I, L", "C) H, I, L", "D) I, K, L", "E) F, I, M" ], "answer": "D" }, { "id": "ar_lsat_201110_2-G_4_23", "context": "Exactly eight books—F, G, H, I, K, L, M, O—are placed on a bookcase with exactly three shelves—the top shelf, the middle shelf, and the bottom shelf. At least two books are placed on each shelf. The following conditions must apply: More of the books are placed on the bottom shelf than the top shelf. I is placed on the middle shelf. K is placed on a higher shelf than F. O is placed on a higher shelf than L. F is placed on the same shelf as M.", "question": "If L is placed on a shelf higher than the shelf H is placed on, then which one of the following must be true?", "options": [ "A) F and G are placed on the same shelf as each other.", "B) G and H are placed on the same shelf as each other.", "C) H and M are placed on the same shelf as each other.", "D) I and G are placed on the same shelf as each other.", "E) K and O are placed on the same shelf as each other." ], "answer": "C" }, { "id": "ar_lsat_201206_3-G_1_1", "context": "A chemistry class has six lab sessions scheduled over three days—Wednesday, Thursday, and Friday—one session heing held each morning and one each afternoon. Each session will be led by a different lab assistant—Julio, Kevin, Lan, Nessa, Olivia, or Rebecca. The assignment of lab assistants to sessions is constrained as follows: Kevin and Rebecca must lead sessions that meet on the same day. Lan and Olivia cannot lead sessions that meet on the same day. Nessa must lead an afternoon session. Julio's session must meet on an earlier day of the week than Olivia's.", "question": "Which one of the following could he an accurate assignment of lab assistants to morning and afternoon sessions, respectively, on the three days?", "options": [ "A) Wednesday: Rebecca, Kevin Thursday: Julio, Lan Friday: Nessa, Olivia", "B) Wednesday: Olivia, Nessa Thursday: Julio, Lan Friday: Kevin, Rebecca", "C) Wednesday: Lan, Kevin Thursday: Rebecca, Julio Friday: Olivia, Nessa", "D) Wednesday: Kevin, Rebecca Thursday: Julio, Nessa Friday: Olivia, Lan", "E) Wednesday: Julio, Lan Thursday: Olivia, Nessa Friday: Rebecca, Kevin" ], "answer": "E" }, { "id": "ar_lsat_201206_3-G_1_2", "context": "A chemistry class has six lab sessions scheduled over three days—Wednesday, Thursday, and Friday—one session heing held each morning and one each afternoon. Each session will be led by a different lab assistant—Julio, Kevin, Lan, Nessa, Olivia, or Rebecca. The assignment of lab assistants to sessions is constrained as follows: Kevin and Rebecca must lead sessions that meet on the same day. Lan and Olivia cannot lead sessions that meet on the same day. Nessa must lead an afternoon session. Julio's session must meet on an earlier day of the week than Olivia's.", "question": "If Lan does not lead a Wednesday session, then which one of the following lab assistants must lead a Thursday session?", "options": [ "A) Rebecca", "B) Olivia", "C) Nessa", "D) Kevin", "E) Julio" ], "answer": "E" }, { "id": "ar_lsat_201206_3-G_1_3", "context": "A chemistry class has six lab sessions scheduled over three days—Wednesday, Thursday, and Friday—one session heing held each morning and one each afternoon. Each session will be led by a different lab assistant—Julio, Kevin, Lan, Nessa, Olivia, or Rebecca. The assignment of lab assistants to sessions is constrained as follows: Kevin and Rebecca must lead sessions that meet on the same day. Lan and Olivia cannot lead sessions that meet on the same day. Nessa must lead an afternoon session. Julio's session must meet on an earlier day of the week than Olivia's.", "question": "If Kevin's session meets on the day before Nessa's, then which one of the following is a complete and accurate list of lab assistants any one of whom could lead the Thursday afternoon session?", "options": [ "A) Julio, Nessa", "B) Kevin, Rebecca", "C) Kevin, Nessa, Rebecca", "D) Julio, Kevin, Nessa, Rebecca", "E) Julio, Kevin, Lan, Nessa, Rebecca" ], "answer": "B" }, { "id": "ar_lsat_201206_3-G_1_4", "context": "A chemistry class has six lab sessions scheduled over three days—Wednesday, Thursday, and Friday—one session heing held each morning and one each afternoon. Each session will be led by a different lab assistant—Julio, Kevin, Lan, Nessa, Olivia, or Rebecca. The assignment of lab assistants to sessions is constrained as follows: Kevin and Rebecca must lead sessions that meet on the same day. Lan and Olivia cannot lead sessions that meet on the same day. Nessa must lead an afternoon session. Julio's session must meet on an earlier day of the week than Olivia's.", "question": "If Julio and Kevin both lead morning sessions, then any of the following could be true EXCEPT:", "options": [ "A) Lan's session meets Wednesday morning.", "B) Lan's session meets Thursday afternoon.", "C) Nessa's session meets Friday afternoon.", "D) Olivia's session meets Thursday morning.", "E) Olivia's session meets Friday morning." ], "answer": "A" }, { "id": "ar_lsat_201206_3-G_1_5", "context": "A chemistry class has six lab sessions scheduled over three days—Wednesday, Thursday, and Friday—one session heing held each morning and one each afternoon. Each session will be led by a different lab assistant—Julio, Kevin, Lan, Nessa, Olivia, or Rebecca. The assignment of lab assistants to sessions is constrained as follows: Kevin and Rebecca must lead sessions that meet on the same day. Lan and Olivia cannot lead sessions that meet on the same day. Nessa must lead an afternoon session. Julio's session must meet on an earlier day of the week than Olivia's.", "question": "If Julio leads the Thursday afternoon session, then for how many of the other lab assistants can one determine which sessions they lead?", "options": [ "A) one", "B) two", "C) three", "D) four", "E) five" ], "answer": "C" }, { "id": "ar_lsat_201206_3-G_2_6", "context": "A shopping center has exactly seven spaces—space 1 through space 7—arranged in a straight row. Seven businesses—an optometrist, a pharmacy, two restaurants, a shoe store, a toy store, and a veterinarian—will be located in the shopping center, one in each space. The locations of the businesses are subject to the following constraints: The pharmacy must be at one end of the row and one of the restaurants at the other. The two restaurants must be separated by at least two other businesses. The pharmacy must be next to either the optometrist or the veterinarian. The toy store cannot be next to the veterinarian.", "question": "Which one of the following could be the order of the businesses in spaces 1 through 7 respectively?", "options": [ "A) pharmacy, optometrist, shoe store, restaurant, veterinarian, toy store, restaurant", "B) pharmacy, veterinarian, optometrist, shoe store, restaurant, toy store, restaurant", "C) restaurant, shoe store, veterinarian, pharmacy, optometrist, toy store, restaurant", "D) restaurant, toy store, optometrist, restaurant, veterinarian, shoe store, pharmacy", "E) restaurant, optometrist, toy store, restaurant, shoe store, veterinarian, pharmacy" ], "answer": "E" }, { "id": "ar_lsat_201206_3-G_2_7", "context": "A shopping center has exactly seven spaces—space 1 through space 7—arranged in a straight row. Seven businesses—an optometrist, a pharmacy, two restaurants, a shoe store, a toy store, and a veterinarian—will be located in the shopping center, one in each space. The locations of the businesses are subject to the following constraints: The pharmacy must be at one end of the row and one of the restaurants at the other. The two restaurants must be separated by at least two other businesses. The pharmacy must be next to either the optometrist or the veterinarian. The toy store cannot be next to the veterinarian.", "question": "If the shoe store is in space 2, which one of the following could be true?", "options": [ "A) The optometrist is in space 5.", "B) The pharmacy is in space 1.", "C) A restaurant is in space 3.", "D) The toy store is in space 6.", "E) The veterinarian is in space 4." ], "answer": "A" }, { "id": "ar_lsat_201206_3-G_2_8", "context": "A shopping center has exactly seven spaces—space 1 through space 7—arranged in a straight row. Seven businesses—an optometrist, a pharmacy, two restaurants, a shoe store, a toy store, and a veterinarian—will be located in the shopping center, one in each space. The locations of the businesses are subject to the following constraints: The pharmacy must be at one end of the row and one of the restaurants at the other. The two restaurants must be separated by at least two other businesses. The pharmacy must be next to either the optometrist or the veterinarian. The toy store cannot be next to the veterinarian.", "question": "If the veterinarian is in space 5, which one of the following must be true?", "options": [ "A) The optometrist is in space 2.", "B) The pharmacy is in space 7.", "C) A restaurant is in space 4.", "D) The shoe store is in space 6.", "E) The toy store is in space 3." ], "answer": "C" }, { "id": "ar_lsat_201206_3-G_2_9", "context": "A shopping center has exactly seven spaces—space 1 through space 7—arranged in a straight row. Seven businesses—an optometrist, a pharmacy, two restaurants, a shoe store, a toy store, and a veterinarian—will be located in the shopping center, one in each space. The locations of the businesses are subject to the following constraints: The pharmacy must be at one end of the row and one of the restaurants at the other. The two restaurants must be separated by at least two other businesses. The pharmacy must be next to either the optometrist or the veterinarian. The toy store cannot be next to the veterinarian.", "question": "If the optometrist is next to the shoe store, the businesses immediately on either side of this pair must be", "options": [ "A) the pharmacy and a restaurant", "B) the pharmacy and the toy store", "C) the two restaurants", "D) a restaurant and the toy store", "E) a restaurant and the veterinarian" ], "answer": "D" }, { "id": "ar_lsat_201206_3-G_2_10", "context": "A shopping center has exactly seven spaces—space 1 through space 7—arranged in a straight row. Seven businesses—an optometrist, a pharmacy, two restaurants, a shoe store, a toy store, and a veterinarian—will be located in the shopping center, one in each space. The locations of the businesses are subject to the following constraints: The pharmacy must be at one end of the row and one of the restaurants at the other. The two restaurants must be separated by at least two other businesses. The pharmacy must be next to either the optometrist or the veterinarian. The toy store cannot be next to the veterinarian.", "question": "If the shoe store is in space 4, which one of the following must be true?", "options": [ "A) The optometrist is next to a restaurant.", "B) The pharmacy is next to the veterinarian.", "C) A restaurant is next to the toy store.", "D) The shoe store is next to the toy store.", "E) The shoe store is next to the veterinarian." ], "answer": "B" }, { "id": "ar_lsat_201206_3-G_2_11", "context": "A shopping center has exactly seven spaces—space 1 through space 7—arranged in a straight row. Seven businesses—an optometrist, a pharmacy, two restaurants, a shoe store, a toy store, and a veterinarian—will be located in the shopping center, one in each space. The locations of the businesses are subject to the following constraints: The pharmacy must be at one end of the row and one of the restaurants at the other. The two restaurants must be separated by at least two other businesses. The pharmacy must be next to either the optometrist or the veterinarian. The toy store cannot be next to the veterinarian.", "question": "Which one of the following, if substituted for the constraint that the two restaurants must be separated by at least two other businesses, would have the same effect in determining the locations of the businesses?", "options": [ "A) A restaurant must be in either space 3, space 4, or space 5.", "B) A restaurant must be next to either the optometrist or the veterinarian.", "C) Either the toy store or the veterinarian must be somewhere between the two restaurants.", "D) No more than two businesses can separate the pharmacy and the restaurant nearest it.", "E) The optometrist cannot be next to the shoe store." ], "answer": "D" }, { "id": "ar_lsat_201206_3-G_3_12", "context": "A software company employs exactly seven sales representatives—Kim, Mahr, Parra, Quinn, Stuckey, Tiao, and Udall—to work in its three sales zones—Zone 1, Zone 2, and Zone 3. Each sales representative works in exactly one of the sales zones, in accordance with the following conditions: Either Parra or Tiao (but not both) works in Zone 1. Either Tiao or Udall (but not both) works in Zone 2. Parra and Quinn work in the same sales zone as each other. Stuckey and Udall work in the same sales zone as each other. There are more of the sales representatives working in Zone 3 than in Zone 2.", "question": "Which one of the following could be an accurate matching of the sales representatives to the sales zones in which they work?", "options": [ "A) Zone 1: Kim, Parra Zone 2: Stuckey, Udall Zone 3: Mahr, Quinn, Tiao", "B) Zone 1: Kim, Tiao Zone 2: Stuckey, Udall Zone 3: Mahr, Parra, Quinn", "C) Zone 1: Parra, Quinn Zone 2: Kim, Udall Zone 3: Mahr, Stuckey, Tiao", "D) Zone 1: Stuckey, Udall Zone 2: Kim, Tiao Zone 3: Mahr, Parra, Quinn", "E) Zone 1: Tiao Zone 2: Kim, Parra, Quinn Zone 3: Stuckey, Udall" ], "answer": "B" }, { "id": "ar_lsat_201206_3-G_3_13", "context": "A software company employs exactly seven sales representatives—Kim, Mahr, Parra, Quinn, Stuckey, Tiao, and Udall—to work in its three sales zones—Zone 1, Zone 2, and Zone 3. Each sales representative works in exactly one of the sales zones, in accordance with the following conditions: Either Parra or Tiao (but not both) works in Zone 1. Either Tiao or Udall (but not both) works in Zone 2. Parra and Quinn work in the same sales zone as each other. Stuckey and Udall work in the same sales zone as each other. There are more of the sales representatives working in Zone 3 than in Zone 2.", "question": "If more sales representatives work in Zone 1 than in Zone 3, then which one of the following could be true?", "options": [ "A) Kim works in Zone 2.", "B) Mahr works in Zone 2.", "C) Parra works in Zone 3.", "D) Tiao works in Zone 1.", "E) Udall works in Zone 3." ], "answer": "E" }, { "id": "ar_lsat_201206_3-G_3_14", "context": "A software company employs exactly seven sales representatives—Kim, Mahr, Parra, Quinn, Stuckey, Tiao, and Udall—to work in its three sales zones—Zone 1, Zone 2, and Zone 3. Each sales representative works in exactly one of the sales zones, in accordance with the following conditions: Either Parra or Tiao (but not both) works in Zone 1. Either Tiao or Udall (but not both) works in Zone 2. Parra and Quinn work in the same sales zone as each other. Stuckey and Udall work in the same sales zone as each other. There are more of the sales representatives working in Zone 3 than in Zone 2.", "question": "Which one of the following must be false?", "options": [ "A) Kim and Stuckey both work in Zone 1.", "B) Kim and Stuckey both work in Zone 3.", "C) Mahr and Stuckey both work in Zone 3.", "D) Mahr and Udall both work in Zone 3.", "E) Parra and Stuckey both work in Zone I." ], "answer": "A" }, { "id": "ar_lsat_201206_3-G_3_15", "context": "A software company employs exactly seven sales representatives—Kim, Mahr, Parra, Quinn, Stuckey, Tiao, and Udall—to work in its three sales zones—Zone 1, Zone 2, and Zone 3. Each sales representative works in exactly one of the sales zones, in accordance with the following conditions: Either Parra or Tiao (but not both) works in Zone 1. Either Tiao or Udall (but not both) works in Zone 2. Parra and Quinn work in the same sales zone as each other. Stuckey and Udall work in the same sales zone as each other. There are more of the sales representatives working in Zone 3 than in Zone 2.", "question": "Which one of the following could be a complete and accurate list of the sales representatives working in Zone 3?", "options": [ "A) Kim, Mahr", "B) Kim, Tiao", "C) Parra, Quinn", "D) Stuckey, Tiao, Udall", "E) Parra, Quinn, Stuckey, Udall" ], "answer": "A" }, { "id": "ar_lsat_201206_3-G_3_16", "context": "A software company employs exactly seven sales representatives—Kim, Mahr, Parra, Quinn, Stuckey, Tiao, and Udall—to work in its three sales zones—Zone 1, Zone 2, and Zone 3. Each sales representative works in exactly one of the sales zones, in accordance with the following conditions: Either Parra or Tiao (but not both) works in Zone 1. Either Tiao or Udall (but not both) works in Zone 2. Parra and Quinn work in the same sales zone as each other. Stuckey and Udall work in the same sales zone as each other. There are more of the sales representatives working in Zone 3 than in Zone 2.", "question": "Quinn CANNOT work in the same sales zone as which one of the following?", "options": [ "A) Kim", "B) Mahr", "C) Stuckey", "D) Tiao", "E) Udall" ], "answer": "D" }, { "id": "ar_lsat_201206_3-G_3_17", "context": "A software company employs exactly seven sales representatives—Kim, Mahr, Parra, Quinn, Stuckey, Tiao, and Udall—to work in its three sales zones—Zone 1, Zone 2, and Zone 3. Each sales representative works in exactly one of the sales zones, in accordance with the following conditions: Either Parra or Tiao (but not both) works in Zone 1. Either Tiao or Udall (but not both) works in Zone 2. Parra and Quinn work in the same sales zone as each other. Stuckey and Udall work in the same sales zone as each other. There are more of the sales representatives working in Zone 3 than in Zone 2.", "question": "If Mahr and Stuckey work in the same sales zone, then which one of the following could be true?", "options": [ "A) Kim works in Zone 2.", "B) Mahr works in Zone 1.", "C) Parra works in Zone 3.", "D) Stuckey works in Zone 2.", "E) Tiao works in Zone 1." ], "answer": "A" }, { "id": "ar_lsat_201206_3-G_4_18", "context": "During a recital, two pianists—Wayne and Zara—will perform solos. There will be five solos altogether, performed one immediately after another. Each solo will be either a modern piece or a traditional piece. The choice of pianist and type of piece for the solos must conform to the following conditions: The third solo is a traditional piece. Exactly two of the traditional pieces are performed consecutively. In the fourth solo, either Wayne performs a traditional piece or Zara performs a modern piece. The pianist who performs the second solo does not perform the fifth solo. No traditional piece is performed until Wayne performs at least one modem piece.", "question": "Which one of the following could be all of the solos that are traditional pieces?", "options": [ "A) the first, third, and fourth", "B) the second, third, and fourth", "C) the third and fourth", "D) the third and fifth", "E) the fourth and fifth" ], "answer": "C" }, { "id": "ar_lsat_201206_3-G_4_19", "context": "During a recital, two pianists—Wayne and Zara—will perform solos. There will be five solos altogether, performed one immediately after another. Each solo will be either a modern piece or a traditional piece. The choice of pianist and type of piece for the solos must conform to the following conditions: The third solo is a traditional piece. Exactly two of the traditional pieces are performed consecutively. In the fourth solo, either Wayne performs a traditional piece or Zara performs a modern piece. The pianist who performs the second solo does not perform the fifth solo. No traditional piece is performed until Wayne performs at least one modem piece.", "question": "What is the minimum number of solos in which Wayne performs a traditional piece?", "options": [ "A) zero", "B) one", "C) two", "D) three", "E) four" ], "answer": "A" }, { "id": "ar_lsat_201206_3-G_4_20", "context": "During a recital, two pianists—Wayne and Zara—will perform solos. There will be five solos altogether, performed one immediately after another. Each solo will be either a modern piece or a traditional piece. The choice of pianist and type of piece for the solos must conform to the following conditions: The third solo is a traditional piece. Exactly two of the traditional pieces are performed consecutively. In the fourth solo, either Wayne performs a traditional piece or Zara performs a modern piece. The pianist who performs the second solo does not perform the fifth solo. No traditional piece is performed until Wayne performs at least one modem piece.", "question": "If the pianist who performs the first solo also performs the second solo, then which one of the following must be true?", "options": [ "A) Zara performs the first solo.", "B) Wayne performs the third solo.", "C) Zara performs the fifth solo.", "D) The second solo is a traditional piece.", "E) The fourth solo is a modem piece." ], "answer": "C" }, { "id": "ar_lsat_201206_3-G_4_21", "context": "During a recital, two pianists—Wayne and Zara—will perform solos. There will be five solos altogether, performed one immediately after another. Each solo will be either a modern piece or a traditional piece. The choice of pianist and type of piece for the solos must conform to the following conditions: The third solo is a traditional piece. Exactly two of the traditional pieces are performed consecutively. In the fourth solo, either Wayne performs a traditional piece or Zara performs a modern piece. The pianist who performs the second solo does not perform the fifth solo. No traditional piece is performed until Wayne performs at least one modem piece.", "question": "If the fifth solo is a traditional piece, then for exactly determined?", "options": [ "A) one", "B) two", "C) three", "D) four", "E) five" ], "answer": "B" }, { "id": "ar_lsat_201206_3-G_4_22", "context": "During a recital, two pianists—Wayne and Zara—will perform solos. There will be five solos altogether, performed one immediately after another. Each solo will be either a modern piece or a traditional piece. The choice of pianist and type of piece for the solos must conform to the following conditions: The third solo is a traditional piece. Exactly two of the traditional pieces are performed consecutively. In the fourth solo, either Wayne performs a traditional piece or Zara performs a modern piece. The pianist who performs the second solo does not perform the fifth solo. No traditional piece is performed until Wayne performs at least one modem piece.", "question": "If in the fifth solo Wayne performs a traditional piece, which one of the following could be true?", "options": [ "A) Zara performs the first solo.", "B) Wayne performs the second solo.", "C) Zara performs the third solo.", "D) The second solo is a modem piece.", "E) The fourth solo is a traditional piece." ], "answer": "C" }, { "id": "ar_lsat_201212_4-G_1_1", "context": "A realtor will show a prospective buyer seven houses—J, K, L, M, N, 0, and P—during a single day. The first and second houses to be shown will be shown in the morning; the third, fourth, and fifth houses to be shown will be shown in the afternoon; the sixth and seventh houses to be shown will be shown in the evening. The houses will be shown according to the following rules: J must be shown in the evening. K cannot be shown in the morning. L must be shown at some time after K is shown and at some time before M is shown.", "question": "Which one of the following could be the order, from first through seventh, in which the realtor shows the houses?", "options": [ "A) K, 0, L, M, N, J, P", "B) N, L, P, K, M, 0, J", "C) 0, P, K, L, N, M, J", "D) 0, P, M, N, K, L, J", "E) P, 0, K, J, L, N, M" ], "answer": "C" }, { "id": "ar_lsat_201212_4-G_1_2", "context": "A realtor will show a prospective buyer seven houses—J, K, L, M, N, 0, and P—during a single day. The first and second houses to be shown will be shown in the morning; the third, fourth, and fifth houses to be shown will be shown in the afternoon; the sixth and seventh houses to be shown will be shown in the evening. The houses will be shown according to the following rules: J must be shown in the evening. K cannot be shown in the morning. L must be shown at some time after K is shown and at some time before M is shown.", "question": "Which one of the following is a pair of houses that CANNOT be shown consecutively in either order?", "options": [ "A) J, K", "B) J, M", "C) J, O", "D) J, P", "E) M, P" ], "answer": "A" }, { "id": "ar_lsat_201212_4-G_1_3", "context": "A realtor will show a prospective buyer seven houses—J, K, L, M, N, 0, and P—during a single day. The first and second houses to be shown will be shown in the morning; the third, fourth, and fifth houses to be shown will be shown in the afternoon; the sixth and seventh houses to be shown will be shown in the evening. The houses will be shown according to the following rules: J must be shown in the evening. K cannot be shown in the morning. L must be shown at some time after K is shown and at some time before M is shown.", "question": "Which one of the following must be true?", "options": [ "A) K is shown in the evening.", "B) L is shown in the afternoon.", "C) L is shown in the evening.", "D) M is shown in the morning.", "E) M is shown in the afternoon." ], "answer": "B" }, { "id": "ar_lsat_201212_4-G_1_4", "context": "A realtor will show a prospective buyer seven houses—J, K, L, M, N, 0, and P—during a single day. The first and second houses to be shown will be shown in the morning; the third, fourth, and fifth houses to be shown will be shown in the afternoon; the sixth and seventh houses to be shown will be shown in the evening. The houses will be shown according to the following rules: J must be shown in the evening. K cannot be shown in the morning. L must be shown at some time after K is shown and at some time before M is shown.", "question": "Which one of the following could be true?", "options": [ "A) K is shown at some time after J is shown.", "B) L is shown at some time after J is shown.", "C) P is shown at some time after J is shown.", "D) Both N and O are shown at some time after M is", "E) Both N and P are shown at some time after K is" ], "answer": "C" }, { "id": "ar_lsat_201212_4-G_1_5", "context": "A realtor will show a prospective buyer seven houses—J, K, L, M, N, 0, and P—during a single day. The first and second houses to be shown will be shown in the morning; the third, fourth, and fifth houses to be shown will be shown in the afternoon; the sixth and seventh houses to be shown will be shown in the evening. The houses will be shown according to the following rules: J must be shown in the evening. K cannot be shown in the morning. L must be shown at some time after K is shown and at some time before M is shown.", "question": "If P is shown in the afternoon, which one of the following must be true?", "options": [ "A) J is shown seventh.", "B) K is shown third.", "C) N is shown first.", "D) M is shown in the afternoon.", "E) O is shown in the morning." ], "answer": "E" }, { "id": "ar_lsat_201212_4-G_2_6", "context": "Exactly five witnesses—Franco, Garcia, Hong, Iturbe, and Jackson—are to be scheduled to testify at a hearing that is to take exactly three days of one week—Monday, Tuesday, and Wednesday. Each witness testifies on exactly one day of the hearing. The schedule must meet the following conditions: Franco does not testify on the same day that Garcia testifies. Iturbe testifies on Wednesday. Exactly two witnesses testify on Tuesday. Hong does not testify on Monday. At least one witness testifies on Monday.", "question": "Which one of the following is an acceptable schedule of witnesses?", "options": [ "A) Monday: Franco Tuesday: Hong and Iturbe Wednesday: Garcia and Jackson", "B) Monday: Franco and Hong Tuesday: Iturbe and Jackson Wednesday: Garcia", "C) Monday: Garcia Tuesday: Franco and Iturbe Wednesday: Hong and Jackson", "D) Monday: Garcia and Jackson Tuesday: Franco and Hong Wednesday: Iturbe", "E) Monday: Garcia and Jackson Tuesday: Hong Wednesday: Franco and Iturbe" ], "answer": "D" }, { "id": "ar_lsat_201212_4-G_2_7", "context": "Exactly five witnesses—Franco, Garcia, Hong, Iturbe, and Jackson—are to be scheduled to testify at a hearing that is to take exactly three days of one week—Monday, Tuesday, and Wednesday. Each witness testifies on exactly one day of the hearing. The schedule must meet the following conditions: Franco does not testify on the same day that Garcia testifies. Iturbe testifies on Wednesday. Exactly two witnesses testify on Tuesday. Hong does not testify on Monday. At least one witness testifies on Monday.", "question": "Which one of the following CANNOT be true of the schedule?", "options": [ "A) Franco is the only witness scheduled to testify on Monday.", "B) Franco is scheduled to testify on the same day as Iturbe.", "C) Garcia and Hong are both scheduled to testify on Tuesday.", "D) Garcia is the only witness scheduled to testify on Monday and Hong is one of two witnesses scheduled to testify on Wednesday.", "E) Jackson is scheduled to testify on Tuesday and two witnesses are scheduled to testify on Monday." ], "answer": "E" }, { "id": "ar_lsat_201212_4-G_2_8", "context": "Exactly five witnesses—Franco, Garcia, Hong, Iturbe, and Jackson—are to be scheduled to testify at a hearing that is to take exactly three days of one week—Monday, Tuesday, and Wednesday. Each witness testifies on exactly one day of the hearing. The schedule must meet the following conditions: Franco does not testify on the same day that Garcia testifies. Iturbe testifies on Wednesday. Exactly two witnesses testify on Tuesday. Hong does not testify on Monday. At least one witness testifies on Monday.", "question": "If Jackson is scheduled to testify on Wednesday, which one of the following must be true of the schedule?", "options": [ "A) Franco is scheduled to testify on Monday.", "B) Garcia is scheduled to testify on Monday.", "C) Exactly one witness is scheduled to testify on Monday.", "D) Exactly two witnesses are scheduled to testify on Monday.", "E) Garcia is scheduled to testify on the same day as Hong." ], "answer": "C" }, { "id": "ar_lsat_201212_4-G_2_9", "context": "Exactly five witnesses—Franco, Garcia, Hong, Iturbe, and Jackson—are to be scheduled to testify at a hearing that is to take exactly three days of one week—Monday, Tuesday, and Wednesday. Each witness testifies on exactly one day of the hearing. The schedule must meet the following conditions: Franco does not testify on the same day that Garcia testifies. Iturbe testifies on Wednesday. Exactly two witnesses testify on Tuesday. Hong does not testify on Monday. At least one witness testifies on Monday.", "question": "If Jackson is the only witness scheduled to testify on Monday, which one of the following must be true of the schedule?", "options": [ "A) Franco is scheduled to testify on Wednesday.", "B) Hong is scheduled to testify on Tuesday.", "C) Garcia is scheduled to testify on Tuesday.", "D) Franco is scheduled to testify on the same day as Hong.", "E) Garcia is scheduled to testify on the same day as Hong." ], "answer": "B" }, { "id": "ar_lsat_201212_4-G_2_10", "context": "Exactly five witnesses—Franco, Garcia, Hong, Iturbe, and Jackson—are to be scheduled to testify at a hearing that is to take exactly three days of one week—Monday, Tuesday, and Wednesday. Each witness testifies on exactly one day of the hearing. The schedule must meet the following conditions: Franco does not testify on the same day that Garcia testifies. Iturbe testifies on Wednesday. Exactly two witnesses testify on Tuesday. Hong does not testify on Monday. At least one witness testifies on Monday.", "question": "If Franco is scheduled to testify on the same day as Hong, which one of the following must be true of the schedule?", "options": [ "A) Franco is scheduled to testify on Wednesday.", "B) Garcia is scheduled to testify on Monday.", "C) Garcia is scheduled to testify on Wednesday.", "D) Hong is scheduled to testify on Tuesday.", "E) Iturbe is the only witness scheduled to testify on Wednesday." ], "answer": "D" }, { "id": "ar_lsat_201212_4-G_3_11", "context": "A maintenance company that takes service requests from three clients—Image, Solide, and Truvest—plans to set targets for its average service response times. Service targets will be set at 3 days, 2 days, or 1 day. Two service targets are set for each client—one for requests received through the maintenance company's website and one for requests received by voicemail. The six targets are set according to the following conditions: None of the clients can have a website target that is longer than its voicemail target. Image's voicemail target must be shorter than the other clients' voicemail targets. Solide's website target must be shorter than Truvest's website target.", "question": "If none of the clients has a voicemail target of 3 days, then each of the following must be true EXCEPT:", "options": [ "A) Image's website target is 1 day.", "B) Solide's website target is 2 days.", "C) Solide's voicemail target is 2 days.", "D) Truvest's website target is 2 days.", "E) Truvest's voicemail target is 2 days." ], "answer": "B" }, { "id": "ar_lsat_201212_4-G_3_12", "context": "A maintenance company that takes service requests from three clients—Image, Solide, and Truvest—plans to set targets for its average service response times. Service targets will be set at 3 days, 2 days, or 1 day. Two service targets are set for each client—one for requests received through the maintenance company's website and one for requests received by voicemail. The six targets are set according to the following conditions: None of the clients can have a website target that is longer than its voicemail target. Image's voicemail target must be shorter than the other clients' voicemail targets. Solide's website target must be shorter than Truvest's website target.", "question": "If Truvest's website target is shorter than its voicemail target, which one of the following must be true?", "options": [ "A) Image's voicemail target is 2 days.", "B) Image's website target is 2 days.", "C) Image's website target is 1 day.", "D) Solide's website target is 2 days.", "E) Solide's website target is 1 day." ], "answer": "E" }, { "id": "ar_lsat_201212_4-G_3_13", "context": "A maintenance company that takes service requests from three clients—Image, Solide, and Truvest—plans to set targets for its average service response times. Service targets will be set at 3 days, 2 days, or 1 day. Two service targets are set for each client—one for requests received through the maintenance company's website and one for requests received by voicemail. The six targets are set according to the following conditions: None of the clients can have a website target that is longer than its voicemail target. Image's voicemail target must be shorter than the other clients' voicemail targets. Solide's website target must be shorter than Truvest's website target.", "question": "If Image's website target is 2 days, which one of the following targets must also be 2 days?", "options": [ "A) Image's voicemail target", "B) Solide's website target", "C) Solide's voicemail target", "D) Truvest's website target", "E) Truvest's voicemail target" ], "answer": "A" }, { "id": "ar_lsat_201212_4-G_3_14", "context": "A maintenance company that takes service requests from three clients—Image, Solide, and Truvest—plans to set targets for its average service response times. Service targets will be set at 3 days, 2 days, or 1 day. Two service targets are set for each client—one for requests received through the maintenance company's website and one for requests received by voicemail. The six targets are set according to the following conditions: None of the clients can have a website target that is longer than its voicemail target. Image's voicemail target must be shorter than the other clients' voicemail targets. Solide's website target must be shorter than Truvest's website target.", "question": "If Solide's voicemail target is shorter than Truvest's website target, which one of the following targets could be 2 days?", "options": [ "A) Image's website target", "B) Image's voicemail target", "C) Solide's website target", "D) Truvest's voicemail target", "E) Truvest's website target" ], "answer": "C" }, { "id": "ar_lsat_201212_4-G_3_15", "context": "A maintenance company that takes service requests from three clients—Image, Solide, and Truvest—plans to set targets for its average service response times. Service targets will be set at 3 days, 2 days, or 1 day. Two service targets are set for each client—one for requests received through the maintenance company's website and one for requests received by voicemail. The six targets are set according to the following conditions: None of the clients can have a website target that is longer than its voicemail target. Image's voicemail target must be shorter than the other clients' voicemail targets. Solide's website target must be shorter than Truvest's website target.", "question": "Which one of the following targets CANNOT be set for more than one of the clients?", "options": [ "A) a 1-day website target", "B) a 2-day voicemail target", "C) a 2-day website target", "D) a 3-day voicemail target", "E) a 3-day website target" ], "answer": "E" }, { "id": "ar_lsat_201212_4-G_3_16", "context": "A maintenance company that takes service requests from three clients—Image, Solide, and Truvest—plans to set targets for its average service response times. Service targets will be set at 3 days, 2 days, or 1 day. Two service targets are set for each client—one for requests received through the maintenance company's website and one for requests received by voicemail. The six targets are set according to the following conditions: None of the clients can have a website target that is longer than its voicemail target. Image's voicemail target must be shorter than the other clients' voicemail targets. Solide's website target must be shorter than Truvest's website target.", "question": "If none of the clients has a website target of 2 days, which one of the following could be true?", "options": [ "A) Image's website target is shorter than Solide's.", "B) Solide's website target is shorter than Image's.", "C) Solide's voicemail target is shorter than Truvest's.", "D) Truvest's website target is shorter than Image's.", "E) Truvest's voicemail target is shorter than Solide's." ], "answer": "C" }, { "id": "ar_lsat_201212_4-G_4_17", "context": "An editor will edit seven articles, one at a time. Three of the articles—G, H, and J—cover finance; three other articles—Q, R, and S—cover nutrition; and the remaining article, Y, covers wildlife. The order in which the articles are edited is subject to the following conditions: Consecutive articles cannot cover the same topic as each other. S can be earlier than Q only if Q is third. S must be earlier than Y. J must be earlier than G, and G must be earlier than R.", "question": "Which one of the following is an acceptable order for editing the articles, from first through seventh?", "options": [ "A) H, S, J, Q, Y, G, R", "B) J, Q, G, H, S, Y, R", "C) Q, J, S, H, Y, G, R", "D) Q, J, Y, S, G, R, H", "E) S, G, Q, J, Y, R, H" ], "answer": "C" }, { "id": "ar_lsat_201212_4-G_4_18", "context": "An editor will edit seven articles, one at a time. Three of the articles—G, H, and J—cover finance; three other articles—Q, R, and S—cover nutrition; and the remaining article, Y, covers wildlife. The order in which the articles are edited is subject to the following conditions: Consecutive articles cannot cover the same topic as each other. S can be earlier than Q only if Q is third. S must be earlier than Y. J must be earlier than G, and G must be earlier than R.", "question": "If Y is fourth, which one of the following must be true?", "options": [ "A) J is second.", "B) J is third", "C) Q is first.", "D) Q is third", "E) R is seventh." ], "answer": "A" }, { "id": "ar_lsat_201212_4-G_4_19", "context": "An editor will edit seven articles, one at a time. Three of the articles—G, H, and J—cover finance; three other articles—Q, R, and S—cover nutrition; and the remaining article, Y, covers wildlife. The order in which the articles are edited is subject to the following conditions: Consecutive articles cannot cover the same topic as each other. S can be earlier than Q only if Q is third. S must be earlier than Y. J must be earlier than G, and G must be earlier than R.", "question": "If G is fourth, which one of the following could be true?", "options": [ "A) H is fifth.", "B) J is first.", "C) Q is second.", "D) S is fifth", "E) Y is sixth." ], "answer": "E" }, { "id": "ar_lsat_201212_4-G_4_20", "context": "An editor will edit seven articles, one at a time. Three of the articles—G, H, and J—cover finance; three other articles—Q, R, and S—cover nutrition; and the remaining article, Y, covers wildlife. The order in which the articles are edited is subject to the following conditions: Consecutive articles cannot cover the same topic as each other. S can be earlier than Q only if Q is third. S must be earlier than Y. J must be earlier than G, and G must be earlier than R.", "question": "Which one of the following could be true?", "options": [ "A) G is second", "B) H is second.", "C) S is second", "D) R is third.", "E) Y is third" ], "answer": "B" }, { "id": "ar_lsat_201212_4-G_4_21", "context": "An editor will edit seven articles, one at a time. Three of the articles—G, H, and J—cover finance; three other articles—Q, R, and S—cover nutrition; and the remaining article, Y, covers wildlife. The order in which the articles are edited is subject to the following conditions: Consecutive articles cannot cover the same topic as each other. S can be earlier than Q only if Q is third. S must be earlier than Y. J must be earlier than G, and G must be earlier than R.", "question": "If J is third, which one of the following could be true?", "options": [ "A) G is fourth", "B) His sixth", "C) Q is first", "D) S is second", "E) Y is fifth" ], "answer": "E" }, { "id": "ar_lsat_201212_4-G_4_22", "context": "An editor will edit seven articles, one at a time. Three of the articles—G, H, and J—cover finance; three other articles—Q, R, and S—cover nutrition; and the remaining article, Y, covers wildlife. The order in which the articles are edited is subject to the following conditions: Consecutive articles cannot cover the same topic as each other. S can be earlier than Q only if Q is third. S must be earlier than Y. J must be earlier than G, and G must be earlier than R.", "question": "In the order in which the articles are edited, S could be in any of the following positions EXCEPT:", "options": [ "A) first", "B) third", "C) fourth", "D) fifth", "E) sixth" ], "answer": "D" }, { "id": "ar_lsat_201212_4-G_4_23", "context": "An editor will edit seven articles, one at a time. Three of the articles—G, H, and J—cover finance; three other articles—Q, R, and S—cover nutrition; and the remaining article, Y, covers wildlife. The order in which the articles are edited is subject to the following conditions: Consecutive articles cannot cover the same topic as each other. S can be earlier than Q only if Q is third. S must be earlier than Y. J must be earlier than G, and G must be earlier than R.", "question": "The order in which the articles are edited is fully determined if which one of the following is true?", "options": [ "A) H is fourth.", "B) H is sixth.", "C) R is fourth.", "D) R is seventh.", "E) Y is fifth." ], "answer": "C" }, { "id": "ar_lsat_201310_3-G_1_1", "context": "A concert promoter is filling the six slots at a benefit concert. The slots, from earliest to latest, are numbered slot one through slot six. The slots will be filled by six bands—Uneasy, Vegemite, Wellspring, Xpert, Yardsign, and Zircon. Each band will perform in just one slot. The order must meet the following constraints: Vegemite performs in an earlier slot than Zircon. Wellspring and Zircon each perform in an earlier slot than Xpert. Uneasy performs in one of the last three slots. Yardsign performs in one of the first three slots.", "question": "Which one of the following CANNOT be the band that performs in slot five?", "options": [ "A) Uneasy", "B) Veqemite", "C) Wellspring", "D) Xpert", "E) Zircon" ], "answer": "B" }, { "id": "ar_lsat_201310_3-G_1_2", "context": "A concert promoter is filling the six slots at a benefit concert. The slots, from earliest to latest, are numbered slot one through slot six. The slots will be filled by six bands—Uneasy, Vegemite, Wellspring, Xpert, Yardsign, and Zircon. Each band will perform in just one slot. The order must meet the following constraints: Vegemite performs in an earlier slot than Zircon. Wellspring and Zircon each perform in an earlier slot than Xpert. Uneasy performs in one of the last three slots. Yardsign performs in one of the first three slots.", "question": "If Zircon performs in an earlier slot than Yardsign, which one of the following is the earliest slot in which Wellspring could perform?", "options": [ "A) two", "B) three", "C) four", "D) five", "E) six" ], "answer": "C" }, { "id": "ar_lsat_201310_3-G_1_3", "context": "A concert promoter is filling the six slots at a benefit concert. The slots, from earliest to latest, are numbered slot one through slot six. The slots will be filled by six bands—Uneasy, Vegemite, Wellspring, Xpert, Yardsign, and Zircon. Each band will perform in just one slot. The order must meet the following constraints: Vegemite performs in an earlier slot than Zircon. Wellspring and Zircon each perform in an earlier slot than Xpert. Uneasy performs in one of the last three slots. Yardsign performs in one of the first three slots.", "question": "If Veqemite performs in slot three, which one of the following must be true?", "options": [ "A) Uneasy performs in an earlier slot than Xpert.", "B) Wellspring performs in an earlier slot than zircon", "C) Xpert performs in an earlier slot than Uneasy", "D) Yardsign performs in an earlier slot than, wellspring", "E) Zircon performs in an earlier slot than Uneasy." ], "answer": "B" }, { "id": "ar_lsat_201310_3-G_1_4", "context": "A concert promoter is filling the six slots at a benefit concert. The slots, from earliest to latest, are numbered slot one through slot six. The slots will be filled by six bands—Uneasy, Vegemite, Wellspring, Xpert, Yardsign, and Zircon. Each band will perform in just one slot. The order must meet the following constraints: Vegemite performs in an earlier slot than Zircon. Wellspring and Zircon each perform in an earlier slot than Xpert. Uneasy performs in one of the last three slots. Yardsign performs in one of the first three slots.", "question": "If Zircon performs immediately before Wellspring, which one of the following must be true?", "options": [ "A) Uneasy performs in slot five.", "B) Vegemite performs in slot one.", "C) Xpert performs in slot five.", "D) Yardsign performs in slot two.", "E) Zircon performs in slot three." ], "answer": "E" }, { "id": "ar_lsat_201310_3-G_1_5", "context": "A concert promoter is filling the six slots at a benefit concert. The slots, from earliest to latest, are numbered slot one through slot six. The slots will be filled by six bands—Uneasy, Vegemite, Wellspring, Xpert, Yardsign, and Zircon. Each band will perform in just one slot. The order must meet the following constraints: Vegemite performs in an earlier slot than Zircon. Wellspring and Zircon each perform in an earlier slot than Xpert. Uneasy performs in one of the last three slots. Yardsign performs in one of the first three slots.", "question": "Which one of the following is a complete and accurate list of bands any one of which could be the band that performs in slot one?", "options": [ "A) Yardsign", "B) Vegemite, Wellspring", "C) Vegemite, Yardsign", "D) Vegemite, Wellspring, Yardsign", "E) Vegemite, Wellspring, Yardsign, Zircon" ], "answer": "D" }, { "id": "ar_lsat_201310_3-G_1_6", "context": "A concert promoter is filling the six slots at a benefit concert. The slots, from earliest to latest, are numbered slot one through slot six. The slots will be filled by six bands—Uneasy, Vegemite, Wellspring, Xpert, Yardsign, and Zircon. Each band will perform in just one slot. The order must meet the following constraints: Vegemite performs in an earlier slot than Zircon. Wellspring and Zircon each perform in an earlier slot than Xpert. Uneasy performs in one of the last three slots. Yardsign performs in one of the first three slots.", "question": "If Wellspring performs immediately before Xpert, which one of the following could be true?", "options": [ "A) Uneasy performs in slot five.", "B) Vegemite performs in slot three.", "C) Wellspring performs in slot three.", "D) Zircon performs in slot two.", "E) Zircon performs in slot four." ], "answer": "D" }, { "id": "ar_lsat_201310_3-G_1_7", "context": "A concert promoter is filling the six slots at a benefit concert. The slots, from earliest to latest, are numbered slot one through slot six. The slots will be filled by six bands—Uneasy, Vegemite, Wellspring, Xpert, Yardsign, and Zircon. Each band will perform in just one slot. The order must meet the following constraints: Vegemite performs in an earlier slot than Zircon. Wellspring and Zircon each perform in an earlier slot than Xpert. Uneasy performs in one of the last three slots. Yardsign performs in one of the first three slots.", "question": "Which one of the following, if substituted for the constraint that Wellspring and Zircon each perform in an earlier slot than Xpert, would have the same effect in determining the order in which the bands perform?", "options": [ "A) Only Uneasy can perform in a later slot than Xpert.", "B) Vegemite performs in an earlier slot than Wellspring, which performs in an earlier slot than Zircon.", "C) Vegemite and Wellspring each perform in an earlier slot than Xpert.", "D) Xpert performs either immediately before or immediately after Uneasy.", "E) Xpert performs in either slot five or slot six." ], "answer": "A" }, { "id": "ar_lsat_201310_3-G_2_8", "context": "A corporate manager is selecting employees for a research team. The team will include at least four employees, all from among the following eight: Myers, Ortega, Paine, Schmidt, Thomson, Wong, Yoder, and Zayre. The selection is constrained by the following conditions: If Myers is on the team, neither Ortega nor Paine can be. If Schmidt is on the team, both Paine and Thomson must also be. If Wong is on the team, both Myers and Yoder must also be.", "question": "Which one of the following is a possible selection of employees for the team?", "options": [ "A) Myers, Paine, Schmidt, and Thomson", "B) Ortega, Paine, Thomson, and Zayre", "C) Paine, Schmidt, Yoder, and Zayre", "D) Schmidt, Thomson, Yoder, and Zayre", "E) Thomson, Wong, Yoder, and Zayre" ], "answer": "B" }, { "id": "ar_lsat_201310_3-G_2_9", "context": "A corporate manager is selecting employees for a research team. The team will include at least four employees, all from among the following eight: Myers, Ortega, Paine, Schmidt, Thomson, Wong, Yoder, and Zayre. The selection is constrained by the following conditions: If Myers is on the team, neither Ortega nor Paine can be. If Schmidt is on the team, both Paine and Thomson must also be. If Wong is on the team, both Myers and Yoder must also be.", "question": "Which one of the following is a pair of employees who CANNOT be on the team together?", "options": [ "A) Myers and Thomson", "B) Ortega and Yoder", "C) Paine and Zayre", "D) Schmidt and Wong", "E) Wong and Yoder" ], "answer": "D" }, { "id": "ar_lsat_201310_3-G_2_10", "context": "A corporate manager is selecting employees for a research team. The team will include at least four employees, all from among the following eight: Myers, Ortega, Paine, Schmidt, Thomson, Wong, Yoder, and Zayre. The selection is constrained by the following conditions: If Myers is on the team, neither Ortega nor Paine can be. If Schmidt is on the team, both Paine and Thomson must also be. If Wong is on the team, both Myers and Yoder must also be.", "question": "If Yoder is not on the team, then any of the following could be on the team EXCEPT:", "options": [ "A) Zayre", "B) Thomson", "C) Paine", "D) Ortega", "E) Myers" ], "answer": "E" }, { "id": "ar_lsat_201310_3-G_2_11", "context": "A corporate manager is selecting employees for a research team. The team will include at least four employees, all from among the following eight: Myers, Ortega, Paine, Schmidt, Thomson, Wong, Yoder, and Zayre. The selection is constrained by the following conditions: If Myers is on the team, neither Ortega nor Paine can be. If Schmidt is on the team, both Paine and Thomson must also be. If Wong is on the team, both Myers and Yoder must also be.", "question": "If Paine is not on the team, which one of the following could be true?", "options": [ "A) Neither Myers nor Ortega is on the team.", "B) Neither Myers nor Thomson is on the team.", "C) Neither Myers nor Zayre is on the team.", "D) Neither Ortega nor Thomson is on the team.", "E) Neither Ortega nor Yoder is on the team." ], "answer": "D" }, { "id": "ar_lsat_201310_3-G_2_12", "context": "A corporate manager is selecting employees for a research team. The team will include at least four employees, all from among the following eight: Myers, Ortega, Paine, Schmidt, Thomson, Wong, Yoder, and Zayre. The selection is constrained by the following conditions: If Myers is on the team, neither Ortega nor Paine can be. If Schmidt is on the team, both Paine and Thomson must also be. If Wong is on the team, both Myers and Yoder must also be.", "question": "Which one of the following is a pair of employees at least one of whom must be on the team?", "options": [ "A) Ortega and Schmidt", "B) Ortega and Wong", "C) Paine and Schmidt", "D) Thomson and Yoder", "E) Yoder and Zayre" ], "answer": "D" }, { "id": "ar_lsat_201310_3-G_3_13", "context": "Exactly five movies are showing at the repertory theater this evening: a horror film, a mystery, a romance, a sci-fi film, and a western. Each movie is shown exactly once, on one of the theater's three screens: screens 1, 2, and 3. Screens 1 and 2 show two movies each, one beginning at 7 P.M. and the other at 9 P.M.; screen 3 shows exactly one movie, at 8 P.M. The following conditions apply to this evening's schedule: The western begins at some time before the horror film does. The sci-fi film is not shown on screen 3. The romance is not shown on screen 2. The horror film and the mystery are shown on different screens.", "question": "Which one of the following is an acceptable schedule of the movies for this evening?", "options": [ "A) screen 1: romance at 7 P.M., horror film at 9 P.M. screen 2: western at 7 P.M., sci-fi film at 9 P.M. screen 3: mystery at 8 P.M.", "B) screen 1: mystery at 7 P.M., romance at 9 P.M. screen 2: horror film at 7 P.M., sci-fi film at 9 P.M. screen 3: western at 8 P.M.", "C) screen 1: western at 7 P.M., sci-fi film at 9 P.M. screen 2: mystery at 7 P.M., horror film at 9 P.M. screen 3: romance at 8 P.M.", "D) screen 1: romance at 7 P.M., mystery at 9 P.M. screen 2: western at 7 P.M., horror film at 9 P.M. screen 3: sci-fi film at 8 P.M.", "E) screen 1: western at 7 P.M., mystery at 9 P.M. screen 2: sci-fi film at 7 P.M., romance at 9 P.M. screen 3: horror film at 8 P.M." ], "answer": "A" }, { "id": "ar_lsat_201310_3-G_3_14", "context": "Exactly five movies are showing at the repertory theater this evening: a horror film, a mystery, a romance, a sci-fi film, and a western. Each movie is shown exactly once, on one of the theater's three screens: screens 1, 2, and 3. Screens 1 and 2 show two movies each, one beginning at 7 P.M. and the other at 9 P.M.; screen 3 shows exactly one movie, at 8 P.M. The following conditions apply to this evening's schedule: The western begins at some time before the horror film does. The sci-fi film is not shown on screen 3. The romance is not shown on screen 2. The horror film and the mystery are shown on different screens.", "question": "Which one of the following CANNOT be an accurate list of the movies scheduled to be shown on screen 2 this evening, listing the 7 P.M. movie first?", "options": [ "A) the sci-fi film, the horror film", "B) the sci-fi film, the mystery", "C) the sci-fi film, the western", "D) the western, the horror film", "E) the western, the mystery" ], "answer": "D" }, { "id": "ar_lsat_201310_3-G_3_15", "context": "Exactly five movies are showing at the repertory theater this evening: a horror film, a mystery, a romance, a sci-fi film, and a western. Each movie is shown exactly once, on one of the theater's three screens: screens 1, 2, and 3. Screens 1 and 2 show two movies each, one beginning at 7 P.M. and the other at 9 P.M.; screen 3 shows exactly one movie, at 8 P.M. The following conditions apply to this evening's schedule: The western begins at some time before the horror film does. The sci-fi film is not shown on screen 3. The romance is not shown on screen 2. The horror film and the mystery are shown on different screens.", "question": "If the western and the sci-fi film are scheduled to be shown on the same screen, then which one of the following could be true of this evening's schedule?", "options": [ "A) The horror film is shown on screen 2.", "B) The mystery begins at 9 P.M.", "C) The romance is shown on screen 3.", "D) The sci-fi film begins at 7 P.M.", "E) The western begins at 8 P.M." ], "answer": "B" }, { "id": "ar_lsat_201310_3-G_3_16", "context": "Exactly five movies are showing at the repertory theater this evening: a horror film, a mystery, a romance, a sci-fi film, and a western. Each movie is shown exactly once, on one of the theater's three screens: screens 1, 2, and 3. Screens 1 and 2 show two movies each, one beginning at 7 P.M. and the other at 9 P.M.; screen 3 shows exactly one movie, at 8 P.M. The following conditions apply to this evening's schedule: The western begins at some time before the horror film does. The sci-fi film is not shown on screen 3. The romance is not shown on screen 2. The horror film and the mystery are shown on different screens.", "question": "If the romance is scheduled to begin before the western does, then which one of the following must be true of this evening's schedule?", "options": [ "A) The horror film is shown on screen 1.", "B) The mystery begins at 7 P.M.", "C) The mystery is shown on screen 2.", "D) The sci-fi film begins at 9 P.M.", "E) The sci-fi film is shown on screen 2." ], "answer": "E" }, { "id": "ar_lsat_201310_3-G_3_17", "context": "Exactly five movies are showing at the repertory theater this evening: a horror film, a mystery, a romance, a sci-fi film, and a western. Each movie is shown exactly once, on one of the theater's three screens: screens 1, 2, and 3. Screens 1 and 2 show two movies each, one beginning at 7 P.M. and the other at 9 P.M.; screen 3 shows exactly one movie, at 8 P.M. The following conditions apply to this evening's schedule: The western begins at some time before the horror film does. The sci-fi film is not shown on screen 3. The romance is not shown on screen 2. The horror film and the mystery are shown on different screens.", "question": "Which one of the following CANNOT be an accurate list of the movies scheduled to be shown on screen 1 this evening, listing the 7 P.M. movie first?", "options": [ "A) the sci-fi film, the horror film", "B) the sci-fi film, the mystery", "C) the western, the horror film", "D) the western, the mystery", "E) the western, the sci-fi film" ], "answer": "E" }, { "id": "ar_lsat_201310_3-G_3_18", "context": "Exactly five movies are showing at the repertory theater this evening: a horror film, a mystery, a romance, a sci-fi film, and a western. Each movie is shown exactly once, on one of the theater's three screens: screens 1, 2, and 3. Screens 1 and 2 show two movies each, one beginning at 7 P.M. and the other at 9 P.M.; screen 3 shows exactly one movie, at 8 P.M. The following conditions apply to this evening's schedule: The western begins at some time before the horror film does. The sci-fi film is not shown on screen 3. The romance is not shown on screen 2. The horror film and the mystery are shown on different screens.", "question": "If the sci-fi film and the romance are to be shown on the same screen, then which one of the following must be true of this evening's schedule?", "options": [ "A) The western begins at 7 P.M.", "B) The sci-fi film begins at 9 P.M.", "C) The mystery begins at 8 P.M.", "D) The romance begins at 9 P.M.", "E) The horror film begins at 8 P.M." ], "answer": "A" }, { "id": "ar_lsat_201310_3-G_4_19", "context": "A naturalist will give five lectures, each on a different type of bird: oystercatchers, petrels, rails, sandpipers, or terns. The lectures must be given in either Gladwyn Hall or Howard Auditorium, in an order that meets the following conditions: The first lecture is in Gladwyn Hall. The fourth lecture is in Howard Auditorium. Exactly three of the lectures are in Gladwyn Hall. The lecture on sandpipers is in Howard Auditorium and is given earlier than the lecture on oystercatchers. The lecture on terns is given earlier than the lecture on petrels, which is in Gladwyn Hall.", "question": "Which one of the following is an acceptable order for the lectures, from first to fifth?", "options": [ "A) oystercatchers, petrels, rails, sandpipers, terns", "B) petrels, sandpipers, oystercatchers, terns, rails", "C) rails, sandpipers, terns, petrels, oystercatchers", "D) sandpipers, terns, oystercatchers, rails, petrels", "E) terns, petrels, sandpipers, oystercatchers, rails" ], "answer": "E" }, { "id": "ar_lsat_201310_3-G_4_20", "context": "A naturalist will give five lectures, each on a different type of bird: oystercatchers, petrels, rails, sandpipers, or terns. The lectures must be given in either Gladwyn Hall or Howard Auditorium, in an order that meets the following conditions: The first lecture is in Gladwyn Hall. The fourth lecture is in Howard Auditorium. Exactly three of the lectures are in Gladwyn Hall. The lecture on sandpipers is in Howard Auditorium and is given earlier than the lecture on oystercatchers. The lecture on terns is given earlier than the lecture on petrels, which is in Gladwyn Hall.", "question": "Which one of the following must be false?", "options": [ "A) The first and second lectures are both in Gladwyn Hall.", "B) The second and third lectures are both in Howard Auditorium.", "C) The second and fifth lectures are both in Gladwyn Hall.", "D) The third and fourth lectures are both in Howard Auditorium.", "E) The third and fifth lectures are both in Gladwyn Hall" ], "answer": "B" }, { "id": "ar_lsat_201310_3-G_4_21", "context": "A naturalist will give five lectures, each on a different type of bird: oystercatchers, petrels, rails, sandpipers, or terns. The lectures must be given in either Gladwyn Hall or Howard Auditorium, in an order that meets the following conditions: The first lecture is in Gladwyn Hall. The fourth lecture is in Howard Auditorium. Exactly three of the lectures are in Gladwyn Hall. The lecture on sandpipers is in Howard Auditorium and is given earlier than the lecture on oystercatchers. The lecture on terns is given earlier than the lecture on petrels, which is in Gladwyn Hall.", "question": "If the lecture on terns is given in Howard Auditorium, which one of the following could be true of the third lecture?", "options": [ "A) It is on oystercatchers and is in Gladwyn Hall.", "B) It is on rails and is in Howard Auditorium.", "C) It is on rails and is in Gladwyn Hall.", "D) It is on sandpipers and is in Howard Auditorium.", "E) It is on terns and is in Howard Auditorium." ], "answer": "A" }, { "id": "ar_lsat_201310_3-G_4_22", "context": "A naturalist will give five lectures, each on a different type of bird: oystercatchers, petrels, rails, sandpipers, or terns. The lectures must be given in either Gladwyn Hall or Howard Auditorium, in an order that meets the following conditions: The first lecture is in Gladwyn Hall. The fourth lecture is in Howard Auditorium. Exactly three of the lectures are in Gladwyn Hall. The lecture on sandpipers is in Howard Auditorium and is given earlier than the lecture on oystercatchers. The lecture on terns is given earlier than the lecture on petrels, which is in Gladwyn Hall.", "question": "Which one of the following could be true of the fifth lecture?", "options": [ "A) It is on oystercatchers and is in Gladwyn Hall.", "B) It is on petrels and is in Howard Auditorium.", "C) It is on rails and is in Howard Auditorium.", "D) It is on sandpipers and is in Howard Auditorium.", "E) It is on terns and is in Gladwyn Hall." ], "answer": "A" }, { "id": "ar_lsat_201310_3-G_4_23", "context": "A naturalist will give five lectures, each on a different type of bird: oystercatchers, petrels, rails, sandpipers, or terns. The lectures must be given in either Gladwyn Hall or Howard Auditorium, in an order that meets the following conditions: The first lecture is in Gladwyn Hall. The fourth lecture is in Howard Auditorium. Exactly three of the lectures are in Gladwyn Hall. The lecture on sandpipers is in Howard Auditorium and is given earlier than the lecture on oystercatchers. The lecture on terns is given earlier than the lecture on petrels, which is in Gladwyn Hall.", "question": "If the third lecture is on sandpipers, which one of the following could be true?", "options": [ "A) The second lecture is on oystercatchers and is in Gladwyn Hall.", "B) The fifth lecture is on oystercatchers and is in Howard Auditorium.", "C) The second lecture is on rails and is in Howard Auditorium.", "D) The second lecture is on terns and is in Gladwyn Hall.", "E) The fourth lecture is on terns and is in Howard Auditorium." ], "answer": "D" }, { "id": "ar_lsat_201412_2-G_1_1", "context": "A concert is given by a six-member band—guitarist, keyboard player, percussionist, saxophonist, trumpeter, violinist. During the concert, each member performs exactly one solo. The following restrictions apply: The guitarist does not perform the fourth solo. The percussionist performs a solo at some time before the keyboard player does. The keyboard player performs a solo at some time after the violinist does and at some time before the guitarist does. The saxophonist performs a solo at some time after either the percussionist does or the trumpeter does, but not both.", "question": "Which one of the following is an acceptable ordering of solos from first to last?", "options": [ "A) violinist, percussionist, saxophonist, guitarist, trumpeter, keyboard player", "B) percussionist, violinist, keyboard player, trumpeter, saxophonist, guitarist", "C) violinist, trumpeter, saxophonist, percussionist, keyboard player, guitarist", "D) keyboard player, trumpeter, violinist, saxophonist, guitarist, percussionist", "E) guitarist, violinist, keyboard player, percussionist, saxophonist, trumpeter" ], "answer": "C" }, { "id": "ar_lsat_201412_2-G_1_2", "context": "A concert is given by a six-member band—guitarist, keyboard player, percussionist, saxophonist, trumpeter, violinist. During the concert, each member performs exactly one solo. The following restrictions apply: The guitarist does not perform the fourth solo. The percussionist performs a solo at some time before the keyboard player does. The keyboard player performs a solo at some time after the violinist does and at some time before the guitarist does. The saxophonist performs a solo at some time after either the percussionist does or the trumpeter does, but not both.", "question": "If the percussionist performs a solo at some time before the saxophonist does, then which one of the following must be true?", "options": [ "A) The percussionist performs the first solo.", "B) The percussionist performs the second solo.", "C) The violinist performs a solo at some time before the saxophonist does.", "D) The percussionist performs a solo at some time before the trumpeter does.", "E) The saxophonist performs a solo at some time before the keyboard player does." ], "answer": "D" }, { "id": "ar_lsat_201412_2-G_1_3", "context": "A concert is given by a six-member band—guitarist, keyboard player, percussionist, saxophonist, trumpeter, violinist. During the concert, each member performs exactly one solo. The following restrictions apply: The guitarist does not perform the fourth solo. The percussionist performs a solo at some time before the keyboard player does. The keyboard player performs a solo at some time after the violinist does and at some time before the guitarist does. The saxophonist performs a solo at some time after either the percussionist does or the trumpeter does, but not both.", "question": "Each of the following must be false EXCEPT:", "options": [ "A) The keyboard player performs the first solo.", "B) The guitarist performs the second solo.", "C) The guitarist performs a solo at some time before the saxophonist does.", "D) The guitarist performs a solo at some time before the percussionist does.", "E) The keyboard player performs a solo at some time before the saxophonist does." ], "answer": "E" }, { "id": "ar_lsat_201412_2-G_1_4", "context": "A concert is given by a six-member band—guitarist, keyboard player, percussionist, saxophonist, trumpeter, violinist. During the concert, each member performs exactly one solo. The following restrictions apply: The guitarist does not perform the fourth solo. The percussionist performs a solo at some time before the keyboard player does. The keyboard player performs a solo at some time after the violinist does and at some time before the guitarist does. The saxophonist performs a solo at some time after either the percussionist does or the trumpeter does, but not both.", "question": "Which one of the following CANNOT perform the third", "options": [ "A) guitarist", "B) keyboard player", "C) saxophonist", "D) trumpeter", "E) violinist" ], "answer": "A" }, { "id": "ar_lsat_201412_2-G_1_5", "context": "A concert is given by a six-member band—guitarist, keyboard player, percussionist, saxophonist, trumpeter, violinist. During the concert, each member performs exactly one solo. The following restrictions apply: The guitarist does not perform the fourth solo. The percussionist performs a solo at some time before the keyboard player does. The keyboard player performs a solo at some time after the violinist does and at some time before the guitarist does. The saxophonist performs a solo at some time after either the percussionist does or the trumpeter does, but not both.", "question": "If the violinist performs the fourth solo, then each of the following must be true EXCEPT:", "options": [ "A) The percussionist performs a solo at some time before the violinist does.", "B) The trumpeter performs a solo at some time before the violinist does.", "C) The trumpeter performs a solo at some time before the guitarist does.", "D) The saxophonist performs a solo at some time before the violinist does.", "E) The trumpeter performs a solo at some time before the saxophonist does." ], "answer": "E" }, { "id": "ar_lsat_201412_2-G_2_6", "context": "Four art historians—Farley, Garcia, Holden, and Jiang—will give a series of four public lectures, each lecture on a different topic—lithographs, oil paintings, sculptures, and watercolors. The lectures will be given one at a time, with each art historian giving a lecture on a different one of the topics. The schedule of the lectures is subject to the following constraints: The oil paintings lecture and the watercolors lecture must both be earlier than the lithographs lecture. Farley's lecture must be earlier than the oil paintings lecture. Holden's lecture must be earlier than both Garcia's lecture and Jiang's lecture.", "question": "Which one of the following is an acceptable ordering of the lectures, from first to fourth?", "options": [ "A) Farley: sculptures; Holden: lithographs; Garcia: oil paintings; Jiang: watercolors", "B) Farley: watercolors; Jiang: oil paintings; Holden: sculptures; Garcia: lithographs", "C) Garcia: sculptures; Farley: watercolors; Holden: oil paintings; Jiang: lithographs", "D) Holden: oil paintings; Jiang: watercolors; Farley: lithographs; Garcia: sculptures", "E) Holden: sculptures; Farley: watercolors; Jiang: oil paintings; Garcia: lithographs" ], "answer": "E" }, { "id": "ar_lsat_201412_2-G_2_7", "context": "Four art historians—Farley, Garcia, Holden, and Jiang—will give a series of four public lectures, each lecture on a different topic—lithographs, oil paintings, sculptures, and watercolors. The lectures will be given one at a time, with each art historian giving a lecture on a different one of the topics. The schedule of the lectures is subject to the following constraints: The oil paintings lecture and the watercolors lecture must both be earlier than the lithographs lecture. Farley's lecture must be earlier than the oil paintings lecture. Holden's lecture must be earlier than both Garcia's lecture and Jiang's lecture.", "question": "Which one of the following must be true?", "options": [ "A) Farley's lecture is earlier than the sculptures lecture.", "B) Holden's lecture is earlier than the lithographs lecture.", "C) The sculptures lecture is earlier than Garcia's lecture.", "D) The sculptures lecture is earlier than Jiang's lecture.", "E) The watercolors lecture is earlier than Garcia's lecture." ], "answer": "B" }, { "id": "ar_lsat_201412_2-G_2_8", "context": "Four art historians—Farley, Garcia, Holden, and Jiang—will give a series of four public lectures, each lecture on a different topic—lithographs, oil paintings, sculptures, and watercolors. The lectures will be given one at a time, with each art historian giving a lecture on a different one of the topics. The schedule of the lectures is subject to the following constraints: The oil paintings lecture and the watercolors lecture must both be earlier than the lithographs lecture. Farley's lecture must be earlier than the oil paintings lecture. Holden's lecture must be earlier than both Garcia's lecture and Jiang's lecture.", "question": "If the watercolors lecture is third, which one of the following could be true?", "options": [ "A) Farley gives the watercolors lecture.", "B) Garcia gives the oil paintings lecture.", "C) Garcia gives the sculptures lecture.", "D) Holden gives the sculptures lecture.", "E) Jiang gives the lithographs lecture." ], "answer": "E" }, { "id": "ar_lsat_201412_2-G_2_9", "context": "Four art historians—Farley, Garcia, Holden, and Jiang—will give a series of four public lectures, each lecture on a different topic—lithographs, oil paintings, sculptures, and watercolors. The lectures will be given one at a time, with each art historian giving a lecture on a different one of the topics. The schedule of the lectures is subject to the following constraints: The oil paintings lecture and the watercolors lecture must both be earlier than the lithographs lecture. Farley's lecture must be earlier than the oil paintings lecture. Holden's lecture must be earlier than both Garcia's lecture and Jiang's lecture.", "question": "Which one of the following CANNOT be true?", "options": [ "A) Farley gives the lithographs lecture.", "B) Garcia gives the sculptures lecture.", "C) Garcia gives the watercolors lecture.", "D) Holden gives the oil paintings lecture.", "E) Jiang gives the watercolors lecture." ], "answer": "A" }, { "id": "ar_lsat_201412_2-G_2_10", "context": "Four art historians—Farley, Garcia, Holden, and Jiang—will give a series of four public lectures, each lecture on a different topic—lithographs, oil paintings, sculptures, and watercolors. The lectures will be given one at a time, with each art historian giving a lecture on a different one of the topics. The schedule of the lectures is subject to the following constraints: The oil paintings lecture and the watercolors lecture must both be earlier than the lithographs lecture. Farley's lecture must be earlier than the oil paintings lecture. Holden's lecture must be earlier than both Garcia's lecture and Jiang's lecture.", "question": "If Garcia gives the sculptures lecture, which one of the following could be true?", "options": [ "A) The lithographs lecture is third.", "B) The oil paintings lecture is third.", "C) The sculptures lecture is first.", "D) The sculptures lecture is second.", "E) The watercolors lecture is second." ], "answer": "A" }, { "id": "ar_lsat_201412_2-G_3_11", "context": "Three rugs will be woven out of colored thread. Six colors of thread are available—forest, olive, peach, turquoise, white, and yellow—exactly five of which will be used to weave the rugs. Each color that is used will be used in only one of the rugs. The rugs are either solid—woven in a single color—or multicolored. The rugs must be woven according to the following rules: In any rug in which white is used, two other colors are also used. In any rug in which olive is used, peach is also used. Forest and turquoise are not used together in a rug. Peach and turquoise are not used together in a rug. Peach and yellow are not used together in a rug.", "question": "Which one of the following could be the colors of the three rugs?", "options": [ "A) forest only; turquoise only; olive, peach, and white", "B) forest only; turquoise only; olive, peach, and yellow", "C) peach only; turquoise only; forest, olive, and white", "D) yellow only; forest and turquoise; olive and peach", "E) yellow only; olive and peach; turquoise and white" ], "answer": "A" }, { "id": "ar_lsat_201412_2-G_3_12", "context": "Three rugs will be woven out of colored thread. Six colors of thread are available—forest, olive, peach, turquoise, white, and yellow—exactly five of which will be used to weave the rugs. Each color that is used will be used in only one of the rugs. The rugs are either solid—woven in a single color—or multicolored. The rugs must be woven according to the following rules: In any rug in which white is used, two other colors are also used. In any rug in which olive is used, peach is also used. Forest and turquoise are not used together in a rug. Peach and turquoise are not used together in a rug. Peach and yellow are not used together in a rug.", "question": "Which one of the following must be true?", "options": [ "A) There are no multicolored rugs in which forest is used.", "B) There are no multicolored rugs in which turquoise is used.", "C) Peach is used in one of the rugs.", "D) Turquoise is used in one of the rugs.", "E) Yellow is used in one of the rugs." ], "answer": "C" }, { "id": "ar_lsat_201412_2-G_3_13", "context": "Three rugs will be woven out of colored thread. Six colors of thread are available—forest, olive, peach, turquoise, white, and yellow—exactly five of which will be used to weave the rugs. Each color that is used will be used in only one of the rugs. The rugs are either solid—woven in a single color—or multicolored. The rugs must be woven according to the following rules: In any rug in which white is used, two other colors are also used. In any rug in which olive is used, peach is also used. Forest and turquoise are not used together in a rug. Peach and turquoise are not used together in a rug. Peach and yellow are not used together in a rug.", "question": "If one of the rugs is solid peach, which one of the following must be true?", "options": [ "A) One of the rugs is solid forest.", "B) One of the rugs is solid turquoise.", "C) One of the rugs is solid yellow.", "D) Forest and white are used together in a rug.", "E) White and yellow are used together in a rug." ], "answer": "E" }, { "id": "ar_lsat_201412_2-G_3_14", "context": "Three rugs will be woven out of colored thread. Six colors of thread are available—forest, olive, peach, turquoise, white, and yellow—exactly five of which will be used to weave the rugs. Each color that is used will be used in only one of the rugs. The rugs are either solid—woven in a single color—or multicolored. The rugs must be woven according to the following rules: In any rug in which white is used, two other colors are also used. In any rug in which olive is used, peach is also used. Forest and turquoise are not used together in a rug. Peach and turquoise are not used together in a rug. Peach and yellow are not used together in a rug.", "question": "If there are exactly two solid rugs, then the colors of those two rugs CANNOT be", "options": [ "A) forest and peach", "B) forest and yellow", "C) peach and turquoise", "D) peach and yellow", "E) turquoise and yellow" ], "answer": "D" }, { "id": "ar_lsat_201412_2-G_3_15", "context": "Three rugs will be woven out of colored thread. Six colors of thread are available—forest, olive, peach, turquoise, white, and yellow—exactly five of which will be used to weave the rugs. Each color that is used will be used in only one of the rugs. The rugs are either solid—woven in a single color—or multicolored. The rugs must be woven according to the following rules: In any rug in which white is used, two other colors are also used. In any rug in which olive is used, peach is also used. Forest and turquoise are not used together in a rug. Peach and turquoise are not used together in a rug. Peach and yellow are not used together in a rug.", "question": "If forest and peach are used together in a rug, which one of the following could be true?", "options": [ "A) There is exactly one solid rug.", "B) White is not used in any of the rugs.", "C) Yellow is not used in any of the rugs.", "D) Turquoise and white are used together in a rug.", "E) Turquoise and yellow are used together in a rug." ], "answer": "B" }, { "id": "ar_lsat_201412_2-G_3_16", "context": "Three rugs will be woven out of colored thread. Six colors of thread are available—forest, olive, peach, turquoise, white, and yellow—exactly five of which will be used to weave the rugs. Each color that is used will be used in only one of the rugs. The rugs are either solid—woven in a single color—or multicolored. The rugs must be woven according to the following rules: In any rug in which white is used, two other colors are also used. In any rug in which olive is used, peach is also used. Forest and turquoise are not used together in a rug. Peach and turquoise are not used together in a rug. Peach and yellow are not used together in a rug.", "question": "If one of the rugs is solid yellow, then any of the following could be true EXCEPT:", "options": [ "A) There is exactly one solid color rug.", "B) One of the rugs is solid forest.", "C) Turquoise is not used in any of the rugs.", "D) Forest and olive are used together in a rug.", "E) Peach and white are used together in a rug." ], "answer": "A" }, { "id": "ar_lsat_201412_2-G_4_17", "context": "The manager of a photography business must assign at least two photographers to each of two graduation ceremonies—one at Silva University and the other at Thorne University. Exactly six photographers are available—Frost, Gonzalez, Heideck, Knutson, Lai, and Mays—but not all have to be assigned. No photographer can be assigned to both ceremonies. The following constraints apply: Frost must be assigned together with Heideck to one of the graduation ceremonies. If Lai and Mays are both assigned, it must be to different ceremonies. If Gonzalez is assigned to the Silva University ceremony, then Lai must be assigned to the Thorne University ceremony. If Knutson is not assigned to the Thorne University ceremony, then both Heideck and Mays must be assigned to it.", "question": "Which one of the following is an acceptable assignment of photographers to the two graduation ceremonies?", "options": [ "A) Silva University: Gonzalez, Lai Thorne University: Frost, Heideck, Mays", "B) Silva University: Gonzalez, Mays Thorne University: Knutson, Lai", "C) Silva University: Frost, Gonzalez, Heideck Thorne University: Knutson, Lai, Mays", "D) Silva University: Frost, Heideck, Mays Thorne University: Gonzalez, Lai", "E) Silva University: Frost, Heideck, Mays Thorne University: Gonzalez, Knutson, Lai" ], "answer": "E" }, { "id": "ar_lsat_201412_2-G_4_18", "context": "The manager of a photography business must assign at least two photographers to each of two graduation ceremonies—one at Silva University and the other at Thorne University. Exactly six photographers are available—Frost, Gonzalez, Heideck, Knutson, Lai, and Mays—but not all have to be assigned. No photographer can be assigned to both ceremonies. The following constraints apply: Frost must be assigned together with Heideck to one of the graduation ceremonies. If Lai and Mays are both assigned, it must be to different ceremonies. If Gonzalez is assigned to the Silva University ceremony, then Lai must be assigned to the Thorne University ceremony. If Knutson is not assigned to the Thorne University ceremony, then both Heideck and Mays must be assigned to it.", "question": "If Heideck is assigned to the same graduation ceremony as Lai, then which one of the following must be true?", "options": [ "A) Frost is assigned to the Thorne University ceremony.", "B) Gonzalez is assigned to the Silva University ceremony.", "C) Gonzalez is assigned to neither graduation ceremony.", "D) Knutson is assigned to the Thorne University ceremony.", "E) Lai is assigned to the Thorne University ceremony." ], "answer": "D" }, { "id": "ar_lsat_201412_2-G_4_19", "context": "The manager of a photography business must assign at least two photographers to each of two graduation ceremonies—one at Silva University and the other at Thorne University. Exactly six photographers are available—Frost, Gonzalez, Heideck, Knutson, Lai, and Mays—but not all have to be assigned. No photographer can be assigned to both ceremonies. The following constraints apply: Frost must be assigned together with Heideck to one of the graduation ceremonies. If Lai and Mays are both assigned, it must be to different ceremonies. If Gonzalez is assigned to the Silva University ceremony, then Lai must be assigned to the Thorne University ceremony. If Knutson is not assigned to the Thorne University ceremony, then both Heideck and Mays must be assigned to it.", "question": "Which one of the following could be the complete assignment of photographers to the Silva University ceremony?", "options": [ "A) Frost, Gonzalez, Heideck, Knutson", "B) Frost, Gonzalez, Heideck", "C) Gonzalez, Knutson", "D) Heideck, Lai", "E) Knutson, Mays" ], "answer": "B" }, { "id": "ar_lsat_201412_2-G_4_20", "context": "The manager of a photography business must assign at least two photographers to each of two graduation ceremonies—one at Silva University and the other at Thorne University. Exactly six photographers are available—Frost, Gonzalez, Heideck, Knutson, Lai, and Mays—but not all have to be assigned. No photographer can be assigned to both ceremonies. The following constraints apply: Frost must be assigned together with Heideck to one of the graduation ceremonies. If Lai and Mays are both assigned, it must be to different ceremonies. If Gonzalez is assigned to the Silva University ceremony, then Lai must be assigned to the Thorne University ceremony. If Knutson is not assigned to the Thorne University ceremony, then both Heideck and Mays must be assigned to it.", "question": "Which one of the following is a complete and accurate list of all of the photographers who must be assigned?", "options": [ "A) Frost, Heideck", "B) Frost, Heideck, Knutson", "C) Frost, Heideck, Knutson, Lai", "D) Frost, Gonzalez, Heideck", "E) Frost, Gonzalez, Heideck, Mays" ], "answer": "B" }, { "id": "ar_lsat_201412_2-G_4_21", "context": "The manager of a photography business must assign at least two photographers to each of two graduation ceremonies—one at Silva University and the other at Thorne University. Exactly six photographers are available—Frost, Gonzalez, Heideck, Knutson, Lai, and Mays—but not all have to be assigned. No photographer can be assigned to both ceremonies. The following constraints apply: Frost must be assigned together with Heideck to one of the graduation ceremonies. If Lai and Mays are both assigned, it must be to different ceremonies. If Gonzalez is assigned to the Silva University ceremony, then Lai must be assigned to the Thorne University ceremony. If Knutson is not assigned to the Thorne University ceremony, then both Heideck and Mays must be assigned to it.", "question": "If exactly four of the photographers are assigned to the graduation ceremonies, then which one of the following must be assigned to the Silva University ceremony?", "options": [ "A) Frost", "B) Gonzalez", "C) Knutson", "D) Lai", "E) Mays" ], "answer": "A" }, { "id": "ar_lsat_201412_2-G_4_22", "context": "The manager of a photography business must assign at least two photographers to each of two graduation ceremonies—one at Silva University and the other at Thorne University. Exactly six photographers are available—Frost, Gonzalez, Heideck, Knutson, Lai, and Mays—but not all have to be assigned. No photographer can be assigned to both ceremonies. The following constraints apply: Frost must be assigned together with Heideck to one of the graduation ceremonies. If Lai and Mays are both assigned, it must be to different ceremonies. If Gonzalez is assigned to the Silva University ceremony, then Lai must be assigned to the Thorne University ceremony. If Knutson is not assigned to the Thorne University ceremony, then both Heideck and Mays must be assigned to it.", "question": "Which one of the following CANNOT be the complete assignment of photographers to the Thorne University ceremony?", "options": [ "A) Frost, Gonzalez, Heideck, Mays", "B) Frost, Heideck, Knutson, Mays", "C) Gonzalez, Knutson, Lai", "D) Gonzalez, Knutson, Mays", "E) Knutson, Mays" ], "answer": "B" }, { "id": "ar_lsat_201412_2-G_4_23", "context": "The manager of a photography business must assign at least two photographers to each of two graduation ceremonies—one at Silva University and the other at Thorne University. Exactly six photographers are available—Frost, Gonzalez, Heideck, Knutson, Lai, and Mays—but not all have to be assigned. No photographer can be assigned to both ceremonies. The following constraints apply: Frost must be assigned together with Heideck to one of the graduation ceremonies. If Lai and Mays are both assigned, it must be to different ceremonies. If Gonzalez is assigned to the Silva University ceremony, then Lai must be assigned to the Thorne University ceremony. If Knutson is not assigned to the Thorne University ceremony, then both Heideck and Mays must be assigned to it.", "question": "Which one of the following, if substituted for the constraint that if Knutson is not assigned to the Thorne University ceremony, then both Heideck and Mays must be assigned to it, would have the same effect in determining the assignment of photographers to the graduation ceremonies?", "options": [ "A) If Knutson is assigned to the Silva University ceremony, then Heideck and Mays cannot both be assigned to that ceremony.", "B) If Knutson is assigned to the Silva University ceremony, then Lai must also be assigned to that ceremony.", "C) Unless Knutson is assigned to the Thorne University ceremony, both Frost and Mays must be assigned to that ceremony.", "D) Unless Knutson is assigned to the Thorne University ceremony, Heideck cannot be assigned to the same ceremony as Lai.", "E) Unless either Heideck or Mays is assigned to the Thorne University ceremony, Knutson must be assigned to that ceremony." ], "answer": "C" }, { "id": "ar_lsat_201510_3-G_1_1", "context": "A detective is trying to determine the order in which a criminal recruited seven accomplices—Peters, Quinn, Rovero, Stanton, Tao, Villas, and White. In addition to discovering that the suspect recruited the accomplices one at a time, the detective has established the following: Stanton was recruited neither immediately before nor immediately after Tao. Quinn was recruited earlier than Rovero. Villas was recruited immediately before White. Peters was recruited fourth.", "question": "Which one of the following could be the order in which the accomplices were recruited, from first to last?", "options": [ "A) Quinn, Tao, Stanton, Peters, Villas, White, Rovero", "B) Quinn, White, Rovero, Peters, Stanton, Villas, Tao", "C) Villas, White, Quinn, Stanton, Peters, Tao, Rovero", "D) Villas, White, Stanton, Peters, Quinn, Tao, Rovero", "E) Villas, White, Stanton, Peters, Rovero, Tao, Quinn" ], "answer": "D" }, { "id": "ar_lsat_201510_3-G_1_2", "context": "A detective is trying to determine the order in which a criminal recruited seven accomplices—Peters, Quinn, Rovero, Stanton, Tao, Villas, and White. In addition to discovering that the suspect recruited the accomplices one at a time, the detective has established the following: Stanton was recruited neither immediately before nor immediately after Tao. Quinn was recruited earlier than Rovero. Villas was recruited immediately before White. Peters was recruited fourth.", "question": "Which one of the following could be the list of the middle five accomplices, in the order in which they were recruited, from second to sixth?", "options": [ "A) Quinn, Stanton, Peters, Tao, Villas", "B) Quinn, Stanton, Peters, Tao, White", "C) Villas, White, Peters, Quinn, Stanton", "D) Villas, White, Peters, Rovero, Stanton", "E) Villas, White, Quinn, Rovero, Stanton" ], "answer": "C" }, { "id": "ar_lsat_201510_3-G_1_3", "context": "A detective is trying to determine the order in which a criminal recruited seven accomplices—Peters, Quinn, Rovero, Stanton, Tao, Villas, and White. In addition to discovering that the suspect recruited the accomplices one at a time, the detective has established the following: Stanton was recruited neither immediately before nor immediately after Tao. Quinn was recruited earlier than Rovero. Villas was recruited immediately before White. Peters was recruited fourth.", "question": "If Tao was recruited second, which one of the following could be true?", "options": [ "A) Quinn was recruited third.", "B) Rovero was recruited fifth.", "C) Stanton was recruited sixth.", "D) Villas was recruited sixth.", "E) White was recruited third." ], "answer": "D" }, { "id": "ar_lsat_201510_3-G_1_4", "context": "A detective is trying to determine the order in which a criminal recruited seven accomplices—Peters, Quinn, Rovero, Stanton, Tao, Villas, and White. In addition to discovering that the suspect recruited the accomplices one at a time, the detective has established the following: Stanton was recruited neither immediately before nor immediately after Tao. Quinn was recruited earlier than Rovero. Villas was recruited immediately before White. Peters was recruited fourth.", "question": "f Quinn was recruited immediately before Rovero, then Stanton CANNOT have been recruited", "options": [ "A) first", "B) second", "C) third", "D) fifth", "E) seventh" ], "answer": "B" }, { "id": "ar_lsat_201510_3-G_1_5", "context": "A detective is trying to determine the order in which a criminal recruited seven accomplices—Peters, Quinn, Rovero, Stanton, Tao, Villas, and White. In addition to discovering that the suspect recruited the accomplices one at a time, the detective has established the following: Stanton was recruited neither immediately before nor immediately after Tao. Quinn was recruited earlier than Rovero. Villas was recruited immediately before White. Peters was recruited fourth.", "question": "If White was recruited earlier than Rovero and if Rovero was recruited earlier than Tao, then which one of the following could be true?", "options": [ "A) Quinn was recruited first.", "B) Rovero was recruited third.", "C) Stanton was recruited second.", "D) Tao was recruited sixth.", "E) Villas was recruited sixth." ], "answer": "A" }, { "id": "ar_lsat_201510_3-G_1_6", "context": "A detective is trying to determine the order in which a criminal recruited seven accomplices—Peters, Quinn, Rovero, Stanton, Tao, Villas, and White. In addition to discovering that the suspect recruited the accomplices one at a time, the detective has established the following: Stanton was recruited neither immediately before nor immediately after Tao. Quinn was recruited earlier than Rovero. Villas was recruited immediately before White. Peters was recruited fourth.", "question": "If White was recruited immediately before Quinn, which one of the following must have been recruited sixth?", "options": [ "A) Quinn", "B) Rovero", "C) Stanton", "D) Villas", "E) White" ], "answer": "B" }, { "id": "ar_lsat_201510_3-G_2_7", "context": "In the Lifestyle, Metro, and Sports sections of tomorrow's newspaper, a total of six different photographs are to appear, exactly two photographs per section. Each of the available photographs was taken by one of three photographers: Fuentes, Gagnon, and Hue. Selection of the photographs is constrained by the following conditions: For each photographer, at least one but no more than three of that photographers photographs must appear. At least one photograph in the Lifestyle section must be by a photographer who has at least one photograph in the Metro section. The number of Hue's photographs in the Lifestyle section must be the same as the number of Fuentes photographs in the Sports section. None of Gagnon's photographs can be in the Sports section.", "question": "which one of the following could be an acceptable selection of the photographs to appear?", "options": [ "A) Lifestyle: both photographs by Fuentes Metro: one photograph by Fuentes and one by Hue Sports: one photograph by Gagnon and one by Hue", "B) Lifestyle: one photograph by Fuentes and one by Gagnon Metro: one photograph by Fuentes and one by Gagnon Sports: both photographs by Hue", "C) Lifestyle: both photographs by Fuentes Metro: both photographs by Gagnon Sports: both photographs by Hue", "D) Lifestyle: both photographs by Gagnon Metro: one photograph by Fuentes and one by Gagnon Sports: one photograph by Fuentes and one by Hue", "E) Lifestyle: one photograph by Gagnon and one by Hue Metro: both photographs by Hue Sports: one photograph by Fuentes and one by Hue" ], "answer": "B" }, { "id": "ar_lsat_201510_3-G_2_8", "context": "In the Lifestyle, Metro, and Sports sections of tomorrow's newspaper, a total of six different photographs are to appear, exactly two photographs per section. Each of the available photographs was taken by one of three photographers: Fuentes, Gagnon, and Hue. Selection of the photographs is constrained by the following conditions: For each photographer, at least one but no more than three of that photographers photographs must appear. At least one photograph in the Lifestyle section must be by a photographer who has at least one photograph in the Metro section. The number of Hue's photographs in the Lifestyle section must be the same as the number of Fuentes photographs in the Sports section. None of Gagnon's photographs can be in the Sports section.", "question": "If both photographs in the Lifestyle section are by Hue, then which one of the following must be true of the six photographs?", "options": [ "A) Exactly one is by Fuentes.", "B) Exactly three are by Fuentes.", "C) Exactly one is by Gagnon.", "D) Exactly two are by Gagnon.", "E) Exactly two are by Hue." ], "answer": "C" }, { "id": "ar_lsat_201510_3-G_2_9", "context": "In the Lifestyle, Metro, and Sports sections of tomorrow's newspaper, a total of six different photographs are to appear, exactly two photographs per section. Each of the available photographs was taken by one of three photographers: Fuentes, Gagnon, and Hue. Selection of the photographs is constrained by the following conditions: For each photographer, at least one but no more than three of that photographers photographs must appear. At least one photograph in the Lifestyle section must be by a photographer who has at least one photograph in the Metro section. The number of Hue's photographs in the Lifestyle section must be the same as the number of Fuentes photographs in the Sports section. None of Gagnon's photographs can be in the Sports section.", "question": "If one photograph in the Lifestyle section is by Gagnon and one is by Hue, then which one of the following must be true?", "options": [ "A) Exactly one photograph in the Metro section is by Fuentes.", "B) Exactly one photograph in the Metro section is by Gagnon.", "C) Both photographs in the Metro section are by Gagnon.", "D) Exactly one photograph in the Sports section is by Hue.", "E) Both photographs in the Sports section are by Hue." ], "answer": "D" }, { "id": "ar_lsat_201510_3-G_2_10", "context": "In the Lifestyle, Metro, and Sports sections of tomorrow's newspaper, a total of six different photographs are to appear, exactly two photographs per section. Each of the available photographs was taken by one of three photographers: Fuentes, Gagnon, and Hue. Selection of the photographs is constrained by the following conditions: For each photographer, at least one but no more than three of that photographers photographs must appear. At least one photograph in the Lifestyle section must be by a photographer who has at least one photograph in the Metro section. The number of Hue's photographs in the Lifestyle section must be the same as the number of Fuentes photographs in the Sports section. None of Gagnon's photographs can be in the Sports section.", "question": "Which one of the following could be true of the photographs by Fuentes appearing in tomorrows paper?", "options": [ "A) One is in the Lifestyle section, one is in the Metro section, and one is in the Sports section.", "B) One is in the Lifestyle section, and two are in the Sports section.", "C) Two are in the Lifestyle section, and one is in the Sports section.", "D) One is in the Metro section, and two are in the Sports section.", "E) Two are in the Metro section, and one is in the Sports section." ], "answer": "A" }, { "id": "ar_lsat_201510_3-G_2_11", "context": "In the Lifestyle, Metro, and Sports sections of tomorrow's newspaper, a total of six different photographs are to appear, exactly two photographs per section. Each of the available photographs was taken by one of three photographers: Fuentes, Gagnon, and Hue. Selection of the photographs is constrained by the following conditions: For each photographer, at least one but no more than three of that photographers photographs must appear. At least one photograph in the Lifestyle section must be by a photographer who has at least one photograph in the Metro section. The number of Hue's photographs in the Lifestyle section must be the same as the number of Fuentes photographs in the Sports section. None of Gagnon's photographs can be in the Sports section.", "question": "If one photograph in the Lifestyle section is by Fuentes and one is by Hue, then which one of the following could be true?", "options": [ "A) Both photographs in the Metro section are by Fuentes.", "B) Both photographs in the Metro section are by Gagnon.", "C) Exactly one photograph in the Metro section is by Hue.", "D) Both photographs in the Sports section are by Hue.", "E) Neither photograph in the Sports section is by Hue." ], "answer": "C" }, { "id": "ar_lsat_201510_3-G_2_12", "context": "In the Lifestyle, Metro, and Sports sections of tomorrow's newspaper, a total of six different photographs are to appear, exactly two photographs per section. Each of the available photographs was taken by one of three photographers: Fuentes, Gagnon, and Hue. Selection of the photographs is constrained by the following conditions: For each photographer, at least one but no more than three of that photographers photographs must appear. At least one photograph in the Lifestyle section must be by a photographer who has at least one photograph in the Metro section. The number of Hue's photographs in the Lifestyle section must be the same as the number of Fuentes photographs in the Sports section. None of Gagnon's photographs can be in the Sports section.", "question": "If both photographs in one of the three sections are by Gagnon, then which one of the following could be true?", "options": [ "A) Both photographs in the Lifestyle section are by Hue.", "B) One photograph in the Lifestyle section is by Fuentes and one is by Hue.", "C) Both photographs in the Metro section are by Fuentes.", "D) One photograph in the Metro section is by Gagnon and one is by Hue.", "E) Both photographs in the Sports section are by Hue." ], "answer": "E" }, { "id": "ar_lsat_201510_3-G_2_13", "context": "In the Lifestyle, Metro, and Sports sections of tomorrow's newspaper, a total of six different photographs are to appear, exactly two photographs per section. Each of the available photographs was taken by one of three photographers: Fuentes, Gagnon, and Hue. Selection of the photographs is constrained by the following conditions: For each photographer, at least one but no more than three of that photographers photographs must appear. At least one photograph in the Lifestyle section must be by a photographer who has at least one photograph in the Metro section. The number of Hue's photographs in the Lifestyle section must be the same as the number of Fuentes photographs in the Sports section. None of Gagnon's photographs can be in the Sports section.", "question": "If one photograph in the Metro section is by Fuentes and one is by Hue, then which one of the following could be true?", "options": [ "A) Both photographs in the Lifestyle section are by Fuentes.", "B) Both photographs in the Lifestyle section are by Gagnon.", "C) One photograph in the Lifestyle section is by Gagnon and one is by Hue.", "D) Both photographs in the Lifestyle section are by Hue.", "E) Both photographs in the Sports section are by Fuentes." ], "answer": "C" }, { "id": "ar_lsat_201510_3-G_3_14", "context": "Exactly five students—Grecia, Hakeem, Joe, Katya, and Louise—are to work at a campus art gallery during a special exhibit that runs for exactly five days, Monday through Friday. Each day is divided into two nonoverlapping shifts—first and second—with each student working exactly two shifts. Each shift is worked by exactly one of the students according to the following scheduling restrictions: No student works both shifts of any day. On two consecutive days, Louise works the second shift. On two nonconsecutive days, Grecia works the first shift. Katya works on Tuesday and Friday. Hakeem and Joe work on the same day as each other at least once. Grecia and Louise never work on the same day as each other.", "question": "Which one of the following could be the list of the students who work the second shifts at the gallery, in order from Monday through Friday?", "options": [ "A) Hakeem, Louise, Louise, Hakeem, Katya", "B) Joe, Hakeem, Grecia, Louise, Louise", "C) Joe, Katya, Hakeem, Louise, Katya", "D) Louise, Katya, Joe, Louise, Katya", "E) Louise, Louise, Hakeem, Joe, Joe" ], "answer": "A" }, { "id": "ar_lsat_201510_3-G_3_15", "context": "Exactly five students—Grecia, Hakeem, Joe, Katya, and Louise—are to work at a campus art gallery during a special exhibit that runs for exactly five days, Monday through Friday. Each day is divided into two nonoverlapping shifts—first and second—with each student working exactly two shifts. Each shift is worked by exactly one of the students according to the following scheduling restrictions: No student works both shifts of any day. On two consecutive days, Louise works the second shift. On two nonconsecutive days, Grecia works the first shift. Katya works on Tuesday and Friday. Hakeem and Joe work on the same day as each other at least once. Grecia and Louise never work on the same day as each other.", "question": "Which one of the following must be true?", "options": [ "A) Grecia does not work at the gallery on Tuesday.", "B) Hakeem does not work at the gallery on Wednesday.", "C) Joe does not work at the gallery on Tuesday.", "D) Joe does not work at the gallery on Thursday.", "E) Louise does not work at the gallery on Tuesday." ], "answer": "C" }, { "id": "ar_lsat_201510_3-G_3_16", "context": "Exactly five students—Grecia, Hakeem, Joe, Katya, and Louise—are to work at a campus art gallery during a special exhibit that runs for exactly five days, Monday through Friday. Each day is divided into two nonoverlapping shifts—first and second—with each student working exactly two shifts. Each shift is worked by exactly one of the students according to the following scheduling restrictions: No student works both shifts of any day. On two consecutive days, Louise works the second shift. On two nonconsecutive days, Grecia works the first shift. Katya works on Tuesday and Friday. Hakeem and Joe work on the same day as each other at least once. Grecia and Louise never work on the same day as each other.", "question": "If Hakeem works at the gallery on Wednesday, then Joe must work at the gallery on which one of the following pairs of days?", "options": [ "A) Monday and Wednesday", "B) Monday and Thursday", "C) Tuesday and Wednesday", "D) Tuesday and Thursday", "E) Wednesday and Thursday" ], "answer": "B" }, { "id": "ar_lsat_201510_3-G_3_17", "context": "Exactly five students—Grecia, Hakeem, Joe, Katya, and Louise—are to work at a campus art gallery during a special exhibit that runs for exactly five days, Monday through Friday. Each day is divided into two nonoverlapping shifts—first and second—with each student working exactly two shifts. Each shift is worked by exactly one of the students according to the following scheduling restrictions: No student works both shifts of any day. On two consecutive days, Louise works the second shift. On two nonconsecutive days, Grecia works the first shift. Katya works on Tuesday and Friday. Hakeem and Joe work on the same day as each other at least once. Grecia and Louise never work on the same day as each other.", "question": "If there is at least one day on which Grecia and Joe both work at the gallery, then which one of the following could be true?", "options": [ "A) Grecia works the first shift on Tuesday.", "B) Hakeem works the second shift on Monday.", "C) Hakeem works the second shift on Wednesday.", "D) Joe works the first shift on Wednesday.", "E) Joe works the first shift on Thursday." ], "answer": "E" }, { "id": "ar_lsat_201510_3-G_3_18", "context": "Exactly five students—Grecia, Hakeem, Joe, Katya, and Louise—are to work at a campus art gallery during a special exhibit that runs for exactly five days, Monday through Friday. Each day is divided into two nonoverlapping shifts—first and second—with each student working exactly two shifts. Each shift is worked by exactly one of the students according to the following scheduling restrictions: No student works both shifts of any day. On two consecutive days, Louise works the second shift. On two nonconsecutive days, Grecia works the first shift. Katya works on Tuesday and Friday. Hakeem and Joe work on the same day as each other at least once. Grecia and Louise never work on the same day as each other.", "question": "If Katya works the second shift on Tuesday at the gallery, then which one of the following could be true?", "options": [ "A) Grecia works the first shift on Monday.", "B) Hakeem works the first shift on Monday.", "C) Hakeem works the second shift on Wednesday.", "D) Joe works the second shift on Thursday.", "E) Louise works the second shift on Monday" ], "answer": "B" }, { "id": "ar_lsat_201510_3-G_3_19", "context": "Exactly five students—Grecia, Hakeem, Joe, Katya, and Louise—are to work at a campus art gallery during a special exhibit that runs for exactly five days, Monday through Friday. Each day is divided into two nonoverlapping shifts—first and second—with each student working exactly two shifts. Each shift is worked by exactly one of the students according to the following scheduling restrictions: No student works both shifts of any day. On two consecutive days, Louise works the second shift. On two nonconsecutive days, Grecia works the first shift. Katya works on Tuesday and Friday. Hakeem and Joe work on the same day as each other at least once. Grecia and Louise never work on the same day as each other.", "question": "Which one of the following is an acceptable schedule for the publication of the cookbooks?", "options": [ "A) fall: K, L, M, and O spring: N and P", "B) fall: K, L, N, and O spring: M and P", "C) fall: K, L, N, and P spring: M and O", "D) fall: K, M, N, and O spring: L and P", "E) fall: M and O spring: K, L, N, and P" ], "answer": "E" }, { "id": "ar_lsat_201510_3-G_4_20", "context": "A publisher is planning to publish six cookbooks—K, L, M, N, O, and P—over the course of the next year. Each cookbook will be published in one of two seasons—fall or spring—subject to the following conditions: M and P cannot be published in the same season as each other. K and N must be published in the same season as each other. If K is published in the fall, O must also be published in the fall. If M is published in the fall, N must be published in the spring", "question": "If M is published in the fall, which one of the following is a pair of cookbooks that could both be published in the fall along with M?", "options": [ "A) K and 0", "B) L and N", "C) L and 0", "D) N and P", "E) 0 and P" ], "answer": "C" }, { "id": "ar_lsat_201510_3-G_4_21", "context": "A publisher is planning to publish six cookbooks—K, L, M, N, O, and P—over the course of the next year. Each cookbook will be published in one of two seasons—fall or spring—subject to the following conditions: M and P cannot be published in the same season as each other. K and N must be published in the same season as each other. If K is published in the fall, O must also be published in the fall. If M is published in the fall, N must be published in the spring", "question": "If N is published in the fall, which one of the following could be true", "options": [ "A) K is published in the spring.", "B) L is published in the fall.", "C) M is published in the fall.", "D) 0 is published in the spring.", "E) P is published in the spring." ], "answer": "B" }, { "id": "ar_lsat_201510_3-G_4_22", "context": "A publisher is planning to publish six cookbooks—K, L, M, N, O, and P—over the course of the next year. Each cookbook will be published in one of two seasons—fall or spring—subject to the following conditions: M and P cannot be published in the same season as each other. K and N must be published in the same season as each other. If K is published in the fall, O must also be published in the fall. If M is published in the fall, N must be published in the spring", "question": "The schedule for the publication of the cookbooks is fully determined if which one of the following is true?", "options": [ "A) K is published in the fall and L is published in the spring.", "B) 0 is published in the fall and P is published in the spring.", "C) P is published in the fall and L is published in the spring.", "D) Both K and L are published in the spring.", "E) Both M and L are published in the fall." ], "answer": "A" }, { "id": "ar_lsat_201510_3-G_4_23", "context": "A publisher is planning to publish six cookbooks—K, L, M, N, O, and P—over the course of the next year. Each cookbook will be published in one of two seasons—fall or spring—subject to the following conditions: M and P cannot be published in the same season as each other. K and N must be published in the same season as each other. If K is published in the fall, O must also be published in the fall. If M is published in the fall, N must be published in the spring", "question": "Which one of the following, if substituted for the condition that if M is published in the fall, N must be published in the spring, would have the same effect in determining the schedule for the publication of the cookbooks?", "options": [ "A) If L is published in the fall, M must be published in the spring.", "B) If N is published in the fall, P must also be published in the fall.", "C) If M is published in the spring, P must be published in the fall.", "D) If N is published in the spring, M must also be published in the spring.", "E) If 0 is published in the spring, N must also be published in the spring." ], "answer": "B" }, { "id": "ar_lsat_201606_2-G_1_1", "context": "Seven workers—Quinn, Ruiz, Smith, Taylor, Verma, Wells, and Xue—are being considered for a special project. Exactly three of the workers will be selected to be project members, and exactly one of these project members will be the project leader. The selection is subject to the following constraints: Quinn or Ruiz can be a project member only if leading the project. If Smith is a project member, Taylor must also be. If Wells is a project member, neither Ruiz nor Verma can be.", "question": "Which one of the following is an acceptable selection for the project?", "options": [ "A) Ruiz (leader), Taylor, Wells", "B) Verma (leader), Quinn, Taylor", "C) Verma (leader), Smith, Taylor", "D) Verma (leader), Smith, Xue", "E) Xue (leader), Verma, Wells" ], "answer": "C" }, { "id": "ar_lsat_201606_2-G_1_2", "context": "Seven workers—Quinn, Ruiz, Smith, Taylor, Verma, Wells, and Xue—are being considered for a special project. Exactly three of the workers will be selected to be project members, and exactly one of these project members will be the project leader. The selection is subject to the following constraints: Quinn or Ruiz can be a project member only if leading the project. If Smith is a project member, Taylor must also be. If Wells is a project member, neither Ruiz nor Verma can be.", "question": "If Taylor is the project leader and Wells is a project member, then the third project member must be either", "options": [ "A) Quinn or Smith", "B) Quinn or Xue", "C) Ruiz or Verma", "D) Smith or Xue", "E) Verma or Xue" ], "answer": "D" }, { "id": "ar_lsat_201606_2-G_1_3", "context": "Seven workers—Quinn, Ruiz, Smith, Taylor, Verma, Wells, and Xue—are being considered for a special project. Exactly three of the workers will be selected to be project members, and exactly one of these project members will be the project leader. The selection is subject to the following constraints: Quinn or Ruiz can be a project member only if leading the project. If Smith is a project member, Taylor must also be. If Wells is a project member, neither Ruiz nor Verma can be.", "question": "Verma could be the project leader if which one of the following is true?", "options": [ "A) Neither Quinn nor Smith is selected.", "B) Neither Ruiz nor Taylor is selected.", "C) Neither Smith nor Taylor is selected.", "D) Neither Smith nor Xue is selected.", "E) Neither Taylor nor Wells is selected." ], "answer": "A" }, { "id": "ar_lsat_201606_2-G_1_4", "context": "Seven workers—Quinn, Ruiz, Smith, Taylor, Verma, Wells, and Xue—are being considered for a special project. Exactly three of the workers will be selected to be project members, and exactly one of these project members will be the project leader. The selection is subject to the following constraints: Quinn or Ruiz can be a project member only if leading the project. If Smith is a project member, Taylor must also be. If Wells is a project member, neither Ruiz nor Verma can be.", "question": "If Taylor is not a project member, which one of the following workers must be a project member?", "options": [ "A) Quinn", "B) Ruiz", "C) Verma", "D) Wells", "E) Xue" ], "answer": "E" }, { "id": "ar_lsat_201606_2-G_1_5", "context": "Seven workers—Quinn, Ruiz, Smith, Taylor, Verma, Wells, and Xue—are being considered for a special project. Exactly three of the workers will be selected to be project members, and exactly one of these project members will be the project leader. The selection is subject to the following constraints: Quinn or Ruiz can be a project member only if leading the project. If Smith is a project member, Taylor must also be. If Wells is a project member, neither Ruiz nor Verma can be.", "question": "The selection for the project is completely determined if which one of the following is true?", "options": [ "A) Neither Quinn nor Smith is selected.", "B) Neither Quinn nor Taylor is selected.", "C) Neither Quinn nor Xue is selected.", "D) Neither Ruiz nor Wells is selected.", "E) Neither Ruiz nor Verma is selected." ], "answer": "B" }, { "id": "ar_lsat_201606_2-G_2_6", "context": "Four students will be assigned to a history project in which they will search archives from the years 1921, 1922, 1923, and 1924. Each of the four years will have exactly one student assigned to it. Six students—Louis, Mollie, Onyx, Ryan, Tiffany, and Yoshio—are available for this project. The following conditions apply: Only Louis or Tiffany can be assigned to 1923. If Mollie is assigned to the project, then she must be assigned to either 1921 or 1922. If Tiffany is assigned to the project, then Ryan must be assigned to the project. If Ryan is assigned to the project, then Onyx must be assigned to the year immediately prior to Ryan's.", "question": "Which one of the following could be an accurate assignment of students, in order from the earliest year to the latest?", "options": [ "A) Louis, Onyx, Ryan, Yoshio", "B) Mollie, Yoshio, Tiffany, Onyx", "C) Onyx, Ryan, Louis, Tiffany", "D) Tiffany, Onyx, Louis, Ryan", "E) Yoshio, Onyx, Louis, Mollie" ], "answer": "C" }, { "id": "ar_lsat_201606_2-G_2_7", "context": "Four students will be assigned to a history project in which they will search archives from the years 1921, 1922, 1923, and 1924. Each of the four years will have exactly one student assigned to it. Six students—Louis, Mollie, Onyx, Ryan, Tiffany, and Yoshio—are available for this project. The following conditions apply: Only Louis or Tiffany can be assigned to 1923. If Mollie is assigned to the project, then she must be assigned to either 1921 or 1922. If Tiffany is assigned to the project, then Ryan must be assigned to the project. If Ryan is assigned to the project, then Onyx must be assigned to the year immediately prior to Ryan's.", "question": "Mollie must be assigned to 1922 if which one of the following is true?", "options": [ "A) Louis is assigned to 1924.", "B) Onyx is assigned to 1921.", "C) Onyx is assigned to 1924.", "D) Tiffany is assigned to 1923.", "E) Yoshio is assigned to 1921." ], "answer": "E" }, { "id": "ar_lsat_201606_2-G_2_8", "context": "Four students will be assigned to a history project in which they will search archives from the years 1921, 1922, 1923, and 1924. Each of the four years will have exactly one student assigned to it. Six students—Louis, Mollie, Onyx, Ryan, Tiffany, and Yoshio—are available for this project. The following conditions apply: Only Louis or Tiffany can be assigned to 1923. If Mollie is assigned to the project, then she must be assigned to either 1921 or 1922. If Tiffany is assigned to the project, then Ryan must be assigned to the project. If Ryan is assigned to the project, then Onyx must be assigned to the year immediately prior to Ryan's.", "question": "If both Ryan and Yoshio are assigned to the project, which one of the following could be true?", "options": [ "A) Louis is assigned to 1923.", "B) Mollie is assigned to 1921.", "C) Onyx is assigned to 1922.", "D) Tiffany is assigned to 1924.", "E) Yoshio is assigned to 1922." ], "answer": "A" }, { "id": "ar_lsat_201606_2-G_2_9", "context": "Four students will be assigned to a history project in which they will search archives from the years 1921, 1922, 1923, and 1924. Each of the four years will have exactly one student assigned to it. Six students—Louis, Mollie, Onyx, Ryan, Tiffany, and Yoshio—are available for this project. The following conditions apply: Only Louis or Tiffany can be assigned to 1923. If Mollie is assigned to the project, then she must be assigned to either 1921 or 1922. If Tiffany is assigned to the project, then Ryan must be assigned to the project. If Ryan is assigned to the project, then Onyx must be assigned to the year immediately prior to Ryan's.", "question": "How many of the students are there who could be the one assigned to 1921?", "options": [ "A) six", "B) five", "C) four", "D) three", "E) two" ], "answer": "D" }, { "id": "ar_lsat_201606_2-G_2_10", "context": "Four students will be assigned to a history project in which they will search archives from the years 1921, 1922, 1923, and 1924. Each of the four years will have exactly one student assigned to it. Six students—Louis, Mollie, Onyx, Ryan, Tiffany, and Yoshio—are available for this project. The following conditions apply: Only Louis or Tiffany can be assigned to 1923. If Mollie is assigned to the project, then she must be assigned to either 1921 or 1922. If Tiffany is assigned to the project, then Ryan must be assigned to the project. If Ryan is assigned to the project, then Onyx must be assigned to the year immediately prior to Ryan's.", "question": "If Yoshio is not assigned to the project, which one of the following could be true?", "options": [ "A) Louis is not assigned to the project.", "B) Ryan is not assigned to the project.", "C) Tiffany is not assigned to the project.", "D) Onyx is assigned to 1922.", "E) Louis is assigned to 1924." ], "answer": "E" }, { "id": "ar_lsat_201606_2-G_2_11", "context": "Four students will be assigned to a history project in which they will search archives from the years 1921, 1922, 1923, and 1924. Each of the four years will have exactly one student assigned to it. Six students—Louis, Mollie, Onyx, Ryan, Tiffany, and Yoshio—are available for this project. The following conditions apply: Only Louis or Tiffany can be assigned to 1923. If Mollie is assigned to the project, then she must be assigned to either 1921 or 1922. If Tiffany is assigned to the project, then Ryan must be assigned to the project. If Ryan is assigned to the project, then Onyx must be assigned to the year immediately prior to Ryan's.", "question": "Which one of the following students CANNOT be assigned to 1922?", "options": [ "A) Louis", "B) Mollie", "C) Onyx", "D) Ryan", "E) Yoshio" ], "answer": "A" }, { "id": "ar_lsat_201606_2-G_3_12", "context": "During the weeklong grand opening of a new antique shop, the antique dealer will auction exactly one antique per day for six consecutive days—June 1st through June 6th. The antiques to be auctioned are: a harmonica, a lamp, a mirror, a sundial, a table, and a vase. The following conditions apply: The sundial is not auctioned on June 1st. If the harmonica is auctioned on an earlier date than the lamp, then the mirror is also auctioned on an earlier date than the lamp. The sundial is auctioned on an earlier date than the mirror and also on an earlier date than the vase. The table is auctioned on an earlier date than the harmonica or on an earlier date than the vase, but not both.", "question": "Which one of the following could be an accurate list of the six antiques, in the order in which they are auctioned, from June 1st through June 6th?", "options": [ "A) harmonica, table, sundial, lamp, vase, mirror", "B) lamp, harmonica, sundial, mirror, vase, table", "C) harmonica, sundial, table, mirror, lamp, vase", "D) sundial, mirror, harmonica, table, vase, lamp", "E) vase, sundial, lamp, harmonica, table, mirror" ], "answer": "C" }, { "id": "ar_lsat_201606_2-G_3_13", "context": "During the weeklong grand opening of a new antique shop, the antique dealer will auction exactly one antique per day for six consecutive days—June 1st through June 6th. The antiques to be auctioned are: a harmonica, a lamp, a mirror, a sundial, a table, and a vase. The following conditions apply: The sundial is not auctioned on June 1st. If the harmonica is auctioned on an earlier date than the lamp, then the mirror is also auctioned on an earlier date than the lamp. The sundial is auctioned on an earlier date than the mirror and also on an earlier date than the vase. The table is auctioned on an earlier date than the harmonica or on an earlier date than the vase, but not both.", "question": "Which one of the following could be true?", "options": [ "A) The table is auctioned on June 2nd and the lamp is auctioned on June 3rd.", "B) The sundial is auctioned on June 2nd and the vase is auctioned on June 3rd.", "C) The mirror is auctioned on June 3rd and the sundial is auctioned on June 4th.", "D) The vase is auctioned on June 4th and the sundial is auctioned on June 5th.", "E) The sundial is auctioned on June 4th and the table is auctioned on June 5th." ], "answer": "B" }, { "id": "ar_lsat_201606_2-G_3_14", "context": "During the weeklong grand opening of a new antique shop, the antique dealer will auction exactly one antique per day for six consecutive days—June 1st through June 6th. The antiques to be auctioned are: a harmonica, a lamp, a mirror, a sundial, a table, and a vase. The following conditions apply: The sundial is not auctioned on June 1st. If the harmonica is auctioned on an earlier date than the lamp, then the mirror is also auctioned on an earlier date than the lamp. The sundial is auctioned on an earlier date than the mirror and also on an earlier date than the vase. The table is auctioned on an earlier date than the harmonica or on an earlier date than the vase, but not both.", "question": "If the table is auctioned on a date that is later than both the date on which the mirror is auctioned and the date on which the vase is auctioned, then which one of the following could be true?", "options": [ "A) The harmonica is auctioned on an earlier date than the table.", "B) The table is auctioned on an earlier date than the lamp.", "C) The table is auctioned on an earlier date than the sundial.", "D) The mirror is auctioned on an earlier date than the vase.", "E) The sundial is auctioned on an earlier date than the lamp." ], "answer": "D" }, { "id": "ar_lsat_201606_2-G_3_15", "context": "During the weeklong grand opening of a new antique shop, the antique dealer will auction exactly one antique per day for six consecutive days—June 1st through June 6th. The antiques to be auctioned are: a harmonica, a lamp, a mirror, a sundial, a table, and a vase. The following conditions apply: The sundial is not auctioned on June 1st. If the harmonica is auctioned on an earlier date than the lamp, then the mirror is also auctioned on an earlier date than the lamp. The sundial is auctioned on an earlier date than the mirror and also on an earlier date than the vase. The table is auctioned on an earlier date than the harmonica or on an earlier date than the vase, but not both.", "question": "Which one of the following CANNOT be the antique auctioned on the day immediately preceding the day on which the vase is auctioned?", "options": [ "A) the harmonica", "B) the lamp", "C) the mirror", "D) the sundial", "E) the table" ], "answer": "A" }, { "id": "ar_lsat_201606_2-G_3_16", "context": "During the weeklong grand opening of a new antique shop, the antique dealer will auction exactly one antique per day for six consecutive days—June 1st through June 6th. The antiques to be auctioned are: a harmonica, a lamp, a mirror, a sundial, a table, and a vase. The following conditions apply: The sundial is not auctioned on June 1st. If the harmonica is auctioned on an earlier date than the lamp, then the mirror is also auctioned on an earlier date than the lamp. The sundial is auctioned on an earlier date than the mirror and also on an earlier date than the vase. The table is auctioned on an earlier date than the harmonica or on an earlier date than the vase, but not both.", "question": "Which one of the following could be true?", "options": [ "A) The mirror is auctioned on June 2nd.", "B) The lamp is auctioned on June 2nd.", "C) The vase is auctioned on. June 2nd.", "D) The lamp is auctioned on June 3rd.", "E) The mirror is auctioned on June 5th." ], "answer": "E" }, { "id": "ar_lsat_201606_2-G_3_17", "context": "During the weeklong grand opening of a new antique shop, the antique dealer will auction exactly one antique per day for six consecutive days—June 1st through June 6th. The antiques to be auctioned are: a harmonica, a lamp, a mirror, a sundial, a table, and a vase. The following conditions apply: The sundial is not auctioned on June 1st. If the harmonica is auctioned on an earlier date than the lamp, then the mirror is also auctioned on an earlier date than the lamp. The sundial is auctioned on an earlier date than the mirror and also on an earlier date than the vase. The table is auctioned on an earlier date than the harmonica or on an earlier date than the vase, but not both.", "question": "Which one of the following could be true?", "options": [ "A) The sundial is auctioned on June 5th.", "B) The sundial is auctioned on June 4th.", "C) The lamp is auctioned on June 5th and the mirror is auctioned on June 6th.", "D) The table is auctioned on June 3rd and the lamp is auctioned on June 4th.", "E) The harmonica is auctioned on June 2nd and the vase is auctioned on June 3rd." ], "answer": "B" }, { "id": "ar_lsat_201606_2-G_4_18", "context": "A chorus director is planning to audition exactly six singers: Kammer, Lugo, Trillo, Waite, Yoshida, and Zinn. Kammer's audition and Lugo's audition will be recorded; the other four will not be. The six auditions are to take place one after the other on a single day, in accordance with the following conditions: The fourth audition cannot be recorded. The fifth audition must be recorded. Waite's audition must take place earlier than the two recorded auditions. Kammer's audition must take place earlier than Trillo's audition. Zinn's audition must take place earlier than Yoshida's audition.", "question": "Which one of the following could be the order of the auditions, from first to last?", "options": [ "A) Kammer, Trillo, Zinn, Waite, Lugo, Yoshida", "B) Waite, Kammer, Yoshida, Zinn, Lugo, Trillo", "C) Waite, Lugo, Kammer, Trillo, Zinn, Yoshida", "D) Waite, Zinn, Kammer, Trillo, Lugo, Yoshida", "E) Zinn, Yoshida, Waite, Lugo, Kammer, Trillo" ], "answer": "D" }, { "id": "ar_lsat_201606_2-G_4_19", "context": "A chorus director is planning to audition exactly six singers: Kammer, Lugo, Trillo, Waite, Yoshida, and Zinn. Kammer's audition and Lugo's audition will be recorded; the other four will not be. The six auditions are to take place one after the other on a single day, in accordance with the following conditions: The fourth audition cannot be recorded. The fifth audition must be recorded. Waite's audition must take place earlier than the two recorded auditions. Kammer's audition must take place earlier than Trillo's audition. Zinn's audition must take place earlier than Yoshida's audition.", "question": "Which one of the following CANNOT be the second audition?", "options": [ "A) Kammer's audition", "B) Lugo's audition", "C) Trillo's audition", "D) Waite's audition", "E) Zinn's audition" ], "answer": "C" }, { "id": "ar_lsat_201606_2-G_4_20", "context": "A chorus director is planning to audition exactly six singers: Kammer, Lugo, Trillo, Waite, Yoshida, and Zinn. Kammer's audition and Lugo's audition will be recorded; the other four will not be. The six auditions are to take place one after the other on a single day, in accordance with the following conditions: The fourth audition cannot be recorded. The fifth audition must be recorded. Waite's audition must take place earlier than the two recorded auditions. Kammer's audition must take place earlier than Trillo's audition. Zinn's audition must take place earlier than Yoshida's audition.", "question": "Which one of the following could be the sixth audition?", "options": [ "A) Kammer's audition", "B) Lugo's audition", "C) Trillo's audition", "D) Waite's audition", "E) Zinn's audition" ], "answer": "C" }, { "id": "ar_lsat_201606_2-G_4_21", "context": "A chorus director is planning to audition exactly six singers: Kammer, Lugo, Trillo, Waite, Yoshida, and Zinn. Kammer's audition and Lugo's audition will be recorded; the other four will not be. The six auditions are to take place one after the other on a single day, in accordance with the following conditions: The fourth audition cannot be recorded. The fifth audition must be recorded. Waite's audition must take place earlier than the two recorded auditions. Kammer's audition must take place earlier than Trillo's audition. Zinn's audition must take place earlier than Yoshida's audition.", "question": "If Kammer's audition is immediately before Yoshida's, which one of the following could be true?", "options": [ "A) Kammer's audition is second.", "B) Trillo's audition is fourth.", "C) Waite's audition is third.", "D) Yoshida's audition is sixth.", "E) Zinn's audition is second." ], "answer": "E" }, { "id": "ar_lsat_201606_2-G_4_22", "context": "A chorus director is planning to audition exactly six singers: Kammer, Lugo, Trillo, Waite, Yoshida, and Zinn. Kammer's audition and Lugo's audition will be recorded; the other four will not be. The six auditions are to take place one after the other on a single day, in accordance with the following conditions: The fourth audition cannot be recorded. The fifth audition must be recorded. Waite's audition must take place earlier than the two recorded auditions. Kammer's audition must take place earlier than Trillo's audition. Zinn's audition must take place earlier than Yoshida's audition.", "question": "Yoshida's audition could be", "options": [ "A) fifth", "B) fourth", "C) third", "D) second", "E) first" ], "answer": "B" }, { "id": "ar_lsat_201606_2-G_4_23", "context": "A chorus director is planning to audition exactly six singers: Kammer, Lugo, Trillo, Waite, Yoshida, and Zinn. Kammer's audition and Lugo's audition will be recorded; the other four will not be. The six auditions are to take place one after the other on a single day, in accordance with the following conditions: The fourth audition cannot be recorded. The fifth audition must be recorded. Waite's audition must take place earlier than the two recorded auditions. Kammer's audition must take place earlier than Trillo's audition. Zinn's audition must take place earlier than Yoshida's audition.", "question": "Which one of the following, if substituted for the condition that Waite's audition must take place earlier than the two recorded auditions, would have the same effect in determining the order of the auditions?", "options": [ "A) Zinn's audition is the only one that can take place earlier than Waite's.", "B) Waite's audition must take place either immediately before or immediately after Zinn's.", "C) Waite's audition must take place earlier than Lugo's.", "D) Waite's audition must be either first or second.", "E) The first audition cannot be recorded." ], "answer": "A" }, { "id": "ar_lsat_201612_3-G_1_1", "context": "A teacher will assign each of five students—Juana, Kelly, Lateefah, Mei, and Olga—to exactly one of two research teams, the green team and the red team. One team will have two members, and the other will have three members. One member of each team will be designated as facilitator. The assignment must satisfy the following conditions: Juana is assigned to a different team than Olga is. Lateefah is assigned to the green team. Kelly is not a facilitator. Olga is a facilitator.", "question": "Which one of the following could be an accurate listing of the members and facilitators of the two research teams?", "options": [ "A) green team: Juana, Lateefah, Olga (facilitator) red team: Kelly, Mei (facilitator)", "B) green team: Kelly, Lateefah (facilitator), Olga red team: Juana, Mei (facilitator)", "C) green team: Kelly, Lateefah, Olga (facilitator) red team: Juana (facilitator), Mei", "D) green team: Kelly, Mei, Olga (facilitator) red team: Juana (facilitator), Lateefah", "E) green team: Lateefah, Olga (facilitator) red team: Juana, Kelly (facilitator), Mei" ], "answer": "C" }, { "id": "ar_lsat_201612_3-G_1_2", "context": "A teacher will assign each of five students—Juana, Kelly, Lateefah, Mei, and Olga—to exactly one of two research teams, the green team and the red team. One team will have two members, and the other will have three members. One member of each team will be designated as facilitator. The assignment must satisfy the following conditions: Juana is assigned to a different team than Olga is. Lateefah is assigned to the green team. Kelly is not a facilitator. Olga is a facilitator.", "question": "Which one of the following must be true?", "options": [ "A) Juana is assigned to the red team.", "B) Lateefah is a facilitator.", "C) Olga is assigned to the green team.", "D) Juana and Mei are not both facilitators.", "E) Neither Juana nor Kelly is a facilitator." ], "answer": "D" }, { "id": "ar_lsat_201612_3-G_1_3", "context": "A teacher will assign each of five students—Juana, Kelly, Lateefah, Mei, and Olga—to exactly one of two research teams, the green team and the red team. One team will have two members, and the other will have three members. One member of each team will be designated as facilitator. The assignment must satisfy the following conditions: Juana is assigned to a different team than Olga is. Lateefah is assigned to the green team. Kelly is not a facilitator. Olga is a facilitator.", "question": "Which one of the following must be false?", "options": [ "A) Lateefah is a facilitator, and she is assigned to the same team as Kelly is.", "B) Mei is a facilitator, and she is assigned to the same team as Kelly is.", "C) Olga is a facilitator, and she is assigned to the same team as Mei is.", "D) Lateefah is a facilitator, and she is assigned to a different team than Juana is.", "E) Mei is a facilitator, and she is assigned to a different team than Olga is." ], "answer": "B" }, { "id": "ar_lsat_201612_3-G_1_4", "context": "A teacher will assign each of five students—Juana, Kelly, Lateefah, Mei, and Olga—to exactly one of two research teams, the green team and the red team. One team will have two members, and the other will have three members. One member of each team will be designated as facilitator. The assignment must satisfy the following conditions: Juana is assigned to a different team than Olga is. Lateefah is assigned to the green team. Kelly is not a facilitator. Olga is a facilitator.", "question": "If Lateefah is a facilitator, then which one of the following could be true?", "options": [ "A) Juana and Kelly are both assigned to the red team.", "B) Juana and Mei are both assigned to the red team.", "C) Lateefah and Olga are both assigned to the green team.", "D) Mei and Olga are both assigned to the green team.", "E) Mei and Olga are both assigned to the red team." ], "answer": "A" }, { "id": "ar_lsat_201612_3-G_1_5", "context": "A teacher will assign each of five students—Juana, Kelly, Lateefah, Mei, and Olga—to exactly one of two research teams, the green team and the red team. One team will have two members, and the other will have three members. One member of each team will be designated as facilitator. The assignment must satisfy the following conditions: Juana is assigned to a different team than Olga is. Lateefah is assigned to the green team. Kelly is not a facilitator. Olga is a facilitator.", "question": "If Mei is assigned to the green team, then which one of the following must be true?", "options": [ "A) Juana is assigned to the green team.", "B) Kelly is assigned to the red team.", "C) Olga is assigned to the green team.", "D) Lateefah is a facilitator.", "E) Mei is a facilitator." ], "answer": "E" }, { "id": "ar_lsat_201612_3-G_2_6", "context": "An author is planning to write a mystery novel consisting of seven chapters, chapter 1 through chapter 7. Each of seven different clues—R, S, T, U, W, X, and Z—is to be mentioned exactly once, one clue per chapter. The order in which the clues are mentioned is subject to the following constraints: T cannot be mentioned in chapter 1. T must be mentioned before W, and there must be exactly two chapters separating the mention of T from the mention of W. S and Z cannot be mentioned in adjacent chapters. W and X cannot be mentioned in adjacent chapters. U and X must be mentioned in adjacent chapters.", "question": "Which one of the following could be the order in which the clues are mentioned, from the first chapter through the seventh?", "options": [ "A) S, T, Z, X, U, W, R", "B) T, X, U, W, S, R, Z", "C) U, S, X, T, Z, R, W", "D) X, U, T, Z, R, W, S", "E) Z, R, T, U, X, W, S" ], "answer": "C" }, { "id": "ar_lsat_201612_3-G_2_7", "context": "An author is planning to write a mystery novel consisting of seven chapters, chapter 1 through chapter 7. Each of seven different clues—R, S, T, U, W, X, and Z—is to be mentioned exactly once, one clue per chapter. The order in which the clues are mentioned is subject to the following constraints: T cannot be mentioned in chapter 1. T must be mentioned before W, and there must be exactly two chapters separating the mention of T from the mention of W. S and Z cannot be mentioned in adjacent chapters. W and X cannot be mentioned in adjacent chapters. U and X must be mentioned in adjacent chapters.", "question": "If X is mentioned in chapter 1, which one of the following could be true?", "options": [ "A) R is mentioned in chapter 3.", "B) R is mentioned in chapter 7.", "C) S is mentioned in chapter 2.", "D) W is mentioned in chapter 5.", "E) Z is mentioned in chapter 3." ], "answer": "E" }, { "id": "ar_lsat_201612_3-G_2_8", "context": "An author is planning to write a mystery novel consisting of seven chapters, chapter 1 through chapter 7. Each of seven different clues—R, S, T, U, W, X, and Z—is to be mentioned exactly once, one clue per chapter. The order in which the clues are mentioned is subject to the following constraints: T cannot be mentioned in chapter 1. T must be mentioned before W, and there must be exactly two chapters separating the mention of T from the mention of W. S and Z cannot be mentioned in adjacent chapters. W and X cannot be mentioned in adjacent chapters. U and X must be mentioned in adjacent chapters.", "question": "If U is mentioned in chapter 3, which one of the following could be true?", "options": [ "A) R is mentioned in chapter 1.", "B) R is mentioned in chapter 5.", "C) S is mentioned in chapter 7.", "D) W is mentioned in chapter 6.", "E) X is mentioned in chapter 4." ], "answer": "A" }, { "id": "ar_lsat_201612_3-G_2_9", "context": "An author is planning to write a mystery novel consisting of seven chapters, chapter 1 through chapter 7. Each of seven different clues—R, S, T, U, W, X, and Z—is to be mentioned exactly once, one clue per chapter. The order in which the clues are mentioned is subject to the following constraints: T cannot be mentioned in chapter 1. T must be mentioned before W, and there must be exactly two chapters separating the mention of T from the mention of W. S and Z cannot be mentioned in adjacent chapters. W and X cannot be mentioned in adjacent chapters. U and X must be mentioned in adjacent chapters.", "question": "If Z is mentioned in chapter 7, which one of the following could be true?", "options": [ "A) R is mentioned in chapter 3.", "B) S is mentioned in chapter 3.", "C) T is mentioned in chapter 4.", "D) U is mentioned in chapter 1.", "E) X is mentioned in chapter 5." ], "answer": "D" }, { "id": "ar_lsat_201612_3-G_2_10", "context": "An author is planning to write a mystery novel consisting of seven chapters, chapter 1 through chapter 7. Each of seven different clues—R, S, T, U, W, X, and Z—is to be mentioned exactly once, one clue per chapter. The order in which the clues are mentioned is subject to the following constraints: T cannot be mentioned in chapter 1. T must be mentioned before W, and there must be exactly two chapters separating the mention of T from the mention of W. S and Z cannot be mentioned in adjacent chapters. W and X cannot be mentioned in adjacent chapters. U and X must be mentioned in adjacent chapters.", "question": "Which one of the following could be true?", "options": [ "A) R is mentioned in chapter 7.", "B) T is mentioned in chapter 5.", "C) U is mentioned in chapter 7.", "D) W is mentioned in chapter 3.", "E) X is mentioned in chapter 6." ], "answer": "A" }, { "id": "ar_lsat_201612_3-G_2_11", "context": "An author is planning to write a mystery novel consisting of seven chapters, chapter 1 through chapter 7. Each of seven different clues—R, S, T, U, W, X, and Z—is to be mentioned exactly once, one clue per chapter. The order in which the clues are mentioned is subject to the following constraints: T cannot be mentioned in chapter 1. T must be mentioned before W, and there must be exactly two chapters separating the mention of T from the mention of W. S and Z cannot be mentioned in adjacent chapters. W and X cannot be mentioned in adjacent chapters. U and X must be mentioned in adjacent chapters.", "question": "Which one of the following, if substituted for the constraint that T cannot be mentioned in chapter 1, would have the same effect in determining the order in which the clues are mentioned?", "options": [ "A) U cannot be mentioned in chapter 2.", "B) W cannot be mentioned in chapter 4.", "C) X cannot be mentioned in chapter 6.", "D) U must be mentioned in an earlier chapter than T.", "E) X must be mentioned in an earlier chapter than W," ], "answer": "B" }, { "id": "ar_lsat_201612_3-G_3_12", "context": "At an upcoming exhibition, four art students—Franz, Greene, Hidalgo, and Isaacs—will each display exactly two paintings—an oil and a watercolor. Exactly two paintings will be displayed on each of the walls of the exhibition room—walls 1, 2, 3, and 4—with one painting in the upper position and one in the lower position. The following conditions will apply: No wall has only watercolors displayed on it. No wall has the work of only one student displayed on it. No wall has both a painting by Franz and a painting by Isaacs displayed on it. Greene's watercolor is displayed in the upper position of the wall on which Franz's oil is displayed. Isaacs's oil is displayed in the lower position of wall 4.", "question": "Which one of the following could be an accurate list of the paintings displayed in the lower position on walls 1 through 4, listed in that order?", "options": [ "A) Franz's oil, Franz's watercolor, Greene's oil, Isaacs's oil", "B) Franz's oil, Hidalgo's watercolor, Isaacs's watercolor, Isaacs's oil", "C) Greene's oil, Franz's oil, Isaacs's oil, Hidalgo's oil", "D) Hidalgo's oil, Greene's oil, Greene's watercolor, Isaacs's oil", "E) Hidalgo's watercolor, Franz's oil, Greene's oil, Isaacs's oil" ], "answer": "C" }, { "id": "ar_lsat_201612_3-G_3_13", "context": "At an upcoming exhibition, four art students—Franz, Greene, Hidalgo, and Isaacs—will each display exactly two paintings—an oil and a watercolor. Exactly two paintings will be displayed on each of the walls of the exhibition room—walls 1, 2, 3, and 4—with one painting in the upper position and one in the lower position. The following conditions will apply: No wall has only watercolors displayed on it. No wall has the work of only one student displayed on it. No wall has both a painting by Franz and a painting by Isaacs displayed on it. Greene's watercolor is displayed in the upper position of the wall on which Franz's oil is displayed. Isaacs's oil is displayed in the lower position of wall 4.", "question": "If Isaacs's watercolor is displayed on wall 2 and Franz's oil is displayed on wall 3, which one of the following must be displayed on wall 1?", "options": [ "A) Franz's watercolor", "B) Greene's oil", "C) Greene's watercolor", "D) Hidalgo's oil", "E) Hidalgo's watercolor" ], "answer": "A" }, { "id": "ar_lsat_201612_3-G_3_14", "context": "At an upcoming exhibition, four art students—Franz, Greene, Hidalgo, and Isaacs—will each display exactly two paintings—an oil and a watercolor. Exactly two paintings will be displayed on each of the walls of the exhibition room—walls 1, 2, 3, and 4—with one painting in the upper position and one in the lower position. The following conditions will apply: No wall has only watercolors displayed on it. No wall has the work of only one student displayed on it. No wall has both a painting by Franz and a painting by Isaacs displayed on it. Greene's watercolor is displayed in the upper position of the wall on which Franz's oil is displayed. Isaacs's oil is displayed in the lower position of wall 4.", "question": "If Hidalgo's oil is displayed on wall 2, which one of the following could also be displayed on wall 2?", "options": [ "A) Franz's oil", "B) Greene's watercolor", "C) Greene's oil", "D) Hidalgo's watercolor", "E) Isaacs's watercolor" ], "answer": "E" }, { "id": "ar_lsat_201612_3-G_3_15", "context": "At an upcoming exhibition, four art students—Franz, Greene, Hidalgo, and Isaacs—will each display exactly two paintings—an oil and a watercolor. Exactly two paintings will be displayed on each of the walls of the exhibition room—walls 1, 2, 3, and 4—with one painting in the upper position and one in the lower position. The following conditions will apply: No wall has only watercolors displayed on it. No wall has the work of only one student displayed on it. No wall has both a painting by Franz and a painting by Isaacs displayed on it. Greene's watercolor is displayed in the upper position of the wall on which Franz's oil is displayed. Isaacs's oil is displayed in the lower position of wall 4.", "question": "If Greene's oil is displayed on the same wall as Franz's watercolor, which one of the following must be true?", "options": [ "A) Greene's oil is displayed in an upper position.", "B) Hidalgo's watercolor is displayed on the same wall as Isaacs's watercolor.", "C) Hidalgo's oil is displayed in an upper position.", "D) Hidalgo's oil is displayed on the same wall as Isaacs's watercolor.", "E) Isaacs's watercolor is displayed in a lower position." ], "answer": "D" }, { "id": "ar_lsat_201612_3-G_3_16", "context": "At an upcoming exhibition, four art students—Franz, Greene, Hidalgo, and Isaacs—will each display exactly two paintings—an oil and a watercolor. Exactly two paintings will be displayed on each of the walls of the exhibition room—walls 1, 2, 3, and 4—with one painting in the upper position and one in the lower position. The following conditions will apply: No wall has only watercolors displayed on it. No wall has the work of only one student displayed on it. No wall has both a painting by Franz and a painting by Isaacs displayed on it. Greene's watercolor is displayed in the upper position of the wall on which Franz's oil is displayed. Isaacs's oil is displayed in the lower position of wall 4.", "question": "If Franz's oil is displayed on wall 1, which one of the following could be true?", "options": [ "A) Franz's watercolor is displayed on wall 4.", "B) Greene's oil is displayed on wall 2.", "C) Greene's watercolor is displayed on wall 2.", "D) Hidalgo's watercolor is displayed on wall 3.", "E) Isaacs's oil is displayed on wall 1." ], "answer": "B" }, { "id": "ar_lsat_201612_3-G_3_17", "context": "At an upcoming exhibition, four art students—Franz, Greene, Hidalgo, and Isaacs—will each display exactly two paintings—an oil and a watercolor. Exactly two paintings will be displayed on each of the walls of the exhibition room—walls 1, 2, 3, and 4—with one painting in the upper position and one in the lower position. The following conditions will apply: No wall has only watercolors displayed on it. No wall has the work of only one student displayed on it. No wall has both a painting by Franz and a painting by Isaacs displayed on it. Greene's watercolor is displayed in the upper position of the wall on which Franz's oil is displayed. Isaacs's oil is displayed in the lower position of wall 4.", "question": "Which one of the following could be true?", "options": [ "A) Both of Franz's paintings and both of Greene's paintings are displayed in lower positions.", "B) Both of Franz's paintings and both of Greene's paintings are displayed in upper positions.", "C) Both of Franz's paintings and both of Hidalgo's paintings are displayed in upper positions.", "D) Both of Greene's paintings and both of Hidalgo's paintings are displayed in lower positions.", "E) Both of Greene's paintings and both of Hidalgo's paintings are displayed in upper positions." ], "answer": "D" }, { "id": "ar_lsat_201612_3-G_3_18", "context": "At an upcoming exhibition, four art students—Franz, Greene, Hidalgo, and Isaacs—will each display exactly two paintings—an oil and a watercolor. Exactly two paintings will be displayed on each of the walls of the exhibition room—walls 1, 2, 3, and 4—with one painting in the upper position and one in the lower position. The following conditions will apply: No wall has only watercolors displayed on it. No wall has the work of only one student displayed on it. No wall has both a painting by Franz and a painting by Isaacs displayed on it. Greene's watercolor is displayed in the upper position of the wall on which Franz's oil is displayed. Isaacs's oil is displayed in the lower position of wall 4.", "question": "Which one of the following CANNOT be true?", "options": [ "A) Franz's watercolor is displayed on the same wall as Greene's oil.", "B) Franz's watercolor is displayed on the same wall as Hidalgo's oil.", "C) Greene's oil is displayed in an upper position.", "D) Hidalgo's watercolor is displayed in a lower position.", "E) Isaacs's watercolor is displayed on the same wall as Hidalgo's oil." ], "answer": "D" }, { "id": "ar_lsat_201612_3-G_4_19", "context": "Three real estate companies—RealProp, Southco, and Trustcorp—are considering trading buildings with one another. Each building they own is categorized as either class 1, class 2, or class 3, depending on its approximate value: RealProp owns the Garza Tower (class 1), the Yates House (class 3), and the Zimmer House (class 3). Southco owns the Flores Tower (class 1) and the Lynch Building (class 2). Trustcorp owns the King Building, the Meyer Building, and the Ortiz Building, all of which are class 2. Each trade must be of exactly one of the following three kinds: Trading one building for one other building of the same class Trading one class 1 building for two class 2 buildings Trading one class 2 building for two class 3 buildings", "question": "Which one of the following could be the buildings owned by the three companies after only one trade is made?", "options": [ "A) RealProp: the Flores Tower and the Garza Tower Southco: the Lynch Building, the Yates House, and the Zimmer House Trustcorp: the King Building, the Meyer Building, and the Ortiz Building", "B) RealProp: the Garza Tower, the King Building, and the Ortiz Building Southco: the Flores Tower and the Lynch Building Trustcorp: the Meyer Building, the Yates House, and the Zimmer House", "C) RealProp: the Garza Tower and the Lynch Building Southco: the Flores Tower, the Yates House, and the Zimmer House Trustcorp: the King Building, the Meyer Building, and the Ortiz Building", "D) RealProp: the Garza Tower, the Meyer Building, and the Yates House Southco: the Flores Tower and the Lynch Building Trustcorp: the King Building, the Ortiz Building, and the Zimmer House", "E) RealProp: the Garza Tower, the Yates House, and the Zimmer House Southco: the Lynch Building and the Ortiz Building Trustcorp: the Flores Tower, the King Building, and the Meyer Building" ], "answer": "C" }, { "id": "ar_lsat_201612_3-G_4_20", "context": "Three real estate companies—RealProp, Southco, and Trustcorp—are considering trading buildings with one another. Each building they own is categorized as either class 1, class 2, or class 3, depending on its approximate value: RealProp owns the Garza Tower (class 1), the Yates House (class 3), and the Zimmer House (class 3). Southco owns the Flores Tower (class 1) and the Lynch Building (class 2). Trustcorp owns the King Building, the Meyer Building, and the Ortiz Building, all of which are class 2. Each trade must be of exactly one of the following three kinds: Trading one building for one other building of the same class Trading one class 1 building for two class 2 buildings Trading one class 2 building for two class 3 buildings", "question": "Which one of the following CANNOT be true, no matter how many trades are made?", "options": [ "A) The buildings owned by RealProp are the Flores Tower and the Garza Tower.", "B) The buildings owned by Southco are the Flores Tower and the Meyer Building.", "C) The buildings owned by Southco are the Garza Tower and the Lynch Building.", "D) The buildings owned by Trustcorp are the Flores Tower and the Ortiz Building.", "E) The buildings owned by Trustcorp are the Garza Tower and the Meyer Building." ], "answer": "A" }, { "id": "ar_lsat_201612_3-G_4_21", "context": "Three real estate companies—RealProp, Southco, and Trustcorp—are considering trading buildings with one another. Each building they own is categorized as either class 1, class 2, or class 3, depending on its approximate value: RealProp owns the Garza Tower (class 1), the Yates House (class 3), and the Zimmer House (class 3). Southco owns the Flores Tower (class 1) and the Lynch Building (class 2). Trustcorp owns the King Building, the Meyer Building, and the Ortiz Building, all of which are class 2. Each trade must be of exactly one of the following three kinds: Trading one building for one other building of the same class Trading one class 1 building for two class 2 buildings Trading one class 2 building for two class 3 buildings", "question": "If RealProp owns only class 2 buildings after some number of trades, which one of the following must be true?", "options": [ "A) Trustcorp owns a class 1 building.", "B) Trustcorp owns the Meyer Building.", "C) Southco owns a class 2 Building.", "D) Southco owns both of the class 3 buildings.", "E) Southco owns the Flores Tower." ], "answer": "A" }, { "id": "ar_lsat_201612_3-G_4_22", "context": "Three real estate companies—RealProp, Southco, and Trustcorp—are considering trading buildings with one another. Each building they own is categorized as either class 1, class 2, or class 3, depending on its approximate value: RealProp owns the Garza Tower (class 1), the Yates House (class 3), and the Zimmer House (class 3). Southco owns the Flores Tower (class 1) and the Lynch Building (class 2). Trustcorp owns the King Building, the Meyer Building, and the Ortiz Building, all of which are class 2. Each trade must be of exactly one of the following three kinds: Trading one building for one other building of the same class Trading one class 1 building for two class 2 buildings Trading one class 2 building for two class 3 buildings", "question": "If Trustcorp owns no class 2 buildings after some number of trades, which one of the following must be true?", "options": [ "A) RealProp owns a class 1 building.", "B) Southco owns only class 2 buildings.", "C) Southco has made at least one trade with Trustcorp.", "D) Trustcorp owns the Garza Tower.", "E) Trustcorp owns the Zimmer House." ], "answer": "E" }, { "id": "ar_lsat_201612_3-G_4_23", "context": "Three real estate companies—RealProp, Southco, and Trustcorp—are considering trading buildings with one another. Each building they own is categorized as either class 1, class 2, or class 3, depending on its approximate value: RealProp owns the Garza Tower (class 1), the Yates House (class 3), and the Zimmer House (class 3). Southco owns the Flores Tower (class 1) and the Lynch Building (class 2). Trustcorp owns the King Building, the Meyer Building, and the Ortiz Building, all of which are class 2. Each trade must be of exactly one of the following three kinds: Trading one building for one other building of the same class Trading one class 1 building for two class 2 buildings Trading one class 2 building for two class 3 buildings", "question": "Which one of the following CANNOT be true, no matter how many trades are made?", "options": [ "A) The buildings owned by RealProp are the Lynch Building, the Meyer Building, and the Ortiz Building.", "B) The buildings owned by Southco are the Garza Tower and the Meyer Building.", "C) The buildings owned by Southco are the King Building, the Meyer Building, and the Ortiz Building.", "D) The buildings owned by Trustcorp are the Flores Tower and the Yates House.", "E) The buildings owned by Trustcorp are the Garza Tower and the Lynch Building." ], "answer": "D" } ] ================================================ FILE: data/AR-LSAT/train.json ================================================ [ { "id": "ar_lsat_199106_2-G_1_1", "context": "Exactly six trade representatives negotiate a treaty: Klosnik, Londi, Manley, Neri, Osata, Poirier. There are exactly six chairs evenly spaced around a circular table. The chairs are numbered 1 through 6, with successively numbered chairs next to each other and chair number 1 next to chair number 6. Each chair is occupied by exactly one of the representatives. The following conditions apply: Poirier sits immediately next to Neri. Londi sits immediately next to Manley, Neri, or both. Klosnik does not sit immediately next to Manley. If Osata sits immediately next to Poirier, Osata does not sit immediately next to Manley.", "question": "Which one of the following seating arrangements of the six representatives in chairs 1 through 6 would NOT violate the stated conditions?", "options": [ "A) Klosnik, Poirier, Neri, Manley, Osata, Londi", "B) Klosnik, Londi, Manley, Poirier, Neri, Osata", "C) Klosnik, Londi, Manley, Osata, Poirier, Neri", "D) Klosnik, Osata, Poirier, Neri, Londi, Manley", "E) Klosnik, Neri, Londi, Osata, Manley, Poirier" ], "answer": "B" }, { "id": "ar_lsat_199106_2-G_1_2", "context": "Exactly six trade representatives negotiate a treaty: Klosnik, Londi, Manley, Neri, Osata, Poirier. There are exactly six chairs evenly spaced around a circular table. The chairs are numbered 1 through 6, with successively numbered chairs next to each other and chair number 1 next to chair number 6. Each chair is occupied by exactly one of the representatives. The following conditions apply: Poirier sits immediately next to Neri. Londi sits immediately next to Manley, Neri, or both. Klosnik does not sit immediately next to Manley. If Osata sits immediately next to Poirier, Osata does not sit immediately next to Manley.", "question": "If Londi sits immediately next to Poirier, which one of the following is a pair of representatives who must sit immediately next to each other?", "options": [ "A) Klosnik and Osata", "B) Londi and Neri", "C) Londi and Osata", "D) Manley and Neri", "E) Manley and Poirier" ], "answer": "A" }, { "id": "ar_lsat_199106_2-G_1_3", "context": "Exactly six trade representatives negotiate a treaty: Klosnik, Londi, Manley, Neri, Osata, Poirier. There are exactly six chairs evenly spaced around a circular table. The chairs are numbered 1 through 6, with successively numbered chairs next to each other and chair number 1 next to chair number 6. Each chair is occupied by exactly one of the representatives. The following conditions apply: Poirier sits immediately next to Neri. Londi sits immediately next to Manley, Neri, or both. Klosnik does not sit immediately next to Manley. If Osata sits immediately next to Poirier, Osata does not sit immediately next to Manley.", "question": "If Klosnik sits directly between Londi and Poirier, then Manley must sit directly between", "options": [ "A) Londi and Neri", "B) Londi and Osata", "C) Neri and Osata", "D) Neri and Poirier", "E) Osata and Poirier" ], "answer": "B" }, { "id": "ar_lsat_199106_2-G_1_4", "context": "Exactly six trade representatives negotiate a treaty: Klosnik, Londi, Manley, Neri, Osata, Poirier. There are exactly six chairs evenly spaced around a circular table. The chairs are numbered 1 through 6, with successively numbered chairs next to each other and chair number 1 next to chair number 6. Each chair is occupied by exactly one of the representatives. The following conditions apply: Poirier sits immediately next to Neri. Londi sits immediately next to Manley, Neri, or both. Klosnik does not sit immediately next to Manley. If Osata sits immediately next to Poirier, Osata does not sit immediately next to Manley.", "question": "If Neri sits immediately next to Manley, then Klosnik can sit directly between", "options": [ "A) Londi and Manley", "B) Londi and Poirier", "C) Neri and Osata", "D) Neri and Poirier", "E) Poirier and Osata" ], "answer": "E" }, { "id": "ar_lsat_199106_2-G_1_5", "context": "Exactly six trade representatives negotiate a treaty: Klosnik, Londi, Manley, Neri, Osata, Poirier. There are exactly six chairs evenly spaced around a circular table. The chairs are numbered 1 through 6, with successively numbered chairs next to each other and chair number 1 next to chair number 6. Each chair is occupied by exactly one of the representatives. The following conditions apply: Poirier sits immediately next to Neri. Londi sits immediately next to Manley, Neri, or both. Klosnik does not sit immediately next to Manley. If Osata sits immediately next to Poirier, Osata does not sit immediately next to Manley.", "question": "If Londi sits immediately next to Manley, then which one of the following is a complete and accurate list of representatives any one of whom could also sit immediately next to Londi?", "options": [ "A) Klosnik", "B) Klosnik, Neri", "C) Neri, Poirier", "D) Klosnik, Osata, Poirier", "E) Klosnik, Neri, Osata, Poirier" ], "answer": "E" }, { "id": "ar_lsat_199106_2-G_1_6", "context": "Exactly six trade representatives negotiate a treaty: Klosnik, Londi, Manley, Neri, Osata, Poirier. There are exactly six chairs evenly spaced around a circular table. The chairs are numbered 1 through 6, with successively numbered chairs next to each other and chair number 1 next to chair number 6. Each chair is occupied by exactly one of the representatives. The following conditions apply: Poirier sits immediately next to Neri. Londi sits immediately next to Manley, Neri, or both. Klosnik does not sit immediately next to Manley. If Osata sits immediately next to Poirier, Osata does not sit immediately next to Manley.", "question": "If Londi sits immediately next to Neri, which one of the following statements must be false?", "options": [ "A) Klosnik sits immediately next to Osata.", "B) Londi sits immediately next to Manley.", "C) Osata sits immediately next to Poirier.", "D) Neri sits directly between Londi and Poirier.", "E) Osata sits directly between Klosnik and Manley." ], "answer": "C" }, { "id": "ar_lsat_199106_2-G_1_7", "context": "Exactly six trade representatives negotiate a treaty: Klosnik, Londi, Manley, Neri, Osata, Poirier. There are exactly six chairs evenly spaced around a circular table. The chairs are numbered 1 through 6, with successively numbered chairs next to each other and chair number 1 next to chair number 6. Each chair is occupied by exactly one of the representatives. The following conditions apply: Poirier sits immediately next to Neri. Londi sits immediately next to Manley, Neri, or both. Klosnik does not sit immediately next to Manley. If Osata sits immediately next to Poirier, Osata does not sit immediately next to Manley.", "question": "If Klosnik sits immediately next to Osata, then Londi CANNOT sit directly between", "options": [ "A) Klosnik and Manley", "B) Klosnik and Neri", "C) Manley and Neri", "D) Manley and Poirier", "E) Neri and Osata" ], "answer": "E" }, { "id": "ar_lsat_199106_2-G_2_8", "context": "A small software firm has four offices, numbered 1, 2, 3, and 4. Each of its offices has exactly one computer and exactly one printer. Each of these eight machines was bought in either 1987, 1988, or 1989. The eight machines were bought in a manner consistent with the following conditions: The computer in each office was bought either in an earlier year than or in the same year as the printer in that office. The computer in office 2 and the printer in office 1 were bought in the same year. The computer in office 3 and the printer in office 4 were bought in the same year. The computer in office 2 and the computer in office 3 were bought in different years. The computer in office 1 and the printer in office 3 were bought in 1988.", "question": "If the computer in office 3 was bought in an earlier year than the printer in office 3 was, then which one of the following statements could be true?", "options": [ "A) The computer in office 2 was bought in 1987.", "B) The computer in office 2 was bought in 1988.", "C) The computer in office 4 was bought in 1988.", "D) The printer in office 4 was bought in 1988.", "E) The printer in office 4 was bought in 1989." ], "answer": "B" }, { "id": "ar_lsat_199106_2-G_2_9", "context": "A small software firm has four offices, numbered 1, 2, 3, and 4. Each of its offices has exactly one computer and exactly one printer. Each of these eight machines was bought in either 1987, 1988, or 1989. The eight machines were bought in a manner consistent with the following conditions: The computer in each office was bought either in an earlier year than or in the same year as the printer in that office. The computer in office 2 and the printer in office 1 were bought in the same year. The computer in office 3 and the printer in office 4 were bought in the same year. The computer in office 2 and the computer in office 3 were bought in different years. The computer in office 1 and the printer in office 3 were bought in 1988.", "question": "Which one of the following statements could be true?", "options": [ "A) The printer in office 1 was bought in 1987.", "B) The computer in office 2 was bought in 1987.", "C) The computer in office 3 was bought in 1989.", "D) The printer in office 4 was bought in 1988.", "E) The printer in office 4 was bought in 1989." ], "answer": "D" }, { "id": "ar_lsat_199106_2-G_2_10", "context": "A small software firm has four offices, numbered 1, 2, 3, and 4. Each of its offices has exactly one computer and exactly one printer. Each of these eight machines was bought in either 1987, 1988, or 1989. The eight machines were bought in a manner consistent with the following conditions: The computer in each office was bought either in an earlier year than or in the same year as the printer in that office. The computer in office 2 and the printer in office 1 were bought in the same year. The computer in office 3 and the printer in office 4 were bought in the same year. The computer in office 2 and the computer in office 3 were bought in different years. The computer in office 1 and the printer in office 3 were bought in 1988.", "question": "If as few of the eight machines as possible were bought in 1987, then what is the exact number of machines that were bought in 1987?", "options": [ "A) 0", "B) 1", "C) 2", "D) 3", "E) 4" ], "answer": "A" }, { "id": "ar_lsat_199106_2-G_2_11", "context": "A small software firm has four offices, numbered 1, 2, 3, and 4. Each of its offices has exactly one computer and exactly one printer. Each of these eight machines was bought in either 1987, 1988, or 1989. The eight machines were bought in a manner consistent with the following conditions: The computer in each office was bought either in an earlier year than or in the same year as the printer in that office. The computer in office 2 and the printer in office 1 were bought in the same year. The computer in office 3 and the printer in office 4 were bought in the same year. The computer in office 2 and the computer in office 3 were bought in different years. The computer in office 1 and the printer in office 3 were bought in 1988.", "question": "If the computer in office 4 was bought in 1988, then which one of the following statements must be true?", "options": [ "A) The printer in office 1 was bought in 1988.", "B) The printer in office 1 was bought in 1989.", "C) The computer in office 2 was bought in 1988.", "D) The computer in office 3 was bought in 1987.", "E) The printer in office 4 was bought in 1989." ], "answer": "B" }, { "id": "ar_lsat_199106_2-G_2_12", "context": "A small software firm has four offices, numbered 1, 2, 3, and 4. Each of its offices has exactly one computer and exactly one printer. Each of these eight machines was bought in either 1987, 1988, or 1989. The eight machines were bought in a manner consistent with the following conditions: The computer in each office was bought either in an earlier year than or in the same year as the printer in that office. The computer in office 2 and the printer in office 1 were bought in the same year. The computer in office 3 and the printer in office 4 were bought in the same year. The computer in office 2 and the computer in office 3 were bought in different years. The computer in office 1 and the printer in office 3 were bought in 1988.", "question": "If the computer in office 3 was bought in 1988, then which one of the following statements could be true?", "options": [ "A) The printer in office 1 was bought in 1988.", "B) The computer in office 2 was bought in 1987.", "C) The printer in office 2 was bought in 1988.", "D) The computer in office 4 was bought in 1987.", "E) The printer in office 4 was bought in 1989." ], "answer": "D" }, { "id": "ar_lsat_199106_2-G_2_13", "context": "A small software firm has four offices, numbered 1, 2, 3, and 4. Each of its offices has exactly one computer and exactly one printer. Each of these eight machines was bought in either 1987, 1988, or 1989. The eight machines were bought in a manner consistent with the following conditions: The computer in each office was bought either in an earlier year than or in the same year as the printer in that office. The computer in office 2 and the printer in office 1 were bought in the same year. The computer in office 3 and the printer in office 4 were bought in the same year. The computer in office 2 and the computer in office 3 were bought in different years. The computer in office 1 and the printer in office 3 were bought in 1988.", "question": "Suppose that the computer in office 2 and the computer in office 3 had been bought in the same year as each other. If all of the other conditions remained the same, then which one of the following machines could have been bought in 1989?", "options": [ "A) the printer in office 1", "B) the computer in office 2", "C) the printer in office 2", "D) the computer in office 4", "E) the printer in office 4" ], "answer": "C" }, { "id": "ar_lsat_199106_2-G_3_14", "context": "The eight partners of a law firm are Gregg, Hodges, Ivan, James, King, MacNeil, Nader, and Owens. In each of the years 1961 through 1968, exactly one of the partners joined the firm. Hodges joined the firm before Nader. King joined the firm before James. Nader and James joined the firm before Gregg. Nader joined the firm before Owens. James joined the firm before MacNeil. Gregg joined the firm before Ivan.", "question": "Which one of the following CANNOT be true?", "options": [ "A) Hodges joined the law firm in 1961.", "B) Hodges joined the law firm in 1963.", "C) Gregg joined the law firm in 1964.", "D) MacNeil joined the law firm in 1964.", "E) Owens joined the law firm in 1964." ], "answer": "C" }, { "id": "ar_lsat_199106_2-G_3_15", "context": "The eight partners of a law firm are Gregg, Hodges, Ivan, James, King, MacNeil, Nader, and Owens. In each of the years 1961 through 1968, exactly one of the partners joined the firm. Hodges joined the firm before Nader. King joined the firm before James. Nader and James joined the firm before Gregg. Nader joined the firm before Owens. James joined the firm before MacNeil. Gregg joined the firm before Ivan.", "question": "If James joined the firm in 1962, which one of the following CANNOT be true?", "options": [ "A) Hodges joined the firm in 1963.", "B) MacNeil joined the firm in 1963.", "C) Hodges joined the firm in 1964.", "D) Nader joined the firm in 1964.", "E) Owens joined the firm in 1964." ], "answer": "E" }, { "id": "ar_lsat_199106_2-G_3_16", "context": "The eight partners of a law firm are Gregg, Hodges, Ivan, James, King, MacNeil, Nader, and Owens. In each of the years 1961 through 1968, exactly one of the partners joined the firm. Hodges joined the firm before Nader. King joined the firm before James. Nader and James joined the firm before Gregg. Nader joined the firm before Owens. James joined the firm before MacNeil. Gregg joined the firm before Ivan.", "question": "Of the following, which one is the latest year in which James could have joined the firm?", "options": [ "A) 1962", "B) 1963", "C) 1964", "D) 1965", "E) 1966" ], "answer": "D" }, { "id": "ar_lsat_199106_2-G_3_17", "context": "The eight partners of a law firm are Gregg, Hodges, Ivan, James, King, MacNeil, Nader, and Owens. In each of the years 1961 through 1968, exactly one of the partners joined the firm. Hodges joined the firm before Nader. King joined the firm before James. Nader and James joined the firm before Gregg. Nader joined the firm before Owens. James joined the firm before MacNeil. Gregg joined the firm before Ivan.", "question": "If Owens joined the firm in 1965 and MacNeil joined it in 1967, one can determine the years in which exactly how many of the other partners joined the firm?", "options": [ "A) 1", "B) 2", "C) 3", "D) 4", "E) 5" ], "answer": "B" }, { "id": "ar_lsat_199106_2-G_3_18", "context": "The eight partners of a law firm are Gregg, Hodges, Ivan, James, King, MacNeil, Nader, and Owens. In each of the years 1961 through 1968, exactly one of the partners joined the firm. Hodges joined the firm before Nader. King joined the firm before James. Nader and James joined the firm before Gregg. Nader joined the firm before Owens. James joined the firm before MacNeil. Gregg joined the firm before Ivan.", "question": "Assume that Owens joined the law firm before MacNeil. Of the following, which one is the earliest year in which MacNeil could have joined it?", "options": [ "A) 1963", "B) 1964", "C) 1965", "D) 1966", "E) 1967" ], "answer": "D" }, { "id": "ar_lsat_199106_2-G_4_19", "context": "A railway company has exactly three lines: line 1, line 2, and line 3. The company prints three sets of tickets for January and three sets of tickets for February: one set for each of its lines for each of the two months. The company's tickets are printed in a manner consistent with the following conditions: Each of the six sets of tickets is exactly one of the following colors: green, purple, red, yellow. For each line, the January tickets are a different color than the February tickets. For each month, tickets for different lines are in different colors. Exactly one set of January tickets is red. For line 3, either the January tickets or the February tickets, but not both, are green. The January tickets for line 2 are purple. No February tickets are purple.", "question": "If the line 3 tickets for January are red, then which one of the following statements must be true?", "options": [ "A) The line 1 tickets for January are green.", "B) The line 1 tickets for January are yellow.", "C) The line 1 tickets for February are red.", "D) The line 2 tickets for February are yellow.", "E) The line 3 tickets for February are green." ], "answer": "E" }, { "id": "ar_lsat_199106_2-G_4_20", "context": "A railway company has exactly three lines: line 1, line 2, and line 3. The company prints three sets of tickets for January and three sets of tickets for February: one set for each of its lines for each of the two months. The company's tickets are printed in a manner consistent with the following conditions: Each of the six sets of tickets is exactly one of the following colors: green, purple, red, yellow. For each line, the January tickets are a different color than the February tickets. For each month, tickets for different lines are in different colors. Exactly one set of January tickets is red. For line 3, either the January tickets or the February tickets, but not both, are green. The January tickets for line 2 are purple. No February tickets are purple.", "question": "If one set of the line 2 tickets is green, then which one of the following statements must be true?", "options": [ "A) The line 1 tickets for January are red.", "B) The line 3 tickets for January are red.", "C) The line 1 tickets for February are red.", "D) The line 3 tickets for February are green.", "E) The line 3 tickets for February are yellow." ], "answer": "A" }, { "id": "ar_lsat_199106_2-G_4_21", "context": "A railway company has exactly three lines: line 1, line 2, and line 3. The company prints three sets of tickets for January and three sets of tickets for February: one set for each of its lines for each of the two months. The company's tickets are printed in a manner consistent with the following conditions: Each of the six sets of tickets is exactly one of the following colors: green, purple, red, yellow. For each line, the January tickets are a different color than the February tickets. For each month, tickets for different lines are in different colors. Exactly one set of January tickets is red. For line 3, either the January tickets or the February tickets, but not both, are green. The January tickets for line 2 are purple. No February tickets are purple.", "question": "Which one of the following statements could be true?", "options": [ "A) No January ticket is green.", "B) No February ticket is green.", "C) Only line 2 tickets are red.", "D) One set of January tickets is green and one set of January tickets is yellow.", "E) The line 2 tickets for January are the same color as the line 1 tickets for February." ], "answer": "A" }, { "id": "ar_lsat_199106_2-G_4_22", "context": "A railway company has exactly three lines: line 1, line 2, and line 3. The company prints three sets of tickets for January and three sets of tickets for February: one set for each of its lines for each of the two months. The company's tickets are printed in a manner consistent with the following conditions: Each of the six sets of tickets is exactly one of the following colors: green, purple, red, yellow. For each line, the January tickets are a different color than the February tickets. For each month, tickets for different lines are in different colors. Exactly one set of January tickets is red. For line 3, either the January tickets or the February tickets, but not both, are green. The January tickets for line 2 are purple. No February tickets are purple.", "question": "Which one of the following statements could be true?", "options": [ "A) Both the line 1 tickets for January and the line 2 tickets for February are green.", "B) Both the line 1 tickets for January and the line 2 tickets for February are yellow.", "C) Both the line 1 tickets for January and the line 3 tickets for February are yellow.", "D) The line 1 tickets for January are green, and the line 3 tickets for February are red.", "E) The line 3 tickets for January are yellow, and the line 1 tickets for February are red." ], "answer": "B" }, { "id": "ar_lsat_199106_2-G_4_23", "context": "A railway company has exactly three lines: line 1, line 2, and line 3. The company prints three sets of tickets for January and three sets of tickets for February: one set for each of its lines for each of the two months. The company's tickets are printed in a manner consistent with the following conditions: Each of the six sets of tickets is exactly one of the following colors: green, purple, red, yellow. For each line, the January tickets are a different color than the February tickets. For each month, tickets for different lines are in different colors. Exactly one set of January tickets is red. For line 3, either the January tickets or the February tickets, but not both, are green. The January tickets for line 2 are purple. No February tickets are purple.", "question": "If the line 3 tickets for February are yellow, then each of the following statements must be true EXCEPT:", "options": [ "A) One set of January tickets is green.", "B) One set of line 1 tickets is red.", "C) One set of line 2 tickets is red.", "D) The tickets in two of the six sets are red.", "E) The tickets in two of the six sets are yellow." ], "answer": "E" }, { "id": "ar_lsat_199106_2-G_4_24", "context": "A railway company has exactly three lines: line 1, line 2, and line 3. The company prints three sets of tickets for January and three sets of tickets for February: one set for each of its lines for each of the two months. The company's tickets are printed in a manner consistent with the following conditions: Each of the six sets of tickets is exactly one of the following colors: green, purple, red, yellow. For each line, the January tickets are a different color than the February tickets. For each month, tickets for different lines are in different colors. Exactly one set of January tickets is red. For line 3, either the January tickets or the February tickets, but not both, are green. The January tickets for line 2 are purple. No February tickets are purple.", "question": "Suppose that none of the ticket sets are purple. If all of the other conditions remain the same, then which one of the following statements could be true?", "options": [ "A) None of the January tickets are green.", "B) None of the February tickets are green.", "C) None of the line 2 tickets are green.", "D) No line 1 or line 2 tickets are yellow.", "E) No line 2 or line 3 tickets are red." ], "answer": "C" }, { "id": "ar_lsat_199110_3-G_1_1", "context": "The Mammoth Corporation has just completed hiring nine new workers: Brandt, Calva, Duvall, Eberle, Fu, Garcia, Haga, Irving, and Jessup. Fu and Irving were hired on the same day as each other, and no one else was hired that day. Calva and Garcia were hired on the same day as each other, and no one else was hired that day. On each of the other days of hiring, exactly one worker was hired. Eberle was hired before Brandt. Haga was hired before Duvall. Duvall was hired after Irving but before Eberle. Garcia was hired after both Jessup and Brandt. Brandt was hired before Jessup.", "question": "Who were the last two workers to be hired?", "options": [ "A) Eberle and Jessup", "B) Brandt and Garcia", "C) Brandt and Calva", "D) Garcia and Calva", "E) Jessup and Brandt" ], "answer": "D" }, { "id": "ar_lsat_199110_3-G_1_2", "context": "The Mammoth Corporation has just completed hiring nine new workers: Brandt, Calva, Duvall, Eberle, Fu, Garcia, Haga, Irving, and Jessup. Fu and Irving were hired on the same day as each other, and no one else was hired that day. Calva and Garcia were hired on the same day as each other, and no one else was hired that day. On each of the other days of hiring, exactly one worker was hired. Eberle was hired before Brandt. Haga was hired before Duvall. Duvall was hired after Irving but before Eberle. Garcia was hired after both Jessup and Brandt. Brandt was hired before Jessup.", "question": "Who was hired on the fourth day of hiring?", "options": [ "A) Eberle", "B) Brandt", "C) Irving", "D) Garcia", "E) Jessup" ], "answer": "A" }, { "id": "ar_lsat_199110_3-G_1_3", "context": "The Mammoth Corporation has just completed hiring nine new workers: Brandt, Calva, Duvall, Eberle, Fu, Garcia, Haga, Irving, and Jessup. Fu and Irving were hired on the same day as each other, and no one else was hired that day. Calva and Garcia were hired on the same day as each other, and no one else was hired that day. On each of the other days of hiring, exactly one worker was hired. Eberle was hired before Brandt. Haga was hired before Duvall. Duvall was hired after Irving but before Eberle. Garcia was hired after both Jessup and Brandt. Brandt was hired before Jessup.", "question": "Exactly how many workers were hired before Jessup?", "options": [ "A) 6", "B) 5", "C) 4", "D) 3", "E) 2" ], "answer": "A" }, { "id": "ar_lsat_199110_3-G_1_4", "context": "The Mammoth Corporation has just completed hiring nine new workers: Brandt, Calva, Duvall, Eberle, Fu, Garcia, Haga, Irving, and Jessup. Fu and Irving were hired on the same day as each other, and no one else was hired that day. Calva and Garcia were hired on the same day as each other, and no one else was hired that day. On each of the other days of hiring, exactly one worker was hired. Eberle was hired before Brandt. Haga was hired before Duvall. Duvall was hired after Irving but before Eberle. Garcia was hired after both Jessup and Brandt. Brandt was hired before Jessup.", "question": "Which one of the following must be true?", "options": [ "A) Duvall was the first worker to be hired.", "B) Haga was the first worker to be hired.", "C) Fu and Irving were the first two workers to be hired.", "D) Haga and Fu were the first two workers to be hired.", "E) Either Haga was the first worker to be hired or Fu and Irving were the first two workers to be hired." ], "answer": "E" }, { "id": "ar_lsat_199110_3-G_1_5", "context": "The Mammoth Corporation has just completed hiring nine new workers: Brandt, Calva, Duvall, Eberle, Fu, Garcia, Haga, Irving, and Jessup. Fu and Irving were hired on the same day as each other, and no one else was hired that day. Calva and Garcia were hired on the same day as each other, and no one else was hired that day. On each of the other days of hiring, exactly one worker was hired. Eberle was hired before Brandt. Haga was hired before Duvall. Duvall was hired after Irving but before Eberle. Garcia was hired after both Jessup and Brandt. Brandt was hired before Jessup.", "question": "If Eberle was hired on a Monday, what is the earliest day on which Garcia could have been hired?", "options": [ "A) Monday", "B) Tuesday", "C) Wednesday", "D) Thursday", "E) Friday" ], "answer": "D" }, { "id": "ar_lsat_199110_3-G_2_6", "context": "An apartment building has five floors. Each floor has either one or two apartments. There are exactly eight apartments in the building. The residents of the building are J, K, L, M, N, O, P, and Q, who each live in a different apartment. J lives on a floor with two apartments. K lives on the floor directly above P. The second floor is made up of only one apartment. M and N live on the same floor. O does not live on the same floor as Q. L lives in the only apartment on her floor. Q does not live on the first or second floor.", "question": "Which one of the following must be true?", "options": [ "A) Q lives on the third floor.", "B) Q lives on the fifth floor.", "C) L does not live on the fourth floor.", "D) N does not live on the second floor.", "E) J lives on the first floor." ], "answer": "D" }, { "id": "ar_lsat_199110_3-G_2_7", "context": "An apartment building has five floors. Each floor has either one or two apartments. There are exactly eight apartments in the building. The residents of the building are J, K, L, M, N, O, P, and Q, who each live in a different apartment. J lives on a floor with two apartments. K lives on the floor directly above P. The second floor is made up of only one apartment. M and N live on the same floor. O does not live on the same floor as Q. L lives in the only apartment on her floor. Q does not live on the first or second floor.", "question": "Which one of the following CANNOT be true?", "options": [ "A) K lives on the second floor.", "B) M lives on the first floor.", "C) N lives on the fourth floor.", "D) O lives on the third floor.", "E) P lives on the fifth floor." ], "answer": "E" }, { "id": "ar_lsat_199110_3-G_2_8", "context": "An apartment building has five floors. Each floor has either one or two apartments. There are exactly eight apartments in the building. The residents of the building are J, K, L, M, N, O, P, and Q, who each live in a different apartment. J lives on a floor with two apartments. K lives on the floor directly above P. The second floor is made up of only one apartment. M and N live on the same floor. O does not live on the same floor as Q. L lives in the only apartment on her floor. Q does not live on the first or second floor.", "question": "If J lives on the fourth floor and K lives on the fifth floor, which one of the following can be true?", "options": [ "A) O lives on the first floor.", "B) Q lives on the fourth floor.", "C) N lives on the fifth floor.", "D) L lives on the fourth floor.", "E) P lives on the third floor." ], "answer": "A" }, { "id": "ar_lsat_199110_3-G_2_9", "context": "An apartment building has five floors. Each floor has either one or two apartments. There are exactly eight apartments in the building. The residents of the building are J, K, L, M, N, O, P, and Q, who each live in a different apartment. J lives on a floor with two apartments. K lives on the floor directly above P. The second floor is made up of only one apartment. M and N live on the same floor. O does not live on the same floor as Q. L lives in the only apartment on her floor. Q does not live on the first or second floor.", "question": "If O lives on the second floor, which one of the following CANNOT be true?", "options": [ "A) K lives on the fourth floor.", "B) K lives on the fifth floor.", "C) L lives on the first floor.", "D) L lives on the third floor.", "E) L lives on the fourth floor." ], "answer": "E" }, { "id": "ar_lsat_199110_3-G_2_10", "context": "An apartment building has five floors. Each floor has either one or two apartments. There are exactly eight apartments in the building. The residents of the building are J, K, L, M, N, O, P, and Q, who each live in a different apartment. J lives on a floor with two apartments. K lives on the floor directly above P. The second floor is made up of only one apartment. M and N live on the same floor. O does not live on the same floor as Q. L lives in the only apartment on her floor. Q does not live on the first or second floor.", "question": "If M lives on the fourth floor, which one of the following must be false?", "options": [ "A) O lives on the fifth floor.", "B) J lives on the first floor.", "C) L lives on the second floor.", "D) Q lives on the third floor.", "E) P lives on the first floor." ], "answer": "C" }, { "id": "ar_lsat_199110_3-G_2_11", "context": "An apartment building has five floors. Each floor has either one or two apartments. There are exactly eight apartments in the building. The residents of the building are J, K, L, M, N, O, P, and Q, who each live in a different apartment. J lives on a floor with two apartments. K lives on the floor directly above P. The second floor is made up of only one apartment. M and N live on the same floor. O does not live on the same floor as Q. L lives in the only apartment on her floor. Q does not live on the first or second floor.", "question": "Which one of the following must be true?", "options": [ "A) If J lives on the fourth floor, then Q does not live on the fifth floor.", "B) If O lives on the second floor, then L does not live on the fourth floor.", "C) If N lives on the fourth floor, then K does not live on the second floor.", "D) If K lives on the third floor, then O does not live on the fifth floor.", "E) If P lives on the fourth floor, then M does not live on the third floor." ], "answer": "B" }, { "id": "ar_lsat_199110_3-G_2_12", "context": "An apartment building has five floors. Each floor has either one or two apartments. There are exactly eight apartments in the building. The residents of the building are J, K, L, M, N, O, P, and Q, who each live in a different apartment. J lives on a floor with two apartments. K lives on the floor directly above P. The second floor is made up of only one apartment. M and N live on the same floor. O does not live on the same floor as Q. L lives in the only apartment on her floor. Q does not live on the first or second floor.", "question": "If O lives on the fourth floor and P lives on the second floor, which one of the following must be true?", "options": [ "A) L lives on the first floor.", "B) M lives on the third floor.", "C) Q lives on the third floor.", "D) N lives on the fifth floor.", "E) Q lives on the fifth floor." ], "answer": "C" }, { "id": "ar_lsat_199110_3-G_3_13", "context": "Hannah spends 14 days, exclusive of travel time, in a total of six cities. Each city she visits is in one of three countries—X, Y, or Z. Each of the three countries has many cities. Hannah visits at least one city in each of the three countries. She spends at least two days in each city she visits. She spends only whole days in any city.", "question": "If Hannah spends exactly eight days in the cities of country X, then which one of the following CANNOT be true?", "options": [ "A) She visits exactly two cities in country X.", "B) She visits exactly two cities in country Y.", "C) She visits exactly two cities in country Z.", "D) She visits more cities in country Y than in country Z.", "E) She visits more cities in country Z than in country Y." ], "answer": "A" }, { "id": "ar_lsat_199110_3-G_3_14", "context": "Hannah spends 14 days, exclusive of travel time, in a total of six cities. Each city she visits is in one of three countries—X, Y, or Z. Each of the three countries has many cities. Hannah visits at least one city in each of the three countries. She spends at least two days in each city she visits. She spends only whole days in any city.", "question": "If Hannah visits an equal number of cities in each of the countries, what is the greatest total number of days she can spend visiting cities in country X?", "options": [ "A) 3", "B) 4", "C) 5", "D) 6", "E) 7" ], "answer": "D" }, { "id": "ar_lsat_199110_3-G_3_15", "context": "Hannah spends 14 days, exclusive of travel time, in a total of six cities. Each city she visits is in one of three countries—X, Y, or Z. Each of the three countries has many cities. Hannah visits at least one city in each of the three countries. She spends at least two days in each city she visits. She spends only whole days in any city.", "question": "If Hannah spends three days in the cities of country Y and seven days in the cities of country Z, then which one of the following must be false?", "options": [ "A) She visits more cities in country X than in country Y.", "B) She visits exactly two cities in country X.", "C) She visits more cities in country Z than in country X.", "D) She visits exactly two cities in country Z.", "E) She visits exactly three cities in country Z." ], "answer": "D" }, { "id": "ar_lsat_199110_3-G_3_16", "context": "Hannah spends 14 days, exclusive of travel time, in a total of six cities. Each city she visits is in one of three countries—X, Y, or Z. Each of the three countries has many cities. Hannah visits at least one city in each of the three countries. She spends at least two days in each city she visits. She spends only whole days in any city.", "question": "If the city of Nomo is in country X, and if Hannah spends as many days as possible in Nomo and as few days as possible in each of the other cities that she visits, then which one of the following must be true?", "options": [ "A) Hannah cannot visit any other cities in country X.", "B) Hannah can visit four cities in country Y.", "C) Hannah can spend six days in Nomo.", "D) Hannah cannot spend more than four days in country Z.", "E) Hannah can visit, at most, a total of four cities in countries Y and Z." ], "answer": "B" }, { "id": "ar_lsat_199110_3-G_3_17", "context": "Hannah spends 14 days, exclusive of travel time, in a total of six cities. Each city she visits is in one of three countries—X, Y, or Z. Each of the three countries has many cities. Hannah visits at least one city in each of the three countries. She spends at least two days in each city she visits. She spends only whole days in any city.", "question": "If Hannah visits a combined total of four cities in countries X and Y, what is the greatest total number of days she can spend visiting cities in country Y?", "options": [ "A) 6", "B) 7", "C) 8", "D) 9", "E) 10" ], "answer": "C" }, { "id": "ar_lsat_199110_3-G_4_18", "context": "Exactly six dogs—P, Q, R, S, T, and U—are entered in a dog show. The judge of the show awards exactly four ribbons, one for each of first, second, third, and fourth places, to four of the dogs. The information that follows is all that is available about the six dogs: Each dog is either a greyhound or a labrador, but not both. Two of the six dogs are female and four are male. The judge awards ribbons to both female dogs, exactly one of which is a labrador. Exactly one labrador wins a ribbon. Dogs P and R place ahead of dog S, and dog S places ahead of dogs Q and T. Dogs P and R are greyhounds. Dogs S and U are labradors.", "question": "Which one of the following is a complete and accurate list of the dogs that can be greyhounds?", "options": [ "A) P, Q", "B) P, R", "C) P, Q, R", "D) P, R, T", "E) P, Q, R, T" ], "answer": "E" }, { "id": "ar_lsat_199110_3-G_4_19", "context": "Exactly six dogs—P, Q, R, S, T, and U—are entered in a dog show. The judge of the show awards exactly four ribbons, one for each of first, second, third, and fourth places, to four of the dogs. The information that follows is all that is available about the six dogs: Each dog is either a greyhound or a labrador, but not both. Two of the six dogs are female and four are male. The judge awards ribbons to both female dogs, exactly one of which is a labrador. Exactly one labrador wins a ribbon. Dogs P and R place ahead of dog S, and dog S places ahead of dogs Q and T. Dogs P and R are greyhounds. Dogs S and U are labradors.", "question": "Which one of the following statements CANNOT be true?", "options": [ "A) A female greyhound wins the second place ribbon.", "B) A female labrador wins the second place ribbon.", "C) A female labrador wins the third place ribbon.", "D) A male greyhound wins the fourth place ribbon.", "E) A female greyhound wins the fourth place ribbon." ], "answer": "B" }, { "id": "ar_lsat_199110_3-G_4_20", "context": "Exactly six dogs—P, Q, R, S, T, and U—are entered in a dog show. The judge of the show awards exactly four ribbons, one for each of first, second, third, and fourth places, to four of the dogs. The information that follows is all that is available about the six dogs: Each dog is either a greyhound or a labrador, but not both. Two of the six dogs are female and four are male. The judge awards ribbons to both female dogs, exactly one of which is a labrador. Exactly one labrador wins a ribbon. Dogs P and R place ahead of dog S, and dog S places ahead of dogs Q and T. Dogs P and R are greyhounds. Dogs S and U are labradors.", "question": "Which one of the following dogs must be male?", "options": [ "A) dog P", "B) dog R", "C) dog S", "D) dog T", "E) dog U" ], "answer": "E" }, { "id": "ar_lsat_199110_3-G_4_21", "context": "Exactly six dogs—P, Q, R, S, T, and U—are entered in a dog show. The judge of the show awards exactly four ribbons, one for each of first, second, third, and fourth places, to four of the dogs. The information that follows is all that is available about the six dogs: Each dog is either a greyhound or a labrador, but not both. Two of the six dogs are female and four are male. The judge awards ribbons to both female dogs, exactly one of which is a labrador. Exactly one labrador wins a ribbon. Dogs P and R place ahead of dog S, and dog S places ahead of dogs Q and T. Dogs P and R are greyhounds. Dogs S and U are labradors.", "question": "Which one of the following statements can be false?", "options": [ "A) Dog P places ahead of dog R.", "B) Dog P places ahead of dog T.", "C) Dog R places ahead of dog U.", "D) Dog R places ahead of dog T.", "E) Dog S places ahead of dog U." ], "answer": "A" }, { "id": "ar_lsat_199110_3-G_4_22", "context": "Exactly six dogs—P, Q, R, S, T, and U—are entered in a dog show. The judge of the show awards exactly four ribbons, one for each of first, second, third, and fourth places, to four of the dogs. The information that follows is all that is available about the six dogs: Each dog is either a greyhound or a labrador, but not both. Two of the six dogs are female and four are male. The judge awards ribbons to both female dogs, exactly one of which is a labrador. Exactly one labrador wins a ribbon. Dogs P and R place ahead of dog S, and dog S places ahead of dogs Q and T. Dogs P and R are greyhounds. Dogs S and U are labradors.", "question": "If dog Q is female, which one of the following statements can be false?", "options": [ "A) Dog P is male.", "B) Dog R is male.", "C) Dog Q wins the fourth place ribbon.", "D) Dog Q is a greyhound.", "E) Dog T is a greyhound." ], "answer": "E" }, { "id": "ar_lsat_199110_3-G_4_23", "context": "Exactly six dogs—P, Q, R, S, T, and U—are entered in a dog show. The judge of the show awards exactly four ribbons, one for each of first, second, third, and fourth places, to four of the dogs. The information that follows is all that is available about the six dogs: Each dog is either a greyhound or a labrador, but not both. Two of the six dogs are female and four are male. The judge awards ribbons to both female dogs, exactly one of which is a labrador. Exactly one labrador wins a ribbon. Dogs P and R place ahead of dog S, and dog S places ahead of dogs Q and T. Dogs P and R are greyhounds. Dogs S and U are labradors.", "question": "If dog T wins the fourth place ribbon, then which one of the following statements must be true?", "options": [ "A) Dog P is male.", "B) Dog Q is male.", "C) Dog T is male.", "D) Dog Q is a labrador.", "E) Dog T is a labrador." ], "answer": "B" }, { "id": "ar_lsat_199110_3-G_4_24", "context": "Exactly six dogs—P, Q, R, S, T, and U—are entered in a dog show. The judge of the show awards exactly four ribbons, one for each of first, second, third, and fourth places, to four of the dogs. The information that follows is all that is available about the six dogs: Each dog is either a greyhound or a labrador, but not both. Two of the six dogs are female and four are male. The judge awards ribbons to both female dogs, exactly one of which is a labrador. Exactly one labrador wins a ribbon. Dogs P and R place ahead of dog S, and dog S places ahead of dogs Q and T. Dogs P and R are greyhounds. Dogs S and U are labradors.", "question": "Which one of the following statements could be true?", "options": [ "A) Dog P does not win a ribbon.", "B) Dog R does not win a ribbon.", "C) Dog S does not win a ribbon.", "D) Dog T wins a ribbon.", "E) Dog U wins a ribbon." ], "answer": "D" }, { "id": "ar_lsat_199112_1-G_1_1", "context": "Three couples—John and Kate, Lewis and Marie, and Nat and Olive have dinner in a restaurant together. Kate, Marie, and Olive are women; the other three are men. Each person orders one and only one of the following kinds of entrees: pork chops, roast beef, swordfish, tilefish, veal cutlet. The six people order in a manner consistent with the following conditions: The two people in each couple do not order the same kind of entree as each other. None of the men orders the same kind of entree as any of the other men. Marie orders swordfish. Neither John nor Nat orders a fish entree. Olive orders roast beef.", "question": "Which one of the following is a complete and accurate list of the entrees any one of which Lewis could order?", "options": [ "A) pork chops, roast beef", "B) pork chops, veal cutlet", "C) pork chops, swordfish, veal cutlet", "D) pork chops, roast beef, tilefish, veal cutlet", "E) pork chops, roast beef, swordfish, tilefish, veal cutlet" ], "answer": "D" }, { "id": "ar_lsat_199112_1-G_1_2", "context": "Three couples—John and Kate, Lewis and Marie, and Nat and Olive have dinner in a restaurant together. Kate, Marie, and Olive are women; the other three are men. Each person orders one and only one of the following kinds of entrees: pork chops, roast beef, swordfish, tilefish, veal cutlet. The six people order in a manner consistent with the following conditions: The two people in each couple do not order the same kind of entree as each other. None of the men orders the same kind of entree as any of the other men. Marie orders swordfish. Neither John nor Nat orders a fish entree. Olive orders roast beef.", "question": "Which one of the following statements could be true?", "options": [ "A) John orders the same kind of entree as Marie does.", "B) Kate orders the same kind of entree as Nat does.", "C) Lewis orders the same kind of entree as Nat does.", "D) Marie orders the same kind of entree as Olive does.", "E) Nat orders the same kind of entree as Olive does." ], "answer": "B" }, { "id": "ar_lsat_199112_1-G_1_3", "context": "Three couples—John and Kate, Lewis and Marie, and Nat and Olive have dinner in a restaurant together. Kate, Marie, and Olive are women; the other three are men. Each person orders one and only one of the following kinds of entrees: pork chops, roast beef, swordfish, tilefish, veal cutlet. The six people order in a manner consistent with the following conditions: The two people in each couple do not order the same kind of entree as each other. None of the men orders the same kind of entree as any of the other men. Marie orders swordfish. Neither John nor Nat orders a fish entree. Olive orders roast beef.", "question": "Which one of the following statements must be true?", "options": [ "A) One of the men orders pork chops or veal cutlet.", "B) One of the men orders swordfish or veal cutlet.", "C) Two of the women order tilefish.", "D) None of the men orders a fish entree.", "E) Exactly one of the women orders a fish entree." ], "answer": "A" }, { "id": "ar_lsat_199112_1-G_1_4", "context": "Three couples—John and Kate, Lewis and Marie, and Nat and Olive have dinner in a restaurant together. Kate, Marie, and Olive are women; the other three are men. Each person orders one and only one of the following kinds of entrees: pork chops, roast beef, swordfish, tilefish, veal cutlet. The six people order in a manner consistent with the following conditions: The two people in each couple do not order the same kind of entree as each other. None of the men orders the same kind of entree as any of the other men. Marie orders swordfish. Neither John nor Nat orders a fish entree. Olive orders roast beef.", "question": "If John orders veal cutlet, then which one of the following statements must be true?", "options": [ "A) Kate orders roast beef.", "B) Kate orders swordfish.", "C) Lewis orders tilefish.", "D) Lewis orders veal cutlet.", "E) Nat orders pork chops." ], "answer": "E" }, { "id": "ar_lsat_199112_1-G_1_5", "context": "Three couples—John and Kate, Lewis and Marie, and Nat and Olive have dinner in a restaurant together. Kate, Marie, and Olive are women; the other three are men. Each person orders one and only one of the following kinds of entrees: pork chops, roast beef, swordfish, tilefish, veal cutlet. The six people order in a manner consistent with the following conditions: The two people in each couple do not order the same kind of entree as each other. None of the men orders the same kind of entree as any of the other men. Marie orders swordfish. Neither John nor Nat orders a fish entree. Olive orders roast beef.", "question": "If none of the six people orders pork chops, then which one of the following statements must be true?", "options": [ "A) John orders veal cutlet.", "B) Kate orders tilefish.", "C) Lewis orders tilefish.", "D) One of the men orders swordfish.", "E) One of the women orders tilefish." ], "answer": "C" }, { "id": "ar_lsat_199112_1-G_1_6", "context": "Three couples—John and Kate, Lewis and Marie, and Nat and Olive have dinner in a restaurant together. Kate, Marie, and Olive are women; the other three are men. Each person orders one and only one of the following kinds of entrees: pork chops, roast beef, swordfish, tilefish, veal cutlet. The six people order in a manner consistent with the following conditions: The two people in each couple do not order the same kind of entree as each other. None of the men orders the same kind of entree as any of the other men. Marie orders swordfish. Neither John nor Nat orders a fish entree. Olive orders roast beef.", "question": "If Lewis orders pork chops, then which one of the following is a complete and accurate list of the entrees any one of which John could order?", "options": [ "A) roast beef", "B) veal cutlet", "C) roast beef, veal cutlet", "D) roast beef, swordfish", "E) pork chops, roast beef, swordfish" ], "answer": "A" }, { "id": "ar_lsat_199112_1-G_1_7", "context": "Three couples—John and Kate, Lewis and Marie, and Nat and Olive have dinner in a restaurant together. Kate, Marie, and Olive are women; the other three are men. Each person orders one and only one of the following kinds of entrees: pork chops, roast beef, swordfish, tilefish, veal cutlet. The six people order in a manner consistent with the following conditions: The two people in each couple do not order the same kind of entree as each other. None of the men orders the same kind of entree as any of the other men. Marie orders swordfish. Neither John nor Nat orders a fish entree. Olive orders roast beef.", "question": "Suppose that the people in each couple both order the same kind of entree as each other rather than order different kinds of entrees. If all other conditions remain the same, and no two women order the same kind of entree, then which one of the following statements could be true?", "options": [ "A) John orders roast beef.", "B) John orders swordfish.", "C) Kate orders roast beef.", "D) Two of the people order pork chops.", "E) Two of the people order tilefish." ], "answer": "D" }, { "id": "ar_lsat_199112_1-G_2_8", "context": "There are exactly seven houses on a street. Each house is occupied by exactly one of seven families: the Kahns, Lowes, Muirs, Newmans, Owens, Piatts, Rutans. All the houses are on the same side of the street, which runs from west to east. The Rutans do not live in the first or the last house on the street. The Kahns live in the fourth house from the west end of the street. The Muirs live next to the Kahns. The Piatts live east of both the Kahns and the Muirs but west of the Lowes.", "question": "Which one of the following families could live in the house that is the farthest east?", "options": [ "A) the Kahns", "B) the Muirs", "C) the Newmans", "D) the Piatts", "E) the Rutans" ], "answer": "C" }, { "id": "ar_lsat_199112_1-G_2_9", "context": "There are exactly seven houses on a street. Each house is occupied by exactly one of seven families: the Kahns, Lowes, Muirs, Newmans, Owens, Piatts, Rutans. All the houses are on the same side of the street, which runs from west to east. The Rutans do not live in the first or the last house on the street. The Kahns live in the fourth house from the west end of the street. The Muirs live next to the Kahns. The Piatts live east of both the Kahns and the Muirs but west of the Lowes.", "question": "Which one of the following families CANNOT live next to the Kahns?", "options": [ "A) the Lowes", "B) the Newmans", "C) the Owens", "D) the Piatts", "E) the Rutans" ], "answer": "A" }, { "id": "ar_lsat_199112_1-G_2_10", "context": "There are exactly seven houses on a street. Each house is occupied by exactly one of seven families: the Kahns, Lowes, Muirs, Newmans, Owens, Piatts, Rutans. All the houses are on the same side of the street, which runs from west to east. The Rutans do not live in the first or the last house on the street. The Kahns live in the fourth house from the west end of the street. The Muirs live next to the Kahns. The Piatts live east of both the Kahns and the Muirs but west of the Lowes.", "question": "If the Muirs live west of the Kahns, then the Rutans CANNOT live next to both", "options": [ "A) the Kahns and the Piatts", "B) the Lowes and the Piatts", "C) the Muirs and the Piatts", "D) the Muirs and the Owens", "E) the Muirs and the Newmans" ], "answer": "C" }, { "id": "ar_lsat_199112_1-G_2_11", "context": "There are exactly seven houses on a street. Each house is occupied by exactly one of seven families: the Kahns, Lowes, Muirs, Newmans, Owens, Piatts, Rutans. All the houses are on the same side of the street, which runs from west to east. The Rutans do not live in the first or the last house on the street. The Kahns live in the fourth house from the west end of the street. The Muirs live next to the Kahns. The Piatts live east of both the Kahns and the Muirs but west of the Lowes.", "question": "If the Newmans live immediately west of the Kahns, which one of the following statements must be false?", "options": [ "A) The Owens live next to the Newmans.", "B) The Owens live next to the Rutans.", "C) The Piatts live next to the Lowes.", "D) The Piatts live next to the Muirs.", "E) The Rutans live next to the Newmans." ], "answer": "A" }, { "id": "ar_lsat_199112_1-G_2_12", "context": "There are exactly seven houses on a street. Each house is occupied by exactly one of seven families: the Kahns, Lowes, Muirs, Newmans, Owens, Piatts, Rutans. All the houses are on the same side of the street, which runs from west to east. The Rutans do not live in the first or the last house on the street. The Kahns live in the fourth house from the west end of the street. The Muirs live next to the Kahns. The Piatts live east of both the Kahns and the Muirs but west of the Lowes.", "question": "If the Owens live east of the Muirs, which one of the following statements must be true?", "options": [ "A) The Kahns live east of the Muirs.", "B) The Kahns live west of the Rutans.", "C) The Owens live west of the Lowes.", "D) The Owens live east of the Piatts.", "E) The Owens live west of the Piatts." ], "answer": "A" }, { "id": "ar_lsat_199112_1-G_2_13", "context": "There are exactly seven houses on a street. Each house is occupied by exactly one of seven families: the Kahns, Lowes, Muirs, Newmans, Owens, Piatts, Rutans. All the houses are on the same side of the street, which runs from west to east. The Rutans do not live in the first or the last house on the street. The Kahns live in the fourth house from the west end of the street. The Muirs live next to the Kahns. The Piatts live east of both the Kahns and the Muirs but west of the Lowes.", "question": "If the Owens live east of the Kahns, which one of the following pairs of families must live next to each other?", "options": [ "A) the Kahns and the Piatts", "B) the Lowes and the Owens", "C) the Muirs and the Newmans", "D) the Newmans and the Rutans", "E) the Owens and the Piatts" ], "answer": "D" }, { "id": "ar_lsat_199112_1-G_3_14", "context": "At an automobile exhibition, cars are displayed on each floor of a three-floor building. On each floor the cars are either all family cars or all sports cars, either all new or all used, and either all production models or all research models. The following conditions apply to this exhibition: If the exhibition includes both family cars and sports cars, then each family car is displayed on a lower numbered floor than any sports car. The exhibition includes no used research models. The exhibition includes no research models that are sports cars. There are new cars on floor 1. There are used cars on floor 3.", "question": "If there are sports cars on exactly two floors, then which one of the following statements could be true?", "options": [ "A) There are research models on floor 1.", "B) There are sports cars on floor 1.", "C) There are family cars on floor 2.", "D) There are research models on floor 2.", "E) There are family cars on floor 3." ], "answer": "A" }, { "id": "ar_lsat_199112_1-G_3_15", "context": "At an automobile exhibition, cars are displayed on each floor of a three-floor building. On each floor the cars are either all family cars or all sports cars, either all new or all used, and either all production models or all research models. The following conditions apply to this exhibition: If the exhibition includes both family cars and sports cars, then each family car is displayed on a lower numbered floor than any sports car. The exhibition includes no used research models. The exhibition includes no research models that are sports cars. There are new cars on floor 1. There are used cars on floor 3.", "question": "Which one of the following statements could be true?", "options": [ "A) The exhibition includes new research model sports cars.", "B) The exhibition includes used research model family cars.", "C) The exhibition includes used research model sports cars.", "D) There are research models on exactly one floor.", "E) There are research models on all three floors." ], "answer": "D" }, { "id": "ar_lsat_199112_1-G_3_16", "context": "At an automobile exhibition, cars are displayed on each floor of a three-floor building. On each floor the cars are either all family cars or all sports cars, either all new or all used, and either all production models or all research models. The following conditions apply to this exhibition: If the exhibition includes both family cars and sports cars, then each family car is displayed on a lower numbered floor than any sports car. The exhibition includes no used research models. The exhibition includes no research models that are sports cars. There are new cars on floor 1. There are used cars on floor 3.", "question": "Which one of the following statements must be true?", "options": [ "A) There are production models on floor 1.", "B) There are research models on floor 1.", "C) There are production models on floor 2.", "D) There are production models on floor 3.", "E) There are research models on floor 3." ], "answer": "D" }, { "id": "ar_lsat_199112_1-G_3_17", "context": "At an automobile exhibition, cars are displayed on each floor of a three-floor building. On each floor the cars are either all family cars or all sports cars, either all new or all used, and either all production models or all research models. The following conditions apply to this exhibition: If the exhibition includes both family cars and sports cars, then each family car is displayed on a lower numbered floor than any sports car. The exhibition includes no used research models. The exhibition includes no research models that are sports cars. There are new cars on floor 1. There are used cars on floor 3.", "question": "If there are research models on exactly two floors, then which one of the following statements can be false?", "options": [ "A) There are family cars on floor 1.", "B) There are research models on floor 1.", "C) There are new cars on floor 2.", "D) There are research models on floor 2.", "E) There are family cars on floor 3." ], "answer": "E" }, { "id": "ar_lsat_199112_1-G_3_18", "context": "At an automobile exhibition, cars are displayed on each floor of a three-floor building. On each floor the cars are either all family cars or all sports cars, either all new or all used, and either all production models or all research models. The following conditions apply to this exhibition: If the exhibition includes both family cars and sports cars, then each family car is displayed on a lower numbered floor than any sports car. The exhibition includes no used research models. The exhibition includes no research models that are sports cars. There are new cars on floor 1. There are used cars on floor 3.", "question": "If all the new cars in the exhibition are research models, then which one of the following statements must be true?", "options": [ "A) All the family cars in the exhibition are new.", "B) All the family cars in the exhibition are research models.", "C) All the family cars in the exhibition are used.", "D) All the new cars in the exhibition are family cars.", "E) All the production models in the exhibition are family cars." ], "answer": "D" }, { "id": "ar_lsat_199112_1-G_3_19", "context": "At an automobile exhibition, cars are displayed on each floor of a three-floor building. On each floor the cars are either all family cars or all sports cars, either all new or all used, and either all production models or all research models. The following conditions apply to this exhibition: If the exhibition includes both family cars and sports cars, then each family car is displayed on a lower numbered floor than any sports car. The exhibition includes no used research models. The exhibition includes no research models that are sports cars. There are new cars on floor 1. There are used cars on floor 3.", "question": "If all the production models in the exhibition are used, then which one of the following statements must be true?", "options": [ "A) There are family cars on floor 1.", "B) There are new cars on floor 2.", "C) There are research models on floor 2.", "D) There are family cars on floor 3.", "E) There are sports cars on floor 3." ], "answer": "A" }, { "id": "ar_lsat_199112_1-G_4_20", "context": "Planes 1, 2, 3, and 4—and no others—are available to fly in an air show. Pilots Anna, Bob, and Cindy are all aboard planes that are flying in the show and they are the only qualified pilots in the show. Copilots Dave, Ed, and Fran are all aboard planes that are flying in the show and they are the only qualified copilots in the show. No plane flies in the show without a qualified pilot aboard. No one but qualified pilots and qualified copilots flies in the show. Anna will only fly in either plane 1 or plane 4. Dave will only fly in either plane 2 or plane 3.", "question": "If Anna flies in plane 4 and Dave flies in plane 2, which one of the following must be true?", "options": [ "A) Cindy flies in either plane 1 or plane 3.", "B) If Cindy flies in plane 3, Bob flies in plane 2.", "C) Bob and one other person fly in plane l.", "D) If Bob is aboard plane 4, Cindy flies in plane 3.", "E) If Cindy is in plane 2, Bob flies in plane 3." ], "answer": "B" }, { "id": "ar_lsat_199112_1-G_4_21", "context": "Planes 1, 2, 3, and 4—and no others—are available to fly in an air show. Pilots Anna, Bob, and Cindy are all aboard planes that are flying in the show and they are the only qualified pilots in the show. Copilots Dave, Ed, and Fran are all aboard planes that are flying in the show and they are the only qualified copilots in the show. No plane flies in the show without a qualified pilot aboard. No one but qualified pilots and qualified copilots flies in the show. Anna will only fly in either plane 1 or plane 4. Dave will only fly in either plane 2 or plane 3.", "question": "If Bob and Anna fly on the same plane, which one of the following must be true?", "options": [ "A) Cindy flies with Dave and Ed.", "B) Cindy flies with Ed.", "C) Dave flies with Cindy.", "D) Dave flies with Cindy, Ed, and Fran.", "E) Fran flies with Ed." ], "answer": "C" }, { "id": "ar_lsat_199112_1-G_4_22", "context": "Planes 1, 2, 3, and 4—and no others—are available to fly in an air show. Pilots Anna, Bob, and Cindy are all aboard planes that are flying in the show and they are the only qualified pilots in the show. Copilots Dave, Ed, and Fran are all aboard planes that are flying in the show and they are the only qualified copilots in the show. No plane flies in the show without a qualified pilot aboard. No one but qualified pilots and qualified copilots flies in the show. Anna will only fly in either plane 1 or plane 4. Dave will only fly in either plane 2 or plane 3.", "question": "If Cindy and Fran are the only people in one of the planes, which one of the following must be true?", "options": [ "A) Bob flies with Anna.", "B) Dave flies with Ed.", "C) Dave and Ed fly with Bob.", "D) Dave flies with Bob.", "E) Ed flies with Anna." ], "answer": "D" }, { "id": "ar_lsat_199112_1-G_4_23", "context": "Planes 1, 2, 3, and 4—and no others—are available to fly in an air show. Pilots Anna, Bob, and Cindy are all aboard planes that are flying in the show and they are the only qualified pilots in the show. Copilots Dave, Ed, and Fran are all aboard planes that are flying in the show and they are the only qualified copilots in the show. No plane flies in the show without a qualified pilot aboard. No one but qualified pilots and qualified copilots flies in the show. Anna will only fly in either plane 1 or plane 4. Dave will only fly in either plane 2 or plane 3.", "question": "If plane 1 is used, its crew could consist of", "options": [ "A) Anna, Bob, Cindy, Fran", "B) Anna, Bob, Ed, Fran", "C) Bob, Cindy, Ed, Fran", "D) Bob, Cindy, Dave, Ed", "E) Bob, Dave, Ed, Fran" ], "answer": "B" }, { "id": "ar_lsat_199112_1-G_4_24", "context": "Planes 1, 2, 3, and 4—and no others—are available to fly in an air show. Pilots Anna, Bob, and Cindy are all aboard planes that are flying in the show and they are the only qualified pilots in the show. Copilots Dave, Ed, and Fran are all aboard planes that are flying in the show and they are the only qualified copilots in the show. No plane flies in the show without a qualified pilot aboard. No one but qualified pilots and qualified copilots flies in the show. Anna will only fly in either plane 1 or plane 4. Dave will only fly in either plane 2 or plane 3.", "question": "If as many of the pilots and copilots as possible fly in plane 4, that group will consist of", "options": [ "A) exactly two people", "B) exactly three people", "C) exactly four people", "D) exactly five people", "E) three pilots and two copilots" ], "answer": "C" }, { "id": "ar_lsat_199202_3-G_1_1", "context": "A law firm has exactly nine partners: Fox, Glassen, Hae, Inman, Jacoby, Kohn, Lopez, Malloy, and Nassar. Kohn's salary is greater than both Inman's and Lopez's. Lopez's salary is greater than Nassar's. Inman's salary is greater than Fox's. Fox's salary is greater than Malloy's. Malloy's salary is greater than Glassen's. Glassen's salary is greater than Jacoby's. Jacoby's salary is greater than Hae's.", "question": "Which one of the following partners cannot have the third highest salary?", "options": [ "A) Fox", "B) Inman", "C) Lopez", "D) Malloy", "E) Nassar" ], "answer": "D" }, { "id": "ar_lsat_199202_3-G_1_2", "context": "A law firm has exactly nine partners: Fox, Glassen, Hae, Inman, Jacoby, Kohn, Lopez, Malloy, and Nassar. Kohn's salary is greater than both Inman's and Lopez's. Lopez's salary is greater than Nassar's. Inman's salary is greater than Fox's. Fox's salary is greater than Malloy's. Malloy's salary is greater than Glassen's. Glassen's salary is greater than Jacoby's. Jacoby's salary is greater than Hae's.", "question": "If Malloy and Nassar earn the same salary, at least how many of the partners must have lower salaries than Lopez?", "options": [ "A) 3", "B) 4", "C) 5", "D) 6", "E) 7" ], "answer": "C" }, { "id": "ar_lsat_199202_3-G_1_3", "context": "A law firm has exactly nine partners: Fox, Glassen, Hae, Inman, Jacoby, Kohn, Lopez, Malloy, and Nassar. Kohn's salary is greater than both Inman's and Lopez's. Lopez's salary is greater than Nassar's. Inman's salary is greater than Fox's. Fox's salary is greater than Malloy's. Malloy's salary is greater than Glassen's. Glassen's salary is greater than Jacoby's. Jacoby's salary is greater than Hae's.", "question": "The salary rankings of each of the nine partners could be completely determined if which one of the following statements were true?", "options": [ "A) Lopez's salary is greater than Fox's.", "B) Lopez's salary is greater than Inman's.", "C) Nassar's salary is greater than Fox's.", "D) Nassar's salary is greater than Inman's.", "E) Nassar's salary is greater than Malloy's." ], "answer": "D" }, { "id": "ar_lsat_199202_3-G_1_4", "context": "A law firm has exactly nine partners: Fox, Glassen, Hae, Inman, Jacoby, Kohn, Lopez, Malloy, and Nassar. Kohn's salary is greater than both Inman's and Lopez's. Lopez's salary is greater than Nassar's. Inman's salary is greater than Fox's. Fox's salary is greater than Malloy's. Malloy's salary is greater than Glassen's. Glassen's salary is greater than Jacoby's. Jacoby's salary is greater than Hae's.", "question": "If Nassar's salary is the same as that of one other partner of the firm, which one of the following must be false?", "options": [ "A) Inman's salary is less than Lopez's.", "B) Jacoby's salary is less than Lopez's.", "C) Lopez's salary is less than Fox's.", "D) Lopez's salary is less than Hae's.", "E) Nassar's salary is less than Glassen's." ], "answer": "D" }, { "id": "ar_lsat_199202_3-G_1_5", "context": "A law firm has exactly nine partners: Fox, Glassen, Hae, Inman, Jacoby, Kohn, Lopez, Malloy, and Nassar. Kohn's salary is greater than both Inman's and Lopez's. Lopez's salary is greater than Nassar's. Inman's salary is greater than Fox's. Fox's salary is greater than Malloy's. Malloy's salary is greater than Glassen's. Glassen's salary is greater than Jacoby's. Jacoby's salary is greater than Hae's.", "question": "What is the minimum number of different salaries earned by the nine partners of the firm?", "options": [ "A) 5", "B) 6", "C) 7", "D) 8", "E) 9" ], "answer": "C" }, { "id": "ar_lsat_199202_3-G_1_6", "context": "A law firm has exactly nine partners: Fox, Glassen, Hae, Inman, Jacoby, Kohn, Lopez, Malloy, and Nassar. Kohn's salary is greater than both Inman's and Lopez's. Lopez's salary is greater than Nassar's. Inman's salary is greater than Fox's. Fox's salary is greater than Malloy's. Malloy's salary is greater than Glassen's. Glassen's salary is greater than Jacoby's. Jacoby's salary is greater than Hae's.", "question": "Assume that the partners of the firm are ranked according to their salaries, from first (highest) to ninth (lowest), and that no two salaries are the same. Which one of the following is a complete and accurate list of Glassen's possible ranks?", "options": [ "A) fifth", "B) fifth, sixth", "C) fifth, seventh", "D) fifth, sixth, seventh", "E) fifth, sixth, seventh, eighth" ], "answer": "D" }, { "id": "ar_lsat_199202_3-G_2_7", "context": "Each of five illnesses—J, K, L, M, and N—is characterized by at least one of the following three symptoms: fever, headache, and sneezing. None of the illnesses has any symptom that is not one of these three. Illness J is characterized by headache and sneezing. Illnesses J and K have no symptoms in common. Illnesses J and L have at least one symptom in common. Illness L has a greater number of symptoms than illness K. Illnesses L and N have no symptoms in common. Illness M has more symptoms than illness J.", "question": "Which one of the following statements must be false?", "options": [ "A) Illness J has exactly two symptoms.", "B) Illness K has exactly one symptom.", "C) Illness L has exactly two symptoms.", "D) Illness M has exactly three symptoms.", "E) Illness N has exactly two symptoms." ], "answer": "E" }, { "id": "ar_lsat_199202_3-G_2_8", "context": "Each of five illnesses—J, K, L, M, and N—is characterized by at least one of the following three symptoms: fever, headache, and sneezing. None of the illnesses has any symptom that is not one of these three. Illness J is characterized by headache and sneezing. Illnesses J and K have no symptoms in common. Illnesses J and L have at least one symptom in common. Illness L has a greater number of symptoms than illness K. Illnesses L and N have no symptoms in common. Illness M has more symptoms than illness J.", "question": "In which one of the following pairs could the first member of the pair be characterized by exactly the same number and types of symptoms as the second member of the pair?", "options": [ "A) J and N", "B) K and L", "C) K and N", "D) L and M", "E) M and N" ], "answer": "C" }, { "id": "ar_lsat_199202_3-G_2_9", "context": "Each of five illnesses—J, K, L, M, and N—is characterized by at least one of the following three symptoms: fever, headache, and sneezing. None of the illnesses has any symptom that is not one of these three. Illness J is characterized by headache and sneezing. Illnesses J and K have no symptoms in common. Illnesses J and L have at least one symptom in common. Illness L has a greater number of symptoms than illness K. Illnesses L and N have no symptoms in common. Illness M has more symptoms than illness J.", "question": "If illness L is characterized by a combination of symptoms different from any of the other illnesses, then which one of the following statements must be true?", "options": [ "A) Fever is a symptom of illness L.", "B) Sneezing is a symptom of illness L.", "C) Headache is a symptom of illness L.", "D) Illnesses K and N are characterized by exactly the same symptoms.", "E) Illnesses M and N are characterized by exactly the same symptoms." ], "answer": "A" }, { "id": "ar_lsat_199202_3-G_2_10", "context": "Each of five illnesses—J, K, L, M, and N—is characterized by at least one of the following three symptoms: fever, headache, and sneezing. None of the illnesses has any symptom that is not one of these three. Illness J is characterized by headache and sneezing. Illnesses J and K have no symptoms in common. Illnesses J and L have at least one symptom in common. Illness L has a greater number of symptoms than illness K. Illnesses L and N have no symptoms in common. Illness M has more symptoms than illness J.", "question": "The illnesses in which one of the following pairs must have exactly one symptom in common?", "options": [ "A) J and L", "B) J and M", "C) J and N", "D) K and L", "E) M and N" ], "answer": "E" }, { "id": "ar_lsat_199202_3-G_2_11", "context": "Each of five illnesses—J, K, L, M, and N—is characterized by at least one of the following three symptoms: fever, headache, and sneezing. None of the illnesses has any symptom that is not one of these three. Illness J is characterized by headache and sneezing. Illnesses J and K have no symptoms in common. Illnesses J and L have at least one symptom in common. Illness L has a greater number of symptoms than illness K. Illnesses L and N have no symptoms in common. Illness M has more symptoms than illness J.", "question": "If Walter has exactly two of the three symptoms, then he cannot have all of the symptoms of", "options": [ "A) both illness J and illness L", "B) both illness J and illness N", "C) both illness K and illness L", "D) both illness K and illness N", "E) both illness L and illness N" ], "answer": "E" }, { "id": "ar_lsat_199202_3-G_3_12", "context": "A street cleaning crew works only Monday to Friday, and only during the day. It takes the crew an entire morning or an entire afternoon to clean a street. During one week the crew cleaned exactly eight streets—First, Second, Third, Fourth, Fifth, Sixth, Seventh, and Eighth streets. The following is known about the crew's schedule for the week: The crew cleaned no street on Friday morning. The crew cleaned no street on Wednesday afternoon. It cleaned Fourth Street on Tuesday morning. It cleaned Seventh Street on Thursday morning. It cleaned Fourth Street before Sixth Street and after Eighth Street. It cleaned Second, Fifth, and Eighth streets on afternoons.", "question": "If the crew cleaned Second Street earlier in the week than Seventh Street, then it must have cleaned which one of the following streets on Tuesday afternoon?", "options": [ "A) First Street", "B) Second Street", "C) Third Street", "D) Fifth Street", "E) Eighth Street" ], "answer": "B" }, { "id": "ar_lsat_199202_3-G_3_13", "context": "A street cleaning crew works only Monday to Friday, and only during the day. It takes the crew an entire morning or an entire afternoon to clean a street. During one week the crew cleaned exactly eight streets—First, Second, Third, Fourth, Fifth, Sixth, Seventh, and Eighth streets. The following is known about the crew's schedule for the week: The crew cleaned no street on Friday morning. The crew cleaned no street on Wednesday afternoon. It cleaned Fourth Street on Tuesday morning. It cleaned Seventh Street on Thursday morning. It cleaned Fourth Street before Sixth Street and after Eighth Street. It cleaned Second, Fifth, and Eighth streets on afternoons.", "question": "If the crew cleaned Sixth Street on a morning and cleaned Second Street before Seventh Street, then what is the maximum number of streets whose cleaning times cannot be determined?", "options": [ "A) 1", "B) 2", "C) 3", "D) 4", "E) 5" ], "answer": "C" }, { "id": "ar_lsat_199202_3-G_3_14", "context": "A street cleaning crew works only Monday to Friday, and only during the day. It takes the crew an entire morning or an entire afternoon to clean a street. During one week the crew cleaned exactly eight streets—First, Second, Third, Fourth, Fifth, Sixth, Seventh, and Eighth streets. The following is known about the crew's schedule for the week: The crew cleaned no street on Friday morning. The crew cleaned no street on Wednesday afternoon. It cleaned Fourth Street on Tuesday morning. It cleaned Seventh Street on Thursday morning. It cleaned Fourth Street before Sixth Street and after Eighth Street. It cleaned Second, Fifth, and Eighth streets on afternoons.", "question": "What is the maximum possible number of streets any one of which could be the one the crew cleaned on Friday afternoon?", "options": [ "A) 1", "B) 2", "C) 3", "D) 4", "E) 5" ], "answer": "E" }, { "id": "ar_lsat_199202_3-G_3_15", "context": "A street cleaning crew works only Monday to Friday, and only during the day. It takes the crew an entire morning or an entire afternoon to clean a street. During one week the crew cleaned exactly eight streets—First, Second, Third, Fourth, Fifth, Sixth, Seventh, and Eighth streets. The following is known about the crew's schedule for the week: The crew cleaned no street on Friday morning. The crew cleaned no street on Wednesday afternoon. It cleaned Fourth Street on Tuesday morning. It cleaned Seventh Street on Thursday morning. It cleaned Fourth Street before Sixth Street and after Eighth Street. It cleaned Second, Fifth, and Eighth streets on afternoons.", "question": "If the crew cleaned First Street earlier in the week than Third Street, then which one of the following statements must be false?", "options": [ "A) The crew cleaned First Street on Tuesday afternoon.", "B) The crew cleaned Second Street on Thursday afternoon.", "C) The crew cleaned Third Street on Wednesday morning.", "D) The crew cleaned Fifth Street on Thursday afternoon.", "E) The crew cleaned Sixth Street on Friday afternoon." ], "answer": "A" }, { "id": "ar_lsat_199202_3-G_3_16", "context": "A street cleaning crew works only Monday to Friday, and only during the day. It takes the crew an entire morning or an entire afternoon to clean a street. During one week the crew cleaned exactly eight streets—First, Second, Third, Fourth, Fifth, Sixth, Seventh, and Eighth streets. The following is known about the crew's schedule for the week: The crew cleaned no street on Friday morning. The crew cleaned no street on Wednesday afternoon. It cleaned Fourth Street on Tuesday morning. It cleaned Seventh Street on Thursday morning. It cleaned Fourth Street before Sixth Street and after Eighth Street. It cleaned Second, Fifth, and Eighth streets on afternoons.", "question": "If the crew cleaned Fifth, Sixth, and Seventh streets in numerical order, then what is the maximum number of different schedules any one of which the crew could have had for the entire week?", "options": [ "A) 1", "B) 2", "C) 3", "D) 4", "E) 5" ], "answer": "D" }, { "id": "ar_lsat_199202_3-G_3_17", "context": "A street cleaning crew works only Monday to Friday, and only during the day. It takes the crew an entire morning or an entire afternoon to clean a street. During one week the crew cleaned exactly eight streets—First, Second, Third, Fourth, Fifth, Sixth, Seventh, and Eighth streets. The following is known about the crew's schedule for the week: The crew cleaned no street on Friday morning. The crew cleaned no street on Wednesday afternoon. It cleaned Fourth Street on Tuesday morning. It cleaned Seventh Street on Thursday morning. It cleaned Fourth Street before Sixth Street and after Eighth Street. It cleaned Second, Fifth, and Eighth streets on afternoons.", "question": "Suppose the crew had cleaned Fourth Street on Tuesday afternoon instead of on Tuesday morning, but all other conditions remained the same. Which one of the following statements could be false?", "options": [ "A) The crew cleaned First Street before Second Street.", "B) The crew cleaned Second Street before Fifth Street.", "C) The crew cleaned Third Street before Second Street.", "D) The crew cleaned Sixth Street before Fifth Street.", "E) The crew cleaned Seventh Street before Second Street." ], "answer": "B" }, { "id": "ar_lsat_199202_3-G_4_18", "context": "J, K, L, M, N, and O are square ski chalets of the same size, which are positioned in two straight rows as shown below: J K L row 1: ■ ■ ■ row 2: ■ ■ ■ M N O J is directly opposite M; K is directly opposite N; and L is directly opposite O. After a snowstorm, residents shovel a single continuous path that connects all of the chalets and meets the following conditions: The path is composed of five straight segments, each of which directly connects exactly two of the chalets. Each chalet is directly connected by a segment of the path to another chalet. No chalet is directly connected by segments of the path to more than two other chalets. No segment of the path crosses any other segment. One segment of the path directly connects chalets J and N, and another segment directly connects chalets K and L.", "question": "Which one of the following statements could be true?", "options": [ "A) One segment of the path directly connects chalets M and K.", "B) One segment of the path directly connects chalets M and L.", "C) One segment of the path directly connects chalets M and O.", "D) One segment of the path directly connects chalets J and K and another segment directly connects chalets K and M.", "E) One segment of the path directly connects chalets O and L and another segment directly connects chalets O and N." ], "answer": "E" }, { "id": "ar_lsat_199202_3-G_4_19", "context": "J, K, L, M, N, and O are square ski chalets of the same size, which are positioned in two straight rows as shown below: J K L row 1: ■ ■ ■ row 2: ■ ■ ■ M N O J is directly opposite M; K is directly opposite N; and L is directly opposite O. After a snowstorm, residents shovel a single continuous path that connects all of the chalets and meets the following conditions: The path is composed of five straight segments, each of which directly connects exactly two of the chalets. Each chalet is directly connected by a segment of the path to another chalet. No chalet is directly connected by segments of the path to more than two other chalets. No segment of the path crosses any other segment. One segment of the path directly connects chalets J and N, and another segment directly connects chalets K and L.", "question": "If one segment of the path directly connects chalets K and N, then the two chalets in which one of the following pairs must be directly connected to each other by a segment?", "options": [ "A) J and K", "B) K and O", "C) L and O", "D) M and N", "E) N and O" ], "answer": "C" }, { "id": "ar_lsat_199202_3-G_4_20", "context": "J, K, L, M, N, and O are square ski chalets of the same size, which are positioned in two straight rows as shown below: J K L row 1: ■ ■ ■ row 2: ■ ■ ■ M N O J is directly opposite M; K is directly opposite N; and L is directly opposite O. After a snowstorm, residents shovel a single continuous path that connects all of the chalets and meets the following conditions: The path is composed of five straight segments, each of which directly connects exactly two of the chalets. Each chalet is directly connected by a segment of the path to another chalet. No chalet is directly connected by segments of the path to more than two other chalets. No segment of the path crosses any other segment. One segment of the path directly connects chalets J and N, and another segment directly connects chalets K and L.", "question": "If a segment of the path directly connects chalets J and K, then the two chalets in which one of the following pairs must be directly connected to each other by a segment?", "options": [ "A) J and M", "B) K and N", "C) K and O", "D) L and O", "E) N and O" ], "answer": "D" }, { "id": "ar_lsat_199202_3-G_4_21", "context": "J, K, L, M, N, and O are square ski chalets of the same size, which are positioned in two straight rows as shown below: J K L row 1: ■ ■ ■ row 2: ■ ■ ■ M N O J is directly opposite M; K is directly opposite N; and L is directly opposite O. After a snowstorm, residents shovel a single continuous path that connects all of the chalets and meets the following conditions: The path is composed of five straight segments, each of which directly connects exactly two of the chalets. Each chalet is directly connected by a segment of the path to another chalet. No chalet is directly connected by segments of the path to more than two other chalets. No segment of the path crosses any other segment. One segment of the path directly connects chalets J and N, and another segment directly connects chalets K and L.", "question": "If one segment of the path directly connects chalets K and O, then which one of the following statements could be true?", "options": [ "A) Chalet J is directly connected to chalet M.", "B) Chalet K is directly connected to chalet N.", "C) Chalet L is directly connected to chalet O.", "D) Chalet L is directly connected to exactly two chalets.", "E) Chalet O is directly connected to exactly one chalet." ], "answer": "A" }, { "id": "ar_lsat_199202_3-G_4_22", "context": "J, K, L, M, N, and O are square ski chalets of the same size, which are positioned in two straight rows as shown below: J K L row 1: ■ ■ ■ row 2: ■ ■ ■ M N O J is directly opposite M; K is directly opposite N; and L is directly opposite O. After a snowstorm, residents shovel a single continuous path that connects all of the chalets and meets the following conditions: The path is composed of five straight segments, each of which directly connects exactly two of the chalets. Each chalet is directly connected by a segment of the path to another chalet. No chalet is directly connected by segments of the path to more than two other chalets. No segment of the path crosses any other segment. One segment of the path directly connects chalets J and N, and another segment directly connects chalets K and L.", "question": "Which one of the following statements, if true, guarantees that one segment of the path directly connects chalets M and N?", "options": [ "A) One segment of the path directly connects chalets K and J.", "B) One segment of the path directly connects chalets N and O.", "C) One segment of the path directly connects chalet K and a chalet in row 2.", "D) One segment of the path directly connects chalet L and a chalet in row 2.", "E) One segment of the path directly connects chalet O and a chalet in row 1." ], "answer": "A" }, { "id": "ar_lsat_199202_3-G_4_23", "context": "J, K, L, M, N, and O are square ski chalets of the same size, which are positioned in two straight rows as shown below: J K L row 1: ■ ■ ■ row 2: ■ ■ ■ M N O J is directly opposite M; K is directly opposite N; and L is directly opposite O. After a snowstorm, residents shovel a single continuous path that connects all of the chalets and meets the following conditions: The path is composed of five straight segments, each of which directly connects exactly two of the chalets. Each chalet is directly connected by a segment of the path to another chalet. No chalet is directly connected by segments of the path to more than two other chalets. No segment of the path crosses any other segment. One segment of the path directly connects chalets J and N, and another segment directly connects chalets K and L.", "question": "Which one of the following chalets cannot be directly connected by segments of the path to exactly two other chalets?", "options": [ "A) K", "B) L", "C) M", "D) N", "E) O" ], "answer": "C" }, { "id": "ar_lsat_199202_3-G_4_24", "context": "J, K, L, M, N, and O are square ski chalets of the same size, which are positioned in two straight rows as shown below: J K L row 1: ■ ■ ■ row 2: ■ ■ ■ M N O J is directly opposite M; K is directly opposite N; and L is directly opposite O. After a snowstorm, residents shovel a single continuous path that connects all of the chalets and meets the following conditions: The path is composed of five straight segments, each of which directly connects exactly two of the chalets. Each chalet is directly connected by a segment of the path to another chalet. No chalet is directly connected by segments of the path to more than two other chalets. No segment of the path crosses any other segment. One segment of the path directly connects chalets J and N, and another segment directly connects chalets K and L.", "question": "If no segment of the path directly connects any chalet in row 1 with the chalet in row 2 that is directly opposite it, then each of the following statements must be true EXCEPT:", "options": [ "A) A segment of the path directly connects chalets M and N.", "B) A segment of the path directly connects chalets N and O.", "C) Chalet L is directly connected to exactly one other chalet.", "D) Chalet N is directly connected to exactly two other chalets.", "E) Chalet O is directly connected to exactly two other chalets." ], "answer": "B" }, { "id": "ar_lsat_199206_2-G_1_1", "context": "John receives one grade for each of the following six courses: economics, geology, history, Italian, physics, and Russian. From highest to lowest, the possible grades are A, B, C, D, and E. E is the only failing grade. Two letter grades are consecutive if and only if they are adjacent in the alphabet. John's grades in geology and physics are consecutive. His grades in Italian and Russian are consecutive. He receives a higher grade in economics than in history. He receives a higher grade in geology than in physics.", "question": "If John receives the same grade in economics and Italian, and if he fails Russian, which one of the following must be true?", "options": [ "A) John's geology grade is a B.", "B) John's history grade is a D.", "C) John's history grade is an E.", "D) John's physics grade is a B.", "E) John's physics grade is a C." ], "answer": "C" }, { "id": "ar_lsat_199206_2-G_1_2", "context": "John receives one grade for each of the following six courses: economics, geology, history, Italian, physics, and Russian. From highest to lowest, the possible grades are A, B, C, D, and E. E is the only failing grade. Two letter grades are consecutive if and only if they are adjacent in the alphabet. John's grades in geology and physics are consecutive. His grades in Italian and Russian are consecutive. He receives a higher grade in economics than in history. He receives a higher grade in geology than in physics.", "question": "If John passes all his courses and receives a higher grade in geology than in either language, which one of the following must be true?", "options": [ "A) He receives exactly one A.", "B) He receives exactly one B.", "C) He receives exactly two Bs.", "D) He receives at least one B and at least one C.", "E) He receives at least one C and at least one D." ], "answer": "D" }, { "id": "ar_lsat_199206_2-G_1_3", "context": "John receives one grade for each of the following six courses: economics, geology, history, Italian, physics, and Russian. From highest to lowest, the possible grades are A, B, C, D, and E. E is the only failing grade. Two letter grades are consecutive if and only if they are adjacent in the alphabet. John's grades in geology and physics are consecutive. His grades in Italian and Russian are consecutive. He receives a higher grade in economics than in history. He receives a higher grade in geology than in physics.", "question": "If John receives a higher grade in physics than in economics and receives a higher grade in economics than in either language, which one of the following allows all six of his grades to be determined?", "options": [ "A) His grade in history is D.", "B) His grade in Italian is D.", "C) His grades in history and Italian are identical.", "D) His grades in history and Russian are identical.", "E) His grade in history is higher than his grade in Russian." ], "answer": "E" }, { "id": "ar_lsat_199206_2-G_1_4", "context": "John receives one grade for each of the following six courses: economics, geology, history, Italian, physics, and Russian. From highest to lowest, the possible grades are A, B, C, D, and E. E is the only failing grade. Two letter grades are consecutive if and only if they are adjacent in the alphabet. John's grades in geology and physics are consecutive. His grades in Italian and Russian are consecutive. He receives a higher grade in economics than in history. He receives a higher grade in geology than in physics.", "question": "If John receives a higher grade in physics than in economics and receives a higher grade in history than in Italian, exactly how many of his grades can be determined?", "options": [ "A) 2", "B) 3", "C) 4", "D) 5", "E) 6" ], "answer": "E" }, { "id": "ar_lsat_199206_2-G_1_5", "context": "John receives one grade for each of the following six courses: economics, geology, history, Italian, physics, and Russian. From highest to lowest, the possible grades are A, B, C, D, and E. E is the only failing grade. Two letter grades are consecutive if and only if they are adjacent in the alphabet. John's grades in geology and physics are consecutive. His grades in Italian and Russian are consecutive. He receives a higher grade in economics than in history. He receives a higher grade in geology than in physics.", "question": "Assume that John's grade in physics is higher than his grade in Italian and consecutive with it and that his grades in Russian and physics differ. Which one of the following must be true?", "options": [ "A) John receives both an A and a B.", "B) John receives both an A and a C.", "C) John receives both a B and a D.", "D) John receives both a B and an E.", "E) John receives both a D and an E." ], "answer": "C" }, { "id": "ar_lsat_199206_2-G_1_6", "context": "John receives one grade for each of the following six courses: economics, geology, history, Italian, physics, and Russian. From highest to lowest, the possible grades are A, B, C, D, and E. E is the only failing grade. Two letter grades are consecutive if and only if they are adjacent in the alphabet. John's grades in geology and physics are consecutive. His grades in Italian and Russian are consecutive. He receives a higher grade in economics than in history. He receives a higher grade in geology than in physics.", "question": "Assume that John receives a lower grade in economics than in physics. He must have failed at least one course if which one of the following is also true?", "options": [ "A) He receives a lower grade in Italian than in economics.", "B) He receives a lower grade in Italian than in physics.", "C) He receives a lower grade in physics than in Italian.", "D) He receives a lower grade in Russian than in economics.", "E) He receives a lower grade in Russian than in history." ], "answer": "E" }, { "id": "ar_lsat_199206_2-G_2_7", "context": "A store sells shirts only in small, medium, and large sizes, and only in red, yellow, and blue colors. Casey buys exactly three shirts from the store. A shirt type consists of both a size and a color. Casey does not buy two shirts of the same type. Casey does not buy both a small shirt and a large shirt. No small red shirts are available. No large blue shirts are available.", "question": "Which one of the following must be false?", "options": [ "A) Two of the shirts that Casey buys are small and two are red.", "B) Two of the shirts that Casey buys are medium and two are red.", "C) Two of the shirts that Casey buys are large and two are red.", "D) Two of the shirts that Casey buys are small, one is yellow, and one is blue.", "E) Two of the shirts that Casey buys are medium, one is yellow, and one is blue." ], "answer": "A" }, { "id": "ar_lsat_199206_2-G_2_8", "context": "A store sells shirts only in small, medium, and large sizes, and only in red, yellow, and blue colors. Casey buys exactly three shirts from the store. A shirt type consists of both a size and a color. Casey does not buy two shirts of the same type. Casey does not buy both a small shirt and a large shirt. No small red shirts are available. No large blue shirts are available.", "question": "If Casey buys a small blue shirt, which one of the following must be false?", "options": [ "A) Casey buys two blue shirts.", "B) Casey buys two red shirts.", "C) Casey buys two yellow shirts.", "D) Casey buys two small shirts.", "E) Casey buys two medium shirts." ], "answer": "B" }, { "id": "ar_lsat_199206_2-G_2_9", "context": "A store sells shirts only in small, medium, and large sizes, and only in red, yellow, and blue colors. Casey buys exactly three shirts from the store. A shirt type consists of both a size and a color. Casey does not buy two shirts of the same type. Casey does not buy both a small shirt and a large shirt. No small red shirts are available. No large blue shirts are available.", "question": "If Casey does not buy a medium yellow shirt, which one of the following must be true?", "options": [ "A) Casey buys either a medium red shirt or a small blue shirt.", "B) Casey buys either a medium red shirt or a medium blue shirt.", "C) Casey buys either a large red shirt or a small blue shirt.", "D) Casey buys either a large red shirt or a medium red shirt.", "E) Casey buys either a large yellow shirt or a small yellow shirt." ], "answer": "B" }, { "id": "ar_lsat_199206_2-G_2_10", "context": "A store sells shirts only in small, medium, and large sizes, and only in red, yellow, and blue colors. Casey buys exactly three shirts from the store. A shirt type consists of both a size and a color. Casey does not buy two shirts of the same type. Casey does not buy both a small shirt and a large shirt. No small red shirts are available. No large blue shirts are available.", "question": "If Casey buys exactly one medium shirt and does not buy two shirts of the same color, then she cannot buy which one of the following?", "options": [ "A) a medium red shirt", "B) a medium yellow shirt", "C) a medium blue shirt", "D) a large red shirt", "E) a large yellow shirt" ], "answer": "B" }, { "id": "ar_lsat_199206_2-G_2_11", "context": "A store sells shirts only in small, medium, and large sizes, and only in red, yellow, and blue colors. Casey buys exactly three shirts from the store. A shirt type consists of both a size and a color. Casey does not buy two shirts of the same type. Casey does not buy both a small shirt and a large shirt. No small red shirts are available. No large blue shirts are available.", "question": "If neither large red shirts nor small blue shirts are available, which one of the following must Casey buy?", "options": [ "A) a red shirt", "B) a medium yellow shirt", "C) either a large shirt or a small shirt", "D) either a medium red shirt or a medium blue shirt", "E) either a large yellow shirt or a medium blue shirt" ], "answer": "D" }, { "id": "ar_lsat_199206_2-G_3_12", "context": "A hobbyist is stocking her aquarium with exactly three fish of different types and with exactly two species of plants. The only fish under consideration are a G, an H, a J, a K, and an L, and the only kinds of plants under consideration are of the species W, X, Y, and Z. She will observe the following conditions: If she selects the G, she can select neither the H nor a Y. She cannot select the H unless she selects the K. She cannot select the J unless she selects a W. If she selects the K, she must select an X.", "question": "Which one of the following is an acceptable selection of fish and plants for the aquarium? Fish Plants", "options": [ "A) G, H, K W, Y", "B) G, J, K W, X", "C) G, J, L X, Z", "D) H, J, L W, Z", "E) H, K, L Y, Z" ], "answer": "B" }, { "id": "ar_lsat_199206_2-G_3_13", "context": "A hobbyist is stocking her aquarium with exactly three fish of different types and with exactly two species of plants. The only fish under consideration are a G, an H, a J, a K, and an L, and the only kinds of plants under consideration are of the species W, X, Y, and Z. She will observe the following conditions: If she selects the G, she can select neither the H nor a Y. She cannot select the H unless she selects the K. She cannot select the J unless she selects a W. If she selects the K, she must select an X.", "question": "If the hobbyist selects the H, which one of the following must also be true?", "options": [ "A) She selects at least one W.", "B) She selects at least one X.", "C) She selects the J, but no Y's.", "D) She selects the K, but no X's.", "E) She selects at least one X, but no Y's." ], "answer": "B" }, { "id": "ar_lsat_199206_2-G_3_14", "context": "A hobbyist is stocking her aquarium with exactly three fish of different types and with exactly two species of plants. The only fish under consideration are a G, an H, a J, a K, and an L, and the only kinds of plants under consideration are of the species W, X, Y, and Z. She will observe the following conditions: If she selects the G, she can select neither the H nor a Y. She cannot select the H unless she selects the K. She cannot select the J unless she selects a W. If she selects the K, she must select an X.", "question": "If the hobbyist selects both X's and Z's, which one of the following could be the group of fish she selects?", "options": [ "A) G, H, K", "B) G, J, K", "C) G, K, L", "D) H, J, L", "E) J, K, L" ], "answer": "C" }, { "id": "ar_lsat_199206_2-G_3_15", "context": "A hobbyist is stocking her aquarium with exactly three fish of different types and with exactly two species of plants. The only fish under consideration are a G, an H, a J, a K, and an L, and the only kinds of plants under consideration are of the species W, X, Y, and Z. She will observe the following conditions: If she selects the G, she can select neither the H nor a Y. She cannot select the H unless she selects the K. She cannot select the J unless she selects a W. If she selects the K, she must select an X.", "question": "The hobbyist could select any of the following groups of fish for the aquarium EXCEPT", "options": [ "A) G, K, L", "B) H, J, K", "C) H, J, L", "D) H, K, L", "E) J, K, L" ], "answer": "C" }, { "id": "ar_lsat_199206_2-G_3_16", "context": "A hobbyist is stocking her aquarium with exactly three fish of different types and with exactly two species of plants. The only fish under consideration are a G, an H, a J, a K, and an L, and the only kinds of plants under consideration are of the species W, X, Y, and Z. She will observe the following conditions: If she selects the G, she can select neither the H nor a Y. She cannot select the H unless she selects the K. She cannot select the J unless she selects a W. If she selects the K, she must select an X.", "question": "If the hobbyist selects a Y, which one of the following must be the group of fish she selects?", "options": [ "A) G, H, K", "B) H, J, K", "C) H, J, L", "D) H, K, L", "E) J, K, L" ], "answer": "D" }, { "id": "ar_lsat_199206_2-G_3_17", "context": "A hobbyist is stocking her aquarium with exactly three fish of different types and with exactly two species of plants. The only fish under consideration are a G, an H, a J, a K, and an L, and the only kinds of plants under consideration are of the species W, X, Y, and Z. She will observe the following conditions: If she selects the G, she can select neither the H nor a Y. She cannot select the H unless she selects the K. She cannot select the J unless she selects a W. If she selects the K, she must select an X.", "question": "The hobbyist could select any of the following plant combinations EXCEPT", "options": [ "A) W and X", "B) W and Y", "C) W and Z", "D) X and Y", "E) X and Z" ], "answer": "B" }, { "id": "ar_lsat_199206_2-G_4_18", "context": "A committee ranks five towns—Palmdale, Quietville, Riverdale, Seaside, Tidetown—from first (best) to fifth (worst) on each of three criteria: climate, location, friendliness. For each of the three criteria, none of the five towns receives the same ranking as any other town does. In climate, Tidetown is ranked third, and Seaside fourth. In location, Quietville is ranked second, Riverdale third, Palmdale fourth. In friendliness, Tidetown's ranking is better than Palmdale's, Quietville is ranked fourth and Seaside fifth. Riverdale receives a better ranking in climate than in friendliness. Quietville's three ranking are all different from each other.", "question": "Which of the following is a complete and accurate list of the rankings any one of which could be the ranking on climate given to Riverdale?", "options": [ "A) first", "B) first, second", "C) first, fifth", "D) second, fifth", "E) first, second, fifth" ], "answer": "B" }, { "id": "ar_lsat_199206_2-G_4_19", "context": "A committee ranks five towns—Palmdale, Quietville, Riverdale, Seaside, Tidetown—from first (best) to fifth (worst) on each of three criteria: climate, location, friendliness. For each of the three criteria, none of the five towns receives the same ranking as any other town does. In climate, Tidetown is ranked third, and Seaside fourth. In location, Quietville is ranked second, Riverdale third, Palmdale fourth. In friendliness, Tidetown's ranking is better than Palmdale's, Quietville is ranked fourth and Seaside fifth. Riverdale receives a better ranking in climate than in friendliness. Quietville's three ranking are all different from each other.", "question": "Which of the following is a town that CANNOT be ranked fifth on any one of the three criteria?", "options": [ "A) Palmdale", "B) Quietville", "C) Riverdale", "D) Seaside", "E) Tidetown" ], "answer": "C" }, { "id": "ar_lsat_199206_2-G_4_20", "context": "A committee ranks five towns—Palmdale, Quietville, Riverdale, Seaside, Tidetown—from first (best) to fifth (worst) on each of three criteria: climate, location, friendliness. For each of the three criteria, none of the five towns receives the same ranking as any other town does. In climate, Tidetown is ranked third, and Seaside fourth. In location, Quietville is ranked second, Riverdale third, Palmdale fourth. In friendliness, Tidetown's ranking is better than Palmdale's, Quietville is ranked fourth and Seaside fifth. Riverdale receives a better ranking in climate than in friendliness. Quietville's three ranking are all different from each other.", "question": "Which of the following could be true?", "options": [ "A) Palmdale is ranked first in both climate and friendliness.", "B) Quietville is ranked second in both climate and location.", "C) Riverdale is ranked first in climate and third in both location and friendliness.", "D) Seaside is ranked fifth in friendliness and fourth in both climate and location.", "E) Tidetown is ranked third in both climate and friendliness." ], "answer": "C" }, { "id": "ar_lsat_199206_2-G_4_21", "context": "A committee ranks five towns—Palmdale, Quietville, Riverdale, Seaside, Tidetown—from first (best) to fifth (worst) on each of three criteria: climate, location, friendliness. For each of the three criteria, none of the five towns receives the same ranking as any other town does. In climate, Tidetown is ranked third, and Seaside fourth. In location, Quietville is ranked second, Riverdale third, Palmdale fourth. In friendliness, Tidetown's ranking is better than Palmdale's, Quietville is ranked fourth and Seaside fifth. Riverdale receives a better ranking in climate than in friendliness. Quietville's three ranking are all different from each other.", "question": "If Quietville is ranked first in climate, then it must be true that", "options": [ "A) Palmdale is ranked second in climate", "B) Palmdale is ranked third in friendliness", "C) Riverdale is ranked second in friendliness", "D) Riverdale is ranked third in friendliness", "E) Tidetown is ranked fifth in location" ], "answer": "D" }, { "id": "ar_lsat_199206_2-G_4_22", "context": "A committee ranks five towns—Palmdale, Quietville, Riverdale, Seaside, Tidetown—from first (best) to fifth (worst) on each of three criteria: climate, location, friendliness. For each of the three criteria, none of the five towns receives the same ranking as any other town does. In climate, Tidetown is ranked third, and Seaside fourth. In location, Quietville is ranked second, Riverdale third, Palmdale fourth. In friendliness, Tidetown's ranking is better than Palmdale's, Quietville is ranked fourth and Seaside fifth. Riverdale receives a better ranking in climate than in friendliness. Quietville's three ranking are all different from each other.", "question": "If Palmdale is ranked second in climate, then which one of the following can be true?", "options": [ "A) Palmdale is ranked second in friendliness.", "B) Quietville is ranked first in climate.", "C) Riverdale is ranked first in friendliness.", "D) Riverdale is ranked fifth in climate.", "E) Tidetown is ranked third in friendliness." ], "answer": "A" }, { "id": "ar_lsat_199206_2-G_4_23", "context": "A committee ranks five towns—Palmdale, Quietville, Riverdale, Seaside, Tidetown—from first (best) to fifth (worst) on each of three criteria: climate, location, friendliness. For each of the three criteria, none of the five towns receives the same ranking as any other town does. In climate, Tidetown is ranked third, and Seaside fourth. In location, Quietville is ranked second, Riverdale third, Palmdale fourth. In friendliness, Tidetown's ranking is better than Palmdale's, Quietville is ranked fourth and Seaside fifth. Riverdale receives a better ranking in climate than in friendliness. Quietville's three ranking are all different from each other.", "question": "If Tidetown is ranked first in location and Riverdale is ranked second in friendliness, then it is possible to deduce with certainty all three rankings for exactly how many of the towns?", "options": [ "A) One", "B) Two", "C) Three", "D) Four", "E) Five" ], "answer": "E" }, { "id": "ar_lsat_199206_2-G_4_24", "context": "A committee ranks five towns—Palmdale, Quietville, Riverdale, Seaside, Tidetown—from first (best) to fifth (worst) on each of three criteria: climate, location, friendliness. For each of the three criteria, none of the five towns receives the same ranking as any other town does. In climate, Tidetown is ranked third, and Seaside fourth. In location, Quietville is ranked second, Riverdale third, Palmdale fourth. In friendliness, Tidetown's ranking is better than Palmdale's, Quietville is ranked fourth and Seaside fifth. Riverdale receives a better ranking in climate than in friendliness. Quietville's three ranking are all different from each other.", "question": "Which one of the following statements CANNOT be true?", "options": [ "A) Palmdale is ranked first in climate.", "B) Quietville is ranked fifth in climate.", "C) Riverdale is ranked third in friendliness.", "D) Seaside is ranked first in location.", "E) Tidetown is ranked second in friendliness." ], "answer": "E" }, { "id": "ar_lsat_199210_4-G_1_1", "context": "Petworld has exactly fourteen animals (three gerbils, three hamsters, three lizards, five snakes) that are kept in four separate cages (W, X, Y, Z) according to the following conditions: Each cage contains exactly two, four, or six animals. Any cage containing a gerbil also contains at least one hamster; any cage containing a hamster also contains at least one gerbil. Any cage containing a lizard also contains at least one snake; any cage containing a snake also contains at least one lizard. Neither cage Y nor cage Z contains a gerbil. Neither cage W nor cage X contains a lizard.", "question": "Which one of the following could be a complete and accurate list of the animals kept in cages W and Y?", "options": [ "A) W: one gerbil and one hamster Y: two lizards and two snakes", "B) W: one gerbil and two hamsters Y: one lizard and three snakes", "C) W: two gerbils and two hamsters Y: one lizard and four snakes", "D) W: two gerbils and two hamsters Y: three lizards and one snake", "E) W: two gerbils and two lizards Y: two hamsters and two snakes" ], "answer": "A" }, { "id": "ar_lsat_199210_4-G_1_2", "context": "Petworld has exactly fourteen animals (three gerbils, three hamsters, three lizards, five snakes) that are kept in four separate cages (W, X, Y, Z) according to the following conditions: Each cage contains exactly two, four, or six animals. Any cage containing a gerbil also contains at least one hamster; any cage containing a hamster also contains at least one gerbil. Any cage containing a lizard also contains at least one snake; any cage containing a snake also contains at least one lizard. Neither cage Y nor cage Z contains a gerbil. Neither cage W nor cage X contains a lizard.", "question": "If there are exactly two hamsters in cage W and the number of gerbils in cage X is equal to the number of snakes in cage Y, then the number of snakes in cage Z must be exactly", "options": [ "A) one", "B) two", "C) three", "D) four", "E) five" ], "answer": "D" }, { "id": "ar_lsat_199210_4-G_1_3", "context": "Petworld has exactly fourteen animals (three gerbils, three hamsters, three lizards, five snakes) that are kept in four separate cages (W, X, Y, Z) according to the following conditions: Each cage contains exactly two, four, or six animals. Any cage containing a gerbil also contains at least one hamster; any cage containing a hamster also contains at least one gerbil. Any cage containing a lizard also contains at least one snake; any cage containing a snake also contains at least one lizard. Neither cage Y nor cage Z contains a gerbil. Neither cage W nor cage X contains a lizard.", "question": "If cage Z contains exactly twice as many lizards as cage Y, which one of the following can be true?", "options": [ "A) Cage Y contains exactly two lizards.", "B) Cage Y contains exactly two snakes.", "C) Cage Y contains exactly four animals.", "D) Cage Z contains exactly three snakes.", "E) Cage Z contains exactly two animals." ], "answer": "C" }, { "id": "ar_lsat_199210_4-G_1_4", "context": "Petworld has exactly fourteen animals (three gerbils, three hamsters, three lizards, five snakes) that are kept in four separate cages (W, X, Y, Z) according to the following conditions: Each cage contains exactly two, four, or six animals. Any cage containing a gerbil also contains at least one hamster; any cage containing a hamster also contains at least one gerbil. Any cage containing a lizard also contains at least one snake; any cage containing a snake also contains at least one lizard. Neither cage Y nor cage Z contains a gerbil. Neither cage W nor cage X contains a lizard.", "question": "If the number of animals in cage W is equal to the number of animals in cage Z, then which one of the following can be true?", "options": [ "A) Cage W contains exactly six animals.", "B) Cage X contains exactly six animals.", "C) Cage Y contains exactly one snake.", "D) Cage Y contains exactly three snakes.", "E) Cage Z contains exactly four snakes." ], "answer": "D" }, { "id": "ar_lsat_199210_4-G_1_5", "context": "Petworld has exactly fourteen animals (three gerbils, three hamsters, three lizards, five snakes) that are kept in four separate cages (W, X, Y, Z) according to the following conditions: Each cage contains exactly two, four, or six animals. Any cage containing a gerbil also contains at least one hamster; any cage containing a hamster also contains at least one gerbil. Any cage containing a lizard also contains at least one snake; any cage containing a snake also contains at least one lizard. Neither cage Y nor cage Z contains a gerbil. Neither cage W nor cage X contains a lizard.", "question": "If cage Y contains six animals, which one of the following must be true?", "options": [ "A) Cage W contains two gerbils.", "B) Cage X contains four animals.", "C) Cage Z contains two snakes.", "D) The number of snakes in cage Y is equal to the number of lizards in cage Y.", "E) The number of snakes in cage Z is equal to the number of lizards in cage Z." ], "answer": "E" }, { "id": "ar_lsat_199210_4-G_1_6", "context": "Petworld has exactly fourteen animals (three gerbils, three hamsters, three lizards, five snakes) that are kept in four separate cages (W, X, Y, Z) according to the following conditions: Each cage contains exactly two, four, or six animals. Any cage containing a gerbil also contains at least one hamster; any cage containing a hamster also contains at least one gerbil. Any cage containing a lizard also contains at least one snake; any cage containing a snake also contains at least one lizard. Neither cage Y nor cage Z contains a gerbil. Neither cage W nor cage X contains a lizard.", "question": "At most, how many snakes can occupy cage Y at any one time?", "options": [ "A) one", "B) two", "C) three", "D) four", "E) five" ], "answer": "D" }, { "id": "ar_lsat_199210_4-G_2_7", "context": "A soft drink manufacturer surveyed consumer preferences for exactly seven proposed names for its new soda: Jazz, Kola, Luck, Mist, Nipi, Oboy, and Ping. The manufacturer ranked the seven names according to the number of votes they received. The name that received the most votes was ranked first. Every name received a different number of votes. Some of the survey results are as follows: Jazz received more votes than Oboy. Oboy received more votes than Kola. Kola received more votes than Mist. Nipi did not receive the fewest votes. Ping received fewer votes than Luck but more votes than Nipi and more votes than Oboy.", "question": "Which one of the following could be an accurate list of the seven names in rank order from first through seventh?", "options": [ "A) Jazz, Luck, Ping, Nipi, Kola, Oboy, Mist", "B) Jazz, Luck, Ping, Oboy, Kola, Mist, Nipi", "C) Luck, Ping, Jazz, Nipi, Oboy, Kola, Mist", "D) Luck, Ping, Nipi, Oboy, Jazz, Kola, Mist", "E) Ping, Luck, Jazz, Oboy, Nipi, Kola, Mist" ], "answer": "C" }, { "id": "ar_lsat_199210_4-G_2_8", "context": "A soft drink manufacturer surveyed consumer preferences for exactly seven proposed names for its new soda: Jazz, Kola, Luck, Mist, Nipi, Oboy, and Ping. The manufacturer ranked the seven names according to the number of votes they received. The name that received the most votes was ranked first. Every name received a different number of votes. Some of the survey results are as follows: Jazz received more votes than Oboy. Oboy received more votes than Kola. Kola received more votes than Mist. Nipi did not receive the fewest votes. Ping received fewer votes than Luck but more votes than Nipi and more votes than Oboy.", "question": "Which one of the following statements must be true?", "options": [ "A) Jazz received more votes than Nipi.", "B) Kola received more votes than Nipi.", "C) Luck received more votes than Jazz.", "D) Nipi received more votes than Oboy.", "E) Ping received more votes than Kola." ], "answer": "E" }, { "id": "ar_lsat_199210_4-G_2_9", "context": "A soft drink manufacturer surveyed consumer preferences for exactly seven proposed names for its new soda: Jazz, Kola, Luck, Mist, Nipi, Oboy, and Ping. The manufacturer ranked the seven names according to the number of votes they received. The name that received the most votes was ranked first. Every name received a different number of votes. Some of the survey results are as follows: Jazz received more votes than Oboy. Oboy received more votes than Kola. Kola received more votes than Mist. Nipi did not receive the fewest votes. Ping received fewer votes than Luck but more votes than Nipi and more votes than Oboy.", "question": "If the ranks of Ping, Oboy, and Kola were consecutive, then which one of the following statements would have to be false?", "options": [ "A) Jazz received more votes than Luck.", "B) Jazz received more votes than Ping.", "C) Nipi received more votes than Oboy.", "D) Nipi received more votes than Mist.", "E) Oboy received more votes than Nipi." ], "answer": "C" }, { "id": "ar_lsat_199210_4-G_2_10", "context": "A soft drink manufacturer surveyed consumer preferences for exactly seven proposed names for its new soda: Jazz, Kola, Luck, Mist, Nipi, Oboy, and Ping. The manufacturer ranked the seven names according to the number of votes they received. The name that received the most votes was ranked first. Every name received a different number of votes. Some of the survey results are as follows: Jazz received more votes than Oboy. Oboy received more votes than Kola. Kola received more votes than Mist. Nipi did not receive the fewest votes. Ping received fewer votes than Luck but more votes than Nipi and more votes than Oboy.", "question": "What is the total number of the soft drink names whose exact ranks can be deduced from the partial survey results?", "options": [ "A) one", "B) two", "C) three", "D) four", "E) five" ], "answer": "A" }, { "id": "ar_lsat_199210_4-G_2_11", "context": "A soft drink manufacturer surveyed consumer preferences for exactly seven proposed names for its new soda: Jazz, Kola, Luck, Mist, Nipi, Oboy, and Ping. The manufacturer ranked the seven names according to the number of votes they received. The name that received the most votes was ranked first. Every name received a different number of votes. Some of the survey results are as follows: Jazz received more votes than Oboy. Oboy received more votes than Kola. Kola received more votes than Mist. Nipi did not receive the fewest votes. Ping received fewer votes than Luck but more votes than Nipi and more votes than Oboy.", "question": "What is the maximum possible number of the soft drink names any one of which could be among the three most popular?", "options": [ "A) three", "B) four", "C) five", "D) six", "E) seven" ], "answer": "B" }, { "id": "ar_lsat_199210_4-G_2_12", "context": "A soft drink manufacturer surveyed consumer preferences for exactly seven proposed names for its new soda: Jazz, Kola, Luck, Mist, Nipi, Oboy, and Ping. The manufacturer ranked the seven names according to the number of votes they received. The name that received the most votes was ranked first. Every name received a different number of votes. Some of the survey results are as follows: Jazz received more votes than Oboy. Oboy received more votes than Kola. Kola received more votes than Mist. Nipi did not receive the fewest votes. Ping received fewer votes than Luck but more votes than Nipi and more votes than Oboy.", "question": "If Ping received more votes than Jazz, then what is the maximum possible number of names whose ranks can be determined?", "options": [ "A) two", "B) three", "C) four", "D) five", "E) six" ], "answer": "B" }, { "id": "ar_lsat_199210_4-G_3_13", "context": "Eight benches—J, K, L, T, U, X, Y, and Z are arranged along the perimeter of a park as shown below: The following is true: J, K, and L are green; T and U are red; X, Y, and Z are pink. The green benches stand next to one another along the park's perimeter. The pink benches stand next to one another along the park's perimeter. No green bench stands next to a pink bench. The bench on the southeast corner is T. J stands at the center of the park's north side. If T stands next to X, then T does not also stand next to L.", "question": "Which one of the following benches could be on the northeast corner of the park?", "options": [ "A) Z", "B) Y", "C) X", "D) T", "E) L" ], "answer": "E" }, { "id": "ar_lsat_199210_4-G_3_14", "context": "Eight benches—J, K, L, T, U, X, Y, and Z are arranged along the perimeter of a park as shown below: The following is true: J, K, and L are green; T and U are red; X, Y, and Z are pink. The green benches stand next to one another along the park's perimeter. The pink benches stand next to one another along the park's perimeter. No green bench stands next to a pink bench. The bench on the southeast corner is T. J stands at the center of the park's north side. If T stands next to X, then T does not also stand next to L.", "question": "Each of the following statements must be true EXCEPT:", "options": [ "A) The bench on the northwest corner is pink.", "B) The bench on the northeast corner is green.", "C) The bench on the southwest corner is pink.", "D) The middle bench on the east side of the park is green.", "E) The middle bench on the west side of the park is pink." ], "answer": "A" }, { "id": "ar_lsat_199210_4-G_3_15", "context": "Eight benches—J, K, L, T, U, X, Y, and Z are arranged along the perimeter of a park as shown below: The following is true: J, K, and L are green; T and U are red; X, Y, and Z are pink. The green benches stand next to one another along the park's perimeter. The pink benches stand next to one another along the park's perimeter. No green bench stands next to a pink bench. The bench on the southeast corner is T. J stands at the center of the park's north side. If T stands next to X, then T does not also stand next to L.", "question": "Which one of the following benches must be next to J?", "options": [ "A) K", "B) L", "C) T", "D) U", "E) X" ], "answer": "D" }, { "id": "ar_lsat_199210_4-G_3_16", "context": "Eight benches—J, K, L, T, U, X, Y, and Z are arranged along the perimeter of a park as shown below: The following is true: J, K, and L are green; T and U are red; X, Y, and Z are pink. The green benches stand next to one another along the park's perimeter. The pink benches stand next to one another along the park's perimeter. No green bench stands next to a pink bench. The bench on the southeast corner is T. J stands at the center of the park's north side. If T stands next to X, then T does not also stand next to L.", "question": "For which one of the following benches are there two and no more than two locations either one of which could be the location the bench occupies?", "options": [ "A) K", "B) T", "C) X", "D) Y", "E) Z" ], "answer": "A" }, { "id": "ar_lsat_199210_4-G_3_17", "context": "Eight benches—J, K, L, T, U, X, Y, and Z are arranged along the perimeter of a park as shown below: The following is true: J, K, and L are green; T and U are red; X, Y, and Z are pink. The green benches stand next to one another along the park's perimeter. The pink benches stand next to one another along the park's perimeter. No green bench stands next to a pink bench. The bench on the southeast corner is T. J stands at the center of the park's north side. If T stands next to X, then T does not also stand next to L.", "question": "If Z is directly north of Y, which one of the following statements must be true?", "options": [ "A) J is directly west of K.", "B) K is directly east of U.", "C) U is directly north of X.", "D) X is directly south of J.", "E) Z is directly south of J." ], "answer": "D" }, { "id": "ar_lsat_199210_4-G_3_18", "context": "Eight benches—J, K, L, T, U, X, Y, and Z are arranged along the perimeter of a park as shown below: The following is true: J, K, and L are green; T and U are red; X, Y, and Z are pink. The green benches stand next to one another along the park's perimeter. The pink benches stand next to one another along the park's perimeter. No green bench stands next to a pink bench. The bench on the southeast corner is T. J stands at the center of the park's north side. If T stands next to X, then T does not also stand next to L.", "question": "If Y is in the middle of the west side of the park, then the two benches in which one of the following pairs CANNOT be two of the corner benches?", "options": [ "A) K and X", "B) K and Z", "C) L and U", "D) L and X", "E) L and Z" ], "answer": "B" }, { "id": "ar_lsat_199210_4-G_3_19", "context": "Eight benches—J, K, L, T, U, X, Y, and Z are arranged along the perimeter of a park as shown below: The following is true: J, K, and L are green; T and U are red; X, Y, and Z are pink. The green benches stand next to one another along the park's perimeter. The pink benches stand next to one another along the park's perimeter. No green bench stands next to a pink bench. The bench on the southeast corner is T. J stands at the center of the park's north side. If T stands next to X, then T does not also stand next to L.", "question": "If Y is farther south than L and farther north than T, then the benches in each of the following pairs must be next to each other EXCEPT", "options": [ "A) J and L", "B) K and T", "C) T and X", "D) U and Y", "E) X and Z" ], "answer": "C" }, { "id": "ar_lsat_199210_4-G_4_20", "context": "A lake contains exactly five islands—J, K, L, M, O—which are unconnected by bridges. Contractors will build a network of bridges that satisfies the following specifications: Each bridge directly connects exactly two islands with each other, and no two bridges intersect. No more than one bridge directly connects any two islands. No island has more than three bridges that directly connect it with other islands. J, K, and L are each directly connected by bridge with one or both of M and O. J is directly connected by bridge with exactly two islands. K is directly connected by bridge with exactly one island. A bridge directly connects J with O, and a bridge directly connects M with O.", "question": "Which one of the following is a complete and accurate list of the islands any one of which could be directly connected by bridge with L ?", "options": [ "A) J, K", "B) J, M", "C) J, O", "D) J, M, O", "E) J, K, M, O" ], "answer": "D" }, { "id": "ar_lsat_199210_4-G_4_21", "context": "A lake contains exactly five islands—J, K, L, M, O—which are unconnected by bridges. Contractors will build a network of bridges that satisfies the following specifications: Each bridge directly connects exactly two islands with each other, and no two bridges intersect. No more than one bridge directly connects any two islands. No island has more than three bridges that directly connect it with other islands. J, K, and L are each directly connected by bridge with one or both of M and O. J is directly connected by bridge with exactly two islands. K is directly connected by bridge with exactly one island. A bridge directly connects J with O, and a bridge directly connects M with O.", "question": "Which one of the following could be true about the completed network of bridges?", "options": [ "A) J is directly connected by bridge both with L and with M.", "B) K is directly connected by bridge both with M and with O.", "C) L is directly connected by bridge both with J and with M.", "D) M is directly connected by bridge with J, with K, and with L.", "E) O is directly connected by bridge with K, with L, and with M." ], "answer": "C" }, { "id": "ar_lsat_199210_4-G_4_22", "context": "A lake contains exactly five islands—J, K, L, M, O—which are unconnected by bridges. Contractors will build a network of bridges that satisfies the following specifications: Each bridge directly connects exactly two islands with each other, and no two bridges intersect. No more than one bridge directly connects any two islands. No island has more than three bridges that directly connect it with other islands. J, K, and L are each directly connected by bridge with one or both of M and O. J is directly connected by bridge with exactly two islands. K is directly connected by bridge with exactly one island. A bridge directly connects J with O, and a bridge directly connects M with O.", "question": "If a bridge directly connects K with O, then which one of the following could be true?", "options": [ "A) No bridge directly connects L with M.", "B) A bridge directly connects J with L.", "C) A bridge directly connects L with O.", "D) There are exactly three bridges directly connecting L with other islands.", "E) There are exactly two bridges directly connecting O with other islands." ], "answer": "B" }, { "id": "ar_lsat_199210_4-G_4_23", "context": "A lake contains exactly five islands—J, K, L, M, O—which are unconnected by bridges. Contractors will build a network of bridges that satisfies the following specifications: Each bridge directly connects exactly two islands with each other, and no two bridges intersect. No more than one bridge directly connects any two islands. No island has more than three bridges that directly connect it with other islands. J, K, and L are each directly connected by bridge with one or both of M and O. J is directly connected by bridge with exactly two islands. K is directly connected by bridge with exactly one island. A bridge directly connects J with O, and a bridge directly connects M with O.", "question": "If a bridge directly connects L with M and a bridge directly connects L with O, then which one of the following must be true?", "options": [ "A) A bridge directly connects J with M.", "B) A bridge directly connects K with M.", "C) A bridge directly connects K with O.", "D) There are exactly two bridges directly connecting L with other islands.", "E) There are exactly two bridges directly connecting M with other islands." ], "answer": "B" }, { "id": "ar_lsat_199210_4-G_4_24", "context": "A lake contains exactly five islands—J, K, L, M, O—which are unconnected by bridges. Contractors will build a network of bridges that satisfies the following specifications: Each bridge directly connects exactly two islands with each other, and no two bridges intersect. No more than one bridge directly connects any two islands. No island has more than three bridges that directly connect it with other islands. J, K, and L are each directly connected by bridge with one or both of M and O. J is directly connected by bridge with exactly two islands. K is directly connected by bridge with exactly one island. A bridge directly connects J with O, and a bridge directly connects M with O.", "question": "If no island that is directly connected by bridge with M is also directly connected by bridge with O, then there must be a bridge directly connecting", "options": [ "A) J with L", "B) J with M", "C) K with O", "D) L with M", "E) L with O" ], "answer": "A" }, { "id": "ar_lsat_199212_1-G_1_1", "context": "Each of five students—Hubert, Lori, Paul, Regina, and Sharon—will visit exactly one of three cities—Montreal, Toronto, or Vancouver—for the month of March, according to the following conditions: Sharon visits a different city than Paul. Hubert visits the same city as Regina. Lori visits Montreal or else Toronto. If Paul visits Vancouver, Hubert visits Vancouver with him. Each student visits one of the cities with at least one of the other four students.", "question": "Which one of the following could be true for March?", "options": [ "A) Hubert, Lori, and Paul visit Toronto, and Regina and Sharon visit Vancouver.", "B) Hubert, Lori, Paul, and Regina visit Montreal, and Sharon visits Vancouver.", "C) Hubert, Paul, and Regina visit Toronto, and Lori and Sharon visit Montreal.", "D) Hubert, Regina, and Sharon visit Montreal, and Lori and Paul visit Vancouver.", "E) Lori, Paul, and Sharon visit Montreal, and Hubert and Regina visit Toronto." ], "answer": "C" }, { "id": "ar_lsat_199212_1-G_1_2", "context": "Each of five students—Hubert, Lori, Paul, Regina, and Sharon—will visit exactly one of three cities—Montreal, Toronto, or Vancouver—for the month of March, according to the following conditions: Sharon visits a different city than Paul. Hubert visits the same city as Regina. Lori visits Montreal or else Toronto. If Paul visits Vancouver, Hubert visits Vancouver with him. Each student visits one of the cities with at least one of the other four students.", "question": "If Hubert and Sharon visit a city together, which one of the following could be true in March?", "options": [ "A) Hubert visits the same city as Paul.", "B) Lori visits the same city as Regina.", "C) Paul visits the same city as Regina.", "D) Paul visits Toronto.", "E) Paul visits Vancouver." ], "answer": "D" }, { "id": "ar_lsat_199212_1-G_1_3", "context": "Each of five students—Hubert, Lori, Paul, Regina, and Sharon—will visit exactly one of three cities—Montreal, Toronto, or Vancouver—for the month of March, according to the following conditions: Sharon visits a different city than Paul. Hubert visits the same city as Regina. Lori visits Montreal or else Toronto. If Paul visits Vancouver, Hubert visits Vancouver with him. Each student visits one of the cities with at least one of the other four students.", "question": "If Sharon visits Vancouver, which one of the following must be true for March?", "options": [ "A) Hubert visits Montreal.", "B) Lori visits Montreal.", "C) Paul visits Toronto.", "D) Lori visits the same city as Paul.", "E) Lori visits the same city as Regina." ], "answer": "D" }, { "id": "ar_lsat_199212_1-G_1_4", "context": "Each of five students—Hubert, Lori, Paul, Regina, and Sharon—will visit exactly one of three cities—Montreal, Toronto, or Vancouver—for the month of March, according to the following conditions: Sharon visits a different city than Paul. Hubert visits the same city as Regina. Lori visits Montreal or else Toronto. If Paul visits Vancouver, Hubert visits Vancouver with him. Each student visits one of the cities with at least one of the other four students.", "question": "Which one of the following could be false in March?", "options": [ "A) Sharon must visit Montreal if Paul visits Vancouver.", "B) Regina must visit Vancouver if Paul visits Vancouver.", "C) Regina visits a city with exactly two of the other four students.", "D) Lori visits a city with exactly one of the other four students.", "E) Lori visits a city with Paul or else with Sharon." ], "answer": "A" }, { "id": "ar_lsat_199212_1-G_1_5", "context": "Each of five students—Hubert, Lori, Paul, Regina, and Sharon—will visit exactly one of three cities—Montreal, Toronto, or Vancouver—for the month of March, according to the following conditions: Sharon visits a different city than Paul. Hubert visits the same city as Regina. Lori visits Montreal or else Toronto. If Paul visits Vancouver, Hubert visits Vancouver with him. Each student visits one of the cities with at least one of the other four students.", "question": "If Regina visits Toronto, which one of the following could be true in March?", "options": [ "A) Lori visits Toronto.", "B) Lori visits Vancouver.", "C) Paul visits Toronto.", "D) Paul visits Vancouver.", "E) Sharon visits Vancouver." ], "answer": "C" }, { "id": "ar_lsat_199212_1-G_1_6", "context": "Each of five students—Hubert, Lori, Paul, Regina, and Sharon—will visit exactly one of three cities—Montreal, Toronto, or Vancouver—for the month of March, according to the following conditions: Sharon visits a different city than Paul. Hubert visits the same city as Regina. Lori visits Montreal or else Toronto. If Paul visits Vancouver, Hubert visits Vancouver with him. Each student visits one of the cities with at least one of the other four students.", "question": "Which one of the following must be true for March?", "options": [ "A) If any of the students visits Montreal, Lori visits Montreal.", "B) If any of the students visits Montreal, exactly two of them do.", "C) If any of the students visits Toronto, exactly three of them do.", "D) If any of the students visits Vancouver, Paul visits Vancouver.", "E) If any of the students visits Vancouver, exactly three of them do." ], "answer": "E" }, { "id": "ar_lsat_199212_1-G_2_7", "context": "A college offers one course in each of three subjects—mathematics, nutrition, and oceanography—in the fall and again in the spring. Students' book orders for these course offerings are kept in six folders, numbered 1 through 6, from which labels identifying the folders' contents are missing. The following is known: Each folder contains only the orders for one of the six course offerings. Folder 1 contains orders for the same subject as folder 2 does. The orders in folder 3 are for a different subject than are the orders in folder 4. The fall mathematics orders are in folder 1 or else folder 4. The spring oceanography orders are in folder 1 or else folder 4. The spring nutrition orders are not in folder 5.", "question": "Which one of the following could be the list of the contents of the folders, in order from folder 1 to folder 6 ?", "options": [ "A) fall mathematics, spring mathematics, fall oceanography, fall nutrition, spring nutrition, spring oceanography", "B) fall oceanography, spring nutrition, fall nutrition, fall mathematics, spring mathematics, spring oceanography", "C) spring mathematics, fall mathematics, spring nutrition, fall oceanography, fall nutrition, spring oceanography", "D) spring oceanography, fall oceanography, fall nutrition, fall mathematics, spring mathematics, spring nutrition", "E) spring oceanography, fall oceanography, spring mathematics, fall mathematics, fall nutrition, spring nutrition" ], "answer": "D" }, { "id": "ar_lsat_199212_1-G_2_8", "context": "A college offers one course in each of three subjects—mathematics, nutrition, and oceanography—in the fall and again in the spring. Students' book orders for these course offerings are kept in six folders, numbered 1 through 6, from which labels identifying the folders' contents are missing. The following is known: Each folder contains only the orders for one of the six course offerings. Folder 1 contains orders for the same subject as folder 2 does. The orders in folder 3 are for a different subject than are the orders in folder 4. The fall mathematics orders are in folder 1 or else folder 4. The spring oceanography orders are in folder 1 or else folder 4. The spring nutrition orders are not in folder 5.", "question": "Which one of the following statements must be false?", "options": [ "A) The spring mathematics orders are in folder 3.", "B) The fall nutrition orders are in folder 3.", "C) The spring oceanography orders are in folder 1.", "D) The spring nutrition orders are in folder 6.", "E) The fall oceanography orders are in folder 5." ], "answer": "A" }, { "id": "ar_lsat_199212_1-G_2_9", "context": "A college offers one course in each of three subjects—mathematics, nutrition, and oceanography—in the fall and again in the spring. Students' book orders for these course offerings are kept in six folders, numbered 1 through 6, from which labels identifying the folders' contents are missing. The following is known: Each folder contains only the orders for one of the six course offerings. Folder 1 contains orders for the same subject as folder 2 does. The orders in folder 3 are for a different subject than are the orders in folder 4. The fall mathematics orders are in folder 1 or else folder 4. The spring oceanography orders are in folder 1 or else folder 4. The spring nutrition orders are not in folder 5.", "question": "If the fall oceanography orders are in folder 2, then which one of the following statements could be true?", "options": [ "A) The spring mathematics orders are in folder 4.", "B) The spring mathematics orders are in folder 6.", "C) The fall nutrition orders are in folder 1.", "D) The spring nutrition orders are in neither folder 3 nor folder 6.", "E) Neither the spring nor the fall nutrition orders are in folder 3." ], "answer": "B" }, { "id": "ar_lsat_199212_1-G_2_10", "context": "A college offers one course in each of three subjects—mathematics, nutrition, and oceanography—in the fall and again in the spring. Students' book orders for these course offerings are kept in six folders, numbered 1 through 6, from which labels identifying the folders' contents are missing. The following is known: Each folder contains only the orders for one of the six course offerings. Folder 1 contains orders for the same subject as folder 2 does. The orders in folder 3 are for a different subject than are the orders in folder 4. The fall mathematics orders are in folder 1 or else folder 4. The spring oceanography orders are in folder 1 or else folder 4. The spring nutrition orders are not in folder 5.", "question": "Which one of the following statements could be true?", "options": [ "A) The spring mathematics orders are in folder 1.", "B) The fall oceanography orders are in folder 1.", "C) The fall nutrition orders are in folder 4, and the fall oceanography orders are in folder 6.", "D) The fall oceanography orders are in folder 2, and the spring oceanography orders are in folder 1.", "E) The spring oceanography orders are in folder 1, and neither the spring nor the fall nutrition orders are in folder 3." ], "answer": "D" }, { "id": "ar_lsat_199212_1-G_2_11", "context": "A college offers one course in each of three subjects—mathematics, nutrition, and oceanography—in the fall and again in the spring. Students' book orders for these course offerings are kept in six folders, numbered 1 through 6, from which labels identifying the folders' contents are missing. The following is known: Each folder contains only the orders for one of the six course offerings. Folder 1 contains orders for the same subject as folder 2 does. The orders in folder 3 are for a different subject than are the orders in folder 4. The fall mathematics orders are in folder 1 or else folder 4. The spring oceanography orders are in folder 1 or else folder 4. The spring nutrition orders are not in folder 5.", "question": "If the fall oceanography orders are in folder 2, then for exactly how many of the remaining five folders can it be deduced which course offering's orders are in that folder?", "options": [ "A) one", "B) two", "C) three", "D) four", "E) five" ], "answer": "B" }, { "id": "ar_lsat_199212_1-G_2_12", "context": "A college offers one course in each of three subjects—mathematics, nutrition, and oceanography—in the fall and again in the spring. Students' book orders for these course offerings are kept in six folders, numbered 1 through 6, from which labels identifying the folders' contents are missing. The following is known: Each folder contains only the orders for one of the six course offerings. Folder 1 contains orders for the same subject as folder 2 does. The orders in folder 3 are for a different subject than are the orders in folder 4. The fall mathematics orders are in folder 1 or else folder 4. The spring oceanography orders are in folder 1 or else folder 4. The spring nutrition orders are not in folder 5.", "question": "Which one of the following lists a pair of folders that must together contain orders for two different subjects?", "options": [ "A) 3 and 5", "B) 4 and 5", "C) 3 and 6", "D) 4 and 6", "E) 5 and 6" ], "answer": "E" }, { "id": "ar_lsat_199212_1-G_2_13", "context": "A college offers one course in each of three subjects—mathematics, nutrition, and oceanography—in the fall and again in the spring. Students' book orders for these course offerings are kept in six folders, numbered 1 through 6, from which labels identifying the folders' contents are missing. The following is known: Each folder contains only the orders for one of the six course offerings. Folder 1 contains orders for the same subject as folder 2 does. The orders in folder 3 are for a different subject than are the orders in folder 4. The fall mathematics orders are in folder 1 or else folder 4. The spring oceanography orders are in folder 1 or else folder 4. The spring nutrition orders are not in folder 5.", "question": "Which one of the following could be true?", "options": [ "A) The fall mathematics and spring oceanography orders are in folders with consecutive numbers.", "B) Folder 5 contains the orders for a spring course in a subject other than mathematics.", "C) Folder 6 contains the orders for a subject other than nutrition.", "D) The mathematics orders are in folders 1 and 4.", "E) The orders for the fall courses are in folders 1, 3, and 6." ], "answer": "C" }, { "id": "ar_lsat_199212_1-G_3_14", "context": "Greenburg has exactly five subway lines: Ll, L2, L3, L4, and L5. Along each of the lines, trains run in both directions, stopping at every station. Ll runs in a loop connecting exactly seven stations, their order being Rincon-Tonka-French-Semplain-Urstine-Quetzal-Park-Rincon in one direction of travel, and the reverse in the other direction. L2 connects Tonka with Semplain, and with no other station. L3 connects Rincon with Urstine, and with no other station. L4 runs from Quetzal through exactly one other station, Greene, to Rincon. L5 connects Quetzal with Tonka, and with no other station.", "question": "How many different stations are there that a traveler starting at Rincon could reach by using the subway lines without making any intermediate stops?", "options": [ "A) two", "B) three", "C) four", "D) five", "E) six" ], "answer": "C" }, { "id": "ar_lsat_199212_1-G_3_15", "context": "Greenburg has exactly five subway lines: Ll, L2, L3, L4, and L5. Along each of the lines, trains run in both directions, stopping at every station. Ll runs in a loop connecting exactly seven stations, their order being Rincon-Tonka-French-Semplain-Urstine-Quetzal-Park-Rincon in one direction of travel, and the reverse in the other direction. L2 connects Tonka with Semplain, and with no other station. L3 connects Rincon with Urstine, and with no other station. L4 runs from Quetzal through exactly one other station, Greene, to Rincon. L5 connects Quetzal with Tonka, and with no other station.", "question": "In order to go from Greene to Semplain taking the fewest possible subway lines and making the fewest possible stops, a traveler must make a stop at", "options": [ "A) French", "B) Park", "C) Quetzal", "D) Rincon", "E) Tonka" ], "answer": "C" }, { "id": "ar_lsat_199212_1-G_3_16", "context": "Greenburg has exactly five subway lines: Ll, L2, L3, L4, and L5. Along each of the lines, trains run in both directions, stopping at every station. Ll runs in a loop connecting exactly seven stations, their order being Rincon-Tonka-French-Semplain-Urstine-Quetzal-Park-Rincon in one direction of travel, and the reverse in the other direction. L2 connects Tonka with Semplain, and with no other station. L3 connects Rincon with Urstine, and with no other station. L4 runs from Quetzal through exactly one other station, Greene, to Rincon. L5 connects Quetzal with Tonka, and with no other station.", "question": "If L3 is not running and a traveler goes by subway from Urstine to Rincon making the fewest possible stops, which one of the following lists all of the intermediate stations in sequence along one of the routes that the traveler could take?", "options": [ "A) Quetzal, Tonka", "B) Semplain, French", "C) Semplain, Park", "D) Quetzal, Park, Greene", "E) Semplain, French, Tonka" ], "answer": "A" }, { "id": "ar_lsat_199212_1-G_3_17", "context": "Greenburg has exactly five subway lines: Ll, L2, L3, L4, and L5. Along each of the lines, trains run in both directions, stopping at every station. Ll runs in a loop connecting exactly seven stations, their order being Rincon-Tonka-French-Semplain-Urstine-Quetzal-Park-Rincon in one direction of travel, and the reverse in the other direction. L2 connects Tonka with Semplain, and with no other station. L3 connects Rincon with Urstine, and with no other station. L4 runs from Quetzal through exactly one other station, Greene, to Rincon. L5 connects Quetzal with Tonka, and with no other station.", "question": "In order to go by subway from French to Greene, the minimum number of intermediate stops a traveler must make is", "options": [ "A) zero", "B) one", "C) two", "D) three", "E) four" ], "answer": "C" }, { "id": "ar_lsat_199212_1-G_3_18", "context": "Greenburg has exactly five subway lines: Ll, L2, L3, L4, and L5. Along each of the lines, trains run in both directions, stopping at every station. Ll runs in a loop connecting exactly seven stations, their order being Rincon-Tonka-French-Semplain-Urstine-Quetzal-Park-Rincon in one direction of travel, and the reverse in the other direction. L2 connects Tonka with Semplain, and with no other station. L3 connects Rincon with Urstine, and with no other station. L4 runs from Quetzal through exactly one other station, Greene, to Rincon. L5 connects Quetzal with Tonka, and with no other station.", "question": "If the tracks that directly connect Urstine and Quetzal are blocked in both directions, a traveler going from Semplain to Park and making the fewest possible intermediate stops must pass through", "options": [ "A) French or Tonka", "B) Greene or Urstine", "C) Quetzal or Tonka", "D) Quetzal or Urstine or both", "E) Rincon or Tonka or both" ], "answer": "E" }, { "id": "ar_lsat_199212_1-G_3_19", "context": "Greenburg has exactly five subway lines: Ll, L2, L3, L4, and L5. Along each of the lines, trains run in both directions, stopping at every station. Ll runs in a loop connecting exactly seven stations, their order being Rincon-Tonka-French-Semplain-Urstine-Quetzal-Park-Rincon in one direction of travel, and the reverse in the other direction. L2 connects Tonka with Semplain, and with no other station. L3 connects Rincon with Urstine, and with no other station. L4 runs from Quetzal through exactly one other station, Greene, to Rincon. L5 connects Quetzal with Tonka, and with no other station.", "question": "If a sixth subway line is to be constructed so that all of the stations would have two or more lines reaching them, the stations connected by the new subway line must include at least", "options": [ "A) French, Greene, and Park", "B) French, Greene, and Quetzal", "C) French, Greene, and Rincon", "D) Park, Tonka, and Urstine", "E) Park, Semplain, and Tonka" ], "answer": "A" }, { "id": "ar_lsat_199212_1-G_4_20", "context": "Prior to this year's annual promotion review, the staff of a law firm consisted of partners Harrison and Rafael, associate Olivos, and assistants Ganz, Johnson, Lowry, Stefano, Turner, and Wilford. During each annual review, each assistant and associate is considered for promotion to the next higher rank, and at least one person is promoted from each of the two lower ranks. An assistant is promoted to associate when a majority of higherranking staff votes for promotion. An associate is promoted to partner when a majority of partners vote for promotion. Everyone eligible votes on every promotion. No one joins or leaves the firm. Olivos never votes for promoting Ganz, Johnson, or Turner. Rafael never votes for promoting Lowry or Stefano. Harrison never votes for promoting Johnson or Wilford.", "question": "Which one of the following could be the distribution of staff resulting from this year's review?", "options": [ "A) Partner: Harrison, Olivos, Rafael. Associate: Ganz, Johnson, Lowry. Assistance: Stefano, Turner, Wilford", "B) Partner: Harrison, Rafael. Associate: Lowry, Olivos, Stefano. Assistance: Ganz, Johnson, Turner, Wilford", "C) Partner: Harrison, Olivos, Rafael, Stefano. Associate: Ganz, Lowry, Turner, Wilford. Assistance: Johnson", "D) Partner: Harrison, Olivos, Rafael. Assistance: Ganz, Johnson, Lowry, Stefano, Turner, Wilford", "E) Partner: Harrison, Olivos, Rafael. Associate: Ganz, Lowry Stefano, Turner. Assistance: Johnson, Wilford" ], "answer": "E" }, { "id": "ar_lsat_199212_1-G_4_21", "context": "Prior to this year's annual promotion review, the staff of a law firm consisted of partners Harrison and Rafael, associate Olivos, and assistants Ganz, Johnson, Lowry, Stefano, Turner, and Wilford. During each annual review, each assistant and associate is considered for promotion to the next higher rank, and at least one person is promoted from each of the two lower ranks. An assistant is promoted to associate when a majority of higherranking staff votes for promotion. An associate is promoted to partner when a majority of partners vote for promotion. Everyone eligible votes on every promotion. No one joins or leaves the firm. Olivos never votes for promoting Ganz, Johnson, or Turner. Rafael never votes for promoting Lowry or Stefano. Harrison never votes for promoting Johnson or Wilford.", "question": "If Rafael votes for promoting only Ganz, Olivos, and Wilford, and if Harrison votes for promoting only Lowry, Olivos, and Stefano, then which one of the following could be the complete roster of associates resulting from this year's review?", "options": [ "A) Ganz, Lowry, Wilford", "B) Johnson, Lowry, Stefano", "C) Lowry, Stefano, Turner", "D) Lowry, Stefano, Wilford", "E) Olivos, Turner, Wilford" ], "answer": "D" }, { "id": "ar_lsat_199212_1-G_4_22", "context": "Prior to this year's annual promotion review, the staff of a law firm consisted of partners Harrison and Rafael, associate Olivos, and assistants Ganz, Johnson, Lowry, Stefano, Turner, and Wilford. During each annual review, each assistant and associate is considered for promotion to the next higher rank, and at least one person is promoted from each of the two lower ranks. An assistant is promoted to associate when a majority of higherranking staff votes for promotion. An associate is promoted to partner when a majority of partners vote for promotion. Everyone eligible votes on every promotion. No one joins or leaves the firm. Olivos never votes for promoting Ganz, Johnson, or Turner. Rafael never votes for promoting Lowry or Stefano. Harrison never votes for promoting Johnson or Wilford.", "question": "If Johnson is to be promoted to associate during next year's review, which one of the following is the smallest number of assistants who must be promoted during this year's review?", "options": [ "A) one", "B) two", "C) three", "D) four", "E) five" ], "answer": "B" }, { "id": "ar_lsat_199212_1-G_4_23", "context": "Prior to this year's annual promotion review, the staff of a law firm consisted of partners Harrison and Rafael, associate Olivos, and assistants Ganz, Johnson, Lowry, Stefano, Turner, and Wilford. During each annual review, each assistant and associate is considered for promotion to the next higher rank, and at least one person is promoted from each of the two lower ranks. An assistant is promoted to associate when a majority of higherranking staff votes for promotion. An associate is promoted to partner when a majority of partners vote for promotion. Everyone eligible votes on every promotion. No one joins or leaves the firm. Olivos never votes for promoting Ganz, Johnson, or Turner. Rafael never votes for promoting Lowry or Stefano. Harrison never votes for promoting Johnson or Wilford.", "question": "Which one of the following must be true after next year's review?", "options": [ "A) Lowry is an assistant.", "B) Wilford is a partner.", "C) There are no assistants.", "D) There are at least two assistants.", "E) There are no more than four assistants." ], "answer": "E" }, { "id": "ar_lsat_199212_1-G_4_24", "context": "Prior to this year's annual promotion review, the staff of a law firm consisted of partners Harrison and Rafael, associate Olivos, and assistants Ganz, Johnson, Lowry, Stefano, Turner, and Wilford. During each annual review, each assistant and associate is considered for promotion to the next higher rank, and at least one person is promoted from each of the two lower ranks. An assistant is promoted to associate when a majority of higherranking staff votes for promotion. An associate is promoted to partner when a majority of partners vote for promotion. Everyone eligible votes on every promotion. No one joins or leaves the firm. Olivos never votes for promoting Ganz, Johnson, or Turner. Rafael never votes for promoting Lowry or Stefano. Harrison never votes for promoting Johnson or Wilford.", "question": "What is the smallest possible number of associates in the firm immediately after next year's review?", "options": [ "A) none", "B) one", "C) two", "D) three", "E) four" ], "answer": "B" }, { "id": "ar_lsat_199302_2-G_1_1", "context": "Seven consecutive time slots for a broadcast, numbered in chronological order 1 through 7, will be filled by six song tapes—G, H, L, O, P, S—and exactly one news tape. Each tape is to be assigned to a different time slot, and no tape is longer than any other tape. The broadcast is subject to the following restrictions: L must be played immediately before O. The news tape must be played at some time after L. There must be exactly two time slots between G and P, regardless of whether G comes before P or whether G comes after P.", "question": "If G is played second, which one of the following tapes must be played third?", "options": [ "A) the news", "B) H", "C) L", "D) O", "E) S" ], "answer": "C" }, { "id": "ar_lsat_199302_2-G_1_2", "context": "Seven consecutive time slots for a broadcast, numbered in chronological order 1 through 7, will be filled by six song tapes—G, H, L, O, P, S—and exactly one news tape. Each tape is to be assigned to a different time slot, and no tape is longer than any other tape. The broadcast is subject to the following restrictions: L must be played immediately before O. The news tape must be played at some time after L. There must be exactly two time slots between G and P, regardless of whether G comes before P or whether G comes after P.", "question": "The news tape can be played in any one of the following time slots EXCEPT the", "options": [ "A) second", "B) third", "C) fourth", "D) fifth", "E) sixth" ], "answer": "A" }, { "id": "ar_lsat_199302_2-G_1_3", "context": "Seven consecutive time slots for a broadcast, numbered in chronological order 1 through 7, will be filled by six song tapes—G, H, L, O, P, S—and exactly one news tape. Each tape is to be assigned to a different time slot, and no tape is longer than any other tape. The broadcast is subject to the following restrictions: L must be played immediately before O. The news tape must be played at some time after L. There must be exactly two time slots between G and P, regardless of whether G comes before P or whether G comes after P.", "question": "If H and S are to be scheduled as far from each other as possible, then the first, the second, and the third time slots could be filled, respectively, by", "options": [ "A) G, H, and L", "B) S, G, and the news", "C) H, G, and L", "D) H, L, and O", "E) L, O, and S" ], "answer": "C" }, { "id": "ar_lsat_199302_2-G_1_4", "context": "Seven consecutive time slots for a broadcast, numbered in chronological order 1 through 7, will be filled by six song tapes—G, H, L, O, P, S—and exactly one news tape. Each tape is to be assigned to a different time slot, and no tape is longer than any other tape. The broadcast is subject to the following restrictions: L must be played immediately before O. The news tape must be played at some time after L. There must be exactly two time slots between G and P, regardless of whether G comes before P or whether G comes after P.", "question": "If P is played fifth, L must be played", "options": [ "A) first", "B) second", "C) third", "D) fourth", "E) sixth" ], "answer": "C" }, { "id": "ar_lsat_199302_2-G_1_5", "context": "Seven consecutive time slots for a broadcast, numbered in chronological order 1 through 7, will be filled by six song tapes—G, H, L, O, P, S—and exactly one news tape. Each tape is to be assigned to a different time slot, and no tape is longer than any other tape. The broadcast is subject to the following restrictions: L must be played immediately before O. The news tape must be played at some time after L. There must be exactly two time slots between G and P, regardless of whether G comes before P or whether G comes after P.", "question": "What is the maximum number of tapes that can separate S from the news?", "options": [ "A) 1", "B) 2", "C) 3", "D) 4", "E) 5" ], "answer": "E" }, { "id": "ar_lsat_199302_2-G_1_6", "context": "Seven consecutive time slots for a broadcast, numbered in chronological order 1 through 7, will be filled by six song tapes—G, H, L, O, P, S—and exactly one news tape. Each tape is to be assigned to a different time slot, and no tape is longer than any other tape. The broadcast is subject to the following restrictions: L must be played immediately before O. The news tape must be played at some time after L. There must be exactly two time slots between G and P, regardless of whether G comes before P or whether G comes after P.", "question": "Which one of the following is the latest time slot in which L can be played?", "options": [ "A) the third", "B) the fourth", "C) the fifth", "D) the sixth", "E) the seventh" ], "answer": "C" }, { "id": "ar_lsat_199302_2-G_1_7", "context": "Seven consecutive time slots for a broadcast, numbered in chronological order 1 through 7, will be filled by six song tapes—G, H, L, O, P, S—and exactly one news tape. Each tape is to be assigned to a different time slot, and no tape is longer than any other tape. The broadcast is subject to the following restrictions: L must be played immediately before O. The news tape must be played at some time after L. There must be exactly two time slots between G and P, regardless of whether G comes before P or whether G comes after P.", "question": "The time slot in which O must be played is completely determined if G is assigned to which one of the following time slots?", "options": [ "A) the first", "B) the third", "C) the fourth", "D) the fifth", "E) the sixth" ], "answer": "D" }, { "id": "ar_lsat_199302_2-G_2_8", "context": "Doctor Yamata works only on Mondays, Tuesdays, Wednesdays, Fridays, and Saturdays. She performs four different activities—lecturing, operating, treating patients, and conducting research. Each working day she performs exactly one activity in the morning and exactly one activity in the afternoon. During each week her work schedule must satisfy the following restrictions: She performs operations on exactly three mornings. If she operates on Monday, she does not operate on Tuesday. She lectures in the afternoon on exactly two consecutive calendar days. She treats patients on exactly one morning and exactly three afternoons. She conducts research on exactly one morning. On Saturday she neither lectures nor performs operations.", "question": "Which one of the following must be a day on which Doctor Yamata lectures?", "options": [ "A) Monday", "B) Tuesday", "C) Wednesday", "D) Friday", "E) Saturday" ], "answer": "B" }, { "id": "ar_lsat_199302_2-G_2_9", "context": "Doctor Yamata works only on Mondays, Tuesdays, Wednesdays, Fridays, and Saturdays. She performs four different activities—lecturing, operating, treating patients, and conducting research. Each working day she performs exactly one activity in the morning and exactly one activity in the afternoon. During each week her work schedule must satisfy the following restrictions: She performs operations on exactly three mornings. If she operates on Monday, she does not operate on Tuesday. She lectures in the afternoon on exactly two consecutive calendar days. She treats patients on exactly one morning and exactly three afternoons. She conducts research on exactly one morning. On Saturday she neither lectures nor performs operations.", "question": "On Wednesday Doctor Yamata could be scheduled to", "options": [ "A) conduct research in the morning and operate in the afternoon", "B) lecture in the morning and treat patients in the afternoon", "C) operate in the morning and lecture in the afternoon", "D) operate in the morning and conduct research in the afternoon", "E) treat patients in the morning and treat patients in the afternoon" ], "answer": "C" }, { "id": "ar_lsat_199302_2-G_2_10", "context": "Doctor Yamata works only on Mondays, Tuesdays, Wednesdays, Fridays, and Saturdays. She performs four different activities—lecturing, operating, treating patients, and conducting research. Each working day she performs exactly one activity in the morning and exactly one activity in the afternoon. During each week her work schedule must satisfy the following restrictions: She performs operations on exactly three mornings. If she operates on Monday, she does not operate on Tuesday. She lectures in the afternoon on exactly two consecutive calendar days. She treats patients on exactly one morning and exactly three afternoons. She conducts research on exactly one morning. On Saturday she neither lectures nor performs operations.", "question": "Which one of the following statements must be true?", "options": [ "A) There is one day on which the doctor treats patients both in the morning and in the afternoon.", "B) The doctor conducts research on one of the days on which she lectures.", "C) The doctor conducts research on one of the days on which she treats patients.", "D) The doctor lectures on one of the days on which she treats patients.", "E) The doctor lectures on one of the days on which she operates." ], "answer": "E" }, { "id": "ar_lsat_199302_2-G_2_11", "context": "Doctor Yamata works only on Mondays, Tuesdays, Wednesdays, Fridays, and Saturdays. She performs four different activities—lecturing, operating, treating patients, and conducting research. Each working day she performs exactly one activity in the morning and exactly one activity in the afternoon. During each week her work schedule must satisfy the following restrictions: She performs operations on exactly three mornings. If she operates on Monday, she does not operate on Tuesday. She lectures in the afternoon on exactly two consecutive calendar days. She treats patients on exactly one morning and exactly three afternoons. She conducts research on exactly one morning. On Saturday she neither lectures nor performs operations.", "question": "If Doctor Yamata operates on Tuesday, then her schedule for treating patients could be", "options": [ "A) Monday morning, Monday afternoon, Friday morning, Friday afternoon", "B) Monday morning, Friday afternoon, Saturday morning, Saturday afternoon", "C) Monday afternoon, Wednesday morning, Wednesday afternoon, Saturday afternoon", "D) Wednesday morning, Wednesday afternoon, Friday afternoon, Saturday afternoon", "E) Wednesday afternoon, Friday afternoon, Saturday morning, Saturday afternoon" ], "answer": "E" }, { "id": "ar_lsat_199302_2-G_2_12", "context": "Doctor Yamata works only on Mondays, Tuesdays, Wednesdays, Fridays, and Saturdays. She performs four different activities—lecturing, operating, treating patients, and conducting research. Each working day she performs exactly one activity in the morning and exactly one activity in the afternoon. During each week her work schedule must satisfy the following restrictions: She performs operations on exactly three mornings. If she operates on Monday, she does not operate on Tuesday. She lectures in the afternoon on exactly two consecutive calendar days. She treats patients on exactly one morning and exactly three afternoons. She conducts research on exactly one morning. On Saturday she neither lectures nor performs operations.", "question": "Which one of the following is a pair of days on both of which Doctor Yamata must treat patients?", "options": [ "A) Monday and Tuesday", "B) Monday and Saturday", "C) Tuesday and Friday", "D) Tuesday and Saturday", "E) Friday and Saturday" ], "answer": "E" }, { "id": "ar_lsat_199302_2-G_3_13", "context": "Each of seven judges voted for or else against granting Datalog Corporation's petition. Each judge is categorized as conservative, moderate, or liberal, and no judge is assigned more than one of those labels. Two judges are conservatives, two are moderates, and three are liberals. The following is known about how the judges voted: If the two conservatives and at least one liberal voted the same way as each other, then both moderates voted that way. If the three liberals voted the same way as each other, then no conservative voted that way. At least two of the judges voted for Datalog, and at least two voted against Datalog. At least one conservative voted against Datalog.", "question": "If the two moderates did not vote the same way as each other, then which one of the following could be true?", "options": [ "A) No conservative and exactly two liberals voted for Datalog.", "B) Exactly one conservative and exactly one liberal voted for Datalog.", "C) Exactly one conservative and all three liberals voted for Datalog.", "D) Exactly two conservatives and exactly one liberal voted for Datalog.", "E) Exactly two conservatives and exactly two liberals voted for Datalog." ], "answer": "B" }, { "id": "ar_lsat_199302_2-G_3_14", "context": "Each of seven judges voted for or else against granting Datalog Corporation's petition. Each judge is categorized as conservative, moderate, or liberal, and no judge is assigned more than one of those labels. Two judges are conservatives, two are moderates, and three are liberals. The following is known about how the judges voted: If the two conservatives and at least one liberal voted the same way as each other, then both moderates voted that way. If the three liberals voted the same way as each other, then no conservative voted that way. At least two of the judges voted for Datalog, and at least two voted against Datalog. At least one conservative voted against Datalog.", "question": "Which one of the following must be true?", "options": [ "A) At least one conservative voted for Datalog.", "B) At least one liberal voted against Datalog.", "C) At least one liberal voted for Datalog.", "D) At least one moderate voted against Datalog.", "E) At least one moderate voted for Datalog." ], "answer": "C" }, { "id": "ar_lsat_199302_2-G_3_15", "context": "Each of seven judges voted for or else against granting Datalog Corporation's petition. Each judge is categorized as conservative, moderate, or liberal, and no judge is assigned more than one of those labels. Two judges are conservatives, two are moderates, and three are liberals. The following is known about how the judges voted: If the two conservatives and at least one liberal voted the same way as each other, then both moderates voted that way. If the three liberals voted the same way as each other, then no conservative voted that way. At least two of the judges voted for Datalog, and at least two voted against Datalog. At least one conservative voted against Datalog.", "question": "If the three liberals all voted the same way as each other, which one of the following must be true?", "options": [ "A) Both moderates voted for Datalog.", "B) Both moderates voted against Datalog.", "C) One conservative voted for Datalog and one conservative voted against Datalog.", "D) One moderate voted for Datalog and one moderate voted against Datalog.", "E) All three liberals voted for Datalog." ], "answer": "E" }, { "id": "ar_lsat_199302_2-G_3_16", "context": "Each of seven judges voted for or else against granting Datalog Corporation's petition. Each judge is categorized as conservative, moderate, or liberal, and no judge is assigned more than one of those labels. Two judges are conservatives, two are moderates, and three are liberals. The following is known about how the judges voted: If the two conservatives and at least one liberal voted the same way as each other, then both moderates voted that way. If the three liberals voted the same way as each other, then no conservative voted that way. At least two of the judges voted for Datalog, and at least two voted against Datalog. At least one conservative voted against Datalog.", "question": "If exactly two judges voted against Datalog, then which one of the following must be true?", "options": [ "A) Both moderates voted for Datalog.", "B) Exactly one conservative voted for Datalog.", "C) No conservative voted for Datalog.", "D) Exactly two liberals voted for Datalog.", "E) Exactly three liberals voted for Datalog." ], "answer": "A" }, { "id": "ar_lsat_199302_2-G_3_17", "context": "Each of seven judges voted for or else against granting Datalog Corporation's petition. Each judge is categorized as conservative, moderate, or liberal, and no judge is assigned more than one of those labels. Two judges are conservatives, two are moderates, and three are liberals. The following is known about how the judges voted: If the two conservatives and at least one liberal voted the same way as each other, then both moderates voted that way. If the three liberals voted the same way as each other, then no conservative voted that way. At least two of the judges voted for Datalog, and at least two voted against Datalog. At least one conservative voted against Datalog.", "question": "Each of the following could be a complete and accurate list of those judges who voted for Datalog EXCEPT", "options": [ "A) two liberals", "B) one conservative, one liberal", "C) two moderates, three liberals", "D) one conservative, two moderates, two liberals", "E) one conservative, two moderates, three liberals" ], "answer": "E" }, { "id": "ar_lsat_199302_2-G_3_18", "context": "Each of seven judges voted for or else against granting Datalog Corporation's petition. Each judge is categorized as conservative, moderate, or liberal, and no judge is assigned more than one of those labels. Two judges are conservatives, two are moderates, and three are liberals. The following is known about how the judges voted: If the two conservatives and at least one liberal voted the same way as each other, then both moderates voted that way. If the three liberals voted the same way as each other, then no conservative voted that way. At least two of the judges voted for Datalog, and at least two voted against Datalog. At least one conservative voted against Datalog.", "question": "If the two conservatives voted the same way as each other, but the liberals did not all vote the same way as each other, then each of the following must be true EXCEPT:", "options": [ "A) Both conservatives voted against Datalog.", "B) Both moderates voted for Datalog.", "C) At least one liberal voted against Datalog.", "D) Exactly two liberals voted for Datalog.", "E) Exactly five of the judges voted against Datalog." ], "answer": "B" }, { "id": "ar_lsat_199302_2-G_4_19", "context": "An official is assigning five runners—Larry, Ned, Olivia, Patricia, and Sonja—to parallel lanes numbered consecutively 1 through 5. The official will also assign each runner to represent a different charity—F, G, H, J, and K—not necessarily in order of the runner's names as given. The following ordering restrictions apply: The runner representing K is assigned to lane 4. Patricia is assigned to the only lane between the lanes of the runners representing F and G. There are exactly two lanes between Olivia's lane and the lane of the runner representing G. Sonja is assigned to a higher-numbered lane than the lane to which Ned is assigned.", "question": "Which one of the following is a possible assignment of runners to lanes by the charity they represent?", "options": [ "A) F G H K J", "B) G H J K F", "C) G K F J H", "D) H J G K F", "E) J H F K G" ], "answer": "E" }, { "id": "ar_lsat_199302_2-G_4_20", "context": "An official is assigning five runners—Larry, Ned, Olivia, Patricia, and Sonja—to parallel lanes numbered consecutively 1 through 5. The official will also assign each runner to represent a different charity—F, G, H, J, and K—not necessarily in order of the runner's names as given. The following ordering restrictions apply: The runner representing K is assigned to lane 4. Patricia is assigned to the only lane between the lanes of the runners representing F and G. There are exactly two lanes between Olivia's lane and the lane of the runner representing G. Sonja is assigned to a higher-numbered lane than the lane to which Ned is assigned.", "question": "The lane to which Patricia is assigned must be a lane that is", "options": [ "A) next to the lane to which Larry is assigned", "B) next to the lane to which Ned is assigned", "C) separated by exactly one lane from the lane to which Ned is assigned", "D) separated by exactly one lane from the lane to which Olivia is assigned", "E) separated by exactly one lane from the lane to which Sonja is assigned" ], "answer": "D" }, { "id": "ar_lsat_199302_2-G_4_21", "context": "An official is assigning five runners—Larry, Ned, Olivia, Patricia, and Sonja—to parallel lanes numbered consecutively 1 through 5. The official will also assign each runner to represent a different charity—F, G, H, J, and K—not necessarily in order of the runner's names as given. The following ordering restrictions apply: The runner representing K is assigned to lane 4. Patricia is assigned to the only lane between the lanes of the runners representing F and G. There are exactly two lanes between Olivia's lane and the lane of the runner representing G. Sonja is assigned to a higher-numbered lane than the lane to which Ned is assigned.", "question": "If Olivia is assigned to lane 2, which one of the following assignments must be made? Charity Lane", "options": [ "A) F 1", "B) G 5", "C) H 1", "D) H 3", "E) J 5" ], "answer": "B" }, { "id": "ar_lsat_199302_2-G_4_22", "context": "An official is assigning five runners—Larry, Ned, Olivia, Patricia, and Sonja—to parallel lanes numbered consecutively 1 through 5. The official will also assign each runner to represent a different charity—F, G, H, J, and K—not necessarily in order of the runner's names as given. The following ordering restrictions apply: The runner representing K is assigned to lane 4. Patricia is assigned to the only lane between the lanes of the runners representing F and G. There are exactly two lanes between Olivia's lane and the lane of the runner representing G. Sonja is assigned to a higher-numbered lane than the lane to which Ned is assigned.", "question": "Which one of the following, is a complete and accurate list of runners each of whom could be the runner representing F?", "options": [ "A) Larry, Ned", "B) Patricia, Sonja", "C) Larry, Ned, Olivia", "D) Larry, Ned, Sonja", "E) Ned, Patricia, Sonja" ], "answer": "D" }, { "id": "ar_lsat_199302_2-G_4_23", "context": "An official is assigning five runners—Larry, Ned, Olivia, Patricia, and Sonja—to parallel lanes numbered consecutively 1 through 5. The official will also assign each runner to represent a different charity—F, G, H, J, and K—not necessarily in order of the runner's names as given. The following ordering restrictions apply: The runner representing K is assigned to lane 4. Patricia is assigned to the only lane between the lanes of the runners representing F and G. There are exactly two lanes between Olivia's lane and the lane of the runner representing G. Sonja is assigned to a higher-numbered lane than the lane to which Ned is assigned.", "question": "If Ned is the runner representing J, then it must be true that", "options": [ "A) the runner representing G is assigned to lane 1", "B) the runner representing H is assigned to lane 2", "C) Larry is the runner representing K", "D) Olivia is the runner representing F", "E) Patricia is the runner representing H" ], "answer": "B" }, { "id": "ar_lsat_199302_2-G_4_24", "context": "An official is assigning five runners—Larry, Ned, Olivia, Patricia, and Sonja—to parallel lanes numbered consecutively 1 through 5. The official will also assign each runner to represent a different charity—F, G, H, J, and K—not necessarily in order of the runner's names as given. The following ordering restrictions apply: The runner representing K is assigned to lane 4. Patricia is assigned to the only lane between the lanes of the runners representing F and G. There are exactly two lanes between Olivia's lane and the lane of the runner representing G. Sonja is assigned to a higher-numbered lane than the lane to which Ned is assigned.", "question": "If Larry represents J, which one of the following could be the assignment of runners to lanes?", "options": [ "A) Larry Olivia Ned Patricia Sonja", "B) Larry Ned Olivia Sonja Patricia", "C) Larry Sonja Patricia Ned Olivia", "D) Ned Olivia Larry Patricia Sonja", "E) Ned Sonja Olivia Patricia Larry" ], "answer": "A" }, { "id": "ar_lsat_199306_2-G_1_1", "context": "A gymnastics instructor is planning a weekly schedule, Monday through Friday, of individual coaching sessions for each of six students—H, I, K, O, U, and Z. The instructor will coach exactly one student each day, except for one day when the instructor will coach two students in separate but consecutive sessions. The following restrictions apply: H's session must take place at some time before Z's session. I's session is on Thursday. K's session is always scheduled for the day immediately before or the day immediately after the day for which O's session is scheduled. Neither Monday nor Wednesday can be a day for which two students are scheduled.", "question": "Which one of the following is a pair of students whose sessions can both be scheduled for Tuesday, not necessarily in the order given?", "options": [ "A) H and U", "B) H and Z", "C) K and O", "D) O and U", "E) U and Z" ], "answer": "D" }, { "id": "ar_lsat_199306_2-G_1_2", "context": "A gymnastics instructor is planning a weekly schedule, Monday through Friday, of individual coaching sessions for each of six students—H, I, K, O, U, and Z. The instructor will coach exactly one student each day, except for one day when the instructor will coach two students in separate but consecutive sessions. The following restrictions apply: H's session must take place at some time before Z's session. I's session is on Thursday. K's session is always scheduled for the day immediately before or the day immediately after the day for which O's session is scheduled. Neither Monday nor Wednesday can be a day for which two students are scheduled.", "question": "If K's session is scheduled for Tuesday, then which one of the following is the earliest day for which Z's session can be scheduled?", "options": [ "A) Monday", "B) Tuesday", "C) Wednesday", "D) Thursday", "E) Friday" ], "answer": "B" }, { "id": "ar_lsat_199306_2-G_1_3", "context": "A gymnastics instructor is planning a weekly schedule, Monday through Friday, of individual coaching sessions for each of six students—H, I, K, O, U, and Z. The instructor will coach exactly one student each day, except for one day when the instructor will coach two students in separate but consecutive sessions. The following restrictions apply: H's session must take place at some time before Z's session. I's session is on Thursday. K's session is always scheduled for the day immediately before or the day immediately after the day for which O's session is scheduled. Neither Monday nor Wednesday can be a day for which two students are scheduled.", "question": "Which one of the following must be true?", "options": [ "A) If U's session is scheduled for Monday, H's session is scheduled for Tuesday.", "B) If U's session is scheduled for Tuesday, O's session is scheduled for Wednesday.", "C) If U's session is scheduled for Wednesday, Z's session is scheduled for Tuesday.", "D) If U's session is scheduled for Thursday, Z's session is scheduled for Friday.", "E) If U's session is scheduled for Friday, Z's session is scheduled for Thursday." ], "answer": "D" }, { "id": "ar_lsat_199306_2-G_1_4", "context": "A gymnastics instructor is planning a weekly schedule, Monday through Friday, of individual coaching sessions for each of six students—H, I, K, O, U, and Z. The instructor will coach exactly one student each day, except for one day when the instructor will coach two students in separate but consecutive sessions. The following restrictions apply: H's session must take place at some time before Z's session. I's session is on Thursday. K's session is always scheduled for the day immediately before or the day immediately after the day for which O's session is scheduled. Neither Monday nor Wednesday can be a day for which two students are scheduled.", "question": "Scheduling Z's session for which one of the following days determines the day for which U's session must be scheduled?", "options": [ "A) Monday", "B) Tuesday", "C) Wednesday", "D) Thursday", "E) Friday" ], "answer": "D" }, { "id": "ar_lsat_199306_2-G_1_5", "context": "A gymnastics instructor is planning a weekly schedule, Monday through Friday, of individual coaching sessions for each of six students—H, I, K, O, U, and Z. The instructor will coach exactly one student each day, except for one day when the instructor will coach two students in separate but consecutive sessions. The following restrictions apply: H's session must take place at some time before Z's session. I's session is on Thursday. K's session is always scheduled for the day immediately before or the day immediately after the day for which O's session is scheduled. Neither Monday nor Wednesday can be a day for which two students are scheduled.", "question": "If H's session is scheduled as the next session after U's session, which one of the following could be true about H's session and U's session?", "options": [ "A) U's session is scheduled for Monday, and H's session is scheduled for Tuesday.", "B) U's session is scheduled for Thursday, and H's session is scheduled for Friday.", "C) They are both scheduled for Tuesday.", "D) They are both scheduled for Thursday.", "E) They are both scheduled for Friday." ], "answer": "A" }, { "id": "ar_lsat_199306_2-G_2_6", "context": "A square parking lot has exactly eight lights—numbered 1 through 8—situated along its perimeter as diagramed below. The lot must always be illuminated in such a way that the following specifications are met: At least one of any three consecutively numbered lights is off. Light 8 is on. Neither light 2 nor light 7 is on when light 1 is on. At least one of the three lights on each side is on. If any side has exactly one of its three lights on, then that light is its center light. Two of the lights on the north side are on.", "question": "Which one of the following could be a complete and accurate list of lights that are on together?", "options": [ "A) 1, 3, 5, 7", "B) 2, 4, 6, 8", "C) 2, 3, 5, 6, 8", "D) 3, 4, 6, 7, 8", "E) 1, 2, 4, 5, 6, 8" ], "answer": "C" }, { "id": "ar_lsat_199306_2-G_2_7", "context": "A square parking lot has exactly eight lights—numbered 1 through 8—situated along its perimeter as diagramed below. The lot must always be illuminated in such a way that the following specifications are met: At least one of any three consecutively numbered lights is off. Light 8 is on. Neither light 2 nor light 7 is on when light 1 is on. At least one of the three lights on each side is on. If any side has exactly one of its three lights on, then that light is its center light. Two of the lights on the north side are on.", "question": "Which one of the following lights must be on?", "options": [ "A) light 2", "B) light 3", "C) light 4", "D) light 5", "E) light 6" ], "answer": "B" }, { "id": "ar_lsat_199306_2-G_2_8", "context": "A square parking lot has exactly eight lights—numbered 1 through 8—situated along its perimeter as diagramed below. The lot must always be illuminated in such a way that the following specifications are met: At least one of any three consecutively numbered lights is off. Light 8 is on. Neither light 2 nor light 7 is on when light 1 is on. At least one of the three lights on each side is on. If any side has exactly one of its three lights on, then that light is its center light. Two of the lights on the north side are on.", "question": "If light 1 is off, which one of the following is a light that must also be off?", "options": [ "A) light 3", "B) light 4", "C) light 5", "D) light 6", "E) light 7" ], "answer": "B" }, { "id": "ar_lsat_199306_2-G_2_9", "context": "A square parking lot has exactly eight lights—numbered 1 through 8—situated along its perimeter as diagramed below. The lot must always be illuminated in such a way that the following specifications are met: At least one of any three consecutively numbered lights is off. Light 8 is on. Neither light 2 nor light 7 is on when light 1 is on. At least one of the three lights on each side is on. If any side has exactly one of its three lights on, then that light is its center light. Two of the lights on the north side are on.", "question": "Which one of the following statements must be true?", "options": [ "A) If light 2 is on, then light 6 is off.", "B) If light 3 is on, then light 2 is on.", "C) If light 4 is on, then light 3 is off.", "D) If light 5 is off, then light 4 is on.", "E) If light 6 is off, then light 1 is on." ], "answer": "D" }, { "id": "ar_lsat_199306_2-G_2_10", "context": "A square parking lot has exactly eight lights—numbered 1 through 8—situated along its perimeter as diagramed below. The lot must always be illuminated in such a way that the following specifications are met: At least one of any three consecutively numbered lights is off. Light 8 is on. Neither light 2 nor light 7 is on when light 1 is on. At least one of the three lights on each side is on. If any side has exactly one of its three lights on, then that light is its center light. Two of the lights on the north side are on.", "question": "If light 5 is on, which one of the following could be true?", "options": [ "A) Light 1 is off and light 6 is off.", "B) Light 1 is on and light 7 is on.", "C) Light 2 is off and light 4 is on.", "D) Light 2 is off and light 6 is off.", "E) Light 6 is on and light 7 is on." ], "answer": "A" }, { "id": "ar_lsat_199306_2-G_2_11", "context": "A square parking lot has exactly eight lights—numbered 1 through 8—situated along its perimeter as diagramed below. The lot must always be illuminated in such a way that the following specifications are met: At least one of any three consecutively numbered lights is off. Light 8 is on. Neither light 2 nor light 7 is on when light 1 is on. At least one of the three lights on each side is on. If any side has exactly one of its three lights on, then that light is its center light. Two of the lights on the north side are on.", "question": "If light 4 is on, each of the following statements must be true EXCEPT:", "options": [ "A) Light 1 is on.", "B) Light 2 is on.", "C) Light 5 is off.", "D) Light 6 is on.", "E) Light 7 is off." ], "answer": "B" }, { "id": "ar_lsat_199306_2-G_2_12", "context": "A square parking lot has exactly eight lights—numbered 1 through 8—situated along its perimeter as diagramed below. The lot must always be illuminated in such a way that the following specifications are met: At least one of any three consecutively numbered lights is off. Light 8 is on. Neither light 2 nor light 7 is on when light 1 is on. At least one of the three lights on each side is on. If any side has exactly one of its three lights on, then that light is its center light. Two of the lights on the north side are on.", "question": "Suppose that it is no longer part of the specifications that two lights on the north side be on. If all of the other original specifications remain the same, and if exactly one light on the north side is on, which one of the following statements could be false?", "options": [ "A) Light 1 is off.", "B) Light 2 is on.", "C) Light 3 is off.", "D) Light 4 is on.", "E) Light 5 is on." ], "answer": "E" }, { "id": "ar_lsat_199306_2-G_3_13", "context": "Seven children are to be seated in seven chairs arranged in a row that runs from west to east. All seven children will face north. Four of the children are boys: Frank, Harry, Ivan, and Joel. Three are girls: Ruby, Sylvia, and Thelma. The children are assigned to chairs according to the following conditions: Exactly one child sits in each chair. No boy sits next to another boy. Ivan sits next to and east of the fourth child in the row. Sylvia sits east of Ivan. Frank sits next to Ruby.", "question": "What is the maximum possible number of different pairs of chairs in which Frank and Ruby could sit?", "options": [ "A) one", "B) two", "C) three", "D) four", "E) five" ], "answer": "C" }, { "id": "ar_lsat_199306_2-G_3_14", "context": "Seven children are to be seated in seven chairs arranged in a row that runs from west to east. All seven children will face north. Four of the children are boys: Frank, Harry, Ivan, and Joel. Three are girls: Ruby, Sylvia, and Thelma. The children are assigned to chairs according to the following conditions: Exactly one child sits in each chair. No boy sits next to another boy. Ivan sits next to and east of the fourth child in the row. Sylvia sits east of Ivan. Frank sits next to Ruby.", "question": "Which one of the following statements must be false?", "options": [ "A) Both Harry and Joel sit east of Frank.", "B) Both Harry and Ruby sit east of Frank.", "C) Both Harry and Joel sit west of Frank.", "D) Both Harry and Ruby sit west of Frank.", "E) Both Joel and Ruby sit east of Frank." ], "answer": "C" }, { "id": "ar_lsat_199306_2-G_3_15", "context": "Seven children are to be seated in seven chairs arranged in a row that runs from west to east. All seven children will face north. Four of the children are boys: Frank, Harry, Ivan, and Joel. Three are girls: Ruby, Sylvia, and Thelma. The children are assigned to chairs according to the following conditions: Exactly one child sits in each chair. No boy sits next to another boy. Ivan sits next to and east of the fourth child in the row. Sylvia sits east of Ivan. Frank sits next to Ruby.", "question": "If Thelma sits next to Ivan, and if Frank sits next to Thelma, which one of the following statements could be false?", "options": [ "A) Both Frank and Ivan sit east of Ruby.", "B) Both Frank and Ruby sit west of Thelma.", "C) Both Frank and Sylvia sit east of Ruby.", "D) Both Frank and Thelma sit west of Sylvia.", "E) Both Frank and Ruby sit west of Joel." ], "answer": "E" }, { "id": "ar_lsat_199306_2-G_3_16", "context": "Seven children are to be seated in seven chairs arranged in a row that runs from west to east. All seven children will face north. Four of the children are boys: Frank, Harry, Ivan, and Joel. Three are girls: Ruby, Sylvia, and Thelma. The children are assigned to chairs according to the following conditions: Exactly one child sits in each chair. No boy sits next to another boy. Ivan sits next to and east of the fourth child in the row. Sylvia sits east of Ivan. Frank sits next to Ruby.", "question": "If Frank does not sit next to any child who sits next to Ivan, which one of the following statements could be true?", "options": [ "A) Harry sits west of Frank.", "B) Joel sits west of Ivan.", "C) Ruby sits west of Frank.", "D) Thelma sits west of Frank.", "E) Thelma sits west of Ruby." ], "answer": "B" }, { "id": "ar_lsat_199306_2-G_3_17", "context": "Seven children are to be seated in seven chairs arranged in a row that runs from west to east. All seven children will face north. Four of the children are boys: Frank, Harry, Ivan, and Joel. Three are girls: Ruby, Sylvia, and Thelma. The children are assigned to chairs according to the following conditions: Exactly one child sits in each chair. No boy sits next to another boy. Ivan sits next to and east of the fourth child in the row. Sylvia sits east of Ivan. Frank sits next to Ruby.", "question": "If Frank sits east of Ruby, which one of the following pairs of children CANNOT sit next to each other?", "options": [ "A) Frank and Thelma", "B) Harry and Ruby", "C) Harry and Sylvia", "D) Ivan and Ruby", "E) Joel and Ruby" ], "answer": "D" }, { "id": "ar_lsat_199306_2-G_4_18", "context": "The organisms W, X, Y, and Z respond to the antibiotics ferromycin, ganocyclene, and heptocillin in a manner consistent with the following: Each of the organisms responds to at least one of the antibiotics. No organism responds to all three antibiotics. At least two but not all four of the organisms respond to ferromycin. If W responds to any antibiotic, then X responds to that antibiotic. If an organism responds to ferromycin, then it responds to ganocyclene. Y responds to ferromycin.", "question": "Each of the following can be true EXCEPT:", "options": [ "A) W responds to heptocillin.", "B) X responds to ganocyclene.", "C) X responds to heptocillin.", "D) Y responds to heptocillin.", "E) Z responds to ganocyclene." ], "answer": "D" }, { "id": "ar_lsat_199306_2-G_4_19", "context": "The organisms W, X, Y, and Z respond to the antibiotics ferromycin, ganocyclene, and heptocillin in a manner consistent with the following: Each of the organisms responds to at least one of the antibiotics. No organism responds to all three antibiotics. At least two but not all four of the organisms respond to ferromycin. If W responds to any antibiotic, then X responds to that antibiotic. If an organism responds to ferromycin, then it responds to ganocyclene. Y responds to ferromycin.", "question": "Which one of the following could be true?", "options": [ "A) W, X, and Z all respond to ferromycin.", "B) W, X, and Z all respond to ganocyclene.", "C) W and exactly one other organism respond to ganocyclene.", "D) W responds to more of the antibiotics than X does.", "E) More of the organisms respond to ferromycin than to ganocyclene." ], "answer": "B" }, { "id": "ar_lsat_199306_2-G_4_20", "context": "The organisms W, X, Y, and Z respond to the antibiotics ferromycin, ganocyclene, and heptocillin in a manner consistent with the following: Each of the organisms responds to at least one of the antibiotics. No organism responds to all three antibiotics. At least two but not all four of the organisms respond to ferromycin. If W responds to any antibiotic, then X responds to that antibiotic. If an organism responds to ferromycin, then it responds to ganocyclene. Y responds to ferromycin.", "question": "Which one of the following could be true?", "options": [ "A) Exactly one of the organisms responds to ferromycin.", "B) All four of the organisms respond to heptocillin.", "C) At least one of the organisms responds both to ferromycin and to heptocillin.", "D) At least one of the organisms responds neither to ganocyclene nor to heptocillin.", "E) At least one of the organisms responds to ganocyclene but does not respond to ferromycin." ], "answer": "E" }, { "id": "ar_lsat_199306_2-G_4_21", "context": "The organisms W, X, Y, and Z respond to the antibiotics ferromycin, ganocyclene, and heptocillin in a manner consistent with the following: Each of the organisms responds to at least one of the antibiotics. No organism responds to all three antibiotics. At least two but not all four of the organisms respond to ferromycin. If W responds to any antibiotic, then X responds to that antibiotic. If an organism responds to ferromycin, then it responds to ganocyclene. Y responds to ferromycin.", "question": "If X does not respond to ferromycin, then which one of the following must be true?", "options": [ "A) W responds to ganocyclene.", "B) X responds to ganocyclene.", "C) X responds to heptocillin.", "D) Z responds to ferromycin.", "E) Z responds to heptocillin." ], "answer": "D" }, { "id": "ar_lsat_199306_2-G_4_22", "context": "The organisms W, X, Y, and Z respond to the antibiotics ferromycin, ganocyclene, and heptocillin in a manner consistent with the following: Each of the organisms responds to at least one of the antibiotics. No organism responds to all three antibiotics. At least two but not all four of the organisms respond to ferromycin. If W responds to any antibiotic, then X responds to that antibiotic. If an organism responds to ferromycin, then it responds to ganocyclene. Y responds to ferromycin.", "question": "If any of the organisms responds to two of the antibiotics, then which one of the following is true about such an organism?", "options": [ "A) It must respond to ferromycin.", "B) It must respond to ganocyclene.", "C) It must respond to heptocillin.", "D) It cannot respond to ferromycin.", "E) It cannot respond to ganocyclene." ], "answer": "B" }, { "id": "ar_lsat_199306_2-G_4_23", "context": "The organisms W, X, Y, and Z respond to the antibiotics ferromycin, ganocyclene, and heptocillin in a manner consistent with the following: Each of the organisms responds to at least one of the antibiotics. No organism responds to all three antibiotics. At least two but not all four of the organisms respond to ferromycin. If W responds to any antibiotic, then X responds to that antibiotic. If an organism responds to ferromycin, then it responds to ganocyclene. Y responds to ferromycin.", "question": "If none of the organisms responds to heptocillin, then which one of the following must be true?", "options": [ "A) W responds to ferromycin.", "B) X responds to ferromycin.", "C) Z responds to ferromycin.", "D) Exactly three of the organisms respond to ganocyclene.", "E) Exactly four of the organisms respond to ganocyclene." ], "answer": "E" }, { "id": "ar_lsat_199306_2-G_4_24", "context": "The organisms W, X, Y, and Z respond to the antibiotics ferromycin, ganocyclene, and heptocillin in a manner consistent with the following: Each of the organisms responds to at least one of the antibiotics. No organism responds to all three antibiotics. At least two but not all four of the organisms respond to ferromycin. If W responds to any antibiotic, then X responds to that antibiotic. If an organism responds to ferromycin, then it responds to ganocyclene. Y responds to ferromycin.", "question": "If three of the organisms respond to exactly the same set of antibiotics as each other, and if Z does not respond to ferromycin, then each of the following must be true EXCEPT:", "options": [ "A) W responds to ferromycin.", "B) X responds to ganocyclene.", "C) Z responds to ganocyclene.", "D) W responds to exactly the same set of antibiotics as Y.", "E) X responds to exactly the same set of antibiotics as Y." ], "answer": "C" }, { "id": "ar_lsat_199310_3-G_1_1", "context": "A florist is making three corsages from four types of flowers: gardenias, orchids, roses, and violets. Each of the corsages will contain exactly three flowers. The nine flowers used in the corsages must include at least one flower from each of the four types, and at least twice as many roses as orchids must be used. The corsages must also meet the following specifications: Corsage 1 must contain exactly two types of flowers. Corsage 2 must contain at least one rose. Corsage 3 must contain at least one gardenia but no orchids.", "question": "Which one of the following is an acceptable selection of flowers for the three corsages? Corsage 1 Corsage 2 Corsage 3", "options": [ "A) 2 gardenias 1 orchid 1 gardenia 1 rose 1 rose 1 orchid 1 violet 1 violet", "B) 2 orchids 2 orchids 2 gardenias 1 rose 1 rose 1 rose", "C) 2 orchids 3 roses 1 gardenia 1 rose 2 violets", "D) 1 gardenia 1 gardenia 1 gardenia 1 orchid 1 rose 1 rose 1 rose 1 violet 1 violet", "E) 1 orchid 3 violets 3 gardenias 2 roses" ], "answer": "C" }, { "id": "ar_lsat_199310_3-G_1_2", "context": "A florist is making three corsages from four types of flowers: gardenias, orchids, roses, and violets. Each of the corsages will contain exactly three flowers. The nine flowers used in the corsages must include at least one flower from each of the four types, and at least twice as many roses as orchids must be used. The corsages must also meet the following specifications: Corsage 1 must contain exactly two types of flowers. Corsage 2 must contain at least one rose. Corsage 3 must contain at least one gardenia but no orchids.", "question": "The maximum total number of roses that can be used in the three corsages is", "options": [ "A) three", "B) four", "C) five", "D) six", "E) seven" ], "answer": "D" }, { "id": "ar_lsat_199310_3-G_1_3", "context": "A florist is making three corsages from four types of flowers: gardenias, orchids, roses, and violets. Each of the corsages will contain exactly three flowers. The nine flowers used in the corsages must include at least one flower from each of the four types, and at least twice as many roses as orchids must be used. The corsages must also meet the following specifications: Corsage 1 must contain exactly two types of flowers. Corsage 2 must contain at least one rose. Corsage 3 must contain at least one gardenia but no orchids.", "question": "If corsage 1 contains two orchids and one rose, what is the maximum total number of violets that the florist can use in making the three corsages?", "options": [ "A) one", "B) two", "C) three", "D) four", "E) five" ], "answer": "B" }, { "id": "ar_lsat_199310_3-G_1_4", "context": "A florist is making three corsages from four types of flowers: gardenias, orchids, roses, and violets. Each of the corsages will contain exactly three flowers. The nine flowers used in the corsages must include at least one flower from each of the four types, and at least twice as many roses as orchids must be used. The corsages must also meet the following specifications: Corsage 1 must contain exactly two types of flowers. Corsage 2 must contain at least one rose. Corsage 3 must contain at least one gardenia but no orchids.", "question": "If corsage 2 is exactly the same as corsage 3, the nine flowers used in the corsages can include exactly", "options": [ "A) two orchids", "B) three gardenias", "C) three roses", "D) five roses", "E) five violets" ], "answer": "A" }, { "id": "ar_lsat_199310_3-G_1_5", "context": "A florist is making three corsages from four types of flowers: gardenias, orchids, roses, and violets. Each of the corsages will contain exactly three flowers. The nine flowers used in the corsages must include at least one flower from each of the four types, and at least twice as many roses as orchids must be used. The corsages must also meet the following specifications: Corsage 1 must contain exactly two types of flowers. Corsage 2 must contain at least one rose. Corsage 3 must contain at least one gardenia but no orchids.", "question": "If two of the corsages contain at least one orchid each, then the flowers in corsage 2 must include at least", "options": [ "A) one gardenia and one orchid", "B) one gardenia and one rose", "C) one orchid and one rose", "D) one orchid and one violet", "E) one rose and one violet" ], "answer": "C" }, { "id": "ar_lsat_199310_3-G_1_6", "context": "A florist is making three corsages from four types of flowers: gardenias, orchids, roses, and violets. Each of the corsages will contain exactly three flowers. The nine flowers used in the corsages must include at least one flower from each of the four types, and at least twice as many roses as orchids must be used. The corsages must also meet the following specifications: Corsage 1 must contain exactly two types of flowers. Corsage 2 must contain at least one rose. Corsage 3 must contain at least one gardenia but no orchids.", "question": "If the greatest possible number of violets is used in the three corsages, the florist must use", "options": [ "A) exactly one rose and exactly one gardenia", "B) exactly one orchid and exactly four violets", "C) exactly two orchids", "D) exactly two roses", "E) exactly six violets" ], "answer": "D" }, { "id": "ar_lsat_199310_3-G_1_7", "context": "A florist is making three corsages from four types of flowers: gardenias, orchids, roses, and violets. Each of the corsages will contain exactly three flowers. The nine flowers used in the corsages must include at least one flower from each of the four types, and at least twice as many roses as orchids must be used. The corsages must also meet the following specifications: Corsage 1 must contain exactly two types of flowers. Corsage 2 must contain at least one rose. Corsage 3 must contain at least one gardenia but no orchids.", "question": "If corsage 1 contains at least one gardenia and at least one violet, and if corsage 3 contains three different types of flowers, which one of the following could be used to make corsage 2?", "options": [ "A) one rose, one orchid, and one gardenia", "B) one rose and two orchids", "C) one rose and two violets", "D) two roses and one gardenia", "E) two roses and one violet" ], "answer": "A" }, { "id": "ar_lsat_199310_3-G_2_8", "context": "From a group of seven people—J, K, L, M, N, P, and Q—exactly four will be selected to attend a diplomat's retirement dinner. Selection must conform to the following conditions: Either J or K must be selected, but J and K cannot both be selected. Either N or P must be selected, but N and P cannot both be selected. N cannot be selected unless L is selected. Q cannot be selected unless K is selected.", "question": "Which one of the following could be the four people selected to attend the retirement dinner?", "options": [ "A) J, K, M, P", "B) J, L, N, Q", "C) J, M, N, Q", "D) K, M, P, Q", "E) L, M, N, P" ], "answer": "D" }, { "id": "ar_lsat_199310_3-G_2_9", "context": "From a group of seven people—J, K, L, M, N, P, and Q—exactly four will be selected to attend a diplomat's retirement dinner. Selection must conform to the following conditions: Either J or K must be selected, but J and K cannot both be selected. Either N or P must be selected, but N and P cannot both be selected. N cannot be selected unless L is selected. Q cannot be selected unless K is selected.", "question": "Among the people selected to attend the retirement dinner there must be", "options": [ "A) K or Q or both", "B) L or M or both", "C) N or M or both", "D) N or Q or both", "E) P or Q or both" ], "answer": "B" }, { "id": "ar_lsat_199310_3-G_2_10", "context": "From a group of seven people—J, K, L, M, N, P, and Q—exactly four will be selected to attend a diplomat's retirement dinner. Selection must conform to the following conditions: Either J or K must be selected, but J and K cannot both be selected. Either N or P must be selected, but N and P cannot both be selected. N cannot be selected unless L is selected. Q cannot be selected unless K is selected.", "question": "Which one of the following is a pair of people who CANNOT both be selected to attend the retirement dinner?", "options": [ "A) J and N", "B) J and Q", "C) K and L", "D) K and N", "E) N and Q" ], "answer": "B" }, { "id": "ar_lsat_199310_3-G_2_11", "context": "From a group of seven people—J, K, L, M, N, P, and Q—exactly four will be selected to attend a diplomat's retirement dinner. Selection must conform to the following conditions: Either J or K must be selected, but J and K cannot both be selected. Either N or P must be selected, but N and P cannot both be selected. N cannot be selected unless L is selected. Q cannot be selected unless K is selected.", "question": "If M is not selected to attend the retirement dinner, the four people selected to attend must include which one of the following pairs of people?", "options": [ "A) J and Q", "B) K and L", "C) K and P", "D) L and P", "E) N and Q" ], "answer": "B" }, { "id": "ar_lsat_199310_3-G_2_12", "context": "From a group of seven people—J, K, L, M, N, P, and Q—exactly four will be selected to attend a diplomat's retirement dinner. Selection must conform to the following conditions: Either J or K must be selected, but J and K cannot both be selected. Either N or P must be selected, but N and P cannot both be selected. N cannot be selected unless L is selected. Q cannot be selected unless K is selected.", "question": "If P is not selected to attend the retirement dinner, then exactly how many different groups of four are there each of which would be an acceptable selection?", "options": [ "A) one", "B) two", "C) three", "D) four", "E) five" ], "answer": "C" }, { "id": "ar_lsat_199310_3-G_2_13", "context": "From a group of seven people—J, K, L, M, N, P, and Q—exactly four will be selected to attend a diplomat's retirement dinner. Selection must conform to the following conditions: Either J or K must be selected, but J and K cannot both be selected. Either N or P must be selected, but N and P cannot both be selected. N cannot be selected unless L is selected. Q cannot be selected unless K is selected.", "question": "There is only one acceptable group of four that can be selected to attend the retirement dinner if which one of the following pairs of people is selected?", "options": [ "A) J and L", "B) K and M", "C) L and N", "D) L and Q", "E) M and Q" ], "answer": "E" }, { "id": "ar_lsat_199310_3-G_3_14", "context": "Three boys—Karl, Luis, and Miguel—and three girls—Rita, Sarah, and Tura—are giving a dance recital. Three dances—1, 2, and 3—are to be performed. Each dance involves three pairs of children, a boy and a girl partnering each other in each pair, according to the following conditions: Karl partners Sarah in either dance 1 or dance 2. Whoever partners Rita in dance 2 must partner Sarah in dance 3. No two children can partner each other in more than one dance.", "question": "If Sarah partners Luis in dance 3, which one of the following is a complete and accurate list of the girls any one of whom could partner Miguel in dance 1?", "options": [ "A) Rita", "B) Sarah", "C) Tura", "D) Rita, Sarah", "E) Rita, Tura" ], "answer": "D" }, { "id": "ar_lsat_199310_3-G_3_15", "context": "Three boys—Karl, Luis, and Miguel—and three girls—Rita, Sarah, and Tura—are giving a dance recital. Three dances—1, 2, and 3—are to be performed. Each dance involves three pairs of children, a boy and a girl partnering each other in each pair, according to the following conditions: Karl partners Sarah in either dance 1 or dance 2. Whoever partners Rita in dance 2 must partner Sarah in dance 3. No two children can partner each other in more than one dance.", "question": "If Miguel partners Rita in dance 2, which one of the following could be true?", "options": [ "A) Karl partners Tura in dance 1.", "B) Luis partners Sarah in dance 2.", "C) Luis partners Sarah in dance 3.", "D) Miguel partners Sarah in dance 1.", "E) Miguel partners Tura in dance 3." ], "answer": "B" }, { "id": "ar_lsat_199310_3-G_3_16", "context": "Three boys—Karl, Luis, and Miguel—and three girls—Rita, Sarah, and Tura—are giving a dance recital. Three dances—1, 2, and 3—are to be performed. Each dance involves three pairs of children, a boy and a girl partnering each other in each pair, according to the following conditions: Karl partners Sarah in either dance 1 or dance 2. Whoever partners Rita in dance 2 must partner Sarah in dance 3. No two children can partner each other in more than one dance.", "question": "If Miguel partners Sarah in dance 1, which one of the following is a pair of children who must partner each other in dance 3?", "options": [ "A) Karl and Rita", "B) Karl and Tura", "C) Luis and Rita", "D) Luis and Tura", "E) Miguel and Tura" ], "answer": "B" }, { "id": "ar_lsat_199310_3-G_3_17", "context": "Three boys—Karl, Luis, and Miguel—and three girls—Rita, Sarah, and Tura—are giving a dance recital. Three dances—1, 2, and 3—are to be performed. Each dance involves three pairs of children, a boy and a girl partnering each other in each pair, according to the following conditions: Karl partners Sarah in either dance 1 or dance 2. Whoever partners Rita in dance 2 must partner Sarah in dance 3. No two children can partner each other in more than one dance.", "question": "If Luis partners Sarah in dance 2, which one of the following is a pair of children who must partner each other in dance 1?", "options": [ "A) Karl and Rita", "B) Karl and Tura", "C) Luis and Rita", "D) Luis and Tura", "E) Miguel and Rita" ], "answer": "C" }, { "id": "ar_lsat_199310_3-G_3_18", "context": "Three boys—Karl, Luis, and Miguel—and three girls—Rita, Sarah, and Tura—are giving a dance recital. Three dances—1, 2, and 3—are to be performed. Each dance involves three pairs of children, a boy and a girl partnering each other in each pair, according to the following conditions: Karl partners Sarah in either dance 1 or dance 2. Whoever partners Rita in dance 2 must partner Sarah in dance 3. No two children can partner each other in more than one dance.", "question": "If Miguel partners Rita in dance 1, which one of the following must be true?", "options": [ "A) Karl partners Rita in dance 2.", "B) Karl partners Sarah in dance 3.", "C) Karl partners Tura in dance 1.", "D) Luis partners Rita in dance 2.", "E) Luis partners Tura in dance 3." ], "answer": "D" }, { "id": "ar_lsat_199310_3-G_4_19", "context": "Six cities are located within the numbered areas as follows: Within the six-city area there are exactly four hospitals, two jails, and two universities. These eight institutions are located as follows: No institution is in more than one of the cities. None of the cities contains more than one jail, and none contains more than one university. None of the cities contains both a jail and a university. Each jail is located in a city that contains at least one hospital. The universities are located in two cities that do not share a common boundary. City 3 contains a university, and city 6 contains a jail.", "question": "Which one of the following could be true?", "options": [ "A) City 5 contains a university.", "B) City 6 contains a university.", "C) City 2 contains a jail.", "D) City 3 contains a jail.", "E) City 3 contains a hospital." ], "answer": "E" }, { "id": "ar_lsat_199310_3-G_4_20", "context": "Six cities are located within the numbered areas as follows: Within the six-city area there are exactly four hospitals, two jails, and two universities. These eight institutions are located as follows: No institution is in more than one of the cities. None of the cities contains more than one jail, and none contains more than one university. None of the cities contains both a jail and a university. Each jail is located in a city that contains at least one hospital. The universities are located in two cities that do not share a common boundary. City 3 contains a university, and city 6 contains a jail.", "question": "Which one of the following could be true?", "options": [ "A) City 1 contains exactly one hospital.", "B) City 1 contains exactly one university.", "C) City 2 contains exactly one jail.", "D) City 5 contains exactly one university.", "E) City 6 contains exactly one university." ], "answer": "A" }, { "id": "ar_lsat_199310_3-G_4_21", "context": "Six cities are located within the numbered areas as follows: Within the six-city area there are exactly four hospitals, two jails, and two universities. These eight institutions are located as follows: No institution is in more than one of the cities. None of the cities contains more than one jail, and none contains more than one university. None of the cities contains both a jail and a university. Each jail is located in a city that contains at least one hospital. The universities are located in two cities that do not share a common boundary. City 3 contains a university, and city 6 contains a jail.", "question": "Which one of the following is a complete and accurate list of the cities any one of which could contain the jail that is not in city 6?", "options": [ "A) 1, 4", "B) 2, 4", "C) 4, 5", "D) 1, 4, 5", "E) 1, 2, 4, 5" ], "answer": "D" }, { "id": "ar_lsat_199310_3-G_4_22", "context": "Six cities are located within the numbered areas as follows: Within the six-city area there are exactly four hospitals, two jails, and two universities. These eight institutions are located as follows: No institution is in more than one of the cities. None of the cities contains more than one jail, and none contains more than one university. None of the cities contains both a jail and a university. Each jail is located in a city that contains at least one hospital. The universities are located in two cities that do not share a common boundary. City 3 contains a university, and city 6 contains a jail.", "question": "If each of the six cities contains at least one of the eight institutions, then which one of the following must be true?", "options": [ "A) There is a jail in city 1.", "B) There is a hospital in city 2.", "C) There is a hospital in city 3.", "D) There is a hospital in city 4.", "E) There is a jail in city 4." ], "answer": "D" }, { "id": "ar_lsat_199310_3-G_4_23", "context": "Six cities are located within the numbered areas as follows: Within the six-city area there are exactly four hospitals, two jails, and two universities. These eight institutions are located as follows: No institution is in more than one of the cities. None of the cities contains more than one jail, and none contains more than one university. None of the cities contains both a jail and a university. Each jail is located in a city that contains at least one hospital. The universities are located in two cities that do not share a common boundary. City 3 contains a university, and city 6 contains a jail.", "question": "In which one of the following cities must there be fewer than three hospitals?", "options": [ "A) 1", "B) 2", "C) 4", "D) 5", "E) 6" ], "answer": "B" }, { "id": "ar_lsat_199310_3-G_4_24", "context": "Six cities are located within the numbered areas as follows: Within the six-city area there are exactly four hospitals, two jails, and two universities. These eight institutions are located as follows: No institution is in more than one of the cities. None of the cities contains more than one jail, and none contains more than one university. None of the cities contains both a jail and a university. Each jail is located in a city that contains at least one hospital. The universities are located in two cities that do not share a common boundary. City 3 contains a university, and city 6 contains a jail.", "question": "If one of the cities contains exactly two hospitals and exactly one university, then which one of the following lists three cities that might, among them, contain no hospital?", "options": [ "A) 1, 3, 5", "B) 1, 4, 5", "C) 2, 3, 5", "D) 2, 4, 6", "E) 4, 5, 6" ], "answer": "A" }, { "id": "ar_lsat_199402_2-G_1_1", "context": "On the basis of an examination, nine students—Fred, Glen, Hilary, Ida, Jan, Kathy, Laura, Mike, and Nick—are each placed in one of three classes. The three highest scorers are placed in the level 1 class; the three lowest scorers are placed in the level 3 class. The remaining three are placed in the level 2 class. Each class has exactly three students. Ida scores higher than Glen. Glen scores higher than both Jan and Kathy. Jan scores higher than Mike. Mike scores higher than Hilary. Hilary scores higher than Nick. Kathy scores higher than both Fred and Laura.", "question": "How many different combinations of students could form the level 1 class?", "options": [ "A) one", "B) two", "C) three", "D) four", "E) six" ], "answer": "B" }, { "id": "ar_lsat_199402_2-G_1_2", "context": "On the basis of an examination, nine students—Fred, Glen, Hilary, Ida, Jan, Kathy, Laura, Mike, and Nick—are each placed in one of three classes. The three highest scorers are placed in the level 1 class; the three lowest scorers are placed in the level 3 class. The remaining three are placed in the level 2 class. Each class has exactly three students. Ida scores higher than Glen. Glen scores higher than both Jan and Kathy. Jan scores higher than Mike. Mike scores higher than Hilary. Hilary scores higher than Nick. Kathy scores higher than both Fred and Laura.", "question": "Which one of the following students could be in the level 2 class but cannot be in the level 3 class?", "options": [ "A) Fred", "B) Glen", "C) Jan", "D) Kathy", "E) Nick" ], "answer": "C" }, { "id": "ar_lsat_199402_2-G_1_3", "context": "On the basis of an examination, nine students—Fred, Glen, Hilary, Ida, Jan, Kathy, Laura, Mike, and Nick—are each placed in one of three classes. The three highest scorers are placed in the level 1 class; the three lowest scorers are placed in the level 3 class. The remaining three are placed in the level 2 class. Each class has exactly three students. Ida scores higher than Glen. Glen scores higher than both Jan and Kathy. Jan scores higher than Mike. Mike scores higher than Hilary. Hilary scores higher than Nick. Kathy scores higher than both Fred and Laura.", "question": "Which one of the following students could be placed in any one of the three classes?", "options": [ "A) Fred", "B) Jan", "C) Kathy", "D) Laura", "E) Mike" ], "answer": "C" }, { "id": "ar_lsat_199402_2-G_1_4", "context": "On the basis of an examination, nine students—Fred, Glen, Hilary, Ida, Jan, Kathy, Laura, Mike, and Nick—are each placed in one of three classes. The three highest scorers are placed in the level 1 class; the three lowest scorers are placed in the level 3 class. The remaining three are placed in the level 2 class. Each class has exactly three students. Ida scores higher than Glen. Glen scores higher than both Jan and Kathy. Jan scores higher than Mike. Mike scores higher than Hilary. Hilary scores higher than Nick. Kathy scores higher than both Fred and Laura.", "question": "The composition of each class can be completely determined if which one of the following pairs of students is known to be in the level 2 class?", "options": [ "A) Fred and Kathy", "B) Fred and Mike", "C) Hilary and Jan", "D) Kathy and Laura", "E) Laura and Mike" ], "answer": "C" }, { "id": "ar_lsat_199402_2-G_1_5", "context": "On the basis of an examination, nine students—Fred, Glen, Hilary, Ida, Jan, Kathy, Laura, Mike, and Nick—are each placed in one of three classes. The three highest scorers are placed in the level 1 class; the three lowest scorers are placed in the level 3 class. The remaining three are placed in the level 2 class. Each class has exactly three students. Ida scores higher than Glen. Glen scores higher than both Jan and Kathy. Jan scores higher than Mike. Mike scores higher than Hilary. Hilary scores higher than Nick. Kathy scores higher than both Fred and Laura.", "question": "Which one of the following pairs of students cannot be in the same class as Fred?", "options": [ "A) Hilary and Nick", "B) Jan and Laura", "C) Kathy and Laura", "D) Jan and Mike", "E) Laura and Mike" ], "answer": "E" }, { "id": "ar_lsat_199402_2-G_2_6", "context": "Six reviewers—Frank, George, Hilda, Jackie, Karl, and Lena—will review four movies—Mystery, Retreat, Seasonings, and Wolves—according to the following conditions: Each reviewer reviews exactly one movie, and each movie is reviewed by at least one of the six reviewers. Hilda reviews the same movie as Frank. Lena reviews the same movie as exactly one other reviewer. George reviews Mystery. Jackie reviews either Mystery or else Wolves. Hilda does not review Wolves.", "question": "If Lena reviews Seasonings, which one of the following must be true?", "options": [ "A) Hilda reviews Retreat.", "B) Jackie reviews Seasonings.", "C) Karl reviews Mystery.", "D) Karl reviews Retreat.", "E) Karl reviews Wolves." ], "answer": "A" }, { "id": "ar_lsat_199402_2-G_2_7", "context": "Six reviewers—Frank, George, Hilda, Jackie, Karl, and Lena—will review four movies—Mystery, Retreat, Seasonings, and Wolves—according to the following conditions: Each reviewer reviews exactly one movie, and each movie is reviewed by at least one of the six reviewers. Hilda reviews the same movie as Frank. Lena reviews the same movie as exactly one other reviewer. George reviews Mystery. Jackie reviews either Mystery or else Wolves. Hilda does not review Wolves.", "question": "If Karl does not review Seasonings, which one of the following must be true?", "options": [ "A) Lena reviews Mystery.", "B) Lena reviews Retreat.", "C) Lena reviews Seasonings.", "D) Frank and Hilda review Retreat.", "E) Frank and Hilda review Seasonings." ], "answer": "E" }, { "id": "ar_lsat_199402_2-G_2_8", "context": "Six reviewers—Frank, George, Hilda, Jackie, Karl, and Lena—will review four movies—Mystery, Retreat, Seasonings, and Wolves—according to the following conditions: Each reviewer reviews exactly one movie, and each movie is reviewed by at least one of the six reviewers. Hilda reviews the same movie as Frank. Lena reviews the same movie as exactly one other reviewer. George reviews Mystery. Jackie reviews either Mystery or else Wolves. Hilda does not review Wolves.", "question": "Which one of the following is a complete and accurate list of the movies each of which could be the movie that Lena reviews?", "options": [ "A) Mystery, Retreat", "B) Retreat, Seasonings", "C) Mystery, Seasonings, Wolves", "D) Retreat, Seasonings, Wolves", "E) Mystery, Retreat, Seasonings, Wolves" ], "answer": "E" }, { "id": "ar_lsat_199402_2-G_2_9", "context": "Six reviewers—Frank, George, Hilda, Jackie, Karl, and Lena—will review four movies—Mystery, Retreat, Seasonings, and Wolves—according to the following conditions: Each reviewer reviews exactly one movie, and each movie is reviewed by at least one of the six reviewers. Hilda reviews the same movie as Frank. Lena reviews the same movie as exactly one other reviewer. George reviews Mystery. Jackie reviews either Mystery or else Wolves. Hilda does not review Wolves.", "question": "Which one of the following can be true?", "options": [ "A) Frank and George review Mystery.", "B) Frank and Lena review Wolves.", "C) George and Jackie review Mystery.", "D) Karl reviews Wolves and Lena reviews Mystery.", "E) Lena reviews Retreat and Frank reviews Seasonings." ], "answer": "E" }, { "id": "ar_lsat_199402_2-G_2_10", "context": "Six reviewers—Frank, George, Hilda, Jackie, Karl, and Lena—will review four movies—Mystery, Retreat, Seasonings, and Wolves—according to the following conditions: Each reviewer reviews exactly one movie, and each movie is reviewed by at least one of the six reviewers. Hilda reviews the same movie as Frank. Lena reviews the same movie as exactly one other reviewer. George reviews Mystery. Jackie reviews either Mystery or else Wolves. Hilda does not review Wolves.", "question": "Lena can review any of the following EXCEPT", "options": [ "A) Mystery with George", "B) Mystery with Karl", "C) Retreat with Karl", "D) Seasonings with Karl", "E) Wolves with Jackie" ], "answer": "B" }, { "id": "ar_lsat_199402_2-G_2_11", "context": "Six reviewers—Frank, George, Hilda, Jackie, Karl, and Lena—will review four movies—Mystery, Retreat, Seasonings, and Wolves—according to the following conditions: Each reviewer reviews exactly one movie, and each movie is reviewed by at least one of the six reviewers. Hilda reviews the same movie as Frank. Lena reviews the same movie as exactly one other reviewer. George reviews Mystery. Jackie reviews either Mystery or else Wolves. Hilda does not review Wolves.", "question": "If Karl reviews the same movie as exactly one other reviewer, which one of the following is a complete and accurate list of the movies any one of which could be the movie that these two reviewers review?", "options": [ "A) Mystery, Retreat", "B) Mystery, Seasonings", "C) Retreat, Seasonings", "D) Mystery, Seasonings, Wolves", "E) Retreat, Seasonings, Wolves" ], "answer": "C" }, { "id": "ar_lsat_199402_2-G_2_12", "context": "Six reviewers—Frank, George, Hilda, Jackie, Karl, and Lena—will review four movies—Mystery, Retreat, Seasonings, and Wolves—according to the following conditions: Each reviewer reviews exactly one movie, and each movie is reviewed by at least one of the six reviewers. Hilda reviews the same movie as Frank. Lena reviews the same movie as exactly one other reviewer. George reviews Mystery. Jackie reviews either Mystery or else Wolves. Hilda does not review Wolves.", "question": "Which one of the following is an acceptable assignment of reviewers to movies? Mystery Retreat Seasonings Wolves", "options": [ "A) George Frank, Hilda Jackie, Lena Karl", "B) George Frank, Hilda Karl, Lena Jackie", "C) George Karl, Lena Jackie Frank, Hilda", "D) George, Karl Frank, Hilda Lena Jackie", "E) Jackie George, Lena Frank, Hilda Karl" ], "answer": "B" }, { "id": "ar_lsat_199402_2-G_3_13", "context": "In a game, \"words\" (real or nonsensical) consist of any combination of at least four letters of the English alphabet. Any \"sentence\" consists of exactly five words and satisfies the following conditions: The five words are written from left to right on a single line in alphabetical order. The sentence is started by any word, and each successive word is formed by applying exactly one of three operations to the word immediately to its left: delete one letter; add one letter; replace one letter with another letter. At most three of the five words begin with the same letter as one another. Except for the leftmost word, each word is formed by a different operation from that which formed the word immediately to its left.", "question": "Which one of the following could be a sentence in the word game?", "options": [ "A) bzeak bleak leak peak pea", "B) crbek creek reek seek sxeek", "C) dteam gleam glean lean mean", "D) feed freed reed seed seeg", "E) food fool fools fopls opls" ], "answer": "B" }, { "id": "ar_lsat_199402_2-G_3_14", "context": "In a game, \"words\" (real or nonsensical) consist of any combination of at least four letters of the English alphabet. Any \"sentence\" consists of exactly five words and satisfies the following conditions: The five words are written from left to right on a single line in alphabetical order. The sentence is started by any word, and each successive word is formed by applying exactly one of three operations to the word immediately to its left: delete one letter; add one letter; replace one letter with another letter. At most three of the five words begin with the same letter as one another. Except for the leftmost word, each word is formed by a different operation from that which formed the word immediately to its left.", "question": "The last letter of the alphabet that the first word of a sentence in the word game can begin with is", "options": [ "A) t", "B) w", "C) x", "D) y", "E) z" ], "answer": "D" }, { "id": "ar_lsat_199402_2-G_3_15", "context": "In a game, \"words\" (real or nonsensical) consist of any combination of at least four letters of the English alphabet. Any \"sentence\" consists of exactly five words and satisfies the following conditions: The five words are written from left to right on a single line in alphabetical order. The sentence is started by any word, and each successive word is formed by applying exactly one of three operations to the word immediately to its left: delete one letter; add one letter; replace one letter with another letter. At most three of the five words begin with the same letter as one another. Except for the leftmost word, each word is formed by a different operation from that which formed the word immediately to its left.", "question": "If the first word in a sentence is \"blender\" and the third word is \"slender\", then the second word can be", "options": [ "A) bender", "B) gender", "C) lender", "D) sender", "E) tender" ], "answer": "C" }, { "id": "ar_lsat_199402_2-G_3_16", "context": "In a game, \"words\" (real or nonsensical) consist of any combination of at least four letters of the English alphabet. Any \"sentence\" consists of exactly five words and satisfies the following conditions: The five words are written from left to right on a single line in alphabetical order. The sentence is started by any word, and each successive word is formed by applying exactly one of three operations to the word immediately to its left: delete one letter; add one letter; replace one letter with another letter. At most three of the five words begin with the same letter as one another. Except for the leftmost word, each word is formed by a different operation from that which formed the word immediately to its left.", "question": "If the first word in a sentence consists of nine letters, then the minimum number of letters that the fourth word can contain is", "options": [ "A) four", "B) five", "C) six", "D) seven", "E) eight" ], "answer": "D" }, { "id": "ar_lsat_199402_2-G_3_17", "context": "In a game, \"words\" (real or nonsensical) consist of any combination of at least four letters of the English alphabet. Any \"sentence\" consists of exactly five words and satisfies the following conditions: The five words are written from left to right on a single line in alphabetical order. The sentence is started by any word, and each successive word is formed by applying exactly one of three operations to the word immediately to its left: delete one letter; add one letter; replace one letter with another letter. At most three of the five words begin with the same letter as one another. Except for the leftmost word, each word is formed by a different operation from that which formed the word immediately to its left.", "question": "If \"clean\" is the first word in a sentence and \"learn\" is another word in the sentence, then which one of the following is a complete and accurate list of the positions each of which could be the position in which \"learn\" occurs in the sentence?", "options": [ "A) second", "B) third", "C) fourth, fifth", "D) second, third, fourth", "E) third, fourth, fifth" ], "answer": "E" }, { "id": "ar_lsat_199402_2-G_3_18", "context": "In a game, \"words\" (real or nonsensical) consist of any combination of at least four letters of the English alphabet. Any \"sentence\" consists of exactly five words and satisfies the following conditions: The five words are written from left to right on a single line in alphabetical order. The sentence is started by any word, and each successive word is formed by applying exactly one of three operations to the word immediately to its left: delete one letter; add one letter; replace one letter with another letter. At most three of the five words begin with the same letter as one another. Except for the leftmost word, each word is formed by a different operation from that which formed the word immediately to its left.", "question": "If the first word in a sentence consists of four letters, then the maximum number of letters that the fifth word in this sentence could contain is", "options": [ "A) four", "B) five", "C) six", "D) seven", "E) eight" ], "answer": "C" }, { "id": "ar_lsat_199402_2-G_4_19", "context": "A soloist will play six different guitar concertos, exactly one each Sunday for six consecutive weeks. Two concertos will be selected from among three concertos by Giuliani—H, J, and K; two from among four concertos by Rodrigo—M, N, O, and P; and two from among three concertos by Vivaldi—X, Y, and Z. The following conditions apply without exception: If N is selected, then J is also selected. If M is selected, then neither J nor O can be selected. If X is selected, then neither Z nor P can be selected. If both J and O are selected, then J is played at some time before O. X cannot be played on the fifth Sunday unless one of Rodrigo's concertos is played on the first Sunday.", "question": "Which one of the following is an acceptable selection of concertos that the soloist could play on the first through the sixth Sunday?", "options": [ "A) H Z M N Y K", "B) K J Y O Z N", "C) K Y P J Z M", "D) P Y J H X O", "E) X N K O J Z" ], "answer": "B" }, { "id": "ar_lsat_199402_2-G_4_20", "context": "A soloist will play six different guitar concertos, exactly one each Sunday for six consecutive weeks. Two concertos will be selected from among three concertos by Giuliani—H, J, and K; two from among four concertos by Rodrigo—M, N, O, and P; and two from among three concertos by Vivaldi—X, Y, and Z. The following conditions apply without exception: If N is selected, then J is also selected. If M is selected, then neither J nor O can be selected. If X is selected, then neither Z nor P can be selected. If both J and O are selected, then J is played at some time before O. X cannot be played on the fifth Sunday unless one of Rodrigo's concertos is played on the first Sunday.", "question": "If the six concertos to be played are J, K, N, O, Y, and Z and if N is to be played on the first Sunday, then which one of the following concertos CANNOT be played on the second Sunday?", "options": [ "A) J", "B) K", "C) O", "D) Y", "E) Z" ], "answer": "C" }, { "id": "ar_lsat_199402_2-G_4_21", "context": "A soloist will play six different guitar concertos, exactly one each Sunday for six consecutive weeks. Two concertos will be selected from among three concertos by Giuliani—H, J, and K; two from among four concertos by Rodrigo—M, N, O, and P; and two from among three concertos by Vivaldi—X, Y, and Z. The following conditions apply without exception: If N is selected, then J is also selected. If M is selected, then neither J nor O can be selected. If X is selected, then neither Z nor P can be selected. If both J and O are selected, then J is played at some time before O. X cannot be played on the fifth Sunday unless one of Rodrigo's concertos is played on the first Sunday.", "question": "If J, O, and Y are the first three concertos to be played, not necessarily in the order given, which one of the following is a concerto that CANNOT be played on the fifth Sunday?", "options": [ "A) H", "B) K", "C) N", "D) P", "E) X" ], "answer": "E" }, { "id": "ar_lsat_199402_2-G_4_22", "context": "A soloist will play six different guitar concertos, exactly one each Sunday for six consecutive weeks. Two concertos will be selected from among three concertos by Giuliani—H, J, and K; two from among four concertos by Rodrigo—M, N, O, and P; and two from among three concertos by Vivaldi—X, Y, and Z. The following conditions apply without exception: If N is selected, then J is also selected. If M is selected, then neither J nor O can be selected. If X is selected, then neither Z nor P can be selected. If both J and O are selected, then J is played at some time before O. X cannot be played on the fifth Sunday unless one of Rodrigo's concertos is played on the first Sunday.", "question": "If O is selected for the first Sunday, which one of the following is a concerto that must also be selected?", "options": [ "A) J", "B) K", "C) M", "D) N", "E) X" ], "answer": "B" }, { "id": "ar_lsat_199402_2-G_4_23", "context": "A soloist will play six different guitar concertos, exactly one each Sunday for six consecutive weeks. Two concertos will be selected from among three concertos by Giuliani—H, J, and K; two from among four concertos by Rodrigo—M, N, O, and P; and two from among three concertos by Vivaldi—X, Y, and Z. The following conditions apply without exception: If N is selected, then J is also selected. If M is selected, then neither J nor O can be selected. If X is selected, then neither Z nor P can be selected. If both J and O are selected, then J is played at some time before O. X cannot be played on the fifth Sunday unless one of Rodrigo's concertos is played on the first Sunday.", "question": "Which one of the following is a concerto that must be selected?", "options": [ "A) J", "B) K", "C) O", "D) Y", "E) Z" ], "answer": "D" }, { "id": "ar_lsat_199402_2-G_4_24", "context": "A soloist will play six different guitar concertos, exactly one each Sunday for six consecutive weeks. Two concertos will be selected from among three concertos by Giuliani—H, J, and K; two from among four concertos by Rodrigo—M, N, O, and P; and two from among three concertos by Vivaldi—X, Y, and Z. The following conditions apply without exception: If N is selected, then J is also selected. If M is selected, then neither J nor O can be selected. If X is selected, then neither Z nor P can be selected. If both J and O are selected, then J is played at some time before O. X cannot be played on the fifth Sunday unless one of Rodrigo's concertos is played on the first Sunday.", "question": "Which one of the following is a concerto that CANNOT be selected together with N?", "options": [ "A) M", "B) O", "C) P", "D) X", "E) Z" ], "answer": "A" }, { "id": "ar_lsat_199406_1-G_1_1", "context": "Eight camp counselors—Fran, George, Henry, Joan, Kathy, Lewis, Nathan, and Olga—must each be assigned to supervise exactly one of three activities—swimming, tennis, and volleyball. The assignment of counselors must conform to the following conditions: Each activity is supervised by at least two, but not more than three, of the eight counselors. Henry supervises swimming. Neither Kathy nor Olga supervises tennis. Neither Kathy nor Nathan supervises the same activity as Joan. If George supervises swimming, both Nathan and Olga supervise volleyball.", "question": "Which one of the following is an acceptable assignment of the counselors to the activities?", "options": [ "A) Swimming: Fran, George, Henry; Tennis: Joan, Lewis; Volleyball: Kathy, Nathan, Olga", "B) Swimming: George, Henry, Olga; Tennis: Fran, Joan, Lewis; Volleyball: Kathy, Nathan", "C) Swimming: Henry; Tennis: Fran, George, Joan, Lewis; Volleyball: Kathy, Nathan, Olga", "D) Swimming: Henry, Joan, Kathy; Tennis: George, Nathan; Volleyball: Fran, Lewis, Olga", "E) Swimming: Henry, Nathan; Tennis: Fran, Kathy, Lewis; Volleyball: George, Joan, Olga" ], "answer": "A" }, { "id": "ar_lsat_199406_1-G_1_2", "context": "Eight camp counselors—Fran, George, Henry, Joan, Kathy, Lewis, Nathan, and Olga—must each be assigned to supervise exactly one of three activities—swimming, tennis, and volleyball. The assignment of counselors must conform to the following conditions: Each activity is supervised by at least two, but not more than three, of the eight counselors. Henry supervises swimming. Neither Kathy nor Olga supervises tennis. Neither Kathy nor Nathan supervises the same activity as Joan. If George supervises swimming, both Nathan and Olga supervise volleyball.", "question": "Which one of the following is a pair of counselors who could be two of three counselors assigned to supervise swimming?", "options": [ "A) George and Nathan", "B) George and Olga", "C) Joan and Kathy", "D) Joan and Nathan", "E) Joan and Olga" ], "answer": "E" }, { "id": "ar_lsat_199406_1-G_1_3", "context": "Eight camp counselors—Fran, George, Henry, Joan, Kathy, Lewis, Nathan, and Olga—must each be assigned to supervise exactly one of three activities—swimming, tennis, and volleyball. The assignment of counselors must conform to the following conditions: Each activity is supervised by at least two, but not more than three, of the eight counselors. Henry supervises swimming. Neither Kathy nor Olga supervises tennis. Neither Kathy nor Nathan supervises the same activity as Joan. If George supervises swimming, both Nathan and Olga supervise volleyball.", "question": "Which one of the following is a pair of counselors who could together be assigned to supervise tennis?", "options": [ "A) Fran and Kathy", "B) George and Nathan", "C) Henry and Lewis", "D) Joan and Nathan", "E) Joan and Olga" ], "answer": "B" }, { "id": "ar_lsat_199406_1-G_1_4", "context": "Eight camp counselors—Fran, George, Henry, Joan, Kathy, Lewis, Nathan, and Olga—must each be assigned to supervise exactly one of three activities—swimming, tennis, and volleyball. The assignment of counselors must conform to the following conditions: Each activity is supervised by at least two, but not more than three, of the eight counselors. Henry supervises swimming. Neither Kathy nor Olga supervises tennis. Neither Kathy nor Nathan supervises the same activity as Joan. If George supervises swimming, both Nathan and Olga supervise volleyball.", "question": "If George and Kathy are two of three counselors assigned to supervise swimming, which one of the following could be true of the assignment?", "options": [ "A) Fran supervises swimming.", "B) Henry supervises tennis.", "C) Joan supervises volleyball.", "D) Lewis supervises volleyball.", "E) Nathan supervises tennis." ], "answer": "D" }, { "id": "ar_lsat_199406_1-G_1_5", "context": "Eight camp counselors—Fran, George, Henry, Joan, Kathy, Lewis, Nathan, and Olga—must each be assigned to supervise exactly one of three activities—swimming, tennis, and volleyball. The assignment of counselors must conform to the following conditions: Each activity is supervised by at least two, but not more than three, of the eight counselors. Henry supervises swimming. Neither Kathy nor Olga supervises tennis. Neither Kathy nor Nathan supervises the same activity as Joan. If George supervises swimming, both Nathan and Olga supervise volleyball.", "question": "If Fran and Lewis are two of three counselors assigned to supervise swimming, which one of the following must be true of the assignment?", "options": [ "A) George supervises volleyball.", "B) Henry supervises volleyball.", "C) Joan supervises tennis.", "D) Kathy supervises swimming.", "E) Nathan supervises tennis." ], "answer": "C" }, { "id": "ar_lsat_199406_1-G_1_6", "context": "Eight camp counselors—Fran, George, Henry, Joan, Kathy, Lewis, Nathan, and Olga—must each be assigned to supervise exactly one of three activities—swimming, tennis, and volleyball. The assignment of counselors must conform to the following conditions: Each activity is supervised by at least two, but not more than three, of the eight counselors. Henry supervises swimming. Neither Kathy nor Olga supervises tennis. Neither Kathy nor Nathan supervises the same activity as Joan. If George supervises swimming, both Nathan and Olga supervise volleyball.", "question": "If Joan is assigned to supervise the same activity as Olga, which one of the following CANNOT be true of the assignment?", "options": [ "A) Fran supervises swimming.", "B) George supervises swimming.", "C) Kathy supervises volleyball.", "D) Lewis supervises volleyball.", "E) Nathan supervises tennis." ], "answer": "B" }, { "id": "ar_lsat_199406_1-G_2_7", "context": "A fire chief is determining the work schedules of five firefighters: Fuentes, Graber, Howell, Iman, and Jackson. The schedule must meet the following conditions: Except for Saturday and Sunday, when none of them works, exactly one of the firefighters works each day. None of the firefighters can work more than two days per week. No firefighter works on two consecutive days. Fuentes never works later in the week than Jackson. If Howell works, then Graber must work on the following day.", "question": "Which one of the following CANNOT be a Monday-to-Friday work schedule?", "options": [ "A) Fuentes, Iman, Fuentes, Jackson, Iman", "B) Fuentes, Jackson, Howell, Graber, Fuentes", "C) Graber, Fuentes, Graber, Fuentes, Jackson", "D) Graber, Howell, Graber, Fuentes, Jackson", "E) Howell, Graber, Iman, Graber, Iman" ], "answer": "B" }, { "id": "ar_lsat_199406_1-G_2_8", "context": "A fire chief is determining the work schedules of five firefighters: Fuentes, Graber, Howell, Iman, and Jackson. The schedule must meet the following conditions: Except for Saturday and Sunday, when none of them works, exactly one of the firefighters works each day. None of the firefighters can work more than two days per week. No firefighter works on two consecutive days. Fuentes never works later in the week than Jackson. If Howell works, then Graber must work on the following day.", "question": "If each firefighter is required to have at least two consecutive days off during the Monday-to-Friday workweek, which one of the following could be a possible work schedule?", "options": [ "A) Howell, Graber, Howell, Graber, Iman", "B) Howell, Howell, Graber, Fuentes, Iman", "C) Iman, Fuentes, Jackson, Iman, Iman", "D) Fuentes, Howell, Graber, Fuentes, Jackson", "E) Jackson, Howell, Graber, Iman, Fuentes" ], "answer": "D" }, { "id": "ar_lsat_199406_1-G_2_9", "context": "A fire chief is determining the work schedules of five firefighters: Fuentes, Graber, Howell, Iman, and Jackson. The schedule must meet the following conditions: Except for Saturday and Sunday, when none of them works, exactly one of the firefighters works each day. None of the firefighters can work more than two days per week. No firefighter works on two consecutive days. Fuentes never works later in the week than Jackson. If Howell works, then Graber must work on the following day.", "question": "If both Fuentes and Jackson work during a week, which one of the following statements CANNOT be true?", "options": [ "A) Fuentes works on Monday and Wednesday.", "B) Jackson works on Monday and Wednesday.", "C) Fuentes works on Tuesday and Thursday.", "D) Jackson works on Tuesday and Thursday.", "E) Jackson works on Wednesday and Friday." ], "answer": "B" }, { "id": "ar_lsat_199406_1-G_2_10", "context": "A fire chief is determining the work schedules of five firefighters: Fuentes, Graber, Howell, Iman, and Jackson. The schedule must meet the following conditions: Except for Saturday and Sunday, when none of them works, exactly one of the firefighters works each day. None of the firefighters can work more than two days per week. No firefighter works on two consecutive days. Fuentes never works later in the week than Jackson. If Howell works, then Graber must work on the following day.", "question": "If Fuentes works two days during the week and Jackson works on Thursday, which one of the following statements could be true?", "options": [ "A) Fuentes works on Tuesday.", "B) Graber works on Tuesday.", "C) Howell works on Tuesday.", "D) Graber works on Wednesday.", "E) Howell works on Wednesday." ], "answer": "B" }, { "id": "ar_lsat_199406_1-G_2_11", "context": "A fire chief is determining the work schedules of five firefighters: Fuentes, Graber, Howell, Iman, and Jackson. The schedule must meet the following conditions: Except for Saturday and Sunday, when none of them works, exactly one of the firefighters works each day. None of the firefighters can work more than two days per week. No firefighter works on two consecutive days. Fuentes never works later in the week than Jackson. If Howell works, then Graber must work on the following day.", "question": "If Graber does not work during the week, which one of the following statements must be true?", "options": [ "A) Fuentes works exactly one day during the week.", "B) Fuentes works exactly two days during the week.", "C) Iman works exactly one day during the week.", "D) Iman works exactly two days during the week.", "E) Jackson works exactly one day during the week." ], "answer": "D" }, { "id": "ar_lsat_199406_1-G_3_12", "context": "A housing committee will consist of exactly five representatives, one of whom will be its chairperson. The representatives will be selected from among a group of five tenants—F, G, J, K, and M—and a group of four homeowners—P, Q, R, and S. The following conditions must be met: The committee must include at least two representatives from each group. The chairperson must be a representative belonging to the group from which exactly two representatives are selected. If F is selected, Q must be selected. If G is selected, K must be selected. If either J or M is selected, the other must also be selected. M and P cannot both be selected.", "question": "Which one of the following is an acceptable selection of representatives for the committee?", "options": [ "A) F, G, Q, R, S", "B) F, J, K, P, Q", "C) F, P, Q, R, S", "D) J, K, M, Q, S", "E) J, M, P, Q, S" ], "answer": "D" }, { "id": "ar_lsat_199406_1-G_3_13", "context": "A housing committee will consist of exactly five representatives, one of whom will be its chairperson. The representatives will be selected from among a group of five tenants—F, G, J, K, and M—and a group of four homeowners—P, Q, R, and S. The following conditions must be met: The committee must include at least two representatives from each group. The chairperson must be a representative belonging to the group from which exactly two representatives are selected. If F is selected, Q must be selected. If G is selected, K must be selected. If either J or M is selected, the other must also be selected. M and P cannot both be selected.", "question": "Which one of the following lists three representatives who could be selected together for the committee?", "options": [ "A) F, G, J", "B) F, G, M", "C) F, J, M", "D) G, J, K", "E) G, J, M" ], "answer": "C" }, { "id": "ar_lsat_199406_1-G_3_14", "context": "A housing committee will consist of exactly five representatives, one of whom will be its chairperson. The representatives will be selected from among a group of five tenants—F, G, J, K, and M—and a group of four homeowners—P, Q, R, and S. The following conditions must be met: The committee must include at least two representatives from each group. The chairperson must be a representative belonging to the group from which exactly two representatives are selected. If F is selected, Q must be selected. If G is selected, K must be selected. If either J or M is selected, the other must also be selected. M and P cannot both be selected.", "question": "If M is the chairperson of the committee, which one of the following is among the people who must also be on the committee?", "options": [ "A) F", "B) G", "C) K", "D) P", "E) R" ], "answer": "E" }, { "id": "ar_lsat_199406_1-G_3_15", "context": "A housing committee will consist of exactly five representatives, one of whom will be its chairperson. The representatives will be selected from among a group of five tenants—F, G, J, K, and M—and a group of four homeowners—P, Q, R, and S. The following conditions must be met: The committee must include at least two representatives from each group. The chairperson must be a representative belonging to the group from which exactly two representatives are selected. If F is selected, Q must be selected. If G is selected, K must be selected. If either J or M is selected, the other must also be selected. M and P cannot both be selected.", "question": "If F is the chairperson of the committee, which one of the following is among the people who must also be on the committee?", "options": [ "A) G", "B) K", "C) P", "D) R", "E) S" ], "answer": "B" }, { "id": "ar_lsat_199406_1-G_3_16", "context": "A housing committee will consist of exactly five representatives, one of whom will be its chairperson. The representatives will be selected from among a group of five tenants—F, G, J, K, and M—and a group of four homeowners—P, Q, R, and S. The following conditions must be met: The committee must include at least two representatives from each group. The chairperson must be a representative belonging to the group from which exactly two representatives are selected. If F is selected, Q must be selected. If G is selected, K must be selected. If either J or M is selected, the other must also be selected. M and P cannot both be selected.", "question": "If F is selected, any one of the following people could be the chairperson of the committee EXCEPT:", "options": [ "A) G", "B) K", "C) P", "D) Q", "E) S" ], "answer": "A" }, { "id": "ar_lsat_199406_1-G_3_17", "context": "A housing committee will consist of exactly five representatives, one of whom will be its chairperson. The representatives will be selected from among a group of five tenants—F, G, J, K, and M—and a group of four homeowners—P, Q, R, and S. The following conditions must be met: The committee must include at least two representatives from each group. The chairperson must be a representative belonging to the group from which exactly two representatives are selected. If F is selected, Q must be selected. If G is selected, K must be selected. If either J or M is selected, the other must also be selected. M and P cannot both be selected.", "question": "If neither F nor K is selected for the committee, which one of the following can be true?", "options": [ "A) G is selected.", "B) P is selected.", "C) J is the chairperson.", "D) Q is the chairperson.", "E) S is the chairperson." ], "answer": "C" }, { "id": "ar_lsat_199406_1-G_3_18", "context": "A housing committee will consist of exactly five representatives, one of whom will be its chairperson. The representatives will be selected from among a group of five tenants—F, G, J, K, and M—and a group of four homeowners—P, Q, R, and S. The following conditions must be met: The committee must include at least two representatives from each group. The chairperson must be a representative belonging to the group from which exactly two representatives are selected. If F is selected, Q must be selected. If G is selected, K must be selected. If either J or M is selected, the other must also be selected. M and P cannot both be selected.", "question": "If the chairperson of the committee is to be a homeowner, which one of the following must be true?", "options": [ "A) If G is selected, Q is also selected.", "B) If G is selected, R is also selected.", "C) If J is selected, F is also selected.", "D) If J is selected, Q is also selected.", "E) If J is selected, R is also selected." ], "answer": "A" }, { "id": "ar_lsat_199406_1-G_3_19", "context": "A housing committee will consist of exactly five representatives, one of whom will be its chairperson. The representatives will be selected from among a group of five tenants—F, G, J, K, and M—and a group of four homeowners—P, Q, R, and S. The following conditions must be met: The committee must include at least two representatives from each group. The chairperson must be a representative belonging to the group from which exactly two representatives are selected. If F is selected, Q must be selected. If G is selected, K must be selected. If either J or M is selected, the other must also be selected. M and P cannot both be selected.", "question": "The committee must include at least one representative from which one of the following pairs?", "options": [ "A) F, P", "B) G, J", "C) K, Q", "D) M, P", "E) R, S" ], "answer": "C" }, { "id": "ar_lsat_199406_1-G_4_20", "context": "Four apprentices—Louis, Madelyn, Nora, and Oliver—are initially assigned to projects Q, R, S, and T, respectively. During the year in which they are apprentices, two reassignments of apprentices to projects will be made, each time according to a different one of the following plans, which can be used in any order: Plan 1. The apprentice assigned to project Q switches projects with the apprentice assigned to project S and the apprentice assigned to project R switches projects with the apprentice assigned to project T. Plan 2. The apprentice assigned to project S switches projects with the apprentice assigned to project T. Plan 3. Louis and Madelyn switch projects with each other.", "question": "Which one of the following must be true after the second reassignment of apprentices to projects during the year if that reassignment assigns Nora to project T ?", "options": [ "A) Louis is assigned to project S.", "B) Madelyn is assigned to project R.", "C) Madelyn is assigned to project S.", "D) Oliver is assigned to project R.", "E) Oliver is assigned to project S." ], "answer": "E" }, { "id": "ar_lsat_199406_1-G_4_21", "context": "Four apprentices—Louis, Madelyn, Nora, and Oliver—are initially assigned to projects Q, R, S, and T, respectively. During the year in which they are apprentices, two reassignments of apprentices to projects will be made, each time according to a different one of the following plans, which can be used in any order: Plan 1. The apprentice assigned to project Q switches projects with the apprentice assigned to project S and the apprentice assigned to project R switches projects with the apprentice assigned to project T. Plan 2. The apprentice assigned to project S switches projects with the apprentice assigned to project T. Plan 3. Louis and Madelyn switch projects with each other.", "question": "Which one of the following could be true after only one reassignment during the year?", "options": [ "A) Louis is assigned to project T.", "B) Nora is assigned to project R.", "C) Oliver is assigned to project Q.", "D) Louis and Nora each remain assigned to the same projects as before.", "E) Nora and Oliver each remain assigned to the same projects as before." ], "answer": "E" }, { "id": "ar_lsat_199406_1-G_4_22", "context": "Four apprentices—Louis, Madelyn, Nora, and Oliver—are initially assigned to projects Q, R, S, and T, respectively. During the year in which they are apprentices, two reassignments of apprentices to projects will be made, each time according to a different one of the following plans, which can be used in any order: Plan 1. The apprentice assigned to project Q switches projects with the apprentice assigned to project S and the apprentice assigned to project R switches projects with the apprentice assigned to project T. Plan 2. The apprentice assigned to project S switches projects with the apprentice assigned to project T. Plan 3. Louis and Madelyn switch projects with each other.", "question": "If at some time during the year, Louis is reassigned to project R, which one of the following could have been the assignment of apprentices to the projects immediately before the reassignment?", "options": [ "A) Q: Louis; R: Madelyn; S: Oliver; T: Nora", "B) Q: Louis; R: Nora; S: Oliver; T: Madelyn", "C) Q: Nora; R: Madelyn; S: Louis; T: Oliver", "D) Q: Nora; R: Oliver; S: Louis; T: Madelyn", "E) Q: Oliver; R: Nora; S: Louis; T: Madelyn" ], "answer": "A" }, { "id": "ar_lsat_199406_1-G_4_23", "context": "Four apprentices—Louis, Madelyn, Nora, and Oliver—are initially assigned to projects Q, R, S, and T, respectively. During the year in which they are apprentices, two reassignments of apprentices to projects will be made, each time according to a different one of the following plans, which can be used in any order: Plan 1. The apprentice assigned to project Q switches projects with the apprentice assigned to project S and the apprentice assigned to project R switches projects with the apprentice assigned to project T. Plan 2. The apprentice assigned to project S switches projects with the apprentice assigned to project T. Plan 3. Louis and Madelyn switch projects with each other.", "question": "Which one of the following is an acceptable assignment of apprentices to the projects after only one reassignment during the year?", "options": [ "A) Q: Louis; R: Madelyn; S: Nora; T: Oliver", "B) Q: Madelyn; R: Louis; S: Nora; T: Oliver", "C) Q: Madelyn; R: Oliver; S: Nora; T: Louis", "D) Q: Nora; R: Louis; S: Oliver; T: Madelyn", "E) Q: Nora; R: Madelyn; S: Oliver; T: Louis" ], "answer": "B" }, { "id": "ar_lsat_199406_1-G_4_24", "context": "Four apprentices—Louis, Madelyn, Nora, and Oliver—are initially assigned to projects Q, R, S, and T, respectively. During the year in which they are apprentices, two reassignments of apprentices to projects will be made, each time according to a different one of the following plans, which can be used in any order: Plan 1. The apprentice assigned to project Q switches projects with the apprentice assigned to project S and the apprentice assigned to project R switches projects with the apprentice assigned to project T. Plan 2. The apprentice assigned to project S switches projects with the apprentice assigned to project T. Plan 3. Louis and Madelyn switch projects with each other.", "question": "If the first reassignment is made according to plan 1, which one of the following must be true?", "options": [ "A) Louis is assigned to project T as a result of the second reassignment.", "B) Madelyn is assigned to project Q as a result of the second reassignment.", "C) Madelyn is assigned to project T as a result of the second reassignment.", "D) Oliver is assigned to project S as a result of the second reassignment.", "E) Oliver is assigned to project T as a result of the second reassignment." ], "answer": "A" }, { "id": "ar_lsat_199410_2-G_1_1", "context": "A piano instructor will schedule exactly one lesson for each of six students—Grace, Henry, Janet, Steve, Tom, and Una—one lesson per day for six consecutive days. The schedule must conform to the following conditions: Henry's lesson is later in the schedule than Janet's lesson. Una's lesson is later in the schedule than Steve's lesson. Steve's lesson is exactly three days after Grace's lesson. Janet's lesson is on the first day or else the third day.", "question": "If Janet's lesson is scheduled for the first day, then the lesson for which one of the following students must be scheduled for the sixth day?", "options": [ "A) Grace", "B) Henry", "C) Steve", "D) Tom", "E) Una" ], "answer": "E" }, { "id": "ar_lsat_199410_2-G_1_2", "context": "A piano instructor will schedule exactly one lesson for each of six students—Grace, Henry, Janet, Steve, Tom, and Una—one lesson per day for six consecutive days. The schedule must conform to the following conditions: Henry's lesson is later in the schedule than Janet's lesson. Una's lesson is later in the schedule than Steve's lesson. Steve's lesson is exactly three days after Grace's lesson. Janet's lesson is on the first day or else the third day.", "question": "For which one of the following students is there an acceptable schedule in which the student's lesson is on the third day and another acceptable schedule in which the student's lesson is on the fifth day?", "options": [ "A) Grace", "B) Henry", "C) Steve", "D) Tom", "E) Una" ], "answer": "B" }, { "id": "ar_lsat_199410_2-G_1_3", "context": "A piano instructor will schedule exactly one lesson for each of six students—Grace, Henry, Janet, Steve, Tom, and Una—one lesson per day for six consecutive days. The schedule must conform to the following conditions: Henry's lesson is later in the schedule than Janet's lesson. Una's lesson is later in the schedule than Steve's lesson. Steve's lesson is exactly three days after Grace's lesson. Janet's lesson is on the first day or else the third day.", "question": "Which one of the following is a complete and accurate list of the students any one of whom could be the student whose lesson is scheduled for the second day?", "options": [ "A) Grace", "B) Tom", "C) Grace, Tom", "D) Henry, Tom", "E) Grace, Henry, Tom" ], "answer": "C" }, { "id": "ar_lsat_199410_2-G_1_4", "context": "A piano instructor will schedule exactly one lesson for each of six students—Grace, Henry, Janet, Steve, Tom, and Una—one lesson per day for six consecutive days. The schedule must conform to the following conditions: Henry's lesson is later in the schedule than Janet's lesson. Una's lesson is later in the schedule than Steve's lesson. Steve's lesson is exactly three days after Grace's lesson. Janet's lesson is on the first day or else the third day.", "question": "If Henry's lesson is scheduled for a day either immediately before or immediately after Tom's lesson, then Grace's lesson must be scheduled for the", "options": [ "A) first day", "B) second day", "C) third day", "D) fourth day", "E) fifth day" ], "answer": "B" }, { "id": "ar_lsat_199410_2-G_1_5", "context": "A piano instructor will schedule exactly one lesson for each of six students—Grace, Henry, Janet, Steve, Tom, and Una—one lesson per day for six consecutive days. The schedule must conform to the following conditions: Henry's lesson is later in the schedule than Janet's lesson. Una's lesson is later in the schedule than Steve's lesson. Steve's lesson is exactly three days after Grace's lesson. Janet's lesson is on the first day or else the third day.", "question": "If Janet's lesson is scheduled for the third day, which one of the following could be true?", "options": [ "A) Grace's lesson is scheduled for a later day than Henry's lesson.", "B) Grace's lesson is scheduled for a later day than Una's lesson.", "C) Henry's lesson is scheduled for a later day than Una's lesson.", "D) Tom's lesson is scheduled for a later day than Henry's lesson.", "E) Tom's lesson is scheduled for a later day than Una's lesson." ], "answer": "C" }, { "id": "ar_lsat_199410_2-G_1_6", "context": "A piano instructor will schedule exactly one lesson for each of six students—Grace, Henry, Janet, Steve, Tom, and Una—one lesson per day for six consecutive days. The schedule must conform to the following conditions: Henry's lesson is later in the schedule than Janet's lesson. Una's lesson is later in the schedule than Steve's lesson. Steve's lesson is exactly three days after Grace's lesson. Janet's lesson is on the first day or else the third day.", "question": "Which one of the following is a complete and accurate list of days any one of which could be the day for which Tom's lesson is scheduled?", "options": [ "A) first, second, third", "B) second, third, fourth", "C) second, fifth, sixth", "D) first, second, third, fourth", "E) second, third, fourth, sixth" ], "answer": "D" }, { "id": "ar_lsat_199410_2-G_2_7", "context": "Five children—F, G, H, J, and K—and four adults—Q, R, S, and T—are planning a canoeing trip. The canoeists will be divided into three groups—groups 1, 2, and 3—of three canoeists each, according to the following conditions: There must be at least one adult in each group. F must be in the same group as J. G cannot be in the same group as T. H cannot be in the same group as R. Neither H nor T can be in group 2.", "question": "If F is in group 1, which one of the following could be true?", "options": [ "A) G and K are in group 3.", "B) G and R are in group 3.", "C) J and S are in group 2.", "D) K and R are in group 1.", "E) Q and S are in group 2." ], "answer": "E" }, { "id": "ar_lsat_199410_2-G_2_8", "context": "Five children—F, G, H, J, and K—and four adults—Q, R, S, and T—are planning a canoeing trip. The canoeists will be divided into three groups—groups 1, 2, and 3—of three canoeists each, according to the following conditions: There must be at least one adult in each group. F must be in the same group as J. G cannot be in the same group as T. H cannot be in the same group as R. Neither H nor T can be in group 2.", "question": "If F and S are in group 3, which one of the following must be true?", "options": [ "A) G is in group 2.", "B) H is in group 3.", "C) K is in group 1.", "D) Q is in group 2.", "E) R is in group 1." ], "answer": "A" }, { "id": "ar_lsat_199410_2-G_2_9", "context": "Five children—F, G, H, J, and K—and four adults—Q, R, S, and T—are planning a canoeing trip. The canoeists will be divided into three groups—groups 1, 2, and 3—of three canoeists each, according to the following conditions: There must be at least one adult in each group. F must be in the same group as J. G cannot be in the same group as T. H cannot be in the same group as R. Neither H nor T can be in group 2.", "question": "If G and K are in group 3, which one of the following must be true?", "options": [ "A) H is in group 3.", "B) J is in group 1.", "C) R is in group 2.", "D) S is in group 3.", "E) T is in group 1." ], "answer": "E" }, { "id": "ar_lsat_199410_2-G_2_10", "context": "Five children—F, G, H, J, and K—and four adults—Q, R, S, and T—are planning a canoeing trip. The canoeists will be divided into three groups—groups 1, 2, and 3—of three canoeists each, according to the following conditions: There must be at least one adult in each group. F must be in the same group as J. G cannot be in the same group as T. H cannot be in the same group as R. Neither H nor T can be in group 2.", "question": "If Q is in group 1 and S is in group 3, which one of the following CANNOT be true?", "options": [ "A) G is in group 2.", "B) T is in group 1.", "C) There is exactly one child in group 1.", "D) There is exactly one child in group 2.", "E) There is exactly one child in group 3." ], "answer": "D" }, { "id": "ar_lsat_199410_2-G_2_11", "context": "Five children—F, G, H, J, and K—and four adults—Q, R, S, and T—are planning a canoeing trip. The canoeists will be divided into three groups—groups 1, 2, and 3—of three canoeists each, according to the following conditions: There must be at least one adult in each group. F must be in the same group as J. G cannot be in the same group as T. H cannot be in the same group as R. Neither H nor T can be in group 2.", "question": "If G is the only child in group 1, which one of the following must be true?", "options": [ "A) F is in group 3.", "B) K is in group 3.", "C) Q is in group 2.", "D) R is in group 1.", "E) S is in group 2." ], "answer": "B" }, { "id": "ar_lsat_199410_2-G_3_12", "context": "Lara, Mendel, and Nastassia each buy at least one kind of food from a street vendor who sells only fruit cups, hot dogs, pretzels, and shish kebabs. They make their selections in accordance with the following restrictions: None of the three buys more than one portion of each kind of food. If any of the three buys a hot dog, that person does not also buy a shish kebab. At least one of the three buys a hot dog, and at least one buys a pretzel. Mendel buys a shish kebab. Nastassia buys a fruit cup. Neither Lara nor Nastassia buys a pretzel. Mendel does not buy any kind of food that Nastassia buys.", "question": "Which one of the following statements must be true?", "options": [ "A) Lara buys a hot dog.", "B) Lara buys a shish kebab.", "C) Mendel buys a hot dog.", "D) Mendel buys a pretzel.", "E) Nastassia buys a hot dog." ], "answer": "D" }, { "id": "ar_lsat_199410_2-G_3_13", "context": "Lara, Mendel, and Nastassia each buy at least one kind of food from a street vendor who sells only fruit cups, hot dogs, pretzels, and shish kebabs. They make their selections in accordance with the following restrictions: None of the three buys more than one portion of each kind of food. If any of the three buys a hot dog, that person does not also buy a shish kebab. At least one of the three buys a hot dog, and at least one buys a pretzel. Mendel buys a shish kebab. Nastassia buys a fruit cup. Neither Lara nor Nastassia buys a pretzel. Mendel does not buy any kind of food that Nastassia buys.", "question": "If the vendor charges $1 for each portion of food, what is the minimum amount the three people could spend?", "options": [ "A) $3", "B) $4", "C) $5", "D) $6", "E) $7" ], "answer": "B" }, { "id": "ar_lsat_199410_2-G_3_14", "context": "Lara, Mendel, and Nastassia each buy at least one kind of food from a street vendor who sells only fruit cups, hot dogs, pretzels, and shish kebabs. They make their selections in accordance with the following restrictions: None of the three buys more than one portion of each kind of food. If any of the three buys a hot dog, that person does not also buy a shish kebab. At least one of the three buys a hot dog, and at least one buys a pretzel. Mendel buys a shish kebab. Nastassia buys a fruit cup. Neither Lara nor Nastassia buys a pretzel. Mendel does not buy any kind of food that Nastassia buys.", "question": "If the vendor charges $1 for each portion of food, what is the greatest amount the three people could spend?", "options": [ "A) $5", "B) $6", "C) $7", "D) $8", "E) $9" ], "answer": "B" }, { "id": "ar_lsat_199410_2-G_3_15", "context": "Lara, Mendel, and Nastassia each buy at least one kind of food from a street vendor who sells only fruit cups, hot dogs, pretzels, and shish kebabs. They make their selections in accordance with the following restrictions: None of the three buys more than one portion of each kind of food. If any of the three buys a hot dog, that person does not also buy a shish kebab. At least one of the three buys a hot dog, and at least one buys a pretzel. Mendel buys a shish kebab. Nastassia buys a fruit cup. Neither Lara nor Nastassia buys a pretzel. Mendel does not buy any kind of food that Nastassia buys.", "question": "If Lara and Mendel buy exactly two kinds of food each, which one of the following statements must be true.", "options": [ "A) Lara buys a fruit cup.", "B) Lara buys a hot dog.", "C) Mendel buys a fruit cup.", "D) There is exactly one kind of food that Lara and Mendel both buy.", "E) There is exactly one kind of food that Lara and Nastassia both buy." ], "answer": "A" }, { "id": "ar_lsat_199410_2-G_3_16", "context": "Lara, Mendel, and Nastassia each buy at least one kind of food from a street vendor who sells only fruit cups, hot dogs, pretzels, and shish kebabs. They make their selections in accordance with the following restrictions: None of the three buys more than one portion of each kind of food. If any of the three buys a hot dog, that person does not also buy a shish kebab. At least one of the three buys a hot dog, and at least one buys a pretzel. Mendel buys a shish kebab. Nastassia buys a fruit cup. Neither Lara nor Nastassia buys a pretzel. Mendel does not buy any kind of food that Nastassia buys.", "question": "If Lara buys a shish kebab, which one of the following statements must be true?", "options": [ "A) Lara buys a fruit cup.", "B) Mendel buys a fruit cup.", "C) Nastassia buys a hot dog.", "D) Nastassia buys exactly one kind of food.", "E) Exactly one person buys a fruit cup." ], "answer": "C" }, { "id": "ar_lsat_199410_2-G_3_17", "context": "Lara, Mendel, and Nastassia each buy at least one kind of food from a street vendor who sells only fruit cups, hot dogs, pretzels, and shish kebabs. They make their selections in accordance with the following restrictions: None of the three buys more than one portion of each kind of food. If any of the three buys a hot dog, that person does not also buy a shish kebab. At least one of the three buys a hot dog, and at least one buys a pretzel. Mendel buys a shish kebab. Nastassia buys a fruit cup. Neither Lara nor Nastassia buys a pretzel. Mendel does not buy any kind of food that Nastassia buys.", "question": "Assume that the condition is removed that prevents a customer who buys a hot dog from buying a shish kebab but all other conditions remain the same. If the vendor charges $1 for each portion of food, what is the maximum amount the three people could spend?", "options": [ "A) $5", "B) $6", "C) $7", "D) $8", "E) $9" ], "answer": "C" }, { "id": "ar_lsat_199410_2-G_4_18", "context": "A science student has exactly four flasks—1, 2, 3, and 4—originally containing a red, a blue, a green, and an orange chemical, respectively. An experiment consists of mixing exactly two of these chemicals together by completely emptying the contents of one of the flasks into another of the flasks. The following conditions apply: The product of an experiment cannot be used in further experiments. Mixing the contents of 1 and 2 produces a red chemical. Mixing the contents of 2 and 3 produces an orange chemical. Mixing the contents of 3 with the contents of either 1 or 4 produces a blue chemical. Mixing the contents of 4 with the contents of either 1 or 2 produces a green chemical.", "question": "If the student performs exactly one experiment, which one of the following could be the colors of the chemicals in the resulting three nonempty flasks?", "options": [ "A) blue, blue, green", "B) blue, orange, orange", "C) blue, orange, red", "D) green, green, red", "E) green, orange, orange" ], "answer": "D" }, { "id": "ar_lsat_199410_2-G_4_19", "context": "A science student has exactly four flasks—1, 2, 3, and 4—originally containing a red, a blue, a green, and an orange chemical, respectively. An experiment consists of mixing exactly two of these chemicals together by completely emptying the contents of one of the flasks into another of the flasks. The following conditions apply: The product of an experiment cannot be used in further experiments. Mixing the contents of 1 and 2 produces a red chemical. Mixing the contents of 2 and 3 produces an orange chemical. Mixing the contents of 3 with the contents of either 1 or 4 produces a blue chemical. Mixing the contents of 4 with the contents of either 1 or 2 produces a green chemical.", "question": "If the student performs exactly two experiments, which one of the following could be the colors of the chemicals in the resulting two nonempty flasks?", "options": [ "A) blue, blue", "B) blue, orange", "C) blue, red", "D) green, red", "E) orange, orange" ], "answer": "C" }, { "id": "ar_lsat_199410_2-G_4_20", "context": "A science student has exactly four flasks—1, 2, 3, and 4—originally containing a red, a blue, a green, and an orange chemical, respectively. An experiment consists of mixing exactly two of these chemicals together by completely emptying the contents of one of the flasks into another of the flasks. The following conditions apply: The product of an experiment cannot be used in further experiments. Mixing the contents of 1 and 2 produces a red chemical. Mixing the contents of 2 and 3 produces an orange chemical. Mixing the contents of 3 with the contents of either 1 or 4 produces a blue chemical. Mixing the contents of 4 with the contents of either 1 or 2 produces a green chemical.", "question": "If the student performs exactly one experiment and none of the resulting three nonempty flasks contains a red chemical, which one of the following could be the colors of the chemicals in the three flasks?", "options": [ "A) blue, blue, green", "B) blue, green, green", "C) blue, green, orange", "D) blue, orange, orange", "E) green, green, orange" ], "answer": "B" }, { "id": "ar_lsat_199410_2-G_4_21", "context": "A science student has exactly four flasks—1, 2, 3, and 4—originally containing a red, a blue, a green, and an orange chemical, respectively. An experiment consists of mixing exactly two of these chemicals together by completely emptying the contents of one of the flasks into another of the flasks. The following conditions apply: The product of an experiment cannot be used in further experiments. Mixing the contents of 1 and 2 produces a red chemical. Mixing the contents of 2 and 3 produces an orange chemical. Mixing the contents of 3 with the contents of either 1 or 4 produces a blue chemical. Mixing the contents of 4 with the contents of either 1 or 2 produces a green chemical.", "question": "If the student performs exactly one experiment and exactly one of the resulting three nonempty flasks contains a blue chemical, which one of the following must be the colors of the chemicals in the other two flasks?", "options": [ "A) both green", "B) both orange", "C) both red", "D) one green and one red", "E) one orange and one red" ], "answer": "A" }, { "id": "ar_lsat_199410_2-G_4_22", "context": "A science student has exactly four flasks—1, 2, 3, and 4—originally containing a red, a blue, a green, and an orange chemical, respectively. An experiment consists of mixing exactly two of these chemicals together by completely emptying the contents of one of the flasks into another of the flasks. The following conditions apply: The product of an experiment cannot be used in further experiments. Mixing the contents of 1 and 2 produces a red chemical. Mixing the contents of 2 and 3 produces an orange chemical. Mixing the contents of 3 with the contents of either 1 or 4 produces a blue chemical. Mixing the contents of 4 with the contents of either 1 or 2 produces a green chemical.", "question": "If the student will perform exactly two experiments and after the first experiment exactly one of the resulting three nonempty flasks contains an orange chemical, then in the second experiment the student could mix together the contents of flasks", "options": [ "A) 1 and 2", "B) 1 and 3", "C) 1 and 4", "D) 2 and 3", "E) 3 and 4" ], "answer": "E" }, { "id": "ar_lsat_199410_2-G_4_23", "context": "A science student has exactly four flasks—1, 2, 3, and 4—originally containing a red, a blue, a green, and an orange chemical, respectively. An experiment consists of mixing exactly two of these chemicals together by completely emptying the contents of one of the flasks into another of the flasks. The following conditions apply: The product of an experiment cannot be used in further experiments. Mixing the contents of 1 and 2 produces a red chemical. Mixing the contents of 2 and 3 produces an orange chemical. Mixing the contents of 3 with the contents of either 1 or 4 produces a blue chemical. Mixing the contents of 4 with the contents of either 1 or 2 produces a green chemical.", "question": "If the student performs exactly one experiment and none of the resulting three nonempty flasks contains an orange chemical, then the student must have mixed the contents of", "options": [ "A) flask 1 with flask 2", "B) flask 1 with flask 4", "C) flask 2 with flask 4", "D) flask 2 with one of the other flasks", "E) flask 4 with one of the other flasks" ], "answer": "E" }, { "id": "ar_lsat_199410_2-G_4_24", "context": "A science student has exactly four flasks—1, 2, 3, and 4—originally containing a red, a blue, a green, and an orange chemical, respectively. An experiment consists of mixing exactly two of these chemicals together by completely emptying the contents of one of the flasks into another of the flasks. The following conditions apply: The product of an experiment cannot be used in further experiments. Mixing the contents of 1 and 2 produces a red chemical. Mixing the contents of 2 and 3 produces an orange chemical. Mixing the contents of 3 with the contents of either 1 or 4 produces a blue chemical. Mixing the contents of 4 with the contents of either 1 or 2 produces a green chemical.", "question": "If the student performs exactly two experiments and exactly one of the resulting two nonempty flasks contains an orange chemical, then it must be true that the contents of the other nonempty flask is", "options": [ "A) obtained by mixing flasks 1 and 2", "B) obtained by mixing flasks 2 and 4", "C) blue", "D) green", "E) red" ], "answer": "D" }, { "id": "ar_lsat_199412_1-G_1_1", "context": "Exactly eight consumers—F, G, H, J, K, L, M, and N—will be interviewed by market researchers. The eight will be divided into exactly two 4-person groups—group 1 and group 2—before interviews begin. Each person is assigned to exactly one of the two groups according to the following conditions: F must be in the same group as J. G must be in a different group from M. If H is in group 1, then L must be in group 1. If N is in group 2, then G must be in group 1.", "question": "Group 1 could consist of", "options": [ "A) F, G, H, and J", "B) F, H, L, and M", "C) F, J, K, and L", "D) G, H, L, and N", "E) G, K, M, and N" ], "answer": "D" }, { "id": "ar_lsat_199412_1-G_1_2", "context": "Exactly eight consumers—F, G, H, J, K, L, M, and N—will be interviewed by market researchers. The eight will be divided into exactly two 4-person groups—group 1 and group 2—before interviews begin. Each person is assigned to exactly one of the two groups according to the following conditions: F must be in the same group as J. G must be in a different group from M. If H is in group 1, then L must be in group 1. If N is in group 2, then G must be in group 1.", "question": "If K is in the same group as N, which one of the following must be true?", "options": [ "A) G is in group 1.", "B) H is in group 2.", "C) J is in group 1.", "D) K is in group 2.", "E) M is in group 1." ], "answer": "B" }, { "id": "ar_lsat_199412_1-G_1_3", "context": "Exactly eight consumers—F, G, H, J, K, L, M, and N—will be interviewed by market researchers. The eight will be divided into exactly two 4-person groups—group 1 and group 2—before interviews begin. Each person is assigned to exactly one of the two groups according to the following conditions: F must be in the same group as J. G must be in a different group from M. If H is in group 1, then L must be in group 1. If N is in group 2, then G must be in group 1.", "question": "If F is in the same group as H, which one of the following must be true?", "options": [ "A) G is in group 2.", "B) J is in group 1.", "C) K is in group 1.", "D) L is in group 2.", "E) M is in group 2." ], "answer": "C" }, { "id": "ar_lsat_199412_1-G_1_4", "context": "Exactly eight consumers—F, G, H, J, K, L, M, and N—will be interviewed by market researchers. The eight will be divided into exactly two 4-person groups—group 1 and group 2—before interviews begin. Each person is assigned to exactly one of the two groups according to the following conditions: F must be in the same group as J. G must be in a different group from M. If H is in group 1, then L must be in group 1. If N is in group 2, then G must be in group 1.", "question": "If L and M are in group 2, then a person who could be assigned either to group 1 or, alternatively, to group 2 is", "options": [ "A) F", "B) G", "C) H", "D) J", "E) K" ], "answer": "E" }, { "id": "ar_lsat_199412_1-G_1_5", "context": "Exactly eight consumers—F, G, H, J, K, L, M, and N—will be interviewed by market researchers. The eight will be divided into exactly two 4-person groups—group 1 and group 2—before interviews begin. Each person is assigned to exactly one of the two groups according to the following conditions: F must be in the same group as J. G must be in a different group from M. If H is in group 1, then L must be in group 1. If N is in group 2, then G must be in group 1.", "question": "Each of the following is a pair of people who could be in group 1 together EXCEPT", "options": [ "A) F and G", "B) F and H", "C) F and L", "D) H and G", "E) H and N" ], "answer": "B" }, { "id": "ar_lsat_199412_1-G_1_6", "context": "Exactly eight consumers—F, G, H, J, K, L, M, and N—will be interviewed by market researchers. The eight will be divided into exactly two 4-person groups—group 1 and group 2—before interviews begin. Each person is assigned to exactly one of the two groups according to the following conditions: F must be in the same group as J. G must be in a different group from M. If H is in group 1, then L must be in group 1. If N is in group 2, then G must be in group 1.", "question": "If L is in group 2, then each of the following is a pair of people who could be in group 1 together EXCEPT", "options": [ "A) F and M", "B) G and N", "C) J and N", "D) K and M", "E) M and N" ], "answer": "D" }, { "id": "ar_lsat_199412_1-G_2_7", "context": "Five people—Harry, Iris, Kate, Nancy, and Victor—are to be scheduled as contestants on a television show, one contestant per day, for five consecutive days from Monday through Friday. The following restrictions governing the scheduling of contestants must be observed: Nancy is not scheduled for Monday. If Harry is scheduled for Monday, Nancy is scheduled for Friday. If Nancy is scheduled for Tuesday, Iris is scheduled for Monday. Kate is scheduled for the next day after the day for which Victor is scheduled.", "question": "Victor can be scheduled for any day EXCEPT", "options": [ "A) Monday", "B) Tuesday", "C) Wednesday", "D) Thursday", "E) Friday" ], "answer": "E" }, { "id": "ar_lsat_199412_1-G_2_8", "context": "Five people—Harry, Iris, Kate, Nancy, and Victor—are to be scheduled as contestants on a television show, one contestant per day, for five consecutive days from Monday through Friday. The following restrictions governing the scheduling of contestants must be observed: Nancy is not scheduled for Monday. If Harry is scheduled for Monday, Nancy is scheduled for Friday. If Nancy is scheduled for Tuesday, Iris is scheduled for Monday. Kate is scheduled for the next day after the day for which Victor is scheduled.", "question": "If Iris is scheduled for the next day after Harry, which one of the following lists all those days any one of which could be the day for which Harry is scheduled?", "options": [ "A) Monday, Tuesday", "B) Monday, Wednesday", "C) Monday, Thursday", "D) Monday, Tuesday, Wednesday", "E) Monday, Wednesday, Thursday" ], "answer": "E" }, { "id": "ar_lsat_199412_1-G_2_9", "context": "Five people—Harry, Iris, Kate, Nancy, and Victor—are to be scheduled as contestants on a television show, one contestant per day, for five consecutive days from Monday through Friday. The following restrictions governing the scheduling of contestants must be observed: Nancy is not scheduled for Monday. If Harry is scheduled for Monday, Nancy is scheduled for Friday. If Nancy is scheduled for Tuesday, Iris is scheduled for Monday. Kate is scheduled for the next day after the day for which Victor is scheduled.", "question": "If Kate is scheduled for Wednesday, which one of the following could be true?", "options": [ "A) Iris is scheduled for Friday.", "B) Nancy is scheduled for Tuesday.", "C) Nancy is scheduled for an earlier day than the day for which Harry is scheduled.", "D) Nancy is scheduled for an earlier day than the day for which Iris is scheduled.", "E) Nancy is scheduled for an earlier day than the day for which Kate is scheduled." ], "answer": "C" }, { "id": "ar_lsat_199412_1-G_2_10", "context": "Five people—Harry, Iris, Kate, Nancy, and Victor—are to be scheduled as contestants on a television show, one contestant per day, for five consecutive days from Monday through Friday. The following restrictions governing the scheduling of contestants must be observed: Nancy is not scheduled for Monday. If Harry is scheduled for Monday, Nancy is scheduled for Friday. If Nancy is scheduled for Tuesday, Iris is scheduled for Monday. Kate is scheduled for the next day after the day for which Victor is scheduled.", "question": "If Kate is scheduled for Friday, which one of the following must be true?", "options": [ "A) Harry is scheduled for Tuesday.", "B) Harry is scheduled for Wednesday.", "C) Iris is scheduled for Monday.", "D) Iris is scheduled for Wednesday.", "E) Nancy is scheduled for Wednesday." ], "answer": "C" }, { "id": "ar_lsat_199412_1-G_2_11", "context": "Five people—Harry, Iris, Kate, Nancy, and Victor—are to be scheduled as contestants on a television show, one contestant per day, for five consecutive days from Monday through Friday. The following restrictions governing the scheduling of contestants must be observed: Nancy is not scheduled for Monday. If Harry is scheduled for Monday, Nancy is scheduled for Friday. If Nancy is scheduled for Tuesday, Iris is scheduled for Monday. Kate is scheduled for the next day after the day for which Victor is scheduled.", "question": "If Iris is scheduled for Wednesday, which one of the following must be true?", "options": [ "A) Harry is scheduled for an earlier day than the day for which Nancy is scheduled.", "B) Harry is scheduled for an earlier day than the day for which Kate is scheduled.", "C) Kate is scheduled for an earlier day than the day for which Harry is scheduled.", "D) Nancy is scheduled for an earlier day than the day for which Kate is scheduled.", "E) Nancy is scheduled for an earlier day than the day for which Iris is scheduled." ], "answer": "C" }, { "id": "ar_lsat_199412_1-G_3_12", "context": "An art teacher will schedule exactly six of eight lectures—fresco, history, lithography, naturalism, oils, pastels, sculpture, and watercolors—for three days—1, 2, and 3. There will be exactly two lectures each day—morning and afternoon. Scheduling is governed by the following conditions: Day 2 is the only day for which oils can be scheduled. Neither sculpture nor watercolors can be scheduled for the afternoon. Neither oils nor pastels can be scheduled for the same day as lithography. If pastels is scheduled for day 1 or day 2, then the lectures scheduled for the day immediately following pastels must be fresco and history, not necessarily in that order.", "question": "Which one of the following is an acceptable schedule of lectures for days 1, 2, and 3, respectively?", "options": [ "A) Morning: lithography, history, sculpture Afternoon: pastels, fresco, naturalism", "B) Morning: naturalism, oils, fresco Afternoon: lithography, pastels, history", "C) Morning: oils, history, naturalism Afternoon: pastels, fresco, lithography", "D) Morning: sculpture, lithography, naturalism Afternoon: watercolors, fresco, pastels", "E) Morning: sculpture, pastels, fresco Afternoon: lithography, history, naturalism" ], "answer": "B" }, { "id": "ar_lsat_199412_1-G_3_13", "context": "An art teacher will schedule exactly six of eight lectures—fresco, history, lithography, naturalism, oils, pastels, sculpture, and watercolors—for three days—1, 2, and 3. There will be exactly two lectures each day—morning and afternoon. Scheduling is governed by the following conditions: Day 2 is the only day for which oils can be scheduled. Neither sculpture nor watercolors can be scheduled for the afternoon. Neither oils nor pastels can be scheduled for the same day as lithography. If pastels is scheduled for day 1 or day 2, then the lectures scheduled for the day immediately following pastels must be fresco and history, not necessarily in that order.", "question": "If lithography and fresco are scheduled for the afternoons of day 2 and day 3, respectively, which one of the following is a lecture that could be scheduled for the afternoon of day 1?", "options": [ "A) history", "B) oils", "C) pastels", "D) sculpture", "E) watercolors" ], "answer": "A" }, { "id": "ar_lsat_199412_1-G_3_14", "context": "An art teacher will schedule exactly six of eight lectures—fresco, history, lithography, naturalism, oils, pastels, sculpture, and watercolors—for three days—1, 2, and 3. There will be exactly two lectures each day—morning and afternoon. Scheduling is governed by the following conditions: Day 2 is the only day for which oils can be scheduled. Neither sculpture nor watercolors can be scheduled for the afternoon. Neither oils nor pastels can be scheduled for the same day as lithography. If pastels is scheduled for day 1 or day 2, then the lectures scheduled for the day immediately following pastels must be fresco and history, not necessarily in that order.", "question": "If lithography and history are scheduled for the mornings of day 2 and day 3, respectively, which one of the following lectures could be scheduled for the morning of day 1?", "options": [ "A) fresco", "B) naturalism", "C) oils", "D) pastels", "E) sculpture" ], "answer": "E" }, { "id": "ar_lsat_199412_1-G_3_15", "context": "An art teacher will schedule exactly six of eight lectures—fresco, history, lithography, naturalism, oils, pastels, sculpture, and watercolors—for three days—1, 2, and 3. There will be exactly two lectures each day—morning and afternoon. Scheduling is governed by the following conditions: Day 2 is the only day for which oils can be scheduled. Neither sculpture nor watercolors can be scheduled for the afternoon. Neither oils nor pastels can be scheduled for the same day as lithography. If pastels is scheduled for day 1 or day 2, then the lectures scheduled for the day immediately following pastels must be fresco and history, not necessarily in that order.", "question": "If oils and lithography are scheduled for the mornings of day 2 and day 3, respectively, which one of the following CANNOT be scheduled for any day?", "options": [ "A) fresco", "B) history", "C) naturalism", "D) pastels", "E) sculpture" ], "answer": "D" }, { "id": "ar_lsat_199412_1-G_3_16", "context": "An art teacher will schedule exactly six of eight lectures—fresco, history, lithography, naturalism, oils, pastels, sculpture, and watercolors—for three days—1, 2, and 3. There will be exactly two lectures each day—morning and afternoon. Scheduling is governed by the following conditions: Day 2 is the only day for which oils can be scheduled. Neither sculpture nor watercolors can be scheduled for the afternoon. Neither oils nor pastels can be scheduled for the same day as lithography. If pastels is scheduled for day 1 or day 2, then the lectures scheduled for the day immediately following pastels must be fresco and history, not necessarily in that order.", "question": "If neither fresco nor naturalism is scheduled for any day, which one of the following must be scheduled for day 1?", "options": [ "A) history", "B) lithography", "C) oils", "D) pastels", "E) sculpture" ], "answer": "B" }, { "id": "ar_lsat_199412_1-G_3_17", "context": "An art teacher will schedule exactly six of eight lectures—fresco, history, lithography, naturalism, oils, pastels, sculpture, and watercolors—for three days—1, 2, and 3. There will be exactly two lectures each day—morning and afternoon. Scheduling is governed by the following conditions: Day 2 is the only day for which oils can be scheduled. Neither sculpture nor watercolors can be scheduled for the afternoon. Neither oils nor pastels can be scheduled for the same day as lithography. If pastels is scheduled for day 1 or day 2, then the lectures scheduled for the day immediately following pastels must be fresco and history, not necessarily in that order.", "question": "If the lectures scheduled for the mornings are fresco, history, and lithography, not necessarily in that order, which one of the following could be true?", "options": [ "A) Lithography is scheduled for day 3.", "B) Naturalism is scheduled for day 2.", "C) Fresco is scheduled for the same day as naturalism.", "D) History is scheduled for the same day as naturalism.", "E) History is scheduled for the same day as oils." ], "answer": "E" }, { "id": "ar_lsat_199412_1-G_4_18", "context": "The population of a small country is organized into five clans—N, O, P, S, and T. Each year exactly three of the five clans participate in the annual harvest ceremonies. The rules specifying the order of participation of the clans in the ceremonies are as follows: Each clan must participate at least once in any two consecutive years. No clan participates for three consecutive years. Participation takes place in cycles, with each cycle ending when each of the five clans has participated three times. Only then does a new cycle begin. No clan participates more than three times within any cycle.", "question": "If the clans participating in the first year of a given cycle are N, O, and P, which one of the following could be the clans participating in the second year of that cycle?", "options": [ "A) N, O, S", "B) N, O, T", "C) N, P, S", "D) O, P, T", "E) O, S, T" ], "answer": "E" }, { "id": "ar_lsat_199412_1-G_4_19", "context": "The population of a small country is organized into five clans—N, O, P, S, and T. Each year exactly three of the five clans participate in the annual harvest ceremonies. The rules specifying the order of participation of the clans in the ceremonies are as follows: Each clan must participate at least once in any two consecutive years. No clan participates for three consecutive years. Participation takes place in cycles, with each cycle ending when each of the five clans has participated three times. Only then does a new cycle begin. No clan participates more than three times within any cycle.", "question": "Which one of the following can be true about the clans' participation in the ceremonies?", "options": [ "A) N participates in the first, second, and third years.", "B) N participates in the second, third, and fourth years.", "C) Both O and S participate in the first and third years.", "D) Both N and S participate in the first, third, and fifth years.", "E) Both S and T participate in the second, third, and fifth years." ], "answer": "C" }, { "id": "ar_lsat_199412_1-G_4_20", "context": "The population of a small country is organized into five clans—N, O, P, S, and T. Each year exactly three of the five clans participate in the annual harvest ceremonies. The rules specifying the order of participation of the clans in the ceremonies are as follows: Each clan must participate at least once in any two consecutive years. No clan participates for three consecutive years. Participation takes place in cycles, with each cycle ending when each of the five clans has participated three times. Only then does a new cycle begin. No clan participates more than three times within any cycle.", "question": "Any cycle for the clans' participation in the ceremonies must be completed at the end of exactly how many years?", "options": [ "A) five", "B) six", "C) seven", "D) eight", "E) nine" ], "answer": "A" }, { "id": "ar_lsat_199412_1-G_4_21", "context": "The population of a small country is organized into five clans—N, O, P, S, and T. Each year exactly three of the five clans participate in the annual harvest ceremonies. The rules specifying the order of participation of the clans in the ceremonies are as follows: Each clan must participate at least once in any two consecutive years. No clan participates for three consecutive years. Participation takes place in cycles, with each cycle ending when each of the five clans has participated three times. Only then does a new cycle begin. No clan participates more than three times within any cycle.", "question": "Which one of the following must be true about the three clans that participate in the ceremonies in the first year?", "options": [ "A) At most two of them participate together in the third year.", "B) At least two of them participate together in the second year.", "C) All three of them participate together in the fourth year.", "D) All three of them participate together in the fifth year.", "E) None of them participates in the third year." ], "answer": "A" }, { "id": "ar_lsat_199412_1-G_4_22", "context": "The population of a small country is organized into five clans—N, O, P, S, and T. Each year exactly three of the five clans participate in the annual harvest ceremonies. The rules specifying the order of participation of the clans in the ceremonies are as follows: Each clan must participate at least once in any two consecutive years. No clan participates for three consecutive years. Participation takes place in cycles, with each cycle ending when each of the five clans has participated three times. Only then does a new cycle begin. No clan participates more than three times within any cycle.", "question": "If, in a particular cycle, N, O, and S participate in the ceremonies in the first year, which one of the following must be true?", "options": [ "A) N participates in the second and third years.", "B) O participates in the third and fourth years.", "C) N and O both participate in the third year.", "D) P and T both participate in the fifth year.", "E) S and T both participate in the fifth year." ], "answer": "D" }, { "id": "ar_lsat_199412_1-G_4_23", "context": "The population of a small country is organized into five clans—N, O, P, S, and T. Each year exactly three of the five clans participate in the annual harvest ceremonies. The rules specifying the order of participation of the clans in the ceremonies are as follows: Each clan must participate at least once in any two consecutive years. No clan participates for three consecutive years. Participation takes place in cycles, with each cycle ending when each of the five clans has participated three times. Only then does a new cycle begin. No clan participates more than three times within any cycle.", "question": "If, in a particular cycle, N, O, and T participate in the first year and if O and P participate in the fourth year, any of the following could be a clan that participates in the third year EXCEPT", "options": [ "A) N", "B) O", "C) P", "D) S", "E) T" ], "answer": "C" }, { "id": "ar_lsat_199412_1-G_4_24", "context": "The population of a small country is organized into five clans—N, O, P, S, and T. Each year exactly three of the five clans participate in the annual harvest ceremonies. The rules specifying the order of participation of the clans in the ceremonies are as follows: Each clan must participate at least once in any two consecutive years. No clan participates for three consecutive years. Participation takes place in cycles, with each cycle ending when each of the five clans has participated three times. Only then does a new cycle begin. No clan participates more than three times within any cycle.", "question": "If, in a particular cycle, N, O, and S participate in the ceremonies in the first year and O, S, and T participate in the third year, then which one of the following could be the clans that participate in the fifth year?", "options": [ "A) N, O, P", "B) N, O, S", "C) N, P, S", "D) O, P, S", "E) P, S, T" ], "answer": "E" }, { "id": "ar_lsat_199502_1-G_1_1", "context": "A newly formed company has five employees—F, G, H, K, and L. Each employee holds exactly one of the following positions: president, manager, or technician. Only the president is not supervised. Other employees are each supervised by exactly one employee, who is either the president or a manager. Each supervised employee holds a different position than his or her supervisor. The following conditions apply: There is exactly one president. At least one of the employees whom the president supervises is a manager. Each manager supervises at least one employee. F does not supervise any employee. G supervises exactly two employees.", "question": "Which one of the following is an acceptable assignment of employees to the positions? President Manager Technician", "options": [ "A) G H, K, L F", "B) G H F, K, L", "C) H F, G K, L", "D) H, K G F, L", "E) K F, G, H, L" ], "answer": "B" }, { "id": "ar_lsat_199502_1-G_1_2", "context": "A newly formed company has five employees—F, G, H, K, and L. Each employee holds exactly one of the following positions: president, manager, or technician. Only the president is not supervised. Other employees are each supervised by exactly one employee, who is either the president or a manager. Each supervised employee holds a different position than his or her supervisor. The following conditions apply: There is exactly one president. At least one of the employees whom the president supervises is a manager. Each manager supervises at least one employee. F does not supervise any employee. G supervises exactly two employees.", "question": "Which one of the following must be true?", "options": [ "A) There are at most three technicians.", "B) There is exactly one technician.", "C) There are at least two managers.", "D) There are exactly two managers.", "E) There are exactly two employees who supervise no one." ], "answer": "A" }, { "id": "ar_lsat_199502_1-G_1_3", "context": "A newly formed company has five employees—F, G, H, K, and L. Each employee holds exactly one of the following positions: president, manager, or technician. Only the president is not supervised. Other employees are each supervised by exactly one employee, who is either the president or a manager. Each supervised employee holds a different position than his or her supervisor. The following conditions apply: There is exactly one president. At least one of the employees whom the president supervises is a manager. Each manager supervises at least one employee. F does not supervise any employee. G supervises exactly two employees.", "question": "Which one of the following is a pair of employees who could serve as managers together?", "options": [ "A) F, H", "B) F, L", "C) G, K", "D) G, L", "E) K, L" ], "answer": "E" }, { "id": "ar_lsat_199502_1-G_1_4", "context": "A newly formed company has five employees—F, G, H, K, and L. Each employee holds exactly one of the following positions: president, manager, or technician. Only the president is not supervised. Other employees are each supervised by exactly one employee, who is either the president or a manager. Each supervised employee holds a different position than his or her supervisor. The following conditions apply: There is exactly one president. At least one of the employees whom the president supervises is a manager. Each manager supervises at least one employee. F does not supervise any employee. G supervises exactly two employees.", "question": "Which one of the following could be true?", "options": [ "A) There is exactly one technician.", "B) There are exactly two managers.", "C) There are exactly two employees who are not supervised.", "D) There are more managers than technicians.", "E) The president supervises all of the other employees." ], "answer": "B" }, { "id": "ar_lsat_199502_1-G_1_5", "context": "A newly formed company has five employees—F, G, H, K, and L. Each employee holds exactly one of the following positions: president, manager, or technician. Only the president is not supervised. Other employees are each supervised by exactly one employee, who is either the president or a manager. Each supervised employee holds a different position than his or her supervisor. The following conditions apply: There is exactly one president. At least one of the employees whom the president supervises is a manager. Each manager supervises at least one employee. F does not supervise any employee. G supervises exactly two employees.", "question": "If F is supervised by the president, which one of the following must be true?", "options": [ "A) G is the president.", "B) H is the president.", "C) L is a technician.", "D) There is exactly one manager.", "E) There are exactly two technicians." ], "answer": "D" }, { "id": "ar_lsat_199502_1-G_1_6", "context": "A newly formed company has five employees—F, G, H, K, and L. Each employee holds exactly one of the following positions: president, manager, or technician. Only the president is not supervised. Other employees are each supervised by exactly one employee, who is either the president or a manager. Each supervised employee holds a different position than his or her supervisor. The following conditions apply: There is exactly one president. At least one of the employees whom the president supervises is a manager. Each manager supervises at least one employee. F does not supervise any employee. G supervises exactly two employees.", "question": "If K supervises exactly two employees, which one of the following must be true?", "options": [ "A) F is supervised by K.", "B) G is a manager.", "C) L is supervised.", "D) There are exactly two managers.", "E) There are exactly two technicians." ], "answer": "C" }, { "id": "ar_lsat_199502_1-G_2_7", "context": "Ron washed a total of seven objects after eating his lunch. Two of the objects were pieces of china: a mug and a plate. Two were pieces of glassware: a water glass and a juice glass. Three were utensils: a fork, a knife, and a spoon. Ron washed the two pieces of china consecutively, the two glasses consecutively, and the three utensils consecutively. He washed the objects as follows: Ron washed each of the objects exactly once. Ron washed the glassware after either the china or the utensils but not after both. He washed the knife before the spoon, and he washed the mug before the plate. He did not wash any two objects at the same time.", "question": "Which one of the following statements CANNOT be true?", "options": [ "A) Ron washed the fork first.", "B) Ron washed the fork second.", "C) Ron washed the mug first.", "D) Ron washed the plate second.", "E) Ron washed the plate third." ], "answer": "E" }, { "id": "ar_lsat_199502_1-G_2_8", "context": "Ron washed a total of seven objects after eating his lunch. Two of the objects were pieces of china: a mug and a plate. Two were pieces of glassware: a water glass and a juice glass. Three were utensils: a fork, a knife, and a spoon. Ron washed the two pieces of china consecutively, the two glasses consecutively, and the three utensils consecutively. He washed the objects as follows: Ron washed each of the objects exactly once. Ron washed the glassware after either the china or the utensils but not after both. He washed the knife before the spoon, and he washed the mug before the plate. He did not wash any two objects at the same time.", "question": "Which one of the following statements can be true?", "options": [ "A) Ron washed the knife second.", "B) Ron washed the knife seventh.", "C) Ron washed the mug second.", "D) Ron washed the mug third.", "E) Ron washed the mug fourth." ], "answer": "A" }, { "id": "ar_lsat_199502_1-G_2_9", "context": "Ron washed a total of seven objects after eating his lunch. Two of the objects were pieces of china: a mug and a plate. Two were pieces of glassware: a water glass and a juice glass. Three were utensils: a fork, a knife, and a spoon. Ron washed the two pieces of china consecutively, the two glasses consecutively, and the three utensils consecutively. He washed the objects as follows: Ron washed each of the objects exactly once. Ron washed the glassware after either the china or the utensils but not after both. He washed the knife before the spoon, and he washed the mug before the plate. He did not wash any two objects at the same time.", "question": "Which one of the following CANNOT be an accurate list of the objects Ron washed second, third, and fourth, respectively?", "options": [ "A) fork, spoon, water glass", "B) knife, fork, juice glass", "C) knife, spoon, juice glass", "D) knife, spoon, water glass", "E) plate, water glass, juice glass" ], "answer": "B" }, { "id": "ar_lsat_199502_1-G_2_10", "context": "Ron washed a total of seven objects after eating his lunch. Two of the objects were pieces of china: a mug and a plate. Two were pieces of glassware: a water glass and a juice glass. Three were utensils: a fork, a knife, and a spoon. Ron washed the two pieces of china consecutively, the two glasses consecutively, and the three utensils consecutively. He washed the objects as follows: Ron washed each of the objects exactly once. Ron washed the glassware after either the china or the utensils but not after both. He washed the knife before the spoon, and he washed the mug before the plate. He did not wash any two objects at the same time.", "question": "It is NOT possible that Ron washed the knife", "options": [ "A) first", "B) second", "C) third", "D) fifth", "E) sixth" ], "answer": "C" }, { "id": "ar_lsat_199502_1-G_2_11", "context": "Ron washed a total of seven objects after eating his lunch. Two of the objects were pieces of china: a mug and a plate. Two were pieces of glassware: a water glass and a juice glass. Three were utensils: a fork, a knife, and a spoon. Ron washed the two pieces of china consecutively, the two glasses consecutively, and the three utensils consecutively. He washed the objects as follows: Ron washed each of the objects exactly once. Ron washed the glassware after either the china or the utensils but not after both. He washed the knife before the spoon, and he washed the mug before the plate. He did not wash any two objects at the same time.", "question": "If Ron washed the spoon immediately before the fork, then which one of the following statements can be true?", "options": [ "A) He washed the knife second.", "B) He washed the knife third.", "C) He washed the plate third.", "D) He washed the plate sixth.", "E) He washed the plate seventh." ], "answer": "E" }, { "id": "ar_lsat_199502_1-G_2_12", "context": "Ron washed a total of seven objects after eating his lunch. Two of the objects were pieces of china: a mug and a plate. Two were pieces of glassware: a water glass and a juice glass. Three were utensils: a fork, a knife, and a spoon. Ron washed the two pieces of china consecutively, the two glasses consecutively, and the three utensils consecutively. He washed the objects as follows: Ron washed each of the objects exactly once. Ron washed the glassware after either the china or the utensils but not after both. He washed the knife before the spoon, and he washed the mug before the plate. He did not wash any two objects at the same time.", "question": "If Ron washed a glass and the knife consecutively, but not necessarily in that order, then which one of the following statements must be false?", "options": [ "A) He washed the fork before the plate.", "B) He washed the fork before the spoon.", "C) He washed the juice glass before the knife.", "D) He washed the plate before the water glass.", "E) He washed the spoon before the fork." ], "answer": "A" }, { "id": "ar_lsat_199502_1-G_3_13", "context": "A breeder has ten birds: Kind Male Female Goldfinches H J, K Lovebirds M N Parakeets Q, R, S T, W The breeder exhibits pairs of birds consisting of one male and one female of the same kind. At most two pairs can be exhibited at a time; the remaining birds must be distributed between two cages. The breeder is constrained by the following conditions: Neither cage can contain more than four birds. Any two birds that are both of the same sex and of the same kind as each other cannot be caged together. Whenever either J or W is exhibited, S cannot be exhibited.", "question": "Which one of the following is a possible assignment of the birds? First Cage Second Cage Exhibition", "options": [ "A) H, M, N J, K, S Q, R, T, W", "B) K, M, Q N, R, W H, J, S, T", "C) K, Q, S R, T, W H, J, M, N", "D) H, J, M, R K, N, S, W Q, T", "E) H, J, M, R, W K, N, S Q, T, W" ], "answer": "D" }, { "id": "ar_lsat_199502_1-G_3_14", "context": "A breeder has ten birds: Kind Male Female Goldfinches H J, K Lovebirds M N Parakeets Q, R, S T, W The breeder exhibits pairs of birds consisting of one male and one female of the same kind. At most two pairs can be exhibited at a time; the remaining birds must be distributed between two cages. The breeder is constrained by the following conditions: Neither cage can contain more than four birds. Any two birds that are both of the same sex and of the same kind as each other cannot be caged together. Whenever either J or W is exhibited, S cannot be exhibited.", "question": "Which one of the following lists two pairs of birds that the breeder can exhibit at the same time?", "options": [ "A) H and J; M and N", "B) H and J; S and T", "C) H and K; M and N", "D) H and K; R and W", "E) M and N; S and W" ], "answer": "D" }, { "id": "ar_lsat_199502_1-G_3_15", "context": "A breeder has ten birds: Kind Male Female Goldfinches H J, K Lovebirds M N Parakeets Q, R, S T, W The breeder exhibits pairs of birds consisting of one male and one female of the same kind. At most two pairs can be exhibited at a time; the remaining birds must be distributed between two cages. The breeder is constrained by the following conditions: Neither cage can contain more than four birds. Any two birds that are both of the same sex and of the same kind as each other cannot be caged together. Whenever either J or W is exhibited, S cannot be exhibited.", "question": "If Q and R are among the birds that are assigned to the cages, then it must be true that", "options": [ "A) H is exhibited", "B) K is exhibited", "C) N is exhibited", "D) J is assigned to one of the cages", "E) T is assigned to one of the cages" ], "answer": "D" }, { "id": "ar_lsat_199502_1-G_3_16", "context": "A breeder has ten birds: Kind Male Female Goldfinches H J, K Lovebirds M N Parakeets Q, R, S T, W The breeder exhibits pairs of birds consisting of one male and one female of the same kind. At most two pairs can be exhibited at a time; the remaining birds must be distributed between two cages. The breeder is constrained by the following conditions: Neither cage can contain more than four birds. Any two birds that are both of the same sex and of the same kind as each other cannot be caged together. Whenever either J or W is exhibited, S cannot be exhibited.", "question": "If Q and T are among the birds assigned to the cages, which one of the following is a pair of birds that must be exhibited?", "options": [ "A) H and J", "B) H and K", "C) M and N", "D) R and W", "E) S and W" ], "answer": "D" }, { "id": "ar_lsat_199502_1-G_3_17", "context": "A breeder has ten birds: Kind Male Female Goldfinches H J, K Lovebirds M N Parakeets Q, R, S T, W The breeder exhibits pairs of birds consisting of one male and one female of the same kind. At most two pairs can be exhibited at a time; the remaining birds must be distributed between two cages. The breeder is constrained by the following conditions: Neither cage can contain more than four birds. Any two birds that are both of the same sex and of the same kind as each other cannot be caged together. Whenever either J or W is exhibited, S cannot be exhibited.", "question": "Which one of the following CANNOT be true?", "options": [ "A) One pair of parakeets are the only birds exhibited together.", "B) One pair of goldfinches and one pair of lovebirds are exhibited together.", "C) One pair of goldfinches and one pair of parakeets are exhibited together.", "D) One pair of lovebirds and one pair of parakeets are exhibited together.", "E) Two pairs of parakeets are exhibited together." ], "answer": "B" }, { "id": "ar_lsat_199502_1-G_3_18", "context": "A breeder has ten birds: Kind Male Female Goldfinches H J, K Lovebirds M N Parakeets Q, R, S T, W The breeder exhibits pairs of birds consisting of one male and one female of the same kind. At most two pairs can be exhibited at a time; the remaining birds must be distributed between two cages. The breeder is constrained by the following conditions: Neither cage can contain more than four birds. Any two birds that are both of the same sex and of the same kind as each other cannot be caged together. Whenever either J or W is exhibited, S cannot be exhibited.", "question": "If S is one of the birds exhibited, it must be true that", "options": [ "A) H is exhibited", "B) M is exhibited", "C) K is assigned to a cage", "D) N is assigned to a cage", "E) R is assigned to a cage" ], "answer": "E" }, { "id": "ar_lsat_199502_1-G_4_19", "context": "During each of the fall, winter, spring, and summer seasons of one year, Nikki and Otto each participate in exactly one of the following five sports: hockey, kayaking, mountaineering, running, and volleyball. Each child participates in exactly four different sports during the year. In the fall, each child participates in mountaineering, running, or volleyball. In the winter, each child participates in hockey or volleyball. In the spring, each child participates in kayaking, mountaineering, running, or volleyball. In the summer, each child participates in kayaking, mountaineering, or volleyball. Nikki and Otto do not participate in the same sport during the same season. Otto's summer sport is volleyball.", "question": "Which one of the following statements must be true?", "options": [ "A) Nikki's fall sport is running.", "B) Nikki's winter sport is volleyball.", "C) Nikki's spring sport is mountaineering.", "D) Otto's fall sport is mountaineering.", "E) Otto's spring sport is kayaking." ], "answer": "B" }, { "id": "ar_lsat_199502_1-G_4_20", "context": "During each of the fall, winter, spring, and summer seasons of one year, Nikki and Otto each participate in exactly one of the following five sports: hockey, kayaking, mountaineering, running, and volleyball. Each child participates in exactly four different sports during the year. In the fall, each child participates in mountaineering, running, or volleyball. In the winter, each child participates in hockey or volleyball. In the spring, each child participates in kayaking, mountaineering, running, or volleyball. In the summer, each child participates in kayaking, mountaineering, or volleyball. Nikki and Otto do not participate in the same sport during the same season. Otto's summer sport is volleyball.", "question": "It CANNOT be true that both Nikki and Otto participate during the year in which one of the following sports?", "options": [ "A) hockey", "B) kayaking", "C) mountaineering", "D) running", "E) volleyball" ], "answer": "A" }, { "id": "ar_lsat_199502_1-G_4_21", "context": "During each of the fall, winter, spring, and summer seasons of one year, Nikki and Otto each participate in exactly one of the following five sports: hockey, kayaking, mountaineering, running, and volleyball. Each child participates in exactly four different sports during the year. In the fall, each child participates in mountaineering, running, or volleyball. In the winter, each child participates in hockey or volleyball. In the spring, each child participates in kayaking, mountaineering, running, or volleyball. In the summer, each child participates in kayaking, mountaineering, or volleyball. Nikki and Otto do not participate in the same sport during the same season. Otto's summer sport is volleyball.", "question": "If Nikki's fall sport is running, then which one of the following statements must be true?", "options": [ "A) Nikki's spring sport is kayaking.", "B) Nikki's summer sport is mountaineering.", "C) Otto's fall sport is mountaineering.", "D) Otto's spring sport is kayaking.", "E) Otto's spring sport is running." ], "answer": "C" }, { "id": "ar_lsat_199502_1-G_4_22", "context": "During each of the fall, winter, spring, and summer seasons of one year, Nikki and Otto each participate in exactly one of the following five sports: hockey, kayaking, mountaineering, running, and volleyball. Each child participates in exactly four different sports during the year. In the fall, each child participates in mountaineering, running, or volleyball. In the winter, each child participates in hockey or volleyball. In the spring, each child participates in kayaking, mountaineering, running, or volleyball. In the summer, each child participates in kayaking, mountaineering, or volleyball. Nikki and Otto do not participate in the same sport during the same season. Otto's summer sport is volleyball.", "question": "Which one of the following statements could be true?", "options": [ "A) Nikki's fall sport is neither mountaineering nor running.", "B) Nikki's spring sport is neither mountaineering nor running.", "C) Nikki's summer sport is neither kayaking nor mountaineering.", "D) Otto's fall sport is neither mountaineering nor running.", "E) Otto's spring sport is neither kayaking, nor mountaineering, nor running." ], "answer": "B" }, { "id": "ar_lsat_199502_1-G_4_23", "context": "During each of the fall, winter, spring, and summer seasons of one year, Nikki and Otto each participate in exactly one of the following five sports: hockey, kayaking, mountaineering, running, and volleyball. Each child participates in exactly four different sports during the year. In the fall, each child participates in mountaineering, running, or volleyball. In the winter, each child participates in hockey or volleyball. In the spring, each child participates in kayaking, mountaineering, running, or volleyball. In the summer, each child participates in kayaking, mountaineering, or volleyball. Nikki and Otto do not participate in the same sport during the same season. Otto's summer sport is volleyball.", "question": "If Otto does not run during the year, then which one of the following statements must be false?", "options": [ "A) Nikki's fall sport is running.", "B) Nikki's spring sport is running.", "C) Nikki's summer sport is kayaking.", "D) Otto's fall sport is mountaineering.", "E) Otto's spring sport is kayaking." ], "answer": "B" }, { "id": "ar_lsat_199502_1-G_4_24", "context": "During each of the fall, winter, spring, and summer seasons of one year, Nikki and Otto each participate in exactly one of the following five sports: hockey, kayaking, mountaineering, running, and volleyball. Each child participates in exactly four different sports during the year. In the fall, each child participates in mountaineering, running, or volleyball. In the winter, each child participates in hockey or volleyball. In the spring, each child participates in kayaking, mountaineering, running, or volleyball. In the summer, each child participates in kayaking, mountaineering, or volleyball. Nikki and Otto do not participate in the same sport during the same season. Otto's summer sport is volleyball.", "question": "Which one of the following statements could be true?", "options": [ "A) Nikki's fall sport is mountaineering and Otto's spring sport is running.", "B) Nikki's spring sport is running and her summer sport is mountaineering.", "C) Nikki's spring sport is mountaineering and Otto's fall sport is mountaineering.", "D) Nikki's spring sport is running and Otto's fall sport is mountaineering.", "E) Nikki's summer sport is mountaineering and Otto's spring sport is mountaineering." ], "answer": "C" }, { "id": "ar_lsat_199506_4-G_1_1", "context": "A professor will listen to exactly one speech from each of six students—H, J, K, R, S, and T. The six speeches will be delivered one at a time, consecutively, according to the following conditions: The speeches delivered by H, J, and K, no matter what their order relative to each other, cannot form a sequence of three consecutive speeches. The speeches delivered by R, S, and T, no matter what their order relative to each other, cannot form a sequence of three consecutive speeches. H's speech must be earlier than S's speech. J's speech can be neither first nor sixth. T's speech can be neither immediately before nor immediately after J's speech.", "question": "Which one of the following could be the order, from first to last, in which the students deliver their speeches?", "options": [ "A) H, J, R, S, T, K", "B) H, R, T, K, S, J", "C) K, J, T, H, S, R", "D) R, J, K, T, H, S", "E) T, R, J, S, K, H" ], "answer": "D" }, { "id": "ar_lsat_199506_4-G_1_2", "context": "A professor will listen to exactly one speech from each of six students—H, J, K, R, S, and T. The six speeches will be delivered one at a time, consecutively, according to the following conditions: The speeches delivered by H, J, and K, no matter what their order relative to each other, cannot form a sequence of three consecutive speeches. The speeches delivered by R, S, and T, no matter what their order relative to each other, cannot form a sequence of three consecutive speeches. H's speech must be earlier than S's speech. J's speech can be neither first nor sixth. T's speech can be neither immediately before nor immediately after J's speech.", "question": "If T delivers the third speech, which one of the following must be true?", "options": [ "A) H delivers the first speech.", "B) J delivers the fifth speech.", "C) K delivers the fourth speech.", "D) R delivers the sixth speech.", "E) S delivers the fourth speech." ], "answer": "B" }, { "id": "ar_lsat_199506_4-G_1_3", "context": "A professor will listen to exactly one speech from each of six students—H, J, K, R, S, and T. The six speeches will be delivered one at a time, consecutively, according to the following conditions: The speeches delivered by H, J, and K, no matter what their order relative to each other, cannot form a sequence of three consecutive speeches. The speeches delivered by R, S, and T, no matter what their order relative to each other, cannot form a sequence of three consecutive speeches. H's speech must be earlier than S's speech. J's speech can be neither first nor sixth. T's speech can be neither immediately before nor immediately after J's speech.", "question": "If S delivers the third speech and T delivers the fourth speech, then which one of the following must be true?", "options": [ "A) H delivers the second speech.", "B) J delivers the fifth speech.", "C) K delivers the fifth speech.", "D) K delivers the first speech.", "E) R delivers the first speech." ], "answer": "C" }, { "id": "ar_lsat_199506_4-G_1_4", "context": "A professor will listen to exactly one speech from each of six students—H, J, K, R, S, and T. The six speeches will be delivered one at a time, consecutively, according to the following conditions: The speeches delivered by H, J, and K, no matter what their order relative to each other, cannot form a sequence of three consecutive speeches. The speeches delivered by R, S, and T, no matter what their order relative to each other, cannot form a sequence of three consecutive speeches. H's speech must be earlier than S's speech. J's speech can be neither first nor sixth. T's speech can be neither immediately before nor immediately after J's speech.", "question": "If K delivers the first speech and H delivers the fifth speech, which one of the following must be true?", "options": [ "A) R delivers the third speech.", "B) T delivers the fourth speech.", "C) J's speech is immediately before H's speech.", "D) K's speech is immediately before T's speech.", "E) R's speech is immediately before J's speech." ], "answer": "A" }, { "id": "ar_lsat_199506_4-G_1_5", "context": "A professor will listen to exactly one speech from each of six students—H, J, K, R, S, and T. The six speeches will be delivered one at a time, consecutively, according to the following conditions: The speeches delivered by H, J, and K, no matter what their order relative to each other, cannot form a sequence of three consecutive speeches. The speeches delivered by R, S, and T, no matter what their order relative to each other, cannot form a sequence of three consecutive speeches. H's speech must be earlier than S's speech. J's speech can be neither first nor sixth. T's speech can be neither immediately before nor immediately after J's speech.", "question": "If R's speech is immediately after S's speech and immediately before K's speech, then which one of the following could be true?", "options": [ "A) H's speech is immediately before S's speech.", "B) H's speech is immediately before T's speech.", "C) K's speech is immediately before J's speech.", "D) K's speech is immediately before T's speech.", "E) T's speech is immediately before S's speech." ], "answer": "D" }, { "id": "ar_lsat_199506_4-G_1_6", "context": "A professor will listen to exactly one speech from each of six students—H, J, K, R, S, and T. The six speeches will be delivered one at a time, consecutively, according to the following conditions: The speeches delivered by H, J, and K, no matter what their order relative to each other, cannot form a sequence of three consecutive speeches. The speeches delivered by R, S, and T, no matter what their order relative to each other, cannot form a sequence of three consecutive speeches. H's speech must be earlier than S's speech. J's speech can be neither first nor sixth. T's speech can be neither immediately before nor immediately after J's speech.", "question": "If K delivers the third speech, any of the following could be the student who makes the fourth speech EXCEPT", "options": [ "A) H", "B) J", "C) R", "D) S", "E) T" ], "answer": "A" }, { "id": "ar_lsat_199506_4-G_2_7", "context": "The country of Zendu contains exactly four areas for radar detection: R, S, T, and U. Each detection area is circular and falls completely within Zendu. Part of R intersects T; part of S also intersects T; R does not intersect S. Area U is completely within R and also completely within T. At noon exactly four planes J, K, L, M—are over Zendu, in a manner consistent with the following statements: Each plane is in at least one of the four areas. J is in area S. K is not in any detection area that J is in. L is not in any detection area that M is in. M is in exactly one of the areas.", "question": "Which one of the following could be a complete listing of the planes located in the four areas at noon, with each plane listed in every area in which it is located?", "options": [ "A) R: J, L; S: J, M; T: L; U: L", "B) R: J, L; S: K; T: M; U: none", "C) R: K; S: J; T: L; U: M", "D) R: K, M; S: J, L; T: J; U: none", "E) R: M; S: J, K; T: J, L; U: none" ], "answer": "D" }, { "id": "ar_lsat_199506_4-G_2_8", "context": "The country of Zendu contains exactly four areas for radar detection: R, S, T, and U. Each detection area is circular and falls completely within Zendu. Part of R intersects T; part of S also intersects T; R does not intersect S. Area U is completely within R and also completely within T. At noon exactly four planes J, K, L, M—are over Zendu, in a manner consistent with the following statements: Each plane is in at least one of the four areas. J is in area S. K is not in any detection area that J is in. L is not in any detection area that M is in. M is in exactly one of the areas.", "question": "If at noon K is within exactly two of the four areas, then which one of the following CANNOT be true at that time?", "options": [ "A) J is within area T.", "B) K is within area R.", "C) K is within area T.", "D) L is within area R.", "E) L is within area T." ], "answer": "A" }, { "id": "ar_lsat_199506_4-G_2_9", "context": "The country of Zendu contains exactly four areas for radar detection: R, S, T, and U. Each detection area is circular and falls completely within Zendu. Part of R intersects T; part of S also intersects T; R does not intersect S. Area U is completely within R and also completely within T. At noon exactly four planes J, K, L, M—are over Zendu, in a manner consistent with the following statements: Each plane is in at least one of the four areas. J is in area S. K is not in any detection area that J is in. L is not in any detection area that M is in. M is in exactly one of the areas.", "question": "Which one of the following is a complete and accurate list of those planes any one of which could be within area T at noon?", "options": [ "A) M", "B) J, L", "C) J, L, M", "D) K, L, M", "E) J, K, L, M" ], "answer": "E" }, { "id": "ar_lsat_199506_4-G_2_10", "context": "The country of Zendu contains exactly four areas for radar detection: R, S, T, and U. Each detection area is circular and falls completely within Zendu. Part of R intersects T; part of S also intersects T; R does not intersect S. Area U is completely within R and also completely within T. At noon exactly four planes J, K, L, M—are over Zendu, in a manner consistent with the following statements: Each plane is in at least one of the four areas. J is in area S. K is not in any detection area that J is in. L is not in any detection area that M is in. M is in exactly one of the areas.", "question": "Which one of the following statements CANNOT be true at noon about the planes?", "options": [ "A) K is within area T.", "B) K is within area U.", "C) L is within area R.", "D) M is within area R.", "E) M is within area U." ], "answer": "E" }, { "id": "ar_lsat_199506_4-G_2_11", "context": "The country of Zendu contains exactly four areas for radar detection: R, S, T, and U. Each detection area is circular and falls completely within Zendu. Part of R intersects T; part of S also intersects T; R does not intersect S. Area U is completely within R and also completely within T. At noon exactly four planes J, K, L, M—are over Zendu, in a manner consistent with the following statements: Each plane is in at least one of the four areas. J is in area S. K is not in any detection area that J is in. L is not in any detection area that M is in. M is in exactly one of the areas.", "question": "It CANNOT be true that at noon there is at least one plane that is within both area", "options": [ "A) R and area T", "B) R and area U", "C) S and area T", "D) S and area U", "E) T and area U" ], "answer": "D" }, { "id": "ar_lsat_199506_4-G_2_12", "context": "The country of Zendu contains exactly four areas for radar detection: R, S, T, and U. Each detection area is circular and falls completely within Zendu. Part of R intersects T; part of S also intersects T; R does not intersect S. Area U is completely within R and also completely within T. At noon exactly four planes J, K, L, M—are over Zendu, in a manner consistent with the following statements: Each plane is in at least one of the four areas. J is in area S. K is not in any detection area that J is in. L is not in any detection area that M is in. M is in exactly one of the areas.", "question": "If at noon M is within area T, then which one of the following statements CANNOT be true at that time?", "options": [ "A) J is within area T.", "B) L is within area R.", "C) L is within area S.", "D) K is within exactly two areas.", "E) L is within exactly two areas." ], "answer": "E" }, { "id": "ar_lsat_199506_4-G_2_13", "context": "The country of Zendu contains exactly four areas for radar detection: R, S, T, and U. Each detection area is circular and falls completely within Zendu. Part of R intersects T; part of S also intersects T; R does not intersect S. Area U is completely within R and also completely within T. At noon exactly four planes J, K, L, M—are over Zendu, in a manner consistent with the following statements: Each plane is in at least one of the four areas. J is in area S. K is not in any detection area that J is in. L is not in any detection area that M is in. M is in exactly one of the areas.", "question": "If at noon plane L is within exactly three of the areas, which one of the following could be true at that time?", "options": [ "A) J is within exactly two of the areas.", "B) J is within exactly three of the areas.", "C) K is within area S.", "D) M is within area R.", "E) M is within area T." ], "answer": "A" }, { "id": "ar_lsat_199506_4-G_3_14", "context": "Four people—Fritz, Gina, Helen, and Jerry—have formed a car pool to commute to work together six days a week from Monday through Saturday. Each day exactly one of the people drives. The schedule of the car pool's drivers for any given week must meet the following conditions: Each person drives on at least one day. No person drives on two consecutive days. Fritz does not drive on Monday. Jerry drives on Wednesday or Saturday or both, and he may also drive on other days. If Gina drives on Monday, then Jerry does not drive on Saturday.", "question": "Which one of the following could be the schedule of drivers for one week, for the days Monday through Saturday, respectively?", "options": [ "A) Gina, Fritz, Jerry, Helen, Gina, Gina", "B) Gina, Fritz, Jerry, Helen, Fritz, Jerry", "C) Helen, Fritz, Gina, Jerry, Helen, Fritz", "D) Helen, Gina, Jerry, Fritz, Helen, Fritz", "E) Helen, Gina, Jerry, Helen, Jerry, Gina" ], "answer": "D" }, { "id": "ar_lsat_199506_4-G_3_15", "context": "Four people—Fritz, Gina, Helen, and Jerry—have formed a car pool to commute to work together six days a week from Monday through Saturday. Each day exactly one of the people drives. The schedule of the car pool's drivers for any given week must meet the following conditions: Each person drives on at least one day. No person drives on two consecutive days. Fritz does not drive on Monday. Jerry drives on Wednesday or Saturday or both, and he may also drive on other days. If Gina drives on Monday, then Jerry does not drive on Saturday.", "question": "Which one of the following could be true of one week's schedule of drivers?", "options": [ "A) Fritz drives on both Wednesday and Saturday.", "B) Gina drives on both Monday and Wednesday.", "C) Jerry drives on both Tuesday and Friday.", "D) Gina drives on Monday and Jerry drives on Thursday.", "E) Jerry drives on Wednesday and Gina drives on Saturday." ], "answer": "E" }, { "id": "ar_lsat_199506_4-G_3_16", "context": "Four people—Fritz, Gina, Helen, and Jerry—have formed a car pool to commute to work together six days a week from Monday through Saturday. Each day exactly one of the people drives. The schedule of the car pool's drivers for any given week must meet the following conditions: Each person drives on at least one day. No person drives on two consecutive days. Fritz does not drive on Monday. Jerry drives on Wednesday or Saturday or both, and he may also drive on other days. If Gina drives on Monday, then Jerry does not drive on Saturday.", "question": "If during one week Jerry drives on Wednesday and Saturday only, which one of the following must be true of that week?", "options": [ "A) Fritz drives on Tuesday.", "B) Gina drives on Friday.", "C) Helen drives on Monday.", "D) Fritz drives on exactly two days.", "E) Helen drives on exactly two days." ], "answer": "C" }, { "id": "ar_lsat_199506_4-G_3_17", "context": "Four people—Fritz, Gina, Helen, and Jerry—have formed a car pool to commute to work together six days a week from Monday through Saturday. Each day exactly one of the people drives. The schedule of the car pool's drivers for any given week must meet the following conditions: Each person drives on at least one day. No person drives on two consecutive days. Fritz does not drive on Monday. Jerry drives on Wednesday or Saturday or both, and he may also drive on other days. If Gina drives on Monday, then Jerry does not drive on Saturday.", "question": "If during one week Gina drives on Monday and Saturday only, which one of the following must be true of that week?", "options": [ "A) One other person besides Gina drives on exactly two days.", "B) The person who drives on Wednesday does not drive on Friday.", "C) Helen drives on a day immediately before a day on which Fritz drives.", "D) Either Fritz or Helen drives on Friday.", "E) Either Helen or Jerry drives on Tuesday." ], "answer": "A" }, { "id": "ar_lsat_199506_4-G_3_18", "context": "Four people—Fritz, Gina, Helen, and Jerry—have formed a car pool to commute to work together six days a week from Monday through Saturday. Each day exactly one of the people drives. The schedule of the car pool's drivers for any given week must meet the following conditions: Each person drives on at least one day. No person drives on two consecutive days. Fritz does not drive on Monday. Jerry drives on Wednesday or Saturday or both, and he may also drive on other days. If Gina drives on Monday, then Jerry does not drive on Saturday.", "question": "Which one of the following CANNOT be true of one week's schedule of drivers?", "options": [ "A) Fritz drives on Tuesday and Gina drives on Friday.", "B) Gina drives on Monday and Jerry drives on Tuesday.", "C) Gina drives on Monday and Jerry drives on Friday.", "D) Helen drives on Monday and Jerry drives on Tuesday.", "E) Helen drives on Tuesday and Jerry drives on Friday." ], "answer": "B" }, { "id": "ar_lsat_199506_4-G_3_19", "context": "Four people—Fritz, Gina, Helen, and Jerry—have formed a car pool to commute to work together six days a week from Monday through Saturday. Each day exactly one of the people drives. The schedule of the car pool's drivers for any given week must meet the following conditions: Each person drives on at least one day. No person drives on two consecutive days. Fritz does not drive on Monday. Jerry drives on Wednesday or Saturday or both, and he may also drive on other days. If Gina drives on Monday, then Jerry does not drive on Saturday.", "question": "If during one week Fritz drives exactly twice but he drives on neither Tuesday nor Wednesday, which one of the following could be true of that week?", "options": [ "A) One person drives exactly three times during the week.", "B) Three people drive exactly one time each during the week.", "C) Jerry drives on no day that is immediately before a day on which Fritz drives.", "D) Gina drives on Wednesday.", "E) Jerry drives on Friday." ], "answer": "E" }, { "id": "ar_lsat_199506_4-G_4_20", "context": "Five experienced plumbers—Frank, Gene, Jill, Kathy, and Mark—and four inexperienced plumbers—Roberta, Sally, Tim, and Vernon—must decide which of them will be assigned to four work teams of exactly two plumbers each. Assignments must meet the following restrictions: Each plumber is assigned to at most one team. At least one plumber on each team must be experienced. Neither Mark nor Roberta nor Vernon can be assigned to a team with Frank. If Tim is assigned to a team, either Gene or Kathy must be assigned to that team. Jill cannot be assigned to a team with Roberta.", "question": "Which one of the following is an inexperienced plumber who can be assigned to a team with Frank?", "options": [ "A) Kathy", "B) Roberta", "C) Sally", "D) Tim", "E) Vernon" ], "answer": "C" }, { "id": "ar_lsat_199506_4-G_4_21", "context": "Five experienced plumbers—Frank, Gene, Jill, Kathy, and Mark—and four inexperienced plumbers—Roberta, Sally, Tim, and Vernon—must decide which of them will be assigned to four work teams of exactly two plumbers each. Assignments must meet the following restrictions: Each plumber is assigned to at most one team. At least one plumber on each team must be experienced. Neither Mark nor Roberta nor Vernon can be assigned to a team with Frank. If Tim is assigned to a team, either Gene or Kathy must be assigned to that team. Jill cannot be assigned to a team with Roberta.", "question": "Which one of the following is a pair of plumbers who can be assigned together to a team?", "options": [ "A) Frank and Roberta", "B) Frank and Vernon", "C) Jill and Mark", "D) Roberta and Tim", "E) Sally and Vernon" ], "answer": "C" }, { "id": "ar_lsat_199506_4-G_4_22", "context": "Five experienced plumbers—Frank, Gene, Jill, Kathy, and Mark—and four inexperienced plumbers—Roberta, Sally, Tim, and Vernon—must decide which of them will be assigned to four work teams of exactly two plumbers each. Assignments must meet the following restrictions: Each plumber is assigned to at most one team. At least one plumber on each team must be experienced. Neither Mark nor Roberta nor Vernon can be assigned to a team with Frank. If Tim is assigned to a team, either Gene or Kathy must be assigned to that team. Jill cannot be assigned to a team with Roberta.", "question": "If Tim is assigned to a team, and if Sally is assigned to a team with a plumber who could have been assigned to a team with Tim, then the only plumber with whom Frank could be assigned to a team is", "options": [ "A) Gene", "B) Jill", "C) Mark", "D) Roberta", "E) Vernon" ], "answer": "B" }, { "id": "ar_lsat_199506_4-G_4_23", "context": "Five experienced plumbers—Frank, Gene, Jill, Kathy, and Mark—and four inexperienced plumbers—Roberta, Sally, Tim, and Vernon—must decide which of them will be assigned to four work teams of exactly two plumbers each. Assignments must meet the following restrictions: Each plumber is assigned to at most one team. At least one plumber on each team must be experienced. Neither Mark nor Roberta nor Vernon can be assigned to a team with Frank. If Tim is assigned to a team, either Gene or Kathy must be assigned to that team. Jill cannot be assigned to a team with Roberta.", "question": "If Gene is not assigned to a team, then Jill must be assigned to a team with", "options": [ "A) Vernon", "B) Tim", "C) Mark", "D) Kathy", "E) Frank" ], "answer": "A" }, { "id": "ar_lsat_199506_4-G_4_24", "context": "Five experienced plumbers—Frank, Gene, Jill, Kathy, and Mark—and four inexperienced plumbers—Roberta, Sally, Tim, and Vernon—must decide which of them will be assigned to four work teams of exactly two plumbers each. Assignments must meet the following restrictions: Each plumber is assigned to at most one team. At least one plumber on each team must be experienced. Neither Mark nor Roberta nor Vernon can be assigned to a team with Frank. If Tim is assigned to a team, either Gene or Kathy must be assigned to that team. Jill cannot be assigned to a team with Roberta.", "question": "If all of the inexperienced plumbers are assigned to teams, and neither Roberta nor Tim nor Vernon is assigned to a team with Gene, then Sally must be assigned to a team with either", "options": [ "A) Frank or else Gene", "B) Frank or else Mark", "C) Gene or else Mark", "D) Jill or else Kathy", "E) Jill or else Mark" ], "answer": "A" }, { "id": "ar_lsat_199509_1-G_1_1", "context": "Eight new students—R, S, T, V, W, X, Y, Z—are being divided among exactly three classes—class 1, class 2, and class 3. Classes 1 and 2 will gain three new students each; class 3 will gain two new students. The following restrictions apply: R must be added to class 1. S must be added to class 3. Neither S nor W can be added to the same class as Y. V cannot be added to the same class as Z. If T is added to class 1, Z must also be added to class 1.", "question": "Which one of the following is an acceptable assignment of students to the three classes?", "options": [ "A) R, T, Y V, W, X S, Z", "B) R, T, Z S, V, Y W, X", "C) R, W, X V, Y, Z S, T", "D) R, X, Z T, V, Y S, W", "E) R, X, Z V, W, Y S, T" ], "answer": "D" }, { "id": "ar_lsat_199509_1-G_1_2", "context": "Eight new students—R, S, T, V, W, X, Y, Z—are being divided among exactly three classes—class 1, class 2, and class 3. Classes 1 and 2 will gain three new students each; class 3 will gain two new students. The following restrictions apply: R must be added to class 1. S must be added to class 3. Neither S nor W can be added to the same class as Y. V cannot be added to the same class as Z. If T is added to class 1, Z must also be added to class 1.", "question": "Which one of the following is a complete and accurate list of classes any one of which could be the class to which V is added?", "options": [ "A) class 1", "B) class 3", "C) class 1, class 3", "D) class 2, class 3", "E) class 1, class 2, class 3" ], "answer": "E" }, { "id": "ar_lsat_199509_1-G_1_3", "context": "Eight new students—R, S, T, V, W, X, Y, Z—are being divided among exactly three classes—class 1, class 2, and class 3. Classes 1 and 2 will gain three new students each; class 3 will gain two new students. The following restrictions apply: R must be added to class 1. S must be added to class 3. Neither S nor W can be added to the same class as Y. V cannot be added to the same class as Z. If T is added to class 1, Z must also be added to class 1.", "question": "If X is added to class 1, which one of the following is a student who must be added to class 2?", "options": [ "A) T", "B) V", "C) W", "D) Y", "E) Z" ], "answer": "A" }, { "id": "ar_lsat_199509_1-G_1_4", "context": "Eight new students—R, S, T, V, W, X, Y, Z—are being divided among exactly three classes—class 1, class 2, and class 3. Classes 1 and 2 will gain three new students each; class 3 will gain two new students. The following restrictions apply: R must be added to class 1. S must be added to class 3. Neither S nor W can be added to the same class as Y. V cannot be added to the same class as Z. If T is added to class 1, Z must also be added to class 1.", "question": "If X is added to class 3, each of the following is a pair of students who can be added to class 1 EXCEPT", "options": [ "A) Y and Z", "B) W and Z", "C) V and Y", "D) V and W", "E) T and Z" ], "answer": "E" }, { "id": "ar_lsat_199509_1-G_1_5", "context": "Eight new students—R, S, T, V, W, X, Y, Z—are being divided among exactly three classes—class 1, class 2, and class 3. Classes 1 and 2 will gain three new students each; class 3 will gain two new students. The following restrictions apply: R must be added to class 1. S must be added to class 3. Neither S nor W can be added to the same class as Y. V cannot be added to the same class as Z. If T is added to class 1, Z must also be added to class 1.", "question": "If T is added to class 3, which one of the following is a student who must be added to class 2?", "options": [ "A) V", "B) W", "C) X", "D) Y", "E) Z" ], "answer": "C" }, { "id": "ar_lsat_199509_1-G_1_6", "context": "Eight new students—R, S, T, V, W, X, Y, Z—are being divided among exactly three classes—class 1, class 2, and class 3. Classes 1 and 2 will gain three new students each; class 3 will gain two new students. The following restrictions apply: R must be added to class 1. S must be added to class 3. Neither S nor W can be added to the same class as Y. V cannot be added to the same class as Z. If T is added to class 1, Z must also be added to class 1.", "question": "Which one of the following must be true?", "options": [ "A) If T and X are added to class 2, V is added to class 3.", "B) If V and W are added to class 1, T is added to class 3.", "C) If V and W are added to class 1, Z is added to class 3.", "D) If V and X are added to class 1, W is added to class 3.", "E) If Y and Z are added to class 2, X is added to class 2." ], "answer": "D" }, { "id": "ar_lsat_199509_1-G_2_7", "context": "Four lions—F, G, H, J—and two tigers—K and M—will be assigned to exactly six stalls, one animal per stall. The stalls are arranged as follows: First Row: 1 2 3 Second Row: 4 5 6 The only stalls that face each other are stalls 1 and 4, stalls 2 and 5, and stalls 3 and 6. The following conditions apply: The tigers' stalls cannot face each other. A lion must be assigned to stall 1. H must be assigned to stall 6. J must be assigned to a stall numbered one higher than K's stall. K cannot be assigned to the stall that faces H's stall.", "question": "Which one of the following must be true?", "options": [ "A) F is assigned to an even-numbered stall.", "B) F is assigned to stall 1.", "C) J is assigned to stall 2 or else stall 3.", "D) J is assigned to stall 3 or else stall 4.", "E) K is assigned to stall 2 or else stall 4." ], "answer": "E" }, { "id": "ar_lsat_199509_1-G_2_8", "context": "Four lions—F, G, H, J—and two tigers—K and M—will be assigned to exactly six stalls, one animal per stall. The stalls are arranged as follows: First Row: 1 2 3 Second Row: 4 5 6 The only stalls that face each other are stalls 1 and 4, stalls 2 and 5, and stalls 3 and 6. The following conditions apply: The tigers' stalls cannot face each other. A lion must be assigned to stall 1. H must be assigned to stall 6. J must be assigned to a stall numbered one higher than K's stall. K cannot be assigned to the stall that faces H's stall.", "question": "Which one of the following could be true?", "options": [ "A) F's stall is numbered one higher than J's stall.", "B) H's stall faces M's stall.", "C) J is assigned to stall 4.", "D) K's stall faces J's stall.", "E) K's stall is in a different row than J's stall." ], "answer": "B" }, { "id": "ar_lsat_199509_1-G_2_9", "context": "Four lions—F, G, H, J—and two tigers—K and M—will be assigned to exactly six stalls, one animal per stall. The stalls are arranged as follows: First Row: 1 2 3 Second Row: 4 5 6 The only stalls that face each other are stalls 1 and 4, stalls 2 and 5, and stalls 3 and 6. The following conditions apply: The tigers' stalls cannot face each other. A lion must be assigned to stall 1. H must be assigned to stall 6. J must be assigned to a stall numbered one higher than K's stall. K cannot be assigned to the stall that faces H's stall.", "question": "Which one of the following must be true?", "options": [ "A) A tiger is assigned to stall 2.", "B) A tiger is assigned to stall 5.", "C) K's stall is in a different row from M's stall.", "D) Each tiger is assigned to an even-numbered stall.", "E) Each lion is assigned to a stall that faces a tiger's stall." ], "answer": "C" }, { "id": "ar_lsat_199509_1-G_2_10", "context": "Four lions—F, G, H, J—and two tigers—K and M—will be assigned to exactly six stalls, one animal per stall. The stalls are arranged as follows: First Row: 1 2 3 Second Row: 4 5 6 The only stalls that face each other are stalls 1 and 4, stalls 2 and 5, and stalls 3 and 6. The following conditions apply: The tigers' stalls cannot face each other. A lion must be assigned to stall 1. H must be assigned to stall 6. J must be assigned to a stall numbered one higher than K's stall. K cannot be assigned to the stall that faces H's stall.", "question": "If K's stall is in the same row as H's stall, which one of the following must be true?", "options": [ "A) F's stall is in the same row as J's stall.", "B) F is assigned to a lower-numbered stall than G.", "C) G is assigned to a lower-numbered stall than M.", "D) G's stall faces H's stall.", "E) M's stall is in the same row as G's stall." ], "answer": "E" }, { "id": "ar_lsat_199509_1-G_2_11", "context": "Four lions—F, G, H, J—and two tigers—K and M—will be assigned to exactly six stalls, one animal per stall. The stalls are arranged as follows: First Row: 1 2 3 Second Row: 4 5 6 The only stalls that face each other are stalls 1 and 4, stalls 2 and 5, and stalls 3 and 6. The following conditions apply: The tigers' stalls cannot face each other. A lion must be assigned to stall 1. H must be assigned to stall 6. J must be assigned to a stall numbered one higher than K's stall. K cannot be assigned to the stall that faces H's stall.", "question": "If J is assigned to stall 3, which one of the following could be true?", "options": [ "A) F is assigned to stall 2.", "B) F is assigned to stall 4.", "C) G is assigned to stall 1.", "D) G is assigned to stall 4.", "E) M is assigned to stall 5." ], "answer": "C" }, { "id": "ar_lsat_199509_1-G_2_12", "context": "Four lions—F, G, H, J—and two tigers—K and M—will be assigned to exactly six stalls, one animal per stall. The stalls are arranged as follows: First Row: 1 2 3 Second Row: 4 5 6 The only stalls that face each other are stalls 1 and 4, stalls 2 and 5, and stalls 3 and 6. The following conditions apply: The tigers' stalls cannot face each other. A lion must be assigned to stall 1. H must be assigned to stall 6. J must be assigned to a stall numbered one higher than K's stall. K cannot be assigned to the stall that faces H's stall.", "question": "Which one of the following must be true?", "options": [ "A) A tiger is assigned to stall 2.", "B) A tiger is assigned to stall 4.", "C) A tiger is assigned to stall 5.", "D) A lion is assigned to stall 3.", "E) A lion is assigned to stall 4." ], "answer": "B" }, { "id": "ar_lsat_199509_1-G_3_13", "context": "On an undeveloped street, a developer will simultaneously build four houses on one side, numbered consecutively 1, 3, 5, and 7, and fos on the opposite side, numbered consecutively 2, 4, 6, and 8. Houses 2, 4, 6, and 8 will face houses 1, 3, 5, and 7, respectively. Each house will be exactly one of three styles—ranch, split-level, or Tudor—according to the following conditions: Adjacent houses are of different styles. No split-level house faces another split-level house. Every ranch house has at least one Tudor house adjacent to it. House 3 is a ranch house. House 6 is a split-level house.", "question": "Any of the following could be a Tudor house EXCEPT house", "options": [ "A) 1", "B) 2", "C) 4", "D) 7", "E) 8" ], "answer": "D" }, { "id": "ar_lsat_199509_1-G_3_14", "context": "On an undeveloped street, a developer will simultaneously build four houses on one side, numbered consecutively 1, 3, 5, and 7, and fos on the opposite side, numbered consecutively 2, 4, 6, and 8. Houses 2, 4, 6, and 8 will face houses 1, 3, 5, and 7, respectively. Each house will be exactly one of three styles—ranch, split-level, or Tudor—according to the following conditions: Adjacent houses are of different styles. No split-level house faces another split-level house. Every ranch house has at least one Tudor house adjacent to it. House 3 is a ranch house. House 6 is a split-level house.", "question": "If there is one ranch house directly opposite another ranch house, which one of the following could be true?", "options": [ "A) House 8 is a ranch house.", "B) House 7 is a split-level house.", "C) House 4 is a Tudor house.", "D) House 2 is a split-level house.", "E) House 1 is a ranch house." ], "answer": "B" }, { "id": "ar_lsat_199509_1-G_3_15", "context": "On an undeveloped street, a developer will simultaneously build four houses on one side, numbered consecutively 1, 3, 5, and 7, and fos on the opposite side, numbered consecutively 2, 4, 6, and 8. Houses 2, 4, 6, and 8 will face houses 1, 3, 5, and 7, respectively. Each house will be exactly one of three styles—ranch, split-level, or Tudor—according to the following conditions: Adjacent houses are of different styles. No split-level house faces another split-level house. Every ranch house has at least one Tudor house adjacent to it. House 3 is a ranch house. House 6 is a split-level house.", "question": "If house 4 is a Tudor house, then it could be true that house", "options": [ "A) 1 is a Tudor house", "B) 2 is a Tudor house", "C) 5 is a ranch house", "D) 7 is a Tudor house", "E) 8 is a ranch house" ], "answer": "A" }, { "id": "ar_lsat_199509_1-G_3_16", "context": "On an undeveloped street, a developer will simultaneously build four houses on one side, numbered consecutively 1, 3, 5, and 7, and fos on the opposite side, numbered consecutively 2, 4, 6, and 8. Houses 2, 4, 6, and 8 will face houses 1, 3, 5, and 7, respectively. Each house will be exactly one of three styles—ranch, split-level, or Tudor—according to the following conditions: Adjacent houses are of different styles. No split-level house faces another split-level house. Every ranch house has at least one Tudor house adjacent to it. House 3 is a ranch house. House 6 is a split-level house.", "question": "On the street, there could be exactly", "options": [ "A) one ranch house", "B) one Tudor house", "C) two Tudor houses", "D) four ranch houses", "E) five ranch houses" ], "answer": "A" }, { "id": "ar_lsat_199509_1-G_3_17", "context": "On an undeveloped street, a developer will simultaneously build four houses on one side, numbered consecutively 1, 3, 5, and 7, and fos on the opposite side, numbered consecutively 2, 4, 6, and 8. Houses 2, 4, 6, and 8 will face houses 1, 3, 5, and 7, respectively. Each house will be exactly one of three styles—ranch, split-level, or Tudor—according to the following conditions: Adjacent houses are of different styles. No split-level house faces another split-level house. Every ranch house has at least one Tudor house adjacent to it. House 3 is a ranch house. House 6 is a split-level house.", "question": "If no house faces a house of the same style, then it must be true that house", "options": [ "A) 1 is a split-level house", "B) 1 is a Tudor house", "C) 2 is a ranch house", "D) 2 is a split-level house", "E) 4 is a Tudor house" ], "answer": "E" }, { "id": "ar_lsat_199509_1-G_3_18", "context": "On an undeveloped street, a developer will simultaneously build four houses on one side, numbered consecutively 1, 3, 5, and 7, and fos on the opposite side, numbered consecutively 2, 4, 6, and 8. Houses 2, 4, 6, and 8 will face houses 1, 3, 5, and 7, respectively. Each house will be exactly one of three styles—ranch, split-level, or Tudor—according to the following conditions: Adjacent houses are of different styles. No split-level house faces another split-level house. Every ranch house has at least one Tudor house adjacent to it. House 3 is a ranch house. House 6 is a split-level house.", "question": "If the condition requiring house 6 to be a split-level house is suspended but all other original conditions remain the same, then any of the following could be an accurate list of the styles of houses 2, 4, 6, and 8, respectively, EXCEPT:", "options": [ "A) ranch, split-level, ranch, Tudor", "B) split-level, ranch, Tudor, split-level", "C) split-level, Tudor, ranch, split-level", "D) Tudor, ranch, Tudor, split-level", "E) Tudor, split-level, ranch, Tudor" ], "answer": "A" }, { "id": "ar_lsat_199509_1-G_4_19", "context": "Within a tennis league each of five teams occupies one of five positions, numbered 1 through 5 in order of rank, with number 1 as the highest position. The teams are initially in the order R, J, S, M, L, with R in position 1. Teams change positions only when a lower-positioned team defeats a higher-positioned team. The rules are as follows: Matches are played alternately in odd-position rounds and in even-position rounds. In an odd-position round, teams in positions 3 and 5 play against teams positioned immediately above them. In an even-position round, teams in positions 2 and 4 play against teams positioned immediately above them. When a lower-positioned team defeats a higher-positioned team, the two teams switch positions after the round is completed.", "question": "Which one of the following could be the order of teams, from position 1 through position 5 respectively, after exactly one round of even-position matches if no odd-position round has yet been played?", "options": [ "A) J, R, M, L, S", "B) J, R, S, L, M", "C) R, J, M, L, S", "D) R, J, M, S, L", "E) R, S, J, L, M" ], "answer": "D" }, { "id": "ar_lsat_199509_1-G_4_20", "context": "Within a tennis league each of five teams occupies one of five positions, numbered 1 through 5 in order of rank, with number 1 as the highest position. The teams are initially in the order R, J, S, M, L, with R in position 1. Teams change positions only when a lower-positioned team defeats a higher-positioned team. The rules are as follows: Matches are played alternately in odd-position rounds and in even-position rounds. In an odd-position round, teams in positions 3 and 5 play against teams positioned immediately above them. In an even-position round, teams in positions 2 and 4 play against teams positioned immediately above them. When a lower-positioned team defeats a higher-positioned team, the two teams switch positions after the round is completed.", "question": "If exactly two rounds of matches have been played, beginning with an odd-position round, and if the lower-positioned teams have won every match in those two rounds, then each of the following must be true EXCEPT:", "options": [ "A) L is one position higher than J.", "B) R is one position higher than L.", "C) S is one position higher than R.", "D) J is in position 4.", "E) M is in position 3." ], "answer": "E" }, { "id": "ar_lsat_199509_1-G_4_21", "context": "Within a tennis league each of five teams occupies one of five positions, numbered 1 through 5 in order of rank, with number 1 as the highest position. The teams are initially in the order R, J, S, M, L, with R in position 1. Teams change positions only when a lower-positioned team defeats a higher-positioned team. The rules are as follows: Matches are played alternately in odd-position rounds and in even-position rounds. In an odd-position round, teams in positions 3 and 5 play against teams positioned immediately above them. In an even-position round, teams in positions 2 and 4 play against teams positioned immediately above them. When a lower-positioned team defeats a higher-positioned team, the two teams switch positions after the round is completed.", "question": "Which one of the following could be true after exactly two rounds of matches have been played?", "options": [ "A) J has won two matches.", "B) L has lost two matches.", "C) R has won two matches.", "D) L's only match was played against J.", "E) M played against S in two matches." ], "answer": "A" }, { "id": "ar_lsat_199509_1-G_4_22", "context": "Within a tennis league each of five teams occupies one of five positions, numbered 1 through 5 in order of rank, with number 1 as the highest position. The teams are initially in the order R, J, S, M, L, with R in position 1. Teams change positions only when a lower-positioned team defeats a higher-positioned team. The rules are as follows: Matches are played alternately in odd-position rounds and in even-position rounds. In an odd-position round, teams in positions 3 and 5 play against teams positioned immediately above them. In an even-position round, teams in positions 2 and 4 play against teams positioned immediately above them. When a lower-positioned team defeats a higher-positioned team, the two teams switch positions after the round is completed.", "question": "If after exactly three rounds of matches M is in position 4, and J and L have won all of their matches, then which one of the following can be true?", "options": [ "A) J is in position 2.", "B) J is in position 3.", "C) L is in position 2.", "D) R is in position 1.", "E) S is in position 3." ], "answer": "C" }, { "id": "ar_lsat_199509_1-G_4_23", "context": "Within a tennis league each of five teams occupies one of five positions, numbered 1 through 5 in order of rank, with number 1 as the highest position. The teams are initially in the order R, J, S, M, L, with R in position 1. Teams change positions only when a lower-positioned team defeats a higher-positioned team. The rules are as follows: Matches are played alternately in odd-position rounds and in even-position rounds. In an odd-position round, teams in positions 3 and 5 play against teams positioned immediately above them. In an even-position round, teams in positions 2 and 4 play against teams positioned immediately above them. When a lower-positioned team defeats a higher-positioned team, the two teams switch positions after the round is completed.", "question": "If after exactly three rounds M has won three matches and the rankings of the other four teams relative to each other remain the same, then which one of the following must be in position 3?", "options": [ "A) J", "B) L", "C) M", "D) R", "E) S" ], "answer": "A" }, { "id": "ar_lsat_199509_1-G_4_24", "context": "Within a tennis league each of five teams occupies one of five positions, numbered 1 through 5 in order of rank, with number 1 as the highest position. The teams are initially in the order R, J, S, M, L, with R in position 1. Teams change positions only when a lower-positioned team defeats a higher-positioned team. The rules are as follows: Matches are played alternately in odd-position rounds and in even-position rounds. In an odd-position round, teams in positions 3 and 5 play against teams positioned immediately above them. In an even-position round, teams in positions 2 and 4 play against teams positioned immediately above them. When a lower-positioned team defeats a higher-positioned team, the two teams switch positions after the round is completed.", "question": "If after exactly three rounds the teams, in order from first to fifth position, are R, J, L, S, and M, then which one of the following could be the order, from first to fifth position, of the teams after the second round?", "options": [ "A) J, R, M, S, L", "B) J, L, S, M, R", "C) R, J, S, L, M", "D) R, L, M, S, J", "E) R, M, L, S, J" ], "answer": "C" }, { "id": "ar_lsat_199512_1-G_1_1", "context": "On Wednesday a physician will have exactly one appointment with seven patients—P, Q, R, S, T, U, W—one patient per appointment. The schedule of appointments, chronologically numbered 1 through 7, must meet the following conditions: Q's appointment is at some time before W's appointment. U's appointment is at some time before P's appointment. Either R or T has appointment 3. S's appointment is either the appointment immediately before or the appointment immediately after R's appointment.", "question": "Which one of the following is an acceptable schedule of appointments in order from 1 to 7?", "options": [ "A) Q, S, R, P, W, U, T", "B) Q, U, W, S, R, T, P", "C) S, Q, R, T, W, U, P", "D) T, U, R, S, W, P, Q", "E) U, Q, T, P, R, S, W" ], "answer": "E" }, { "id": "ar_lsat_199512_1-G_1_2", "context": "On Wednesday a physician will have exactly one appointment with seven patients—P, Q, R, S, T, U, W—one patient per appointment. The schedule of appointments, chronologically numbered 1 through 7, must meet the following conditions: Q's appointment is at some time before W's appointment. U's appointment is at some time before P's appointment. Either R or T has appointment 3. S's appointment is either the appointment immediately before or the appointment immediately after R's appointment.", "question": "If W has appointment 2 and P has appointment 5, then which one of the following must be true?", "options": [ "A) R has appointment 6.", "B) S has appointment 4.", "C) S has appointment 7.", "D) U has appointment 1.", "E) U has appointment 4." ], "answer": "E" }, { "id": "ar_lsat_199512_1-G_1_3", "context": "On Wednesday a physician will have exactly one appointment with seven patients—P, Q, R, S, T, U, W—one patient per appointment. The schedule of appointments, chronologically numbered 1 through 7, must meet the following conditions: Q's appointment is at some time before W's appointment. U's appointment is at some time before P's appointment. Either R or T has appointment 3. S's appointment is either the appointment immediately before or the appointment immediately after R's appointment.", "question": "If U's appointment is immediately after T's appointment and immediately before R's appointment, then which one of the following must be true?", "options": [ "A) Q's appointment is at some time before P's appointment.", "B) S's appointment is at some time before P's appointment.", "C) S's appointment is immediately before Q's appointment.", "D) W's appointment is immediately before P's appointment.", "E) W's appointment is at some time before S's appointment." ], "answer": "B" }, { "id": "ar_lsat_199512_1-G_1_4", "context": "On Wednesday a physician will have exactly one appointment with seven patients—P, Q, R, S, T, U, W—one patient per appointment. The schedule of appointments, chronologically numbered 1 through 7, must meet the following conditions: Q's appointment is at some time before W's appointment. U's appointment is at some time before P's appointment. Either R or T has appointment 3. S's appointment is either the appointment immediately before or the appointment immediately after R's appointment.", "question": "If P's appointment is immediately before S's appointment, then each of the following could be true EXCEPT:", "options": [ "A) R's appointment is immediately before W's appointment.", "B) T's appointment is immediately before Q's appointment.", "C) U's appointment is immediately before P's appointment.", "D) U's appointment is immediately before Q's appointment.", "E) W's appointment is immediately before T's appointment." ], "answer": "B" }, { "id": "ar_lsat_199512_1-G_1_5", "context": "On Wednesday a physician will have exactly one appointment with seven patients—P, Q, R, S, T, U, W—one patient per appointment. The schedule of appointments, chronologically numbered 1 through 7, must meet the following conditions: Q's appointment is at some time before W's appointment. U's appointment is at some time before P's appointment. Either R or T has appointment 3. S's appointment is either the appointment immediately before or the appointment immediately after R's appointment.", "question": "If T's appointment is immediately after P's appointment and immediately before W's appointment, then which one of the following must be true?", "options": [ "A) W's appointment is at some time before R's appointment.", "B) U's appointment is at some time before R's appointment.", "C) S's appointment is at some time before U's appointment.", "D) R's appointment is at some time before P's appointment.", "E) Q's appointment is at some time before S's appointment." ], "answer": "D" }, { "id": "ar_lsat_199512_1-G_2_6", "context": "Exactly six employees—officers F, G, and H, and supervisors K, L, and M—must be assigned to exactly three committees—Policy, Quality, and Sales—with exactly three employees per committee. Committee assignments must conform to the following conditions: Each committee must have at least one officer assigned to it. Each employee must be assigned to at least one committee. All three officers must be assigned to the Policy Committee. G cannot be assigned to the same committee as L. K must be assigned to the Sales Committee.", "question": "Which one of the following is a group of three employees who can be assigned together to the Sales Committee?", "options": [ "A) F, G, and H", "B) F, G, and M", "C) G, K, and L", "D) H, K, and L", "E) K, L, and M" ], "answer": "D" }, { "id": "ar_lsat_199512_1-G_2_7", "context": "Exactly six employees—officers F, G, and H, and supervisors K, L, and M—must be assigned to exactly three committees—Policy, Quality, and Sales—with exactly three employees per committee. Committee assignments must conform to the following conditions: Each committee must have at least one officer assigned to it. Each employee must be assigned to at least one committee. All three officers must be assigned to the Policy Committee. G cannot be assigned to the same committee as L. K must be assigned to the Sales Committee.", "question": "If H is assigned to exactly one committee, and if no committee has both F and M assigned to it, then it must be true that", "options": [ "A) G and M are both assigned to the Quality Committee", "B) K and L are both assigned to the Sales Committee", "C) K is assigned to exactly two committees", "D) L is assigned to exactly two committees", "E) M is assigned to exactly two committees" ], "answer": "C" }, { "id": "ar_lsat_199512_1-G_2_8", "context": "Exactly six employees—officers F, G, and H, and supervisors K, L, and M—must be assigned to exactly three committees—Policy, Quality, and Sales—with exactly three employees per committee. Committee assignments must conform to the following conditions: Each committee must have at least one officer assigned to it. Each employee must be assigned to at least one committee. All three officers must be assigned to the Policy Committee. G cannot be assigned to the same committee as L. K must be assigned to the Sales Committee.", "question": "Which one of the following CANNOT be true?", "options": [ "A) F is assigned to exactly one committee.", "B) G is assigned to exactly three committees.", "C) H is assigned to exactly three committees.", "D) K is assigned to exactly one committee.", "E) L is assigned to exactly two committees." ], "answer": "B" }, { "id": "ar_lsat_199512_1-G_2_9", "context": "Exactly six employees—officers F, G, and H, and supervisors K, L, and M—must be assigned to exactly three committees—Policy, Quality, and Sales—with exactly three employees per committee. Committee assignments must conform to the following conditions: Each committee must have at least one officer assigned to it. Each employee must be assigned to at least one committee. All three officers must be assigned to the Policy Committee. G cannot be assigned to the same committee as L. K must be assigned to the Sales Committee.", "question": "If F is assigned to exactly three committees, and G is assigned to exactly two committees, then which one of the following must be true?", "options": [ "A) G is assigned to the Quality Committee.", "B) G is assigned to the Sales Committee.", "C) K is assigned to the Quality Committee.", "D) L is assigned to the Sales Committee.", "E) M is assigned to the Quality Committee." ], "answer": "E" }, { "id": "ar_lsat_199512_1-G_2_10", "context": "Exactly six employees—officers F, G, and H, and supervisors K, L, and M—must be assigned to exactly three committees—Policy, Quality, and Sales—with exactly three employees per committee. Committee assignments must conform to the following conditions: Each committee must have at least one officer assigned to it. Each employee must be assigned to at least one committee. All three officers must be assigned to the Policy Committee. G cannot be assigned to the same committee as L. K must be assigned to the Sales Committee.", "question": "Which one of the following is a group of three employees who can be assigned together to the Quality Committee?", "options": [ "A) F, G, and H", "B) F, G, and K", "C) G, H, and K", "D) G, K, and L", "E) H, L, and M" ], "answer": "E" }, { "id": "ar_lsat_199512_1-G_2_11", "context": "Exactly six employees—officers F, G, and H, and supervisors K, L, and M—must be assigned to exactly three committees—Policy, Quality, and Sales—with exactly three employees per committee. Committee assignments must conform to the following conditions: Each committee must have at least one officer assigned to it. Each employee must be assigned to at least one committee. All three officers must be assigned to the Policy Committee. G cannot be assigned to the same committee as L. K must be assigned to the Sales Committee.", "question": "If L is assigned to exactly two committees, which of the following must be true?", "options": [ "A) F is assigned to the Sales Committee.", "B) G is assigned to the Sales Committee.", "C) H is assigned to the Quality Committee.", "D) K is assigned to the Quality Committee.", "E) M is assigned to the Quality Committee." ], "answer": "E" }, { "id": "ar_lsat_199512_1-G_2_12", "context": "Exactly six employees—officers F, G, and H, and supervisors K, L, and M—must be assigned to exactly three committees—Policy, Quality, and Sales—with exactly three employees per committee. Committee assignments must conform to the following conditions: Each committee must have at least one officer assigned to it. Each employee must be assigned to at least one committee. All three officers must be assigned to the Policy Committee. G cannot be assigned to the same committee as L. K must be assigned to the Sales Committee.", "question": "Which one of the following CANNOT be true?", "options": [ "A) F and G are each assigned to exactly one committee.", "B) F and H are each assigned to exactly one committee.", "C) G and H are each assigned to exactly one committee.", "D) F and M are both assigned to the Sales Committee.", "E) G and K are both assigned to the Quality Committee." ], "answer": "B" }, { "id": "ar_lsat_199512_1-G_3_13", "context": "On Tuesday Vladimir and Wendy each eat exactly four separate meals: breakfast, lunch, dinner, and a snack. The following is all that is known about what they eat during that day: At no meal does Vladimir eat the same kind of food as Wendy. Neither of them eats the same kind of food more than once during the day. For breakfast, each eats exactly one of the following: hot cakes, poached eggs, or omelet. For lunch, each eats exactly one of the following: fish, hot cakes, macaroni, or omelet. For dinner, each eats exactly one of the following: fish, hot cakes, macaroni, or omelet. For a snack, each eats exactly one of the following: fish or omelet. Wendy eats an omelet for lunch.", "question": "Which one of the following statements must be true?", "options": [ "A) Vladimir eats fish for lunch.", "B) Vladimir eats fish for dinner.", "C) Vladimir eats fish for his snack.", "D) Wendy eats fish for dinner.", "E) Wendy eats fish for her snack." ], "answer": "E" }, { "id": "ar_lsat_199512_1-G_3_14", "context": "On Tuesday Vladimir and Wendy each eat exactly four separate meals: breakfast, lunch, dinner, and a snack. The following is all that is known about what they eat during that day: At no meal does Vladimir eat the same kind of food as Wendy. Neither of them eats the same kind of food more than once during the day. For breakfast, each eats exactly one of the following: hot cakes, poached eggs, or omelet. For lunch, each eats exactly one of the following: fish, hot cakes, macaroni, or omelet. For dinner, each eats exactly one of the following: fish, hot cakes, macaroni, or omelet. For a snack, each eats exactly one of the following: fish or omelet. Wendy eats an omelet for lunch.", "question": "Vladimir must eat which one of the following foods?", "options": [ "A) fish", "B) hot cakes", "C) macaroni", "D) omelet", "E) poached eggs" ], "answer": "D" }, { "id": "ar_lsat_199512_1-G_3_15", "context": "On Tuesday Vladimir and Wendy each eat exactly four separate meals: breakfast, lunch, dinner, and a snack. The following is all that is known about what they eat during that day: At no meal does Vladimir eat the same kind of food as Wendy. Neither of them eats the same kind of food more than once during the day. For breakfast, each eats exactly one of the following: hot cakes, poached eggs, or omelet. For lunch, each eats exactly one of the following: fish, hot cakes, macaroni, or omelet. For dinner, each eats exactly one of the following: fish, hot cakes, macaroni, or omelet. For a snack, each eats exactly one of the following: fish or omelet. Wendy eats an omelet for lunch.", "question": "If both Vladimir and Wendy eat macaroni on Tuesday, then which one of the following statements could be true?", "options": [ "A) Vladimir eats fish for lunch.", "B) Vladimir eats hot cakes for lunch.", "C) Vladimir eats macaroni for dinner.", "D) Wendy eats hot cakes for breakfast.", "E) Wendy eats hot cakes for dinner." ], "answer": "D" }, { "id": "ar_lsat_199512_1-G_3_16", "context": "On Tuesday Vladimir and Wendy each eat exactly four separate meals: breakfast, lunch, dinner, and a snack. The following is all that is known about what they eat during that day: At no meal does Vladimir eat the same kind of food as Wendy. Neither of them eats the same kind of food more than once during the day. For breakfast, each eats exactly one of the following: hot cakes, poached eggs, or omelet. For lunch, each eats exactly one of the following: fish, hot cakes, macaroni, or omelet. For dinner, each eats exactly one of the following: fish, hot cakes, macaroni, or omelet. For a snack, each eats exactly one of the following: fish or omelet. Wendy eats an omelet for lunch.", "question": "If Wendy does not eat macaroni on Tuesday, then which one of the following statements could be true?", "options": [ "A) Vladimir eats poached eggs for breakfast.", "B) Vladimir eats fish for lunch.", "C) Vladimir eats hot cakes for lunch.", "D) Wendy eats hot cakes for breakfast.", "E) Wendy eats fish for dinner." ], "answer": "B" }, { "id": "ar_lsat_199512_1-G_3_17", "context": "On Tuesday Vladimir and Wendy each eat exactly four separate meals: breakfast, lunch, dinner, and a snack. The following is all that is known about what they eat during that day: At no meal does Vladimir eat the same kind of food as Wendy. Neither of them eats the same kind of food more than once during the day. For breakfast, each eats exactly one of the following: hot cakes, poached eggs, or omelet. For lunch, each eats exactly one of the following: fish, hot cakes, macaroni, or omelet. For dinner, each eats exactly one of the following: fish, hot cakes, macaroni, or omelet. For a snack, each eats exactly one of the following: fish or omelet. Wendy eats an omelet for lunch.", "question": "If Wendy eats poached eggs for breakfast, then which one of the following statements cannot be true?", "options": [ "A) Vladimir eats fish for lunch.", "B) Vladimir eats hot cakes for lunch.", "C) Vladimir eats macaroni for dinner.", "D) Wendy eats hot cakes for dinner.", "E) Wendy eats macaroni for dinner." ], "answer": "B" }, { "id": "ar_lsat_199512_1-G_4_18", "context": "Eight people—Jack, Karen, Laura, Mark, Nick, Owen, Peggy, and Ruth—will be placed on two four-person teams—X and Y—for a relay race that is run in four successive legs: first, second, third, and fourth. The teams race concurrently. Each team member runs exactly one of the legs, one team member per leg, according to the following conditions: Jack is on the same team as Karen. Karen is not on the same team as Nick. Ruth runs an earlier leg of the race than Peggy runs, whether or not they are on the same team as each other. Mark and Nick are both on team Y. Neither Jack nor Mark runs third. Karen and Laura both run second. Owen runs fourth.", "question": "Which one of the following must be true?", "options": [ "A) If Jack and Owen are assigned to the same team as each other, Jack runs first.", "B) If Jack and Peggy are assigned to the same team as each other, Jack runs fourth.", "C) If Jack and Ruth are assigned to the same team as each other, Ruth runs third.", "D) If Mark and Owen are assigned to the same team as each other, Mark runs fourth.", "E) If Mark and Ruth are assigned to the same team as each other, Ruth runs third." ], "answer": "A" }, { "id": "ar_lsat_199512_1-G_4_19", "context": "Eight people—Jack, Karen, Laura, Mark, Nick, Owen, Peggy, and Ruth—will be placed on two four-person teams—X and Y—for a relay race that is run in four successive legs: first, second, third, and fourth. The teams race concurrently. Each team member runs exactly one of the legs, one team member per leg, according to the following conditions: Jack is on the same team as Karen. Karen is not on the same team as Nick. Ruth runs an earlier leg of the race than Peggy runs, whether or not they are on the same team as each other. Mark and Nick are both on team Y. Neither Jack nor Mark runs third. Karen and Laura both run second. Owen runs fourth.", "question": "If Ruth is assigned to team X, which one of the following is a complete and accurate list of the legs that she could run?", "options": [ "A) first", "B) second", "C) first, second", "D) first, third", "E) second, third" ], "answer": "D" }, { "id": "ar_lsat_199512_1-G_4_20", "context": "Eight people—Jack, Karen, Laura, Mark, Nick, Owen, Peggy, and Ruth—will be placed on two four-person teams—X and Y—for a relay race that is run in four successive legs: first, second, third, and fourth. The teams race concurrently. Each team member runs exactly one of the legs, one team member per leg, according to the following conditions: Jack is on the same team as Karen. Karen is not on the same team as Nick. Ruth runs an earlier leg of the race than Peggy runs, whether or not they are on the same team as each other. Mark and Nick are both on team Y. Neither Jack nor Mark runs third. Karen and Laura both run second. Owen runs fourth.", "question": "If Owen and Ruth are assigned to the same team as each other, which one of the following must be true?", "options": [ "A) Mark runs fourth.", "B) Nick runs first.", "C) Nick runs fourth.", "D) Peggy runs first.", "E) Peggy runs fourth." ], "answer": "E" }, { "id": "ar_lsat_199512_1-G_4_21", "context": "Eight people—Jack, Karen, Laura, Mark, Nick, Owen, Peggy, and Ruth—will be placed on two four-person teams—X and Y—for a relay race that is run in four successive legs: first, second, third, and fourth. The teams race concurrently. Each team member runs exactly one of the legs, one team member per leg, according to the following conditions: Jack is on the same team as Karen. Karen is not on the same team as Nick. Ruth runs an earlier leg of the race than Peggy runs, whether or not they are on the same team as each other. Mark and Nick are both on team Y. Neither Jack nor Mark runs third. Karen and Laura both run second. Owen runs fourth.", "question": "Any of the following can be true EXCEPT:", "options": [ "A) Jack runs first.", "B) Mark runs fourth.", "C) Nick runs first.", "D) Nick and Peggy both run third.", "E) Owen and Peggy both run fourth." ], "answer": "C" }, { "id": "ar_lsat_199512_1-G_4_22", "context": "Eight people—Jack, Karen, Laura, Mark, Nick, Owen, Peggy, and Ruth—will be placed on two four-person teams—X and Y—for a relay race that is run in four successive legs: first, second, third, and fourth. The teams race concurrently. Each team member runs exactly one of the legs, one team member per leg, according to the following conditions: Jack is on the same team as Karen. Karen is not on the same team as Nick. Ruth runs an earlier leg of the race than Peggy runs, whether or not they are on the same team as each other. Mark and Nick are both on team Y. Neither Jack nor Mark runs third. Karen and Laura both run second. Owen runs fourth.", "question": "If Ruth and Peggy are assigned to the same team as each other, which one of the following must be true?", "options": [ "A) Jack runs first.", "B) Mark runs fourth.", "C) Nick runs third.", "D) Peggy runs third.", "E) Ruth runs first." ], "answer": "C" }, { "id": "ar_lsat_199512_1-G_4_23", "context": "Eight people—Jack, Karen, Laura, Mark, Nick, Owen, Peggy, and Ruth—will be placed on two four-person teams—X and Y—for a relay race that is run in four successive legs: first, second, third, and fourth. The teams race concurrently. Each team member runs exactly one of the legs, one team member per leg, according to the following conditions: Jack is on the same team as Karen. Karen is not on the same team as Nick. Ruth runs an earlier leg of the race than Peggy runs, whether or not they are on the same team as each other. Mark and Nick are both on team Y. Neither Jack nor Mark runs third. Karen and Laura both run second. Owen runs fourth.", "question": "Any of the following can be true EXCEPT:", "options": [ "A) Jack runs fourth.", "B) Nick runs fourth.", "C) Peggy runs fourth.", "D) Ruth runs first.", "E) Ruth runs third." ], "answer": "B" }, { "id": "ar_lsat_199512_1-G_4_24", "context": "Eight people—Jack, Karen, Laura, Mark, Nick, Owen, Peggy, and Ruth—will be placed on two four-person teams—X and Y—for a relay race that is run in four successive legs: first, second, third, and fourth. The teams race concurrently. Each team member runs exactly one of the legs, one team member per leg, according to the following conditions: Jack is on the same team as Karen. Karen is not on the same team as Nick. Ruth runs an earlier leg of the race than Peggy runs, whether or not they are on the same team as each other. Mark and Nick are both on team Y. Neither Jack nor Mark runs third. Karen and Laura both run second. Owen runs fourth.", "question": "If Peggy runs third on the same team to which Jack is assigned, which one of the following must be true?", "options": [ "A) Jack runs the first leg on the team to which he is assigned.", "B) Ruth runs the first leg on the team to which she is assigned.", "C) Owen runs on the same team as Jack.", "D) Owen runs on the same team as Mark.", "E) Ruth runs on the same team as Mark." ], "answer": "B" }, { "id": "ar_lsat_199602_3-G_1_1", "context": "A contractor is scheduling construction of seven decks—F, G, H, J, K, L, and M—during a seven-week period: week 1 through week 7. Because of customers' requirements, exactly one deck must be built each week according to the following conditions: G must be built at some time before K is built. L must be built either immediately before or immediately after M is built. F must be built during week 5. J must be built during week 2 or week 6.", "question": "Which one of the following is an acceptable construction schedule for the decks, in order from the deck built in week 1 to that built in week 7?", "options": [ "A) G, K, H, M, F, J, L", "B) H, G, L, M, F, K, J", "C) H, J, G, F, M, L, K", "D) H, M, L, G, F, J, K", "E) K, J, H, G, F, M, L" ], "answer": "D" }, { "id": "ar_lsat_199602_3-G_1_2", "context": "A contractor is scheduling construction of seven decks—F, G, H, J, K, L, and M—during a seven-week period: week 1 through week 7. Because of customers' requirements, exactly one deck must be built each week according to the following conditions: G must be built at some time before K is built. L must be built either immediately before or immediately after M is built. F must be built during week 5. J must be built during week 2 or week 6.", "question": "If G is built at some time after F is built, which one of the following must be true?", "options": [ "A) G is built during week 7.", "B) H is built during week 1.", "C) J is built during week 6.", "D) L is built during week 3.", "E) M is built during week 1." ], "answer": "B" }, { "id": "ar_lsat_199602_3-G_1_3", "context": "A contractor is scheduling construction of seven decks—F, G, H, J, K, L, and M—during a seven-week period: week 1 through week 7. Because of customers' requirements, exactly one deck must be built each week according to the following conditions: G must be built at some time before K is built. L must be built either immediately before or immediately after M is built. F must be built during week 5. J must be built during week 2 or week 6.", "question": "Which one of the following is a complete and accurate list of the weeks any one of which could be the week in which K is built?", "options": [ "A) 2, 3, 6", "B) 2, 3, 7", "C) 2, 5, 6, 7", "D) 1, 2, 3, 6, 7", "E) 2, 3, 4, 6, 7" ], "answer": "E" }, { "id": "ar_lsat_199602_3-G_1_4", "context": "A contractor is scheduling construction of seven decks—F, G, H, J, K, L, and M—during a seven-week period: week 1 through week 7. Because of customers' requirements, exactly one deck must be built each week according to the following conditions: G must be built at some time before K is built. L must be built either immediately before or immediately after M is built. F must be built during week 5. J must be built during week 2 or week 6.", "question": "Which one of the following is a complete and accurate list of decks any one of which could be the deck built in week 3?", "options": [ "A) K, L, M", "B) F, G, H, K", "C) F, H, K, M", "D) G, H, K, L, M", "E) H, J, K, L, M" ], "answer": "D" }, { "id": "ar_lsat_199602_3-G_1_5", "context": "A contractor is scheduling construction of seven decks—F, G, H, J, K, L, and M—during a seven-week period: week 1 through week 7. Because of customers' requirements, exactly one deck must be built each week according to the following conditions: G must be built at some time before K is built. L must be built either immediately before or immediately after M is built. F must be built during week 5. J must be built during week 2 or week 6.", "question": "If G is built during week 4, then there are exactly how many acceptable orders any one of which could be the order in which the seven decks are built?", "options": [ "A) one", "B) two", "C) three", "D) four", "E) five" ], "answer": "D" }, { "id": "ar_lsat_199602_3-G_2_6", "context": "Each of five salespeople—F, G, H, I, and J—will present a different one of a company's products—L, M, N, O, and P—at a convention running from Monday through Wednesday. Exactly two products will be presented on Monday, exactly one on Tuesday, and exactly two on Wednesday. The scheduling of presentations is governed by the following conditions: F cannot present a product on the same day as H. Either I or else J must present product N on Tuesday. G must present a product on the day that product O is presented, whether or not G is the salesperson who presents product O.", "question": "Which one of the following must be true?", "options": [ "A) If F presents a product on Monday, then G presents product O.", "B) If I presents a product on Tuesday, then J presents a product on Monday.", "C) If J presents a product on Tuesday, then G presents a product on Monday.", "D) If both F and J present products on Monday, then H presents product O.", "E) If both H and I present products on Wednesday, then product O is presented on Monday." ], "answer": "E" }, { "id": "ar_lsat_199602_3-G_2_7", "context": "Each of five salespeople—F, G, H, I, and J—will present a different one of a company's products—L, M, N, O, and P—at a convention running from Monday through Wednesday. Exactly two products will be presented on Monday, exactly one on Tuesday, and exactly two on Wednesday. The scheduling of presentations is governed by the following conditions: F cannot present a product on the same day as H. Either I or else J must present product N on Tuesday. G must present a product on the day that product O is presented, whether or not G is the salesperson who presents product O.", "question": "If salespeople H and I present products on Monday, which one of the following must be true?", "options": [ "A) F presents product M.", "B) G presents product L.", "C) I presents product N.", "D) Product O is presented on Wednesday.", "E) Product P is presented on Wednesday." ], "answer": "D" }, { "id": "ar_lsat_199602_3-G_2_8", "context": "Each of five salespeople—F, G, H, I, and J—will present a different one of a company's products—L, M, N, O, and P—at a convention running from Monday through Wednesday. Exactly two products will be presented on Monday, exactly one on Tuesday, and exactly two on Wednesday. The scheduling of presentations is governed by the following conditions: F cannot present a product on the same day as H. Either I or else J must present product N on Tuesday. G must present a product on the day that product O is presented, whether or not G is the salesperson who presents product O.", "question": "If G presents product P on Wednesday, then any of the following could be true EXCEPT:", "options": [ "A) H presents product O.", "B) I presents product N.", "C) I presents product O.", "D) F makes a presentation on Monday.", "E) F makes a presentation on Wednesday." ], "answer": "C" }, { "id": "ar_lsat_199602_3-G_2_9", "context": "Each of five salespeople—F, G, H, I, and J—will present a different one of a company's products—L, M, N, O, and P—at a convention running from Monday through Wednesday. Exactly two products will be presented on Monday, exactly one on Tuesday, and exactly two on Wednesday. The scheduling of presentations is governed by the following conditions: F cannot present a product on the same day as H. Either I or else J must present product N on Tuesday. G must present a product on the day that product O is presented, whether or not G is the salesperson who presents product O.", "question": "If products M and P are presented on Monday, which one of the following could be true?", "options": [ "A) G presents product P.", "B) I presents product O.", "C) J presents product L.", "D) F presents a product on Monday.", "E) G presents a product on Monday." ], "answer": "D" }, { "id": "ar_lsat_199602_3-G_2_10", "context": "Each of five salespeople—F, G, H, I, and J—will present a different one of a company's products—L, M, N, O, and P—at a convention running from Monday through Wednesday. Exactly two products will be presented on Monday, exactly one on Tuesday, and exactly two on Wednesday. The scheduling of presentations is governed by the following conditions: F cannot present a product on the same day as H. Either I or else J must present product N on Tuesday. G must present a product on the day that product O is presented, whether or not G is the salesperson who presents product O.", "question": "If product O is presented on the same day as product P, which one of the following must be true?", "options": [ "A) F presents product O or else product P.", "B) F presents neither product O nor product P.", "C) H presents product O or else product P.", "D) I presents product O or else product P.", "E) J presents neither product O nor product P." ], "answer": "E" }, { "id": "ar_lsat_199602_3-G_3_11", "context": "The seven members of an academic department are each to be assigned a different room as an office. The department members are professors F and G, lecturers Q, R, and S, and instructors V and W. The available rooms are seven consecutive rooms along one side of a straight hallway numbered sequentially 101 through 107. The assignment must conform to the following conditions: Neither instructor is assigned a room next to a professor's room. Neither professor is assigned room 101 and neither professor is assigned room 107. G is not assigned a room next to R's room. W is not assigned a room next to V's room unless R is also assigned a room next to V's room.", "question": "If F and G are assigned rooms that have exactly one room between them, which one of the following is the list of department members each of whom could be assigned to the intervening room?", "options": [ "A) Q, R", "B) Q, S", "C) Q, V", "D) R, W", "E) S, V" ], "answer": "B" }, { "id": "ar_lsat_199602_3-G_3_12", "context": "The seven members of an academic department are each to be assigned a different room as an office. The department members are professors F and G, lecturers Q, R, and S, and instructors V and W. The available rooms are seven consecutive rooms along one side of a straight hallway numbered sequentially 101 through 107. The assignment must conform to the following conditions: Neither instructor is assigned a room next to a professor's room. Neither professor is assigned room 101 and neither professor is assigned room 107. G is not assigned a room next to R's room. W is not assigned a room next to V's room unless R is also assigned a room next to V's room.", "question": "Which one of the following is a possible assignment of rooms for members R, V, and W?", "options": [ "A) 101: V; 102: W; 103: R", "B) 101: V; 102: W, 104: R", "C) 101: V; 103: W; 104: R", "D) 103: W; 104: V; 106: R", "E) 105: R; 106: W; 107: V" ], "answer": "C" }, { "id": "ar_lsat_199602_3-G_3_13", "context": "The seven members of an academic department are each to be assigned a different room as an office. The department members are professors F and G, lecturers Q, R, and S, and instructors V and W. The available rooms are seven consecutive rooms along one side of a straight hallway numbered sequentially 101 through 107. The assignment must conform to the following conditions: Neither instructor is assigned a room next to a professor's room. Neither professor is assigned room 101 and neither professor is assigned room 107. G is not assigned a room next to R's room. W is not assigned a room next to V's room unless R is also assigned a room next to V's room.", "question": "If R is assigned room 104, which one of the following must be assigned either room 103 or else room 105?", "options": [ "A) F", "B) G", "C) Q", "D) V", "E) W" ], "answer": "A" }, { "id": "ar_lsat_199602_3-G_3_14", "context": "The seven members of an academic department are each to be assigned a different room as an office. The department members are professors F and G, lecturers Q, R, and S, and instructors V and W. The available rooms are seven consecutive rooms along one side of a straight hallway numbered sequentially 101 through 107. The assignment must conform to the following conditions: Neither instructor is assigned a room next to a professor's room. Neither professor is assigned room 101 and neither professor is assigned room 107. G is not assigned a room next to R's room. W is not assigned a room next to V's room unless R is also assigned a room next to V's room.", "question": "What is the greatest number of rooms that could be between the rooms to which F and G are assigned?", "options": [ "A) one", "B) two", "C) three", "D) four", "E) five" ], "answer": "A" }, { "id": "ar_lsat_199602_3-G_3_15", "context": "The seven members of an academic department are each to be assigned a different room as an office. The department members are professors F and G, lecturers Q, R, and S, and instructors V and W. The available rooms are seven consecutive rooms along one side of a straight hallway numbered sequentially 101 through 107. The assignment must conform to the following conditions: Neither instructor is assigned a room next to a professor's room. Neither professor is assigned room 101 and neither professor is assigned room 107. G is not assigned a room next to R's room. W is not assigned a room next to V's room unless R is also assigned a room next to V's room.", "question": "Which one of the following CANNOT be assigned room 104?", "options": [ "A) F", "B) G", "C) Q", "D) S", "E) V" ], "answer": "E" }, { "id": "ar_lsat_199602_3-G_3_16", "context": "The seven members of an academic department are each to be assigned a different room as an office. The department members are professors F and G, lecturers Q, R, and S, and instructors V and W. The available rooms are seven consecutive rooms along one side of a straight hallway numbered sequentially 101 through 107. The assignment must conform to the following conditions: Neither instructor is assigned a room next to a professor's room. Neither professor is assigned room 101 and neither professor is assigned room 107. G is not assigned a room next to R's room. W is not assigned a room next to V's room unless R is also assigned a room next to V's room.", "question": "If no two faculty members of the same rank are assigned adjacent rooms, which one of the following must be true?", "options": [ "A) F is assigned either room 103 or else room 104.", "B) Q is assigned either room 102 or else room 106.", "C) R is assigned either room 102 or else room 105.", "D) S is assigned either room 104 or else room 105.", "E) V is assigned either room 101 or else room 107." ], "answer": "E" }, { "id": "ar_lsat_199602_3-G_3_17", "context": "The seven members of an academic department are each to be assigned a different room as an office. The department members are professors F and G, lecturers Q, R, and S, and instructors V and W. The available rooms are seven consecutive rooms along one side of a straight hallway numbered sequentially 101 through 107. The assignment must conform to the following conditions: Neither instructor is assigned a room next to a professor's room. Neither professor is assigned room 101 and neither professor is assigned room 107. G is not assigned a room next to R's room. W is not assigned a room next to V's room unless R is also assigned a room next to V's room.", "question": "If F and G are not assigned rooms that are next to each other, which one of the following CANNOT be assigned room 107?", "options": [ "A) W", "B) V", "C) S", "D) R", "E) Q" ], "answer": "D" }, { "id": "ar_lsat_199602_3-G_4_18", "context": "The coordinator of an exhibition will select at least four and at most six rugs from a group of eight rugs made up of two oval wool rugs, three rectangular wool rugs, one oval silk rug, and two rectangular silk rugs according to the following conditions: At least two oval rugs must be selected. The number of wool rugs selected can be neither less than two nor more than three. If the oval silk rug is selected, at least one rectangular silk rug must be selected.", "question": "Which one of the following is an acceptable selection of rugs for the exhibition?", "options": [ "A) one oval silk rug, one oval wool rug, and two rectangular wool rugs", "B) one oval silk rug, one rectangular wool rug, and two rectangular silk rugs", "C) two oval wool rugs, one rectangular silk rug, and two rectangular wool rugs", "D) two oval wool rugs, one rectangular silk rug, and one rectangular wool rug", "E) two rectangular silk rugs and three rectangular wool rugs" ], "answer": "D" }, { "id": "ar_lsat_199602_3-G_4_19", "context": "The coordinator of an exhibition will select at least four and at most six rugs from a group of eight rugs made up of two oval wool rugs, three rectangular wool rugs, one oval silk rug, and two rectangular silk rugs according to the following conditions: At least two oval rugs must be selected. The number of wool rugs selected can be neither less than two nor more than three. If the oval silk rug is selected, at least one rectangular silk rug must be selected.", "question": "If three wool rugs are selected, then any of the following could be a complete and accurate list of the other rugs selected EXCEPT:", "options": [ "A) one oval silk rug", "B) one rectangular silk rug", "C) two rectangular silk rugs", "D) one oval silk rug and one rectangular silk rug", "E) one oval silk rug and two rectangular silk rugs" ], "answer": "A" }, { "id": "ar_lsat_199602_3-G_4_20", "context": "The coordinator of an exhibition will select at least four and at most six rugs from a group of eight rugs made up of two oval wool rugs, three rectangular wool rugs, one oval silk rug, and two rectangular silk rugs according to the following conditions: At least two oval rugs must be selected. The number of wool rugs selected can be neither less than two nor more than three. If the oval silk rug is selected, at least one rectangular silk rug must be selected.", "question": "The rugs selected for the exhibition can include any of the following EXCEPT:", "options": [ "A) one oval silk rug", "B) two oval wool rugs", "C) three oval rugs", "D) two rectangular wool rugs", "E) three rectangular wool rugs" ], "answer": "E" }, { "id": "ar_lsat_199602_3-G_4_21", "context": "The coordinator of an exhibition will select at least four and at most six rugs from a group of eight rugs made up of two oval wool rugs, three rectangular wool rugs, one oval silk rug, and two rectangular silk rugs according to the following conditions: At least two oval rugs must be selected. The number of wool rugs selected can be neither less than two nor more than three. If the oval silk rug is selected, at least one rectangular silk rug must be selected.", "question": "If only one silk rug is selected for the exhibition, then the other rugs selected must be a group made up of", "options": [ "A) one oval rug and two rectangular rugs", "B) two oval rugs and one rectangular rug", "C) two oval rugs and two rectangular rugs", "D) two oval rugs and three rectangular rugs", "E) three rectangular rugs" ], "answer": "B" }, { "id": "ar_lsat_199602_3-G_4_22", "context": "The coordinator of an exhibition will select at least four and at most six rugs from a group of eight rugs made up of two oval wool rugs, three rectangular wool rugs, one oval silk rug, and two rectangular silk rugs according to the following conditions: At least two oval rugs must be selected. The number of wool rugs selected can be neither less than two nor more than three. If the oval silk rug is selected, at least one rectangular silk rug must be selected.", "question": "If exactly four rugs are selected, then the rugs selected could be", "options": [ "A) one oval rug and three rectangular wool rugs", "B) two oval rugs and two rectangular wool rugs", "C) three oval rugs and one rectangular silk rug", "D) three oval rugs and one rectangular wool rug", "E) two rectangular silk rugs and two rectangular wool rugs" ], "answer": "C" }, { "id": "ar_lsat_199602_3-G_4_23", "context": "The coordinator of an exhibition will select at least four and at most six rugs from a group of eight rugs made up of two oval wool rugs, three rectangular wool rugs, one oval silk rug, and two rectangular silk rugs according to the following conditions: At least two oval rugs must be selected. The number of wool rugs selected can be neither less than two nor more than three. If the oval silk rug is selected, at least one rectangular silk rug must be selected.", "question": "If all three silk rugs are selected, then each of the following could be a complete and accurate list of the other rugs selected EXCEPT:", "options": [ "A) one oval wool rug", "B) two oval wool rugs", "C) one oval wool rug and one rectangular wool rug", "D) one oval wool rug and two rectangular wool rugs", "E) two oval wool rugs and one rectangular wool rug" ], "answer": "A" }, { "id": "ar_lsat_199602_3-G_4_24", "context": "The coordinator of an exhibition will select at least four and at most six rugs from a group of eight rugs made up of two oval wool rugs, three rectangular wool rugs, one oval silk rug, and two rectangular silk rugs according to the following conditions: At least two oval rugs must be selected. The number of wool rugs selected can be neither less than two nor more than three. If the oval silk rug is selected, at least one rectangular silk rug must be selected.", "question": "If exactly six rugs are selected, they must include", "options": [ "A) exactly one of the oval rugs", "B) the two oval wool rugs", "C) the two rectangular silk rugs", "D) exactly three of the rectangular rugs", "E) all three rectangular wool rugs" ], "answer": "C" }, { "id": "ar_lsat_199606_1-G_1_1", "context": "During a period of six consecutive days—day 1 through day 6—each of exactly six factories—F, G, H, J, Q, and R—will be inspected. During this period, each of the factories will be inspected exactly once, one factory per day. The schedule for the inspections must conform to the following conditions: F is inspected on either day 1 or day 6. J is inspected on an earlier day than Q is inspected. Q is inspected on the day immediately before R is inspected. If G is inspected on day 3, Q is inspected on day 5.", "question": "Which one of the following could be a list of the factories in the order of their scheduled inspections, from day 1 thought day 6?", "options": [ "A) F, Q, R, H, J, G", "B) G, H, J, Q, R, F", "C) G, J, Q, H, R, F", "D) G, J, Q, R, F, H", "E) J, H, G, Q, R, F" ], "answer": "B" }, { "id": "ar_lsat_199606_1-G_1_2", "context": "During a period of six consecutive days—day 1 through day 6—each of exactly six factories—F, G, H, J, Q, and R—will be inspected. During this period, each of the factories will be inspected exactly once, one factory per day. The schedule for the inspections must conform to the following conditions: F is inspected on either day 1 or day 6. J is inspected on an earlier day than Q is inspected. Q is inspected on the day immediately before R is inspected. If G is inspected on day 3, Q is inspected on day 5.", "question": "Which one of the following must be false?", "options": [ "A) The inspection of G is scheduled for day 4.", "B) The inspection of H is scheduled for day 6.", "C) The inspection of J is scheduled for day 4.", "D) The inspection of Q is scheduled for day 3.", "E) The inspection of R is scheduled for day 2." ], "answer": "E" }, { "id": "ar_lsat_199606_1-G_1_3", "context": "During a period of six consecutive days—day 1 through day 6—each of exactly six factories—F, G, H, J, Q, and R—will be inspected. During this period, each of the factories will be inspected exactly once, one factory per day. The schedule for the inspections must conform to the following conditions: F is inspected on either day 1 or day 6. J is inspected on an earlier day than Q is inspected. Q is inspected on the day immediately before R is inspected. If G is inspected on day 3, Q is inspected on day 5.", "question": "The inspection of which one of the following CANNOT be scheduled for day 5 ?", "options": [ "A) G", "B) H", "C) J", "D) Q", "E) R" ], "answer": "C" }, { "id": "ar_lsat_199606_1-G_1_4", "context": "During a period of six consecutive days—day 1 through day 6—each of exactly six factories—F, G, H, J, Q, and R—will be inspected. During this period, each of the factories will be inspected exactly once, one factory per day. The schedule for the inspections must conform to the following conditions: F is inspected on either day 1 or day 6. J is inspected on an earlier day than Q is inspected. Q is inspected on the day immediately before R is inspected. If G is inspected on day 3, Q is inspected on day 5.", "question": "The inspection scheduled for day 3 and day 5, respectively, could be those of", "options": [ "A) G and H", "B) G and R", "C) H and G", "D) R and J", "E) R and H" ], "answer": "E" }, { "id": "ar_lsat_199606_1-G_1_5", "context": "During a period of six consecutive days—day 1 through day 6—each of exactly six factories—F, G, H, J, Q, and R—will be inspected. During this period, each of the factories will be inspected exactly once, one factory per day. The schedule for the inspections must conform to the following conditions: F is inspected on either day 1 or day 6. J is inspected on an earlier day than Q is inspected. Q is inspected on the day immediately before R is inspected. If G is inspected on day 3, Q is inspected on day 5.", "question": "If the inspection of R is scheduled for the day immediately before the inspection of F, which one of the following must be true about the schedule?", "options": [ "A) The inspection of either G or H is scheduled for day 1.", "B) The inspection of either G or J is scheduled for day 1.", "C) The inspection of either G or J is scheduled for day 2.", "D) The inspection of either H or J is scheduled for day 3.", "E) The inspection of either H or J is scheduled for day 4." ], "answer": "D" }, { "id": "ar_lsat_199606_1-G_1_6", "context": "During a period of six consecutive days—day 1 through day 6—each of exactly six factories—F, G, H, J, Q, and R—will be inspected. During this period, each of the factories will be inspected exactly once, one factory per day. The schedule for the inspections must conform to the following conditions: F is inspected on either day 1 or day 6. J is inspected on an earlier day than Q is inspected. Q is inspected on the day immediately before R is inspected. If G is inspected on day 3, Q is inspected on day 5.", "question": "If the inspection of G and of H are scheduled, not necessarily in that order, for days as far apart as possible, which one of the following is a complete and accurate list of the factories any one of which could be scheduled for inspection for day 1?", "options": [ "A) F, J", "B) G, H", "C) G, H, J", "D) F, G, H", "E) F, G, H, J" ], "answer": "D" }, { "id": "ar_lsat_199606_1-G_1_7", "context": "During a period of six consecutive days—day 1 through day 6—each of exactly six factories—F, G, H, J, Q, and R—will be inspected. During this period, each of the factories will be inspected exactly once, one factory per day. The schedule for the inspections must conform to the following conditions: F is inspected on either day 1 or day 6. J is inspected on an earlier day than Q is inspected. Q is inspected on the day immediately before R is inspected. If G is inspected on day 3, Q is inspected on day 5.", "question": "If the inspection of G is scheduled for the day immediately before the inspection of Q, which one of the following could be true?", "options": [ "A) The inspection of G is scheduled for day 5.", "B) The inspection of H is scheduled for day 6.", "C) The inspection of J is scheduled for day 2.", "D) The inspection of Q is scheduled for day 4.", "E) The inspection of R is scheduled for day 3." ], "answer": "C" }, { "id": "ar_lsat_199606_1-G_2_8", "context": "In a theater company, four two-day workshops—Lighting, Production, Rehearsals, and Staging—are conducted over the course of five days, Monday through Friday. The workshops are conducted in a manner consistent with the following constraints: The two days on which a given workshop is in session are consecutive. On each of the five days, at least one, but no more than two, of the workshops are in session. The workshops on Production and Rehearsals begin no earlier than the day immediately following the second day of the workshop on Lighting.", "question": "Which one of the following could be true?", "options": [ "A) Only one workshop is in session on Thursday.", "B) Only one workshop is in session on Friday.", "C) The workshop on Rehearsals is in session on Tuesday.", "D) The workshop on Staging is in session on Thursday.", "E) The workshops in Rehearsals and Production are both in session on Wednesday." ], "answer": "B" }, { "id": "ar_lsat_199606_1-G_2_9", "context": "In a theater company, four two-day workshops—Lighting, Production, Rehearsals, and Staging—are conducted over the course of five days, Monday through Friday. The workshops are conducted in a manner consistent with the following constraints: The two days on which a given workshop is in session are consecutive. On each of the five days, at least one, but no more than two, of the workshops are in session. The workshops on Production and Rehearsals begin no earlier than the day immediately following the second day of the workshop on Lighting.", "question": "Which one of the following could be true?", "options": [ "A) The workshop on Lighting is in session on Wednesday, and the workshop on Rehearsals is in session on Tuesday.", "B) The workshop on Lighting is in session on Wednesday, and the only workshop in session on Thursday is the workshop on Rehearsals.", "C) The workshop on Lighting is in session on Wednesday, and the only workshop in session on Monday is the workshop on Staging.", "D) The workshop on Lighting is in session on Monday, and the only workshop in session on Thursday is the workshop on Staging.", "E) The workshops on Lighting and Production are both in session on Wednesday." ], "answer": "C" }, { "id": "ar_lsat_199606_1-G_2_10", "context": "In a theater company, four two-day workshops—Lighting, Production, Rehearsals, and Staging—are conducted over the course of five days, Monday through Friday. The workshops are conducted in a manner consistent with the following constraints: The two days on which a given workshop is in session are consecutive. On each of the five days, at least one, but no more than two, of the workshops are in session. The workshops on Production and Rehearsals begin no earlier than the day immediately following the second day of the workshop on Lighting.", "question": "If the workshop on Production is in session on Wednesday, which one of the following must be true?", "options": [ "A) The workshop on Lighting is in session on Monday.", "B) The workshop on Rehearsals is in session on Wednesday.", "C) The workshop on Staging is in session on Thursday .", "D) The workshop on Staging is in session on Monday.", "E) The workshop on Staging is in session on Wednesday." ], "answer": "A" }, { "id": "ar_lsat_199606_1-G_2_11", "context": "In a theater company, four two-day workshops—Lighting, Production, Rehearsals, and Staging—are conducted over the course of five days, Monday through Friday. The workshops are conducted in a manner consistent with the following constraints: The two days on which a given workshop is in session are consecutive. On each of the five days, at least one, but no more than two, of the workshops are in session. The workshops on Production and Rehearsals begin no earlier than the day immediately following the second day of the workshop on Lighting.", "question": "If the workshop on production is the only workshop in session on Friday, which one of the following must be false?", "options": [ "A) The workshop on Lighting is in session both on Tuesday and on Wednesday.", "B) The workshop on Rehearsals is in session both on Wednesday and on Thursday.", "C) The workshop on Staging is in session both on Monday and on Tuesday.", "D) The workshop on Lighting is in session on the same two days as is the workshop on Staging.", "E) The workshop on Rehearsals is in session on a day when the workshop on Staging is also in session." ], "answer": "A" }, { "id": "ar_lsat_199606_1-G_2_12", "context": "In a theater company, four two-day workshops—Lighting, Production, Rehearsals, and Staging—are conducted over the course of five days, Monday through Friday. The workshops are conducted in a manner consistent with the following constraints: The two days on which a given workshop is in session are consecutive. On each of the five days, at least one, but no more than two, of the workshops are in session. The workshops on Production and Rehearsals begin no earlier than the day immediately following the second day of the workshop on Lighting.", "question": "If the workshop on Lighting is the only workshop in session on Monday, which one of the following could be true?", "options": [ "A) The workshops on Rehearsals and Staging are both in session on Tuesday.", "B) The workshop on Rehearsals is the only workshop in session on Wednesday.", "C) The workshop on Staging is the only workshop in session on Wednesday.", "D) The workshops on Staging and Rehearsals are both in session on Wednesday and on Thursday.", "E) The workshops on Staging and Production are both in session on Thursday." ], "answer": "C" }, { "id": "ar_lsat_199606_1-G_3_13", "context": "Each of two boats, boat 1 and boat 2, will be assigned exactly four people. Exactly eight people, three adults—F, G, and H—and five children—V, W, X, Y, and Z—must be assigned to the boats according to the following conditions: Each boat is assigned at least one adult. If F is assigned to boat 2, G is assigned to boat 2. If V is assigned to boat 1, W is assigned to boat 2. X and Z are assigned to different boats.", "question": "Which one of the following is an acceptable assignment of people to boat I ?", "options": [ "A) F, G, H, X", "B) F, H, W, Y", "C) F, H, Y, Z", "D) F, V, W, X", "E) G, H, X, Y" ], "answer": "C" }, { "id": "ar_lsat_199606_1-G_3_14", "context": "Each of two boats, boat 1 and boat 2, will be assigned exactly four people. Exactly eight people, three adults—F, G, and H—and five children—V, W, X, Y, and Z—must be assigned to the boats according to the following conditions: Each boat is assigned at least one adult. If F is assigned to boat 2, G is assigned to boat 2. If V is assigned to boat 1, W is assigned to boat 2. X and Z are assigned to different boats.", "question": "If F is assigned to boat 2, which one of the following is a pair of people who could be assigned to the same boat as each other?", "options": [ "A) F and Y", "B) G and H", "C) G and Y", "D) V and W", "E) Y and Z" ], "answer": "E" }, { "id": "ar_lsat_199606_1-G_3_15", "context": "Each of two boats, boat 1 and boat 2, will be assigned exactly four people. Exactly eight people, three adults—F, G, and H—and five children—V, W, X, Y, and Z—must be assigned to the boats according to the following conditions: Each boat is assigned at least one adult. If F is assigned to boat 2, G is assigned to boat 2. If V is assigned to boat 1, W is assigned to boat 2. X and Z are assigned to different boats.", "question": "If exactly three children are assigned to boat 1, which one of the following is a pair of people who could both be assigned to boat 2?", "options": [ "A) F and H", "B) G and Y", "C) H and W", "D) V and W", "E) W and Y" ], "answer": "C" }, { "id": "ar_lsat_199606_1-G_3_16", "context": "Each of two boats, boat 1 and boat 2, will be assigned exactly four people. Exactly eight people, three adults—F, G, and H—and five children—V, W, X, Y, and Z—must be assigned to the boats according to the following conditions: Each boat is assigned at least one adult. If F is assigned to boat 2, G is assigned to boat 2. If V is assigned to boat 1, W is assigned to boat 2. X and Z are assigned to different boats.", "question": "If G is assigned to boat 1, which one of the following must be true?", "options": [ "A) H is assigned to boat 2.", "B) V is assigned to boat 2.", "C) Exactly one adult is assigned to boat 1.", "D) Exactly two adults are assigned to boat 2.", "E) Exactly two children are assigned to boat 2." ], "answer": "A" }, { "id": "ar_lsat_199606_1-G_3_17", "context": "Each of two boats, boat 1 and boat 2, will be assigned exactly four people. Exactly eight people, three adults—F, G, and H—and five children—V, W, X, Y, and Z—must be assigned to the boats according to the following conditions: Each boat is assigned at least one adult. If F is assigned to boat 2, G is assigned to boat 2. If V is assigned to boat 1, W is assigned to boat 2. X and Z are assigned to different boats.", "question": "If V and W are assigned to the same boat as each other, which one of the following is a pair of people who must also be assigned to the same boat as each other?", "options": [ "A) F and H", "B) F and Y", "C) G and X", "D) W and X", "E) Y and Z" ], "answer": "B" }, { "id": "ar_lsat_199606_1-G_3_18", "context": "Each of two boats, boat 1 and boat 2, will be assigned exactly four people. Exactly eight people, three adults—F, G, and H—and five children—V, W, X, Y, and Z—must be assigned to the boats according to the following conditions: Each boat is assigned at least one adult. If F is assigned to boat 2, G is assigned to boat 2. If V is assigned to boat 1, W is assigned to boat 2. X and Z are assigned to different boats.", "question": "If H is assigned to a different boat than Y, which one of the following must be assigned to boat 1?", "options": [ "A) F", "B) G", "C) H", "D) V", "E) Y" ], "answer": "A" }, { "id": "ar_lsat_199606_1-G_3_19", "context": "Each of two boats, boat 1 and boat 2, will be assigned exactly four people. Exactly eight people, three adults—F, G, and H—and five children—V, W, X, Y, and Z—must be assigned to the boats according to the following conditions: Each boat is assigned at least one adult. If F is assigned to boat 2, G is assigned to boat 2. If V is assigned to boat 1, W is assigned to boat 2. X and Z are assigned to different boats.", "question": "If exactly one adult is assigned to boat 1, which one of the following must be true?", "options": [ "A) F is assigned to boat 1.", "B) G is assigned to boat 2.", "C) H is assigned to boat 2.", "D) V is assigned to boat 1.", "E) Z is assigned to boat 2." ], "answer": "B" }, { "id": "ar_lsat_199606_1-G_4_20", "context": "Each of nine students—Faith, Gregory, Harlan, Jennifer, Kenji, Lisa, Marcus, Nari, and Paul—will be assigned to exactly one of three panels: Oceans, Recycling, and Wetlands. Exactly three of the students will be assigned to each panel. The assignment of students to panels must meet the following conditions: Faith is assigned to the same panel as Gregory. Kenji is assigned to the same panel as Marcus. Faith is not assigned to the same panel as Paul. Gregory is not assigned to the same panel as Harlan. Jennifer is not assigned to the same panel as Kenji. Harlan is not assigned to the Oceans panel if Paul is not assigned to the Oceans panel.", "question": "Which one of the following is an acceptable assignment of students to the panels?", "options": [ "A) Oceans: Faith, Gregory, Jennifer Recycling: Kenji, Lisa, Nari Wetlands: Harlan, Marcus, Paul", "B) Oceans: Faith, Jennifer, Lisa Recycling: Harlan, Kenji, Marcus Wetlands: Gregory, Nari, Paul", "C) Oceans: Harlan, Kenji, Marcus Recycling: Faith, Gregory, Jennifer Wetlands: Lisa, Nari, Paul", "D) Oceans: Jennifer, Kenji, Marcus Recycling: Faith, Gregory, Nari Wetlands: Harlan, Lisa, Paul", "E) Oceans: Kenji, Marcus, Paul Recycling: Harlan, Jennifer, Nari Wetlands: Faith, Gregory, Lisa" ], "answer": "E" }, { "id": "ar_lsat_199606_1-G_4_21", "context": "Each of nine students—Faith, Gregory, Harlan, Jennifer, Kenji, Lisa, Marcus, Nari, and Paul—will be assigned to exactly one of three panels: Oceans, Recycling, and Wetlands. Exactly three of the students will be assigned to each panel. The assignment of students to panels must meet the following conditions: Faith is assigned to the same panel as Gregory. Kenji is assigned to the same panel as Marcus. Faith is not assigned to the same panel as Paul. Gregory is not assigned to the same panel as Harlan. Jennifer is not assigned to the same panel as Kenji. Harlan is not assigned to the Oceans panel if Paul is not assigned to the Oceans panel.", "question": "If Marcus and Paul are both assigned to the Wetlands panel, which one of the following must be true?", "options": [ "A) Harlan is assigned to the Recycling panel.", "B) Jennifer is assigned to the Oceans panel.", "C) Kenji is assigned to the Recycling panel.", "D) Lisa is assigned to the Wetlands panel.", "E) Nari is assigned to the Oceans panel." ], "answer": "A" }, { "id": "ar_lsat_199606_1-G_4_22", "context": "Each of nine students—Faith, Gregory, Harlan, Jennifer, Kenji, Lisa, Marcus, Nari, and Paul—will be assigned to exactly one of three panels: Oceans, Recycling, and Wetlands. Exactly three of the students will be assigned to each panel. The assignment of students to panels must meet the following conditions: Faith is assigned to the same panel as Gregory. Kenji is assigned to the same panel as Marcus. Faith is not assigned to the same panel as Paul. Gregory is not assigned to the same panel as Harlan. Jennifer is not assigned to the same panel as Kenji. Harlan is not assigned to the Oceans panel if Paul is not assigned to the Oceans panel.", "question": "Which one of the following is a pair of students who could be assigned to the same panel as each other?", "options": [ "A) Faith and Harlan", "B) Gregory and Paul", "C) Harlan and Marcus", "D) Faith and Marcus", "E) Jennifer and Marcus" ], "answer": "C" }, { "id": "ar_lsat_199606_1-G_4_23", "context": "Each of nine students—Faith, Gregory, Harlan, Jennifer, Kenji, Lisa, Marcus, Nari, and Paul—will be assigned to exactly one of three panels: Oceans, Recycling, and Wetlands. Exactly three of the students will be assigned to each panel. The assignment of students to panels must meet the following conditions: Faith is assigned to the same panel as Gregory. Kenji is assigned to the same panel as Marcus. Faith is not assigned to the same panel as Paul. Gregory is not assigned to the same panel as Harlan. Jennifer is not assigned to the same panel as Kenji. Harlan is not assigned to the Oceans panel if Paul is not assigned to the Oceans panel.", "question": "If Kenji and Paul are both assigned to the Recycling panel, which one of the following could be true?", "options": [ "A) Faith is assigned to the Wetlands panel.", "B) Gregory is assigned to the Recycling panel.", "C) Harlan is assigned to the Oceans panel.", "D) Jennifer is assigned to the Wetlands panel.", "E) Lisa is assigned to the Recycling panel." ], "answer": "D" }, { "id": "ar_lsat_199606_1-G_4_24", "context": "Each of nine students—Faith, Gregory, Harlan, Jennifer, Kenji, Lisa, Marcus, Nari, and Paul—will be assigned to exactly one of three panels: Oceans, Recycling, and Wetlands. Exactly three of the students will be assigned to each panel. The assignment of students to panels must meet the following conditions: Faith is assigned to the same panel as Gregory. Kenji is assigned to the same panel as Marcus. Faith is not assigned to the same panel as Paul. Gregory is not assigned to the same panel as Harlan. Jennifer is not assigned to the same panel as Kenji. Harlan is not assigned to the Oceans panel if Paul is not assigned to the Oceans panel.", "question": "Each of the following is a pair of students who could be assigned to the same panel as each other EXCEPT:", "options": [ "A) Gregory and Kenji", "B) Gregory and Lisa", "C) Kenji and Nari", "D) Lisa and Marcus", "E) Lisa and Paul" ], "answer": "A" }, { "id": "ar_lsat_199610_3-G_1_1", "context": "Each of seven travelers—Norris, Oribe, Paulsen, Rosen, Semonelli, Tan, and Underwood—will be assigned to exactly one of nine airplane seats. The seats are numbered from 1 through 9 and arranged in rows as follows: Front row: 1 2 3 Middle row: 4 5 6 Last row: 7 8 9 Only seats in the same row as each other are immediately beside each other. Seat assignments must meet the following conditions: Oribe's seat is in the last row. Paulsen's seat is immediately beside Rosen's seat and also immediately beside an unassigned seat. Rosen's seat is in the row immediately behind the row in which Norris' seat is located. Neither Semonelli nor Underwood is seated immediately beside Norris.", "question": "Which one of the following is a pair of travelers who could be assigned to seats 2 and 8, respectively?", "options": [ "A) Norris, Semonelli", "B) Oribe, Underwood", "C) Paulsen, Oribe", "D) Rosen, Semonelli", "E) Underwood, Tan" ], "answer": "A" }, { "id": "ar_lsat_199610_3-G_1_2", "context": "Each of seven travelers—Norris, Oribe, Paulsen, Rosen, Semonelli, Tan, and Underwood—will be assigned to exactly one of nine airplane seats. The seats are numbered from 1 through 9 and arranged in rows as follows: Front row: 1 2 3 Middle row: 4 5 6 Last row: 7 8 9 Only seats in the same row as each other are immediately beside each other. Seat assignments must meet the following conditions: Oribe's seat is in the last row. Paulsen's seat is immediately beside Rosen's seat and also immediately beside an unassigned seat. Rosen's seat is in the row immediately behind the row in which Norris' seat is located. Neither Semonelli nor Underwood is seated immediately beside Norris.", "question": "If Semonelli and Underwood are not assigned to seats in the same row as each other, which one of the following must be false?", "options": [ "A) Norris is assigned to seat 2.", "B) Paulsen is assigned to seat 5.", "C) Rosen is assigned to seat 4.", "D) Tan is assigned to seat 2.", "E) Underwood is assigned to seat 1." ], "answer": "A" }, { "id": "ar_lsat_199610_3-G_1_3", "context": "Each of seven travelers—Norris, Oribe, Paulsen, Rosen, Semonelli, Tan, and Underwood—will be assigned to exactly one of nine airplane seats. The seats are numbered from 1 through 9 and arranged in rows as follows: Front row: 1 2 3 Middle row: 4 5 6 Last row: 7 8 9 Only seats in the same row as each other are immediately beside each other. Seat assignments must meet the following conditions: Oribe's seat is in the last row. Paulsen's seat is immediately beside Rosen's seat and also immediately beside an unassigned seat. Rosen's seat is in the row immediately behind the row in which Norris' seat is located. Neither Semonelli nor Underwood is seated immediately beside Norris.", "question": "If Semonelli is assigned to a seat in the same row as Underwood, which one of the following travelers could be assigned to a seat immediately beside one of the unassigned seats?", "options": [ "A) Oribe", "B) Rosen", "C) Semonelli", "D) Tan", "E) Underwood" ], "answer": "D" }, { "id": "ar_lsat_199610_3-G_1_4", "context": "Each of seven travelers—Norris, Oribe, Paulsen, Rosen, Semonelli, Tan, and Underwood—will be assigned to exactly one of nine airplane seats. The seats are numbered from 1 through 9 and arranged in rows as follows: Front row: 1 2 3 Middle row: 4 5 6 Last row: 7 8 9 Only seats in the same row as each other are immediately beside each other. Seat assignments must meet the following conditions: Oribe's seat is in the last row. Paulsen's seat is immediately beside Rosen's seat and also immediately beside an unassigned seat. Rosen's seat is in the row immediately behind the row in which Norris' seat is located. Neither Semonelli nor Underwood is seated immediately beside Norris.", "question": "If the seat to which Tan is assigned is immediately beside a seat assigned to another traveler and also immediately beside one of the unassigned seats, which one of the following must be true?", "options": [ "A) Tan is assigned to a seat in the front row.", "B) Tan is assigned to a seat in the last row.", "C) Oribe is assigned to a seat immediately beside Semonelli.", "D) Oribe is assigned to a seat immediately beside Tan.", "E) Semonelli is assigned to a seat immediately beside Underwood." ], "answer": "A" }, { "id": "ar_lsat_199610_3-G_1_5", "context": "Each of seven travelers—Norris, Oribe, Paulsen, Rosen, Semonelli, Tan, and Underwood—will be assigned to exactly one of nine airplane seats. The seats are numbered from 1 through 9 and arranged in rows as follows: Front row: 1 2 3 Middle row: 4 5 6 Last row: 7 8 9 Only seats in the same row as each other are immediately beside each other. Seat assignments must meet the following conditions: Oribe's seat is in the last row. Paulsen's seat is immediately beside Rosen's seat and also immediately beside an unassigned seat. Rosen's seat is in the row immediately behind the row in which Norris' seat is located. Neither Semonelli nor Underwood is seated immediately beside Norris.", "question": "If Oribe is assigned to a seat immediately beside one of the unassigned seats, which one of the following must be true?", "options": [ "A) Oribe is assigned to seat 8.", "B) Tan is assigned to seat 2.", "C) Underwood is assigned to seat 1.", "D) Seat 4 is unassigned.", "E) Seat 9 is unassigned." ], "answer": "B" }, { "id": "ar_lsat_199610_3-G_2_6", "context": "A university library budget committee must reduce exactly five of eight areas of expenditure—G, L, M, N, P, R, S, and W—in accordance with the following conditions: If both G and S are reduced, W is also reduced. If N is reduced, neither R nor S is reduced. If P is reduced, L is not reduced. Of the three areas L, M, and R, exactly two are reduced.", "question": "Which one of the following could be a complete and accurate list of the areas of expenditure reduced by the committee?", "options": [ "A) G, L, M, N, W", "B) G, L, M, P, W", "C) G, M, N, R, W", "D) G, M, P, R, S", "E) L, M, R, S, W" ], "answer": "A" }, { "id": "ar_lsat_199610_3-G_2_7", "context": "A university library budget committee must reduce exactly five of eight areas of expenditure—G, L, M, N, P, R, S, and W—in accordance with the following conditions: If both G and S are reduced, W is also reduced. If N is reduced, neither R nor S is reduced. If P is reduced, L is not reduced. Of the three areas L, M, and R, exactly two are reduced.", "question": "If W is reduced, which one of the following could be a complete and accurate list of the four other areas of expenditure to be reduced?", "options": [ "A) G, M, P, S", "B) L, M, N, R", "C) L, M, P, S", "D) M, N, P, S", "E) M, P, R, S" ], "answer": "E" }, { "id": "ar_lsat_199610_3-G_2_8", "context": "A university library budget committee must reduce exactly five of eight areas of expenditure—G, L, M, N, P, R, S, and W—in accordance with the following conditions: If both G and S are reduced, W is also reduced. If N is reduced, neither R nor S is reduced. If P is reduced, L is not reduced. Of the three areas L, M, and R, exactly two are reduced.", "question": "If P is reduced, which one of the following is a pair of areas of expenditure both of which must be reduced?", "options": [ "A) G, M", "B) M, R", "C) N, R", "D) R, S", "E) S, W" ], "answer": "B" }, { "id": "ar_lsat_199610_3-G_2_9", "context": "A university library budget committee must reduce exactly five of eight areas of expenditure—G, L, M, N, P, R, S, and W—in accordance with the following conditions: If both G and S are reduced, W is also reduced. If N is reduced, neither R nor S is reduced. If P is reduced, L is not reduced. Of the three areas L, M, and R, exactly two are reduced.", "question": "If both L and S are reduced, which one of the following could be a pair of areas of expenditure both of which are reduced?", "options": [ "A) G, M", "B) G, P", "C) N, R", "D) N, W", "E) P, S" ], "answer": "A" }, { "id": "ar_lsat_199610_3-G_2_10", "context": "A university library budget committee must reduce exactly five of eight areas of expenditure—G, L, M, N, P, R, S, and W—in accordance with the following conditions: If both G and S are reduced, W is also reduced. If N is reduced, neither R nor S is reduced. If P is reduced, L is not reduced. Of the three areas L, M, and R, exactly two are reduced.", "question": "If R is not reduced, which one of the following must be true?", "options": [ "A) G is reduced.", "B) N is not reduced.", "C) P is reduced.", "D) S is reduced.", "E) W is not reduced." ], "answer": "A" }, { "id": "ar_lsat_199610_3-G_2_11", "context": "A university library budget committee must reduce exactly five of eight areas of expenditure—G, L, M, N, P, R, S, and W—in accordance with the following conditions: If both G and S are reduced, W is also reduced. If N is reduced, neither R nor S is reduced. If P is reduced, L is not reduced. Of the three areas L, M, and R, exactly two are reduced.", "question": "If both M and R are reduced, which one of the following is a pair of areas neither of which could be reduced?", "options": [ "A) G, L", "B) G, N", "C) L, N", "D) L, P", "E) P, S" ], "answer": "C" }, { "id": "ar_lsat_199610_3-G_2_12", "context": "A university library budget committee must reduce exactly five of eight areas of expenditure—G, L, M, N, P, R, S, and W—in accordance with the following conditions: If both G and S are reduced, W is also reduced. If N is reduced, neither R nor S is reduced. If P is reduced, L is not reduced. Of the three areas L, M, and R, exactly two are reduced.", "question": "Which one of the following areas must be reduced?", "options": [ "A) G", "B) L", "C) N", "D) P", "E) W" ], "answer": "E" }, { "id": "ar_lsat_199610_3-G_3_13", "context": "A jeweler makes a single strand of beads by threading onto a string in a single direction from a clasp a series of solid-colored beads. Each bead is either green, orange, purple, red, or yellow. The resulting strand satisfies the following specifications: If a purple bead is adjacent to a yellow bead, any bead that immediately follows and any bead that immediately precedes that pair must be red. Any pair of beads adjacent to each other that are the same color as each other must be green. No orange bead can be adjacent to any red bead. Any portion of the strand containing eight consecutive beads must include at least one bead of each color.", "question": "If the strand has exactly eight beads, which one of the following is an acceptable order, starting from the clasp, for the eight beads?", "options": [ "A) green, red, purple, yellow, red, orange, green, purple", "B) orange, yellow, red, red, yellow, purple, red, green", "C) purple, yellow, red, green, green, orange, yellow, orange", "D) red, orange, red, yellow, purple, green, yellow, green", "E) red, yellow, purple, red, green, red, green, green" ], "answer": "C" }, { "id": "ar_lsat_199610_3-G_3_14", "context": "A jeweler makes a single strand of beads by threading onto a string in a single direction from a clasp a series of solid-colored beads. Each bead is either green, orange, purple, red, or yellow. The resulting strand satisfies the following specifications: If a purple bead is adjacent to a yellow bead, any bead that immediately follows and any bead that immediately precedes that pair must be red. Any pair of beads adjacent to each other that are the same color as each other must be green. No orange bead can be adjacent to any red bead. Any portion of the strand containing eight consecutive beads must include at least one bead of each color.", "question": "If an orange bead is the fourth bead from the clasp, which one of the following is a pair that could be the second and third beads, respectively?", "options": [ "A) green, orange", "B) green, red", "C) purple, purple", "D) yellow, green", "E) yellow, purple" ], "answer": "D" }, { "id": "ar_lsat_199610_3-G_3_15", "context": "A jeweler makes a single strand of beads by threading onto a string in a single direction from a clasp a series of solid-colored beads. Each bead is either green, orange, purple, red, or yellow. The resulting strand satisfies the following specifications: If a purple bead is adjacent to a yellow bead, any bead that immediately follows and any bead that immediately precedes that pair must be red. Any pair of beads adjacent to each other that are the same color as each other must be green. No orange bead can be adjacent to any red bead. Any portion of the strand containing eight consecutive beads must include at least one bead of each color.", "question": "If on an eight-bead strand the second, third, and fourth beads from the clasp are red, green, and yellow, respectively, and the sixth and seventh beads are purple and red, respectively, then which one of the following must be true?", "options": [ "A) The first bead is purple.", "B) The fifth bead is green.", "C) The fifth bead is orange.", "D) The eighth bead is orange.", "E) The eighth bead is yellow." ], "answer": "C" }, { "id": "ar_lsat_199610_3-G_3_16", "context": "A jeweler makes a single strand of beads by threading onto a string in a single direction from a clasp a series of solid-colored beads. Each bead is either green, orange, purple, red, or yellow. The resulting strand satisfies the following specifications: If a purple bead is adjacent to a yellow bead, any bead that immediately follows and any bead that immediately precedes that pair must be red. Any pair of beads adjacent to each other that are the same color as each other must be green. No orange bead can be adjacent to any red bead. Any portion of the strand containing eight consecutive beads must include at least one bead of each color.", "question": "If on a six-bead strand the first and second beads from the clasp are purple and yellow, respectively, then the fifth and sixth beads CANNOT be", "options": [ "A) green and orange, respectively", "B) orange and green, respectively", "C) orange and yellow, respectively", "D) purple and orange, respectively", "E) yellow and purple, respectively" ], "answer": "E" }, { "id": "ar_lsat_199610_3-G_3_17", "context": "A jeweler makes a single strand of beads by threading onto a string in a single direction from a clasp a series of solid-colored beads. Each bead is either green, orange, purple, red, or yellow. The resulting strand satisfies the following specifications: If a purple bead is adjacent to a yellow bead, any bead that immediately follows and any bead that immediately precedes that pair must be red. Any pair of beads adjacent to each other that are the same color as each other must be green. No orange bead can be adjacent to any red bead. Any portion of the strand containing eight consecutive beads must include at least one bead of each color.", "question": "If on a nine-bead strand the first and fourth beads from the clasp are purple, and the second and fifth beads are yellow, which one of the following could be true?", "options": [ "A) The seventh bead is orange.", "B) The eighth bead is green.", "C) The eighth bead is red.", "D) The ninth bead is red.", "E) The ninth bead is yellow." ], "answer": "E" }, { "id": "ar_lsat_199610_3-G_3_18", "context": "A jeweler makes a single strand of beads by threading onto a string in a single direction from a clasp a series of solid-colored beads. Each bead is either green, orange, purple, red, or yellow. The resulting strand satisfies the following specifications: If a purple bead is adjacent to a yellow bead, any bead that immediately follows and any bead that immediately precedes that pair must be red. Any pair of beads adjacent to each other that are the same color as each other must be green. No orange bead can be adjacent to any red bead. Any portion of the strand containing eight consecutive beads must include at least one bead of each color.", "question": "If on an eight-bead strand the first, second, third, and fourth beads from the clasp are red, yellow, green, and red, respectively, then the fifth and sixth beads CANNOT be", "options": [ "A) green and orange, respectively", "B) green and purple, respectively", "C) purple and orange, respectively", "D) purple and yellow, respectively", "E) yellow and orange, respectively" ], "answer": "D" }, { "id": "ar_lsat_199610_3-G_4_19", "context": "At an evening concert, a total of six songs—O, P, T, X, Y, and Z—will be performed by three vocalists—George, Helen, and Leslie. The songs will be sung consecutively as solos, and each will be performed exactly once. The following constraints govern the composition of the concert program: Y must be performed earlier than T and earlier than O. P must be performed earlier than Z and later than O. George can perform only X, Y, and Z. Helen can perform only T, P, and X. Leslie can perform only O, P, and X. The vocalist who performs first must be different from the vocalist who performs last.", "question": "Which one of the following is an acceptable schedule for the performance of the songs, in order from the first to last song performed?", "options": [ "A) X, T, Y, O, P, Z", "B) X, Z, Y, T, O, P", "C) Y, O, P, X, T, Z", "D) Y, P, O, Z, T, X", "E) Y, X, O, P, Z, T" ], "answer": "E" }, { "id": "ar_lsat_199610_3-G_4_20", "context": "At an evening concert, a total of six songs—O, P, T, X, Y, and Z—will be performed by three vocalists—George, Helen, and Leslie. The songs will be sung consecutively as solos, and each will be performed exactly once. The following constraints govern the composition of the concert program: Y must be performed earlier than T and earlier than O. P must be performed earlier than Z and later than O. George can perform only X, Y, and Z. Helen can perform only T, P, and X. Leslie can perform only O, P, and X. The vocalist who performs first must be different from the vocalist who performs last.", "question": "Which one of the following must be true about the program?", "options": [ "A) George performs X.", "B) Helen performs O.", "C) Helen performs T.", "D) Leslie performs P.", "E) Leslie performs X." ], "answer": "C" }, { "id": "ar_lsat_199610_3-G_4_21", "context": "At an evening concert, a total of six songs—O, P, T, X, Y, and Z—will be performed by three vocalists—George, Helen, and Leslie. The songs will be sung consecutively as solos, and each will be performed exactly once. The following constraints govern the composition of the concert program: Y must be performed earlier than T and earlier than O. P must be performed earlier than Z and later than O. George can perform only X, Y, and Z. Helen can perform only T, P, and X. Leslie can perform only O, P, and X. The vocalist who performs first must be different from the vocalist who performs last.", "question": "Which one of the following is a complete and accurate list of the songs any one of which could be the last song performed at the concert?", "options": [ "A) O, P, Z", "B) O, T, X", "C) T, P, Z", "D) T, X, Z", "E) X, P, Z" ], "answer": "D" }, { "id": "ar_lsat_199610_3-G_4_22", "context": "At an evening concert, a total of six songs—O, P, T, X, Y, and Z—will be performed by three vocalists—George, Helen, and Leslie. The songs will be sung consecutively as solos, and each will be performed exactly once. The following constraints govern the composition of the concert program: Y must be performed earlier than T and earlier than O. P must be performed earlier than Z and later than O. George can perform only X, Y, and Z. Helen can perform only T, P, and X. Leslie can perform only O, P, and X. The vocalist who performs first must be different from the vocalist who performs last.", "question": "If X is performed first, which one of the following must be true?", "options": [ "A) X is performed by George.", "B) X is performed by Helen.", "C) P is the fourth song performed.", "D) Y is the second song performed.", "E) Y is the third song performed." ], "answer": "D" }, { "id": "ar_lsat_199610_3-G_4_23", "context": "At an evening concert, a total of six songs—O, P, T, X, Y, and Z—will be performed by three vocalists—George, Helen, and Leslie. The songs will be sung consecutively as solos, and each will be performed exactly once. The following constraints govern the composition of the concert program: Y must be performed earlier than T and earlier than O. P must be performed earlier than Z and later than O. George can perform only X, Y, and Z. Helen can perform only T, P, and X. Leslie can perform only O, P, and X. The vocalist who performs first must be different from the vocalist who performs last.", "question": "Each of the following is an acceptable schedule for the performance of the songs, in order from the first to last song performed, EXCEPT:", "options": [ "A) Y, O, P, T, Z, X", "B) Y, T, O, P, X, Z", "C) Y, X, O, P, Z, T", "D) X, Y, O, P, Z, T", "E) X, Y, O, T, P, Z" ], "answer": "B" }, { "id": "ar_lsat_199610_3-G_4_24", "context": "At an evening concert, a total of six songs—O, P, T, X, Y, and Z—will be performed by three vocalists—George, Helen, and Leslie. The songs will be sung consecutively as solos, and each will be performed exactly once. The following constraints govern the composition of the concert program: Y must be performed earlier than T and earlier than O. P must be performed earlier than Z and later than O. George can perform only X, Y, and Z. Helen can perform only T, P, and X. Leslie can perform only O, P, and X. The vocalist who performs first must be different from the vocalist who performs last.", "question": "If Y is performed first, the songs performed second, third, and fourth, respectively, could be", "options": [ "A) T, X, and O", "B) T, Z, and O", "C) X, O, and P", "D) X, P, and Z", "E) X, T, and O" ], "answer": "C" }, { "id": "ar_lsat_199612_1-G_1_1", "context": "Seven students—fourth-year students Kim and Lee; third-year students Pat and Robin; and second-year students Sandy, Terry, and Val—and only those seven, are being assigned to rooms of equal size in a dormitory. Each room assigned must have either one, or two, or three students assigned to it, and will accordingly be called either a single, or a double, or a triple. The seven students are assigned to rooms in accordance with the following conditions: No fourth-year student can be assigned to a triple. No second-year student can be assigned to a single. Lee and Robin must not share the same room. Kim and Pat must share the same room.", "question": "Which one of the following is a combination of rooms to which the seven students could be assigned?", "options": [ "A) two triples and one single", "B) one triple and four singles", "C) three doubles and a single", "D) two doubles and three singles", "E) one double and five singles" ], "answer": "C" }, { "id": "ar_lsat_199612_1-G_1_2", "context": "Seven students—fourth-year students Kim and Lee; third-year students Pat and Robin; and second-year students Sandy, Terry, and Val—and only those seven, are being assigned to rooms of equal size in a dormitory. Each room assigned must have either one, or two, or three students assigned to it, and will accordingly be called either a single, or a double, or a triple. The seven students are assigned to rooms in accordance with the following conditions: No fourth-year student can be assigned to a triple. No second-year student can be assigned to a single. Lee and Robin must not share the same room. Kim and Pat must share the same room.", "question": "If the room assigned to Robin is a single, which one of the following could be true?", "options": [ "A) There is exactly one double that has a second-year student assigned to it.", "B) Lee is assigned to a single.", "C) Sandy, Pat and one other student are assigned to a triple together.", "D) Exactly three of the rooms assigned to the students are singles.", "E) Exactly two of the rooms assigned to the students are doubles." ], "answer": "B" }, { "id": "ar_lsat_199612_1-G_1_3", "context": "Seven students—fourth-year students Kim and Lee; third-year students Pat and Robin; and second-year students Sandy, Terry, and Val—and only those seven, are being assigned to rooms of equal size in a dormitory. Each room assigned must have either one, or two, or three students assigned to it, and will accordingly be called either a single, or a double, or a triple. The seven students are assigned to rooms in accordance with the following conditions: No fourth-year student can be assigned to a triple. No second-year student can be assigned to a single. Lee and Robin must not share the same room. Kim and Pat must share the same room.", "question": "Which one of the following must be true?", "options": [ "A) Lee is assigned to a single.", "B) Pat shares a double with another student.", "C) Robin shares a double with another student.", "D) Two of the second-year students share a double with each other.", "E) Neither of the third-year students is assigned to a single." ], "answer": "B" }, { "id": "ar_lsat_199612_1-G_1_4", "context": "Seven students—fourth-year students Kim and Lee; third-year students Pat and Robin; and second-year students Sandy, Terry, and Val—and only those seven, are being assigned to rooms of equal size in a dormitory. Each room assigned must have either one, or two, or three students assigned to it, and will accordingly be called either a single, or a double, or a triple. The seven students are assigned to rooms in accordance with the following conditions: No fourth-year student can be assigned to a triple. No second-year student can be assigned to a single. Lee and Robin must not share the same room. Kim and Pat must share the same room.", "question": "If Robin is assigned to a triple, which one of the following must be true?", "options": [ "A) Lee is assigned to a single.", "B) Two second-year students share a double with each other.", "C) None of the rooms assigned to the students is a single.", "D) Two of the rooms assigned to the students are singles.", "E) Three of the rooms assigned to the students are singles." ], "answer": "C" }, { "id": "ar_lsat_199612_1-G_1_5", "context": "Seven students—fourth-year students Kim and Lee; third-year students Pat and Robin; and second-year students Sandy, Terry, and Val—and only those seven, are being assigned to rooms of equal size in a dormitory. Each room assigned must have either one, or two, or three students assigned to it, and will accordingly be called either a single, or a double, or a triple. The seven students are assigned to rooms in accordance with the following conditions: No fourth-year student can be assigned to a triple. No second-year student can be assigned to a single. Lee and Robin must not share the same room. Kim and Pat must share the same room.", "question": "If Terry and Val are assigned to different doubles from each other, then it must be true of the students' rooms that exactly", "options": [ "A) one is a single", "B) two are singles", "C) two are doubles", "D) one is a triple", "E) two are triples" ], "answer": "A" }, { "id": "ar_lsat_199612_1-G_1_6", "context": "Seven students—fourth-year students Kim and Lee; third-year students Pat and Robin; and second-year students Sandy, Terry, and Val—and only those seven, are being assigned to rooms of equal size in a dormitory. Each room assigned must have either one, or two, or three students assigned to it, and will accordingly be called either a single, or a double, or a triple. The seven students are assigned to rooms in accordance with the following conditions: No fourth-year student can be assigned to a triple. No second-year student can be assigned to a single. Lee and Robin must not share the same room. Kim and Pat must share the same room.", "question": "Which one of the following could be true?", "options": [ "A) The two fourth-year students are assigned to singles.", "B) The two fourth-year students share a double with each other.", "C) Lee shares a room with a second-year student.", "D) Lee shares a room with a third-year student", "E) Pat shares a triple with two other students." ], "answer": "C" }, { "id": "ar_lsat_199612_1-G_2_7", "context": "A worker will insert colored light bulbs into a billboard equipped with exactly three light sockets, which are labeled lights 1, 2, and 3. The worker has three green bulbs, three purple bulbs, and three yellow bulbs. Selection of bulbs for the sockets is governed by the following conditions: Whenever light 1 is purple, light 2 must be yellow. Whenever light 2 is green, light 1 must be green. Whenever light 3 is either purple or yellow, light 2 must be purple.", "question": "Which one of the following could be an accurate list of the colors of light bulbs selected for lights 1, 2, and 3, respectively?", "options": [ "A) green, green, yellow", "B) purple, green, green", "C) purple, purple, green", "D) yellow, purple, green", "E) yellow, yellow, yellow" ], "answer": "D" }, { "id": "ar_lsat_199612_1-G_2_8", "context": "A worker will insert colored light bulbs into a billboard equipped with exactly three light sockets, which are labeled lights 1, 2, and 3. The worker has three green bulbs, three purple bulbs, and three yellow bulbs. Selection of bulbs for the sockets is governed by the following conditions: Whenever light 1 is purple, light 2 must be yellow. Whenever light 2 is green, light 1 must be green. Whenever light 3 is either purple or yellow, light 2 must be purple.", "question": "If light 1 is yellow, then any of the following can be true, EXCEPT:", "options": [ "A) Light 2 is green.", "B) Light 2 is purple.", "C) Light 3 is green.", "D) Light 3 is purple.", "E) Light 3 is yellow." ], "answer": "A" }, { "id": "ar_lsat_199612_1-G_2_9", "context": "A worker will insert colored light bulbs into a billboard equipped with exactly three light sockets, which are labeled lights 1, 2, and 3. The worker has three green bulbs, three purple bulbs, and three yellow bulbs. Selection of bulbs for the sockets is governed by the following conditions: Whenever light 1 is purple, light 2 must be yellow. Whenever light 2 is green, light 1 must be green. Whenever light 3 is either purple or yellow, light 2 must be purple.", "question": "There is exactly one possible color sequence of the three lights if which one of the following is true?", "options": [ "A) Light 1 is purple.", "B) Light 2 is purple.", "C) Light 2 is yellow.", "D) Light 3 is purple.", "E) Light 3 is yellow." ], "answer": "A" }, { "id": "ar_lsat_199612_1-G_2_10", "context": "A worker will insert colored light bulbs into a billboard equipped with exactly three light sockets, which are labeled lights 1, 2, and 3. The worker has three green bulbs, three purple bulbs, and three yellow bulbs. Selection of bulbs for the sockets is governed by the following conditions: Whenever light 1 is purple, light 2 must be yellow. Whenever light 2 is green, light 1 must be green. Whenever light 3 is either purple or yellow, light 2 must be purple.", "question": "If no green bulbs are selected, there are exactly how many possible different color sequences of the three lights?", "options": [ "A) one", "B) two", "C) three", "D) four", "E) five" ], "answer": "B" }, { "id": "ar_lsat_199612_1-G_2_11", "context": "A worker will insert colored light bulbs into a billboard equipped with exactly three light sockets, which are labeled lights 1, 2, and 3. The worker has three green bulbs, three purple bulbs, and three yellow bulbs. Selection of bulbs for the sockets is governed by the following conditions: Whenever light 1 is purple, light 2 must be yellow. Whenever light 2 is green, light 1 must be green. Whenever light 3 is either purple or yellow, light 2 must be purple.", "question": "If no two lights are assigned light bulbs that are the same color as each other, then which one of the following could be true?", "options": [ "A) Light 1 is green, and light 2 is purple.", "B) Light 1 is green, and light 2 is yellow.", "C) Light 1 is purple, and light 3 is yellow.", "D) Light 1 is yellow, and light 2 is green.", "E) Light 1 is yellow, and light 3 is purple." ], "answer": "A" }, { "id": "ar_lsat_199612_1-G_3_12", "context": "An attorney is scheduling interviews with witnesses for a given week, Monday through Saturday. Two full consecutive days of the week must be reserved for interviewing hostile witnesses. In addition, nonhostile witnesses Q, R, U, X, Y, and Z will each be interviewed exactly once for a full morning or afternoon. The only witnesses who will be interviewed simultaneously with each other are Q and R. The following conditions apply: X must be interviewed on Thursday morning. Q must be interviewed at some time before X. U must be interviewed at some time before R. Z must be interviewed at some time after X and at some time after Y.", "question": "Which one of the following is a sequence, from first to last, in which the nonhostile witnesses could be interviewed?", "options": [ "A) Q with R, U, X, Y, Z", "B) Q, U, R, X with Y, Z", "C) U, X, Q, with R, X, Z", "D) U, Y, Q with R, X, Z", "E) X, Q with U, Z, R, Y" ], "answer": "D" }, { "id": "ar_lsat_199612_1-G_3_13", "context": "An attorney is scheduling interviews with witnesses for a given week, Monday through Saturday. Two full consecutive days of the week must be reserved for interviewing hostile witnesses. In addition, nonhostile witnesses Q, R, U, X, Y, and Z will each be interviewed exactly once for a full morning or afternoon. The only witnesses who will be interviewed simultaneously with each other are Q and R. The following conditions apply: X must be interviewed on Thursday morning. Q must be interviewed at some time before X. U must be interviewed at some time before R. Z must be interviewed at some time after X and at some time after Y.", "question": "Which one of the following is acceptable as a complete schedule of witnesses for Tuesday morning, Tuesday afternoon, and Wednesday morning, respectively?", "options": [ "A) Q, R, none", "B) R, none, Y", "C) U, none, X", "D) U, Y, none", "E) Y, Z, none" ], "answer": "D" }, { "id": "ar_lsat_199612_1-G_3_14", "context": "An attorney is scheduling interviews with witnesses for a given week, Monday through Saturday. Two full consecutive days of the week must be reserved for interviewing hostile witnesses. In addition, nonhostile witnesses Q, R, U, X, Y, and Z will each be interviewed exactly once for a full morning or afternoon. The only witnesses who will be interviewed simultaneously with each other are Q and R. The following conditions apply: X must be interviewed on Thursday morning. Q must be interviewed at some time before X. U must be interviewed at some time before R. Z must be interviewed at some time after X and at some time after Y.", "question": "If Y is interviewed at some time after X, which one of the following must be a day reserved for interviewing hostile witnesses?", "options": [ "A) Monday", "B) Tuesday", "C) Wednesday", "D) Friday", "E) Saturday" ], "answer": "B" }, { "id": "ar_lsat_199612_1-G_3_15", "context": "An attorney is scheduling interviews with witnesses for a given week, Monday through Saturday. Two full consecutive days of the week must be reserved for interviewing hostile witnesses. In addition, nonhostile witnesses Q, R, U, X, Y, and Z will each be interviewed exactly once for a full morning or afternoon. The only witnesses who will be interviewed simultaneously with each other are Q and R. The following conditions apply: X must be interviewed on Thursday morning. Q must be interviewed at some time before X. U must be interviewed at some time before R. Z must be interviewed at some time after X and at some time after Y.", "question": "If R is interviewed at some time after Y, which one of the following must be a day reserved for interviewing hostile witnesses?", "options": [ "A) Monday", "B) Tuesday", "C) Wednesday", "D) Thursday", "E) Friday" ], "answer": "E" }, { "id": "ar_lsat_199612_1-G_3_16", "context": "An attorney is scheduling interviews with witnesses for a given week, Monday through Saturday. Two full consecutive days of the week must be reserved for interviewing hostile witnesses. In addition, nonhostile witnesses Q, R, U, X, Y, and Z will each be interviewed exactly once for a full morning or afternoon. The only witnesses who will be interviewed simultaneously with each other are Q and R. The following conditions apply: X must be interviewed on Thursday morning. Q must be interviewed at some time before X. U must be interviewed at some time before R. Z must be interviewed at some time after X and at some time after Y.", "question": "If on Wednesday afternoon and on Monday the attorney conducts no interviews, which one of the following must be true?", "options": [ "A) Q is interviewed on the same day as U.", "B) R is interviewed on the same day as Y.", "C) Y is interviewed at some time before U.", "D) Y is interviewed at some time before Wednesday.", "E) Z is interviewed at some time before Friday." ], "answer": "E" }, { "id": "ar_lsat_199612_1-G_3_17", "context": "An attorney is scheduling interviews with witnesses for a given week, Monday through Saturday. Two full consecutive days of the week must be reserved for interviewing hostile witnesses. In addition, nonhostile witnesses Q, R, U, X, Y, and Z will each be interviewed exactly once for a full morning or afternoon. The only witnesses who will be interviewed simultaneously with each other are Q and R. The following conditions apply: X must be interviewed on Thursday morning. Q must be interviewed at some time before X. U must be interviewed at some time before R. Z must be interviewed at some time after X and at some time after Y.", "question": "If Z is interviewed on Saturday morning, which one of the following can be true?", "options": [ "A) Wednesday is a day reserved for interviewing hostile witnesses.", "B) Friday is a day reserved for interviewing hostile witnesses.", "C) R is interviewed on Thursday.", "D) U is interviewed on Tuesday.", "E) Y is interviewed at some time before Thursday." ], "answer": "A" }, { "id": "ar_lsat_199612_1-G_4_18", "context": "During a four-week period, each of seven previously unadvertised products—G, H, J, K, L, M, and O—will be advertised. A different pair of these products will be advertised each week. Exactly one of the products will be a member of two of these four pairs. The following constraints must be observed: J is not advertised during a given week unless H is advertised during the immediately preceding week. The product that is advertised during two of the weeks is advertised during week 4 but is not advertised during week 3. G is not advertised during a given week unless either J or else O is also advertised that week. K is advertised during one of the first two weeks. O is one of the products advertised during week 3.", "question": "Which one of the following could be the schedule of advertisements?", "options": [ "A) week 1: G, J; week 2: K, L; week 3: O, M; week 4: H, L", "B) week l: H, K; week 2: J, G; week 3: O, L; week 4: M, K", "C) week 1: H, K; week 2: J, M; week 3: O, L; week 4: G, M", "D) week 1: H, L; week 2: J, M; week 3: O, G; week 4: K, L", "E) week 1: K, M; week 2: H, J; week 3: O, G; week 4: L, M" ], "answer": "B" }, { "id": "ar_lsat_199612_1-G_4_19", "context": "During a four-week period, each of seven previously unadvertised products—G, H, J, K, L, M, and O—will be advertised. A different pair of these products will be advertised each week. Exactly one of the products will be a member of two of these four pairs. The following constraints must be observed: J is not advertised during a given week unless H is advertised during the immediately preceding week. The product that is advertised during two of the weeks is advertised during week 4 but is not advertised during week 3. G is not advertised during a given week unless either J or else O is also advertised that week. K is advertised during one of the first two weeks. O is one of the products advertised during week 3.", "question": "Which one of the following is a pair of products that CANNOT be advertised during the same week as each other?", "options": [ "A) H and K", "B) H and M", "C) J and O", "D) K and L", "E) L and M" ], "answer": "C" }, { "id": "ar_lsat_199612_1-G_4_20", "context": "During a four-week period, each of seven previously unadvertised products—G, H, J, K, L, M, and O—will be advertised. A different pair of these products will be advertised each week. Exactly one of the products will be a member of two of these four pairs. The following constraints must be observed: J is not advertised during a given week unless H is advertised during the immediately preceding week. The product that is advertised during two of the weeks is advertised during week 4 but is not advertised during week 3. G is not advertised during a given week unless either J or else O is also advertised that week. K is advertised during one of the first two weeks. O is one of the products advertised during week 3.", "question": "Which one of the following must be advertised during week 2?", "options": [ "A) G", "B) J", "C) K", "D) L", "E) M" ], "answer": "B" }, { "id": "ar_lsat_199612_1-G_4_21", "context": "During a four-week period, each of seven previously unadvertised products—G, H, J, K, L, M, and O—will be advertised. A different pair of these products will be advertised each week. Exactly one of the products will be a member of two of these four pairs. The following constraints must be observed: J is not advertised during a given week unless H is advertised during the immediately preceding week. The product that is advertised during two of the weeks is advertised during week 4 but is not advertised during week 3. G is not advertised during a given week unless either J or else O is also advertised that week. K is advertised during one of the first two weeks. O is one of the products advertised during week 3.", "question": "Which one of the following CANNOT be the product that is advertised during two of the weeks?", "options": [ "A) G", "B) H", "C) K", "D) L", "E) M" ], "answer": "A" }, { "id": "ar_lsat_199612_1-G_4_22", "context": "During a four-week period, each of seven previously unadvertised products—G, H, J, K, L, M, and O—will be advertised. A different pair of these products will be advertised each week. Exactly one of the products will be a member of two of these four pairs. The following constraints must be observed: J is not advertised during a given week unless H is advertised during the immediately preceding week. The product that is advertised during two of the weeks is advertised during week 4 but is not advertised during week 3. G is not advertised during a given week unless either J or else O is also advertised that week. K is advertised during one of the first two weeks. O is one of the products advertised during week 3.", "question": "If L is the product that is advertised during two of the weeks, which one of the following is a product that must be advertised during one of the weeks in which L is advertised?", "options": [ "A) G", "B) H", "C) J", "D) K", "E) M" ], "answer": "E" }, { "id": "ar_lsat_199612_1-G_4_23", "context": "During a four-week period, each of seven previously unadvertised products—G, H, J, K, L, M, and O—will be advertised. A different pair of these products will be advertised each week. Exactly one of the products will be a member of two of these four pairs. The following constraints must be observed: J is not advertised during a given week unless H is advertised during the immediately preceding week. The product that is advertised during two of the weeks is advertised during week 4 but is not advertised during week 3. G is not advertised during a given week unless either J or else O is also advertised that week. K is advertised during one of the first two weeks. O is one of the products advertised during week 3.", "question": "Which one of the following is a product that could be advertised in any of the four weeks?", "options": [ "A) H", "B) J", "C) K", "D) L", "E) O" ], "answer": "D" }, { "id": "ar_lsat_199612_1-G_4_24", "context": "During a four-week period, each of seven previously unadvertised products—G, H, J, K, L, M, and O—will be advertised. A different pair of these products will be advertised each week. Exactly one of the products will be a member of two of these four pairs. The following constraints must be observed: J is not advertised during a given week unless H is advertised during the immediately preceding week. The product that is advertised during two of the weeks is advertised during week 4 but is not advertised during week 3. G is not advertised during a given week unless either J or else O is also advertised that week. K is advertised during one of the first two weeks. O is one of the products advertised during week 3.", "question": "Which one of the following is a pair of products that could be advertised during the same week as each other?", "options": [ "A) G and H", "B) H and J", "C) H and O", "D) K and O", "E) M and O" ], "answer": "E" }, { "id": "ar_lsat_199702_4-G_1_1", "context": "An upholsterer will do seven jobs—N, O, P, S, T, U, and X—during a given week on Monday through Friday. Each job is done on exactly one of the days, and no two jobs are done concurrently. Each job takes either one half day or an entire day. The following conditions apply: N is done on the same day as S. X is done on Wednesday, and T is done on Friday. S is done earlier than the day on which P is done. U and X are the only jobs that must take an entire day each.", "question": "Which one of the following is an acceptable schedule for the seven jobs? Mon. Tues. Wed. Thurs. Fri.", "options": [ "A) N, S P X O, U T", "B) O N, S X P U", "C) P U X N, S O, T", "D) S N, P X U O, T", "E) U N, S X O P, T" ], "answer": "E" }, { "id": "ar_lsat_199702_4-G_1_2", "context": "An upholsterer will do seven jobs—N, O, P, S, T, U, and X—during a given week on Monday through Friday. Each job is done on exactly one of the days, and no two jobs are done concurrently. Each job takes either one half day or an entire day. The following conditions apply: N is done on the same day as S. X is done on Wednesday, and T is done on Friday. S is done earlier than the day on which P is done. U and X are the only jobs that must take an entire day each.", "question": "Which one of the following is a complete and accurate list of those jobs each of which CANNOT be done on Tuesday?", "options": [ "A) P, U", "B) T, X", "C) N, P, S", "D) N, S, X", "E) T, U, X" ], "answer": "B" }, { "id": "ar_lsat_199702_4-G_1_3", "context": "An upholsterer will do seven jobs—N, O, P, S, T, U, and X—during a given week on Monday through Friday. Each job is done on exactly one of the days, and no two jobs are done concurrently. Each job takes either one half day or an entire day. The following conditions apply: N is done on the same day as S. X is done on Wednesday, and T is done on Friday. S is done earlier than the day on which P is done. U and X are the only jobs that must take an entire day each.", "question": "If O is done on Thursday, N could be done on", "options": [ "A) Monday, but on no other day", "B) Thursday, but on no other day", "C) Monday or else on Tuesday, but on no other day", "D) Tuesday or else on Wednesday, but on no other day", "E) Wednesday or else on Thursday, but on no other day" ], "answer": "C" }, { "id": "ar_lsat_199702_4-G_1_4", "context": "An upholsterer will do seven jobs—N, O, P, S, T, U, and X—during a given week on Monday through Friday. Each job is done on exactly one of the days, and no two jobs are done concurrently. Each job takes either one half day or an entire day. The following conditions apply: N is done on the same day as S. X is done on Wednesday, and T is done on Friday. S is done earlier than the day on which P is done. U and X are the only jobs that must take an entire day each.", "question": "Which one of the following must be true if the upholsterer does two jobs on Thursday and two jobs on Friday?", "options": [ "A) N is done on Monday.", "B) O is done on Tuesday.", "C) P is done on Friday.", "D) O is done on the same day as P.", "E) O is done on the same day as T." ], "answer": "C" }, { "id": "ar_lsat_199702_4-G_1_5", "context": "An upholsterer will do seven jobs—N, O, P, S, T, U, and X—during a given week on Monday through Friday. Each job is done on exactly one of the days, and no two jobs are done concurrently. Each job takes either one half day or an entire day. The following conditions apply: N is done on the same day as S. X is done on Wednesday, and T is done on Friday. S is done earlier than the day on which P is done. U and X are the only jobs that must take an entire day each.", "question": "If P is not done on Friday, which one of the following must be true?", "options": [ "A) N is done on Monday or else on Thursday.", "B) O is done on Wednesday or else on Thursday.", "C) S is done on Monday or else on Thursday.", "D) P is done on the same day as O.", "E) O is done on the same day as either P or T." ], "answer": "E" }, { "id": "ar_lsat_199702_4-G_1_6", "context": "An upholsterer will do seven jobs—N, O, P, S, T, U, and X—during a given week on Monday through Friday. Each job is done on exactly one of the days, and no two jobs are done concurrently. Each job takes either one half day or an entire day. The following conditions apply: N is done on the same day as S. X is done on Wednesday, and T is done on Friday. S is done earlier than the day on which P is done. U and X are the only jobs that must take an entire day each.", "question": "If O is done on Monday, which one of the following must be true?", "options": [ "A) N is done on Tuesday.", "B) P is done on Thursday.", "C) P is done on Friday.", "D) S is done on Thursday.", "E) U is done on Friday." ], "answer": "C" }, { "id": "ar_lsat_199702_4-G_2_7", "context": "Seven persons—G, H, I, K, L, M, and P—are going rock-climbing together. One person will be the organizer and not a member of any team. The remaining six will form three climbing teams, each consisting of two persons. No person can be on more than one team. The following conditions also apply: M and P cannot be on the same team as each other. If K is on a team, M must also be on that team. If G is on a team, either H or I must also be on that team. If H is on a team, K must be the organizer.", "question": "Which one of the following can be a list of the members of the three teams?", "options": [ "A) Team 1: G, H; Team 2: I, L; Team 3: M, P", "B) Team 1: G, H; Team 2: L, P; Team 3: K, M", "C) Team 1: G, I; Team 2: H, M; Team 3: L, P", "D) Team 1: G, P; Team 2: I, L; Team 3: K, M", "E) Team 1: H, M; Team 2: I, L; Team 3: K, P" ], "answer": "C" }, { "id": "ar_lsat_199702_4-G_2_8", "context": "Seven persons—G, H, I, K, L, M, and P—are going rock-climbing together. One person will be the organizer and not a member of any team. The remaining six will form three climbing teams, each consisting of two persons. No person can be on more than one team. The following conditions also apply: M and P cannot be on the same team as each other. If K is on a team, M must also be on that team. If G is on a team, either H or I must also be on that team. If H is on a team, K must be the organizer.", "question": "Each of the following is a pair of persons who can constitute a team EXCEPT:", "options": [ "A) H, I", "B) H, M", "C) I, M", "D) I, P", "E) L, P" ], "answer": "A" }, { "id": "ar_lsat_199702_4-G_2_9", "context": "Seven persons—G, H, I, K, L, M, and P—are going rock-climbing together. One person will be the organizer and not a member of any team. The remaining six will form three climbing teams, each consisting of two persons. No person can be on more than one team. The following conditions also apply: M and P cannot be on the same team as each other. If K is on a team, M must also be on that team. If G is on a team, either H or I must also be on that team. If H is on a team, K must be the organizer.", "question": "Which one of the following can be the organizer, who is not on any team?", "options": [ "A) G", "B) H", "C) I", "D) L", "E) P" ], "answer": "B" }, { "id": "ar_lsat_199702_4-G_2_10", "context": "Seven persons—G, H, I, K, L, M, and P—are going rock-climbing together. One person will be the organizer and not a member of any team. The remaining six will form three climbing teams, each consisting of two persons. No person can be on more than one team. The following conditions also apply: M and P cannot be on the same team as each other. If K is on a team, M must also be on that team. If G is on a team, either H or I must also be on that team. If H is on a team, K must be the organizer.", "question": "If G and I form a team and if H is a member of a team, then H must be on the same team as either", "options": [ "A) K or L", "B) K or P", "C) L or M", "D) L or P", "E) M or P" ], "answer": "E" }, { "id": "ar_lsat_199702_4-G_2_11", "context": "Seven persons—G, H, I, K, L, M, and P—are going rock-climbing together. One person will be the organizer and not a member of any team. The remaining six will form three climbing teams, each consisting of two persons. No person can be on more than one team. The following conditions also apply: M and P cannot be on the same team as each other. If K is on a team, M must also be on that team. If G is on a team, either H or I must also be on that team. If H is on a team, K must be the organizer.", "question": "If L and M are on different teams, which one of the following must be true?", "options": [ "A) H is the organizer.", "B) K is the organizer.", "C) G is on the same team as H.", "D) I is on the same team as M.", "E) L is on the same team as P." ], "answer": "E" }, { "id": "ar_lsat_199702_4-G_2_12", "context": "Seven persons—G, H, I, K, L, M, and P—are going rock-climbing together. One person will be the organizer and not a member of any team. The remaining six will form three climbing teams, each consisting of two persons. No person can be on more than one team. The following conditions also apply: M and P cannot be on the same team as each other. If K is on a team, M must also be on that team. If G is on a team, either H or I must also be on that team. If H is on a team, K must be the organizer.", "question": "Which one of the following lists three persons each of whom must be on a team and no two of whom can be on the same team as each other?", "options": [ "A) G, L, M", "B) G, M, P", "C) H, I, L", "D) I, L, P", "E) L, M, P" ], "answer": "B" }, { "id": "ar_lsat_199702_4-G_2_13", "context": "Seven persons—G, H, I, K, L, M, and P—are going rock-climbing together. One person will be the organizer and not a member of any team. The remaining six will form three climbing teams, each consisting of two persons. No person can be on more than one team. The following conditions also apply: M and P cannot be on the same team as each other. If K is on a team, M must also be on that team. If G is on a team, either H or I must also be on that team. If H is on a team, K must be the organizer.", "question": "There are how many different persons any one of whom could be paired with M to form a team?", "options": [ "A) one", "B) two", "C) three", "D) four", "E) five" ], "answer": "D" }, { "id": "ar_lsat_199702_4-G_3_14", "context": "A train makes five trips around a loop through five stations—P, Q, R, S, and T, in that order—stopping at exactly three of the stations on each trip. The train must conform to the following conditions: The train stops at any given station on exactly three trips, but not on three consecutive trips. The train stops at any given station at least once in any two consecutive trips.", "question": "Which one of the following could be the list of stations at which the train stops on the first two trips?", "options": [ "A) first trip: P, Q, S; second trip: P, Q, R", "B) first trip: P, Q, T; second trip: Q, R, T", "C) first trip: Q, R, S; second trip: P, Q, S", "D) first trip: Q, S, T; second trip: P, R, S", "E) first trip: R, S, T; second trip: P, R, T" ], "answer": "D" }, { "id": "ar_lsat_199702_4-G_3_15", "context": "A train makes five trips around a loop through five stations—P, Q, R, S, and T, in that order—stopping at exactly three of the stations on each trip. The train must conform to the following conditions: The train stops at any given station on exactly three trips, but not on three consecutive trips. The train stops at any given station at least once in any two consecutive trips.", "question": "If on the first and third trips the train is to stop at Q, R, and S, and at R, S, and T, respectively, which one of the following is the list of stations at which it must stop on the second trip?", "options": [ "A) P, Q, R", "B) P, Q, T", "C) P, S, T", "D) Q, R, T", "E) Q, S, T" ], "answer": "B" }, { "id": "ar_lsat_199702_4-G_3_16", "context": "A train makes five trips around a loop through five stations—P, Q, R, S, and T, in that order—stopping at exactly three of the stations on each trip. The train must conform to the following conditions: The train stops at any given station on exactly three trips, but not on three consecutive trips. The train stops at any given station at least once in any two consecutive trips.", "question": "The train CANNOT stop at both P and Q on both the", "options": [ "A) first and third trips", "B) first and fourth trips", "C) second and fourth trips", "D) second and fifth trips", "E) fourth and fifth trips" ], "answer": "E" }, { "id": "ar_lsat_199702_4-G_3_17", "context": "A train makes five trips around a loop through five stations—P, Q, R, S, and T, in that order—stopping at exactly three of the stations on each trip. The train must conform to the following conditions: The train stops at any given station on exactly three trips, but not on three consecutive trips. The train stops at any given station at least once in any two consecutive trips.", "question": "If the train is to stop at Q, R, and T on the first trip and at Q, R, and S on the fourth trip, then it could be true that the train", "options": [ "A) stops at Q on the second trip", "B) stops at R on the fifth trip", "C) stops at T on the second trip", "D) does not stop at P on the third trip", "E) does not stop at T on the fifth trip" ], "answer": "A" }, { "id": "ar_lsat_199702_4-G_3_18", "context": "A train makes five trips around a loop through five stations—P, Q, R, S, and T, in that order—stopping at exactly three of the stations on each trip. The train must conform to the following conditions: The train stops at any given station on exactly three trips, but not on three consecutive trips. The train stops at any given station at least once in any two consecutive trips.", "question": "Suppose that the train's scheduler mistakenly scheduled the train to make the following stops on the first three trips: Q, R, and S on the first trip; P, Q, and S on the second trip; and R, S, and T on the third trip. Which one of the following is a substitution that results in a schedule for those three trips under which the train violates no condition?", "options": [ "A) on the first trip, P for Q", "B) on the second trip, R for S", "C) on the second trip, T for S", "D) on the third trip, P for R", "E) on the third trip, P for S" ], "answer": "C" }, { "id": "ar_lsat_199702_4-G_4_19", "context": "On a certain morning, each of six speakers—Feinberg, Guzman, Harrison, Jansen, Kim, and Mackey—will lecture for exactly one hour. Each lecture will take place in either the library or the studio, with exactly one speaker at a time lecturing in each of these two rooms. The lectures must be given in a manner consistent with the following conditions: Exactly three of the lectures are given in each room, the first beginning at precisely 8 A.M. , the second at precisely 9 A.M., and the third at precisely 10 A.M. Feinberg's lecture cannot begin earlier than Guzman's. Neither Jansen's lecture nor Mackey's lecture begins at the same time as Feinberg's. Harrison's lecture begins earlier than Feinberg's. Jansen and Mackey, not necessarily in that order, lecture in the studio.", "question": "Which one of the following must be true?", "options": [ "A) Either Jansen or else Mackey lectures in the studio beginning at 8 A.M.", "B) Either Harrison or else Mackey lectures in the studio beginning at 9 A.M.", "C) Either Guzman or else Harrison lectures in the library beginning at 8 A.M.", "D) Either Feinberg or else Guzman lectures in the library beginning at 9 A.M.", "E) Either Feinberg or else Guzman lectures in the library beginning at 10 A.M." ], "answer": "A" }, { "id": "ar_lsat_199702_4-G_4_20", "context": "On a certain morning, each of six speakers—Feinberg, Guzman, Harrison, Jansen, Kim, and Mackey—will lecture for exactly one hour. Each lecture will take place in either the library or the studio, with exactly one speaker at a time lecturing in each of these two rooms. The lectures must be given in a manner consistent with the following conditions: Exactly three of the lectures are given in each room, the first beginning at precisely 8 A.M. , the second at precisely 9 A.M., and the third at precisely 10 A.M. Feinberg's lecture cannot begin earlier than Guzman's. Neither Jansen's lecture nor Mackey's lecture begins at the same time as Feinberg's. Harrison's lecture begins earlier than Feinberg's. Jansen and Mackey, not necessarily in that order, lecture in the studio.", "question": "If both Kim's lecture and Mackey's lecture begin at 9 A.M. , which one of the following could be true?", "options": [ "A) Guzman's lecture begins at 8 A.M.", "B) Harrison's lecture begins at 10 A.M.", "C) Jansen's lecture begins at 10 A.M.", "D) Guzman lectures in the library.", "E) Harrison lectures in the studio." ], "answer": "D" }, { "id": "ar_lsat_199702_4-G_4_21", "context": "On a certain morning, each of six speakers—Feinberg, Guzman, Harrison, Jansen, Kim, and Mackey—will lecture for exactly one hour. Each lecture will take place in either the library or the studio, with exactly one speaker at a time lecturing in each of these two rooms. The lectures must be given in a manner consistent with the following conditions: Exactly three of the lectures are given in each room, the first beginning at precisely 8 A.M. , the second at precisely 9 A.M., and the third at precisely 10 A.M. Feinberg's lecture cannot begin earlier than Guzman's. Neither Jansen's lecture nor Mackey's lecture begins at the same time as Feinberg's. Harrison's lecture begins earlier than Feinberg's. Jansen and Mackey, not necessarily in that order, lecture in the studio.", "question": "If Harrison's lecture begins at 9 A.M. , which one of the following must be true?", "options": [ "A) Feinberg lectures in the library.", "B) Guzman lectures in the studio.", "C) Harrison lectures in the library.", "D) Kim lectures in the studio.", "E) Mackey lectures in the library." ], "answer": "C" }, { "id": "ar_lsat_199702_4-G_4_22", "context": "On a certain morning, each of six speakers—Feinberg, Guzman, Harrison, Jansen, Kim, and Mackey—will lecture for exactly one hour. Each lecture will take place in either the library or the studio, with exactly one speaker at a time lecturing in each of these two rooms. The lectures must be given in a manner consistent with the following conditions: Exactly three of the lectures are given in each room, the first beginning at precisely 8 A.M. , the second at precisely 9 A.M., and the third at precisely 10 A.M. Feinberg's lecture cannot begin earlier than Guzman's. Neither Jansen's lecture nor Mackey's lecture begins at the same time as Feinberg's. Harrison's lecture begins earlier than Feinberg's. Jansen and Mackey, not necessarily in that order, lecture in the studio.", "question": "Each of the following is a pair of speakers whose lectures could begin at the same time as each other EXCEPT:", "options": [ "A) Feinberg and Guzman", "B) Feinberg and Kim", "C) Guzman and Jansen", "D) Guzman and Kim", "E) Guzman and Mackey" ], "answer": "D" }, { "id": "ar_lsat_199702_4-G_4_23", "context": "On a certain morning, each of six speakers—Feinberg, Guzman, Harrison, Jansen, Kim, and Mackey—will lecture for exactly one hour. Each lecture will take place in either the library or the studio, with exactly one speaker at a time lecturing in each of these two rooms. The lectures must be given in a manner consistent with the following conditions: Exactly three of the lectures are given in each room, the first beginning at precisely 8 A.M. , the second at precisely 9 A.M., and the third at precisely 10 A.M. Feinberg's lecture cannot begin earlier than Guzman's. Neither Jansen's lecture nor Mackey's lecture begins at the same time as Feinberg's. Harrison's lecture begins earlier than Feinberg's. Jansen and Mackey, not necessarily in that order, lecture in the studio.", "question": "If Feinberg lectures in the library beginning at 9 A.M., which one of the following could be true?", "options": [ "A) Guzman lectures in the studio beginning at 10 A.M.", "B) Harrison lectures in the studio beginning at 8 A.M.", "C) Jansen lectures in the studio beginning at 10 A.M.", "D) Kim lectures in the studio beginning at 9 A.M.", "E) Mackey lectures in the studio beginning at 9 A.M." ], "answer": "C" }, { "id": "ar_lsat_199702_4-G_4_24", "context": "On a certain morning, each of six speakers—Feinberg, Guzman, Harrison, Jansen, Kim, and Mackey—will lecture for exactly one hour. Each lecture will take place in either the library or the studio, with exactly one speaker at a time lecturing in each of these two rooms. The lectures must be given in a manner consistent with the following conditions: Exactly three of the lectures are given in each room, the first beginning at precisely 8 A.M. , the second at precisely 9 A.M., and the third at precisely 10 A.M. Feinberg's lecture cannot begin earlier than Guzman's. Neither Jansen's lecture nor Mackey's lecture begins at the same time as Feinberg's. Harrison's lecture begins earlier than Feinberg's. Jansen and Mackey, not necessarily in that order, lecture in the studio.", "question": "Which one of the following could be a list of the speakers who give their lectures in the studio, in the order in which they give their lectures, from first to third, respectively?", "options": [ "A) Feinberg, Jansen, Mackey", "B) Guzman, Kim, Mackey", "C) Harrison, Jansen, Kim", "D) Jansen, Mackey, Harrison", "E) Mackey, Feinberg, Jansen" ], "answer": "E" }, { "id": "ar_lsat_199706_3-G_1_1", "context": "At a benefit dinner, a community theater's seven sponsors—K, L, M, P, Q, V, and Z—will be seated at three tables—1, 2, and 3. Of the sponsors, only K, L, and M will receive honors, and only M, P, and Q will give a speech. The sponsors' seating assignments must conform to the following conditions: Each table has at least two sponsors seated at it, and each sponsor is seated at exactly one table. Any sponsor receiving honors is seated at table 1 or table 2. L is seated at the same table as V.", "question": "Which one of the following is an acceptable assignment of sponsors to tables?", "options": [ "A) Table 1: K, P; Table 2: M, Q; Table 3: L, V, Z", "B) Table 1: K, Q, Z; Table 2: L, V; Table 3: M, P", "C) Table 1: L, P; Table 2: K, M; Table 3: Q, V, Z", "D) Table 1: L, Q, V; Table 2: K, M; Table 3: P, Z", "E) Table 1: L, V, Z; Table 2: K, M, P; Table 3: Q" ], "answer": "D" }, { "id": "ar_lsat_199706_3-G_1_2", "context": "At a benefit dinner, a community theater's seven sponsors—K, L, M, P, Q, V, and Z—will be seated at three tables—1, 2, and 3. Of the sponsors, only K, L, and M will receive honors, and only M, P, and Q will give a speech. The sponsors' seating assignments must conform to the following conditions: Each table has at least two sponsors seated at it, and each sponsor is seated at exactly one table. Any sponsor receiving honors is seated at table 1 or table 2. L is seated at the same table as V.", "question": "Which one of the following is a list of all and only those sponsors any one of whom could be among the sponsors assigned to table 3?", "options": [ "A) P, Q", "B) Q, Z", "C) P, Q, Z", "D) Q, V, Z", "E) P, Q, V, Z" ], "answer": "C" }, { "id": "ar_lsat_199706_3-G_1_3", "context": "At a benefit dinner, a community theater's seven sponsors—K, L, M, P, Q, V, and Z—will be seated at three tables—1, 2, and 3. Of the sponsors, only K, L, and M will receive honors, and only M, P, and Q will give a speech. The sponsors' seating assignments must conform to the following conditions: Each table has at least two sponsors seated at it, and each sponsor is seated at exactly one table. Any sponsor receiving honors is seated at table 1 or table 2. L is seated at the same table as V.", "question": "If K is assigned to a different table than M, which one of the following must be true of the seating assignment?", "options": [ "A) K is seated at the same table as L.", "B) L is seated at the same table as Q.", "C) M is seated at the same table as V.", "D) Exactly two sponsors are seated at table 1.", "E) Exactly two sponsors are seated at table 3." ], "answer": "E" }, { "id": "ar_lsat_199706_3-G_1_4", "context": "At a benefit dinner, a community theater's seven sponsors—K, L, M, P, Q, V, and Z—will be seated at three tables—1, 2, and 3. Of the sponsors, only K, L, and M will receive honors, and only M, P, and Q will give a speech. The sponsors' seating assignments must conform to the following conditions: Each table has at least two sponsors seated at it, and each sponsor is seated at exactly one table. Any sponsor receiving honors is seated at table 1 or table 2. L is seated at the same table as V.", "question": "If Q is assigned to table 1 along with two other sponsors, which one of the following could be true of the seating assignment?", "options": [ "A) K is seated at the same table as L.", "B) K is seated at the same table as Q.", "C) M is seated at the same table as V.", "D) M is seated at the same table as Z.", "E) P Is seated at the same table as Q." ], "answer": "B" }, { "id": "ar_lsat_199706_3-G_1_5", "context": "At a benefit dinner, a community theater's seven sponsors—K, L, M, P, Q, V, and Z—will be seated at three tables—1, 2, and 3. Of the sponsors, only K, L, and M will receive honors, and only M, P, and Q will give a speech. The sponsors' seating assignments must conform to the following conditions: Each table has at least two sponsors seated at it, and each sponsor is seated at exactly one table. Any sponsor receiving honors is seated at table 1 or table 2. L is seated at the same table as V.", "question": "If the sponsors assigned to table 3 include exactly one of the sponsors who will give a speech, then the sponsors assigned to table 1 could include any of the following EXCEPT:", "options": [ "A) K", "B) M", "C) P", "D) Q", "E) Z" ], "answer": "E" }, { "id": "ar_lsat_199706_3-G_1_6", "context": "At a benefit dinner, a community theater's seven sponsors—K, L, M, P, Q, V, and Z—will be seated at three tables—1, 2, and 3. Of the sponsors, only K, L, and M will receive honors, and only M, P, and Q will give a speech. The sponsors' seating assignments must conform to the following conditions: Each table has at least two sponsors seated at it, and each sponsor is seated at exactly one table. Any sponsor receiving honors is seated at table 1 or table 2. L is seated at the same table as V.", "question": "If three sponsors, exactly two of whom are receiving honors, are assigned to table 2, which one of the following could be the list of sponsors assigned to table 1?", "options": [ "A) K, M", "B) K, Z", "C) P, V", "D) P, Z", "E) Q, Z" ], "answer": "B" }, { "id": "ar_lsat_199706_3-G_1_7", "context": "At a benefit dinner, a community theater's seven sponsors—K, L, M, P, Q, V, and Z—will be seated at three tables—1, 2, and 3. Of the sponsors, only K, L, and M will receive honors, and only M, P, and Q will give a speech. The sponsors' seating assignments must conform to the following conditions: Each table has at least two sponsors seated at it, and each sponsor is seated at exactly one table. Any sponsor receiving honors is seated at table 1 or table 2. L is seated at the same table as V.", "question": "Which one of the following conditions, if added to the existing conditions, results in a set of conditions to which no seating assignment for the sponsors can conform?", "options": [ "A) At most two sponsors are seated at table 1.", "B) Any sponsor giving a speech is seated at table 1 or else table 2.", "C) Any sponsor giving a speech is seated at table 2 or else table 3.", "D) Exactly three of the sponsors are seated at table 1.", "E) Any table at which both L and V are seated also has a third sponsor seated at it." ], "answer": "B" }, { "id": "ar_lsat_199706_3-G_2_8", "context": "Exactly four medical training sessions—M, O, R, and S—will be scheduled for four consecutive days—day 1 through day 4—one session each day. Six professionals—three nurses and three psychologists—will teach the sessions. The nurses are Fine, Johnson, and Leopold; the psychologists are Tyler, Vitale, and Wong. Each session will be taught by exactly one nurse and exactly one psychologist. The schedule must conform to the following conditions: Each professional teaches at least once. Day 3 is a day on which Leopold teaches. Neither Fine nor Leopold teaches with Tyler. Johnson teaches session S only. Session M is taught on the day after the day on which session S is taught.", "question": "If session R is the only session for which Leopold is scheduled, which one of the following is a pair of professionals who could be scheduled for day 2 together?", "options": [ "A) Fine and Tyler", "B) Fine and Wong", "C) Johnson and Tyler", "D) Johnson and Wong", "E) Leopold and Wong" ], "answer": "B" }, { "id": "ar_lsat_199706_3-G_2_9", "context": "Exactly four medical training sessions—M, O, R, and S—will be scheduled for four consecutive days—day 1 through day 4—one session each day. Six professionals—three nurses and three psychologists—will teach the sessions. The nurses are Fine, Johnson, and Leopold; the psychologists are Tyler, Vitale, and Wong. Each session will be taught by exactly one nurse and exactly one psychologist. The schedule must conform to the following conditions: Each professional teaches at least once. Day 3 is a day on which Leopold teaches. Neither Fine nor Leopold teaches with Tyler. Johnson teaches session S only. Session M is taught on the day after the day on which session S is taught.", "question": "Which one of the following must be false?", "options": [ "A) Session O is scheduled for day 1.", "B) Session S is scheduled for day 3.", "C) Leopold is scheduled for day 1.", "D) Vitale is scheduled for day 4.", "E) Wong is scheduled for day 1." ], "answer": "B" }, { "id": "ar_lsat_199706_3-G_2_10", "context": "Exactly four medical training sessions—M, O, R, and S—will be scheduled for four consecutive days—day 1 through day 4—one session each day. Six professionals—three nurses and three psychologists—will teach the sessions. The nurses are Fine, Johnson, and Leopold; the psychologists are Tyler, Vitale, and Wong. Each session will be taught by exactly one nurse and exactly one psychologist. The schedule must conform to the following conditions: Each professional teaches at least once. Day 3 is a day on which Leopold teaches. Neither Fine nor Leopold teaches with Tyler. Johnson teaches session S only. Session M is taught on the day after the day on which session S is taught.", "question": "Which one of the following could be the session and the professionals scheduled for day 4 ?", "options": [ "A) session M, Fine, Wong", "B) session O, Fine, Tyler", "C) session O, Johnson, Tyler", "D) session R, Fine, Wong", "E) session S, Fine, Vitale" ], "answer": "D" }, { "id": "ar_lsat_199706_3-G_2_11", "context": "Exactly four medical training sessions—M, O, R, and S—will be scheduled for four consecutive days—day 1 through day 4—one session each day. Six professionals—three nurses and three psychologists—will teach the sessions. The nurses are Fine, Johnson, and Leopold; the psychologists are Tyler, Vitale, and Wong. Each session will be taught by exactly one nurse and exactly one psychologist. The schedule must conform to the following conditions: Each professional teaches at least once. Day 3 is a day on which Leopold teaches. Neither Fine nor Leopold teaches with Tyler. Johnson teaches session S only. Session M is taught on the day after the day on which session S is taught.", "question": "If session S is scheduled for day 2, which one of the following is a professional who must be scheduled to teach session M ?", "options": [ "A) Fine", "B) Leopold", "C) Tyler", "D) Vitale", "E) Wong" ], "answer": "B" }, { "id": "ar_lsat_199706_3-G_2_12", "context": "Exactly four medical training sessions—M, O, R, and S—will be scheduled for four consecutive days—day 1 through day 4—one session each day. Six professionals—three nurses and three psychologists—will teach the sessions. The nurses are Fine, Johnson, and Leopold; the psychologists are Tyler, Vitale, and Wong. Each session will be taught by exactly one nurse and exactly one psychologist. The schedule must conform to the following conditions: Each professional teaches at least once. Day 3 is a day on which Leopold teaches. Neither Fine nor Leopold teaches with Tyler. Johnson teaches session S only. Session M is taught on the day after the day on which session S is taught.", "question": "If session O and session R are scheduled for consecutive days, which one of the following is a pair of professionals who could be scheduled for day 2 together?", "options": [ "A) Fine and Leopold", "B) Fine and Wong", "C) Johnson and Tyler", "D) Johnson and Vitale", "E) Leopold and Tyler" ], "answer": "B" }, { "id": "ar_lsat_199706_3-G_2_13", "context": "Exactly four medical training sessions—M, O, R, and S—will be scheduled for four consecutive days—day 1 through day 4—one session each day. Six professionals—three nurses and three psychologists—will teach the sessions. The nurses are Fine, Johnson, and Leopold; the psychologists are Tyler, Vitale, and Wong. Each session will be taught by exactly one nurse and exactly one psychologist. The schedule must conform to the following conditions: Each professional teaches at least once. Day 3 is a day on which Leopold teaches. Neither Fine nor Leopold teaches with Tyler. Johnson teaches session S only. Session M is taught on the day after the day on which session S is taught.", "question": "Which one of the following could be the order in which the nurses teach the sessions, listed from day 1 through day 4?", "options": [ "A) Fine, Johnson, Leopold, Leopold", "B) Fine, Leopold, Leopold, Johnson", "C) Johnson, Johnson, Leopold, Fine", "D) Johnson, Leopold, Leopold, Johnson", "E) Leopold, Leopold, Fine, Fine" ], "answer": "A" }, { "id": "ar_lsat_199706_3-G_2_14", "context": "Exactly four medical training sessions—M, O, R, and S—will be scheduled for four consecutive days—day 1 through day 4—one session each day. Six professionals—three nurses and three psychologists—will teach the sessions. The nurses are Fine, Johnson, and Leopold; the psychologists are Tyler, Vitale, and Wong. Each session will be taught by exactly one nurse and exactly one psychologist. The schedule must conform to the following conditions: Each professional teaches at least once. Day 3 is a day on which Leopold teaches. Neither Fine nor Leopold teaches with Tyler. Johnson teaches session S only. Session M is taught on the day after the day on which session S is taught.", "question": "If session O is scheduled for day 3, which one of the following must be scheduled for day 4?", "options": [ "A) session R", "B) session S", "C) Fine", "D) Leopold", "E) Vitale" ], "answer": "A" }, { "id": "ar_lsat_199706_3-G_3_15", "context": "Six paintings hang next to each other as shown below: Each of the paintings is an oil or else a watercolor. Each oil is directly beside, directly above, or directly below another oil. Each watercolor is directly beside, directly above, or directly below another watercolor. Each painting is a nineteenth-century painting or else a twentieth-century painting. Each painting is directly beside, directly above, or directly below another painting painted in the same century. Painting 2 is a nineteenth-century painting. Painting 3 is an oil. Painting 5 is a twentieth-century painting.", "question": "If all of the nineteenth-century paintings are watercolors, which one of the following must be true?", "options": [ "A) Painting 1 is an oil.", "B) Painting 3 is a nineteenth-century painting.", "C) Painting 4 is a watercolor.", "D) Painting 5 is an oil.", "E) Painting 6 is a twentieth-century painting." ], "answer": "E" }, { "id": "ar_lsat_199706_3-G_3_16", "context": "Six paintings hang next to each other as shown below: Each of the paintings is an oil or else a watercolor. Each oil is directly beside, directly above, or directly below another oil. Each watercolor is directly beside, directly above, or directly below another watercolor. Each painting is a nineteenth-century painting or else a twentieth-century painting. Each painting is directly beside, directly above, or directly below another painting painted in the same century. Painting 2 is a nineteenth-century painting. Painting 3 is an oil. Painting 5 is a twentieth-century painting.", "question": "It is possible that the only two watercolors among the six paintings are", "options": [ "A) paintings 1 and 5", "B) paintings 1 and 6", "C) paintings 2 and 4", "D) paintings 4 and 5", "E) paintings 4 and 6" ], "answer": "D" }, { "id": "ar_lsat_199706_3-G_3_17", "context": "Six paintings hang next to each other as shown below: Each of the paintings is an oil or else a watercolor. Each oil is directly beside, directly above, or directly below another oil. Each watercolor is directly beside, directly above, or directly below another watercolor. Each painting is a nineteenth-century painting or else a twentieth-century painting. Each painting is directly beside, directly above, or directly below another painting painted in the same century. Painting 2 is a nineteenth-century painting. Painting 3 is an oil. Painting 5 is a twentieth-century painting.", "question": "If there are exactly three oils and three watercolors, which one of the following must be true?", "options": [ "A) Painting 1 is a watercolor.", "B) Painting 2 is a watercolor.", "C) Painting 4 is a watercolor.", "D) Painting 5 is a watercolor.", "E) Painting 6 is a watercolor." ], "answer": "C" }, { "id": "ar_lsat_199706_3-G_3_18", "context": "Six paintings hang next to each other as shown below: Each of the paintings is an oil or else a watercolor. Each oil is directly beside, directly above, or directly below another oil. Each watercolor is directly beside, directly above, or directly below another watercolor. Each painting is a nineteenth-century painting or else a twentieth-century painting. Each painting is directly beside, directly above, or directly below another painting painted in the same century. Painting 2 is a nineteenth-century painting. Painting 3 is an oil. Painting 5 is a twentieth-century painting.", "question": "If exactly two paintings are oils and exactly two paintings are nineteenth-century paintings, which one of the following must be false?", "options": [ "A) Painting 1 is a nineteenth-century painting, and painting 6 is an oil.", "B) Painting 2 is both a nineteenth-century painting and an oil.", "C) Painting 3 is a nineteenth-century painting.", "D) Paintings 1 and 2 are both nineteenth-century paintings.", "E) Painting 2 is an oil, and painting 4 is a nineteenth-century painting." ], "answer": "E" }, { "id": "ar_lsat_199706_3-G_3_19", "context": "Six paintings hang next to each other as shown below: Each of the paintings is an oil or else a watercolor. Each oil is directly beside, directly above, or directly below another oil. Each watercolor is directly beside, directly above, or directly below another watercolor. Each painting is a nineteenth-century painting or else a twentieth-century painting. Each painting is directly beside, directly above, or directly below another painting painted in the same century. Painting 2 is a nineteenth-century painting. Painting 3 is an oil. Painting 5 is a twentieth-century painting.", "question": "Which one of the following could be true?", "options": [ "A) Paintings 1 and 4 are two of exactly three twentieth-century paintings.", "B) Paintings 1 and 6 are two of exactly three twentieth-century paintings.", "C) Paintings 1 and 6 are two of exactly three nineteenth-century paintings.", "D) Paintings 3 and 4 are two of exactly three nineteenth-century paintings.", "E) Paintings 4 and 6 are two of exactly three nineteenth-century paintings." ], "answer": "A" }, { "id": "ar_lsat_199706_3-G_4_20", "context": "Exactly six of seven jugglers—G, H, K, L, N, P, and Q—are each assigned to exactly one of three positions—front, middle, and rear—on one of two teams—team 1 and team 2. For each team, exactly one juggler must be assigned to each position according to the following conditions: If either G or H or both are assigned to teams, they are assigned to front positions. If assigned to a team, K is assigned to a middle position. If assigned to a team, L is assigned to team 1. Neither P nor K is on the same team as N. P is not on the same team as Q. If H is on team 2, then Q is assigned to the middle position on team 1.", "question": "Which one of the following is an acceptable list of assignments of jugglers to team 2?", "options": [ "A) front: Q; middle: K; rear: N", "B) front: H; middle: P; rear: K", "C) front: H; middle: L; near: N", "D) front: G; middle: Q; rear: P", "E) front: G; middle: Q; rear: N" ], "answer": "E" }, { "id": "ar_lsat_199706_3-G_4_21", "context": "Exactly six of seven jugglers—G, H, K, L, N, P, and Q—are each assigned to exactly one of three positions—front, middle, and rear—on one of two teams—team 1 and team 2. For each team, exactly one juggler must be assigned to each position according to the following conditions: If either G or H or both are assigned to teams, they are assigned to front positions. If assigned to a team, K is assigned to a middle position. If assigned to a team, L is assigned to team 1. Neither P nor K is on the same team as N. P is not on the same team as Q. If H is on team 2, then Q is assigned to the middle position on team 1.", "question": "If H is assigned to team 2, which one of the following is an acceptable assignment of jugglers to team 1?", "options": [ "A) front: G; middle: K; rear: L", "B) front: G; middle: K; rear: N", "C) front: L; middle: K; rear: P", "D) front: L; middle: Q; rear: G", "E) front: L; middle: Q; rear: N" ], "answer": "E" }, { "id": "ar_lsat_199706_3-G_4_22", "context": "Exactly six of seven jugglers—G, H, K, L, N, P, and Q—are each assigned to exactly one of three positions—front, middle, and rear—on one of two teams—team 1 and team 2. For each team, exactly one juggler must be assigned to each position according to the following conditions: If either G or H or both are assigned to teams, they are assigned to front positions. If assigned to a team, K is assigned to a middle position. If assigned to a team, L is assigned to team 1. Neither P nor K is on the same team as N. P is not on the same team as Q. If H is on team 2, then Q is assigned to the middle position on team 1.", "question": "Which one of the following is an acceptable list of assignments of jugglers to team 1?", "options": [ "A) front: G; middle: K; rear: L", "B) front: G; middle: K; rear: P", "C) front: L; middle: K; rear: Q", "D) front: Q; middle: K; rear: P", "E) front: Q; middle: L; rear: N" ], "answer": "E" }, { "id": "ar_lsat_199706_3-G_4_23", "context": "Exactly six of seven jugglers—G, H, K, L, N, P, and Q—are each assigned to exactly one of three positions—front, middle, and rear—on one of two teams—team 1 and team 2. For each team, exactly one juggler must be assigned to each position according to the following conditions: If either G or H or both are assigned to teams, they are assigned to front positions. If assigned to a team, K is assigned to a middle position. If assigned to a team, L is assigned to team 1. Neither P nor K is on the same team as N. P is not on the same team as Q. If H is on team 2, then Q is assigned to the middle position on team 1.", "question": "If G is assigned to team 1, which one of the following is a pair of jugglers who could also be assigned to team 1?", "options": [ "A) H and N", "B) K and L", "C) K and P", "D) L and N", "E) L and Q" ], "answer": "E" }, { "id": "ar_lsat_199706_3-G_4_24", "context": "Exactly six of seven jugglers—G, H, K, L, N, P, and Q—are each assigned to exactly one of three positions—front, middle, and rear—on one of two teams—team 1 and team 2. For each team, exactly one juggler must be assigned to each position according to the following conditions: If either G or H or both are assigned to teams, they are assigned to front positions. If assigned to a team, K is assigned to a middle position. If assigned to a team, L is assigned to team 1. Neither P nor K is on the same team as N. P is not on the same team as Q. If H is on team 2, then Q is assigned to the middle position on team 1.", "question": "If G is assigned to team 1 and K is assigned to team 2, which one of the following must be assigned the rear position on team 2?", "options": [ "A) H", "B) L", "C) N", "D) P", "E) Q" ], "answer": "D" }, { "id": "ar_lsat_199710_1-G_1_1", "context": "A producer is positioning exactly seven music pieces—F, G, H, J, K, L, and M—one after another on a music recording, not necessarily in that order. Each piece will fill exactly one of the seven sequential tracks on the recording, according to the following conditions: F must be second. J cannot be seventh. G can come neither immediately before nor immediately after H. H must be in some track before that of L. L must be in some track before that of M.", "question": "Which one of the following could be the order, from first to seventh, of the pieces on the recording?", "options": [ "A) F, K, G, J, H, L, M", "B) G, F, H, K, L, J, M", "C) G, F, H, K, L, M, J", "D) K, F, G, H, J, L, M", "E) K, F, L, J, H, M, G" ], "answer": "B" }, { "id": "ar_lsat_199710_1-G_1_2", "context": "A producer is positioning exactly seven music pieces—F, G, H, J, K, L, and M—one after another on a music recording, not necessarily in that order. Each piece will fill exactly one of the seven sequential tracks on the recording, according to the following conditions: F must be second. J cannot be seventh. G can come neither immediately before nor immediately after H. H must be in some track before that of L. L must be in some track before that of M.", "question": "If M fills some track before that of J and also before that of K on the recording, which one of the following must be true?", "options": [ "A) G is first.", "B) K is seventh.", "C) L is third.", "D) H comes either immediately before or immediately after F.", "E) L comes either immediately before or immediately after G." ], "answer": "D" }, { "id": "ar_lsat_199710_1-G_1_3", "context": "A producer is positioning exactly seven music pieces—F, G, H, J, K, L, and M—one after another on a music recording, not necessarily in that order. Each piece will fill exactly one of the seven sequential tracks on the recording, according to the following conditions: F must be second. J cannot be seventh. G can come neither immediately before nor immediately after H. H must be in some track before that of L. L must be in some track before that of M.", "question": "Which one of the following is a complete and accurate list of the pieces any of which could be first on the recording?", "options": [ "A) G, J, K", "B) G, H, J, K", "C) G, H, J, L", "D) G, J, K, L", "E) H, J, K, L, M" ], "answer": "B" }, { "id": "ar_lsat_199710_1-G_1_4", "context": "A producer is positioning exactly seven music pieces—F, G, H, J, K, L, and M—one after another on a music recording, not necessarily in that order. Each piece will fill exactly one of the seven sequential tracks on the recording, according to the following conditions: F must be second. J cannot be seventh. G can come neither immediately before nor immediately after H. H must be in some track before that of L. L must be in some track before that of M.", "question": "The earliest track that M can fill is the", "options": [ "A) first", "B) third", "C) fourth", "D) fifth", "E) sixth" ], "answer": "C" }, { "id": "ar_lsat_199710_1-G_1_5", "context": "A producer is positioning exactly seven music pieces—F, G, H, J, K, L, and M—one after another on a music recording, not necessarily in that order. Each piece will fill exactly one of the seven sequential tracks on the recording, according to the following conditions: F must be second. J cannot be seventh. G can come neither immediately before nor immediately after H. H must be in some track before that of L. L must be in some track before that of M.", "question": "If G is to come immediately before H but all the other conditions remain in effect, any of the following could be true EXCEPT:", "options": [ "A) J comes immediately before F.", "B) K comes immediately before G.", "C) J comes immediately after L.", "D) J comes immediately after K.", "E) K comes immediately after M." ], "answer": "D" }, { "id": "ar_lsat_199710_1-G_2_6", "context": "Fu, Gunsel, Jackson, Kowalski, Lee, Mayer, and Ordoveza are the only applicants being considered for some positions at a nonprofit organization. Only applicants who are interviewed will be hired. The hiring process must meet the following constraints: If Gunsel is interviewed, Jackson is interviewed. If Jackson is interviewed, Lee is interviewed. Fu is interviewed. Fu is not hired, unless Kowalski is interviewed. Kowalski is not hired, unless Mayer is interviewed. If Mayer is hired, and Lee is interviewed, Ordoveza is hired.", "question": "Which one of the following could be a complete and accurate list of the applicants that are interviewed?", "options": [ "A) Fu, Gunsel", "B) Fu, Jackson", "C) Fu, Lee", "D) Fu, Gunsel, Lee", "E) Fu, Gunsel, Jackson" ], "answer": "C" }, { "id": "ar_lsat_199710_1-G_2_7", "context": "Fu, Gunsel, Jackson, Kowalski, Lee, Mayer, and Ordoveza are the only applicants being considered for some positions at a nonprofit organization. Only applicants who are interviewed will be hired. The hiring process must meet the following constraints: If Gunsel is interviewed, Jackson is interviewed. If Jackson is interviewed, Lee is interviewed. Fu is interviewed. Fu is not hired, unless Kowalski is interviewed. Kowalski is not hired, unless Mayer is interviewed. If Mayer is hired, and Lee is interviewed, Ordoveza is hired.", "question": "Which one of the following could be true?", "options": [ "A) Lee and Mayer are the only applicants interviewed.", "B) Fu, Jackson, and Kowalski are the only applicants interviewed.", "C) Gunsel and one other applicant are the only applicants interviewed.", "D) Gunsel and two other applicants are the only applicants interviewed.", "E) Gunsel and three other applicants are the only applicants interviewed." ], "answer": "E" }, { "id": "ar_lsat_199710_1-G_2_8", "context": "Fu, Gunsel, Jackson, Kowalski, Lee, Mayer, and Ordoveza are the only applicants being considered for some positions at a nonprofit organization. Only applicants who are interviewed will be hired. The hiring process must meet the following constraints: If Gunsel is interviewed, Jackson is interviewed. If Jackson is interviewed, Lee is interviewed. Fu is interviewed. Fu is not hired, unless Kowalski is interviewed. Kowalski is not hired, unless Mayer is interviewed. If Mayer is hired, and Lee is interviewed, Ordoveza is hired.", "question": "If Mayer is not interviewed, which one of the following must be true?", "options": [ "A) Kowalski is not interviewed.", "B) Kowalski is interviewed but not hired.", "C) Fu is not hired.", "D) Fu is hired but Kowalski is not hired.", "E) Fu is interviewed but Kowalski is not hired." ], "answer": "E" }, { "id": "ar_lsat_199710_1-G_2_9", "context": "Fu, Gunsel, Jackson, Kowalski, Lee, Mayer, and Ordoveza are the only applicants being considered for some positions at a nonprofit organization. Only applicants who are interviewed will be hired. The hiring process must meet the following constraints: If Gunsel is interviewed, Jackson is interviewed. If Jackson is interviewed, Lee is interviewed. Fu is interviewed. Fu is not hired, unless Kowalski is interviewed. Kowalski is not hired, unless Mayer is interviewed. If Mayer is hired, and Lee is interviewed, Ordoveza is hired.", "question": "If Gunsel and five other applicants are the only applicants interviewed, and if exactly three applicants are hired, then which one of the following could be an accurate list of the applicants hired?", "options": [ "A) Fu, Lee, Mayer", "B) Fu, Kowalski, Mayer", "C) Kowalski, Lee, Ordoveza", "D) Gunsel, Jackson, Mayer", "E) Gunsel, Jackson, Lee" ], "answer": "E" }, { "id": "ar_lsat_199710_1-G_2_10", "context": "Fu, Gunsel, Jackson, Kowalski, Lee, Mayer, and Ordoveza are the only applicants being considered for some positions at a nonprofit organization. Only applicants who are interviewed will be hired. The hiring process must meet the following constraints: If Gunsel is interviewed, Jackson is interviewed. If Jackson is interviewed, Lee is interviewed. Fu is interviewed. Fu is not hired, unless Kowalski is interviewed. Kowalski is not hired, unless Mayer is interviewed. If Mayer is hired, and Lee is interviewed, Ordoveza is hired.", "question": "If every applicant that is interviewed is hired, and if Lee is hired, then each of the following applicants must be interviewed EXCEPT:", "options": [ "A) Fu", "B) Jackson", "C) Kowalski", "D) Mayer", "E) Ordoveza" ], "answer": "B" }, { "id": "ar_lsat_199710_1-G_2_11", "context": "Fu, Gunsel, Jackson, Kowalski, Lee, Mayer, and Ordoveza are the only applicants being considered for some positions at a nonprofit organization. Only applicants who are interviewed will be hired. The hiring process must meet the following constraints: If Gunsel is interviewed, Jackson is interviewed. If Jackson is interviewed, Lee is interviewed. Fu is interviewed. Fu is not hired, unless Kowalski is interviewed. Kowalski is not hired, unless Mayer is interviewed. If Mayer is hired, and Lee is interviewed, Ordoveza is hired.", "question": "If Ordoveza is not interviewed, and if exactly four applicants are hired, then which one of the following must be false?", "options": [ "A) Lee is hired.", "B) Mayer is hired.", "C) Jackson is interviewed.", "D) Kowalski is interviewed.", "E) Gunsel is interviewed." ], "answer": "B" }, { "id": "ar_lsat_199710_1-G_3_12", "context": "Exactly six of seven researchers—three anthropologists: Franklin, Jones, and Marquez; and four linguists: Neil, Osborne, Rice, and Samuels—will be included in two three-person teams—team 1 and team 2. No researcher will be included in more than one team. Each team must include at least one anthropologist and at least one linguist. The teams' composition must conform to the following conditions: Neither team includes both Franklin and Samuels. Neither team includes both Neil and Rice. If a team includes Marquez, it includes neither Rice nor Samuels. If team 1 includes Jones, team 2 includes Rice.", "question": "Which one of the following could be the list of the researchers on the two teams?", "options": [ "A) team 1: Franklin, Marquez, Osborne team 2: Jones, Neil, Rice", "B) team 1: Franklin, Neil, Samuels team 2: Jones, Osborne, Rice", "C) team 1: Franklin, Osborne, Rice team 2: Jones, Neil, Samuels", "D) team 1: Jones, Marquez, Neil team 2: Osborne, Rice, Samuels", "E) team 1: Jones, Osborne, Rice team 2: Franklin, Marquez, Neil" ], "answer": "C" }, { "id": "ar_lsat_199710_1-G_3_13", "context": "Exactly six of seven researchers—three anthropologists: Franklin, Jones, and Marquez; and four linguists: Neil, Osborne, Rice, and Samuels—will be included in two three-person teams—team 1 and team 2. No researcher will be included in more than one team. Each team must include at least one anthropologist and at least one linguist. The teams' composition must conform to the following conditions: Neither team includes both Franklin and Samuels. Neither team includes both Neil and Rice. If a team includes Marquez, it includes neither Rice nor Samuels. If team 1 includes Jones, team 2 includes Rice.", "question": "If Jones is on team 1, which one of the following is a pair of researchers that must be on team 2 together?", "options": [ "A) Franklin and Rice", "B) Marquez and Osborne", "C) Neil and Osborne", "D) Osborne and Samuels", "E) Rice and Samuels" ], "answer": "A" }, { "id": "ar_lsat_199710_1-G_3_14", "context": "Exactly six of seven researchers—three anthropologists: Franklin, Jones, and Marquez; and four linguists: Neil, Osborne, Rice, and Samuels—will be included in two three-person teams—team 1 and team 2. No researcher will be included in more than one team. Each team must include at least one anthropologist and at least one linguist. The teams' composition must conform to the following conditions: Neither team includes both Franklin and Samuels. Neither team includes both Neil and Rice. If a team includes Marquez, it includes neither Rice nor Samuels. If team 1 includes Jones, team 2 includes Rice.", "question": "If Neil is on team 1, which one of the following is a pair of researchers that could be on team 1 together with Neil?", "options": [ "A) Franklin and Jones", "B) Jones and Osborne", "C) Jones and Rice", "D) Jones and Samuels", "E) Osborne and Samuels" ], "answer": "D" }, { "id": "ar_lsat_199710_1-G_3_15", "context": "Exactly six of seven researchers—three anthropologists: Franklin, Jones, and Marquez; and four linguists: Neil, Osborne, Rice, and Samuels—will be included in two three-person teams—team 1 and team 2. No researcher will be included in more than one team. Each team must include at least one anthropologist and at least one linguist. The teams' composition must conform to the following conditions: Neither team includes both Franklin and Samuels. Neither team includes both Neil and Rice. If a team includes Marquez, it includes neither Rice nor Samuels. If team 1 includes Jones, team 2 includes Rice.", "question": "If Franklin is on the same team as Marquez, which one of the following could be true?", "options": [ "A) Jones is on team 1.", "B) Rice is on team 1.", "C) Samuels is on team 2.", "D) Both Neil and Osborne are on team 1.", "E) Both Neil and Osborne are on team 2." ], "answer": "C" }, { "id": "ar_lsat_199710_1-G_3_16", "context": "Exactly six of seven researchers—three anthropologists: Franklin, Jones, and Marquez; and four linguists: Neil, Osborne, Rice, and Samuels—will be included in two three-person teams—team 1 and team 2. No researcher will be included in more than one team. Each team must include at least one anthropologist and at least one linguist. The teams' composition must conform to the following conditions: Neither team includes both Franklin and Samuels. Neither team includes both Neil and Rice. If a team includes Marquez, it includes neither Rice nor Samuels. If team 1 includes Jones, team 2 includes Rice.", "question": "Each of the following is a pair of researchers that could be on team 2 together EXCEPT:", "options": [ "A) Franklin and Jones", "B) Franklin and Marquez", "C) Franklin and Rice", "D) Jones and Marquez", "E) Jones and Rice" ], "answer": "B" }, { "id": "ar_lsat_199710_1-G_3_17", "context": "Exactly six of seven researchers—three anthropologists: Franklin, Jones, and Marquez; and four linguists: Neil, Osborne, Rice, and Samuels—will be included in two three-person teams—team 1 and team 2. No researcher will be included in more than one team. Each team must include at least one anthropologist and at least one linguist. The teams' composition must conform to the following conditions: Neither team includes both Franklin and Samuels. Neither team includes both Neil and Rice. If a team includes Marquez, it includes neither Rice nor Samuels. If team 1 includes Jones, team 2 includes Rice.", "question": "Which one of the following could be true?", "options": [ "A) Franklin is on team 1 and Neil is on team 2.", "B) Franklin is on team 2 and Jones is not on any team.", "C) Franklin is on team 2 and Marquez is on team 2.", "D) Franklin is not on any team and Jones is on team 1.", "E) Jones is on team 1 and Neil is on team 2." ], "answer": "A" }, { "id": "ar_lsat_199710_1-G_3_18", "context": "Exactly six of seven researchers—three anthropologists: Franklin, Jones, and Marquez; and four linguists: Neil, Osborne, Rice, and Samuels—will be included in two three-person teams—team 1 and team 2. No researcher will be included in more than one team. Each team must include at least one anthropologist and at least one linguist. The teams' composition must conform to the following conditions: Neither team includes both Franklin and Samuels. Neither team includes both Neil and Rice. If a team includes Marquez, it includes neither Rice nor Samuels. If team 1 includes Jones, team 2 includes Rice.", "question": "If Marquez is on team 2, which one of the following must also be on team 2?", "options": [ "A) Franklin", "B) Jones", "C) Osborne", "D) Rice", "E) Samuels" ], "answer": "B" }, { "id": "ar_lsat_199710_1-G_4_19", "context": "Five candidates for mayor—Q, R, S, T, and U—will each speak exactly once at each of three town meetings—meetings 1, 2, and 3. At each meeting, each candidate will speak in one of five consecutive time slots. No two candidates will speak in the same time slot as each other at any meeting. The order in which the candidates will speak will meet the following conditions: Each candidate must speak either first or second at at least one of the meetings. Any candidate who speaks fifth at any of the meetings must speak first at at least one of the other meetings. No candidate can speak fourth at more than one of the meetings.", "question": "Which one of the following could be the order, from first to fifth, in which the candidates speak at the meetings?", "options": [ "A) meeting 1: Q, U, R, T, S meeting 2: S, T, R, U, Q meeting 3: T, U, Q, R, S", "B) meeting 1: R, S, Q, T, U meeting 2: U, T, S, R, Q meeting 3: Q, R, T, U, S", "C) meeting 1: S, Q, U, T, R meeting 2: U, T, Q, R, S meeting 3: R, Q, S, T, U", "D) meeting 1: T, R, S, U, Q meeting 2: Q, R, S, T, U meeting 3: U, S, R, Q, T", "E) meeting 1: U, T, R, S, Q meeting 2: Q, R, S, T, U meeting 3: S, T, U, Q, R" ], "answer": "D" }, { "id": "ar_lsat_199710_1-G_4_20", "context": "Five candidates for mayor—Q, R, S, T, and U—will each speak exactly once at each of three town meetings—meetings 1, 2, and 3. At each meeting, each candidate will speak in one of five consecutive time slots. No two candidates will speak in the same time slot as each other at any meeting. The order in which the candidates will speak will meet the following conditions: Each candidate must speak either first or second at at least one of the meetings. Any candidate who speaks fifth at any of the meetings must speak first at at least one of the other meetings. No candidate can speak fourth at more than one of the meetings.", "question": "If R speaks second at meeting 2 and first at meeting 3, which one of the following is a complete and accurate list of those time slots any one of which could be the time slot in which R speaks at meeting 1?", "options": [ "A) fourth, fifth", "B) first, second, fifth", "C) second, third, fifth", "D) third, fourth, fifth", "E) second, third, fourth, fifth" ], "answer": "D" }, { "id": "ar_lsat_199710_1-G_4_21", "context": "Five candidates for mayor—Q, R, S, T, and U—will each speak exactly once at each of three town meetings—meetings 1, 2, and 3. At each meeting, each candidate will speak in one of five consecutive time slots. No two candidates will speak in the same time slot as each other at any meeting. The order in which the candidates will speak will meet the following conditions: Each candidate must speak either first or second at at least one of the meetings. Any candidate who speaks fifth at any of the meetings must speak first at at least one of the other meetings. No candidate can speak fourth at more than one of the meetings.", "question": "If the order in which the candidates speak at meeting 1 is R, U, S, T, Q, and the order in which they speak at meeting 2 is Q, R, U, S, T, which one of the following could be true of meeting 3?", "options": [ "A) Q speaks first.", "B) R speaks third.", "C) S speaks first.", "D) T speaks second.", "E) U speaks fifth." ], "answer": "B" }, { "id": "ar_lsat_199710_1-G_4_22", "context": "Five candidates for mayor—Q, R, S, T, and U—will each speak exactly once at each of three town meetings—meetings 1, 2, and 3. At each meeting, each candidate will speak in one of five consecutive time slots. No two candidates will speak in the same time slot as each other at any meeting. The order in which the candidates will speak will meet the following conditions: Each candidate must speak either first or second at at least one of the meetings. Any candidate who speaks fifth at any of the meetings must speak first at at least one of the other meetings. No candidate can speak fourth at more than one of the meetings.", "question": "If R speaks first at meetings 1 and 2, and S speaks first at meeting 3, which one of the following must be true?", "options": [ "A) R speaks second at meeting 3.", "B) R speaks fourth at meeting 3.", "C) S speaks second at at least one of the meetings.", "D) S speaks fifth at exactly one of the meetings.", "E) S speaks fifth at exactly two of the meetings." ], "answer": "E" }, { "id": "ar_lsat_199710_1-G_4_23", "context": "Five candidates for mayor—Q, R, S, T, and U—will each speak exactly once at each of three town meetings—meetings 1, 2, and 3. At each meeting, each candidate will speak in one of five consecutive time slots. No two candidates will speak in the same time slot as each other at any meeting. The order in which the candidates will speak will meet the following conditions: Each candidate must speak either first or second at at least one of the meetings. Any candidate who speaks fifth at any of the meetings must speak first at at least one of the other meetings. No candidate can speak fourth at more than one of the meetings.", "question": "It could be true that at all three meetings T speaks", "options": [ "A) first", "B) second", "C) in some time slot after the time slot in which R speaks", "D) in some time slot after the time slots in which S and U speak", "E) in some time slot before the time slots in which R and U speak" ], "answer": "C" }, { "id": "ar_lsat_199710_1-G_4_24", "context": "Five candidates for mayor—Q, R, S, T, and U—will each speak exactly once at each of three town meetings—meetings 1, 2, and 3. At each meeting, each candidate will speak in one of five consecutive time slots. No two candidates will speak in the same time slot as each other at any meeting. The order in which the candidates will speak will meet the following conditions: Each candidate must speak either first or second at at least one of the meetings. Any candidate who speaks fifth at any of the meetings must speak first at at least one of the other meetings. No candidate can speak fourth at more than one of the meetings.", "question": "If S, T, and U speak second at meetings 1, 2, and 3, respectively, which one of the following must be true?", "options": [ "A) The fifth speaker at at least one of the meetings is either Q or R.", "B) Either Q speaks first at exactly two of the meetings or else R does so.", "C) Neither S nor T speaks fifth at any of the meetings.", "D) Q speaks third at one of the meetings, and R speaks third at another of the meetings.", "E) Q speaks fourth at one of the meetings, and R speaks fourth at another of the meetings." ], "answer": "A" }, { "id": "ar_lsat_199712_4-G_1_1", "context": "In a certain recipe contest, each contestant submits two recipes, one for an appetizer and one for a main dish. Together the two recipes must include exactly seven flavorings—fenugreek, ginger, lemongrass, nutmeg, paprika, saffron, and turmeric—with no flavoring included in more than one of the two recipes. Each contestant's recipes must satisfy the following conditions: The appetizer recipe includes at most three of the flavorings. Fenugreek is not included in the same recipe as nutmeg. Saffron is not included in the same recipe as turmeric. Ginger is included in the same recipe as nutmeg.", "question": "Which one of the following could be a complete and accurate list of the flavorings included in one contestant's main-dish recipe?", "options": [ "A) fenugreek, lemongrass, saffron", "B) fenugreek, ginger, nutmeg, turmeric", "C) ginger, lemongrass, nutmeg, paprika", "D) ginger, nutmeg, paprika, turmeric", "E) lemongrass, nutmeg, saffron, turmeric" ], "answer": "D" }, { "id": "ar_lsat_199712_4-G_1_2", "context": "In a certain recipe contest, each contestant submits two recipes, one for an appetizer and one for a main dish. Together the two recipes must include exactly seven flavorings—fenugreek, ginger, lemongrass, nutmeg, paprika, saffron, and turmeric—with no flavoring included in more than one of the two recipes. Each contestant's recipes must satisfy the following conditions: The appetizer recipe includes at most three of the flavorings. Fenugreek is not included in the same recipe as nutmeg. Saffron is not included in the same recipe as turmeric. Ginger is included in the same recipe as nutmeg.", "question": "If a contestant's appetizer recipe does not include fenugreek, then the contestant's appetizer recipe must include", "options": [ "A) ginger", "B) lemongrass", "C) paprika", "D) saffron", "E) turmeric" ], "answer": "A" }, { "id": "ar_lsat_199712_4-G_1_3", "context": "In a certain recipe contest, each contestant submits two recipes, one for an appetizer and one for a main dish. Together the two recipes must include exactly seven flavorings—fenugreek, ginger, lemongrass, nutmeg, paprika, saffron, and turmeric—with no flavoring included in more than one of the two recipes. Each contestant's recipes must satisfy the following conditions: The appetizer recipe includes at most three of the flavorings. Fenugreek is not included in the same recipe as nutmeg. Saffron is not included in the same recipe as turmeric. Ginger is included in the same recipe as nutmeg.", "question": "Which one of the following could be a list of all of the flavorings included in one contestant's appetizer recipe?", "options": [ "A) fenugreek, saffron", "B) ginger, nutmeg", "C) fenugreek, nutmeg, turmeric", "D) lemongrass, nutmeg, saffron", "E) fenugreek, lemongrass, paprika, turmeric" ], "answer": "A" }, { "id": "ar_lsat_199712_4-G_1_4", "context": "In a certain recipe contest, each contestant submits two recipes, one for an appetizer and one for a main dish. Together the two recipes must include exactly seven flavorings—fenugreek, ginger, lemongrass, nutmeg, paprika, saffron, and turmeric—with no flavoring included in more than one of the two recipes. Each contestant's recipes must satisfy the following conditions: The appetizer recipe includes at most three of the flavorings. Fenugreek is not included in the same recipe as nutmeg. Saffron is not included in the same recipe as turmeric. Ginger is included in the same recipe as nutmeg.", "question": "If a contestant includes lemongrass in the same recipe as paprika, which one of the following is a flavoring that must be included in the contestant's main-dish recipe?", "options": [ "A) ginger", "B) lemongrass", "C) nutmeg", "D) saffron", "E) turmeric" ], "answer": "B" }, { "id": "ar_lsat_199712_4-G_1_5", "context": "In a certain recipe contest, each contestant submits two recipes, one for an appetizer and one for a main dish. Together the two recipes must include exactly seven flavorings—fenugreek, ginger, lemongrass, nutmeg, paprika, saffron, and turmeric—with no flavoring included in more than one of the two recipes. Each contestant's recipes must satisfy the following conditions: The appetizer recipe includes at most three of the flavorings. Fenugreek is not included in the same recipe as nutmeg. Saffron is not included in the same recipe as turmeric. Ginger is included in the same recipe as nutmeg.", "question": "If the condition that requires ginger to be included in the same recipe as nutmeg is suspended but all of the other original conditions remain in effect, then which one of the following could be a list of all of the flavorings included in one contestant's main-dish recipe?", "options": [ "A) ginger, lemongrass, nutmeg, paprika", "B) ginger, lemongrass, paprika, turmeric", "C) fenugreek, ginger, lemongrass, paprika, saffron", "D) fenugreek, ginger, lemongrass, saffron, turmeric", "E) fenugreek, lemongrass, nutmeg, paprika, saffron" ], "answer": "C" }, { "id": "ar_lsat_199712_4-G_2_6", "context": "Seven singers—Jamie, Ken, Lalitha, Maya, Norton, Olive, and Patrick—will be scheduled to perform in the finals of a singing competition. During the evening of the competition, each singer, performing alone, will give exactly one performance. The schedule for the evening must conform to the following requirements: Jamie performs immediately after Ken. Patrick performs at some time after Maya. Lalitha performs third only if Norton performs fifth. If Patrick does not perform second, he performs fifth.", "question": "Which one of the following is an acceptable schedule for the evening's performers, from first through seventh?", "options": [ "A) Ken, Jamie, Maya, Lalitha, Patrick, Norton, Olive", "B) Lalitha, Patrick, Norton, Olive, Maya, Ken, Jamie", "C) Norton, Olive, Ken, Jamie, Maya, Patrick, Lalitha", "D) Olive, Maya, Ken, Lalitha, Patrick, Norton, Jamie", "E) Olive, Maya, Lalitha, Norton, Patrick, Ken, Jamie" ], "answer": "A" }, { "id": "ar_lsat_199712_4-G_2_7", "context": "Seven singers—Jamie, Ken, Lalitha, Maya, Norton, Olive, and Patrick—will be scheduled to perform in the finals of a singing competition. During the evening of the competition, each singer, performing alone, will give exactly one performance. The schedule for the evening must conform to the following requirements: Jamie performs immediately after Ken. Patrick performs at some time after Maya. Lalitha performs third only if Norton performs fifth. If Patrick does not perform second, he performs fifth.", "question": "If Lalitha is scheduled for the third performance, which one of the following must be scheduled for the sixth performance?", "options": [ "A) Jamie", "B) Ken", "C) Norton", "D) Olive", "E) Patrick" ], "answer": "B" }, { "id": "ar_lsat_199712_4-G_2_8", "context": "Seven singers—Jamie, Ken, Lalitha, Maya, Norton, Olive, and Patrick—will be scheduled to perform in the finals of a singing competition. During the evening of the competition, each singer, performing alone, will give exactly one performance. The schedule for the evening must conform to the following requirements: Jamie performs immediately after Ken. Patrick performs at some time after Maya. Lalitha performs third only if Norton performs fifth. If Patrick does not perform second, he performs fifth.", "question": "If Norton is scheduled for the fifth performance, which one of the following could be true?", "options": [ "A) Jamie is scheduled for the sixth performance.", "B) Ken is scheduled for the second performance.", "C) Lalitha is scheduled for the fourth performance.", "D) Maya is scheduled for the third performance.", "E) Olive is scheduled for the first performance." ], "answer": "C" }, { "id": "ar_lsat_199712_4-G_2_9", "context": "Seven singers—Jamie, Ken, Lalitha, Maya, Norton, Olive, and Patrick—will be scheduled to perform in the finals of a singing competition. During the evening of the competition, each singer, performing alone, will give exactly one performance. The schedule for the evening must conform to the following requirements: Jamie performs immediately after Ken. Patrick performs at some time after Maya. Lalitha performs third only if Norton performs fifth. If Patrick does not perform second, he performs fifth.", "question": "If Maya is scheduled for the second performance, which one of the following could be true?", "options": [ "A) Jamie is scheduled for the sixth performance.", "B) Ken is scheduled for the fourth performance.", "C) Lalitha is scheduled for the third performance.", "D) Norton is scheduled for the fifth performance.", "E) Olive is scheduled for the fourth performance." ], "answer": "E" }, { "id": "ar_lsat_199712_4-G_2_10", "context": "Seven singers—Jamie, Ken, Lalitha, Maya, Norton, Olive, and Patrick—will be scheduled to perform in the finals of a singing competition. During the evening of the competition, each singer, performing alone, will give exactly one performance. The schedule for the evening must conform to the following requirements: Jamie performs immediately after Ken. Patrick performs at some time after Maya. Lalitha performs third only if Norton performs fifth. If Patrick does not perform second, he performs fifth.", "question": "If Jamie's performance is scheduled to be immediately before Lalitha's performance, Jamie's performance CANNOT be scheduled to be", "options": [ "A) second", "B) third", "C) fourth", "D) fifth", "E) sixth" ], "answer": "A" }, { "id": "ar_lsat_199712_4-G_3_11", "context": "At a small press, six textbooks, three introductory—F, G, and H—and three advanced—X, Y, and Z—will each be evaluated once by the editor, Juarez, and once by the publisher, Rosenberg, during six consecutive weeks—week 1 through week 6. Each evaluator evaluates exactly one textbook per week. No textbook will be evaluated by Juarez and Rosenberg during the same week. The following additional constraints apply: Rosenberg cannot evaluate any introductory textbook until Juarez has evaluated that textbook. Juarez cannot evaluate any advanced textbook until Rosenberg has evaluated that textbook. Rosenberg cannot evaluate any two introductory textbooks consecutively. Juarez must evaluate X during week 4.", "question": "Which one of the following is an acceptable evaluation schedule, with the textbooks listed in order of evaluation from week 1 through week 6?", "options": [ "A) Juarez: F, G, X, Z, H, Y Rosenberg: X, F, Z, G, Y, H", "B) Juarez: F, Y, G, X, H, Z Rosenberg Y, F, X, G, Z, H", "C) Juarez: G, H, F, X, Y, Z Rosenberg: X, G, H, Y, Z, F", "D) Juarez: G, Z, F, X, H, Y Rosenberg: Z, F, X, G, Y, H", "E) Juarez: H, Y, F, X, G, Z Rosenberg: X, H, Z, F, Y, G" ], "answer": "B" }, { "id": "ar_lsat_199712_4-G_3_12", "context": "At a small press, six textbooks, three introductory—F, G, and H—and three advanced—X, Y, and Z—will each be evaluated once by the editor, Juarez, and once by the publisher, Rosenberg, during six consecutive weeks—week 1 through week 6. Each evaluator evaluates exactly one textbook per week. No textbook will be evaluated by Juarez and Rosenberg during the same week. The following additional constraints apply: Rosenberg cannot evaluate any introductory textbook until Juarez has evaluated that textbook. Juarez cannot evaluate any advanced textbook until Rosenberg has evaluated that textbook. Rosenberg cannot evaluate any two introductory textbooks consecutively. Juarez must evaluate X during week 4.", "question": "If Juarez evaluates H during week 3 and Rosenberg evaluates G during week 6, which one of the following must be true?", "options": [ "A) Juarez evaluates F during week 1.", "B) Juarez evaluates G during week 2.", "C) Juarez evaluates Z during week 6.", "D) Rosenberg evaluates X during week 1.", "E) Rosenberg evaluates Y during week 5." ], "answer": "A" }, { "id": "ar_lsat_199712_4-G_3_13", "context": "At a small press, six textbooks, three introductory—F, G, and H—and three advanced—X, Y, and Z—will each be evaluated once by the editor, Juarez, and once by the publisher, Rosenberg, during six consecutive weeks—week 1 through week 6. Each evaluator evaluates exactly one textbook per week. No textbook will be evaluated by Juarez and Rosenberg during the same week. The following additional constraints apply: Rosenberg cannot evaluate any introductory textbook until Juarez has evaluated that textbook. Juarez cannot evaluate any advanced textbook until Rosenberg has evaluated that textbook. Rosenberg cannot evaluate any two introductory textbooks consecutively. Juarez must evaluate X during week 4.", "question": "If Juarez evaluates Z during week 2, then Rosenberg must evaluate which one of the following textbooks during week 5?", "options": [ "A) F", "B) H", "C) X", "D) Y", "E) Z" ], "answer": "D" }, { "id": "ar_lsat_199712_4-G_3_14", "context": "At a small press, six textbooks, three introductory—F, G, and H—and three advanced—X, Y, and Z—will each be evaluated once by the editor, Juarez, and once by the publisher, Rosenberg, during six consecutive weeks—week 1 through week 6. Each evaluator evaluates exactly one textbook per week. No textbook will be evaluated by Juarez and Rosenberg during the same week. The following additional constraints apply: Rosenberg cannot evaluate any introductory textbook until Juarez has evaluated that textbook. Juarez cannot evaluate any advanced textbook until Rosenberg has evaluated that textbook. Rosenberg cannot evaluate any two introductory textbooks consecutively. Juarez must evaluate X during week 4.", "question": "Which one of the following must be true?", "options": [ "A) Rosenberg evaluates H during week 6.", "B) Rosenberg evaluates an advanced textbook during week 3.", "C) Juarez evaluates an advanced textbook during week 2.", "D) Juarez evaluates Y before evaluating G.", "E) Juarez does not evaluate any two introductory textbooks consecutively." ], "answer": "B" }, { "id": "ar_lsat_199712_4-G_3_15", "context": "At a small press, six textbooks, three introductory—F, G, and H—and three advanced—X, Y, and Z—will each be evaluated once by the editor, Juarez, and once by the publisher, Rosenberg, during six consecutive weeks—week 1 through week 6. Each evaluator evaluates exactly one textbook per week. No textbook will be evaluated by Juarez and Rosenberg during the same week. The following additional constraints apply: Rosenberg cannot evaluate any introductory textbook until Juarez has evaluated that textbook. Juarez cannot evaluate any advanced textbook until Rosenberg has evaluated that textbook. Rosenberg cannot evaluate any two introductory textbooks consecutively. Juarez must evaluate X during week 4.", "question": "If Rosenberg evaluates X during week 1 and F during week 2, which one of the following could be true?", "options": [ "A) X is the third of the advanced textbooks to be evaluated by Juarez.", "B) Y is the first of the advanced textbooks to be evaluated by Juarez.", "C) Juarez does not evaluate any two introductory textbooks in a row.", "D) Juarez evaluates G during week 5.", "E) Juarez evaluates Z during week 6." ], "answer": "E" }, { "id": "ar_lsat_199712_4-G_3_16", "context": "At a small press, six textbooks, three introductory—F, G, and H—and three advanced—X, Y, and Z—will each be evaluated once by the editor, Juarez, and once by the publisher, Rosenberg, during six consecutive weeks—week 1 through week 6. Each evaluator evaluates exactly one textbook per week. No textbook will be evaluated by Juarez and Rosenberg during the same week. The following additional constraints apply: Rosenberg cannot evaluate any introductory textbook until Juarez has evaluated that textbook. Juarez cannot evaluate any advanced textbook until Rosenberg has evaluated that textbook. Rosenberg cannot evaluate any two introductory textbooks consecutively. Juarez must evaluate X during week 4.", "question": "Which one of the following is a complete and accurate list of those weeks during which Juarez must evaluate an introductory textbook?", "options": [ "A) week 1", "B) week 6", "C) week 1, week 5", "D) week 1, week 2, week 3", "E) week 1, week 3, week 5" ], "answer": "A" }, { "id": "ar_lsat_199712_4-G_3_17", "context": "At a small press, six textbooks, three introductory—F, G, and H—and three advanced—X, Y, and Z—will each be evaluated once by the editor, Juarez, and once by the publisher, Rosenberg, during six consecutive weeks—week 1 through week 6. Each evaluator evaluates exactly one textbook per week. No textbook will be evaluated by Juarez and Rosenberg during the same week. The following additional constraints apply: Rosenberg cannot evaluate any introductory textbook until Juarez has evaluated that textbook. Juarez cannot evaluate any advanced textbook until Rosenberg has evaluated that textbook. Rosenberg cannot evaluate any two introductory textbooks consecutively. Juarez must evaluate X during week 4.", "question": "Which one of the following could be true?", "options": [ "A) Juarez evaluates F during week 6.", "B) Juarez evaluates Z during week 1.", "C) Rosenberg evaluates F during week 3.", "D) Rosenberg evaluates H during week 2.", "E) Rosenberg evaluates X during week 5." ], "answer": "D" }, { "id": "ar_lsat_199712_4-G_4_18", "context": "Nine different treatments are available for a certain illness: three antibiotics—F, G, and H—three dietary regimens—M, N, and O—and three physical therapies—U, V, and W. For each case of the illness, a doctor will prescribe exactly five of the treatments, in accordance with the following conditions: If two of the antibiotics are prescribed, the remaining antibiotic cannot be prescribed. There must be exactly one dietary regimen prescribed. If O is not prescribed, F cannot be prescribed. If W is prescribed, F cannot be prescribed. G cannot be prescribed if both N and U are prescribed. V cannot be prescribed unless both H and M are prescribed.", "question": "Which one of the following could be the five treatments prescribed for a given case?", "options": [ "A) F, G, H, M, V", "B) F, G, M, O, V", "C) F, H, M, O, W", "D) G, H, N, U, W", "E) G, H, O, U, W" ], "answer": "E" }, { "id": "ar_lsat_199712_4-G_4_19", "context": "Nine different treatments are available for a certain illness: three antibiotics—F, G, and H—three dietary regimens—M, N, and O—and three physical therapies—U, V, and W. For each case of the illness, a doctor will prescribe exactly five of the treatments, in accordance with the following conditions: If two of the antibiotics are prescribed, the remaining antibiotic cannot be prescribed. There must be exactly one dietary regimen prescribed. If O is not prescribed, F cannot be prescribed. If W is prescribed, F cannot be prescribed. G cannot be prescribed if both N and U are prescribed. V cannot be prescribed unless both H and M are prescribed.", "question": "Which one of the following could be the antibiotics and physical therapies prescribed for a given case?", "options": [ "A) F, G, H, W", "B) F, G, U, V", "C) F, U, V, W", "D) G, U, V, W", "E) H, U, V, W" ], "answer": "E" }, { "id": "ar_lsat_199712_4-G_4_20", "context": "Nine different treatments are available for a certain illness: three antibiotics—F, G, and H—three dietary regimens—M, N, and O—and three physical therapies—U, V, and W. For each case of the illness, a doctor will prescribe exactly five of the treatments, in accordance with the following conditions: If two of the antibiotics are prescribed, the remaining antibiotic cannot be prescribed. There must be exactly one dietary regimen prescribed. If O is not prescribed, F cannot be prescribed. If W is prescribed, F cannot be prescribed. G cannot be prescribed if both N and U are prescribed. V cannot be prescribed unless both H and M are prescribed.", "question": "If O is prescribed for a given case, which one of the following is a pair of treatments both of which must also be prescribed for that case?", "options": [ "A) F, M", "B) G, V", "C) N, U", "D) U, V", "E) U, W" ], "answer": "E" }, { "id": "ar_lsat_199712_4-G_4_21", "context": "Nine different treatments are available for a certain illness: three antibiotics—F, G, and H—three dietary regimens—M, N, and O—and three physical therapies—U, V, and W. For each case of the illness, a doctor will prescribe exactly five of the treatments, in accordance with the following conditions: If two of the antibiotics are prescribed, the remaining antibiotic cannot be prescribed. There must be exactly one dietary regimen prescribed. If O is not prescribed, F cannot be prescribed. If W is prescribed, F cannot be prescribed. G cannot be prescribed if both N and U are prescribed. V cannot be prescribed unless both H and M are prescribed.", "question": "If G is prescribed for a given case, which one of the following is a pair of treatments both of which could also be prescribed for that case?", "options": [ "A) F, M", "B) F, N", "C) N, V", "D) O, V", "E) V, W" ], "answer": "E" }, { "id": "ar_lsat_199712_4-G_4_22", "context": "Nine different treatments are available for a certain illness: three antibiotics—F, G, and H—three dietary regimens—M, N, and O—and three physical therapies—U, V, and W. For each case of the illness, a doctor will prescribe exactly five of the treatments, in accordance with the following conditions: If two of the antibiotics are prescribed, the remaining antibiotic cannot be prescribed. There must be exactly one dietary regimen prescribed. If O is not prescribed, F cannot be prescribed. If W is prescribed, F cannot be prescribed. G cannot be prescribed if both N and U are prescribed. V cannot be prescribed unless both H and M are prescribed.", "question": "Which one of the following is a list of three treatments that could be prescribed together for a given case?", "options": [ "A) F, M, U", "B) F, O, W", "C) G, N, V", "D) G, V, W", "E) H, N, V" ], "answer": "D" }, { "id": "ar_lsat_199712_4-G_4_23", "context": "Nine different treatments are available for a certain illness: three antibiotics—F, G, and H—three dietary regimens—M, N, and O—and three physical therapies—U, V, and W. For each case of the illness, a doctor will prescribe exactly five of the treatments, in accordance with the following conditions: If two of the antibiotics are prescribed, the remaining antibiotic cannot be prescribed. There must be exactly one dietary regimen prescribed. If O is not prescribed, F cannot be prescribed. If W is prescribed, F cannot be prescribed. G cannot be prescribed if both N and U are prescribed. V cannot be prescribed unless both H and M are prescribed.", "question": "Which one of the following treatments CANNOT be prescribed for any case?", "options": [ "A) G", "B) M", "C) N", "D) U", "E) W" ], "answer": "C" }, { "id": "ar_lsat_199806_3-G_1_1", "context": "The members of two committees, a planting committee and a trails committee, are to be selected from among seven volunteers—F, G, H, J, K, L, and M. The following conditions govern the composition of the committees: Each committee must have at least three members. F cannot be on the same committee as K. If K is on a committee, J must also be on that committee. M must be on at least one of the committees. The two committees must have at least one member in common.", "question": "Which one of the following represents an acceptable selection of volunteers for the committees?", "options": [ "A) planting: F, G, H; trails: G, J, K, L", "B) planting: F, H, J; trails: G, H, L, M", "C) planting: F, H, M; trails: G, K, L, M", "D) planting: F, G, L, M; trails: F, H", "E) planting: F, H, J, K; trails: H, L, M" ], "answer": "B" }, { "id": "ar_lsat_199806_3-G_1_2", "context": "The members of two committees, a planting committee and a trails committee, are to be selected from among seven volunteers—F, G, H, J, K, L, and M. The following conditions govern the composition of the committees: Each committee must have at least three members. F cannot be on the same committee as K. If K is on a committee, J must also be on that committee. M must be on at least one of the committees. The two committees must have at least one member in common.", "question": "If the planting committee consists of F, H, L, and M, and if the trails committee consists of G, H, and J, then K could replace which one of the following committee members on a committee without violating any of the conditions governing the composition of the committees?", "options": [ "A) F", "B) G", "C) H", "D) L", "E) M" ], "answer": "B" }, { "id": "ar_lsat_199806_3-G_1_3", "context": "The members of two committees, a planting committee and a trails committee, are to be selected from among seven volunteers—F, G, H, J, K, L, and M. The following conditions govern the composition of the committees: Each committee must have at least three members. F cannot be on the same committee as K. If K is on a committee, J must also be on that committee. M must be on at least one of the committees. The two committees must have at least one member in common.", "question": "If the only members of the planting committee are G, H, and L and if the two committees are to have as many members in common as the conditions allow, then which one of the following must be true?", "options": [ "A) The trails committee and the planting committee have exactly one member in common.", "B) The trails committee and the planting committee have exactly two members in common.", "C) The trails committee and the planting committee have an equal number of members.", "D) The trails committee has at least one more member than the planting committee.", "E) The planting committee has exactly two more members than the trails committee." ], "answer": "D" }, { "id": "ar_lsat_199806_3-G_1_4", "context": "The members of two committees, a planting committee and a trails committee, are to be selected from among seven volunteers—F, G, H, J, K, L, and M. The following conditions govern the composition of the committees: Each committee must have at least three members. F cannot be on the same committee as K. If K is on a committee, J must also be on that committee. M must be on at least one of the committees. The two committees must have at least one member in common.", "question": "If K is on both committees and L is also on both committees and if the planting committee has exactly three members, then which one of the following must be true?", "options": [ "A) F is on the planting committee.", "B) F is on the trails committee.", "C) G is on the planting committee.", "D) M is on the planting committee.", "E) M is on the trails committee." ], "answer": "E" }, { "id": "ar_lsat_199806_3-G_1_5", "context": "The members of two committees, a planting committee and a trails committee, are to be selected from among seven volunteers—F, G, H, J, K, L, and M. The following conditions govern the composition of the committees: Each committee must have at least three members. F cannot be on the same committee as K. If K is on a committee, J must also be on that committee. M must be on at least one of the committees. The two committees must have at least one member in common.", "question": "The largest number of members that the planting committee and the trails committee could have in common is", "options": [ "A) three", "B) four", "C) five", "D) six", "E) seven" ], "answer": "D" }, { "id": "ar_lsat_199806_3-G_2_6", "context": "Exactly six tourists—Harry, Irene, Klaus, Laura, Michael, Norma—are to be assigned to four guides: Valois, Xerxes, Yossarian, Zalamea. Each tourist is assigned to exactly one guide, with at least one tourist assigned to each guide. Valois speaks only French. Xerxes speaks only Turkish and Spanish. Yossarian speaks only French and Turkish. Zalamea speaks only Spanish and Russian. Each tourist speaks exactly one of the languages spoken by his or her guide and speaks no other language. The following rules govern the assignment of the tourists to the guides: At least Harry and Irene are assigned to Yossarian. At least Laura is assigned to Zalamea. If Klaus is assigned to Xerxes, then Michael speaks French.", "question": "Each of the following could be true EXCEPT:", "options": [ "A) Both Klaus and Harry speak Turkish.", "B) Both Klaus and Michael speak French.", "C) Both Klaus and Michael speak Russian.", "D) Both Klaus and Norma speak French.", "E) Both Klaus and Norma speak Spanish." ], "answer": "C" }, { "id": "ar_lsat_199806_3-G_2_7", "context": "Exactly six tourists—Harry, Irene, Klaus, Laura, Michael, Norma—are to be assigned to four guides: Valois, Xerxes, Yossarian, Zalamea. Each tourist is assigned to exactly one guide, with at least one tourist assigned to each guide. Valois speaks only French. Xerxes speaks only Turkish and Spanish. Yossarian speaks only French and Turkish. Zalamea speaks only Spanish and Russian. Each tourist speaks exactly one of the languages spoken by his or her guide and speaks no other language. The following rules govern the assignment of the tourists to the guides: At least Harry and Irene are assigned to Yossarian. At least Laura is assigned to Zalamea. If Klaus is assigned to Xerxes, then Michael speaks French.", "question": "Which one of the following must be true?", "options": [ "A) Zalamea is assigned fewer than three of the tourists.", "B) Xerxes is assigned fewer than two of the tourists.", "C) Yossarian is assigned exactly two of the tourists.", "D) Valois is assigned exactly one of the tourists.", "E) Zalamea is assigned exactly one of the tourists." ], "answer": "A" }, { "id": "ar_lsat_199806_3-G_2_8", "context": "Exactly six tourists—Harry, Irene, Klaus, Laura, Michael, Norma—are to be assigned to four guides: Valois, Xerxes, Yossarian, Zalamea. Each tourist is assigned to exactly one guide, with at least one tourist assigned to each guide. Valois speaks only French. Xerxes speaks only Turkish and Spanish. Yossarian speaks only French and Turkish. Zalamea speaks only Spanish and Russian. Each tourist speaks exactly one of the languages spoken by his or her guide and speaks no other language. The following rules govern the assignment of the tourists to the guides: At least Harry and Irene are assigned to Yossarian. At least Laura is assigned to Zalamea. If Klaus is assigned to Xerxes, then Michael speaks French.", "question": "Each of the following could be true of the assignment of tourists to guides EXCEPT:", "options": [ "A) It assigns Klaus to Valois and Michael to Xerxes.", "B) It assigns Klaus to Yossarian and Norma to Zalamea.", "C) It assigns Laura to Zalamea and Michael to Zalamea.", "D) It assigns Michael to Valois and Klaus to Zalamea.", "E) It assigns Michael to Xerxes and Klaus to Zalamea." ], "answer": "B" }, { "id": "ar_lsat_199806_3-G_2_9", "context": "Exactly six tourists—Harry, Irene, Klaus, Laura, Michael, Norma—are to be assigned to four guides: Valois, Xerxes, Yossarian, Zalamea. Each tourist is assigned to exactly one guide, with at least one tourist assigned to each guide. Valois speaks only French. Xerxes speaks only Turkish and Spanish. Yossarian speaks only French and Turkish. Zalamea speaks only Spanish and Russian. Each tourist speaks exactly one of the languages spoken by his or her guide and speaks no other language. The following rules govern the assignment of the tourists to the guides: At least Harry and Irene are assigned to Yossarian. At least Laura is assigned to Zalamea. If Klaus is assigned to Xerxes, then Michael speaks French.", "question": "If Klaus and Laura speak the same language as each other, then which one of the following must be true?", "options": [ "A) At least one of Michael and Norma speaks Spanish.", "B) At least two tourists speak Russian.", "C) Klaus and Laura speak Russian.", "D) At least two tourists speak French.", "E) At least one of Michael and Norma speaks French." ], "answer": "E" }, { "id": "ar_lsat_199806_3-G_2_10", "context": "Exactly six tourists—Harry, Irene, Klaus, Laura, Michael, Norma—are to be assigned to four guides: Valois, Xerxes, Yossarian, Zalamea. Each tourist is assigned to exactly one guide, with at least one tourist assigned to each guide. Valois speaks only French. Xerxes speaks only Turkish and Spanish. Yossarian speaks only French and Turkish. Zalamea speaks only Spanish and Russian. Each tourist speaks exactly one of the languages spoken by his or her guide and speaks no other language. The following rules govern the assignment of the tourists to the guides: At least Harry and Irene are assigned to Yossarian. At least Laura is assigned to Zalamea. If Klaus is assigned to Xerxes, then Michael speaks French.", "question": "If Laura and Norma speak the same language as each other, then the maximum number of the tourists who could speak Turkish is", "options": [ "A) two", "B) three", "C) four", "D) five", "E) six" ], "answer": "B" }, { "id": "ar_lsat_199806_3-G_2_11", "context": "Exactly six tourists—Harry, Irene, Klaus, Laura, Michael, Norma—are to be assigned to four guides: Valois, Xerxes, Yossarian, Zalamea. Each tourist is assigned to exactly one guide, with at least one tourist assigned to each guide. Valois speaks only French. Xerxes speaks only Turkish and Spanish. Yossarian speaks only French and Turkish. Zalamea speaks only Spanish and Russian. Each tourist speaks exactly one of the languages spoken by his or her guide and speaks no other language. The following rules govern the assignment of the tourists to the guides: At least Harry and Irene are assigned to Yossarian. At least Laura is assigned to Zalamea. If Klaus is assigned to Xerxes, then Michael speaks French.", "question": "If exactly two tourists are assigned to Xerxes, then which one of the following could be true?", "options": [ "A) Norma speaks Russian and Laura speaks Russian.", "B) Norma speaks French and Michael speaks French.", "C) Norma speaks French and Klaus speaks Turkish.", "D) Michael speaks Spanish and Klaus speaks Spanish.", "E) Michael speaks French and Klaus speaks Spanish." ], "answer": "E" }, { "id": "ar_lsat_199806_3-G_2_12", "context": "Exactly six tourists—Harry, Irene, Klaus, Laura, Michael, Norma—are to be assigned to four guides: Valois, Xerxes, Yossarian, Zalamea. Each tourist is assigned to exactly one guide, with at least one tourist assigned to each guide. Valois speaks only French. Xerxes speaks only Turkish and Spanish. Yossarian speaks only French and Turkish. Zalamea speaks only Spanish and Russian. Each tourist speaks exactly one of the languages spoken by his or her guide and speaks no other language. The following rules govern the assignment of the tourists to the guides: At least Harry and Irene are assigned to Yossarian. At least Laura is assigned to Zalamea. If Klaus is assigned to Xerxes, then Michael speaks French.", "question": "If Harry, Irene, Michael, and Norma all speak the same language as each other, then which one of the following could be true?", "options": [ "A) Klaus speaks Russian.", "B) Exactly two of the tourists speak Russian.", "C) Exactly three of the tourists speak Spanish.", "D) Exactly two of the tourists speak Turkish.", "E) Klaus speaks French." ], "answer": "E" }, { "id": "ar_lsat_199806_3-G_3_13", "context": "Each of six people—Kim, Lina, Maricella, Oliver, Paulo, and Shigeru—plays exactly one of two sports—golf, and tennis. If a sport is played by more than one of the six people, then the people who play that sport are ranked in order of ability from highest to lowest, with no ties. The following conditions must apply: Oliver plays tennis. Lina plays golf. There is no golf player ranked higher than Lina. If Maricella plays golf, then Paulo and Shigeru play golf, Paulo ranking lower than Maricella but higher than Shigeru. If Maricella plays tennis, then Shigeru plays tennis, Shigeru ranking lower than Oliver but higher than Maricella. If Paulo plays tennis, then Kim plays tennis, Oliver ranking lower than Kim but higher than Paulo.", "question": "Which one of the following could be true?", "options": [ "A) Maricella plays tennis and Shigeru plays golf.", "B) Paulo plays tennis and Kim plays golf.", "C) Kim plays tennis and Paulo plays golf.", "D) Paulo and Oliver play tennis, Paulo ranking higher than Oliver.", "E) Maricella and Shigeru play tennis, Maricella ranking higher than Shigeru." ], "answer": "C" }, { "id": "ar_lsat_199806_3-G_3_14", "context": "Each of six people—Kim, Lina, Maricella, Oliver, Paulo, and Shigeru—plays exactly one of two sports—golf, and tennis. If a sport is played by more than one of the six people, then the people who play that sport are ranked in order of ability from highest to lowest, with no ties. The following conditions must apply: Oliver plays tennis. Lina plays golf. There is no golf player ranked higher than Lina. If Maricella plays golf, then Paulo and Shigeru play golf, Paulo ranking lower than Maricella but higher than Shigeru. If Maricella plays tennis, then Shigeru plays tennis, Shigeru ranking lower than Oliver but higher than Maricella. If Paulo plays tennis, then Kim plays tennis, Oliver ranking lower than Kim but higher than Paulo.", "question": "Each of the following could be the lowest-ranking tennis player EXCEPT:", "options": [ "A) Shigeru", "B) Kim", "C) Oliver", "D) Paulo", "E) Maricella" ], "answer": "A" }, { "id": "ar_lsat_199806_3-G_3_15", "context": "Each of six people—Kim, Lina, Maricella, Oliver, Paulo, and Shigeru—plays exactly one of two sports—golf, and tennis. If a sport is played by more than one of the six people, then the people who play that sport are ranked in order of ability from highest to lowest, with no ties. The following conditions must apply: Oliver plays tennis. Lina plays golf. There is no golf player ranked higher than Lina. If Maricella plays golf, then Paulo and Shigeru play golf, Paulo ranking lower than Maricella but higher than Shigeru. If Maricella plays tennis, then Shigeru plays tennis, Shigeru ranking lower than Oliver but higher than Maricella. If Paulo plays tennis, then Kim plays tennis, Oliver ranking lower than Kim but higher than Paulo.", "question": "Which one of the following could be a complete and accurate list of the people who play tennis, listed in order of rank from highest to lowest?", "options": [ "A) Shigeru, Paulo, Oliver", "B) Oliver, Paulo, Kim", "C) Shigeru, Oliver, Maricella", "D) Oliver, Shigeru, Kim, Maricella", "E) Paulo, Maricella, Shigeru, Kim" ], "answer": "D" }, { "id": "ar_lsat_199806_3-G_3_16", "context": "Each of six people—Kim, Lina, Maricella, Oliver, Paulo, and Shigeru—plays exactly one of two sports—golf, and tennis. If a sport is played by more than one of the six people, then the people who play that sport are ranked in order of ability from highest to lowest, with no ties. The following conditions must apply: Oliver plays tennis. Lina plays golf. There is no golf player ranked higher than Lina. If Maricella plays golf, then Paulo and Shigeru play golf, Paulo ranking lower than Maricella but higher than Shigeru. If Maricella plays tennis, then Shigeru plays tennis, Shigeru ranking lower than Oliver but higher than Maricella. If Paulo plays tennis, then Kim plays tennis, Oliver ranking lower than Kim but higher than Paulo.", "question": "If Shigeru plays golf, then each of the following are pairs of people who must play the same sport as each other EXCEPT:", "options": [ "A) Paulo and Maricella", "B) Paulo and Shigeru", "C) Kim and Maricella", "D) Paulo and Lina", "E) Maricella and Shigeru" ], "answer": "C" }, { "id": "ar_lsat_199806_3-G_3_17", "context": "Each of six people—Kim, Lina, Maricella, Oliver, Paulo, and Shigeru—plays exactly one of two sports—golf, and tennis. If a sport is played by more than one of the six people, then the people who play that sport are ranked in order of ability from highest to lowest, with no ties. The following conditions must apply: Oliver plays tennis. Lina plays golf. There is no golf player ranked higher than Lina. If Maricella plays golf, then Paulo and Shigeru play golf, Paulo ranking lower than Maricella but higher than Shigeru. If Maricella plays tennis, then Shigeru plays tennis, Shigeru ranking lower than Oliver but higher than Maricella. If Paulo plays tennis, then Kim plays tennis, Oliver ranking lower than Kim but higher than Paulo.", "question": "If Oliver is the highest-ranking tennis player, which one of the following must be true?", "options": [ "A) Oliver and Maricella play the same sport as each other.", "B) Paulo and Lina play the same sport as each other.", "C) Paulo and Oliver play the same sport as each other.", "D) Kim and Lina do not play the same sport as each other.", "E) Kim and Paulo do not play the same sport as each other." ], "answer": "B" }, { "id": "ar_lsat_199806_3-G_3_18", "context": "Each of six people—Kim, Lina, Maricella, Oliver, Paulo, and Shigeru—plays exactly one of two sports—golf, and tennis. If a sport is played by more than one of the six people, then the people who play that sport are ranked in order of ability from highest to lowest, with no ties. The following conditions must apply: Oliver plays tennis. Lina plays golf. There is no golf player ranked higher than Lina. If Maricella plays golf, then Paulo and Shigeru play golf, Paulo ranking lower than Maricella but higher than Shigeru. If Maricella plays tennis, then Shigeru plays tennis, Shigeru ranking lower than Oliver but higher than Maricella. If Paulo plays tennis, then Kim plays tennis, Oliver ranking lower than Kim but higher than Paulo.", "question": "Suppose that the condition is added that Shigeru and Paulo do not play the same sport as each other. If all the other conditions remain in effect, then each of the following could be true EXCEPT:", "options": [ "A) Maricella and Kim play the same sport as each other.", "B) Paulo and Kim play the same sport as each other.", "C) Paulo and Maricella play the same sport as each other.", "D) Kim and Paulo do not play the same sport as each other.", "E) Maricella and Kim do not play the same sport as each other." ], "answer": "C" }, { "id": "ar_lsat_199806_3-G_4_19", "context": "A disc jockey will play a sequence consisting of exactly seven different songs: three ballads—F, G, and H—and four dance tunes—R, S, V, and X. The following conditions must be met: No dance tune can be played immediately after another dance tune. H must be played earlier in the sequence than V. V and S must be separated from each other by exactly one song. S must be played immediately before or immediately after F. F must be played immediately after R, unless G is played earlier than R.", "question": "Which one of the following could be the order of the songs in the sequence?", "options": [ "A) G, H, S, X, V, F, R", "B) R, H, X, G, S, F, V", "C) S, F, X, G, R, H, V", "D) V, F, S, H, X, G, R", "E) X, G, R, H, S, F, V" ], "answer": "E" }, { "id": "ar_lsat_199806_3-G_4_20", "context": "A disc jockey will play a sequence consisting of exactly seven different songs: three ballads—F, G, and H—and four dance tunes—R, S, V, and X. The following conditions must be met: No dance tune can be played immediately after another dance tune. H must be played earlier in the sequence than V. V and S must be separated from each other by exactly one song. S must be played immediately before or immediately after F. F must be played immediately after R, unless G is played earlier than R.", "question": "Which one of the following must be true about the sequence?", "options": [ "A) The first song is X.", "B) The fifth song is S.", "C) No ballad is played immediately after a dance tune.", "D) No ballad is played immediately after another ballad.", "E) No dance tune is played immediately after a ballad." ], "answer": "D" }, { "id": "ar_lsat_199806_3-G_4_21", "context": "A disc jockey will play a sequence consisting of exactly seven different songs: three ballads—F, G, and H—and four dance tunes—R, S, V, and X. The following conditions must be met: No dance tune can be played immediately after another dance tune. H must be played earlier in the sequence than V. V and S must be separated from each other by exactly one song. S must be played immediately before or immediately after F. F must be played immediately after R, unless G is played earlier than R.", "question": "Which one of the following could be the fourth song in the sequence?", "options": [ "A) G", "B) R", "C) S", "D) V", "E) X" ], "answer": "A" }, { "id": "ar_lsat_199806_3-G_4_22", "context": "A disc jockey will play a sequence consisting of exactly seven different songs: three ballads—F, G, and H—and four dance tunes—R, S, V, and X. The following conditions must be met: No dance tune can be played immediately after another dance tune. H must be played earlier in the sequence than V. V and S must be separated from each other by exactly one song. S must be played immediately before or immediately after F. F must be played immediately after R, unless G is played earlier than R.", "question": "Which one of the following could be the first song in the sequence?", "options": [ "A) R", "B) S", "C) V", "D) F", "E) G" ], "answer": "A" }, { "id": "ar_lsat_199806_3-G_4_23", "context": "A disc jockey will play a sequence consisting of exactly seven different songs: three ballads—F, G, and H—and four dance tunes—R, S, V, and X. The following conditions must be met: No dance tune can be played immediately after another dance tune. H must be played earlier in the sequence than V. V and S must be separated from each other by exactly one song. S must be played immediately before or immediately after F. F must be played immediately after R, unless G is played earlier than R.", "question": "If the third song in the sequence is S, which one of the following must be the sixth song?", "options": [ "A) G", "B) H", "C) R", "D) V", "E) X" ], "answer": "A" }, { "id": "ar_lsat_199806_3-G_4_24", "context": "A disc jockey will play a sequence consisting of exactly seven different songs: three ballads—F, G, and H—and four dance tunes—R, S, V, and X. The following conditions must be met: No dance tune can be played immediately after another dance tune. H must be played earlier in the sequence than V. V and S must be separated from each other by exactly one song. S must be played immediately before or immediately after F. F must be played immediately after R, unless G is played earlier than R.", "question": "If the seventh song in the sequence is R, which one of the following could be the fifth song?", "options": [ "A) F", "B) G", "C) H", "D) V", "E) X" ], "answer": "D" }, { "id": "ar_lsat_199809_1-G_1_1", "context": "Eight physics students—four majors: Frank, Gwen, Henry, and Joan; and four nonmajors: Victor, Wanda, Xavier, and Yvette—are being assigned to four laboratory benches, numbered 1 through 4. Each student is assigned to exactly one bench, and exactly two students are assigned to each bench. Assignments of students to benches must conform to the following conditions: Exactly one major is assigned to each bench. Frank and Joan are assigned to consecutively numbered benches, with Frank assigned to the lower-numbered bench. Frank is assigned to the same bench as Victor. Gwen is not assigned to the same bench as Wanda.", "question": "Which one of the following could be the assignment of students to benches?", "options": [ "A) 1: Frank, Victor; 2: Joan, Gwen; 3: Henry, Wanda; 4: Xavier, Yvette", "B) 1: Gwen, Yvette; 2: Frank, Xavier; 3: Joan, Wanda; 4: Henry, Victor", "C) 1: Henry, Wanda; 2: Gwen, Xavier; 3: Frank, Victor; 4: Joan, Yvette", "D) 1: Henry, Xavier; 2: Joan, Wanda; 3: Frank, Victor; 4: Gwen, Yvette", "E) 1: Henry, Yvette; 2: Gwen, Wanda; 3: Frank, Victor, 4: Joan, Xavier" ], "answer": "C" }, { "id": "ar_lsat_199809_1-G_1_2", "context": "Eight physics students—four majors: Frank, Gwen, Henry, and Joan; and four nonmajors: Victor, Wanda, Xavier, and Yvette—are being assigned to four laboratory benches, numbered 1 through 4. Each student is assigned to exactly one bench, and exactly two students are assigned to each bench. Assignments of students to benches must conform to the following conditions: Exactly one major is assigned to each bench. Frank and Joan are assigned to consecutively numbered benches, with Frank assigned to the lower-numbered bench. Frank is assigned to the same bench as Victor. Gwen is not assigned to the same bench as Wanda.", "question": "If Victor is assigned to bench 2 and Wanda is assigned to bench 4, which one of the following must be true?", "options": [ "A) Frank is assigned to bench 1.", "B) Gwen is assigned to bench 1.", "C) Henry is assigned to bench 3.", "D) Xavier is assigned to bench 1.", "E) Yvette is assigned to bench 3." ], "answer": "B" }, { "id": "ar_lsat_199809_1-G_1_3", "context": "Eight physics students—four majors: Frank, Gwen, Henry, and Joan; and four nonmajors: Victor, Wanda, Xavier, and Yvette—are being assigned to four laboratory benches, numbered 1 through 4. Each student is assigned to exactly one bench, and exactly two students are assigned to each bench. Assignments of students to benches must conform to the following conditions: Exactly one major is assigned to each bench. Frank and Joan are assigned to consecutively numbered benches, with Frank assigned to the lower-numbered bench. Frank is assigned to the same bench as Victor. Gwen is not assigned to the same bench as Wanda.", "question": "If Gwen and Henry are not assigned to consecutively numbered benches, which one of the following must be true?", "options": [ "A) Victor is assigned to bench 2.", "B) Victor is assigned to bench 3.", "C) Wanda is assigned to bench 1.", "D) Wanda is assigned to bench 3.", "E) Wanda is assigned to bench 4." ], "answer": "A" }, { "id": "ar_lsat_199809_1-G_1_4", "context": "Eight physics students—four majors: Frank, Gwen, Henry, and Joan; and four nonmajors: Victor, Wanda, Xavier, and Yvette—are being assigned to four laboratory benches, numbered 1 through 4. Each student is assigned to exactly one bench, and exactly two students are assigned to each bench. Assignments of students to benches must conform to the following conditions: Exactly one major is assigned to each bench. Frank and Joan are assigned to consecutively numbered benches, with Frank assigned to the lower-numbered bench. Frank is assigned to the same bench as Victor. Gwen is not assigned to the same bench as Wanda.", "question": "If Henry and Yvette are both assigned to bench 1, which one of the following could be true?", "options": [ "A) Gwen is assigned to bench 3.", "B) Joan is assigned to bench 2.", "C) Wanda is assigned to bench 2.", "D) Wanda is assigned to bench 3.", "E) Xavier is assigned to bench 3." ], "answer": "D" }, { "id": "ar_lsat_199809_1-G_1_5", "context": "Eight physics students—four majors: Frank, Gwen, Henry, and Joan; and four nonmajors: Victor, Wanda, Xavier, and Yvette—are being assigned to four laboratory benches, numbered 1 through 4. Each student is assigned to exactly one bench, and exactly two students are assigned to each bench. Assignments of students to benches must conform to the following conditions: Exactly one major is assigned to each bench. Frank and Joan are assigned to consecutively numbered benches, with Frank assigned to the lower-numbered bench. Frank is assigned to the same bench as Victor. Gwen is not assigned to the same bench as Wanda.", "question": "If Gwen is assigned to bench 4 and Xavier is assigned to bench 3, then any one of the following could be true EXCEPT:", "options": [ "A) Gwen is assigned to the same bench as Yvette.", "B) Henry is assigned to the same bench as Wanda.", "C) Henry is assigned to the same bench as Xavier.", "D) Joan is assigned to the same bench as Xavier.", "E) Joan is assigned to the same bench as Yvette." ], "answer": "E" }, { "id": "ar_lsat_199809_1-G_1_6", "context": "Eight physics students—four majors: Frank, Gwen, Henry, and Joan; and four nonmajors: Victor, Wanda, Xavier, and Yvette—are being assigned to four laboratory benches, numbered 1 through 4. Each student is assigned to exactly one bench, and exactly two students are assigned to each bench. Assignments of students to benches must conform to the following conditions: Exactly one major is assigned to each bench. Frank and Joan are assigned to consecutively numbered benches, with Frank assigned to the lower-numbered bench. Frank is assigned to the same bench as Victor. Gwen is not assigned to the same bench as Wanda.", "question": "If Wanda is assigned to a lower-numbered bench than is Joan, then Henry must be assigned to a", "options": [ "A) lower-numbered bench than is Frank", "B) lower-numbered bench than is Gwen", "C) lower-numbered bench than is Xavier", "D) higher-numbered bench than is Victor", "E) higher-numbered bench than is Yvette" ], "answer": "A" }, { "id": "ar_lsat_199809_1-G_1_7", "context": "Eight physics students—four majors: Frank, Gwen, Henry, and Joan; and four nonmajors: Victor, Wanda, Xavier, and Yvette—are being assigned to four laboratory benches, numbered 1 through 4. Each student is assigned to exactly one bench, and exactly two students are assigned to each bench. Assignments of students to benches must conform to the following conditions: Exactly one major is assigned to each bench. Frank and Joan are assigned to consecutively numbered benches, with Frank assigned to the lower-numbered bench. Frank is assigned to the same bench as Victor. Gwen is not assigned to the same bench as Wanda.", "question": "Which one of the following could be the assignments for bench 2 and bench 4?", "options": [ "A) 2: Gwen, Xavier 4: Henry, Yvette", "B) 2: Henry, Yvette 4: Joan, Xavier", "C) 2: Joan, Victor 4: Gwen, Xavier", "D) 2: Joan, Wanda 4: Gwen, Xavier", "E) 2: Joan, Xavier 4: Henry, Yvette" ], "answer": "D" }, { "id": "ar_lsat_199809_1-G_2_8", "context": "A messenger will deliver exactly seven packages—L, M, N, O, P, S, and T—one at a time, not necessarily in that order. The seven deliveries must be made according to the following conditions: P is delivered either first or seventh. The messenger delivers N at some time after delivering L. The messenger delivers T at some time after delivering M. The messenger delivers exactly one package between delivering L and delivering O, whether or not L is delivered before O. The messenger delivers exactly one package between delivering M and delivering P, whether or not M is delivered before P.", "question": "Which one of the following is an order in which the messenger could make the deliveries, from first to seventh?", "options": [ "A) L, N, S, O, M, T, P", "B) M, T, P, S, L, N, O", "C) O, S, L, N, M, T, P", "D) P, N, M, S, O, T, L", "E) P, T, M, S, L, N, O" ], "answer": "C" }, { "id": "ar_lsat_199809_1-G_2_9", "context": "A messenger will deliver exactly seven packages—L, M, N, O, P, S, and T—one at a time, not necessarily in that order. The seven deliveries must be made according to the following conditions: P is delivered either first or seventh. The messenger delivers N at some time after delivering L. The messenger delivers T at some time after delivering M. The messenger delivers exactly one package between delivering L and delivering O, whether or not L is delivered before O. The messenger delivers exactly one package between delivering M and delivering P, whether or not M is delivered before P.", "question": "Which one of the following could be true?", "options": [ "A) N is delivered first.", "B) T is delivered first.", "C) T is delivered second.", "D) M is delivered fourth.", "E) S is delivered seventh." ], "answer": "E" }, { "id": "ar_lsat_199809_1-G_2_10", "context": "A messenger will deliver exactly seven packages—L, M, N, O, P, S, and T—one at a time, not necessarily in that order. The seven deliveries must be made according to the following conditions: P is delivered either first or seventh. The messenger delivers N at some time after delivering L. The messenger delivers T at some time after delivering M. The messenger delivers exactly one package between delivering L and delivering O, whether or not L is delivered before O. The messenger delivers exactly one package between delivering M and delivering P, whether or not M is delivered before P.", "question": "If N is delivered fourth, which one of the following could be true?", "options": [ "A) L is delivered first.", "B) L is delivered second.", "C) M is delivered third.", "D) O is delivered fifth.", "E) S is delivered first." ], "answer": "A" }, { "id": "ar_lsat_199809_1-G_2_11", "context": "A messenger will deliver exactly seven packages—L, M, N, O, P, S, and T—one at a time, not necessarily in that order. The seven deliveries must be made according to the following conditions: P is delivered either first or seventh. The messenger delivers N at some time after delivering L. The messenger delivers T at some time after delivering M. The messenger delivers exactly one package between delivering L and delivering O, whether or not L is delivered before O. The messenger delivers exactly one package between delivering M and delivering P, whether or not M is delivered before P.", "question": "If T is delivered fourth, the seventh package delivered must be", "options": [ "A) L", "B) N", "C) O", "D) P", "E) S" ], "answer": "C" }, { "id": "ar_lsat_199809_1-G_2_12", "context": "A messenger will deliver exactly seven packages—L, M, N, O, P, S, and T—one at a time, not necessarily in that order. The seven deliveries must be made according to the following conditions: P is delivered either first or seventh. The messenger delivers N at some time after delivering L. The messenger delivers T at some time after delivering M. The messenger delivers exactly one package between delivering L and delivering O, whether or not L is delivered before O. The messenger delivers exactly one package between delivering M and delivering P, whether or not M is delivered before P.", "question": "If the messenger delivers M at some time after delivering O, the fifth package delivered could be any one of the following EXCEPT:", "options": [ "A) L", "B) M", "C) N", "D) S", "E) T" ], "answer": "A" }, { "id": "ar_lsat_199809_1-G_3_13", "context": "Each of exactly five persons—Nguyen, Olson, Pike, Tyner, and Valdez—participates in exactly one of three activities: going to a movie, going to a soccer game, or going to a restaurant. The following conditions must apply. Nguyen and Olson do not participate in the same activity as each other, nor does either one of them participate in the same activity as Pike. Exactly two persons go to a soccer game. Tyner and Pike do not participate in the same activity as each other. If Nguyen or Valdez goes to a movie, they both go to a movie.", "question": "Which one of the following could be an accurate list of the activities participated in by Nguyen, Olson, Pike, Tyner, and Valdez, respectively?", "options": [ "A) movie, soccer game, soccer game, restaurant, movie", "B) movie, restaurant, soccer game, soccer game, movie", "C) soccer game, restaurant, movie, soccer game, movie", "D) soccer game, restaurant, movie, soccer game, restaurant", "E) soccer game, restaurant, movie, soccer game, soccer game" ], "answer": "D" }, { "id": "ar_lsat_199809_1-G_3_14", "context": "Each of exactly five persons—Nguyen, Olson, Pike, Tyner, and Valdez—participates in exactly one of three activities: going to a movie, going to a soccer game, or going to a restaurant. The following conditions must apply. Nguyen and Olson do not participate in the same activity as each other, nor does either one of them participate in the same activity as Pike. Exactly two persons go to a soccer game. Tyner and Pike do not participate in the same activity as each other. If Nguyen or Valdez goes to a movie, they both go to a movie.", "question": "If Valdez goes to a soccer game, then each of the following could be true EXCEPT:", "options": [ "A) Olson goes to a movie.", "B) Nguyen goes to a restaurant.", "C) Nguyen goes to a soccer game.", "D) Tyner goes to a soccer game.", "E) Tyner goes to a movie." ], "answer": "D" }, { "id": "ar_lsat_199809_1-G_3_15", "context": "Each of exactly five persons—Nguyen, Olson, Pike, Tyner, and Valdez—participates in exactly one of three activities: going to a movie, going to a soccer game, or going to a restaurant. The following conditions must apply. Nguyen and Olson do not participate in the same activity as each other, nor does either one of them participate in the same activity as Pike. Exactly two persons go to a soccer game. Tyner and Pike do not participate in the same activity as each other. If Nguyen or Valdez goes to a movie, they both go to a movie.", "question": "Which one of the following is a pair of persons who could go to a movie together?", "options": [ "A) Nguyen and Tyner", "B) Olson and Tyner", "C) Olson and Valdez", "D) Pike and Olson", "E) Pike and Tyner" ], "answer": "B" }, { "id": "ar_lsat_199809_1-G_3_16", "context": "Each of exactly five persons—Nguyen, Olson, Pike, Tyner, and Valdez—participates in exactly one of three activities: going to a movie, going to a soccer game, or going to a restaurant. The following conditions must apply. Nguyen and Olson do not participate in the same activity as each other, nor does either one of them participate in the same activity as Pike. Exactly two persons go to a soccer game. Tyner and Pike do not participate in the same activity as each other. If Nguyen or Valdez goes to a movie, they both go to a movie.", "question": "Each of the following statements must be false EXCEPT:", "options": [ "A) Only Olson goes to a restaurant.", "B) Only Pike goes to a restaurant.", "C) Only Tyner goes to a restaurant.", "D) Only Valdez goes to a restaurant.", "E) Tyner and Valdez go to a restaurant together." ], "answer": "B" }, { "id": "ar_lsat_199809_1-G_3_17", "context": "Each of exactly five persons—Nguyen, Olson, Pike, Tyner, and Valdez—participates in exactly one of three activities: going to a movie, going to a soccer game, or going to a restaurant. The following conditions must apply. Nguyen and Olson do not participate in the same activity as each other, nor does either one of them participate in the same activity as Pike. Exactly two persons go to a soccer game. Tyner and Pike do not participate in the same activity as each other. If Nguyen or Valdez goes to a movie, they both go to a movie.", "question": "If Nguyen goes to a soccer game, then which one of the following is a complete and accurate list of the persons any one of whom could go to a movie?", "options": [ "A) Olson", "B) Pike, Valdez", "C) Olson, Tyner", "D) Pike, Tyner, Valdez", "E) Olson, Pike, Tyner" ], "answer": "E" }, { "id": "ar_lsat_199809_1-G_3_18", "context": "Each of exactly five persons—Nguyen, Olson, Pike, Tyner, and Valdez—participates in exactly one of three activities: going to a movie, going to a soccer game, or going to a restaurant. The following conditions must apply. Nguyen and Olson do not participate in the same activity as each other, nor does either one of them participate in the same activity as Pike. Exactly two persons go to a soccer game. Tyner and Pike do not participate in the same activity as each other. If Nguyen or Valdez goes to a movie, they both go to a movie.", "question": "If the condition that exactly two persons go to a soccer game is changed to require that exactly three persons go to a soccer game, but all other conditions remain the same, then which one of the following persons must participate in an activity other than going to a soccer game?", "options": [ "A) Nguyen", "B) Olson", "C) Pike", "D) Tyner", "E) Valdez" ], "answer": "C" }, { "id": "ar_lsat_199809_1-G_4_19", "context": "In each of two years exactly two of four lawmakers—Feld, Gibson, Hsu, and Ivins—and exactly two of three scientists—Vega, Young, and Zapora—will serve as members of a four-person panel. In each year, one of the members will be chairperson. The chairperson in the first year cannot serve on the panel in the second year. The chairperson in the second year must have served on the panel in the first year. Service on the panel must obey the following conditions: Gibson and Vega do not serve on the panel in the same year as each other. Hsu and Young do not serve on the panel in the same year as each other. Each year, either Ivins or Vega, but not both, serves on the panel.", "question": "Which one of the following could be the list of the people who serve on the panel in the first year?", "options": [ "A) Feld, Gibson, Vega, Zapora", "B) Feld, Hsu, Vega, Zapora", "C) Feld, Ivins, Vega, Zapora", "D) Gibson, Hsu, Ivins, Zapora", "E) Hsu, Ivins, Young, Zapora" ], "answer": "B" }, { "id": "ar_lsat_199809_1-G_4_20", "context": "In each of two years exactly two of four lawmakers—Feld, Gibson, Hsu, and Ivins—and exactly two of three scientists—Vega, Young, and Zapora—will serve as members of a four-person panel. In each year, one of the members will be chairperson. The chairperson in the first year cannot serve on the panel in the second year. The chairperson in the second year must have served on the panel in the first year. Service on the panel must obey the following conditions: Gibson and Vega do not serve on the panel in the same year as each other. Hsu and Young do not serve on the panel in the same year as each other. Each year, either Ivins or Vega, but not both, serves on the panel.", "question": "If Vega is the chairperson in the first year, which one of the following is a pair of people who must serve on the panel in the second year?", "options": [ "A) Gibson and Young", "B) Gibson and Zapora", "C) Hsu and Ivins", "D) Ivins and Young", "E) Vega and Young" ], "answer": "D" }, { "id": "ar_lsat_199809_1-G_4_21", "context": "In each of two years exactly two of four lawmakers—Feld, Gibson, Hsu, and Ivins—and exactly two of three scientists—Vega, Young, and Zapora—will serve as members of a four-person panel. In each year, one of the members will be chairperson. The chairperson in the first year cannot serve on the panel in the second year. The chairperson in the second year must have served on the panel in the first year. Service on the panel must obey the following conditions: Gibson and Vega do not serve on the panel in the same year as each other. Hsu and Young do not serve on the panel in the same year as each other. Each year, either Ivins or Vega, but not both, serves on the panel.", "question": "If Hsu is the chairperson in the first year, which one of the following could be the chairperson in the second year?", "options": [ "A) Feld", "B) Gibson", "C) Hsu", "D) Ivins", "E) Young" ], "answer": "A" }, { "id": "ar_lsat_199809_1-G_4_22", "context": "In each of two years exactly two of four lawmakers—Feld, Gibson, Hsu, and Ivins—and exactly two of three scientists—Vega, Young, and Zapora—will serve as members of a four-person panel. In each year, one of the members will be chairperson. The chairperson in the first year cannot serve on the panel in the second year. The chairperson in the second year must have served on the panel in the first year. Service on the panel must obey the following conditions: Gibson and Vega do not serve on the panel in the same year as each other. Hsu and Young do not serve on the panel in the same year as each other. Each year, either Ivins or Vega, but not both, serves on the panel.", "question": "IF Feld serves on the panel in a given year, any one of the following could serve on the panel that year EXCEPT:", "options": [ "A) Gibson", "B) Hsu", "C) Ivins", "D) Vega", "E) Young" ], "answer": "A" }, { "id": "ar_lsat_199809_1-G_4_23", "context": "In each of two years exactly two of four lawmakers—Feld, Gibson, Hsu, and Ivins—and exactly two of three scientists—Vega, Young, and Zapora—will serve as members of a four-person panel. In each year, one of the members will be chairperson. The chairperson in the first year cannot serve on the panel in the second year. The chairperson in the second year must have served on the panel in the first year. Service on the panel must obey the following conditions: Gibson and Vega do not serve on the panel in the same year as each other. Hsu and Young do not serve on the panel in the same year as each other. Each year, either Ivins or Vega, but not both, serves on the panel.", "question": "If Ivins is the chairperson in the first year, which one of the following could be the chairperson in the second year?", "options": [ "A) Feld", "B) Gibson", "C) Hsu", "D) Vega", "E) Young" ], "answer": "A" }, { "id": "ar_lsat_199809_1-G_4_24", "context": "In each of two years exactly two of four lawmakers—Feld, Gibson, Hsu, and Ivins—and exactly two of three scientists—Vega, Young, and Zapora—will serve as members of a four-person panel. In each year, one of the members will be chairperson. The chairperson in the first year cannot serve on the panel in the second year. The chairperson in the second year must have served on the panel in the first year. Service on the panel must obey the following conditions: Gibson and Vega do not serve on the panel in the same year as each other. Hsu and Young do not serve on the panel in the same year as each other. Each year, either Ivins or Vega, but not both, serves on the panel.", "question": "Which one of the following must be true?", "options": [ "A) Feld is on the panel in the second year.", "B) Hsu is on the panel in the first year.", "C) Ivins is on the panel in both years.", "D) Young is on the panel in both years.", "E) Zapora is on the panel in the second year." ], "answer": "E" }, { "id": "ar_lsat_199812_2-G_1_1", "context": "During a period of seven consecutive days—from day 1 through day 7—seven investors—Fennelly, Gupta, Hall, Jones, Knight, Lopez, and Moss—will each view a building site exactly once. Each day exactly one investor will view the site. The investors must view the site in accordance with the following conditions: Fennelly views the site on day 3 or else day 5. Lopez views the site on neither day 4 nor day 6. If Jones views the site on day 1, Hall views the site on day 2. If Knight views the site on day 4, Lopez views the site on day 5. Gupta views the site on the day after the day on which Hall views the site.", "question": "Which one of the following could be the order in which the investors view the site, from day 1 through day 7?", "options": [ "A) Hall, Gupta, Fennelly, Moss, Knight, Lopez, Jones", "B) Hall, Gupta, Lopez, Fennelly, Moss, Knight, Jones", "C) Lopez, Gupta, Hall, Moss, Fennelly, Jones, Knight", "D) Lopez, Jones, Fennelly, Knight, Hall, Gupta, Moss", "E) Lopez, Jones, Knight, Moss, Fennelly, Hall, Gupta" ], "answer": "E" }, { "id": "ar_lsat_199812_2-G_1_2", "context": "During a period of seven consecutive days—from day 1 through day 7—seven investors—Fennelly, Gupta, Hall, Jones, Knight, Lopez, and Moss—will each view a building site exactly once. Each day exactly one investor will view the site. The investors must view the site in accordance with the following conditions: Fennelly views the site on day 3 or else day 5. Lopez views the site on neither day 4 nor day 6. If Jones views the site on day 1, Hall views the site on day 2. If Knight views the site on day 4, Lopez views the site on day 5. Gupta views the site on the day after the day on which Hall views the site.", "question": "If Jones views the site on day 1, which one of the following investors must view the site on day 4?", "options": [ "A) Fennelly", "B) Gupta", "C) Knight", "D) Lopez", "E) Moss" ], "answer": "E" }, { "id": "ar_lsat_199812_2-G_1_3", "context": "During a period of seven consecutive days—from day 1 through day 7—seven investors—Fennelly, Gupta, Hall, Jones, Knight, Lopez, and Moss—will each view a building site exactly once. Each day exactly one investor will view the site. The investors must view the site in accordance with the following conditions: Fennelly views the site on day 3 or else day 5. Lopez views the site on neither day 4 nor day 6. If Jones views the site on day 1, Hall views the site on day 2. If Knight views the site on day 4, Lopez views the site on day 5. Gupta views the site on the day after the day on which Hall views the site.", "question": "If Knight views the site on day 4 and Moss views the site on some day after the day on which Jones views the site, which one of the following must be true?", "options": [ "A) Jones views the site on day 1.", "B) Jones views the site on day 2.", "C) Jones views the site on day 6.", "D) Moss views the site on day 2.", "E) Moss views the site on day 6." ], "answer": "C" }, { "id": "ar_lsat_199812_2-G_1_4", "context": "During a period of seven consecutive days—from day 1 through day 7—seven investors—Fennelly, Gupta, Hall, Jones, Knight, Lopez, and Moss—will each view a building site exactly once. Each day exactly one investor will view the site. The investors must view the site in accordance with the following conditions: Fennelly views the site on day 3 or else day 5. Lopez views the site on neither day 4 nor day 6. If Jones views the site on day 1, Hall views the site on day 2. If Knight views the site on day 4, Lopez views the site on day 5. Gupta views the site on the day after the day on which Hall views the site.", "question": "If Hall views the site on day 2, which one of the following is a complete and accurate list of investors any one of whom could be the investor who views the site on day 4?", "options": [ "A) Knight", "B) Moss", "C) Jones, Moss", "D) Knight, Moss", "E) Jones, Knight, Moss" ], "answer": "C" }, { "id": "ar_lsat_199812_2-G_1_5", "context": "During a period of seven consecutive days—from day 1 through day 7—seven investors—Fennelly, Gupta, Hall, Jones, Knight, Lopez, and Moss—will each view a building site exactly once. Each day exactly one investor will view the site. The investors must view the site in accordance with the following conditions: Fennelly views the site on day 3 or else day 5. Lopez views the site on neither day 4 nor day 6. If Jones views the site on day 1, Hall views the site on day 2. If Knight views the site on day 4, Lopez views the site on day 5. Gupta views the site on the day after the day on which Hall views the site.", "question": "If Hall views the site on the day after the day Knight views the site and if Fennelly views the site on the day after the day Lopez views the site, then Jones must view the site on day", "options": [ "A) 1", "B) 2", "C) 3", "D) 4", "E) 5" ], "answer": "D" }, { "id": "ar_lsat_199812_2-G_1_6", "context": "During a period of seven consecutive days—from day 1 through day 7—seven investors—Fennelly, Gupta, Hall, Jones, Knight, Lopez, and Moss—will each view a building site exactly once. Each day exactly one investor will view the site. The investors must view the site in accordance with the following conditions: Fennelly views the site on day 3 or else day 5. Lopez views the site on neither day 4 nor day 6. If Jones views the site on day 1, Hall views the site on day 2. If Knight views the site on day 4, Lopez views the site on day 5. Gupta views the site on the day after the day on which Hall views the site.", "question": "If the day on which Gupta views the site and the day on which Lopez views the site both come at some time before the day on which Fennelly views the site, which one of the following is an investor who could view the site on day 3?", "options": [ "A) Fennelly", "B) Gupta", "C) Jones", "D) Knight", "E) Moss" ], "answer": "B" }, { "id": "ar_lsat_199812_2-G_2_7", "context": "A zoo's reptile house has a straight row of exactly five consecutive habitats—numbered 1 through 5 from left to right—for housing exactly seven reptiles—four snakes and three lizards. Five of the reptiles are female and two are male. The reptiles must be housed as follows: No habitat houses more than two reptiles. No habitat houses both a snake and a lizard. No female snake is housed in a habitat that is immediately next to a habitat housing a male lizard.", "question": "Which one of the following could be a complete and accurate matching of habitats to reptiles?", "options": [ "A) 1: two female snakes; 2: one male snake; 3: one female lizard; 4: one male snake, one female lizard; 5: one female lizard", "B) 1: empty; 2: two female snakes; 3: two female lizards; 4: two male snakes; 5: one female lizard", "C) 1: one female snake, one male snake; 2: two female snakes; 3: one male lizard; 4: one female lizard; 5: one female lizard", "D) 1: two male snakes; 2: empty; 3: one female lizard; 4: one female lizard; 5: two female snakes, one female lizard", "E) 1: one female snake, one male snake; 2: one female snake, one male snake; 3: one male lizard; 4: one female lizard; 5: one female lizard" ], "answer": "B" }, { "id": "ar_lsat_199812_2-G_2_8", "context": "A zoo's reptile house has a straight row of exactly five consecutive habitats—numbered 1 through 5 from left to right—for housing exactly seven reptiles—four snakes and three lizards. Five of the reptiles are female and two are male. The reptiles must be housed as follows: No habitat houses more than two reptiles. No habitat houses both a snake and a lizard. No female snake is housed in a habitat that is immediately next to a habitat housing a male lizard.", "question": "If habitat 2 contains at least one female snake and habitat 4 contains two male lizards, then which one of the following could be true?", "options": [ "A) Habitat 3 contains two reptiles.", "B) Habitat 5 contains two reptiles.", "C) Habitat 1 contains a female lizard.", "D) Habitat 2 contains a female lizard.", "E) Habitat 5 contains a female lizard." ], "answer": "E" }, { "id": "ar_lsat_199812_2-G_2_9", "context": "A zoo's reptile house has a straight row of exactly five consecutive habitats—numbered 1 through 5 from left to right—for housing exactly seven reptiles—four snakes and three lizards. Five of the reptiles are female and two are male. The reptiles must be housed as follows: No habitat houses more than two reptiles. No habitat houses both a snake and a lizard. No female snake is housed in a habitat that is immediately next to a habitat housing a male lizard.", "question": "Which one of the following must be true?", "options": [ "A) At least one female reptile is alone in a habitat.", "B) At least one male reptile is alone in a habitat.", "C) At least one lizard is alone in a habitat.", "D) At least one lizard is male.", "E) At least one snake is male." ], "answer": "C" }, { "id": "ar_lsat_199812_2-G_2_10", "context": "A zoo's reptile house has a straight row of exactly five consecutive habitats—numbered 1 through 5 from left to right—for housing exactly seven reptiles—four snakes and three lizards. Five of the reptiles are female and two are male. The reptiles must be housed as follows: No habitat houses more than two reptiles. No habitat houses both a snake and a lizard. No female snake is housed in a habitat that is immediately next to a habitat housing a male lizard.", "question": "Which one of the following CANNOT be the complete housing arrangement for habitats 1 and 2?", "options": [ "A) 1: one female snake, one male snake; 2: one male snake", "B) 1: one male lizard; 2: one male snake", "C) 1: two female lizards; 2: one female snake", "D) 1: one male snake; 2: empty", "E) 1: empty; 2: one female lizard" ], "answer": "D" }, { "id": "ar_lsat_199812_2-G_2_11", "context": "A zoo's reptile house has a straight row of exactly five consecutive habitats—numbered 1 through 5 from left to right—for housing exactly seven reptiles—four snakes and three lizards. Five of the reptiles are female and two are male. The reptiles must be housed as follows: No habitat houses more than two reptiles. No habitat houses both a snake and a lizard. No female snake is housed in a habitat that is immediately next to a habitat housing a male lizard.", "question": "If habitat 3 is empty, and no snake is housed in a habitat that is immediately next to a habitat containing a snake, then which one of the following could be false?", "options": [ "A) All snakes are housed in even-numbered habitats.", "B) None of the lizards is male.", "C) No snake is alone in a habitat.", "D) No lizard is housed in a habitat that is immediately next to a habitat containing a lizard.", "E) Exactly one habitat contains exactly one reptile." ], "answer": "A" }, { "id": "ar_lsat_199812_2-G_2_12", "context": "A zoo's reptile house has a straight row of exactly five consecutive habitats—numbered 1 through 5 from left to right—for housing exactly seven reptiles—four snakes and three lizards. Five of the reptiles are female and two are male. The reptiles must be housed as follows: No habitat houses more than two reptiles. No habitat houses both a snake and a lizard. No female snake is housed in a habitat that is immediately next to a habitat housing a male lizard.", "question": "If all snakes are female and each of the lizards has a habitat to itself, then which one of the following habitats CANNOT contain any snakes?", "options": [ "A) habitat 1", "B) habitat 2", "C) habitat 3", "D) habitat 4", "E) habitat 5" ], "answer": "C" }, { "id": "ar_lsat_199812_2-G_3_13", "context": "Exactly seven film buffs—Ginnie, Ian, Lianna, Marcos, Reveka, Viktor, and Yow—attend a showing of classic films. Three films are shown, one directed by Fellini, one by Hitchcock, and one by Kurosawa. Each of the film buffs sees exactly one of the three films. The films are shown only once, one film at a time. The following restrictions must apply: Exactly twice as many of the film buffs see the Hitchcock film as see the Fellini film. Ginnie and Reveka do not see the same film as each other. Ian and Marcos do not see the same film as each other. Viktor and Yow see the same film as each other. Lianna sees the Hitchcock film. Ginnie sees either the Fellini film or the Kurosawa film.", "question": "Which one of the following could be an accurate matching of film buffs to films?", "options": [ "A) Ginnie: the Hitchcock film; Ian: the Kurosawa film; Marcos: the Hitchcock film", "B) Ginnie: the Kurosawa film; Ian: the Fellini film; Viktor: the Fellini film", "C) Ian: the Hitchcock film; Reveka: the Kurosawa film; Viktor: the Fellini film", "D) Marcos: the Kurosawa film; Reveka: the Kurosawa film; Viktor: the Kurosawa film", "E) Marcos: the Hitchcock film; Reveka: the Hitchcock film; Yow: the Hitchcock film" ], "answer": "D" }, { "id": "ar_lsat_199812_2-G_3_14", "context": "Exactly seven film buffs—Ginnie, Ian, Lianna, Marcos, Reveka, Viktor, and Yow—attend a showing of classic films. Three films are shown, one directed by Fellini, one by Hitchcock, and one by Kurosawa. Each of the film buffs sees exactly one of the three films. The films are shown only once, one film at a time. The following restrictions must apply: Exactly twice as many of the film buffs see the Hitchcock film as see the Fellini film. Ginnie and Reveka do not see the same film as each other. Ian and Marcos do not see the same film as each other. Viktor and Yow see the same film as each other. Lianna sees the Hitchcock film. Ginnie sees either the Fellini film or the Kurosawa film.", "question": "Each of the following must be false EXCEPT:", "options": [ "A) Reveka is the only film buff to see the Fellini film.", "B) Reveka is the only film buff to see the Hitchcock film.", "C) Yow is the only film buff to see the Kurosawa film.", "D) Exactly two film buffs see the Kurosawa film.", "E) Exactly three film buffs see the Hitchcock film." ], "answer": "A" }, { "id": "ar_lsat_199812_2-G_3_15", "context": "Exactly seven film buffs—Ginnie, Ian, Lianna, Marcos, Reveka, Viktor, and Yow—attend a showing of classic films. Three films are shown, one directed by Fellini, one by Hitchcock, and one by Kurosawa. Each of the film buffs sees exactly one of the three films. The films are shown only once, one film at a time. The following restrictions must apply: Exactly twice as many of the film buffs see the Hitchcock film as see the Fellini film. Ginnie and Reveka do not see the same film as each other. Ian and Marcos do not see the same film as each other. Viktor and Yow see the same film as each other. Lianna sees the Hitchcock film. Ginnie sees either the Fellini film or the Kurosawa film.", "question": "Which one of the following could be a complete and accurate list of the film buffs who do NOT see the Hitchcock film?", "options": [ "A) Ginnie, Marcos", "B) Ginnie Reveka", "C) Ginnie, Ian, Reveka", "D) Ginnie, Marcos, Yow", "E) Ginnie, Viktor, Yow" ], "answer": "C" }, { "id": "ar_lsat_199812_2-G_3_16", "context": "Exactly seven film buffs—Ginnie, Ian, Lianna, Marcos, Reveka, Viktor, and Yow—attend a showing of classic films. Three films are shown, one directed by Fellini, one by Hitchcock, and one by Kurosawa. Each of the film buffs sees exactly one of the three films. The films are shown only once, one film at a time. The following restrictions must apply: Exactly twice as many of the film buffs see the Hitchcock film as see the Fellini film. Ginnie and Reveka do not see the same film as each other. Ian and Marcos do not see the same film as each other. Viktor and Yow see the same film as each other. Lianna sees the Hitchcock film. Ginnie sees either the Fellini film or the Kurosawa film.", "question": "If exactly one film buff sees the Kurosawa film, then which one of the following must be true?", "options": [ "A) Viktor sees the Hitchcock film.", "B) Ginnie sees the Fellini film.", "C) Marcos sees the Fellini film.", "D) Ian sees the Fellini film.", "E) Reveka sees the Hitchcock film." ], "answer": "A" }, { "id": "ar_lsat_199812_2-G_3_17", "context": "Exactly seven film buffs—Ginnie, Ian, Lianna, Marcos, Reveka, Viktor, and Yow—attend a showing of classic films. Three films are shown, one directed by Fellini, one by Hitchcock, and one by Kurosawa. Each of the film buffs sees exactly one of the three films. The films are shown only once, one film at a time. The following restrictions must apply: Exactly twice as many of the film buffs see the Hitchcock film as see the Fellini film. Ginnie and Reveka do not see the same film as each other. Ian and Marcos do not see the same film as each other. Viktor and Yow see the same film as each other. Lianna sees the Hitchcock film. Ginnie sees either the Fellini film or the Kurosawa film.", "question": "Which one of the following must be true?", "options": [ "A) Ginnie sees a different film than Ian does.", "B) Ian sees a different film than Lianna does.", "C) Ian sees a different film than Viktor does.", "D) Ian, Lianna, and Viktor do not all see the same film.", "E) Ginnie, Lianna, and Marcos do not all see the same film." ], "answer": "E" }, { "id": "ar_lsat_199812_2-G_3_18", "context": "Exactly seven film buffs—Ginnie, Ian, Lianna, Marcos, Reveka, Viktor, and Yow—attend a showing of classic films. Three films are shown, one directed by Fellini, one by Hitchcock, and one by Kurosawa. Each of the film buffs sees exactly one of the three films. The films are shown only once, one film at a time. The following restrictions must apply: Exactly twice as many of the film buffs see the Hitchcock film as see the Fellini film. Ginnie and Reveka do not see the same film as each other. Ian and Marcos do not see the same film as each other. Viktor and Yow see the same film as each other. Lianna sees the Hitchcock film. Ginnie sees either the Fellini film or the Kurosawa film.", "question": "If Viktor sees the same film as Ginnie does, then which one of the following could be true?", "options": [ "A) Ginnie sees the Fellini film.", "B) Ian sees the Hitchcock film.", "C) Reveka sees the Kurosawa film.", "D) Viktor sees the Hitchcock film.", "E) Yow sees the Fellini film." ], "answer": "B" }, { "id": "ar_lsat_199812_2-G_3_19", "context": "Exactly seven film buffs—Ginnie, Ian, Lianna, Marcos, Reveka, Viktor, and Yow—attend a showing of classic films. Three films are shown, one directed by Fellini, one by Hitchcock, and one by Kurosawa. Each of the film buffs sees exactly one of the three films. The films are shown only once, one film at a time. The following restrictions must apply: Exactly twice as many of the film buffs see the Hitchcock film as see the Fellini film. Ginnie and Reveka do not see the same film as each other. Ian and Marcos do not see the same film as each other. Viktor and Yow see the same film as each other. Lianna sees the Hitchcock film. Ginnie sees either the Fellini film or the Kurosawa film.", "question": "Each of the following could be complete and accurate list of the film buffs who see the Fellini film EXCEPT:", "options": [ "A) Ginnie, Ian", "B) Ginnie, Marcos", "C) Ian, Reveka", "D) Marcos, Reveka", "E) Viktor, Yow" ], "answer": "E" }, { "id": "ar_lsat_199812_2-G_4_20", "context": "Six cars are to be arranged in a straight line, and will be numbered 1 through 6, in order, from the front of the line to the back of the line. Each car is exactly one color: two are green, two are orange, and two are purple. The arrangement of cars is restricted as follows: No car can be the same color as any car next to it in line. Either car 5 or car 6 must be purple. Car 1 cannot be orange. Car 4 cannot be green.", "question": "The cars in which one of the following pairs CANNOT be the same color as each other?", "options": [ "A) cars 1 and 4", "B) cars 1 and 5", "C) cars 3 and 5", "D) cars 3 and 6", "E) cars 4 and 6" ], "answer": "A" }, { "id": "ar_lsat_199812_2-G_4_21", "context": "Six cars are to be arranged in a straight line, and will be numbered 1 through 6, in order, from the front of the line to the back of the line. Each car is exactly one color: two are green, two are orange, and two are purple. The arrangement of cars is restricted as follows: No car can be the same color as any car next to it in line. Either car 5 or car 6 must be purple. Car 1 cannot be orange. Car 4 cannot be green.", "question": "If car 2 is the same color as car 4, then which one of the following statements must be true?", "options": [ "A) Car 1 is purple.", "B) Car 2 is orange.", "C) Car 3 is green.", "D) Car 5 is purple.", "E) Car 6 is green" ], "answer": "B" }, { "id": "ar_lsat_199812_2-G_4_22", "context": "Six cars are to be arranged in a straight line, and will be numbered 1 through 6, in order, from the front of the line to the back of the line. Each car is exactly one color: two are green, two are orange, and two are purple. The arrangement of cars is restricted as follows: No car can be the same color as any car next to it in line. Either car 5 or car 6 must be purple. Car 1 cannot be orange. Car 4 cannot be green.", "question": "If car 4 is purple, which one of the following must be true?", "options": [ "A) Car 1 is orange.", "B) Car 2 is green.", "C) Car 3 is orange.", "D) Car 5 is green.", "E) Car 6 is purple." ], "answer": "E" }, { "id": "ar_lsat_199812_2-G_4_23", "context": "Six cars are to be arranged in a straight line, and will be numbered 1 through 6, in order, from the front of the line to the back of the line. Each car is exactly one color: two are green, two are orange, and two are purple. The arrangement of cars is restricted as follows: No car can be the same color as any car next to it in line. Either car 5 or car 6 must be purple. Car 1 cannot be orange. Car 4 cannot be green.", "question": "Which one of the following statements must be false?", "options": [ "A) Car 2 is green.", "B) Car 4 is orange.", "C) Car 5 is purple.", "D) Car 6 is orange.", "E) Car 6 is green." ], "answer": "A" }, { "id": "ar_lsat_199812_2-G_4_24", "context": "Six cars are to be arranged in a straight line, and will be numbered 1 through 6, in order, from the front of the line to the back of the line. Each car is exactly one color: two are green, two are orange, and two are purple. The arrangement of cars is restricted as follows: No car can be the same color as any car next to it in line. Either car 5 or car 6 must be purple. Car 1 cannot be orange. Car 4 cannot be green.", "question": "If one of the two orange cars is replaced by a third green car, and if the arrangement of cars in line must conform to the same restrictions as before, then which one of the following is a complete and accurate list of the cars each of which must be green?", "options": [ "A) car 1", "B) car 3", "C) car 5", "D) car 1, car 3", "E) car l, car 3, car 5" ], "answer": "D" }, { "id": "ar_lsat_199902_2-G_1_1", "context": "Exactly eight boats—Jewel, Kashmir, Neptune, Ojibwa, Pacific, Spain, Tornado, and Valhalla—arrived at a dock. No boat arrived at the same time as any other boat. The boats arrived in an order consistent with the following conditions: Tornado arrived before Spain but after Jewel. Neptune arrived before Tornado. Kashmir arrived after Jewel but before Spain. Spain arrived before Ojibwa.", "question": "If Neptune arrived after Kashmir, which one of the following must be false?", "options": [ "A) Jewel was the second of the boats to arrive.", "B) Kashmir was the fifth of the boats to arrive.", "C) Neptune was the third of the boats to arrive.", "D) Ojibwa was the sixth of the boats to arrive.", "E) Spain was the seventh of the boats to arrive." ], "answer": "B" }, { "id": "ar_lsat_199902_2-G_1_2", "context": "Exactly eight boats—Jewel, Kashmir, Neptune, Ojibwa, Pacific, Spain, Tornado, and Valhalla—arrived at a dock. No boat arrived at the same time as any other boat. The boats arrived in an order consistent with the following conditions: Tornado arrived before Spain but after Jewel. Neptune arrived before Tornado. Kashmir arrived after Jewel but before Spain. Spain arrived before Ojibwa.", "question": "Which one of the following must be true?", "options": [ "A) At least two of the boats arrived before Neptune.", "B) At least five of the boats arrived before Pacific.", "C) At least four of the boats arrived before Spain.", "D) At least three of the boats arrived before Tornado.", "E) At least two of the boats arrived before Valhalla." ], "answer": "C" }, { "id": "ar_lsat_199902_2-G_1_3", "context": "Exactly eight boats—Jewel, Kashmir, Neptune, Ojibwa, Pacific, Spain, Tornado, and Valhalla—arrived at a dock. No boat arrived at the same time as any other boat. The boats arrived in an order consistent with the following conditions: Tornado arrived before Spain but after Jewel. Neptune arrived before Tornado. Kashmir arrived after Jewel but before Spain. Spain arrived before Ojibwa.", "question": "Of the eight boats, what is the maximum number that could have arrived before Jewel?", "options": [ "A) none", "B) one", "C) two", "D) three", "E) four" ], "answer": "D" }, { "id": "ar_lsat_199902_2-G_1_4", "context": "Exactly eight boats—Jewel, Kashmir, Neptune, Ojibwa, Pacific, Spain, Tornado, and Valhalla—arrived at a dock. No boat arrived at the same time as any other boat. The boats arrived in an order consistent with the following conditions: Tornado arrived before Spain but after Jewel. Neptune arrived before Tornado. Kashmir arrived after Jewel but before Spain. Spain arrived before Ojibwa.", "question": "Of the eight boats, if Valhalla was the second to arrive, then which one of the following CANNOT be true?", "options": [ "A) Jewel was the third to arrive.", "B) Jewel was the first to arrive.", "C) Kashmir was the third to arrive.", "D) Pacific was the third to arrive.", "E) Tornado was the third to arrive." ], "answer": "E" }, { "id": "ar_lsat_199902_2-G_1_5", "context": "Exactly eight boats—Jewel, Kashmir, Neptune, Ojibwa, Pacific, Spain, Tornado, and Valhalla—arrived at a dock. No boat arrived at the same time as any other boat. The boats arrived in an order consistent with the following conditions: Tornado arrived before Spain but after Jewel. Neptune arrived before Tornado. Kashmir arrived after Jewel but before Spain. Spain arrived before Ojibwa.", "question": "If Valhalla arrived before Neptune but after Pacific, which one of the following could be true?", "options": [ "A) Tornado arrived before Valhalla.", "B) Kashmir arrived before Pacific.", "C) Ojibwa was not the last of the boats to arrive.", "D) Spain arrived before Valhalla.", "E) Spain was not the seventh of the boats to arrive." ], "answer": "B" }, { "id": "ar_lsat_199902_2-G_1_6", "context": "Exactly eight boats—Jewel, Kashmir, Neptune, Ojibwa, Pacific, Spain, Tornado, and Valhalla—arrived at a dock. No boat arrived at the same time as any other boat. The boats arrived in an order consistent with the following conditions: Tornado arrived before Spain but after Jewel. Neptune arrived before Tornado. Kashmir arrived after Jewel but before Spain. Spain arrived before Ojibwa.", "question": "Of the boats, what are, respectively, the minimum number and the maximum number that could have arrived before Kashmir?", "options": [ "A) one, five", "B) two, five", "C) three, five", "D) one, six", "E) two, six" ], "answer": "A" }, { "id": "ar_lsat_199902_2-G_2_7", "context": "A park contains at most five of seven kinds of trees—firs, laurels, maples, oaks, pines, spruces, and yews—consistent with the following conditions: If maples are in the park, yews are not. If firs are in the park, pines are not. If yews are not in the park, then either laurels or oaks, but not both, are in the park. If it is not the case that the park contains both laurels and oaks, then it contains firs and spruces.", "question": "Which one of the following could be a complete and accurate list of the kinds of trees in the park?", "options": [ "A) firs, maples", "B) firs, laurels, oaks", "C) firs, laurels, pines, spruces", "D) firs, laurels, spruces, yews", "E) firs, maples, oaks, spruces, yews" ], "answer": "D" }, { "id": "ar_lsat_199902_2-G_2_8", "context": "A park contains at most five of seven kinds of trees—firs, laurels, maples, oaks, pines, spruces, and yews—consistent with the following conditions: If maples are in the park, yews are not. If firs are in the park, pines are not. If yews are not in the park, then either laurels or oaks, but not both, are in the park. If it is not the case that the park contains both laurels and oaks, then it contains firs and spruces.", "question": "If neither maples nor spruces are in the park, then which one of the following could be true?", "options": [ "A) Exactly four kinds of trees are in the park.", "B) Exactly five kinds of trees are in the park.", "C) Laurels are not in the park.", "D) Oaks are not in the park.", "E) Yews are not in the park." ], "answer": "A" }, { "id": "ar_lsat_199902_2-G_2_9", "context": "A park contains at most five of seven kinds of trees—firs, laurels, maples, oaks, pines, spruces, and yews—consistent with the following conditions: If maples are in the park, yews are not. If firs are in the park, pines are not. If yews are not in the park, then either laurels or oaks, but not both, are in the park. If it is not the case that the park contains both laurels and oaks, then it contains firs and spruces.", "question": "Which one of the following could be true?", "options": [ "A) Neither firs nor laurels are in the park.", "B) Neither laurels, oaks, nor yews are in the park.", "C) Neither laurels nor spruces are in the park.", "D) Neither maples nor yews are in the park.", "E) Neither oaks nor spruces are in the park." ], "answer": "D" }, { "id": "ar_lsat_199902_2-G_2_10", "context": "A park contains at most five of seven kinds of trees—firs, laurels, maples, oaks, pines, spruces, and yews—consistent with the following conditions: If maples are in the park, yews are not. If firs are in the park, pines are not. If yews are not in the park, then either laurels or oaks, but not both, are in the park. If it is not the case that the park contains both laurels and oaks, then it contains firs and spruces.", "question": "If firs are not in the park, then which one of the following must be true?", "options": [ "A) Maples are not in the park.", "B) Spruces are not in the park.", "C) Yews are not in the park.", "D) Pines are in the park.", "E) Spruces are in the park." ], "answer": "A" }, { "id": "ar_lsat_199902_2-G_2_11", "context": "A park contains at most five of seven kinds of trees—firs, laurels, maples, oaks, pines, spruces, and yews—consistent with the following conditions: If maples are in the park, yews are not. If firs are in the park, pines are not. If yews are not in the park, then either laurels or oaks, but not both, are in the park. If it is not the case that the park contains both laurels and oaks, then it contains firs and spruces.", "question": "If pines are in the park, then which one of the following must be true?", "options": [ "A) Exactly four kinds of trees are in the park.", "B) Exactly five kinds of trees are in the park.", "C) Neither firs nor maples are in the park.", "D) Neither firs nor oaks are in the park.", "E) Neither laurels nor maples are in the park." ], "answer": "C" }, { "id": "ar_lsat_199902_2-G_2_12", "context": "A park contains at most five of seven kinds of trees—firs, laurels, maples, oaks, pines, spruces, and yews—consistent with the following conditions: If maples are in the park, yews are not. If firs are in the park, pines are not. If yews are not in the park, then either laurels or oaks, but not both, are in the park. If it is not the case that the park contains both laurels and oaks, then it contains firs and spruces.", "question": "Each of the following could be an accurate, partial list of the kinds of trees in the park EXCEPT:", "options": [ "A) oaks, spruces", "B) oaks, yews", "C) firs, laurels, oaks", "D) firs, maples, oaks", "E) laurels, maples, oaks" ], "answer": "E" }, { "id": "ar_lsat_199902_2-G_3_13", "context": "Four married couples—Francisco and Gabrielle, Kyoko and Lee, Olivia and Peter, Raymond and Simone—will dine together at the same circular table. Each person will sit in a different one of the eight chairs evenly spaced around the table. The chairs are numbered from 1 through 8 with successively numbered chairs next to each other and chair 1 next to chair 8. Seating arrangements must meet the following conditions: No person sits next to her or his spouse. Simone sits in chair 1 and Raymond sits in chair 4. Neither Peter nor Olivia sits next to Raymond. Neither Kyoko nor Lee sits next to Gabrielle.", "question": "Which one of the following could be the list of people sitting in chairs 5 through 8, respectively?", "options": [ "A) Francisco, Olivia, Gabrielle, Peter", "B) Francisco, Gabrielle, Peter, Lee", "C) Olivia, Gabrielle, Peter, Kyoko", "D) Gabrielle, Lee, Olivia, Kyoko", "E) Lee, Olivia, Francisco, Kyoko" ], "answer": "E" }, { "id": "ar_lsat_199902_2-G_3_14", "context": "Four married couples—Francisco and Gabrielle, Kyoko and Lee, Olivia and Peter, Raymond and Simone—will dine together at the same circular table. Each person will sit in a different one of the eight chairs evenly spaced around the table. The chairs are numbered from 1 through 8 with successively numbered chairs next to each other and chair 1 next to chair 8. Seating arrangements must meet the following conditions: No person sits next to her or his spouse. Simone sits in chair 1 and Raymond sits in chair 4. Neither Peter nor Olivia sits next to Raymond. Neither Kyoko nor Lee sits next to Gabrielle.", "question": "Each of the following could be true EXCEPT:", "options": [ "A) Peter and Gabrielle sit in chairs 2 and 3, respectively.", "B) Peter and Kyoko sit in chairs 1 and 3, respectively.", "C) Francisco, Kyoko, and Peter sit in chairs 5, 6, and 7, respectively.", "D) Gabrielle, Olivia, and Kyoko sit in chairs 5, 6, and 7, respectively.", "E) Gabrielle, Peter, and Lee sit in chairs 5, 6, and 7, respectively." ], "answer": "B" }, { "id": "ar_lsat_199902_2-G_3_15", "context": "Four married couples—Francisco and Gabrielle, Kyoko and Lee, Olivia and Peter, Raymond and Simone—will dine together at the same circular table. Each person will sit in a different one of the eight chairs evenly spaced around the table. The chairs are numbered from 1 through 8 with successively numbered chairs next to each other and chair 1 next to chair 8. Seating arrangements must meet the following conditions: No person sits next to her or his spouse. Simone sits in chair 1 and Raymond sits in chair 4. Neither Peter nor Olivia sits next to Raymond. Neither Kyoko nor Lee sits next to Gabrielle.", "question": "If Francisco sits in chair 2 and Olivia sits next to Simone, Gabrielle must sit next to which one of the following persons?", "options": [ "A) Francisco", "B) Olivia", "C) Lee", "D) Raymond", "E) Peter" ], "answer": "E" }, { "id": "ar_lsat_199902_2-G_3_16", "context": "Four married couples—Francisco and Gabrielle, Kyoko and Lee, Olivia and Peter, Raymond and Simone—will dine together at the same circular table. Each person will sit in a different one of the eight chairs evenly spaced around the table. The chairs are numbered from 1 through 8 with successively numbered chairs next to each other and chair 1 next to chair 8. Seating arrangements must meet the following conditions: No person sits next to her or his spouse. Simone sits in chair 1 and Raymond sits in chair 4. Neither Peter nor Olivia sits next to Raymond. Neither Kyoko nor Lee sits next to Gabrielle.", "question": "If neither Gabrielle nor Lee sits next to Raymond, which one of the following must be true?", "options": [ "A) Francisco sits next to Raymond.", "B) Olivia sits next to Simone.", "C) Francisco sits in chair 3.", "D) Olivia sits in chair 6.", "E) Olivia sits in chair 7." ], "answer": "A" }, { "id": "ar_lsat_199902_2-G_3_17", "context": "Four married couples—Francisco and Gabrielle, Kyoko and Lee, Olivia and Peter, Raymond and Simone—will dine together at the same circular table. Each person will sit in a different one of the eight chairs evenly spaced around the table. The chairs are numbered from 1 through 8 with successively numbered chairs next to each other and chair 1 next to chair 8. Seating arrangements must meet the following conditions: No person sits next to her or his spouse. Simone sits in chair 1 and Raymond sits in chair 4. Neither Peter nor Olivia sits next to Raymond. Neither Kyoko nor Lee sits next to Gabrielle.", "question": "If Lee sits in chair 2, which one of the following must be true?", "options": [ "A) Peter sits next to Gabrielle.", "B) Kyoko sits next to Simone.", "C) Francisco sits next to Lee.", "D) Gabrielle sits in chair 5.", "E) Olivia sits in chair 6." ], "answer": "C" }, { "id": "ar_lsat_199902_2-G_3_18", "context": "Four married couples—Francisco and Gabrielle, Kyoko and Lee, Olivia and Peter, Raymond and Simone—will dine together at the same circular table. Each person will sit in a different one of the eight chairs evenly spaced around the table. The chairs are numbered from 1 through 8 with successively numbered chairs next to each other and chair 1 next to chair 8. Seating arrangements must meet the following conditions: No person sits next to her or his spouse. Simone sits in chair 1 and Raymond sits in chair 4. Neither Peter nor Olivia sits next to Raymond. Neither Kyoko nor Lee sits next to Gabrielle.", "question": "If both Francisco and Gabrielle sit next to Raymond, which one of the following is a complete and accurate list of people any one of whom could sit next to Olivia?", "options": [ "A) Francisco, Gabrielle, Kyoko", "B) Lee, Simone, Kyoko", "C) Lee, Gabrielle, Kyoko", "D) Francisco, Lee, Gabrielle, Kyoko", "E) Lee, Simone, Gabrielle, Kyoko" ], "answer": "E" }, { "id": "ar_lsat_199902_2-G_4_19", "context": "Zeno's Unfinished Furniture sells exactly five types of furniture—footstools, hutches, sideboards, tables, and vanities. Irene buys just four items, each of a different type, and each made entirely of one kind of wood—maple, oak, pine, or rosewood. The following conditions govern Irene's purchases: Any vanity she buys is maple. Any rosewood item she buys is a sideboard. If she buys a vanity, she does not buy a footstool. If Irene buys a footstool, she also buys a table made of the same wood. Irene does not buy an oak table. Exactly two of the items she buys are made of the same kind of wood as each other.", "question": "Which one of the following could be an accurate list of the items Irene buys?", "options": [ "A) Maple footstool, maple hutch, rosewood sideboard, maple table", "B) oak hutch, rosewood sideboard, pine table, oak vanity", "C) rosewood hutch, maple sideboard, oak table, maple vanity", "D) pine footstool, rosewood sideboard, pine table, maple vanity", "E) maple footstool, pine hutch, oak sideboard, maple table" ], "answer": "E" }, { "id": "ar_lsat_199902_2-G_4_20", "context": "Zeno's Unfinished Furniture sells exactly five types of furniture—footstools, hutches, sideboards, tables, and vanities. Irene buys just four items, each of a different type, and each made entirely of one kind of wood—maple, oak, pine, or rosewood. The following conditions govern Irene's purchases: Any vanity she buys is maple. Any rosewood item she buys is a sideboard. If she buys a vanity, she does not buy a footstool. If Irene buys a footstool, she also buys a table made of the same wood. Irene does not buy an oak table. Exactly two of the items she buys are made of the same kind of wood as each other.", "question": "If Irene buys one item made of rosewood and two items made of maple, then which one of the following pairs could be two of the items she buys?", "options": [ "A) a rosewood sideboard and an oak footstool", "B) an oak hutch and a pine sideboard", "C) an oak hutch and a maple table", "D) a maple sideboard and a maple vanity", "E) a maple hutch and a maple table" ], "answer": "C" }, { "id": "ar_lsat_199902_2-G_4_21", "context": "Zeno's Unfinished Furniture sells exactly five types of furniture—footstools, hutches, sideboards, tables, and vanities. Irene buys just four items, each of a different type, and each made entirely of one kind of wood—maple, oak, pine, or rosewood. The following conditions govern Irene's purchases: Any vanity she buys is maple. Any rosewood item she buys is a sideboard. If she buys a vanity, she does not buy a footstool. If Irene buys a footstool, she also buys a table made of the same wood. Irene does not buy an oak table. Exactly two of the items she buys are made of the same kind of wood as each other.", "question": "Which one of the following is a complete and accurate list of all the woods any footstool that Irene buys could be made of?", "options": [ "A) maple, oak", "B) maple, pine", "C) maple, rosewood", "D) maple, oak, pine", "E) maple, oak, pine, rosewood" ], "answer": "B" }, { "id": "ar_lsat_199902_2-G_4_22", "context": "Zeno's Unfinished Furniture sells exactly five types of furniture—footstools, hutches, sideboards, tables, and vanities. Irene buys just four items, each of a different type, and each made entirely of one kind of wood—maple, oak, pine, or rosewood. The following conditions govern Irene's purchases: Any vanity she buys is maple. Any rosewood item she buys is a sideboard. If she buys a vanity, she does not buy a footstool. If Irene buys a footstool, she also buys a table made of the same wood. Irene does not buy an oak table. Exactly two of the items she buys are made of the same kind of wood as each other.", "question": "Suppose Irene buys a footstool. Then which one of the following is a complete and accurate list of items any one of which she could buy in maple?", "options": [ "A) footstool, hutch, sideboard, table, vanity", "B) footstool, hutch, sideboard, table", "C) footstool, hutch, sideboard", "D) footstool, hutch", "E) footstool" ], "answer": "B" }, { "id": "ar_lsat_199902_2-G_4_23", "context": "Zeno's Unfinished Furniture sells exactly five types of furniture—footstools, hutches, sideboards, tables, and vanities. Irene buys just four items, each of a different type, and each made entirely of one kind of wood—maple, oak, pine, or rosewood. The following conditions govern Irene's purchases: Any vanity she buys is maple. Any rosewood item she buys is a sideboard. If she buys a vanity, she does not buy a footstool. If Irene buys a footstool, she also buys a table made of the same wood. Irene does not buy an oak table. Exactly two of the items she buys are made of the same kind of wood as each other.", "question": "Which one of the following CANNOT be the two items Irene buys that are made of the same wood as each other?", "options": [ "A) footstool, hutch", "B) hutch, sideboard", "C) hutch, table", "D) sideboard, vanity", "E) table, vanity" ], "answer": "A" }, { "id": "ar_lsat_199902_2-G_4_24", "context": "Zeno's Unfinished Furniture sells exactly five types of furniture—footstools, hutches, sideboards, tables, and vanities. Irene buys just four items, each of a different type, and each made entirely of one kind of wood—maple, oak, pine, or rosewood. The following conditions govern Irene's purchases: Any vanity she buys is maple. Any rosewood item she buys is a sideboard. If she buys a vanity, she does not buy a footstool. If Irene buys a footstool, she also buys a table made of the same wood. Irene does not buy an oak table. Exactly two of the items she buys are made of the same kind of wood as each other.", "question": "If Irene does not buy an item made of maple, then each of the following must be true EXCEPT:", "options": [ "A) Irene buys a footstool.", "B) Irene buys a pine hutch.", "C) Irene buys a rosewood sideboard.", "D) Irene buys exactly one item made of oak.", "E) Irene buys exactly two items made of pine." ], "answer": "B" }, { "id": "ar_lsat_199906_2-G_1_1", "context": "Six racehorses—K, L, M, N, O, and P—will be assigned to six positions arranged in a straight line and numbered consecutively 1 through 6. The horses are assigned to the positions, one horse per position, according to the following conditions: K and L must be assigned to positions that are separated from each other by exactly one position. K and N cannot be assigned to positions that are next to each other. N must be assigned to a higher-numbered position than M. P must be assigned to position 3.", "question": "Which one of the following lists an acceptable assignment of horses to positions 1 though 6, respectively?", "options": [ "A) K, L, P, M, N, O", "B) M, K, P, L, N, O", "C) M, N, K, P, L, O", "D) N, O, P, K, M, L", "E) O, M, P, L, N, K" ], "answer": "B" }, { "id": "ar_lsat_199906_2-G_1_2", "context": "Six racehorses—K, L, M, N, O, and P—will be assigned to six positions arranged in a straight line and numbered consecutively 1 through 6. The horses are assigned to the positions, one horse per position, according to the following conditions: K and L must be assigned to positions that are separated from each other by exactly one position. K and N cannot be assigned to positions that are next to each other. N must be assigned to a higher-numbered position than M. P must be assigned to position 3.", "question": "Which one of the following is a complete and accurate list of the positions any one of which can be the position to which K is assigned?", "options": [ "A) 1, 2", "B) 2, 3", "C) 2, 4", "D) 2, 4, 5", "E) 2, 4, 6" ], "answer": "E" }, { "id": "ar_lsat_199906_2-G_1_3", "context": "Six racehorses—K, L, M, N, O, and P—will be assigned to six positions arranged in a straight line and numbered consecutively 1 through 6. The horses are assigned to the positions, one horse per position, according to the following conditions: K and L must be assigned to positions that are separated from each other by exactly one position. K and N cannot be assigned to positions that are next to each other. N must be assigned to a higher-numbered position than M. P must be assigned to position 3.", "question": "Which one of the following CANNOT be true?", "options": [ "A) K is assigned to position 2.", "B) L is assigned to position 2.", "C) M is assigned to position 1.", "D) M is assigned to position 5.", "E) O is assigned to position 2." ], "answer": "E" }, { "id": "ar_lsat_199906_2-G_1_4", "context": "Six racehorses—K, L, M, N, O, and P—will be assigned to six positions arranged in a straight line and numbered consecutively 1 through 6. The horses are assigned to the positions, one horse per position, according to the following conditions: K and L must be assigned to positions that are separated from each other by exactly one position. K and N cannot be assigned to positions that are next to each other. N must be assigned to a higher-numbered position than M. P must be assigned to position 3.", "question": "Which one of the following must be true?", "options": [ "A) Either K or else L is assigned to position 2.", "B) Either K or else L is assigned to position 4.", "C) Either M or else N is assigned to position 2.", "D) Either M or else N is assigned to position 5.", "E) Either M or else O is assigned to position 6." ], "answer": "B" }, { "id": "ar_lsat_199906_2-G_1_5", "context": "Six racehorses—K, L, M, N, O, and P—will be assigned to six positions arranged in a straight line and numbered consecutively 1 through 6. The horses are assigned to the positions, one horse per position, according to the following conditions: K and L must be assigned to positions that are separated from each other by exactly one position. K and N cannot be assigned to positions that are next to each other. N must be assigned to a higher-numbered position than M. P must be assigned to position 3.", "question": "Which one of the following CANNOT be true?", "options": [ "A) L and N are assigned to positions that are next to each other.", "B) M and K are assigned to positions that are next to each other.", "C) M and O are assigned to positions that are next to each other.", "D) L and N are assigned to positions that are separated from each other by exactly one position.", "E) M and P are assigned to positions that are separated from each other by exactly one position." ], "answer": "C" }, { "id": "ar_lsat_199906_2-G_2_6", "context": "To prepare for fieldwork, exactly four different researchers—a geologist, a historian, a linguist, and a paleontologist—will learn at least one and at most three of four languages—Rundi, Swahili, Tigrinya, and Yoruba. They must learn the languages according to the following specifications: Exactly one researcher learns Rundi. Exactly two researchers learn Swahili. Exactly two researchers learn Tigrinya. Exactly three researchers learn Yoruba. Any language learned by the linguist or paleontologist is not learned by the geologist. Any language learned by the geologist is learned by the historian.", "question": "Which one of the following could be true?", "options": [ "A) The linguist learns three languages—Rundi, Swahili, and Tigrinya.", "B) The linguist learns three languages—Swahili, Tigrinya, and Yoruba.", "C) The historian learns three languages—Rundi, Swahili, and Tigrinya.", "D) The historian learns three languages—Swahili, Tigrinya, and Yoruba.", "E) The paleontologist learns three languages—Rundi, Swahili, and Tigrinya." ], "answer": "D" }, { "id": "ar_lsat_199906_2-G_2_7", "context": "To prepare for fieldwork, exactly four different researchers—a geologist, a historian, a linguist, and a paleontologist—will learn at least one and at most three of four languages—Rundi, Swahili, Tigrinya, and Yoruba. They must learn the languages according to the following specifications: Exactly one researcher learns Rundi. Exactly two researchers learn Swahili. Exactly two researchers learn Tigrinya. Exactly three researchers learn Yoruba. Any language learned by the linguist or paleontologist is not learned by the geologist. Any language learned by the geologist is learned by the historian.", "question": "If the linguist learns three of the languages, then which one of the following must be true?", "options": [ "A) The linguist learns Tigrinya.", "B) The linguist learns Rundi.", "C) The linguist learns Swahili.", "D) The paleontologist learns Rundi.", "E) The paleontologist learns Swahili." ], "answer": "B" }, { "id": "ar_lsat_199906_2-G_2_8", "context": "To prepare for fieldwork, exactly four different researchers—a geologist, a historian, a linguist, and a paleontologist—will learn at least one and at most three of four languages—Rundi, Swahili, Tigrinya, and Yoruba. They must learn the languages according to the following specifications: Exactly one researcher learns Rundi. Exactly two researchers learn Swahili. Exactly two researchers learn Tigrinya. Exactly three researchers learn Yoruba. Any language learned by the linguist or paleontologist is not learned by the geologist. Any language learned by the geologist is learned by the historian.", "question": "Each of the following could be true of the researcher who learns Rundi EXCEPT:", "options": [ "A) The researcher also learns Tigrinya but not Swahili.", "B) The researcher learns neither Tigrinya nor Swahili.", "C) The researcher also learns Tigrinya but not Yoruba.", "D) The researcher also learns both Tigrinya and Yoruba.", "E) The researcher also learns Yoruba but not Tigrinya." ], "answer": "C" }, { "id": "ar_lsat_199906_2-G_2_9", "context": "To prepare for fieldwork, exactly four different researchers—a geologist, a historian, a linguist, and a paleontologist—will learn at least one and at most three of four languages—Rundi, Swahili, Tigrinya, and Yoruba. They must learn the languages according to the following specifications: Exactly one researcher learns Rundi. Exactly two researchers learn Swahili. Exactly two researchers learn Tigrinya. Exactly three researchers learn Yoruba. Any language learned by the linguist or paleontologist is not learned by the geologist. Any language learned by the geologist is learned by the historian.", "question": "Each of the following could be a complete and accurate list of the researchers who learn both Swahili and Yoruba EXCEPT:", "options": [ "A) the historian", "B) the paleontologist", "C) the historian, the linguist", "D) the historian, the paleontologist", "E) the linguist, the paleontologist" ], "answer": "B" }, { "id": "ar_lsat_199906_2-G_2_10", "context": "To prepare for fieldwork, exactly four different researchers—a geologist, a historian, a linguist, and a paleontologist—will learn at least one and at most three of four languages—Rundi, Swahili, Tigrinya, and Yoruba. They must learn the languages according to the following specifications: Exactly one researcher learns Rundi. Exactly two researchers learn Swahili. Exactly two researchers learn Tigrinya. Exactly three researchers learn Yoruba. Any language learned by the linguist or paleontologist is not learned by the geologist. Any language learned by the geologist is learned by the historian.", "question": "If the geologist learns exactly two of the languages, then which one of the following could be true?", "options": [ "A) The paleontologist learns Rundi.", "B) The paleontologist learns Swahili.", "C) The historian learns Rundi.", "D) The paleontologist learns exactly three of the languages.", "E) The historian learns exactly two of the languages." ], "answer": "A" }, { "id": "ar_lsat_199906_2-G_2_11", "context": "To prepare for fieldwork, exactly four different researchers—a geologist, a historian, a linguist, and a paleontologist—will learn at least one and at most three of four languages—Rundi, Swahili, Tigrinya, and Yoruba. They must learn the languages according to the following specifications: Exactly one researcher learns Rundi. Exactly two researchers learn Swahili. Exactly two researchers learn Tigrinya. Exactly three researchers learn Yoruba. Any language learned by the linguist or paleontologist is not learned by the geologist. Any language learned by the geologist is learned by the historian.", "question": "Which one of the following must be true?", "options": [ "A) Fewer of the languages are learned by the historian than are learned by the paleontologist.", "B) Fewer of the languages are learned by the geologist than are learned by the historian.", "C) Fewer of the languages are learned by the geologist than are learned by the linguist.", "D) Fewer of the languages are learned by the paleontologist than are learned by the linguist.", "E) Fewer of the languages are learned by the paleontologist than are learned by the historian." ], "answer": "B" }, { "id": "ar_lsat_199906_2-G_2_12", "context": "To prepare for fieldwork, exactly four different researchers—a geologist, a historian, a linguist, and a paleontologist—will learn at least one and at most three of four languages—Rundi, Swahili, Tigrinya, and Yoruba. They must learn the languages according to the following specifications: Exactly one researcher learns Rundi. Exactly two researchers learn Swahili. Exactly two researchers learn Tigrinya. Exactly three researchers learn Yoruba. Any language learned by the linguist or paleontologist is not learned by the geologist. Any language learned by the geologist is learned by the historian.", "question": "If exactly two of the languages are learned by the historian, then which one of the following must be true?", "options": [ "A) The paleontologist does not learn Rundi.", "B) The geologist does not learn Swahili.", "C) The linguist does not learn Rundi.", "D) The historian does not learn Rundi.", "E) The paleontologist does not learn Swahili." ], "answer": "D" }, { "id": "ar_lsat_199906_2-G_3_13", "context": "During three days—Monday through Wednesday—a health officer will inspect exactly six buildings—three hotels: Grace, Jacaranda, and Lido; and three restaurants: Seville, Vesuvio, and Zeno. Each day, exactly two buildings are inspected: one in the morning and one in the afternoon. Inspections must occur according to the following conditions: Hotels are not inspected on Wednesday. Grace is inspected at some time before Jacaranda. Grace is not inspected on the same day as Seville. If Zeno is inspected in the morning, Lido is also inspected in the morning.", "question": "Which one of the following could be the order in which the buildings are inspected, listed in order from Monday morning through Wednesday afternoon?", "options": [ "A) Grace, Seville, Jacaranda, Lido, Vesuvio, Zeno", "B) Grace, Vesuvio, Zeno, Jacaranda, Lido, Seville", "C) Lido, Jacaranda, Grace, Vesuvio, Zeno, Seville", "D) Lido, Seville, Grace, Jacaranda, Zeno, Vesuvio", "E) Zeno, Grace, Jacaranda, Lido, Seville, Vesuvio" ], "answer": "D" }, { "id": "ar_lsat_199906_2-G_3_14", "context": "During three days—Monday through Wednesday—a health officer will inspect exactly six buildings—three hotels: Grace, Jacaranda, and Lido; and three restaurants: Seville, Vesuvio, and Zeno. Each day, exactly two buildings are inspected: one in the morning and one in the afternoon. Inspections must occur according to the following conditions: Hotels are not inspected on Wednesday. Grace is inspected at some time before Jacaranda. Grace is not inspected on the same day as Seville. If Zeno is inspected in the morning, Lido is also inspected in the morning.", "question": "Which one of the following could be the buildings inspected in the mornings, listed in order from Monday through Wednesday?", "options": [ "A) Grace, Jacaranda, Zeno", "B) Jacaranda, Vesuvio, Seville", "C) Lido, Jacaranda, Vesuvio", "D) Seville, Jacaranda, Vesuvio", "E) Seville, Lido, Zeno" ], "answer": "C" }, { "id": "ar_lsat_199906_2-G_3_15", "context": "During three days—Monday through Wednesday—a health officer will inspect exactly six buildings—three hotels: Grace, Jacaranda, and Lido; and three restaurants: Seville, Vesuvio, and Zeno. Each day, exactly two buildings are inspected: one in the morning and one in the afternoon. Inspections must occur according to the following conditions: Hotels are not inspected on Wednesday. Grace is inspected at some time before Jacaranda. Grace is not inspected on the same day as Seville. If Zeno is inspected in the morning, Lido is also inspected in the morning.", "question": "Which one of the following is a pair of buildings that, if inspected on the same day as each other, must be inspected on Monday?", "options": [ "A) Grace and Jacaranda", "B) Grace and Vesuvio", "C) Jacaranda and Lido", "D) Lido and Seville", "E) Lido and Vesuvio" ], "answer": "B" }, { "id": "ar_lsat_199906_2-G_3_16", "context": "During three days—Monday through Wednesday—a health officer will inspect exactly six buildings—three hotels: Grace, Jacaranda, and Lido; and three restaurants: Seville, Vesuvio, and Zeno. Each day, exactly two buildings are inspected: one in the morning and one in the afternoon. Inspections must occur according to the following conditions: Hotels are not inspected on Wednesday. Grace is inspected at some time before Jacaranda. Grace is not inspected on the same day as Seville. If Zeno is inspected in the morning, Lido is also inspected in the morning.", "question": "If Grace is inspected on Tuesday, which one of the following could be the buildings inspected in the afternoons, listed in order from Monday through Wednesday?", "options": [ "A) Lido, Jacaranda, Vesuvio", "B) Lido, Jacaranda, Zeno", "C) Lido, Vesuvio, Zeno", "D) Seville, Grace, Vesuvio", "E) Seville, Jacaranda, Lido" ], "answer": "B" }, { "id": "ar_lsat_199906_2-G_3_17", "context": "During three days—Monday through Wednesday—a health officer will inspect exactly six buildings—three hotels: Grace, Jacaranda, and Lido; and three restaurants: Seville, Vesuvio, and Zeno. Each day, exactly two buildings are inspected: one in the morning and one in the afternoon. Inspections must occur according to the following conditions: Hotels are not inspected on Wednesday. Grace is inspected at some time before Jacaranda. Grace is not inspected on the same day as Seville. If Zeno is inspected in the morning, Lido is also inspected in the morning.", "question": "If Seville is inspected on Monday morning, which one of the following must be true?", "options": [ "A) Grace is inspected on Tuesday afternoon.", "B) Jacaranda is inspected on Monday afternoon.", "C) Lido is inspected on Tuesday morning.", "D) Vesuvio is inspected on Wednesday morning.", "E) Zeno is inspected on Wednesday morning." ], "answer": "D" }, { "id": "ar_lsat_199906_2-G_3_18", "context": "During three days—Monday through Wednesday—a health officer will inspect exactly six buildings—three hotels: Grace, Jacaranda, and Lido; and three restaurants: Seville, Vesuvio, and Zeno. Each day, exactly two buildings are inspected: one in the morning and one in the afternoon. Inspections must occur according to the following conditions: Hotels are not inspected on Wednesday. Grace is inspected at some time before Jacaranda. Grace is not inspected on the same day as Seville. If Zeno is inspected in the morning, Lido is also inspected in the morning.", "question": "If Grace is inspected on Monday morning and Zeno is inspected on Wednesday morning, which one of the following must be true?", "options": [ "A) Jacaranda is inspected before Lido is inspected.", "B) Jacaranda is inspected after Lido is inspected.", "C) Jacaranda is inspected after Seville is inspected.", "D) Lido is inspected before Seville is inspected.", "E) Lido is inspected before Vesuvio is inspected." ], "answer": "D" }, { "id": "ar_lsat_199906_2-G_4_19", "context": "Morrisville's town council has exactly three members: Fu, Gianola, and Herstein. During one week, the council members vote on exactly three bills: a recreation bill, a school bill, and a tax bill. Each council member votes either for or against each bill. The following is known: Each member of the council votes for at least one of the bills and against at least one of the bills. Exactly two members of the council vote for the recreation bill. Exactly one member of the council votes for the school bill. Exactly one member of the council votes for the tax bill. Fu votes for the recreation bill and against the school bill. Gianola votes against the recreation bill. Herstein votes against the tax bill.", "question": "Which one of the following statements could be true?", "options": [ "A) Fu and Gianola vote the same way on the tax bill.", "B) Gianola and Herstein vote the same way on the recreation bill.", "C) Gianola and Herstein vote the same way on the school bill.", "D) Fu votes for one of the bills and Gianola votes for two of the bills.", "E) Fu votes for two of the bills and Gianola votes for two of the bills." ], "answer": "D" }, { "id": "ar_lsat_199906_2-G_4_20", "context": "Morrisville's town council has exactly three members: Fu, Gianola, and Herstein. During one week, the council members vote on exactly three bills: a recreation bill, a school bill, and a tax bill. Each council member votes either for or against each bill. The following is known: Each member of the council votes for at least one of the bills and against at least one of the bills. Exactly two members of the council vote for the recreation bill. Exactly one member of the council votes for the school bill. Exactly one member of the council votes for the tax bill. Fu votes for the recreation bill and against the school bill. Gianola votes against the recreation bill. Herstein votes against the tax bill.", "question": "If the set of members of the council who vote against the school bill is the same set of members who vote against the tax bill, then which one of the following statements must be true?", "options": [ "A) Fu votes for the tax bill.", "B) Gianola votes for the recreation bill.", "C) Gianola votes against the school bill.", "D) Herstein votes against the recreation bill.", "E) Herstein votes against the school bill." ], "answer": "E" }, { "id": "ar_lsat_199906_2-G_4_21", "context": "Morrisville's town council has exactly three members: Fu, Gianola, and Herstein. During one week, the council members vote on exactly three bills: a recreation bill, a school bill, and a tax bill. Each council member votes either for or against each bill. The following is known: Each member of the council votes for at least one of the bills and against at least one of the bills. Exactly two members of the council vote for the recreation bill. Exactly one member of the council votes for the school bill. Exactly one member of the council votes for the tax bill. Fu votes for the recreation bill and against the school bill. Gianola votes against the recreation bill. Herstein votes against the tax bill.", "question": "If Gianola votes for the tax bill, then which one of the following statements could be true?", "options": [ "A) Fu and Gianola each vote for exactly one bill.", "B) Gianola and Herstein each vote for exactly one bill.", "C) Fu votes for exactly two bills.", "D) Gianola votes for the recreation bill.", "E) Herstein votes against the recreation bill." ], "answer": "A" }, { "id": "ar_lsat_199906_2-G_4_22", "context": "Morrisville's town council has exactly three members: Fu, Gianola, and Herstein. During one week, the council members vote on exactly three bills: a recreation bill, a school bill, and a tax bill. Each council member votes either for or against each bill. The following is known: Each member of the council votes for at least one of the bills and against at least one of the bills. Exactly two members of the council vote for the recreation bill. Exactly one member of the council votes for the school bill. Exactly one member of the council votes for the tax bill. Fu votes for the recreation bill and against the school bill. Gianola votes against the recreation bill. Herstein votes against the tax bill.", "question": "If Gianola votes for exactly two of the three bills, which one of the following statements must be true?", "options": [ "A) Fu votes for the tax bill.", "B) Gianola votes for the recreation bill.", "C) Gianola votes for the school bill.", "D) Gianola votes against the tax bill.", "E) Herstein votes for the school bill." ], "answer": "C" }, { "id": "ar_lsat_199906_2-G_4_23", "context": "Morrisville's town council has exactly three members: Fu, Gianola, and Herstein. During one week, the council members vote on exactly three bills: a recreation bill, a school bill, and a tax bill. Each council member votes either for or against each bill. The following is known: Each member of the council votes for at least one of the bills and against at least one of the bills. Exactly two members of the council vote for the recreation bill. Exactly one member of the council votes for the school bill. Exactly one member of the council votes for the tax bill. Fu votes for the recreation bill and against the school bill. Gianola votes against the recreation bill. Herstein votes against the tax bill.", "question": "If one of the members of the council votes against exactly the same bills as does another member of the council, then which one of the following statements must be true?", "options": [ "A) Fu votes for the tax bill.", "B) Gianola votes for the recreation bill.", "C) Gianola votes against the school bill.", "D) Gianola votes for exactly one bill", "E) Herstein votes for exactly one bill." ], "answer": "E" }, { "id": "ar_lsat_199910_3-G_1_1", "context": "On a Tuesday, an accountant has exactly seven bills—numbered 1 through 7—to pay by Thursday of the same week. The accountant will pay each bill only once according to the following rules: Either three or four of the seven bills must be paid on Wednesday, the rest on Thursday. Bill 1 cannot be paid on the same day as bill 5. Bill 2 must be paid on Thursday. Bill 4 must be paid on the same day as bill 7. If bill 6 is paid on Wednesday, bill 7 must be paid on Thursday.", "question": "If exactly four bills are paid on Wednesday, then those four bills could be", "options": [ "A) 1, 3, 4, and 6", "B) 1, 3, 5, and 6", "C) 2, 4, 5, and 7", "D) 3, 4, 5, and 7", "E) 3, 4, 6, and 7" ], "answer": "D" }, { "id": "ar_lsat_199910_3-G_1_2", "context": "On a Tuesday, an accountant has exactly seven bills—numbered 1 through 7—to pay by Thursday of the same week. The accountant will pay each bill only once according to the following rules: Either three or four of the seven bills must be paid on Wednesday, the rest on Thursday. Bill 1 cannot be paid on the same day as bill 5. Bill 2 must be paid on Thursday. Bill 4 must be paid on the same day as bill 7. If bill 6 is paid on Wednesday, bill 7 must be paid on Thursday.", "question": "Which one of the following is a complete and accurate list of the bills any one of which could be among the bills paid on Wednesday?", "options": [ "A) 3, 5, and 6", "B) 1, 3, 4, 6, and 7", "C) 1, 3, 4, 5, 6, and 7", "D) 2, 3, 4, 5, 6, and 7", "E) 1, 2, 3, 4, 5, 6, and 7" ], "answer": "C" }, { "id": "ar_lsat_199910_3-G_1_3", "context": "On a Tuesday, an accountant has exactly seven bills—numbered 1 through 7—to pay by Thursday of the same week. The accountant will pay each bill only once according to the following rules: Either three or four of the seven bills must be paid on Wednesday, the rest on Thursday. Bill 1 cannot be paid on the same day as bill 5. Bill 2 must be paid on Thursday. Bill 4 must be paid on the same day as bill 7. If bill 6 is paid on Wednesday, bill 7 must be paid on Thursday.", "question": "If bill 2 and bill 6 are paid on different days from each other, which one of the following must be true?", "options": [ "A) Exactly three bills are paid on Wednesday.", "B) Exactly three bills are paid on Thursday.", "C) Bill 1 is paid on the same day as bill 4.", "D) Bill 2 is paid on the same day as bill 3.", "E) Bill 5 is paid on the same day as bill 7." ], "answer": "A" }, { "id": "ar_lsat_199910_3-G_1_4", "context": "On a Tuesday, an accountant has exactly seven bills—numbered 1 through 7—to pay by Thursday of the same week. The accountant will pay each bill only once according to the following rules: Either three or four of the seven bills must be paid on Wednesday, the rest on Thursday. Bill 1 cannot be paid on the same day as bill 5. Bill 2 must be paid on Thursday. Bill 4 must be paid on the same day as bill 7. If bill 6 is paid on Wednesday, bill 7 must be paid on Thursday.", "question": "If bill 6 is paid on Wednesday, which one of the following bills must also be paid on Wednesday?", "options": [ "A) 1", "B) 3", "C) 4", "D) 5", "E) 7" ], "answer": "B" }, { "id": "ar_lsat_199910_3-G_1_5", "context": "On a Tuesday, an accountant has exactly seven bills—numbered 1 through 7—to pay by Thursday of the same week. The accountant will pay each bill only once according to the following rules: Either three or four of the seven bills must be paid on Wednesday, the rest on Thursday. Bill 1 cannot be paid on the same day as bill 5. Bill 2 must be paid on Thursday. Bill 4 must be paid on the same day as bill 7. If bill 6 is paid on Wednesday, bill 7 must be paid on Thursday.", "question": "If bill 4 is paid on Thursday, which one of the following is a pair of bills that could also be paid on Thursday?", "options": [ "A) 1 and 5", "B) 1 and 7", "C) 3 and 5", "D) 3 and 6", "E) 6 and 7" ], "answer": "B" }, { "id": "ar_lsat_199910_3-G_1_6", "context": "On a Tuesday, an accountant has exactly seven bills—numbered 1 through 7—to pay by Thursday of the same week. The accountant will pay each bill only once according to the following rules: Either three or four of the seven bills must be paid on Wednesday, the rest on Thursday. Bill 1 cannot be paid on the same day as bill 5. Bill 2 must be paid on Thursday. Bill 4 must be paid on the same day as bill 7. If bill 6 is paid on Wednesday, bill 7 must be paid on Thursday.", "question": "Which one of the following statements must be true?", "options": [ "A) If bill 2 is paid on Thursday, bill 3 is paid on Wednesday.", "B) If bill 4 is paid on Thursday, bill 1 is paid on Wednesday.", "C) If bill 4 is paid on Thursday, bill 3 is paid on Wednesday.", "D) If bill 6 is paid on Thursday, bill 3 is also paid on Thursday.", "E) If bill 6 is paid on Thursday, bill 4 is also paid on Thursday." ], "answer": "C" }, { "id": "ar_lsat_199910_3-G_2_7", "context": "Two mannequins—1 and 2—will be dressed for display in outfits chosen from ten articles of clothing. Each article is in exactly one of three colors: navy, red, or yellow. There are three hats—one in each color; three jackets—one in each color; three skirts—one in each color; and one red tie. Each mannequin wears exactly one of the hats, one of the jackets, and one of the skirts. Furthermore, their outfits must meet the following restrictions: Neither mannequin wears all three colors. Each mannequin wears a hat in a different color from the jacket it wears. Mannequin 2 wears the navy skirt. Mannequin 1 wears the tie.", "question": "Which one of the following could be complete outfits for the two mannequins?", "options": [ "A) mannequin 1: navy hat, red jacket, yellow skirt, red tie mannequin 2: red hat, navy jacket, navy skirt", "B) mannequin 1: red hat, red jacket, yellow skirt, red tie mannequin 2: yellow hat, navy jacket, navy skirt", "C) mannequin 1: red hat, yellow jacket, red skirt, red tie mannequin 2: yellow hat, navy jacket, yellow skirt", "D) mannequin 1: yellow hat, red jacket, yellow skirt, red tie mannequin 2: red hat, navy jacket, navy skirt", "E) mannequin 1: yellow hat, yellow jacket, red skirt mannequin 2: red hat, navy jacket, navy skirt" ], "answer": "D" }, { "id": "ar_lsat_199910_3-G_2_8", "context": "Two mannequins—1 and 2—will be dressed for display in outfits chosen from ten articles of clothing. Each article is in exactly one of three colors: navy, red, or yellow. There are three hats—one in each color; three jackets—one in each color; three skirts—one in each color; and one red tie. Each mannequin wears exactly one of the hats, one of the jackets, and one of the skirts. Furthermore, their outfits must meet the following restrictions: Neither mannequin wears all three colors. Each mannequin wears a hat in a different color from the jacket it wears. Mannequin 2 wears the navy skirt. Mannequin 1 wears the tie.", "question": "Which one of the following could be true of the mannequins' outfits?", "options": [ "A) Mannequin 1 wears the navy jacket and the yellow skirt.", "B) Mannequin 2 wears the red hat and the red jacket.", "C) Mannequin 1 wears exactly one red article of clothing.", "D) Mannequin 1 wears exactly three yellow articles of clothing.", "E) Mannequin 2 wears no red articles of clothing." ], "answer": "E" }, { "id": "ar_lsat_199910_3-G_2_9", "context": "Two mannequins—1 and 2—will be dressed for display in outfits chosen from ten articles of clothing. Each article is in exactly one of three colors: navy, red, or yellow. There are three hats—one in each color; three jackets—one in each color; three skirts—one in each color; and one red tie. Each mannequin wears exactly one of the hats, one of the jackets, and one of the skirts. Furthermore, their outfits must meet the following restrictions: Neither mannequin wears all three colors. Each mannequin wears a hat in a different color from the jacket it wears. Mannequin 2 wears the navy skirt. Mannequin 1 wears the tie.", "question": "If mannequin 1 wears the navy jacket, which one of the following could be true?", "options": [ "A) Mannequin 1 wears the yellow hat.", "B) Mannequin 1 wears the yellow skirt.", "C) Mannequin 2 wears the red hat.", "D) Mannequin 2 wears the yellow hat.", "E) Mannequin 2 wears the yellow jacket." ], "answer": "E" }, { "id": "ar_lsat_199910_3-G_2_10", "context": "Two mannequins—1 and 2—will be dressed for display in outfits chosen from ten articles of clothing. Each article is in exactly one of three colors: navy, red, or yellow. There are three hats—one in each color; three jackets—one in each color; three skirts—one in each color; and one red tie. Each mannequin wears exactly one of the hats, one of the jackets, and one of the skirts. Furthermore, their outfits must meet the following restrictions: Neither mannequin wears all three colors. Each mannequin wears a hat in a different color from the jacket it wears. Mannequin 2 wears the navy skirt. Mannequin 1 wears the tie.", "question": "If all four of the red articles of clothing are included in the two mannequins' outfits, which one of the following must be true?", "options": [ "A) Mannequin 1 wears the red hat.", "B) Mannequin 1 wears the yellow jacket.", "C) Mannequin 2 wears the navy jacket.", "D) Mannequin 1 wears no navy articles of clothing.", "E) Mannequin 2 wears no yellow articles of clothing." ], "answer": "E" }, { "id": "ar_lsat_199910_3-G_2_11", "context": "Two mannequins—1 and 2—will be dressed for display in outfits chosen from ten articles of clothing. Each article is in exactly one of three colors: navy, red, or yellow. There are three hats—one in each color; three jackets—one in each color; three skirts—one in each color; and one red tie. Each mannequin wears exactly one of the hats, one of the jackets, and one of the skirts. Furthermore, their outfits must meet the following restrictions: Neither mannequin wears all three colors. Each mannequin wears a hat in a different color from the jacket it wears. Mannequin 2 wears the navy skirt. Mannequin 1 wears the tie.", "question": "If mannequin 2 wears the red jacket, then mannequin 1 must wear the", "options": [ "A) navy hat", "B) red hat", "C) yellow hat", "D) red skirt", "E) yellow skirt" ], "answer": "B" }, { "id": "ar_lsat_199910_3-G_2_12", "context": "Two mannequins—1 and 2—will be dressed for display in outfits chosen from ten articles of clothing. Each article is in exactly one of three colors: navy, red, or yellow. There are three hats—one in each color; three jackets—one in each color; three skirts—one in each color; and one red tie. Each mannequin wears exactly one of the hats, one of the jackets, and one of the skirts. Furthermore, their outfits must meet the following restrictions: Neither mannequin wears all three colors. Each mannequin wears a hat in a different color from the jacket it wears. Mannequin 2 wears the navy skirt. Mannequin 1 wears the tie.", "question": "If all three of the yellow articles of clothing are included in the two mannequins' outfits, which one of the following could be true?", "options": [ "A) Mannequin 1 wears the navy jacket.", "B) Mannequin 1 wears the yellow jacket.", "C) Mannequin 1 wears the red skirt.", "D) Mannequin 2 wears the red hat.", "E) Mannequin 2 wears the red jacket." ], "answer": "B" }, { "id": "ar_lsat_199910_3-G_2_13", "context": "Two mannequins—1 and 2—will be dressed for display in outfits chosen from ten articles of clothing. Each article is in exactly one of three colors: navy, red, or yellow. There are three hats—one in each color; three jackets—one in each color; three skirts—one in each color; and one red tie. Each mannequin wears exactly one of the hats, one of the jackets, and one of the skirts. Furthermore, their outfits must meet the following restrictions: Neither mannequin wears all three colors. Each mannequin wears a hat in a different color from the jacket it wears. Mannequin 2 wears the navy skirt. Mannequin 1 wears the tie.", "question": "If mannequin 1 wears the skirt that is the same color as the jacket that mannequin 2 wears, which one of the following must be true?", "options": [ "A) Mannequin 1 wears the yellow hat.", "B) Mannequin 1 wears the yellow jacket.", "C) Mannequin 2 wears the navy hat.", "D) Mannequin 2 wears the red hat.", "E) Mannequin 2 wears the red jacket." ], "answer": "C" }, { "id": "ar_lsat_199910_3-G_3_14", "context": "A college dean will present seven awards for outstanding language research. The awards—one for French, one for German, one for Hebrew, one for Japanese, one for Korean, one for Latin, and one for Swahili—must be presented consecutively, one at a time, in conformity with the following constraints: The German award is not presented first. The Hebrew award is presented at some time before the Korean award is presented. The Latin award is presented at some time before the Japanese award is presented. The French award is presented either immediately before or immediately after the Hebrew award is presented. The Korean award is presented either immediately before or immediately after the Latin award is presented.", "question": "Which one of the following must be true?", "options": [ "A) The French award is presented at some time before the Japanese award is presented.", "B) The French award is presented at some time before the Swahili award is presented.", "C) The German award is presented at some time before the Korean award is presented.", "D) The German award is presented at some time before the Swahili award is presented.", "E) The Swahili award is presented at some time before the Hebrew award is presented." ], "answer": "A" }, { "id": "ar_lsat_199910_3-G_3_15", "context": "A college dean will present seven awards for outstanding language research. The awards—one for French, one for German, one for Hebrew, one for Japanese, one for Korean, one for Latin, and one for Swahili—must be presented consecutively, one at a time, in conformity with the following constraints: The German award is not presented first. The Hebrew award is presented at some time before the Korean award is presented. The Latin award is presented at some time before the Japanese award is presented. The French award is presented either immediately before or immediately after the Hebrew award is presented. The Korean award is presented either immediately before or immediately after the Latin award is presented.", "question": "If the Hebrew award is presented fourth, which one of the following must be true?", "options": [ "A) The French award is presented fifth.", "B) The German award is presented third.", "C) The Japanese award is presented sixth.", "D) The Korean award is presented fifth.", "E) The Swahili award is presented first." ], "answer": "E" }, { "id": "ar_lsat_199910_3-G_3_16", "context": "A college dean will present seven awards for outstanding language research. The awards—one for French, one for German, one for Hebrew, one for Japanese, one for Korean, one for Latin, and one for Swahili—must be presented consecutively, one at a time, in conformity with the following constraints: The German award is not presented first. The Hebrew award is presented at some time before the Korean award is presented. The Latin award is presented at some time before the Japanese award is presented. The French award is presented either immediately before or immediately after the Hebrew award is presented. The Korean award is presented either immediately before or immediately after the Latin award is presented.", "question": "If the German award is presented third, which one of the following could be true?", "options": [ "A) The French award is presented fourth.", "B) The Japanese award is presented fifth.", "C) The Japanese award is presented sixth.", "D) The Korean award is presented second.", "E) The Swahili award is presented fifth." ], "answer": "C" }, { "id": "ar_lsat_199910_3-G_3_17", "context": "A college dean will present seven awards for outstanding language research. The awards—one for French, one for German, one for Hebrew, one for Japanese, one for Korean, one for Latin, and one for Swahili—must be presented consecutively, one at a time, in conformity with the following constraints: The German award is not presented first. The Hebrew award is presented at some time before the Korean award is presented. The Latin award is presented at some time before the Japanese award is presented. The French award is presented either immediately before or immediately after the Hebrew award is presented. The Korean award is presented either immediately before or immediately after the Latin award is presented.", "question": "The earliest that the Japanese award could be presented is", "options": [ "A) third", "B) fourth", "C) fifth", "D) sixth", "E) seventh" ], "answer": "C" }, { "id": "ar_lsat_199910_3-G_3_18", "context": "A college dean will present seven awards for outstanding language research. The awards—one for French, one for German, one for Hebrew, one for Japanese, one for Korean, one for Latin, and one for Swahili—must be presented consecutively, one at a time, in conformity with the following constraints: The German award is not presented first. The Hebrew award is presented at some time before the Korean award is presented. The Latin award is presented at some time before the Japanese award is presented. The French award is presented either immediately before or immediately after the Hebrew award is presented. The Korean award is presented either immediately before or immediately after the Latin award is presented.", "question": "If the Japanese award is presented at some time before the Swahili award is presented, any of the following could be true EXCEPT:", "options": [ "A) The German award is presented immediately before the French award is presented.", "B) The German award is presented immediately before the Japanese award is presented.", "C) The Hebrew award is presented immediately before the Latin award is presented.", "D) The Korean award is presented immediately before the Japanese award is presented.", "E) The Swahili award is presented immediately before the German award is presented." ], "answer": "A" }, { "id": "ar_lsat_199910_3-G_3_19", "context": "A college dean will present seven awards for outstanding language research. The awards—one for French, one for German, one for Hebrew, one for Japanese, one for Korean, one for Latin, and one for Swahili—must be presented consecutively, one at a time, in conformity with the following constraints: The German award is not presented first. The Hebrew award is presented at some time before the Korean award is presented. The Latin award is presented at some time before the Japanese award is presented. The French award is presented either immediately before or immediately after the Hebrew award is presented. The Korean award is presented either immediately before or immediately after the Latin award is presented.", "question": "The order in which the awards are presented is completely determined if which one of the following is true?", "options": [ "A) The French award is presented immediately before the German award is presented, and the Korean award is presented immediately before the Latin award is presented.", "B) The French award is presented immediately before the Hebrew award is presented, and the Hebrew award is presented immediately before the Korean award is presented.", "C) The French award is presented immediately before the Latin award is presented, and the Korean award is presented immediately before the Japanese award is presented.", "D) The German award is presented immediately before the French award is presented, and the Latin award is presented immediately before the Japanese award is presented.", "E) The German award is presented immediately before the Korean award is presented, and the Hebrew award is presented immediately before the French award is presented." ], "answer": "D" }, { "id": "ar_lsat_199910_3-G_4_20", "context": "Exactly six piano classes are given sequentially on Monday: two with more than one student and four with exactly one student. Exactly four females—Gimena, Holly, Iyanna, and Kate—and five males—Leung, Nate, Oscar, Pedro, and Saul—attend these classes. Each student attends exactly one class. The following must obtain: Iyanna and Leung together constitute one class. Pedro and exactly two others together constitute one class. Kate is the first female, but not the first student, to attend a class. Gimena's class is at some time after Iyanna's but at sometime before Pedro's. Oscar's class is at some time after Gimena's.", "question": "Which one of the following students could attend the first class?", "options": [ "A) Holly", "B) Leung", "C) Oscar", "D) Pedro", "E) Saul" ], "answer": "E" }, { "id": "ar_lsat_199910_3-G_4_21", "context": "Exactly six piano classes are given sequentially on Monday: two with more than one student and four with exactly one student. Exactly four females—Gimena, Holly, Iyanna, and Kate—and five males—Leung, Nate, Oscar, Pedro, and Saul—attend these classes. Each student attends exactly one class. The following must obtain: Iyanna and Leung together constitute one class. Pedro and exactly two others together constitute one class. Kate is the first female, but not the first student, to attend a class. Gimena's class is at some time after Iyanna's but at sometime before Pedro's. Oscar's class is at some time after Gimena's.", "question": "Which one of the following is a complete and accurate list of classes any one of which could be the class Gimena attends?", "options": [ "A) the fourth, the fifth", "B) the fourth, the sixth", "C) the second, the fourth, the fifth", "D) the third, the fifth, the sixth", "E) the second, the third, the fourth" ], "answer": "A" }, { "id": "ar_lsat_199910_3-G_4_22", "context": "Exactly six piano classes are given sequentially on Monday: two with more than one student and four with exactly one student. Exactly four females—Gimena, Holly, Iyanna, and Kate—and five males—Leung, Nate, Oscar, Pedro, and Saul—attend these classes. Each student attends exactly one class. The following must obtain: Iyanna and Leung together constitute one class. Pedro and exactly two others together constitute one class. Kate is the first female, but not the first student, to attend a class. Gimena's class is at some time after Iyanna's but at sometime before Pedro's. Oscar's class is at some time after Gimena's.", "question": "Which one of the following pairs of students could be in the class with Pedro?", "options": [ "A) Gimena and Holly", "B) Holly and Saul", "C) Kate and Nate", "D) Leung and Oscar", "E) Nate and Saul" ], "answer": "B" }, { "id": "ar_lsat_199910_3-G_4_23", "context": "Exactly six piano classes are given sequentially on Monday: two with more than one student and four with exactly one student. Exactly four females—Gimena, Holly, Iyanna, and Kate—and five males—Leung, Nate, Oscar, Pedro, and Saul—attend these classes. Each student attends exactly one class. The following must obtain: Iyanna and Leung together constitute one class. Pedro and exactly two others together constitute one class. Kate is the first female, but not the first student, to attend a class. Gimena's class is at some time after Iyanna's but at sometime before Pedro's. Oscar's class is at some time after Gimena's.", "question": "If Oscar and Pedro do not attend the same class as each other, then which one of the following could be true?", "options": [ "A) Gimena attends the fifth class.", "B) Holly attends the third class.", "C) Iyanna attends the fourth class.", "D) Nate attends the fifth class.", "E) Saul attends the second class." ], "answer": "D" }, { "id": "ar_lsat_199910_3-G_4_24", "context": "Exactly six piano classes are given sequentially on Monday: two with more than one student and four with exactly one student. Exactly four females—Gimena, Holly, Iyanna, and Kate—and five males—Leung, Nate, Oscar, Pedro, and Saul—attend these classes. Each student attends exactly one class. The following must obtain: Iyanna and Leung together constitute one class. Pedro and exactly two others together constitute one class. Kate is the first female, but not the first student, to attend a class. Gimena's class is at some time after Iyanna's but at sometime before Pedro's. Oscar's class is at some time after Gimena's.", "question": "Suppose the condition that Oscar attends a class after Gimena is replaced with the condition that Oscar attends a class before Gimena and after Kate. If all the other conditions remain the same, then which class must Holly attend?", "options": [ "A) the second", "B) the third", "C) the fourth", "D) the fifth", "E) the sixth" ], "answer": "E" }, { "id": "ar_lsat_199912_1-G_1_1", "context": "This morning, a bakery makes exactly one delivery, consisting of exactly six loaves of bread. Each of the loaves is exactly one of three kinds: oatmeal, rye, or wheat, and each is either sliced or unsliced. The loaves that the bakery delivers this morning must be consistent with the following: There are at least two kinds of loaves. There are no more than three rye loaves. There is no unsliced wheat loaf. There is at least one unsliced oatmeal loaf. If two or more of the loaves are unsliced, then at least one of the unsliced loaves is rye.", "question": "Which one of the following could be a complete and accurate list of the loaves that the bakery delivers?", "options": [ "A) six unsliced oatmeal loaves", "B) five unsliced oatmeal loaves, one sliced rye loaf", "C) five unsliced oatmeal loaves, one unsliced wheat loaf", "D) four unsliced oatmeal loaves, two unsliced rye loaves", "E) four unsliced oatmeal loaves, two sliced wheat loaves" ], "answer": "D" }, { "id": "ar_lsat_199912_1-G_1_2", "context": "This morning, a bakery makes exactly one delivery, consisting of exactly six loaves of bread. Each of the loaves is exactly one of three kinds: oatmeal, rye, or wheat, and each is either sliced or unsliced. The loaves that the bakery delivers this morning must be consistent with the following: There are at least two kinds of loaves. There are no more than three rye loaves. There is no unsliced wheat loaf. There is at least one unsliced oatmeal loaf. If two or more of the loaves are unsliced, then at least one of the unsliced loaves is rye.", "question": "Each of the following could be a complete and accurate list of the unsliced loaves that the bakery delivers EXCEPT:", "options": [ "A) three oatmeal loaves", "B) three oatmeal loaves, one rye loaf", "C) two oatmeal loaves, two rye loaves", "D) two oatmeal loaves, three rye loaves", "E) one oatmeal loaf, one rye loaf" ], "answer": "A" }, { "id": "ar_lsat_199912_1-G_1_3", "context": "This morning, a bakery makes exactly one delivery, consisting of exactly six loaves of bread. Each of the loaves is exactly one of three kinds: oatmeal, rye, or wheat, and each is either sliced or unsliced. The loaves that the bakery delivers this morning must be consistent with the following: There are at least two kinds of loaves. There are no more than three rye loaves. There is no unsliced wheat loaf. There is at least one unsliced oatmeal loaf. If two or more of the loaves are unsliced, then at least one of the unsliced loaves is rye.", "question": "Which one of the following statements CANNOT be true?", "options": [ "A) The only unsliced loaves are oatmeal loaves.", "B) The only sliced loaves are rye loaves.", "C) The only unsliced loaves are rye loaves.", "D) The number of sliced loaves is exactly one greater than the number of sliced oatmeal loaves.", "E) The number of unsliced loaves is exactly one greater than the number of unsliced oatmeal loaves." ], "answer": "C" }, { "id": "ar_lsat_199912_1-G_1_4", "context": "This morning, a bakery makes exactly one delivery, consisting of exactly six loaves of bread. Each of the loaves is exactly one of three kinds: oatmeal, rye, or wheat, and each is either sliced or unsliced. The loaves that the bakery delivers this morning must be consistent with the following: There are at least two kinds of loaves. There are no more than three rye loaves. There is no unsliced wheat loaf. There is at least one unsliced oatmeal loaf. If two or more of the loaves are unsliced, then at least one of the unsliced loaves is rye.", "question": "Which one of the following statements must be true?", "options": [ "A) At least one of the loaves is rye.", "B) At least one of the loaves is wheat.", "C) At least one of the loaves is sliced.", "D) No more than four oatmeal loaves are sliced.", "E) No more than four wheat loaves are sliced." ], "answer": "D" }, { "id": "ar_lsat_199912_1-G_1_5", "context": "This morning, a bakery makes exactly one delivery, consisting of exactly six loaves of bread. Each of the loaves is exactly one of three kinds: oatmeal, rye, or wheat, and each is either sliced or unsliced. The loaves that the bakery delivers this morning must be consistent with the following: There are at least two kinds of loaves. There are no more than three rye loaves. There is no unsliced wheat loaf. There is at least one unsliced oatmeal loaf. If two or more of the loaves are unsliced, then at least one of the unsliced loaves is rye.", "question": "If the bakery delivers exactly four wheat loaves, then the bakery could also deliver", "options": [ "A) one sliced rye loaf and one unsliced rye loaf", "B) one sliced oatmeal loaf and one unsliced oatmeal loaf", "C) two unsliced rye loaves", "D) two unsliced oatmeal loaves", "E) two sliced oatmeal loaves" ], "answer": "B" }, { "id": "ar_lsat_199912_1-G_2_6", "context": "The six messages on an answering machine were each left by one of Fleure, Greta, Hildy, Liam, Pasquale, or Theodore, consistent with the following: At most one person left more than one message. No person left more than three messages. If the first message is Hildy's, the last is Pasquale's. If Greta left any message, Fleure and Pasquale did also. If Fleure left any message, Pasquale and Theodore did also, all of Pasquale's preceding any of Theodore's. If Pasquale left any message, Hildy and Liam did also, all of Hildy's preceding any of Liam's.", "question": "Which one of the following could be a complete and accurate list of the messages left on the answering machine, from first to last?", "options": [ "A) Fleure's, Pasquale's, Theodore's, Hildy's, Pasquale's, Liam's", "B) Greta's, Pasquale's, Theodore's, Theodore's, Hildy's, Liam's", "C) Hildy's, Hildy's, Hildy's, Liam's, Pasquale's, Theodore's", "D) Pasquale's, Hildy's, Fleure's, Liam's, Theodore's, Theodore's", "E) Pasquale's, Hildy's, Theodore's, Hildy's, Liam's, Liam's" ], "answer": "D" }, { "id": "ar_lsat_199912_1-G_2_7", "context": "The six messages on an answering machine were each left by one of Fleure, Greta, Hildy, Liam, Pasquale, or Theodore, consistent with the following: At most one person left more than one message. No person left more than three messages. If the first message is Hildy's, the last is Pasquale's. If Greta left any message, Fleure and Pasquale did also. If Fleure left any message, Pasquale and Theodore did also, all of Pasquale's preceding any of Theodore's. If Pasquale left any message, Hildy and Liam did also, all of Hildy's preceding any of Liam's.", "question": "The first and last messages on the answering machine could be the first and second messages left by which one of the following?", "options": [ "A) Fleure", "B) Hildy", "C) Liam", "D) Pasquale", "E) Theodore" ], "answer": "A" }, { "id": "ar_lsat_199912_1-G_2_8", "context": "The six messages on an answering machine were each left by one of Fleure, Greta, Hildy, Liam, Pasquale, or Theodore, consistent with the following: At most one person left more than one message. No person left more than three messages. If the first message is Hildy's, the last is Pasquale's. If Greta left any message, Fleure and Pasquale did also. If Fleure left any message, Pasquale and Theodore did also, all of Pasquale's preceding any of Theodore's. If Pasquale left any message, Hildy and Liam did also, all of Hildy's preceding any of Liam's.", "question": "If Greta left the fifth message, then which one of the following messages CANNOT have been left by Theodore?", "options": [ "A) the first message", "B) the second message", "C) the third message", "D) the fourth message", "E) the sixth message" ], "answer": "A" }, { "id": "ar_lsat_199912_1-G_2_9", "context": "The six messages on an answering machine were each left by one of Fleure, Greta, Hildy, Liam, Pasquale, or Theodore, consistent with the following: At most one person left more than one message. No person left more than three messages. If the first message is Hildy's, the last is Pasquale's. If Greta left any message, Fleure and Pasquale did also. If Fleure left any message, Pasquale and Theodore did also, all of Pasquale's preceding any of Theodore's. If Pasquale left any message, Hildy and Liam did also, all of Hildy's preceding any of Liam's.", "question": "Each of the following must be true EXCEPT:", "options": [ "A) Liam left at least one message.", "B) Theodore left at least one message.", "C) Hildy left at least one message.", "D) Exactly one person left at least two messages.", "E) At least four people left messages." ], "answer": "D" }, { "id": "ar_lsat_199912_1-G_2_10", "context": "The six messages on an answering machine were each left by one of Fleure, Greta, Hildy, Liam, Pasquale, or Theodore, consistent with the following: At most one person left more than one message. No person left more than three messages. If the first message is Hildy's, the last is Pasquale's. If Greta left any message, Fleure and Pasquale did also. If Fleure left any message, Pasquale and Theodore did also, all of Pasquale's preceding any of Theodore's. If Pasquale left any message, Hildy and Liam did also, all of Hildy's preceding any of Liam's.", "question": "If the only message Pasquale left is the fifth message, then which one of the following could be true?", "options": [ "A) Hildy left the first message.", "B) Theodore left exactly two messages.", "C) Liam left exactly two messages.", "D) Liam left the second message.", "E) Fleure left the third and fourth messages." ], "answer": "C" }, { "id": "ar_lsat_199912_1-G_3_11", "context": "Exactly five cars—Frank's, Marquitta's, Orlando's, Taishah's, and Vinquetta's—are washed, each exactly once. The cars are washed one at a time, with each receiving exactly one kind of wash: regular, super, or premium. The following conditions must apply: The first car washed does not receive a super wash, though at least one car does. Exactly one car receives a premium wash. The second and third cars washed receive the same kind of wash as each other. Neither Orlando's nor Taishah's is washed before Vinquetta's. Marquitta's is washed before Frank's, but after Orlando's. Marquitta's and the car washed immediately before Marquitta's receive regular washes.", "question": "Which one of the following could be an accurate list of the cars in the order in which they are washed, matched with type of wash received?", "options": [ "A) Orlando's: premium; Vinquetta's: regular; Taishah's: regular; Marquitta's: regular; Frank's: super", "B) Vinquetta's: premium; Orlando's: regular; Taishah's: regular; Marquitta's: regular; Frank's: super", "C) Vinquetta's: regular; Marquitta's: regular; Taishah's: regular; Orlando's: super; Frank's: super", "D) Vinquetta's: super; Orlando's: regular; Marquitta's: regular; Frank's: regular; Taishah's: super", "E) Vinquetta's: premium; Orlando's: regular; Marquitta's: regular; Frank's: regular; Taishah's: regular" ], "answer": "B" }, { "id": "ar_lsat_199912_1-G_3_12", "context": "Exactly five cars—Frank's, Marquitta's, Orlando's, Taishah's, and Vinquetta's—are washed, each exactly once. The cars are washed one at a time, with each receiving exactly one kind of wash: regular, super, or premium. The following conditions must apply: The first car washed does not receive a super wash, though at least one car does. Exactly one car receives a premium wash. The second and third cars washed receive the same kind of wash as each other. Neither Orlando's nor Taishah's is washed before Vinquetta's. Marquitta's is washed before Frank's, but after Orlando's. Marquitta's and the car washed immediately before Marquitta's receive regular washes.", "question": "If Vinquetta's car does not receive a premium wash, which one of the following must be true?", "options": [ "A) Orlando's and Vinquetta's cars receive the same kind of wash as each other.", "B) Marquitta's and Taishah's cars receive the same kind of wash as each other.", "C) The fourth car washed receives a premium wash.", "D) Orlando's car is washed third.", "E) Marquitta's car is washed fourth." ], "answer": "A" }, { "id": "ar_lsat_199912_1-G_3_13", "context": "Exactly five cars—Frank's, Marquitta's, Orlando's, Taishah's, and Vinquetta's—are washed, each exactly once. The cars are washed one at a time, with each receiving exactly one kind of wash: regular, super, or premium. The following conditions must apply: The first car washed does not receive a super wash, though at least one car does. Exactly one car receives a premium wash. The second and third cars washed receive the same kind of wash as each other. Neither Orlando's nor Taishah's is washed before Vinquetta's. Marquitta's is washed before Frank's, but after Orlando's. Marquitta's and the car washed immediately before Marquitta's receive regular washes.", "question": "If the last two cars washed receive the same kind of wash as each other, then which one of the following could be true?", "options": [ "A) Orlando's car is washed third.", "B) Taishah's car is washed fifth.", "C) Taishah's car is washed before Marquitta's car.", "D) Vinquetta's car receives a regular wash.", "E) Exactly one car receives a super wash." ], "answer": "B" }, { "id": "ar_lsat_199912_1-G_3_14", "context": "Exactly five cars—Frank's, Marquitta's, Orlando's, Taishah's, and Vinquetta's—are washed, each exactly once. The cars are washed one at a time, with each receiving exactly one kind of wash: regular, super, or premium. The following conditions must apply: The first car washed does not receive a super wash, though at least one car does. Exactly one car receives a premium wash. The second and third cars washed receive the same kind of wash as each other. Neither Orlando's nor Taishah's is washed before Vinquetta's. Marquitta's is washed before Frank's, but after Orlando's. Marquitta's and the car washed immediately before Marquitta's receive regular washes.", "question": "Which one of the following must be true?", "options": [ "A) Vinquetta's car receives a premium wash.", "B) Exactly two cars receive a super wash.", "C) The fifth car washed receives a super wash.", "D) The fourth car washed receives a super wash.", "E) The second car washed receives a regular wash." ], "answer": "E" }, { "id": "ar_lsat_199912_1-G_3_15", "context": "Exactly five cars—Frank's, Marquitta's, Orlando's, Taishah's, and Vinquetta's—are washed, each exactly once. The cars are washed one at a time, with each receiving exactly one kind of wash: regular, super, or premium. The following conditions must apply: The first car washed does not receive a super wash, though at least one car does. Exactly one car receives a premium wash. The second and third cars washed receive the same kind of wash as each other. Neither Orlando's nor Taishah's is washed before Vinquetta's. Marquitta's is washed before Frank's, but after Orlando's. Marquitta's and the car washed immediately before Marquitta's receive regular washes.", "question": "Which one of the following is a complete and accurate list of the cars that must receive a regular wash?", "options": [ "A) Frank's, Marquitta's", "B) Marquitta's, Orlando's", "C) Marquitta's, Orlando's, Taishah's", "D) Marquitta's, Taishah's", "E) Marquitta's, Vinquetta's" ], "answer": "B" }, { "id": "ar_lsat_199912_1-G_3_16", "context": "Exactly five cars—Frank's, Marquitta's, Orlando's, Taishah's, and Vinquetta's—are washed, each exactly once. The cars are washed one at a time, with each receiving exactly one kind of wash: regular, super, or premium. The following conditions must apply: The first car washed does not receive a super wash, though at least one car does. Exactly one car receives a premium wash. The second and third cars washed receive the same kind of wash as each other. Neither Orlando's nor Taishah's is washed before Vinquetta's. Marquitta's is washed before Frank's, but after Orlando's. Marquitta's and the car washed immediately before Marquitta's receive regular washes.", "question": "Suppose that in addition to the original five cars Jabrohn's car is also washed. If all the other conditions hold as given, which one of the following CANNOT be true?", "options": [ "A) Orlando's car receives a premium wash.", "B) Vinquetta's car receives a super wash.", "C) Four cars receive a regular wash.", "D) Only the second and third cars washed receive a regular wash.", "E) Jabrohn's car is washed after Frank's car." ], "answer": "A" }, { "id": "ar_lsat_199912_1-G_4_17", "context": "Exactly seven toy-truck models—F, G, H, J, K, M, and S—are assembled on seven assembly lines, exactly one model to a line. The seven lines are arranged side by side and numbered consecutively 1 through 7. Assignment of models to lines must meet the following conditions: F is assembled on a lower-numbered line than J. M is assembled on the line numbered one lower than the line on which G is assembled. H is assembled on line 1 or else line 7. S is assembled on line 4.", "question": "Which one of the following is an acceptable assignment of toy-truck models to lines, on order from line 1 through line 7?", "options": [ "A) F, J, K, S, H, M, G", "B) F, K, J, S, M, G, H", "C) F, M, K, S, G, J, H", "D) H, K, S, M, G, F, J", "E) H, M, G, S, J, F, K" ], "answer": "B" }, { "id": "ar_lsat_199912_1-G_4_18", "context": "Exactly seven toy-truck models—F, G, H, J, K, M, and S—are assembled on seven assembly lines, exactly one model to a line. The seven lines are arranged side by side and numbered consecutively 1 through 7. Assignment of models to lines must meet the following conditions: F is assembled on a lower-numbered line than J. M is assembled on the line numbered one lower than the line on which G is assembled. H is assembled on line 1 or else line 7. S is assembled on line 4.", "question": "It must be true that the lowest-numbered line on which", "options": [ "A) F can be assembled is line 2", "B) G can be assembled is line 3", "C) J can be assembled is line 2", "D) K can be assembled is line 3", "E) M can be assembled is line 2" ], "answer": "C" }, { "id": "ar_lsat_199912_1-G_4_19", "context": "Exactly seven toy-truck models—F, G, H, J, K, M, and S—are assembled on seven assembly lines, exactly one model to a line. The seven lines are arranged side by side and numbered consecutively 1 through 7. Assignment of models to lines must meet the following conditions: F is assembled on a lower-numbered line than J. M is assembled on the line numbered one lower than the line on which G is assembled. H is assembled on line 1 or else line 7. S is assembled on line 4.", "question": "If K is assembled on line 5, which one of the following is a pair of models that could be assembled, not necessarily in the order given, on lines whose numbers are consecutive to each other?", "options": [ "A) G, H", "B) G, J", "C) H, J", "D) J, M", "E) M, S" ], "answer": "C" }, { "id": "ar_lsat_199912_1-G_4_20", "context": "Exactly seven toy-truck models—F, G, H, J, K, M, and S—are assembled on seven assembly lines, exactly one model to a line. The seven lines are arranged side by side and numbered consecutively 1 through 7. Assignment of models to lines must meet the following conditions: F is assembled on a lower-numbered line than J. M is assembled on the line numbered one lower than the line on which G is assembled. H is assembled on line 1 or else line 7. S is assembled on line 4.", "question": "There can be at most how many lines between the line on which F is assembled and the line on which J is assembled?", "options": [ "A) one", "B) two", "C) three", "D) four", "E) five" ], "answer": "D" }, { "id": "ar_lsat_199912_1-G_4_21", "context": "Exactly seven toy-truck models—F, G, H, J, K, M, and S—are assembled on seven assembly lines, exactly one model to a line. The seven lines are arranged side by side and numbered consecutively 1 through 7. Assignment of models to lines must meet the following conditions: F is assembled on a lower-numbered line than J. M is assembled on the line numbered one lower than the line on which G is assembled. H is assembled on line 1 or else line 7. S is assembled on line 4.", "question": "If K is assembled on line 2, which one of the following must be true?", "options": [ "A) F is assembled on a lower-numbered line than S.", "B) H is assembled on a lower-numbered line than G.", "C) J is assembled on a lower-numbered line than H.", "D) M is assembled on a lower-numbered line than J.", "E) S is assembled on a lower-numbered line than J." ], "answer": "A" }, { "id": "ar_lsat_199912_1-G_4_22", "context": "Exactly seven toy-truck models—F, G, H, J, K, M, and S—are assembled on seven assembly lines, exactly one model to a line. The seven lines are arranged side by side and numbered consecutively 1 through 7. Assignment of models to lines must meet the following conditions: F is assembled on a lower-numbered line than J. M is assembled on the line numbered one lower than the line on which G is assembled. H is assembled on line 1 or else line 7. S is assembled on line 4.", "question": "If G is assembled on the line numbered one less than the line on which F is assembled, then which one of the following must be true?", "options": [ "A) F is assembled on line 3.", "B) G is assembled on line 5.", "C) H is assembled on line 1.", "D) K is assembled on line 5.", "E) M is assembled on line 6." ], "answer": "A" }, { "id": "ar_lsat_199912_1-G_4_23", "context": "Exactly seven toy-truck models—F, G, H, J, K, M, and S—are assembled on seven assembly lines, exactly one model to a line. The seven lines are arranged side by side and numbered consecutively 1 through 7. Assignment of models to lines must meet the following conditions: F is assembled on a lower-numbered line than J. M is assembled on the line numbered one lower than the line on which G is assembled. H is assembled on line 1 or else line 7. S is assembled on line 4.", "question": "If M is assembled on line 1, which one of the following could be true?", "options": [ "A) F is assembled on a line numbered one lower than the line on which H is assembled.", "B) F is assembled on a line numbered one lower than the line on which K is assembled.", "C) G is assembled on a line numbered one lower than the line on which J is assembled.", "D) G is assembled on a line numbered one lower than the line on which K is assembled.", "E) K is assembled on a line numbered one lower than the line on which G is assembled." ], "answer": "D" }, { "id": "ar_lsat_200002_1-G_1_1", "context": "At a water carnival, each of the eight lifeguards—J, K, L, M, P, Q, R, and S—will participate in two events, a boat race and a rescue exercise. For each of these events the eight lifeguards are grouped into four two-person teams, subject to the following rules: If two lifeguards are teammates in the boat race, they cannot also be teammates in the rescue exercise. L and Q are teammates in the boat race. K and L are teammates in the rescue exercise. R and S are not teammates in either event.", "question": "Which one of the following could be a list of the four teams participating in the boat race?", "options": [ "A) J and L; K and S; M and Q; P and R", "B) J and M; K and P; L and Q; R and S", "C) J and M; K and R; L and S; P and Q", "D) J and M; K and S; L and Q; P and R", "E) J and P; K and L; M and R; Q and S" ], "answer": "D" }, { "id": "ar_lsat_200002_1-G_1_2", "context": "At a water carnival, each of the eight lifeguards—J, K, L, M, P, Q, R, and S—will participate in two events, a boat race and a rescue exercise. For each of these events the eight lifeguards are grouped into four two-person teams, subject to the following rules: If two lifeguards are teammates in the boat race, they cannot also be teammates in the rescue exercise. L and Q are teammates in the boat race. K and L are teammates in the rescue exercise. R and S are not teammates in either event.", "question": "Which one of the following is a pair of lifeguards who cannot be teammates in the rescue exercise but who could be teammates in the boat race?", "options": [ "A) J and P", "B) K and R", "C) L and S", "D) P and M", "E) P and Q" ], "answer": "B" }, { "id": "ar_lsat_200002_1-G_1_3", "context": "At a water carnival, each of the eight lifeguards—J, K, L, M, P, Q, R, and S—will participate in two events, a boat race and a rescue exercise. For each of these events the eight lifeguards are grouped into four two-person teams, subject to the following rules: If two lifeguards are teammates in the boat race, they cannot also be teammates in the rescue exercise. L and Q are teammates in the boat race. K and L are teammates in the rescue exercise. R and S are not teammates in either event.", "question": "If M and P are teammates in the boat race and J and R are teammates in the rescue exercise, which one of the following is a pair that must be teammates in the boat race?", "options": [ "A) J and K", "B) J and S", "C) K and L", "D) K and S", "E) Q and R" ], "answer": "B" }, { "id": "ar_lsat_200002_1-G_1_4", "context": "At a water carnival, each of the eight lifeguards—J, K, L, M, P, Q, R, and S—will participate in two events, a boat race and a rescue exercise. For each of these events the eight lifeguards are grouped into four two-person teams, subject to the following rules: If two lifeguards are teammates in the boat race, they cannot also be teammates in the rescue exercise. L and Q are teammates in the boat race. K and L are teammates in the rescue exercise. R and S are not teammates in either event.", "question": "If P and K are teammates in the boat race and P and Q are teammates in the rescue exercise, then each of the following lists a pair of lifeguards who must be teammates in one of the two events EXCEPT:", "options": [ "A) J and M", "B) J and R", "C) J and S", "D) M and R", "E) M and S" ], "answer": "A" }, { "id": "ar_lsat_200002_1-G_1_5", "context": "At a water carnival, each of the eight lifeguards—J, K, L, M, P, Q, R, and S—will participate in two events, a boat race and a rescue exercise. For each of these events the eight lifeguards are grouped into four two-person teams, subject to the following rules: If two lifeguards are teammates in the boat race, they cannot also be teammates in the rescue exercise. L and Q are teammates in the boat race. K and L are teammates in the rescue exercise. R and S are not teammates in either event.", "question": "If J and P are teammates in the boat race, then M could be the teammate of", "options": [ "A) K in the boat race and S in the rescue exercise", "B) L in the boat race and S in the rescue exercise", "C) R in the boat race and L in the rescue exercise", "D) S in the boat race and K in the rescue exercise", "E) S in the boat race and P in the rescue exercise" ], "answer": "E" }, { "id": "ar_lsat_200002_1-G_2_6", "context": "A critic ranks exactly seven restaurants—Lautrec, Medici, Pastilla, Robusto, Scheherazade's, Tantoko, and Vistula—from highest (best) to lowest (worst). The ranking must meet the following conditions: Pastilla ranks higher than Lautrec but lower than Robusto. Medici ranks higher than Vistula but lower than Tantoko. If Scheherazade's ranks higher than Pastilla, Medici ranks higher than Scheherazade's. If Medici ranks higher than Scheherazade's, Scheherazade's ranks higher than Pastilla. There are no ties.", "question": "Which one of the following could be an accurate ranking of the restaurants, from highest to lowest?", "options": [ "A) Tantoko, Medici, Scheherazade's, Pastilla, Vistula, Robusto, Lautrec", "B) Robusto, Pastilla, Tantoko, Medici, Scheherazade's, Vistula, Lautrec", "C) Tantoko, Medici, Scheherazade's, Robusto, Vistula, Pastilla, Lautrec", "D) Tantoko, Robusto, Medici, Vistula, Pastilla, Scheherazade's, Lautrec", "E) Robusto, Pastilla, Scheherazade's, Medici, Vistula, Tantoko, Lautrec" ], "answer": "C" }, { "id": "ar_lsat_200002_1-G_2_7", "context": "A critic ranks exactly seven restaurants—Lautrec, Medici, Pastilla, Robusto, Scheherazade's, Tantoko, and Vistula—from highest (best) to lowest (worst). The ranking must meet the following conditions: Pastilla ranks higher than Lautrec but lower than Robusto. Medici ranks higher than Vistula but lower than Tantoko. If Scheherazade's ranks higher than Pastilla, Medici ranks higher than Scheherazade's. If Medici ranks higher than Scheherazade's, Scheherazade's ranks higher than Pastilla. There are no ties.", "question": "If Pastilla ranks second highest, then which one of the following is a complete and accurate list of restaurants any one of which could be ranked fourth highest?", "options": [ "A) Lautrec", "B) Lautrec, Vistula", "C) Scheherazade's, Lautrec", "D) Scheherazade's, Lautrec, Medici", "E) Scheherazade's, Lautrec, Tantoko" ], "answer": "E" }, { "id": "ar_lsat_200002_1-G_2_8", "context": "A critic ranks exactly seven restaurants—Lautrec, Medici, Pastilla, Robusto, Scheherazade's, Tantoko, and Vistula—from highest (best) to lowest (worst). The ranking must meet the following conditions: Pastilla ranks higher than Lautrec but lower than Robusto. Medici ranks higher than Vistula but lower than Tantoko. If Scheherazade's ranks higher than Pastilla, Medici ranks higher than Scheherazade's. If Medici ranks higher than Scheherazade's, Scheherazade's ranks higher than Pastilla. There are no ties.", "question": "Which one of the following is the lowest ranking that Medici could have?", "options": [ "A) second highest", "B) third highest", "C) fourth highest", "D) fifth highest", "E) sixth highest" ], "answer": "E" }, { "id": "ar_lsat_200002_1-G_2_9", "context": "A critic ranks exactly seven restaurants—Lautrec, Medici, Pastilla, Robusto, Scheherazade's, Tantoko, and Vistula—from highest (best) to lowest (worst). The ranking must meet the following conditions: Pastilla ranks higher than Lautrec but lower than Robusto. Medici ranks higher than Vistula but lower than Tantoko. If Scheherazade's ranks higher than Pastilla, Medici ranks higher than Scheherazade's. If Medici ranks higher than Scheherazade's, Scheherazade's ranks higher than Pastilla. There are no ties.", "question": "If Medici ranks lower than Lautrec, then which one of the following must be true?", "options": [ "A) Lautrec ranks higher than Tantoko.", "B) Scheherazade's ranks higher than Vistula.", "C) Pastilla ranks higher than Tantoko.", "D) Tantoko ranks higher than Scheherazade's.", "E) Tantoko ranks higher than Pastilla." ], "answer": "B" }, { "id": "ar_lsat_200002_1-G_2_10", "context": "A critic ranks exactly seven restaurants—Lautrec, Medici, Pastilla, Robusto, Scheherazade's, Tantoko, and Vistula—from highest (best) to lowest (worst). The ranking must meet the following conditions: Pastilla ranks higher than Lautrec but lower than Robusto. Medici ranks higher than Vistula but lower than Tantoko. If Scheherazade's ranks higher than Pastilla, Medici ranks higher than Scheherazade's. If Medici ranks higher than Scheherazade's, Scheherazade's ranks higher than Pastilla. There are no ties.", "question": "If Vistula ranks higher than Robusto, then which one of the following restaurants could be ranked fifth highest?", "options": [ "A) Tantoko", "B) Medici", "C) Scheherazade's", "D) Vistula", "E) Pastilla" ], "answer": "C" }, { "id": "ar_lsat_200002_1-G_2_11", "context": "A critic ranks exactly seven restaurants—Lautrec, Medici, Pastilla, Robusto, Scheherazade's, Tantoko, and Vistula—from highest (best) to lowest (worst). The ranking must meet the following conditions: Pastilla ranks higher than Lautrec but lower than Robusto. Medici ranks higher than Vistula but lower than Tantoko. If Scheherazade's ranks higher than Pastilla, Medici ranks higher than Scheherazade's. If Medici ranks higher than Scheherazade's, Scheherazade's ranks higher than Pastilla. There are no ties.", "question": "Which one of the following CANNOT be true?", "options": [ "A) Pastilla ranks second highest.", "B) Vistula ranks third highest.", "C) Lautrec ranks third highest.", "D) Robusto ranks fifth highest.", "E) Scheherazade's ranks sixth highest." ], "answer": "E" }, { "id": "ar_lsat_200002_1-G_2_12", "context": "A critic ranks exactly seven restaurants—Lautrec, Medici, Pastilla, Robusto, Scheherazade's, Tantoko, and Vistula—from highest (best) to lowest (worst). The ranking must meet the following conditions: Pastilla ranks higher than Lautrec but lower than Robusto. Medici ranks higher than Vistula but lower than Tantoko. If Scheherazade's ranks higher than Pastilla, Medici ranks higher than Scheherazade's. If Medici ranks higher than Scheherazade's, Scheherazade's ranks higher than Pastilla. There are no ties.", "question": "If Tantoko is ranked third highest, then which one of the following CANNOT be true?", "options": [ "A) Lautrec ranked fourth highest.", "B) Pastilla is ranked fifth highest.", "C) Medici is ranked fifth highest.", "D) Scheherazade's is ranked fifth highest.", "E) Medici is ranked sixth highest." ], "answer": "B" }, { "id": "ar_lsat_200002_1-G_3_13", "context": "Each of exactly three parks—Jessup, Island, and Hilltop—has at least one attraction. Each attraction is exactly one of five different types: fountain, garden, museum, playground, or theater. Among the three parks at least one of each type of attraction is included. No two attractions of the same type are included in any park. The following conditions must apply: Each of exactly two parks has a garden. Jessup has a museum but not a theater. Island has exactly one attraction. No park has both a playground and a fountain. Each park that has a theater also has a garden. Each park that has a museum also has a playground.", "question": "Which one of the following could be a complete and accurate matching of each park to its attractions?", "options": [ "A) Jessup: garden, museum; Island: playground; Hilltop: garden, theater", "B) Jessup: museum, theater; Island: garden; Hilltop: fountain, garden, playground, theater", "C) Jessup: garden, museum, playground; Island: theater; Hilltop: garden, museum, playground", "D) Jessup: garden, museum, playground; Island: fountain; Hilltop: garden, theater", "E) Jessup: museum, playground; Island: fountain, garden; Hilltop: garden, theater" ], "answer": "D" }, { "id": "ar_lsat_200002_1-G_3_14", "context": "Each of exactly three parks—Jessup, Island, and Hilltop—has at least one attraction. Each attraction is exactly one of five different types: fountain, garden, museum, playground, or theater. Among the three parks at least one of each type of attraction is included. No two attractions of the same type are included in any park. The following conditions must apply: Each of exactly two parks has a garden. Jessup has a museum but not a theater. Island has exactly one attraction. No park has both a playground and a fountain. Each park that has a theater also has a garden. Each park that has a museum also has a playground.", "question": "Which one of the following CANNOT be true?", "options": [ "A) Neither Island nor Hilltop has a museum.", "B) Neither Island nor Hilltop has a playground.", "C) Neither Jessup nor Hilltop has a fountain.", "D) Neither Jessup nor Island has a garden.", "E) Neither Jessup nor Island has a theater." ], "answer": "D" }, { "id": "ar_lsat_200002_1-G_3_15", "context": "Each of exactly three parks—Jessup, Island, and Hilltop—has at least one attraction. Each attraction is exactly one of five different types: fountain, garden, museum, playground, or theater. Among the three parks at least one of each type of attraction is included. No two attractions of the same type are included in any park. The following conditions must apply: Each of exactly two parks has a garden. Jessup has a museum but not a theater. Island has exactly one attraction. No park has both a playground and a fountain. Each park that has a theater also has a garden. Each park that has a museum also has a playground.", "question": "If each of exactly two of the parks has a fountain, then which one of the following could be true?", "options": [ "A) Island does not have a fountain.", "B) Jessup does not have a garden.", "C) Jessup has exactly two attractions.", "D) Hilltop has exactly three attractions.", "E) Hilltop has exactly four attractions." ], "answer": "D" }, { "id": "ar_lsat_200002_1-G_3_16", "context": "Each of exactly three parks—Jessup, Island, and Hilltop—has at least one attraction. Each attraction is exactly one of five different types: fountain, garden, museum, playground, or theater. Among the three parks at least one of each type of attraction is included. No two attractions of the same type are included in any park. The following conditions must apply: Each of exactly two parks has a garden. Jessup has a museum but not a theater. Island has exactly one attraction. No park has both a playground and a fountain. Each park that has a theater also has a garden. Each park that has a museum also has a playground.", "question": "If Jessup has exactly three attractions, then it is possible to determine the exact set of attractions featured by which of the parks?", "options": [ "A) Island only", "B) Jessup only", "C) Island and Hilltop only", "D) Island and Jessup only", "E) Jessup, Island, and Hilltop" ], "answer": "B" }, { "id": "ar_lsat_200002_1-G_3_17", "context": "Each of exactly three parks—Jessup, Island, and Hilltop—has at least one attraction. Each attraction is exactly one of five different types: fountain, garden, museum, playground, or theater. Among the three parks at least one of each type of attraction is included. No two attractions of the same type are included in any park. The following conditions must apply: Each of exactly two parks has a garden. Jessup has a museum but not a theater. Island has exactly one attraction. No park has both a playground and a fountain. Each park that has a theater also has a garden. Each park that has a museum also has a playground.", "question": "If the attraction included in Island is of the same type as an attraction included in Jessup, then which one of the following must be true?", "options": [ "A) Hilltop has a playground.", "B) Island has a museum.", "C) Island has a fountain.", "D) Island has a garden.", "E) Jessup has a garden." ], "answer": "E" }, { "id": "ar_lsat_200002_1-G_3_18", "context": "Each of exactly three parks—Jessup, Island, and Hilltop—has at least one attraction. Each attraction is exactly one of five different types: fountain, garden, museum, playground, or theater. Among the three parks at least one of each type of attraction is included. No two attractions of the same type are included in any park. The following conditions must apply: Each of exactly two parks has a garden. Jessup has a museum but not a theater. Island has exactly one attraction. No park has both a playground and a fountain. Each park that has a theater also has a garden. Each park that has a museum also has a playground.", "question": "Which one of the following could be true?", "options": [ "A) Both Hilltop and Island have a garden.", "B) Both Hilltop and Island have a playground.", "C) Both Hilltop and Island have a theater.", "D) Both Island and Jessup have a fountain.", "E) Both Island and Jessup have a garden." ], "answer": "A" }, { "id": "ar_lsat_200002_1-G_3_19", "context": "Each of exactly three parks—Jessup, Island, and Hilltop—has at least one attraction. Each attraction is exactly one of five different types: fountain, garden, museum, playground, or theater. Among the three parks at least one of each type of attraction is included. No two attractions of the same type are included in any park. The following conditions must apply: Each of exactly two parks has a garden. Jessup has a museum but not a theater. Island has exactly one attraction. No park has both a playground and a fountain. Each park that has a theater also has a garden. Each park that has a museum also has a playground.", "question": "If Hilltop has exactly three attractions, then each of the following could be true EXCEPT:", "options": [ "A) Hilltop has a museum.", "B) Hilltop has a playground.", "C) Island does not have a fountain.", "D) Island has a garden.", "E) Jessup has a garden." ], "answer": "A" }, { "id": "ar_lsat_200002_1-G_4_20", "context": "Each year for the next three years, Dynamic Motors will assemble four new automobile models—the Volante, the Whisper, the Xavier, and the Ziggurat—in exactly five of its factories—F, G, H, I, and K. Each factory will assemble exactly one model in each year. Because of contractual obligations Dynamic will assemble all four models each year according to the following constraints: No model is manufactured in the same factory in consecutive years. Neither Volantes nor Whispers are assembled in any factory in which Xaviers were assembled the previous year. Neither Volantes nor Xaviers are assembled in any factory in which Ziggurats were assembled the previous year. In any year, only one factory assembles Zigurats.", "question": "Which one of the following could be the assembly schedule for factories F and G for the first two years?", "options": [ "A) year 1: Volantes in F, Ziggurats in G year 2: Xaviers in F, Whispers in G", "B) year 1: Whispers in F, Xaviers in G year 2: Whispers in F, Ziggurats in G", "C) year 1: Xaviers in F, Volantes in G year 2: Ziggurats in F, Ziggurats in G", "D) year 1: Xaviers in F, Xaviers in G year 2: Whispers in F, Ziggurats in G", "E) year 1: Ziggurats in F, Whispers in G year 2: Volantes in F, Volantes in G" ], "answer": "A" }, { "id": "ar_lsat_200002_1-G_4_21", "context": "Each year for the next three years, Dynamic Motors will assemble four new automobile models—the Volante, the Whisper, the Xavier, and the Ziggurat—in exactly five of its factories—F, G, H, I, and K. Each factory will assemble exactly one model in each year. Because of contractual obligations Dynamic will assemble all four models each year according to the following constraints: No model is manufactured in the same factory in consecutive years. Neither Volantes nor Whispers are assembled in any factory in which Xaviers were assembled the previous year. Neither Volantes nor Xaviers are assembled in any factory in which Ziggurats were assembled the previous year. In any year, only one factory assembles Zigurats.", "question": "If in the first year Volantes and Whispers are assembled in F and G, respectively, the models that are assembled in the second year in F and G, respectively, could be", "options": [ "A) Volantes and Whispers", "B) Whispers and Volantes", "C) Whispers and Ziggurats", "D) Ziggurats and Whispers", "E) Ziggurats and Ziggurats" ], "answer": "B" }, { "id": "ar_lsat_200002_1-G_4_22", "context": "Each year for the next three years, Dynamic Motors will assemble four new automobile models—the Volante, the Whisper, the Xavier, and the Ziggurat—in exactly five of its factories—F, G, H, I, and K. Each factory will assemble exactly one model in each year. Because of contractual obligations Dynamic will assemble all four models each year according to the following constraints: No model is manufactured in the same factory in consecutive years. Neither Volantes nor Whispers are assembled in any factory in which Xaviers were assembled the previous year. Neither Volantes nor Xaviers are assembled in any factory in which Ziggurats were assembled the previous year. In any year, only one factory assembles Zigurats.", "question": "Which one of the following must be true?", "options": [ "A) Xaviers are assembled in exactly two of the factories in the first year.", "B) Xaviers are assembled in exactly one of the factories in the second year.", "C) Xaviers are assembled in exactly two of the factories in the second year.", "D) Xaviers are assembled in exactly one of the factories in the third year.", "E) Xaviers are assembled in exactly two of the factories in the third year." ], "answer": "B" }, { "id": "ar_lsat_200002_1-G_4_23", "context": "Each year for the next three years, Dynamic Motors will assemble four new automobile models—the Volante, the Whisper, the Xavier, and the Ziggurat—in exactly five of its factories—F, G, H, I, and K. Each factory will assemble exactly one model in each year. Because of contractual obligations Dynamic will assemble all four models each year according to the following constraints: No model is manufactured in the same factory in consecutive years. Neither Volantes nor Whispers are assembled in any factory in which Xaviers were assembled the previous year. Neither Volantes nor Xaviers are assembled in any factory in which Ziggurats were assembled the previous year. In any year, only one factory assembles Zigurats.", "question": "If in the second year Ziggurats are assembled in F, which one of the following must be true?", "options": [ "A) Volantes are assembled in exactly one of the factories in the third year.", "B) Whispers are assembled in exactly one of the factories in the third year.", "C) Volantes are assembled in F in the first year.", "D) Whispers are assembled in F in the first year.", "E) Xaviers are assembled in F in the first year." ], "answer": "E" }, { "id": "ar_lsat_200002_1-G_4_24", "context": "Each year for the next three years, Dynamic Motors will assemble four new automobile models—the Volante, the Whisper, the Xavier, and the Ziggurat—in exactly five of its factories—F, G, H, I, and K. Each factory will assemble exactly one model in each year. Because of contractual obligations Dynamic will assemble all four models each year according to the following constraints: No model is manufactured in the same factory in consecutive years. Neither Volantes nor Whispers are assembled in any factory in which Xaviers were assembled the previous year. Neither Volantes nor Xaviers are assembled in any factory in which Ziggurats were assembled the previous year. In any year, only one factory assembles Zigurats.", "question": "If in the second year Volantes and Whispers are assembled in F and G, respectively, the models that are assembled in the first year in F and G, respectively, could be", "options": [ "A) Whispers and Volantes", "B) Whispers and Xaviers", "C) Xaviers and Volantes", "D) Xaviers and Ziggurats", "E) Ziggurats and Volantes" ], "answer": "A" }, { "id": "ar_lsat_200012_4-G_1_1", "context": "Each of seven television programs—H, J, L, P, Q, S, V—is assigned a different rank: from first through seventh (from most popular to least popular). The ranking is consistent with the following conditions: J and L are each less popular than H. J is more popular than Q. S and V are each less popular than L. P and S are each less popular than Q. S is not seventh.", "question": "Which one of the following could be the order of the programs, from most popular to least popular?", "options": [ "A) J, H, L, Q, V, S, P", "B) H, L, Q, J, S, P, V", "C) H, J, Q, L, S, V, P", "D) H, J, V, L, Q, S, P", "E) H, L, V, J, Q, P, S" ], "answer": "C" }, { "id": "ar_lsat_200012_4-G_1_2", "context": "Each of seven television programs—H, J, L, P, Q, S, V—is assigned a different rank: from first through seventh (from most popular to least popular). The ranking is consistent with the following conditions: J and L are each less popular than H. J is more popular than Q. S and V are each less popular than L. P and S are each less popular than Q. S is not seventh.", "question": "If J is more popular than L, and S is more popular than P, then which one of the following must be true of the ranking?", "options": [ "A) J is second.", "B) J is third.", "C) L is third.", "D) Q is third.", "E) P is seventh." ], "answer": "A" }, { "id": "ar_lsat_200012_4-G_1_3", "context": "Each of seven television programs—H, J, L, P, Q, S, V—is assigned a different rank: from first through seventh (from most popular to least popular). The ranking is consistent with the following conditions: J and L are each less popular than H. J is more popular than Q. S and V are each less popular than L. P and S are each less popular than Q. S is not seventh.", "question": "Which one of the following programs CANNOT be ranked third?", "options": [ "A) L", "B) J", "C) Q", "D) V", "E) P" ], "answer": "E" }, { "id": "ar_lsat_200012_4-G_1_4", "context": "Each of seven television programs—H, J, L, P, Q, S, V—is assigned a different rank: from first through seventh (from most popular to least popular). The ranking is consistent with the following conditions: J and L are each less popular than H. J is more popular than Q. S and V are each less popular than L. P and S are each less popular than Q. S is not seventh.", "question": "If V is more popular than Q and J is less popular than L, then which one of the following could be true of the ranking?", "options": [ "A) P is more popular than S.", "B) S is more popular than V.", "C) P is more popular than L.", "D) J is more popular than V.", "E) Q is more popular than V." ], "answer": "D" }, { "id": "ar_lsat_200012_4-G_1_5", "context": "Each of seven television programs—H, J, L, P, Q, S, V—is assigned a different rank: from first through seventh (from most popular to least popular). The ranking is consistent with the following conditions: J and L are each less popular than H. J is more popular than Q. S and V are each less popular than L. P and S are each less popular than Q. S is not seventh.", "question": "If Q is more popular than L, then each of the following must be true of the ranking EXCEPT:", "options": [ "A) H is first.", "B) L is fourth.", "C) V is not fourth.", "D) J is not third.", "E) Q is third." ], "answer": "B" }, { "id": "ar_lsat_200012_4-G_2_6", "context": "Bird-watchers explore a forest to see which of the following six kinds of birds—grosbeak, harrier, jay, martin, shrike, wren—it contains. The findings are consistent with the following conditions: If harriers are in the forest, then grosbeaks are not. If jays, martins, or both are in the forest, then so are harriers. If wrens are in the forest, then so are grosbeaks. If jays are not in the forest, then shrikes are.", "question": "Which one of the following could be a complete and accurate list of the birds NOT in the forest?", "options": [ "A) jays, shrikes", "B) harriers, grosbeaks", "C) grosbeaks, jays, martins", "D) grosbeaks, martins, shrikes, wrens", "E) martins, shrikes" ], "answer": "D" }, { "id": "ar_lsat_200012_4-G_2_7", "context": "Bird-watchers explore a forest to see which of the following six kinds of birds—grosbeak, harrier, jay, martin, shrike, wren—it contains. The findings are consistent with the following conditions: If harriers are in the forest, then grosbeaks are not. If jays, martins, or both are in the forest, then so are harriers. If wrens are in the forest, then so are grosbeaks. If jays are not in the forest, then shrikes are.", "question": "If both martins and harriers are in the forest, then which one of the following must be true?", "options": [ "A) Shrikes are the only other birds in the forest.", "B) Jays are the only other birds in the forest.", "C) The forest contains neither jays nor shrikes.", "D) There are at least two other kinds of birds in the forest.", "E) There are at most two other kinds of birds in the forest." ], "answer": "E" }, { "id": "ar_lsat_200012_4-G_2_8", "context": "Bird-watchers explore a forest to see which of the following six kinds of birds—grosbeak, harrier, jay, martin, shrike, wren—it contains. The findings are consistent with the following conditions: If harriers are in the forest, then grosbeaks are not. If jays, martins, or both are in the forest, then so are harriers. If wrens are in the forest, then so are grosbeaks. If jays are not in the forest, then shrikes are.", "question": "If jays are not in the forest, then which one of the following must be false?", "options": [ "A) Martins are in the forest.", "B) Harriers are in the forest.", "C) Neither martins nor harriers are in the forest.", "D) Neither martins nor shrikes are in the forest.", "E) Harriers and shrikes are the only birds in the forest." ], "answer": "D" }, { "id": "ar_lsat_200012_4-G_2_9", "context": "Bird-watchers explore a forest to see which of the following six kinds of birds—grosbeak, harrier, jay, martin, shrike, wren—it contains. The findings are consistent with the following conditions: If harriers are in the forest, then grosbeaks are not. If jays, martins, or both are in the forest, then so are harriers. If wrens are in the forest, then so are grosbeaks. If jays are not in the forest, then shrikes are.", "question": "Which one of the following is the maximum number of the six kinds of birds the forest could contain?", "options": [ "A) two", "B) three", "C) four", "D) five", "E) six" ], "answer": "C" }, { "id": "ar_lsat_200012_4-G_2_10", "context": "Bird-watchers explore a forest to see which of the following six kinds of birds—grosbeak, harrier, jay, martin, shrike, wren—it contains. The findings are consistent with the following conditions: If harriers are in the forest, then grosbeaks are not. If jays, martins, or both are in the forest, then so are harriers. If wrens are in the forest, then so are grosbeaks. If jays are not in the forest, then shrikes are.", "question": "Which one of the following pairs of birds CANNOT be among those birds contained in the forest?", "options": [ "A) jays, wrens", "B) jays, shrikes", "C) shrikes, wrens", "D) jays, martins", "E) shrikes, martins" ], "answer": "A" }, { "id": "ar_lsat_200012_4-G_2_11", "context": "Bird-watchers explore a forest to see which of the following six kinds of birds—grosbeak, harrier, jay, martin, shrike, wren—it contains. The findings are consistent with the following conditions: If harriers are in the forest, then grosbeaks are not. If jays, martins, or both are in the forest, then so are harriers. If wrens are in the forest, then so are grosbeaks. If jays are not in the forest, then shrikes are.", "question": "If grosbeaks are in the forest, then which one of the following must be true?", "options": [ "A) Shrikes are in the forest.", "B) Wrens are in the forest.", "C) The forest contains both wrens and shrikes.", "D) At most two kinds of birds are in the forest.", "E) At least three kinds of birds are in the forest." ], "answer": "A" }, { "id": "ar_lsat_200012_4-G_2_12", "context": "Bird-watchers explore a forest to see which of the following six kinds of birds—grosbeak, harrier, jay, martin, shrike, wren—it contains. The findings are consistent with the following conditions: If harriers are in the forest, then grosbeaks are not. If jays, martins, or both are in the forest, then so are harriers. If wrens are in the forest, then so are grosbeaks. If jays are not in the forest, then shrikes are.", "question": "Suppose the condition is added that if shrikes are in the forest, then harriers are not. If all other conditions remain in effect, then which one of the following could be true?", "options": [ "A) The forest contains both jays and shrikes.", "B) The forest contains both wrens and shrikes.", "C) The forest contains both martins and shrikes.", "D) Jays are not in the forest, whereas martins are.", "E) Only two of the six kinds of birds are not in the forest." ], "answer": "B" }, { "id": "ar_lsat_200012_4-G_3_13", "context": "From among ten stones, a jeweler will select six, one for each of six rings. Of the stones, three—F, G, and H—are rubies; three—J, K, and M—are sapphires; and four—W, X, Y, and Z—are topazes. The selection of stones must meet the following restrictions: At least two of the topazes are selected. If exactly two of the sapphires are selected, exactly one of the rubies is selected. If W is selected, neither H nor Z is selected. If M is selected, W is also selected.", "question": "Which one of the following could be the selection of stones?", "options": [ "A) F, G, H, M, X, Y", "B) F, G, J, K, M, W", "C) F, G, J, K, W, X", "D) G, H, J, X, Y, Z", "E) G, H, K, W, X, Z" ], "answer": "D" }, { "id": "ar_lsat_200012_4-G_3_14", "context": "From among ten stones, a jeweler will select six, one for each of six rings. Of the stones, three—F, G, and H—are rubies; three—J, K, and M—are sapphires; and four—W, X, Y, and Z—are topazes. The selection of stones must meet the following restrictions: At least two of the topazes are selected. If exactly two of the sapphires are selected, exactly one of the rubies is selected. If W is selected, neither H nor Z is selected. If M is selected, W is also selected.", "question": "Which one of the following most be true?", "options": [ "A) G is selected.", "B) J is selected.", "C) X is selected.", "D) Of at least one of the three types of stones, exactly one stone is selected.", "E) Of at least one of the three types of stones, exactly three stones are selected." ], "answer": "E" }, { "id": "ar_lsat_200012_4-G_3_15", "context": "From among ten stones, a jeweler will select six, one for each of six rings. Of the stones, three—F, G, and H—are rubies; three—J, K, and M—are sapphires; and four—W, X, Y, and Z—are topazes. The selection of stones must meet the following restrictions: At least two of the topazes are selected. If exactly two of the sapphires are selected, exactly one of the rubies is selected. If W is selected, neither H nor Z is selected. If M is selected, W is also selected.", "question": "If Z is selected, which one of the following could be true?", "options": [ "A) All three of the sapphires are selected.", "B) Both J and M are selected.", "C) Both K and M are selected.", "D) None of the rubies is selected.", "E) None of the sapphires is selected." ], "answer": "E" }, { "id": "ar_lsat_200012_4-G_3_16", "context": "From among ten stones, a jeweler will select six, one for each of six rings. Of the stones, three—F, G, and H—are rubies; three—J, K, and M—are sapphires; and four—W, X, Y, and Z—are topazes. The selection of stones must meet the following restrictions: At least two of the topazes are selected. If exactly two of the sapphires are selected, exactly one of the rubies is selected. If W is selected, neither H nor Z is selected. If M is selected, W is also selected.", "question": "If exactly two rubies are selected, which one of the following must be true?", "options": [ "A) H is selected.", "B) J is selected.", "C) Z is selected.", "D) Exactly one sapphire is selected.", "E) Exactly two topazes are selected." ], "answer": "D" }, { "id": "ar_lsat_200012_4-G_3_17", "context": "From among ten stones, a jeweler will select six, one for each of six rings. Of the stones, three—F, G, and H—are rubies; three—J, K, and M—are sapphires; and four—W, X, Y, and Z—are topazes. The selection of stones must meet the following restrictions: At least two of the topazes are selected. If exactly two of the sapphires are selected, exactly one of the rubies is selected. If W is selected, neither H nor Z is selected. If M is selected, W is also selected.", "question": "Which one of the following must be true?", "options": [ "A) The selection of stones includes at least one ruby.", "B) The selection of stones includes at most two rubies.", "C) The selection of stones includes either F or Z, or both.", "D) The selection of stones includes either X or Y, or both.", "E) The selection of stones includes either X or Z, or both." ], "answer": "D" }, { "id": "ar_lsat_200012_4-G_3_18", "context": "From among ten stones, a jeweler will select six, one for each of six rings. Of the stones, three—F, G, and H—are rubies; three—J, K, and M—are sapphires; and four—W, X, Y, and Z—are topazes. The selection of stones must meet the following restrictions: At least two of the topazes are selected. If exactly two of the sapphires are selected, exactly one of the rubies is selected. If W is selected, neither H nor Z is selected. If M is selected, W is also selected.", "question": "If J and M are the only sapphires selected, which one of the following could be true?", "options": [ "A) F and G are both selected.", "B) F and X are both selected.", "C) G and H are both selected.", "D) G and K are both selected.", "E) Y and Z are both selected." ], "answer": "B" }, { "id": "ar_lsat_200012_4-G_4_19", "context": "There are exactly ten stores and no other buildings on Oak Street. On the north side of the street, from west to east, are stores 1, 3, 5, 7, and 9; on the south side of the street, also from west to east, are stores 2, 4, 6, 8, and 10. The stores on the north side are located directly across the street from those on the south side, facing each other in pairs, as follows: 1 and 2; 3 and 4; 5 and 6; 7 and 8; 9 and 10. Each store is decorated with lights in exactly one of the following colors: green, red, and yellow. The stores have been decorated with lights according to the following conditions: No store is decorated with lights of the same color as those of any store adjacent to it. No store is decorated with lights of the same color as those of the store directly across the street from it. Yellow lights decorate exactly one store on each side of the street. Red lights decorate store 4. Yellow lights decorate store 5.", "question": "Which one of the following could be an accurate list of the colors of the lights that decorate stores 2, 4, 6, 8, and 10, respectively?", "options": [ "A) green, red, green, red, green", "B) green, red, green, yellow, red", "C) green, red, yellow, red, green", "D) yellow, green, red, green, red", "E) yellow, red, green, red, yellow" ], "answer": "B" }, { "id": "ar_lsat_200012_4-G_4_20", "context": "There are exactly ten stores and no other buildings on Oak Street. On the north side of the street, from west to east, are stores 1, 3, 5, 7, and 9; on the south side of the street, also from west to east, are stores 2, 4, 6, 8, and 10. The stores on the north side are located directly across the street from those on the south side, facing each other in pairs, as follows: 1 and 2; 3 and 4; 5 and 6; 7 and 8; 9 and 10. Each store is decorated with lights in exactly one of the following colors: green, red, and yellow. The stores have been decorated with lights according to the following conditions: No store is decorated with lights of the same color as those of any store adjacent to it. No store is decorated with lights of the same color as those of the store directly across the street from it. Yellow lights decorate exactly one store on each side of the street. Red lights decorate store 4. Yellow lights decorate store 5.", "question": "If green lights decorate store 7, then each of the following statements could be false EXCEPT:", "options": [ "A) Green lights decorate store 2.", "B) Green lights decorate store 10.", "C) Red lights decorate store 8.", "D) Red lights decorate store 9.", "E) Yellow lights decorate store 2." ], "answer": "D" }, { "id": "ar_lsat_200012_4-G_4_21", "context": "There are exactly ten stores and no other buildings on Oak Street. On the north side of the street, from west to east, are stores 1, 3, 5, 7, and 9; on the south side of the street, also from west to east, are stores 2, 4, 6, 8, and 10. The stores on the north side are located directly across the street from those on the south side, facing each other in pairs, as follows: 1 and 2; 3 and 4; 5 and 6; 7 and 8; 9 and 10. Each store is decorated with lights in exactly one of the following colors: green, red, and yellow. The stores have been decorated with lights according to the following conditions: No store is decorated with lights of the same color as those of any store adjacent to it. No store is decorated with lights of the same color as those of the store directly across the street from it. Yellow lights decorate exactly one store on each side of the street. Red lights decorate store 4. Yellow lights decorate store 5.", "question": "Which one of the following statements must be true?", "options": [ "A) Green lights decorate store 10.", "B) Red lights decorate store 1.", "C) Red lights decorate store 8.", "D) Yellow lights decorate store 8.", "E) Yellow lights decorate store 10." ], "answer": "B" }, { "id": "ar_lsat_200012_4-G_4_22", "context": "There are exactly ten stores and no other buildings on Oak Street. On the north side of the street, from west to east, are stores 1, 3, 5, 7, and 9; on the south side of the street, also from west to east, are stores 2, 4, 6, 8, and 10. The stores on the north side are located directly across the street from those on the south side, facing each other in pairs, as follows: 1 and 2; 3 and 4; 5 and 6; 7 and 8; 9 and 10. Each store is decorated with lights in exactly one of the following colors: green, red, and yellow. The stores have been decorated with lights according to the following conditions: No store is decorated with lights of the same color as those of any store adjacent to it. No store is decorated with lights of the same color as those of the store directly across the street from it. Yellow lights decorate exactly one store on each side of the street. Red lights decorate store 4. Yellow lights decorate store 5.", "question": "If green lights decorate five stores on the street, then which one of the following statements must be true?", "options": [ "A) Green lights decorate store 9.", "B) Red lights decorate store 2.", "C) Red lights decorate store 7.", "D) Red lights decorate store 10.", "E) Yellow lights decorate store 8." ], "answer": "E" }, { "id": "ar_lsat_200012_4-G_4_23", "context": "There are exactly ten stores and no other buildings on Oak Street. On the north side of the street, from west to east, are stores 1, 3, 5, 7, and 9; on the south side of the street, also from west to east, are stores 2, 4, 6, 8, and 10. The stores on the north side are located directly across the street from those on the south side, facing each other in pairs, as follows: 1 and 2; 3 and 4; 5 and 6; 7 and 8; 9 and 10. Each store is decorated with lights in exactly one of the following colors: green, red, and yellow. The stores have been decorated with lights according to the following conditions: No store is decorated with lights of the same color as those of any store adjacent to it. No store is decorated with lights of the same color as those of the store directly across the street from it. Yellow lights decorate exactly one store on each side of the street. Red lights decorate store 4. Yellow lights decorate store 5.", "question": "Suppose that yellow lights decorate exactly two stores, not just one, on the south side of the street and decorate exactly one store on the north side. If all of the other conditions remain the same, then which one of the following statements must be true?", "options": [ "A) Green lights decorate store 1.", "B) Red lights decorate store 7.", "C) Red lights decorate store 10.", "D) Yellow lights decorate store 2.", "E) Yellow lights decorate store 8." ], "answer": "D" }, { "id": "ar_lsat_200106_4-G_1_1", "context": "Jill, Kurt, Larisa, Manny, and Olga are the clerks in a supermarket. The supermarket has exactly nine parallel aisles, numbered consecutively 1 through 9 from one end of the store to the other. Each aisle is stocked by exactly one clerk and no clerk stocks more than two aisles. Stocking assignments must meet the following conditions: Olga stocks exactly one aisle. Kurt stocks aisle 2. Manny does not stock aisle 1. Jill does not stock consecutive aisles. Kurt stocks the only aisle between the two aisles Manny stocks. Exactly one of Larisa's aisles is an end aisle. Olga's aisle is numbered higher than either of Kurt's aisles, and lower than at least one of Larisa's.", "question": "Which one of the following clerks could stock two consecutive aisles?", "options": [ "A) Jill", "B) Kurt", "C) Larisa", "D) Manny", "E) Olga" ], "answer": "C" }, { "id": "ar_lsat_200106_4-G_1_2", "context": "Jill, Kurt, Larisa, Manny, and Olga are the clerks in a supermarket. The supermarket has exactly nine parallel aisles, numbered consecutively 1 through 9 from one end of the store to the other. Each aisle is stocked by exactly one clerk and no clerk stocks more than two aisles. Stocking assignments must meet the following conditions: Olga stocks exactly one aisle. Kurt stocks aisle 2. Manny does not stock aisle 1. Jill does not stock consecutive aisles. Kurt stocks the only aisle between the two aisles Manny stocks. Exactly one of Larisa's aisles is an end aisle. Olga's aisle is numbered higher than either of Kurt's aisles, and lower than at least one of Larisa's.", "question": "Which one of the following is a pair of clerks, neither of whom could stock aisle 5?", "options": [ "A) Jill and Manny", "B) Kurt and Olga", "C) Larisa and Manny", "D) Kurt and Manny", "E) Larisa and Olga" ], "answer": "E" }, { "id": "ar_lsat_200106_4-G_1_3", "context": "Jill, Kurt, Larisa, Manny, and Olga are the clerks in a supermarket. The supermarket has exactly nine parallel aisles, numbered consecutively 1 through 9 from one end of the store to the other. Each aisle is stocked by exactly one clerk and no clerk stocks more than two aisles. Stocking assignments must meet the following conditions: Olga stocks exactly one aisle. Kurt stocks aisle 2. Manny does not stock aisle 1. Jill does not stock consecutive aisles. Kurt stocks the only aisle between the two aisles Manny stocks. Exactly one of Larisa's aisles is an end aisle. Olga's aisle is numbered higher than either of Kurt's aisles, and lower than at least one of Larisa's.", "question": "Which one of the following is a complete and accurate list of clerks, any one of whom could stock aisle 3?", "options": [ "A) Jill, Kurt, Larisa", "B) Jill, Larisa, Manny", "C) Jill, Larisa, Olga", "D) Jill, Kurt, Larisa, Manny", "E) Jill, Kurt, Larisa, Olga" ], "answer": "B" }, { "id": "ar_lsat_200106_4-G_1_4", "context": "Jill, Kurt, Larisa, Manny, and Olga are the clerks in a supermarket. The supermarket has exactly nine parallel aisles, numbered consecutively 1 through 9 from one end of the store to the other. Each aisle is stocked by exactly one clerk and no clerk stocks more than two aisles. Stocking assignments must meet the following conditions: Olga stocks exactly one aisle. Kurt stocks aisle 2. Manny does not stock aisle 1. Jill does not stock consecutive aisles. Kurt stocks the only aisle between the two aisles Manny stocks. Exactly one of Larisa's aisles is an end aisle. Olga's aisle is numbered higher than either of Kurt's aisles, and lower than at least one of Larisa's.", "question": "Which one of the following is a complete and accurate list of aisles, any one of which could be one of the aisles Manny stocks?", "options": [ "A) 1, 3, 4, 5", "B) 3, 5, 7, 9", "C) 3, 4, 5, 6", "D) 3, 4, 5, 6, 7", "E) 3, 5, 7" ], "answer": "D" }, { "id": "ar_lsat_200106_4-G_1_5", "context": "Jill, Kurt, Larisa, Manny, and Olga are the clerks in a supermarket. The supermarket has exactly nine parallel aisles, numbered consecutively 1 through 9 from one end of the store to the other. Each aisle is stocked by exactly one clerk and no clerk stocks more than two aisles. Stocking assignments must meet the following conditions: Olga stocks exactly one aisle. Kurt stocks aisle 2. Manny does not stock aisle 1. Jill does not stock consecutive aisles. Kurt stocks the only aisle between the two aisles Manny stocks. Exactly one of Larisa's aisles is an end aisle. Olga's aisle is numbered higher than either of Kurt's aisles, and lower than at least one of Larisa's.", "question": "If Larisa's aisles are separated by the maximum number of aisles that could separate her aisles, which one of the following could be true?", "options": [ "A) Jill stocks aisle 6.", "B) Manny stocks aisle 7.", "C) Both of Jill's aisles are numbered lower than Olga's.", "D) Jill stocks only even-numbered aisles.", "E) Only one clerk stocks a higher numbered aisle than Olga does." ], "answer": "A" }, { "id": "ar_lsat_200106_4-G_1_6", "context": "Jill, Kurt, Larisa, Manny, and Olga are the clerks in a supermarket. The supermarket has exactly nine parallel aisles, numbered consecutively 1 through 9 from one end of the store to the other. Each aisle is stocked by exactly one clerk and no clerk stocks more than two aisles. Stocking assignments must meet the following conditions: Olga stocks exactly one aisle. Kurt stocks aisle 2. Manny does not stock aisle 1. Jill does not stock consecutive aisles. Kurt stocks the only aisle between the two aisles Manny stocks. Exactly one of Larisa's aisles is an end aisle. Olga's aisle is numbered higher than either of Kurt's aisles, and lower than at least one of Larisa's.", "question": "If Jill stocks aisle 3, then which one of the following CANNOT be true?", "options": [ "A) Jill stocks aisle 9.", "B) Kurt stocks aisle 6.", "C) Larisa stocks aisle 4.", "D) Manny stocks aisle 4.", "E) Olga stocks aisle 6." ], "answer": "E" }, { "id": "ar_lsat_200106_4-G_1_7", "context": "Jill, Kurt, Larisa, Manny, and Olga are the clerks in a supermarket. The supermarket has exactly nine parallel aisles, numbered consecutively 1 through 9 from one end of the store to the other. Each aisle is stocked by exactly one clerk and no clerk stocks more than two aisles. Stocking assignments must meet the following conditions: Olga stocks exactly one aisle. Kurt stocks aisle 2. Manny does not stock aisle 1. Jill does not stock consecutive aisles. Kurt stocks the only aisle between the two aisles Manny stocks. Exactly one of Larisa's aisles is an end aisle. Olga's aisle is numbered higher than either of Kurt's aisles, and lower than at least one of Larisa's.", "question": "Suppose that, rather than just one, Larisa stocks both end aisles; all other conditions remaining in effect, which one of the following CANNOT be true?", "options": [ "A) Jill stocks aisle 3.", "B) Olga stocks aisle 6.", "C) Olga stocks the only aisle between the two aisles that Jill stocks.", "D) Kurt stocks only even-numbered aisles.", "E) One of Larisa's aisles is immediately next to Olga's." ], "answer": "B" }, { "id": "ar_lsat_200106_4-G_2_8", "context": "A five-week adult education course consists of exactly five lectures with a different lecture given each week. No lecture is given more than once. Each lecture is delivered by a different speaker. The following conditions are true about the speakers and their lectures: Each speaker lectures on a philosopher in whom he or she specializes. No two speakers lecture on the same philosopher. The first week's speaker specializes in Kant, Locke, and Mill, and no other philosophers. The second week's speaker specializes in Kant, Locke, Mill, and Nietzsche, and no other philosophers. The third week's and fourth week's speakers each specialize in Mill and Nietzsche, and no other philosophers. The fifth week's speaker specializes in Nietzsche, Ockham, and Plato, and no other philosophers.", "question": "Which one of the following statements could be true?", "options": [ "A) The first speaker lectures on Mill.", "B) The second speaker lectures on Mill.", "C) The second speaker lectures on Nietzsche.", "D) The fifth speaker lectures on Nietzsche.", "E) The fifth speaker lectures on Ockham." ], "answer": "E" }, { "id": "ar_lsat_200106_4-G_2_9", "context": "A five-week adult education course consists of exactly five lectures with a different lecture given each week. No lecture is given more than once. Each lecture is delivered by a different speaker. The following conditions are true about the speakers and their lectures: Each speaker lectures on a philosopher in whom he or she specializes. No two speakers lecture on the same philosopher. The first week's speaker specializes in Kant, Locke, and Mill, and no other philosophers. The second week's speaker specializes in Kant, Locke, Mill, and Nietzsche, and no other philosophers. The third week's and fourth week's speakers each specialize in Mill and Nietzsche, and no other philosophers. The fifth week's speaker specializes in Nietzsche, Ockham, and Plato, and no other philosophers.", "question": "What is the maximum possible number of different schedules for the five lectures in which those philosophers who are discussed are discussed in alphabetical order?", "options": [ "A) 2", "B) 3", "C) 4", "D) 5", "E) 6" ], "answer": "A" }, { "id": "ar_lsat_200106_4-G_2_10", "context": "A five-week adult education course consists of exactly five lectures with a different lecture given each week. No lecture is given more than once. Each lecture is delivered by a different speaker. The following conditions are true about the speakers and their lectures: Each speaker lectures on a philosopher in whom he or she specializes. No two speakers lecture on the same philosopher. The first week's speaker specializes in Kant, Locke, and Mill, and no other philosophers. The second week's speaker specializes in Kant, Locke, Mill, and Nietzsche, and no other philosophers. The third week's and fourth week's speakers each specialize in Mill and Nietzsche, and no other philosophers. The fifth week's speaker specializes in Nietzsche, Ockham, and Plato, and no other philosophers.", "question": "Which one of the following, if known, would allow one to determine the entire lecture schedule and identify for each week the philosopher who is lectured on that week?", "options": [ "A) the weeks that Kant, Locke, and Mill are lectured on", "B) the weeks that Kant, Mill, and Nietzsche are lectured on", "C) the weeks that Kant, Mill, and Ockham are lectured on", "D) the weeks that Mill, Nietzsche, and Ockham are lectured on", "E) the weeks that Mill, Nietzsche, and Plato are lectured on" ], "answer": "C" }, { "id": "ar_lsat_200106_4-G_2_11", "context": "A five-week adult education course consists of exactly five lectures with a different lecture given each week. No lecture is given more than once. Each lecture is delivered by a different speaker. The following conditions are true about the speakers and their lectures: Each speaker lectures on a philosopher in whom he or she specializes. No two speakers lecture on the same philosopher. The first week's speaker specializes in Kant, Locke, and Mill, and no other philosophers. The second week's speaker specializes in Kant, Locke, Mill, and Nietzsche, and no other philosophers. The third week's and fourth week's speakers each specialize in Mill and Nietzsche, and no other philosophers. The fifth week's speaker specializes in Nietzsche, Ockham, and Plato, and no other philosophers.", "question": "Assume that, of the six philosophers, Kant and Nietzsche are the only German philosophers, and Locke, Mill, and Ockham are the only British philosophers. Each of the following statements could be true EXCEPT:", "options": [ "A) The first and fourth speakers lecture on British philosophers.", "B) The first and fourth speakers lecture on German philosophers.", "C) The second and third speakers lecture on British philosophers.", "D) The third and fourth speakers lecture on German philosophers.", "E) The fourth and fifth speakers lecture on British philosophers." ], "answer": "D" }, { "id": "ar_lsat_200106_4-G_2_12", "context": "A five-week adult education course consists of exactly five lectures with a different lecture given each week. No lecture is given more than once. Each lecture is delivered by a different speaker. The following conditions are true about the speakers and their lectures: Each speaker lectures on a philosopher in whom he or she specializes. No two speakers lecture on the same philosopher. The first week's speaker specializes in Kant, Locke, and Mill, and no other philosophers. The second week's speaker specializes in Kant, Locke, Mill, and Nietzsche, and no other philosophers. The third week's and fourth week's speakers each specialize in Mill and Nietzsche, and no other philosophers. The fifth week's speaker specializes in Nietzsche, Ockham, and Plato, and no other philosophers.", "question": "Suppose the third speaker were a specialist not only in Mill and Nietzsche, but also in Sartre. If all of the other conditions remained the same, then each of the following could be true EXCEPT:", "options": [ "A) Mill is lectured on in the first lecture and Nietzsche in the fourth.", "B) Mill is lectured on in the second lecture and Nietzsche in the third.", "C) Mill is lectured on in the second lecture and Nietzsche in the fourth.", "D) Mill is lectured on in the fourth lecture and Nietzsche in the fifth.", "E) Nietzsche is lectured on in the second lecture and Mill in the fourth." ], "answer": "B" }, { "id": "ar_lsat_200106_4-G_3_13", "context": "Exactly seven different trains—Quigley, Rockville, Sunnydale, Tilbury, Victoria, Wooster, and York—arrive at Middlebrook Station on Saturday. The following conditions govern their arrivals: The trains arrive one at a time. Either the York or the Wooster arrives fourth. The Sunnydale arrives at some time after the Wooster but at some time before the York. Both the Tilbury and the Victoria arrive at some time after the Rockville. The Tilbury does not arrive next after the Victoria; nor does the Victoria arrive next after the Tilbury.", "question": "Which one of the following could be the order in which the trains arrive, from first to last?", "options": [ "A) Rockville, Tilbury, Victoria, Wooster, Sunnydale, York, Quigley", "B) Rockville, Wooster, Quigley, York, Tilbury, Sunnydale, Victoria", "C) Rockville, Tilbury, Quigley, Wooster, Sunnydale, York, Victoria", "D) Quigley, Rockville, Wooster, Sunnydale, Victoria, York, Tilbury", "E) Tilbury, Rockville, Quigley, Wooster, Sunnydale, York, Victoria" ], "answer": "C" }, { "id": "ar_lsat_200106_4-G_3_14", "context": "Exactly seven different trains—Quigley, Rockville, Sunnydale, Tilbury, Victoria, Wooster, and York—arrive at Middlebrook Station on Saturday. The following conditions govern their arrivals: The trains arrive one at a time. Either the York or the Wooster arrives fourth. The Sunnydale arrives at some time after the Wooster but at some time before the York. Both the Tilbury and the Victoria arrive at some time after the Rockville. The Tilbury does not arrive next after the Victoria; nor does the Victoria arrive next after the Tilbury.", "question": "If the Wooster arrives at some time before the Rockville, then exactly how many different orders are there in which the seven trains could arrive?", "options": [ "A) four", "B) five", "C) six", "D) seven", "E) eight" ], "answer": "A" }, { "id": "ar_lsat_200106_4-G_3_15", "context": "Exactly seven different trains—Quigley, Rockville, Sunnydale, Tilbury, Victoria, Wooster, and York—arrive at Middlebrook Station on Saturday. The following conditions govern their arrivals: The trains arrive one at a time. Either the York or the Wooster arrives fourth. The Sunnydale arrives at some time after the Wooster but at some time before the York. Both the Tilbury and the Victoria arrive at some time after the Rockville. The Tilbury does not arrive next after the Victoria; nor does the Victoria arrive next after the Tilbury.", "question": "Which one of the following must be true?", "options": [ "A) The first train to arrive is the Rockville.", "B) The Quigley arrives at some time before the Sunnydale.", "C) The Rockville arrives at some time before the Wooster.", "D) The Victoria arrives at some time before the York.", "E) The Wooster arrives at some time before the York." ], "answer": "E" }, { "id": "ar_lsat_200106_4-G_3_16", "context": "Exactly seven different trains—Quigley, Rockville, Sunnydale, Tilbury, Victoria, Wooster, and York—arrive at Middlebrook Station on Saturday. The following conditions govern their arrivals: The trains arrive one at a time. Either the York or the Wooster arrives fourth. The Sunnydale arrives at some time after the Wooster but at some time before the York. Both the Tilbury and the Victoria arrive at some time after the Rockville. The Tilbury does not arrive next after the Victoria; nor does the Victoria arrive next after the Tilbury.", "question": "Which one of the following could be true?", "options": [ "A) The Sunnydale is the next train to arrive after the Quigley.", "B) The Rockville is the next train to arrive after the Sunnydale.", "C) The Rockville is the next train to arrive after the Tilbury.", "D) The Quigley is the next train to arrive after the Sunnydale.", "E) The Quigley is the next train to arrive after the Wooster." ], "answer": "B" }, { "id": "ar_lsat_200106_4-G_3_17", "context": "Exactly seven different trains—Quigley, Rockville, Sunnydale, Tilbury, Victoria, Wooster, and York—arrive at Middlebrook Station on Saturday. The following conditions govern their arrivals: The trains arrive one at a time. Either the York or the Wooster arrives fourth. The Sunnydale arrives at some time after the Wooster but at some time before the York. Both the Tilbury and the Victoria arrive at some time after the Rockville. The Tilbury does not arrive next after the Victoria; nor does the Victoria arrive next after the Tilbury.", "question": "If exactly one of the trains arrives after the Wooster but before the York, then which one of the following could be true?", "options": [ "A) The sixth train to arrive is the Sunnydale.", "B) The sixth train to arrive is the Tilbury.", "C) The third train to arrive is the Rockville.", "D) The second train to arrive is the Sunnydale.", "E) The first train to arrive is the Rockville." ], "answer": "E" }, { "id": "ar_lsat_200106_4-G_3_18", "context": "Exactly seven different trains—Quigley, Rockville, Sunnydale, Tilbury, Victoria, Wooster, and York—arrive at Middlebrook Station on Saturday. The following conditions govern their arrivals: The trains arrive one at a time. Either the York or the Wooster arrives fourth. The Sunnydale arrives at some time after the Wooster but at some time before the York. Both the Tilbury and the Victoria arrive at some time after the Rockville. The Tilbury does not arrive next after the Victoria; nor does the Victoria arrive next after the Tilbury.", "question": "If the Quigley arrives at some time before the Rockville, then the Wooster must arrive", "options": [ "A) second", "B) third", "C) fourth", "D) fifth", "E) sixth" ], "answer": "C" }, { "id": "ar_lsat_200106_4-G_4_19", "context": "Each of exactly six doctors—Juarez, Kudrow, Longtree, Nance, Onawa, and Palermo—is at exactly one of two clinics: Souderton or Randsborough. The following conditions must be satisfied: Kudrow is at Randsborough if Juarez is at Souderton. Onawa is at Souderton if Juarez is at Randsborough. If Longtree is at Souderton, then both Nance and Palermo are at Randsborough. If Nance is at Randsborough, then so is Onawa. If Palermo is at Randsborough, then both Kudrow and Onawa are at Souderton.", "question": "Which one of the following could be a complete and accurate list of the doctors that are at Souderton?", "options": [ "A) Juarez, Kudrow, Onawa", "B) Juarez, Nance, Onawa, Palermo", "C) Kudrow, Longtree, Onawa", "D) Nance, Onawa", "E) Nance, Palermo" ], "answer": "B" }, { "id": "ar_lsat_200106_4-G_4_20", "context": "Each of exactly six doctors—Juarez, Kudrow, Longtree, Nance, Onawa, and Palermo—is at exactly one of two clinics: Souderton or Randsborough. The following conditions must be satisfied: Kudrow is at Randsborough if Juarez is at Souderton. Onawa is at Souderton if Juarez is at Randsborough. If Longtree is at Souderton, then both Nance and Palermo are at Randsborough. If Nance is at Randsborough, then so is Onawa. If Palermo is at Randsborough, then both Kudrow and Onawa are at Souderton.", "question": "If Palermo is at Randsborough, then which one of the following must be true?", "options": [ "A) Juarez is at Randsborough.", "B) Kudrow is at Randsborough.", "C) Longtree is at Souderton.", "D) Nance is at Randsborough.", "E) Onawa is at Randsborough." ], "answer": "A" }, { "id": "ar_lsat_200106_4-G_4_21", "context": "Each of exactly six doctors—Juarez, Kudrow, Longtree, Nance, Onawa, and Palermo—is at exactly one of two clinics: Souderton or Randsborough. The following conditions must be satisfied: Kudrow is at Randsborough if Juarez is at Souderton. Onawa is at Souderton if Juarez is at Randsborough. If Longtree is at Souderton, then both Nance and Palermo are at Randsborough. If Nance is at Randsborough, then so is Onawa. If Palermo is at Randsborough, then both Kudrow and Onawa are at Souderton.", "question": "What is the minimum number of doctors that could be at Souderton?", "options": [ "A) zero", "B) one", "C) two", "D) three", "E) four" ], "answer": "C" }, { "id": "ar_lsat_200106_4-G_4_22", "context": "Each of exactly six doctors—Juarez, Kudrow, Longtree, Nance, Onawa, and Palermo—is at exactly one of two clinics: Souderton or Randsborough. The following conditions must be satisfied: Kudrow is at Randsborough if Juarez is at Souderton. Onawa is at Souderton if Juarez is at Randsborough. If Longtree is at Souderton, then both Nance and Palermo are at Randsborough. If Nance is at Randsborough, then so is Onawa. If Palermo is at Randsborough, then both Kudrow and Onawa are at Souderton.", "question": "If Nance and Onawa are at different clinics, which one of the following must be true?", "options": [ "A) Juarez is at Souderton.", "B) Kudrow is at Souderton.", "C) Palermo is at Randsborough.", "D) Four doctors are at Souderton.", "E) Four doctors are at Randsborough." ], "answer": "A" }, { "id": "ar_lsat_200106_4-G_4_23", "context": "Each of exactly six doctors—Juarez, Kudrow, Longtree, Nance, Onawa, and Palermo—is at exactly one of two clinics: Souderton or Randsborough. The following conditions must be satisfied: Kudrow is at Randsborough if Juarez is at Souderton. Onawa is at Souderton if Juarez is at Randsborough. If Longtree is at Souderton, then both Nance and Palermo are at Randsborough. If Nance is at Randsborough, then so is Onawa. If Palermo is at Randsborough, then both Kudrow and Onawa are at Souderton.", "question": "Which one of the following CANNOT be a pair of the doctors at Randsborough?", "options": [ "A) Juarez and Kudrow", "B) Juarez and Palermo", "C) Kudrow and Onawa", "D) Nance and Onawa", "E) Nance and Palermo" ], "answer": "E" }, { "id": "ar_lsat_200106_4-G_4_24", "context": "Each of exactly six doctors—Juarez, Kudrow, Longtree, Nance, Onawa, and Palermo—is at exactly one of two clinics: Souderton or Randsborough. The following conditions must be satisfied: Kudrow is at Randsborough if Juarez is at Souderton. Onawa is at Souderton if Juarez is at Randsborough. If Longtree is at Souderton, then both Nance and Palermo are at Randsborough. If Nance is at Randsborough, then so is Onawa. If Palermo is at Randsborough, then both Kudrow and Onawa are at Souderton.", "question": "If Kudrow is at Souderton, then which one of the following must be true?", "options": [ "A) Juarez is at Souderton.", "B) Nance is at Souderton.", "C) Onawa is at Randsborough.", "D) Palermo is at Souderton.", "E) Palermo is at Randsborough." ], "answer": "B" }, { "id": "ar_lsat_200110_3-G_1_1", "context": "From among eight candidates, four astronauts will be selected for a space flight. Four of the candidates—F, J, K, and L—are experienced astronauts and four—M, N, P, and T—are inexperienced astronauts. F, M, P, and T are geologists whereas J, K, L, and N are radiobiologists. The astronauts must be selected according to the following conditions: Exactly two experienced astronauts and two inexperienced astronauts are selected. Exactly two geologists and two radiobiologists are selected. Either P or L or both are selected.", "question": "Which one of the following is an acceptable selection of astronauts for the space flight?", "options": [ "A) F, J, N, and T", "B) F, L, M, and P", "C) F, M, N, and P", "D) J, L, M, and T", "E) K, L, N, and T" ], "answer": "D" }, { "id": "ar_lsat_200110_3-G_1_2", "context": "From among eight candidates, four astronauts will be selected for a space flight. Four of the candidates—F, J, K, and L—are experienced astronauts and four—M, N, P, and T—are inexperienced astronauts. F, M, P, and T are geologists whereas J, K, L, and N are radiobiologists. The astronauts must be selected according to the following conditions: Exactly two experienced astronauts and two inexperienced astronauts are selected. Exactly two geologists and two radiobiologists are selected. Either P or L or both are selected.", "question": "If F and P are selected for the space flight, the other two astronauts selected must be", "options": [ "A) a radiobiologist who is an experienced astronaut and a radiobiologist who is an inexperienced astronaut", "B) a radiobiologist who is an experienced astronaut and a geologist who is an inexperienced astronaut", "C) a radiobiologist and a geologist, both of whom are experienced astronauts", "D) two radiobiologists, both of whom are experienced astronauts", "E) two radiobiologists, both of whom are inexperienced astronauts" ], "answer": "A" }, { "id": "ar_lsat_200110_3-G_1_3", "context": "From among eight candidates, four astronauts will be selected for a space flight. Four of the candidates—F, J, K, and L—are experienced astronauts and four—M, N, P, and T—are inexperienced astronauts. F, M, P, and T are geologists whereas J, K, L, and N are radiobiologists. The astronauts must be selected according to the following conditions: Exactly two experienced astronauts and two inexperienced astronauts are selected. Exactly two geologists and two radiobiologists are selected. Either P or L or both are selected.", "question": "If F and J are selected for the space flight, which one of the following must also be selected?", "options": [ "A) K", "B) L", "C) M", "D) N", "E) T" ], "answer": "D" }, { "id": "ar_lsat_200110_3-G_1_4", "context": "From among eight candidates, four astronauts will be selected for a space flight. Four of the candidates—F, J, K, and L—are experienced astronauts and four—M, N, P, and T—are inexperienced astronauts. F, M, P, and T are geologists whereas J, K, L, and N are radiobiologists. The astronauts must be selected according to the following conditions: Exactly two experienced astronauts and two inexperienced astronauts are selected. Exactly two geologists and two radiobiologists are selected. Either P or L or both are selected.", "question": "If M and T are selected for the space flight, which one of the following could be, but need not be, selected for the flight?", "options": [ "A) F", "B) J", "C) L", "D) N", "E) P" ], "answer": "B" }, { "id": "ar_lsat_200110_3-G_1_5", "context": "From among eight candidates, four astronauts will be selected for a space flight. Four of the candidates—F, J, K, and L—are experienced astronauts and four—M, N, P, and T—are inexperienced astronauts. F, M, P, and T are geologists whereas J, K, L, and N are radiobiologists. The astronauts must be selected according to the following conditions: Exactly two experienced astronauts and two inexperienced astronauts are selected. Exactly two geologists and two radiobiologists are selected. Either P or L or both are selected.", "question": "If N is selected for the space flight, which one of the following must also be selected?", "options": [ "A) F", "B) J", "C) L", "D) M", "E) T" ], "answer": "A" }, { "id": "ar_lsat_200110_3-G_2_6", "context": "A showroom contains exactly six new cars—T, V, W, X, Y, and Z—each equipped with at least one of the following three options: power windows, leather interior, and sunroof. No car has any other options. The following conditions must apply: V has power windows and a sunroof. W has power windows and a leather interior. W and Y have no options in common. X has more options than W. V and Z have exactly one option in common. T has fewer options than Z.", "question": "For exactly how many of the six cars is it possible to determine exactly which options each one has?", "options": [ "A) two", "B) three", "C) four", "D) five", "E) six" ], "answer": "C" }, { "id": "ar_lsat_200110_3-G_2_7", "context": "A showroom contains exactly six new cars—T, V, W, X, Y, and Z—each equipped with at least one of the following three options: power windows, leather interior, and sunroof. No car has any other options. The following conditions must apply: V has power windows and a sunroof. W has power windows and a leather interior. W and Y have no options in common. X has more options than W. V and Z have exactly one option in common. T has fewer options than Z.", "question": "Which one of the following must be false?", "options": [ "A) Exactly five of the six cars have leather interiors.", "B) Exactly five of the six cars have sunroofs.", "C) Exactly four of the six cars have leather interiors.", "D) Exactly four of the six cars have power windows.", "E) Exactly four of the six cars have sunroofs." ], "answer": "A" }, { "id": "ar_lsat_200110_3-G_2_8", "context": "A showroom contains exactly six new cars—T, V, W, X, Y, and Z—each equipped with at least one of the following three options: power windows, leather interior, and sunroof. No car has any other options. The following conditions must apply: V has power windows and a sunroof. W has power windows and a leather interior. W and Y have no options in common. X has more options than W. V and Z have exactly one option in common. T has fewer options than Z.", "question": "If all the cars that have leather interiors also have power windows, which one of the following must be false?", "options": [ "A) T has power windows.", "B) T has a sunroof.", "C) V has power windows.", "D) Z has power windows.", "E) Z has a sunroof." ], "answer": "E" }, { "id": "ar_lsat_200110_3-G_2_9", "context": "A showroom contains exactly six new cars—T, V, W, X, Y, and Z—each equipped with at least one of the following three options: power windows, leather interior, and sunroof. No car has any other options. The following conditions must apply: V has power windows and a sunroof. W has power windows and a leather interior. W and Y have no options in common. X has more options than W. V and Z have exactly one option in common. T has fewer options than Z.", "question": "If Z has no options in common with T but has at least one option in common with every other car, then which one of the following must be false?", "options": [ "A) T has power windows.", "B) Z has a sunroof.", "C) Exactly four of the six cars have power windows.", "D) Exactly four of the six cars have leather interiors.", "E) Exactly four of the six cars have sunroofs." ], "answer": "D" }, { "id": "ar_lsat_200110_3-G_2_10", "context": "A showroom contains exactly six new cars—T, V, W, X, Y, and Z—each equipped with at least one of the following three options: power windows, leather interior, and sunroof. No car has any other options. The following conditions must apply: V has power windows and a sunroof. W has power windows and a leather interior. W and Y have no options in common. X has more options than W. V and Z have exactly one option in common. T has fewer options than Z.", "question": "Suppose that no two cars have exactly the same options as one another. In that case, each of the following could be true EXCEPT:", "options": [ "A) Exactly three of the six cars have power windows.", "B) Exactly four of the six cars have power windows.", "C) Exactly three of the six cars have sunroofs.", "D) Exactly four of the six cars have sunroofs.", "E) Exactly four of the six cars have leather interiors." ], "answer": "C" }, { "id": "ar_lsat_200110_3-G_2_11", "context": "A showroom contains exactly six new cars—T, V, W, X, Y, and Z—each equipped with at least one of the following three options: power windows, leather interior, and sunroof. No car has any other options. The following conditions must apply: V has power windows and a sunroof. W has power windows and a leather interior. W and Y have no options in common. X has more options than W. V and Z have exactly one option in common. T has fewer options than Z.", "question": "If exactly four of the six cars have leather interiors, and exactly four of the six cars have power windows, then each of the following must be true EXCEPT:", "options": [ "A) T and V have no options in common.", "B) T and Y have no options in common.", "C) T and Z have exactly one option in common.", "D) W and Z have exactly one option in common.", "E) Y and Z have no options in common." ], "answer": "D" }, { "id": "ar_lsat_200110_3-G_2_12", "context": "A showroom contains exactly six new cars—T, V, W, X, Y, and Z—each equipped with at least one of the following three options: power windows, leather interior, and sunroof. No car has any other options. The following conditions must apply: V has power windows and a sunroof. W has power windows and a leather interior. W and Y have no options in common. X has more options than W. V and Z have exactly one option in common. T has fewer options than Z.", "question": "Suppose that the condition requiring that X has more options than W is replaced by a new condition requiring that X and W have exactly two options in common. If all of the other original conditions remain in effect, which one of the following must be false?", "options": [ "A) T and X have no options in common.", "B) V and X have exactly one option in common.", "C) V and X have exactly two options in common.", "D) X and Z have no options in common.", "E) X and Z have exactly two options in common." ], "answer": "D" }, { "id": "ar_lsat_200110_3-G_3_13", "context": "Quentin, Robert, Shiro, Tony, and Umeko are the only members of the Kim family who attend an opera. Each of them sits in a separate seat in either row G or row H, and each sits in a seat numbered 1, 2, or 3. Consecutively numbered seats within each row are adjacent. Each member of the Kim family sits in a seat adjacent to, and in the same row as, at least one other member of the family. Tony and Umeko sit in row H. Shiro and Umeko sit in lower numbered seats than does Tony. Robert sits in the same row as Quentin or Shiro or both. Robert sits in a seat numbered 2.", "question": "Which one of the following statements could be true?", "options": [ "A) Seat G3 is empty.", "B) Seat H2 is empty.", "C) Shiro sits in a seat numbered 3.", "D) Tony sits in a seat numbered 1.", "E) Umeko sits in a seat numbered 3." ], "answer": "A" }, { "id": "ar_lsat_200110_3-G_3_14", "context": "Quentin, Robert, Shiro, Tony, and Umeko are the only members of the Kim family who attend an opera. Each of them sits in a separate seat in either row G or row H, and each sits in a seat numbered 1, 2, or 3. Consecutively numbered seats within each row are adjacent. Each member of the Kim family sits in a seat adjacent to, and in the same row as, at least one other member of the family. Tony and Umeko sit in row H. Shiro and Umeko sit in lower numbered seats than does Tony. Robert sits in the same row as Quentin or Shiro or both. Robert sits in a seat numbered 2.", "question": "Which one of the following statements could be true?", "options": [ "A) Robert sits in row H.", "B) Shiro sits in row H.", "C) Quentin sits in the same row as, and in a seat adjacent to, Shiro.", "D) Robert sits in the same row as, and in a seat adjacent to, Tony.", "E) Robert sits in the same row as, and in a seat adjacent to, Umeko." ], "answer": "B" }, { "id": "ar_lsat_200110_3-G_3_15", "context": "Quentin, Robert, Shiro, Tony, and Umeko are the only members of the Kim family who attend an opera. Each of them sits in a separate seat in either row G or row H, and each sits in a seat numbered 1, 2, or 3. Consecutively numbered seats within each row are adjacent. Each member of the Kim family sits in a seat adjacent to, and in the same row as, at least one other member of the family. Tony and Umeko sit in row H. Shiro and Umeko sit in lower numbered seats than does Tony. Robert sits in the same row as Quentin or Shiro or both. Robert sits in a seat numbered 2.", "question": "If Tony sits in a seat numbered 2, then which one of the following statements could be false?", "options": [ "A) Quentin sits in a seat numbered 3.", "B) Umeko sits in a seat numbered 1.", "C) Quentin sits in the same row as, and in a seat adjacent to, Robert.", "D) Robert sits in the same row as, and in a seat adjacent to, Shiro.", "E) Tony sits in the same row as, and in a seat adjacent to, Umeko." ], "answer": "C" }, { "id": "ar_lsat_200110_3-G_3_16", "context": "Quentin, Robert, Shiro, Tony, and Umeko are the only members of the Kim family who attend an opera. Each of them sits in a separate seat in either row G or row H, and each sits in a seat numbered 1, 2, or 3. Consecutively numbered seats within each row are adjacent. Each member of the Kim family sits in a seat adjacent to, and in the same row as, at least one other member of the family. Tony and Umeko sit in row H. Shiro and Umeko sit in lower numbered seats than does Tony. Robert sits in the same row as Quentin or Shiro or both. Robert sits in a seat numbered 2.", "question": "Considering only the six seats in which members of the Kim family could sit, which one of the following is a complete and accurate list of those seats any one of which could be empty?", "options": [ "A) G1, G3", "B) G3, H1", "C) H1, H3", "D) G1, G3, H1", "E) G1, G3, H1, H3" ], "answer": "E" }, { "id": "ar_lsat_200110_3-G_4_17", "context": "Quentin, Robert, Shiro, Tony, and Umeko are the only members of the Kim family who attend an opera. Each of them sits in a separate seat in either row G or row H, and each sits in a seat numbered 1, 2, or 3. Consecutively numbered seats within each row are adjacent. Each member of the Kim family sits in a seat adjacent to, and in the same row as, at least one other member of the family. Tony and Umeko sit in row H. Shiro and Umeko sit in lower numbered seats than does Tony. Robert sits in the same row as Quentin or Shiro or both. Robert sits in a seat numbered 2.", "question": "Which one of the following is a complete and accurate list of those members of the Kim family any one of whom could sit in seat H2?", "options": [ "A) Quentin", "B) Shiro, Umeko", "C) Robert, Shiro, Umeko", "D) Tony, Shiro, Umeko", "E) Quentin, Shiro, Tony, Umeko" ], "answer": "E" }, { "id": "ar_lsat_200110_3-G_4_18", "context": "Exactly seven professors—Madison, Nilsson, Orozco, Paton, Robinson, Sarkis, and Togo—were hired in the years 1989 through 1995. Each professor has one or more specialities, and any two professors hired in the same year or in consecutive years do not have a specialty in common. The professors were hired according to the following conditions: Madison was hired in 1993, Robinson in 1991. There is at least one specialty that Madison, Orozco, and Togo have in common. Nilsson shares a specialty with Robinson. Paton and Sarkis were each hired at least one year before Madison and at least one year after Nilsson. Orozco, who shares a specialty with Sarkis, was hired in 1990.", "question": "Which one of the following is a complete and accurate list of the professors who could have been hired in the years 1989 through 1991?", "options": [ "A) Nilsson, Orozco, Robinson", "B) Orozco, Robinson, Sarkis", "C) Nilsson, Orozco, Paton, Robinson", "D) Nilsson, Orozco, Paton, Sarkis", "E) Orozco, Paton, Robinson, Sarkis" ], "answer": "C" }, { "id": "ar_lsat_200110_3-G_4_19", "context": "Exactly seven professors—Madison, Nilsson, Orozco, Paton, Robinson, Sarkis, and Togo—were hired in the years 1989 through 1995. Each professor has one or more specialities, and any two professors hired in the same year or in consecutive years do not have a specialty in common. The professors were hired according to the following conditions: Madison was hired in 1993, Robinson in 1991. There is at least one specialty that Madison, Orozco, and Togo have in common. Nilsson shares a specialty with Robinson. Paton and Sarkis were each hired at least one year before Madison and at least one year after Nilsson. Orozco, who shares a specialty with Sarkis, was hired in 1990.", "question": "If exactly one professor was hired in 1991, then which one of the following could be true?", "options": [ "A) Madison and Paton share a specialty.", "B) Robinson and Sarkis share a specialty.", "C) Paton was hired exactly one year after Orozco.", "D) Exactly one professor was hired in 1994.", "E) Exactly two professors were hired in 1993." ], "answer": "A" }, { "id": "ar_lsat_200110_3-G_4_20", "context": "Exactly seven professors—Madison, Nilsson, Orozco, Paton, Robinson, Sarkis, and Togo—were hired in the years 1989 through 1995. Each professor has one or more specialities, and any two professors hired in the same year or in consecutive years do not have a specialty in common. The professors were hired according to the following conditions: Madison was hired in 1993, Robinson in 1991. There is at least one specialty that Madison, Orozco, and Togo have in common. Nilsson shares a specialty with Robinson. Paton and Sarkis were each hired at least one year before Madison and at least one year after Nilsson. Orozco, who shares a specialty with Sarkis, was hired in 1990.", "question": "Which one of the following must be false?", "options": [ "A) Nilsson was hired in 1989.", "B) Paton was hired in 1990.", "C) Paton was hired in 1991.", "D) Sarkis was hired in 1992.", "E) Togo was hired in 1994." ], "answer": "E" }, { "id": "ar_lsat_200110_3-G_4_21", "context": "Exactly seven professors—Madison, Nilsson, Orozco, Paton, Robinson, Sarkis, and Togo—were hired in the years 1989 through 1995. Each professor has one or more specialities, and any two professors hired in the same year or in consecutive years do not have a specialty in common. The professors were hired according to the following conditions: Madison was hired in 1993, Robinson in 1991. There is at least one specialty that Madison, Orozco, and Togo have in common. Nilsson shares a specialty with Robinson. Paton and Sarkis were each hired at least one year before Madison and at least one year after Nilsson. Orozco, who shares a specialty with Sarkis, was hired in 1990.", "question": "Which one of the following must be true?", "options": [ "A) Orozco was hired before Paton.", "B) Paton was hired before Sarkis.", "C) Sarkis was hired before Robinson.", "D) Robinson was hired before Sarkis.", "E) Madison was hired before Sarkis." ], "answer": "D" }, { "id": "ar_lsat_200110_3-G_4_22", "context": "Exactly seven professors—Madison, Nilsson, Orozco, Paton, Robinson, Sarkis, and Togo—were hired in the years 1989 through 1995. Each professor has one or more specialities, and any two professors hired in the same year or in consecutive years do not have a specialty in common. The professors were hired according to the following conditions: Madison was hired in 1993, Robinson in 1991. There is at least one specialty that Madison, Orozco, and Togo have in common. Nilsson shares a specialty with Robinson. Paton and Sarkis were each hired at least one year before Madison and at least one year after Nilsson. Orozco, who shares a specialty with Sarkis, was hired in 1990.", "question": "If exactly two professors were hired in 1992, then which one of the following could be true?", "options": [ "A) Orozco, Paton, and Togo share a specialty.", "B) Madison, Paton, and Togo share a specialty.", "C) Exactly two professors were hired in 1991.", "D) Exactly two professors were hired in 1993.", "E) Paton was hired in 1991." ], "answer": "A" }, { "id": "ar_lsat_200110_3-G_4_23", "context": "Exactly seven professors—Madison, Nilsson, Orozco, Paton, Robinson, Sarkis, and Togo—were hired in the years 1989 through 1995. Each professor has one or more specialities, and any two professors hired in the same year or in consecutive years do not have a specialty in common. The professors were hired according to the following conditions: Madison was hired in 1993, Robinson in 1991. There is at least one specialty that Madison, Orozco, and Togo have in common. Nilsson shares a specialty with Robinson. Paton and Sarkis were each hired at least one year before Madison and at least one year after Nilsson. Orozco, who shares a specialty with Sarkis, was hired in 1990.", "question": "If Paton and Madison have a specialty in common, then which one of the following must be true?", "options": [ "A) Nilsson does not share a specialty with Paton.", "B) Exactly one professor was hired in 1990.", "C) Exactly one professor was hired in 1991.", "D) Exactly two professors were hired in each of two years.", "E) Paton was hired at least one year before Sarkis." ], "answer": "E" }, { "id": "ar_lsat_200112_4-G_1_1", "context": "A fruit stand carries at least one kind of the following kinds of fruit: figs, kiwis, oranges, pears, tangerines, and watermelons. The stand does not carry any other kind of fruit. The selection of fruits the stand carries is consistent with the following conditions: If the stand carries kiwis, then it does not carry pears. If the stand does not carry tangerines, then it carries kiwis. If the stand carries oranges, then it carries both pears and watermelons. If the stand carries watermelons, then it carries figs or tangerines or both.", "question": "Which one of the following could be a complete and accurate list of the kinds of fruit the stand carries?", "options": [ "A) oranges, pears", "B) pears, tangerines", "C) oranges, pears, watermelons", "D) oranges, tangerines, watermelons", "E) kiwis, oranges, pears, watermelons" ], "answer": "B" }, { "id": "ar_lsat_200112_4-G_1_2", "context": "A fruit stand carries at least one kind of the following kinds of fruit: figs, kiwis, oranges, pears, tangerines, and watermelons. The stand does not carry any other kind of fruit. The selection of fruits the stand carries is consistent with the following conditions: If the stand carries kiwis, then it does not carry pears. If the stand does not carry tangerines, then it carries kiwis. If the stand carries oranges, then it carries both pears and watermelons. If the stand carries watermelons, then it carries figs or tangerines or both.", "question": "Which one of the following could be the only kind of fruit the stand carries?", "options": [ "A) figs", "B) oranges", "C) pears", "D) tangerines", "E) watermelons" ], "answer": "D" }, { "id": "ar_lsat_200112_4-G_1_3", "context": "A fruit stand carries at least one kind of the following kinds of fruit: figs, kiwis, oranges, pears, tangerines, and watermelons. The stand does not carry any other kind of fruit. The selection of fruits the stand carries is consistent with the following conditions: If the stand carries kiwis, then it does not carry pears. If the stand does not carry tangerines, then it carries kiwis. If the stand carries oranges, then it carries both pears and watermelons. If the stand carries watermelons, then it carries figs or tangerines or both.", "question": "Which one of the following CANNOT be a complete and accurate list of the kinds of fruit the stand carries?", "options": [ "A) kiwis, tangerines", "B) tangerines, watermelons", "C) figs, kiwis, watermelons", "D) oranges, pears, tangerines, watermelons", "E) figs, kiwis, oranges, pears, watermelons" ], "answer": "E" }, { "id": "ar_lsat_200112_4-G_1_4", "context": "A fruit stand carries at least one kind of the following kinds of fruit: figs, kiwis, oranges, pears, tangerines, and watermelons. The stand does not carry any other kind of fruit. The selection of fruits the stand carries is consistent with the following conditions: If the stand carries kiwis, then it does not carry pears. If the stand does not carry tangerines, then it carries kiwis. If the stand carries oranges, then it carries both pears and watermelons. If the stand carries watermelons, then it carries figs or tangerines or both.", "question": "If the stand carries no watermelons, then which one of the following must be true?", "options": [ "A) The stand carries kiwis.", "B) The stand carries at least two kinds of fruit.", "C) The stand carries at most three kinds of fruit.", "D) The stand carries neither oranges nor pears.", "E) The stand carries neither oranges nor kiwis." ], "answer": "C" }, { "id": "ar_lsat_200112_4-G_1_5", "context": "A fruit stand carries at least one kind of the following kinds of fruit: figs, kiwis, oranges, pears, tangerines, and watermelons. The stand does not carry any other kind of fruit. The selection of fruits the stand carries is consistent with the following conditions: If the stand carries kiwis, then it does not carry pears. If the stand does not carry tangerines, then it carries kiwis. If the stand carries oranges, then it carries both pears and watermelons. If the stand carries watermelons, then it carries figs or tangerines or both.", "question": "If the stand carries watermelons, then which one of the following must be false?", "options": [ "A) The stand does not carry figs.", "B) The stand does not carry tangerines.", "C) The stand does not carry pears.", "D) The stand carries pears but not oranges.", "E) The stand carries pears but not tangerines." ], "answer": "E" }, { "id": "ar_lsat_200112_4-G_1_6", "context": "A fruit stand carries at least one kind of the following kinds of fruit: figs, kiwis, oranges, pears, tangerines, and watermelons. The stand does not carry any other kind of fruit. The selection of fruits the stand carries is consistent with the following conditions: If the stand carries kiwis, then it does not carry pears. If the stand does not carry tangerines, then it carries kiwis. If the stand carries oranges, then it carries both pears and watermelons. If the stand carries watermelons, then it carries figs or tangerines or both.", "question": "If the condition that if the fruit stand does not carry tangerines then it does carry kiwis is suspended, and all other conditions remain in effect, then which one of the following CANNOT be a complete and accurate list of the kinds of fruit the stand carries?", "options": [ "A) pears", "B) figs, pears", "C) oranges, pears, watermelons", "D) figs, pears, watermelons", "E) figs, oranges, pears, watermelons" ], "answer": "C" }, { "id": "ar_lsat_200112_4-G_2_7", "context": "A radio talk show host airs five telephone calls sequentially. The calls, one from each of Felicia, Gwen, Henry, Isaac, and Mel, are each either live or taped (but not both). Two calls are from Vancouver, two are from Seattle, and one is from Kelowna. The following conditions must apply: Isaac's and Mel's calls are the first two calls aired, but not necessarily in that order. The third call aired, from Kelowna, is taped. Both Seattle calls are live. Both Gwen's and Felicia's calls air after Henry's. Neither Mel nor Felicia calls from Seattle.", "question": "Which one of the following could be an accurate list of the calls, listed in the order in which they are aired?", "options": [ "A) Isaac's, Henry's, Felicia's, Mel's, Gwen's", "B) Isaac's, Mel's, Gwen's, Henry's, Felicia's", "C) Mel's, Gwen's, Henry's, Isaac's, Felicia's", "D) Mel's, Isaac's, Gwen's, Henry's, Felicia's", "E) Mel's, Isaac's, Henry's, Felicia's, Gwen's" ], "answer": "E" }, { "id": "ar_lsat_200112_4-G_2_8", "context": "A radio talk show host airs five telephone calls sequentially. The calls, one from each of Felicia, Gwen, Henry, Isaac, and Mel, are each either live or taped (but not both). Two calls are from Vancouver, two are from Seattle, and one is from Kelowna. The following conditions must apply: Isaac's and Mel's calls are the first two calls aired, but not necessarily in that order. The third call aired, from Kelowna, is taped. Both Seattle calls are live. Both Gwen's and Felicia's calls air after Henry's. Neither Mel nor Felicia calls from Seattle.", "question": "Which one of the following could be true?", "options": [ "A) Felicia's call airs fifth.", "B) Gwen's call airs first.", "C) Henry's call airs second.", "D) Isaac's call airs third.", "E) Mel's call airs fifth." ], "answer": "A" }, { "id": "ar_lsat_200112_4-G_2_9", "context": "A radio talk show host airs five telephone calls sequentially. The calls, one from each of Felicia, Gwen, Henry, Isaac, and Mel, are each either live or taped (but not both). Two calls are from Vancouver, two are from Seattle, and one is from Kelowna. The following conditions must apply: Isaac's and Mel's calls are the first two calls aired, but not necessarily in that order. The third call aired, from Kelowna, is taped. Both Seattle calls are live. Both Gwen's and Felicia's calls air after Henry's. Neither Mel nor Felicia calls from Seattle.", "question": "If the first call aired is from Seattle, then which one of the following could be true?", "options": [ "A) Felicia's call is the next call aired after Isaac's.", "B) Henry's call is the next call aired after Felicia's.", "C) Henry's call is the next call aired after Mel's.", "D) Henry's call is the next call aired after Isaac's.", "E) Isaac's call is the next call aired after Mel's." ], "answer": "C" }, { "id": "ar_lsat_200112_4-G_2_10", "context": "A radio talk show host airs five telephone calls sequentially. The calls, one from each of Felicia, Gwen, Henry, Isaac, and Mel, are each either live or taped (but not both). Two calls are from Vancouver, two are from Seattle, and one is from Kelowna. The following conditions must apply: Isaac's and Mel's calls are the first two calls aired, but not necessarily in that order. The third call aired, from Kelowna, is taped. Both Seattle calls are live. Both Gwen's and Felicia's calls air after Henry's. Neither Mel nor Felicia calls from Seattle.", "question": "If a taped call airs first, then which one of the following CANNOT be true?", "options": [ "A) Felicia's call airs fourth.", "B) Gwen's call airs fifth.", "C) A taped call airs second.", "D) A taped call airs third.", "E) A taped call airs fourth." ], "answer": "C" }, { "id": "ar_lsat_200112_4-G_2_11", "context": "A radio talk show host airs five telephone calls sequentially. The calls, one from each of Felicia, Gwen, Henry, Isaac, and Mel, are each either live or taped (but not both). Two calls are from Vancouver, two are from Seattle, and one is from Kelowna. The following conditions must apply: Isaac's and Mel's calls are the first two calls aired, but not necessarily in that order. The third call aired, from Kelowna, is taped. Both Seattle calls are live. Both Gwen's and Felicia's calls air after Henry's. Neither Mel nor Felicia calls from Seattle.", "question": "Which one of the following must be true?", "options": [ "A) Gwen's call is live.", "B) Henry's call is live.", "C) Mel's call is live.", "D) Felicia's call is taped.", "E) Isaac's call is taped." ], "answer": "A" }, { "id": "ar_lsat_200112_4-G_2_12", "context": "A radio talk show host airs five telephone calls sequentially. The calls, one from each of Felicia, Gwen, Henry, Isaac, and Mel, are each either live or taped (but not both). Two calls are from Vancouver, two are from Seattle, and one is from Kelowna. The following conditions must apply: Isaac's and Mel's calls are the first two calls aired, but not necessarily in that order. The third call aired, from Kelowna, is taped. Both Seattle calls are live. Both Gwen's and Felicia's calls air after Henry's. Neither Mel nor Felicia calls from Seattle.", "question": "If no two live calls are aired consecutively and no two taped calls are aired consecutively, then in exactly how many distinct orders could the calls from the five people be aired?", "options": [ "A) one", "B) two", "C) three", "D) four", "E) five" ], "answer": "A" }, { "id": "ar_lsat_200112_4-G_2_13", "context": "A radio talk show host airs five telephone calls sequentially. The calls, one from each of Felicia, Gwen, Henry, Isaac, and Mel, are each either live or taped (but not both). Two calls are from Vancouver, two are from Seattle, and one is from Kelowna. The following conditions must apply: Isaac's and Mel's calls are the first two calls aired, but not necessarily in that order. The third call aired, from Kelowna, is taped. Both Seattle calls are live. Both Gwen's and Felicia's calls air after Henry's. Neither Mel nor Felicia calls from Seattle.", "question": "If a taped call airs second, then which one of the following CANNOT be true?", "options": [ "A) The first call aired is from Seattle.", "B) The first call aired is from Vancouver.", "C) The fourth call aired is from Seattle.", "D) The fifth call aired is from Seattle.", "E) The fifth call aired is from Vancouver." ], "answer": "B" }, { "id": "ar_lsat_200112_4-G_3_14", "context": "Gutierrez, Hoffman, Imamura, Kelly, Lapas, and Moore ride a bus together. Each sits facing forward in a different one of the six seats on the left side of the bus. The seats are in consecutive rows that are numbered 1, 2, and 3 from front to back. Each row has exactly two seats: a window seat and an aisle seat. The following conditions must apply: Hoffman occupies the aisle seat immediately behind Gutierrez's aisle seat. If Moore occupies an aisle seat, Hoffman sits in the same row as Lapas. If Gutierrez sits in the same row as Kelly, Moore occupies the seat immediately and directly behind Imamura's seat. If Kelly occupies a window seat, Moore sits in row 3. If Kelly sits in row 3, Imamura sits in row 1.", "question": "Which one of the following could be true?", "options": [ "A) Imamura sits in row 2, whereas Kelly sits in row 3.", "B) Gutierrez sits in the same row as Kelly, immediately and directly behind Moore.", "C) Gutierrez occupies a window seat in the same row as Lapas.", "D) Moore occupies an aisle seat in the same row as Lapas.", "E) Kelly and Moore both sit in row 3." ], "answer": "E" }, { "id": "ar_lsat_200112_4-G_3_15", "context": "Gutierrez, Hoffman, Imamura, Kelly, Lapas, and Moore ride a bus together. Each sits facing forward in a different one of the six seats on the left side of the bus. The seats are in consecutive rows that are numbered 1, 2, and 3 from front to back. Each row has exactly two seats: a window seat and an aisle seat. The following conditions must apply: Hoffman occupies the aisle seat immediately behind Gutierrez's aisle seat. If Moore occupies an aisle seat, Hoffman sits in the same row as Lapas. If Gutierrez sits in the same row as Kelly, Moore occupies the seat immediately and directly behind Imamura's seat. If Kelly occupies a window seat, Moore sits in row 3. If Kelly sits in row 3, Imamura sits in row 1.", "question": "If Lapas and Kelly each occupy a window seat, then which one of the following could be true?", "options": [ "A) Moore occupies the aisle seat in row 3.", "B) Imamura occupies the window seat in row 3.", "C) Gutierrez sits in the same row as Kelly.", "D) Gutierrez sits in the same row as Moore.", "E) Moore sits in the same row as Lapas." ], "answer": "A" }, { "id": "ar_lsat_200112_4-G_3_16", "context": "Gutierrez, Hoffman, Imamura, Kelly, Lapas, and Moore ride a bus together. Each sits facing forward in a different one of the six seats on the left side of the bus. The seats are in consecutive rows that are numbered 1, 2, and 3 from front to back. Each row has exactly two seats: a window seat and an aisle seat. The following conditions must apply: Hoffman occupies the aisle seat immediately behind Gutierrez's aisle seat. If Moore occupies an aisle seat, Hoffman sits in the same row as Lapas. If Gutierrez sits in the same row as Kelly, Moore occupies the seat immediately and directly behind Imamura's seat. If Kelly occupies a window seat, Moore sits in row 3. If Kelly sits in row 3, Imamura sits in row 1.", "question": "If Moore sits in row 1, then which one of the following must be true?", "options": [ "A) Hoffman sits in row 2.", "B) Imamura sits in row 2.", "C) Imamura sits in row 3.", "D) Kelly sits in row 1.", "E) Lapas sits in row 3." ], "answer": "D" }, { "id": "ar_lsat_200112_4-G_3_17", "context": "Gutierrez, Hoffman, Imamura, Kelly, Lapas, and Moore ride a bus together. Each sits facing forward in a different one of the six seats on the left side of the bus. The seats are in consecutive rows that are numbered 1, 2, and 3 from front to back. Each row has exactly two seats: a window seat and an aisle seat. The following conditions must apply: Hoffman occupies the aisle seat immediately behind Gutierrez's aisle seat. If Moore occupies an aisle seat, Hoffman sits in the same row as Lapas. If Gutierrez sits in the same row as Kelly, Moore occupies the seat immediately and directly behind Imamura's seat. If Kelly occupies a window seat, Moore sits in row 3. If Kelly sits in row 3, Imamura sits in row 1.", "question": "If Kelly occupies the aisle seat in row 3, then each of the following must be true EXCEPT:", "options": [ "A) Gutierrez sits in the same row as Imamura.", "B) Hoffman sits in the same row as Lapas.", "C) Lapas occupies a window seat.", "D) Moore occupies a window seat.", "E) Gutierrez sits in row 1." ], "answer": "B" }, { "id": "ar_lsat_200112_4-G_3_18", "context": "Gutierrez, Hoffman, Imamura, Kelly, Lapas, and Moore ride a bus together. Each sits facing forward in a different one of the six seats on the left side of the bus. The seats are in consecutive rows that are numbered 1, 2, and 3 from front to back. Each row has exactly two seats: a window seat and an aisle seat. The following conditions must apply: Hoffman occupies the aisle seat immediately behind Gutierrez's aisle seat. If Moore occupies an aisle seat, Hoffman sits in the same row as Lapas. If Gutierrez sits in the same row as Kelly, Moore occupies the seat immediately and directly behind Imamura's seat. If Kelly occupies a window seat, Moore sits in row 3. If Kelly sits in row 3, Imamura sits in row 1.", "question": "If neither Gutierrez nor Imamura sits in row 1, then which one of the following could be true?", "options": [ "A) Hoffman sits in row 2.", "B) Kelly sits in row 2.", "C) Moore sits in row 2.", "D) Imamura occupies an aisle seat.", "E) Moore occupies an aisle seat." ], "answer": "C" }, { "id": "ar_lsat_200112_4-G_4_19", "context": "An airline has four flights from New York to Sarasota—flights 1, 2, 3, and 4. On each flight there is exactly one pilot and exactly one co-pilot. The pilots are Fazio, Germond, Kyle, and Lopez; the co-pilots are Reich, Simon, Taylor, and Umlas. Each pilot and co-pilot is assigned to exactly one flight. The flights take off in numerical order. Fazio's flight takes off before Germond's, and at least one other flight takes off between their flights. Kyle is assigned to flight 2. Lopez is assigned to the same flight as Umlas.", "question": "Which one of the following pilot and co-pilot teams could be assigned to flight 1?", "options": [ "A) Fazio and Reich", "B) Fazio and Umlas", "C) Germond and Reich", "D) Germond and Umlas", "E) Lopez and Taylor" ], "answer": "A" }, { "id": "ar_lsat_200112_4-G_4_20", "context": "An airline has four flights from New York to Sarasota—flights 1, 2, 3, and 4. On each flight there is exactly one pilot and exactly one co-pilot. The pilots are Fazio, Germond, Kyle, and Lopez; the co-pilots are Reich, Simon, Taylor, and Umlas. Each pilot and co-pilot is assigned to exactly one flight. The flights take off in numerical order. Fazio's flight takes off before Germond's, and at least one other flight takes off between their flights. Kyle is assigned to flight 2. Lopez is assigned to the same flight as Umlas.", "question": "If Reich's flight is later than Umlas's, which one of the following statements cannot be true?", "options": [ "A) Fazio's flight is earlier than Simon's.", "B) Kyle's flight is earlier than Reich's.", "C) Kyle's flight is earlier than Taylor's.", "D) Simon's flight is earlier than Reich's.", "E) Taylor's flight is earlier than Kyle's." ], "answer": "C" }, { "id": "ar_lsat_200112_4-G_4_21", "context": "An airline has four flights from New York to Sarasota—flights 1, 2, 3, and 4. On each flight there is exactly one pilot and exactly one co-pilot. The pilots are Fazio, Germond, Kyle, and Lopez; the co-pilots are Reich, Simon, Taylor, and Umlas. Each pilot and co-pilot is assigned to exactly one flight. The flights take off in numerical order. Fazio's flight takes off before Germond's, and at least one other flight takes off between their flights. Kyle is assigned to flight 2. Lopez is assigned to the same flight as Umlas.", "question": "If Lopez's flight is earlier than Germond's, which one of the following statements could be false?", "options": [ "A) Fazio's flight is earlier than Umlas's.", "B) Germond is assigned to flight 4.", "C) Either Reich's or Taylor's flight is earlier than Umlas's.", "D) Simon's flight is earlier than Umlas's.", "E) Umlas is assigned to flight 3." ], "answer": "D" }, { "id": "ar_lsat_200112_4-G_4_22", "context": "An airline has four flights from New York to Sarasota—flights 1, 2, 3, and 4. On each flight there is exactly one pilot and exactly one co-pilot. The pilots are Fazio, Germond, Kyle, and Lopez; the co-pilots are Reich, Simon, Taylor, and Umlas. Each pilot and co-pilot is assigned to exactly one flight. The flights take off in numerical order. Fazio's flight takes off before Germond's, and at least one other flight takes off between their flights. Kyle is assigned to flight 2. Lopez is assigned to the same flight as Umlas.", "question": "What is the maximum possible number of different pilot and co-pilot teams, any one of which could be assigned to flight 4?", "options": [ "A) 2", "B) 3", "C) 4", "D) 5", "E) 6" ], "answer": "C" }, { "id": "ar_lsat_200112_4-G_4_23", "context": "An airline has four flights from New York to Sarasota—flights 1, 2, 3, and 4. On each flight there is exactly one pilot and exactly one co-pilot. The pilots are Fazio, Germond, Kyle, and Lopez; the co-pilots are Reich, Simon, Taylor, and Umlas. Each pilot and co-pilot is assigned to exactly one flight. The flights take off in numerical order. Fazio's flight takes off before Germond's, and at least one other flight takes off between their flights. Kyle is assigned to flight 2. Lopez is assigned to the same flight as Umlas.", "question": "If Simon's flight is later than Lopez's, then which one of the following statements could be false?", "options": [ "A) Germond's flight is later than Reich's.", "B) Germond's flight is later than Taylor's.", "C) Lopez's flight is later than Taylor's.", "D) Taylor's flight is later than Reich's.", "E) Umlas's flight is later than Reich's." ], "answer": "D" }, { "id": "ar_lsat_200206_3-G_1_1", "context": "A school has exactly four dormitories that are to be fully occupied—Richards, Tuscarora, Veblen, and Wisteria—each consisting entirely of a North wing and a South wing. The following rules govern assignment of students to dormitory wings: Each wing is assigned only male students or only female students. Exactly three wings have males assigned to them. Richards North and Tuscarora North are assigned females. If a dormitory has males assigned to one of its wings, then its other wing is assigned females. If males are assigned to Veblen South, then Wisteria North is assigned males.", "question": "If females are assigned to Veblen South and Veblen North, then which one of the following could be two other wings that are also assigned females?", "options": [ "A) Richards North and Tuscarora South", "B) Richards South and Wisteria South", "C) Richards South and Tuscarora North", "D) Tuscarora North and Wisteria South", "E) Tuscarora South and Wisteria South" ], "answer": "D" }, { "id": "ar_lsat_200206_3-G_1_2", "context": "A school has exactly four dormitories that are to be fully occupied—Richards, Tuscarora, Veblen, and Wisteria—each consisting entirely of a North wing and a South wing. The following rules govern assignment of students to dormitory wings: Each wing is assigned only male students or only female students. Exactly three wings have males assigned to them. Richards North and Tuscarora North are assigned females. If a dormitory has males assigned to one of its wings, then its other wing is assigned females. If males are assigned to Veblen South, then Wisteria North is assigned males.", "question": "It CANNOT be true that females are assigned to both", "options": [ "A) Richards South and Wisteria South", "B) Richards South and Tuscarora South", "C) Richards South and Veblen North", "D) Tuscarora South and Wisteria South", "E) Veblen North and Wisteria South" ], "answer": "B" }, { "id": "ar_lsat_200206_3-G_1_3", "context": "A school has exactly four dormitories that are to be fully occupied—Richards, Tuscarora, Veblen, and Wisteria—each consisting entirely of a North wing and a South wing. The following rules govern assignment of students to dormitory wings: Each wing is assigned only male students or only female students. Exactly three wings have males assigned to them. Richards North and Tuscarora North are assigned females. If a dormitory has males assigned to one of its wings, then its other wing is assigned females. If males are assigned to Veblen South, then Wisteria North is assigned males.", "question": "If Wisteria North is assigned females, then females must also be assigned to which one of the following?", "options": [ "A) Richards South", "B) Wisteria South", "C) Tuscarora South", "D) Veblen South", "E) Veblen North" ], "answer": "D" }, { "id": "ar_lsat_200206_3-G_1_4", "context": "A school has exactly four dormitories that are to be fully occupied—Richards, Tuscarora, Veblen, and Wisteria—each consisting entirely of a North wing and a South wing. The following rules govern assignment of students to dormitory wings: Each wing is assigned only male students or only female students. Exactly three wings have males assigned to them. Richards North and Tuscarora North are assigned females. If a dormitory has males assigned to one of its wings, then its other wing is assigned females. If males are assigned to Veblen South, then Wisteria North is assigned males.", "question": "If males are assigned to Veblen South, which one of the following is a complete and accurate list of the wings that CANNOT be assigned males?", "options": [ "A) Richards North, Tuscarora North", "B) Richards North, Tuscarora North, Veblen North", "C) Richards North, Tuscarora North, Wisteria South", "D) Richards North, Tuscarora North, Veblen North, Wisteria South", "E) Richards North, Richards South, Tuscarora North, Veblen North, Wisteria South" ], "answer": "D" }, { "id": "ar_lsat_200206_3-G_1_5", "context": "A school has exactly four dormitories that are to be fully occupied—Richards, Tuscarora, Veblen, and Wisteria—each consisting entirely of a North wing and a South wing. The following rules govern assignment of students to dormitory wings: Each wing is assigned only male students or only female students. Exactly three wings have males assigned to them. Richards North and Tuscarora North are assigned females. If a dormitory has males assigned to one of its wings, then its other wing is assigned females. If males are assigned to Veblen South, then Wisteria North is assigned males.", "question": "If Tuscarora South is assigned females, then it could be true that females are assigned to both", "options": [ "A) Richards South and Wisteria North", "B) Richards South and Wisteria South", "C) Veblen North and Wisteria North", "D) Veblen South and Wisteria South", "E) Veblen South and Veblen North" ], "answer": "D" }, { "id": "ar_lsat_200206_3-G_2_6", "context": "In a single day, exactly seven trucks—S, T, U, W, X, Y, and Z—are the only arrivals at a warehouse. No truck arrives at the same time as any other truck, and no truck arrives more than once that day. Each truck is either green or red (but not both). The following conditions apply: No two consecutive arrivals are red. Y arrives at some time before both T and W. Exactly two of the trucks that arrive before Y are red. S is the sixth arrival. Z arrives at some time before U.", "question": "Which one of the following could be the order, from first to last, in which the trucks arrive?", "options": [ "A) X, Z, U, Y, W, S, T", "B) X, Y, Z, U, W, S, T", "C) Z, W, U, T, Y, S, X", "D) Z, U, T, Y, W, S, X", "E) U, Z, Y, T, S, W, X" ], "answer": "A" }, { "id": "ar_lsat_200206_3-G_2_7", "context": "In a single day, exactly seven trucks—S, T, U, W, X, Y, and Z—are the only arrivals at a warehouse. No truck arrives at the same time as any other truck, and no truck arrives more than once that day. Each truck is either green or red (but not both). The following conditions apply: No two consecutive arrivals are red. Y arrives at some time before both T and W. Exactly two of the trucks that arrive before Y are red. S is the sixth arrival. Z arrives at some time before U.", "question": "For which one of the following pairs of trucks is it the case that they CANNOT both be red?", "options": [ "A) S and X", "B) T and S", "C) U and W", "D) W and T", "E) X and Z" ], "answer": "B" }, { "id": "ar_lsat_200206_3-G_2_8", "context": "In a single day, exactly seven trucks—S, T, U, W, X, Y, and Z—are the only arrivals at a warehouse. No truck arrives at the same time as any other truck, and no truck arrives more than once that day. Each truck is either green or red (but not both). The following conditions apply: No two consecutive arrivals are red. Y arrives at some time before both T and W. Exactly two of the trucks that arrive before Y are red. S is the sixth arrival. Z arrives at some time before U.", "question": "If X is the third arrival, then which one of the following trucks must be green?", "options": [ "A) S", "B) T", "C) U", "D) W", "E) Z" ], "answer": "C" }, { "id": "ar_lsat_200206_3-G_2_9", "context": "In a single day, exactly seven trucks—S, T, U, W, X, Y, and Z—are the only arrivals at a warehouse. No truck arrives at the same time as any other truck, and no truck arrives more than once that day. Each truck is either green or red (but not both). The following conditions apply: No two consecutive arrivals are red. Y arrives at some time before both T and W. Exactly two of the trucks that arrive before Y are red. S is the sixth arrival. Z arrives at some time before U.", "question": "If exactly three of the trucks are green, then which one of the following trucks must be green?", "options": [ "A) S", "B) T", "C) U", "D) W", "E) Z" ], "answer": "A" }, { "id": "ar_lsat_200206_3-G_2_10", "context": "In a single day, exactly seven trucks—S, T, U, W, X, Y, and Z—are the only arrivals at a warehouse. No truck arrives at the same time as any other truck, and no truck arrives more than once that day. Each truck is either green or red (but not both). The following conditions apply: No two consecutive arrivals are red. Y arrives at some time before both T and W. Exactly two of the trucks that arrive before Y are red. S is the sixth arrival. Z arrives at some time before U.", "question": "For exactly how many of the seven trucks can one determine exactly how many trucks arrived before it?", "options": [ "A) one", "B) two", "C) three", "D) four", "E) five" ], "answer": "B" }, { "id": "ar_lsat_200206_3-G_2_11", "context": "In a single day, exactly seven trucks—S, T, U, W, X, Y, and Z—are the only arrivals at a warehouse. No truck arrives at the same time as any other truck, and no truck arrives more than once that day. Each truck is either green or red (but not both). The following conditions apply: No two consecutive arrivals are red. Y arrives at some time before both T and W. Exactly two of the trucks that arrive before Y are red. S is the sixth arrival. Z arrives at some time before U.", "question": "Which one of the following pairs of trucks CANNOT arrive consecutively at the warehouse?", "options": [ "A) U and Y", "B) X and Y", "C) Y and T", "D) Y and W", "E) Y and Z" ], "answer": "E" }, { "id": "ar_lsat_200206_3-G_3_12", "context": "A total of six books occupies three small shelves—one on the first shelf, two on the second shelf, and three on the third shelf. Two of the books are grammars—one of Farsi, the other of Hausa. Two others are linguistics monographs—one on phonology, the other on semantics. The remaining two books are novels—one by Vonnegut, the other by Woolf. The books' arrangement is consistent with the following: There is at least one novel on the same shelf as the Farsi grammar. The monographs are not both on the same shelf. The Vonnegut novel is not on the same shelf as either monograph.", "question": "Which one of the following could be an accurate matching of the bookshelves to the books on each of them?", "options": [ "A) first shelf: Hausa grammar second shelf: semantics monograph, Vonnegut novel third shelf: Farsi grammar, phonology monograph, Woolf novel", "B) first shelf: semantics monograph second shelf: Farsi grammar, Vonnegut novel third shelf: Hausa grammar, phonology monograph, Woolf novel", "C) first shelf: Vonnegut novel second shelf: phonology monograph, Farsi grammar third shelf: Hausa grammar, semantics monograph, Woolf novel", "D) first shelf: Woolf novel second shelf: phonology and semantics monographs third shelf: Farsi and Hausa grammars, Vonnegut novel", "E) first shelf: Woolf novel second shelf: Farsi grammar, Vonnegut novel third shelf: Hausa grammar, phonology and semantics monographs" ], "answer": "B" }, { "id": "ar_lsat_200206_3-G_3_13", "context": "A total of six books occupies three small shelves—one on the first shelf, two on the second shelf, and three on the third shelf. Two of the books are grammars—one of Farsi, the other of Hausa. Two others are linguistics monographs—one on phonology, the other on semantics. The remaining two books are novels—one by Vonnegut, the other by Woolf. The books' arrangement is consistent with the following: There is at least one novel on the same shelf as the Farsi grammar. The monographs are not both on the same shelf. The Vonnegut novel is not on the same shelf as either monograph.", "question": "Which one of the following CANNOT be true?", "options": [ "A) A grammar is on the first shelf.", "B) A linguistics monograph is on the same shelf as the Hausa grammar.", "C) A novel is on the first shelf.", "D) The novels are on the same shelf as each other.", "E) Neither linguistics monograph is on the first shelf." ], "answer": "A" }, { "id": "ar_lsat_200206_3-G_3_14", "context": "A total of six books occupies three small shelves—one on the first shelf, two on the second shelf, and three on the third shelf. Two of the books are grammars—one of Farsi, the other of Hausa. Two others are linguistics monographs—one on phonology, the other on semantics. The remaining two books are novels—one by Vonnegut, the other by Woolf. The books' arrangement is consistent with the following: There is at least one novel on the same shelf as the Farsi grammar. The monographs are not both on the same shelf. The Vonnegut novel is not on the same shelf as either monograph.", "question": "Which one of the following must be true?", "options": [ "A) A linguistics monograph and a grammar are on the second shelf.", "B) A novel and a grammar are on the second shelf.", "C) At least one linguistics monograph and at least one grammar are on the third shelf.", "D) At least one novel and at least one grammar are on the third shelf.", "E) At least one novel and at least one linguistics monograph are on the third shelf." ], "answer": "D" }, { "id": "ar_lsat_200206_3-G_3_15", "context": "A total of six books occupies three small shelves—one on the first shelf, two on the second shelf, and three on the third shelf. Two of the books are grammars—one of Farsi, the other of Hausa. Two others are linguistics monographs—one on phonology, the other on semantics. The remaining two books are novels—one by Vonnegut, the other by Woolf. The books' arrangement is consistent with the following: There is at least one novel on the same shelf as the Farsi grammar. The monographs are not both on the same shelf. The Vonnegut novel is not on the same shelf as either monograph.", "question": "If both grammars are on the same shelf, which one of the following could be true?", "options": [ "A) The phonology monograph is on the third shelf.", "B) A novel is on the first shelf.", "C) Both novels are on the second shelf.", "D) The Farsi grammar is on the second shelf.", "E) The phonology monograph is on the first shelf." ], "answer": "E" }, { "id": "ar_lsat_200206_3-G_3_16", "context": "A total of six books occupies three small shelves—one on the first shelf, two on the second shelf, and three on the third shelf. Two of the books are grammars—one of Farsi, the other of Hausa. Two others are linguistics monographs—one on phonology, the other on semantics. The remaining two books are novels—one by Vonnegut, the other by Woolf. The books' arrangement is consistent with the following: There is at least one novel on the same shelf as the Farsi grammar. The monographs are not both on the same shelf. The Vonnegut novel is not on the same shelf as either monograph.", "question": "Which one of the following must be true?", "options": [ "A) A linguistics monograph is on the first shelf.", "B) No more than one novel is on each shelf.", "C) The Farsi grammar is not on the same shelf as the Hausa grammar.", "D) The semantics monograph is not on the same shelf as the Woolf novel.", "E) The Woolf novel is not on the first shelf." ], "answer": "E" }, { "id": "ar_lsat_200206_3-G_3_17", "context": "A total of six books occupies three small shelves—one on the first shelf, two on the second shelf, and three on the third shelf. Two of the books are grammars—one of Farsi, the other of Hausa. Two others are linguistics monographs—one on phonology, the other on semantics. The remaining two books are novels—one by Vonnegut, the other by Woolf. The books' arrangement is consistent with the following: There is at least one novel on the same shelf as the Farsi grammar. The monographs are not both on the same shelf. The Vonnegut novel is not on the same shelf as either monograph.", "question": "If the Farsi grammar is not on the third shelf, which one of the following could be true?", "options": [ "A) The phonology monograph is on the second shelf.", "B) The Hausa grammar is on the second shelf.", "C) The semantics monograph is on the third shelf.", "D) The Vonnegut novel is on the third shelf.", "E) The Woolf novel is on the second shelf." ], "answer": "C" }, { "id": "ar_lsat_200206_3-G_3_18", "context": "A total of six books occupies three small shelves—one on the first shelf, two on the second shelf, and three on the third shelf. Two of the books are grammars—one of Farsi, the other of Hausa. Two others are linguistics monographs—one on phonology, the other on semantics. The remaining two books are novels—one by Vonnegut, the other by Woolf. The books' arrangement is consistent with the following: There is at least one novel on the same shelf as the Farsi grammar. The monographs are not both on the same shelf. The Vonnegut novel is not on the same shelf as either monograph.", "question": "If the Hausa grammar and the phonology monograph are on the same shelf, which one of the following must be true?", "options": [ "A) The phonology monograph is on the third shelf.", "B) The Vonnegut novel is on the second shelf.", "C) The semantics monograph is on the second shelf.", "D) The semantics monograph is on the first shelf.", "E) The Woolf novel is on the third shelf." ], "answer": "E" }, { "id": "ar_lsat_200206_3-G_4_19", "context": "A swim team with exactly five members—Jacobson, Kruger, Lu, Miller, Ortiz—swims a ten-lap relay race. Each team member swims exactly two of the laps: one swims laps 1 and 6, one swims laps 2 and 7, one swims laps 3 and 8, one swims laps 4 and 9, and one swims laps 5 and 10. The following conditions apply: Neither of Kruger's laps is immediately before either of Lu's. Jacobson does not swim lap 9. Ortiz's first lap is after (but not necessarily immediately after) Miller's. At least one of Jacobson's laps is immediately after one of Ortiz's laps.", "question": "Which one of the following could be an accurate list of the swimmers of the first five laps, in order from lap 1 through lap 5?", "options": [ "A) Jacobson, Kruger, Miller, Lu, Ortiz", "B) Kruger, Miller, Ortiz, Jacobson, Lu", "C) Lu, Miller, Jacobson, Kruger, Ortiz", "D) Ortiz, Kruger, Miller, Lu, Jacobson", "E) Miller, Ortiz, Jacobson, Kruger, Lu" ], "answer": "A" }, { "id": "ar_lsat_200206_3-G_4_20", "context": "A swim team with exactly five members—Jacobson, Kruger, Lu, Miller, Ortiz—swims a ten-lap relay race. Each team member swims exactly two of the laps: one swims laps 1 and 6, one swims laps 2 and 7, one swims laps 3 and 8, one swims laps 4 and 9, and one swims laps 5 and 10. The following conditions apply: Neither of Kruger's laps is immediately before either of Lu's. Jacobson does not swim lap 9. Ortiz's first lap is after (but not necessarily immediately after) Miller's. At least one of Jacobson's laps is immediately after one of Ortiz's laps.", "question": "If Jacobson swims lap 8, then for exactly how many of the ten laps can one determine which team member swims the lap?", "options": [ "A) ten", "B) eight", "C) six", "D) four", "E) two" ], "answer": "A" }, { "id": "ar_lsat_200206_3-G_4_21", "context": "A swim team with exactly five members—Jacobson, Kruger, Lu, Miller, Ortiz—swims a ten-lap relay race. Each team member swims exactly two of the laps: one swims laps 1 and 6, one swims laps 2 and 7, one swims laps 3 and 8, one swims laps 4 and 9, and one swims laps 5 and 10. The following conditions apply: Neither of Kruger's laps is immediately before either of Lu's. Jacobson does not swim lap 9. Ortiz's first lap is after (but not necessarily immediately after) Miller's. At least one of Jacobson's laps is immediately after one of Ortiz's laps.", "question": "If Ortiz swims lap 4, then which one of the following could be true?", "options": [ "A) Jacobson swims lap 1.", "B) Jacobson swims lap 3.", "C) Kruger swims lap 5.", "D) Lu swims lap 3.", "E) Miller swims lap 5." ], "answer": "D" }, { "id": "ar_lsat_200206_3-G_4_22", "context": "A swim team with exactly five members—Jacobson, Kruger, Lu, Miller, Ortiz—swims a ten-lap relay race. Each team member swims exactly two of the laps: one swims laps 1 and 6, one swims laps 2 and 7, one swims laps 3 and 8, one swims laps 4 and 9, and one swims laps 5 and 10. The following conditions apply: Neither of Kruger's laps is immediately before either of Lu's. Jacobson does not swim lap 9. Ortiz's first lap is after (but not necessarily immediately after) Miller's. At least one of Jacobson's laps is immediately after one of Ortiz's laps.", "question": "Which one of the following could be true?", "options": [ "A) Jacobson swims lap 4.", "B) Kruger swims lap 5.", "C) Lu swims lap 5.", "D) Miller swims lap 10.", "E) Ortiz swims lap 6." ], "answer": "B" }, { "id": "ar_lsat_200206_3-G_4_23", "context": "A swim team with exactly five members—Jacobson, Kruger, Lu, Miller, Ortiz—swims a ten-lap relay race. Each team member swims exactly two of the laps: one swims laps 1 and 6, one swims laps 2 and 7, one swims laps 3 and 8, one swims laps 4 and 9, and one swims laps 5 and 10. The following conditions apply: Neither of Kruger's laps is immediately before either of Lu's. Jacobson does not swim lap 9. Ortiz's first lap is after (but not necessarily immediately after) Miller's. At least one of Jacobson's laps is immediately after one of Ortiz's laps.", "question": "Jacobson CANNOT swim which one of the following laps?", "options": [ "A) lap 1", "B) lap 2", "C) lap 3", "D) lap 6", "E) lap 10" ], "answer": "B" }, { "id": "ar_lsat_200206_3-G_4_24", "context": "A swim team with exactly five members—Jacobson, Kruger, Lu, Miller, Ortiz—swims a ten-lap relay race. Each team member swims exactly two of the laps: one swims laps 1 and 6, one swims laps 2 and 7, one swims laps 3 and 8, one swims laps 4 and 9, and one swims laps 5 and 10. The following conditions apply: Neither of Kruger's laps is immediately before either of Lu's. Jacobson does not swim lap 9. Ortiz's first lap is after (but not necessarily immediately after) Miller's. At least one of Jacobson's laps is immediately after one of Ortiz's laps.", "question": "Which one of the following could be an accurate list of the swimmers of the last five laps, in order from lap 6 through lap 10?", "options": [ "A) Jacobson, Miller, Kruger, Ortiz, Lu", "B) Kruger, Lu, Miller, Ortiz, Jacobson", "C) Lu, Kruger, Miller, Ortiz, Jacobson", "D) Miller, Kruger, Ortiz, Jacobson, Lu", "E) Ortiz, Jacobson, Kruger, Miller, Lu" ], "answer": "C" }, { "id": "ar_lsat_200210_2-G_1_1", "context": "A car drives into the center ring of a circus and exactly eight clowns—Q, R, S, T, V, W, Y, and Z—get out of the car, one clown at a time. The order in which the clowns get out of the car is consistent with the following conditions: V gets out at some time before both Y and Q. Q gets out at some time after Z. T gets out at some time before V but at some time after R. S gets out at some time after V. R gets out at some time before W.", "question": "Which one of the following could be the order, from first to last, in which the clowns get out of the car?", "options": [ "A) T, Z, V, R, W, Y, S, Q", "B) Z, R, W, Q, T, V, Y, S", "C) R, W, T, V, Q, Z, S, Y", "D) Z, W, R, T, V, Y, Q, S", "E) R, W, T, V, Z, S, Y, Q" ], "answer": "E" }, { "id": "ar_lsat_200210_2-G_1_2", "context": "A car drives into the center ring of a circus and exactly eight clowns—Q, R, S, T, V, W, Y, and Z—get out of the car, one clown at a time. The order in which the clowns get out of the car is consistent with the following conditions: V gets out at some time before both Y and Q. Q gets out at some time after Z. T gets out at some time before V but at some time after R. S gets out at some time after V. R gets out at some time before W.", "question": "Which one of the following could be true?", "options": [ "A) Y is the second clown to get out of the car.", "B) R is the third clown to get out of the car.", "C) Q is the fourth clown to get out of the car.", "D) S is the fifth clown to get out of the car.", "E) V is the sixth clown to get out of the car." ], "answer": "D" }, { "id": "ar_lsat_200210_2-G_1_3", "context": "A car drives into the center ring of a circus and exactly eight clowns—Q, R, S, T, V, W, Y, and Z—get out of the car, one clown at a time. The order in which the clowns get out of the car is consistent with the following conditions: V gets out at some time before both Y and Q. Q gets out at some time after Z. T gets out at some time before V but at some time after R. S gets out at some time after V. R gets out at some time before W.", "question": "If Z is the seventh clown to get out of the car, then which one of the following could be true?", "options": [ "A) R is the second clown to get out of the car.", "B) T is the fourth clown to get out of the car.", "C) W is the fifth clown to get out of the car.", "D) V is the sixth clown to get out of the car.", "E) Y is the eighth clown to get out of the car." ], "answer": "C" }, { "id": "ar_lsat_200210_2-G_1_4", "context": "A car drives into the center ring of a circus and exactly eight clowns—Q, R, S, T, V, W, Y, and Z—get out of the car, one clown at a time. The order in which the clowns get out of the car is consistent with the following conditions: V gets out at some time before both Y and Q. Q gets out at some time after Z. T gets out at some time before V but at some time after R. S gets out at some time after V. R gets out at some time before W.", "question": "If T is the fourth clown to get out of the car, then which one of the following must be true?", "options": [ "A) R is the first clown to get out of the car.", "B) Z is the second clown to get out of the car.", "C) W is the third clown to get out of the car.", "D) V is the fifth clown to get out of the car.", "E) Y is the seventh clown to get out of the car." ], "answer": "D" }, { "id": "ar_lsat_200210_2-G_1_5", "context": "A car drives into the center ring of a circus and exactly eight clowns—Q, R, S, T, V, W, Y, and Z—get out of the car, one clown at a time. The order in which the clowns get out of the car is consistent with the following conditions: V gets out at some time before both Y and Q. Q gets out at some time after Z. T gets out at some time before V but at some time after R. S gets out at some time after V. R gets out at some time before W.", "question": "If Q is the fifth clown to get out of the car, then each of the following could be true EXCEPT:", "options": [ "A) Z is the first clown to get out of the car.", "B) T is the second clown to get out of the car.", "C) V is the third clown to get out of the car.", "D) W is the fourth clown to get out of the car.", "E) Y is the sixth clown to get out of the car." ], "answer": "D" }, { "id": "ar_lsat_200210_2-G_1_6", "context": "A car drives into the center ring of a circus and exactly eight clowns—Q, R, S, T, V, W, Y, and Z—get out of the car, one clown at a time. The order in which the clowns get out of the car is consistent with the following conditions: V gets out at some time before both Y and Q. Q gets out at some time after Z. T gets out at some time before V but at some time after R. S gets out at some time after V. R gets out at some time before W.", "question": "If R is the second clown to get out of the car, which one of the following must be true?", "options": [ "A) S gets out of the car at some time before T does.", "B) T gets out of the car at some time before W does.", "C) W gets out of the car at some time before V does.", "D) Y gets out of the car at some time before Q does.", "E) Z gets out of the car at some time before W does." ], "answer": "E" }, { "id": "ar_lsat_200210_2-G_1_7", "context": "A car drives into the center ring of a circus and exactly eight clowns—Q, R, S, T, V, W, Y, and Z—get out of the car, one clown at a time. The order in which the clowns get out of the car is consistent with the following conditions: V gets out at some time before both Y and Q. Q gets out at some time after Z. T gets out at some time before V but at some time after R. S gets out at some time after V. R gets out at some time before W.", "question": "If V gets out of the car at some time before Z does, then which one of the following could be true?", "options": [ "A) R is the second clown to get out of the car.", "B) T is the fourth clown to get out of the car.", "C) Q is the fourth clown to get out of the car.", "D) V is the fifth clown to get out of the car.", "E) Z is the sixth clown to get out of the car." ], "answer": "E" }, { "id": "ar_lsat_200210_2-G_2_8", "context": "Each of six tasks—harvesting, milling, plowing, spinning, threshing, and weaving—will be demonstrated exactly once at a farm exhibition. No two tasks will be demonstrated concurrently. Three volunteers—Frank, Gladys, and Leslie—will each demonstrate exactly two of the tasks. The tasks must be demonstrated in accordance with the following conditions: Frank demonstrates exactly one task before Gladys demonstrates any of the tasks. Frank performs neither the first nor the last demonstration. Gladys demonstrates neither harvesting nor milling. Leslie demonstrates neither harvesting nor threshing. Milling is the next task demonstrated after threshing is demonstrated.", "question": "Which one of the following is an acceptable list of the volunteers and the tasks each demonstrates, in order from the first to the last demonstration?", "options": [ "A) Frank: weaving; Gladys: threshing; Leslie: milling; Leslie: spinning; Frank: harvesting; Gladys: plowing", "B) Leslie: plowing; Frank: harvesting; Frank: threshing; Leslie: milling; Gladys: spinning; Gladys: weaving", "C) Leslie: plowing; Frank: spinning; Gladys: threshing; Leslie: milling; Frank: harvesting; Gladys: weaving", "D) Leslie: spinning; Leslie: weaving; Frank: plowing; Gladys: harvesting; Frank: threshing; Gladys: milling", "E) Leslie: weaving; Frank: threshing; Gladys: spinning; Leslie: milling; Frank: harvesting; Gladys: plowing" ], "answer": "C" }, { "id": "ar_lsat_200210_2-G_2_9", "context": "Each of six tasks—harvesting, milling, plowing, spinning, threshing, and weaving—will be demonstrated exactly once at a farm exhibition. No two tasks will be demonstrated concurrently. Three volunteers—Frank, Gladys, and Leslie—will each demonstrate exactly two of the tasks. The tasks must be demonstrated in accordance with the following conditions: Frank demonstrates exactly one task before Gladys demonstrates any of the tasks. Frank performs neither the first nor the last demonstration. Gladys demonstrates neither harvesting nor milling. Leslie demonstrates neither harvesting nor threshing. Milling is the next task demonstrated after threshing is demonstrated.", "question": "Which one of the following must be true?", "options": [ "A) Frank demonstrates harvesting.", "B) Frank demonstrates milling.", "C) Frank demonstrates threshing.", "D) Gladys demonstrates plowing.", "E) Gladys demonstrates weaving." ], "answer": "A" }, { "id": "ar_lsat_200210_2-G_2_10", "context": "Each of six tasks—harvesting, milling, plowing, spinning, threshing, and weaving—will be demonstrated exactly once at a farm exhibition. No two tasks will be demonstrated concurrently. Three volunteers—Frank, Gladys, and Leslie—will each demonstrate exactly two of the tasks. The tasks must be demonstrated in accordance with the following conditions: Frank demonstrates exactly one task before Gladys demonstrates any of the tasks. Frank performs neither the first nor the last demonstration. Gladys demonstrates neither harvesting nor milling. Leslie demonstrates neither harvesting nor threshing. Milling is the next task demonstrated after threshing is demonstrated.", "question": "If Leslie performs the fourth demonstration, then harvesting could be the demonstration performed", "options": [ "A) first", "B) second", "C) third", "D) fourth", "E) sixth" ], "answer": "B" }, { "id": "ar_lsat_200210_2-G_2_11", "context": "Each of six tasks—harvesting, milling, plowing, spinning, threshing, and weaving—will be demonstrated exactly once at a farm exhibition. No two tasks will be demonstrated concurrently. Three volunteers—Frank, Gladys, and Leslie—will each demonstrate exactly two of the tasks. The tasks must be demonstrated in accordance with the following conditions: Frank demonstrates exactly one task before Gladys demonstrates any of the tasks. Frank performs neither the first nor the last demonstration. Gladys demonstrates neither harvesting nor milling. Leslie demonstrates neither harvesting nor threshing. Milling is the next task demonstrated after threshing is demonstrated.", "question": "If Gladys demonstrates plowing immediately before Frank demonstrates threshing, which one of the following must be true?", "options": [ "A) Frank demonstrates harvesting for the second demonstration.", "B) Gladys demonstrates spinning for the fifth demonstration.", "C) Leslie demonstrates weaving for the first demonstration.", "D) Gladys performs the fourth demonstration.", "E) Leslie performs the sixth demonstration." ], "answer": "A" }, { "id": "ar_lsat_200210_2-G_2_12", "context": "Each of six tasks—harvesting, milling, plowing, spinning, threshing, and weaving—will be demonstrated exactly once at a farm exhibition. No two tasks will be demonstrated concurrently. Three volunteers—Frank, Gladys, and Leslie—will each demonstrate exactly two of the tasks. The tasks must be demonstrated in accordance with the following conditions: Frank demonstrates exactly one task before Gladys demonstrates any of the tasks. Frank performs neither the first nor the last demonstration. Gladys demonstrates neither harvesting nor milling. Leslie demonstrates neither harvesting nor threshing. Milling is the next task demonstrated after threshing is demonstrated.", "question": "Which one of the following must be true?", "options": [ "A) Frank performs the second demonstration.", "B) Gladys performs the fourth demonstration.", "C) Gladys performs the sixth demonstration.", "D) Leslie performs the first demonstration.", "E) Leslie performs the second demonstration." ], "answer": "D" }, { "id": "ar_lsat_200210_2-G_2_13", "context": "Each of six tasks—harvesting, milling, plowing, spinning, threshing, and weaving—will be demonstrated exactly once at a farm exhibition. No two tasks will be demonstrated concurrently. Three volunteers—Frank, Gladys, and Leslie—will each demonstrate exactly two of the tasks. The tasks must be demonstrated in accordance with the following conditions: Frank demonstrates exactly one task before Gladys demonstrates any of the tasks. Frank performs neither the first nor the last demonstration. Gladys demonstrates neither harvesting nor milling. Leslie demonstrates neither harvesting nor threshing. Milling is the next task demonstrated after threshing is demonstrated.", "question": "Which one of the following could be true?", "options": [ "A) Harvesting is demonstrated first.", "B) Milling is demonstrated second.", "C) Threshing is demonstrated first.", "D) Threshing is demonstrated last.", "E) Weaving is demonstrated first." ], "answer": "E" }, { "id": "ar_lsat_200210_2-G_3_14", "context": "Seven job applicants—Feng, Garcia, Herrera, Ilias, Weiss, Xavier, and Yates—are hired to fill seven new positions at Chroma, Inc. One position is in the management department, three are in the production department, and three are in the sales department. The following conditions must apply: Herrera is hired for a position in the same department as Yates. Feng is hired for a position in a different department from Garcia. If Xavier is hired for a sales position, then Weiss is hired for a production position. Feng is hired for a production position.", "question": "Which one of the following could be a complete and accurate matching of the applicants with the departments in which they were hired?", "options": [ "A) management: Weiss; production: Feng, Herrera, Yates; sales: Garcia, Ilias, Xavier", "B) management: Weiss; production: Garcia, Ilias, Xavier; sales: Feng, Herrera, Yates", "C) management: Xavier; production: Feng, Garcia, Herrera; sales: Ilias, Yates, Weiss", "D) management: Xavier; production: Feng, Herrera, Ilias; sales: Garcia, Weiss, Yates", "E) management: Xavier; production: Feng, Ilias, Weiss; sales: Garcia, Herrera, Yates" ], "answer": "E" }, { "id": "ar_lsat_200210_2-G_3_15", "context": "Seven job applicants—Feng, Garcia, Herrera, Ilias, Weiss, Xavier, and Yates—are hired to fill seven new positions at Chroma, Inc. One position is in the management department, three are in the production department, and three are in the sales department. The following conditions must apply: Herrera is hired for a position in the same department as Yates. Feng is hired for a position in a different department from Garcia. If Xavier is hired for a sales position, then Weiss is hired for a production position. Feng is hired for a production position.", "question": "Which one of the following is a complete and accurate list of the applicants, each of whom CANNOT be hired for a production position?", "options": [ "A) Feng, Ilias, Xavier", "B) Garcia, Herrera, Yates", "C) Herrera, Yates", "D) Garcia", "E) Ilias" ], "answer": "D" }, { "id": "ar_lsat_200210_2-G_3_16", "context": "Seven job applicants—Feng, Garcia, Herrera, Ilias, Weiss, Xavier, and Yates—are hired to fill seven new positions at Chroma, Inc. One position is in the management department, three are in the production department, and three are in the sales department. The following conditions must apply: Herrera is hired for a position in the same department as Yates. Feng is hired for a position in a different department from Garcia. If Xavier is hired for a sales position, then Weiss is hired for a production position. Feng is hired for a production position.", "question": "It can be determined in which department each of the seven applicants is hired if which one of the following statements is true?", "options": [ "A) Feng and Weiss are both hired for production positions.", "B) Garcia and Yates are both hired for sales positions.", "C) Ilias and Weiss are both hired for sales positions.", "D) Ilias and Weiss are both hired for production positions.", "E) Ilias and Xavier are both hired for production positions." ], "answer": "C" }, { "id": "ar_lsat_200210_2-G_3_17", "context": "Seven job applicants—Feng, Garcia, Herrera, Ilias, Weiss, Xavier, and Yates—are hired to fill seven new positions at Chroma, Inc. One position is in the management department, three are in the production department, and three are in the sales department. The following conditions must apply: Herrera is hired for a position in the same department as Yates. Feng is hired for a position in a different department from Garcia. If Xavier is hired for a sales position, then Weiss is hired for a production position. Feng is hired for a production position.", "question": "Each of the following could be an accurate partial list of the applicants hired for sales positions EXCEPT:", "options": [ "A) Garcia, Ilias", "B) Garcia, Xavier", "C) Garcia, Yates", "D) Herrera, Weiss", "E) Herrera, Xavier" ], "answer": "B" }, { "id": "ar_lsat_200210_2-G_3_18", "context": "Seven job applicants—Feng, Garcia, Herrera, Ilias, Weiss, Xavier, and Yates—are hired to fill seven new positions at Chroma, Inc. One position is in the management department, three are in the production department, and three are in the sales department. The following conditions must apply: Herrera is hired for a position in the same department as Yates. Feng is hired for a position in a different department from Garcia. If Xavier is hired for a sales position, then Weiss is hired for a production position. Feng is hired for a production position.", "question": "If Feng is hired for a position in the same department as Xavier, then each of the following could be true EXCEPT:", "options": [ "A) Garcia is hired for a sales position.", "B) Herrera is hired for a production position.", "C) Ilias is hired for a sales position.", "D) Weiss is hired for the management position.", "E) Weiss is hired for a production position." ], "answer": "B" }, { "id": "ar_lsat_200210_2-G_3_19", "context": "Seven job applicants—Feng, Garcia, Herrera, Ilias, Weiss, Xavier, and Yates—are hired to fill seven new positions at Chroma, Inc. One position is in the management department, three are in the production department, and three are in the sales department. The following conditions must apply: Herrera is hired for a position in the same department as Yates. Feng is hired for a position in a different department from Garcia. If Xavier is hired for a sales position, then Weiss is hired for a production position. Feng is hired for a production position.", "question": "If Xavier is not hired for one of the production positions, then which one of the following could be true?", "options": [ "A) Feng and Herrera are both hired for sales positions.", "B) Herrera and Weiss are both hired for sales positions.", "C) Feng and Yates are both hired for production positions.", "D) Garcia and Weiss are both hired for production positions.", "E) Herrera and Weiss are both hired for production positions." ], "answer": "C" }, { "id": "ar_lsat_200210_2-G_4_20", "context": "Musicians perform each of exactly five pieces—Nexus, Onyx, Synchrony, Tailwind, and Virtual—once, and one at a time; the pieces are performed successively (though not necessarily in that order). Each piece is performed with exactly two instruments: Nexus with fiddle and lute, Onyx with harp and mandolin, Synchrony with guitar and harp, Tailwind with fiddle and guitar, and Virtual with lute and mandolin. The following conditions must apply: Each piece shares one instrument with the piece performed immediately before it or after it (or both). Either Nexus or Tailwind is performed second.", "question": "Which one of the following could be the order, from first to last, in which the pieces are performed?", "options": [ "A) Nexus, Synchrony, Onyx, Virtual, Tailwind", "B) Synchrony, Tailwind, Onyx, Nexus, Virtual", "C) Tailwind, Nexus, Onyx, Virtual, Synchrony", "D) Tailwind, Nexus, Synchrony, Onyx, Virtual", "E) Virtual, Nexus, Synchrony, Onyx, Tailwind" ], "answer": "D" }, { "id": "ar_lsat_200210_2-G_4_21", "context": "Musicians perform each of exactly five pieces—Nexus, Onyx, Synchrony, Tailwind, and Virtual—once, and one at a time; the pieces are performed successively (though not necessarily in that order). Each piece is performed with exactly two instruments: Nexus with fiddle and lute, Onyx with harp and mandolin, Synchrony with guitar and harp, Tailwind with fiddle and guitar, and Virtual with lute and mandolin. The following conditions must apply: Each piece shares one instrument with the piece performed immediately before it or after it (or both). Either Nexus or Tailwind is performed second.", "question": "Which one of the following instruments CANNOT be shared by the third and fourth pieces performed?", "options": [ "A) fiddle", "B) guitar", "C) harp", "D) lute", "E) mandolin" ], "answer": "A" }, { "id": "ar_lsat_200210_2-G_4_22", "context": "Musicians perform each of exactly five pieces—Nexus, Onyx, Synchrony, Tailwind, and Virtual—once, and one at a time; the pieces are performed successively (though not necessarily in that order). Each piece is performed with exactly two instruments: Nexus with fiddle and lute, Onyx with harp and mandolin, Synchrony with guitar and harp, Tailwind with fiddle and guitar, and Virtual with lute and mandolin. The following conditions must apply: Each piece shares one instrument with the piece performed immediately before it or after it (or both). Either Nexus or Tailwind is performed second.", "question": "If each piece (except the fifth) shares one instrument with the piece performed immediately after it, then which one of the following could be true?", "options": [ "A) Virtual is performed first.", "B) Synchrony is performed second.", "C) Onyx is performed third.", "D) Nexus is performed fourth.", "E) Tailwind is performed fifth." ], "answer": "A" }, { "id": "ar_lsat_200210_2-G_4_23", "context": "Musicians perform each of exactly five pieces—Nexus, Onyx, Synchrony, Tailwind, and Virtual—once, and one at a time; the pieces are performed successively (though not necessarily in that order). Each piece is performed with exactly two instruments: Nexus with fiddle and lute, Onyx with harp and mandolin, Synchrony with guitar and harp, Tailwind with fiddle and guitar, and Virtual with lute and mandolin. The following conditions must apply: Each piece shares one instrument with the piece performed immediately before it or after it (or both). Either Nexus or Tailwind is performed second.", "question": "Each of the following could be the piece performed first EXCEPT:", "options": [ "A) Nexus", "B) Onyx", "C) Synchrony", "D) Tailwind", "E) Virtual" ], "answer": "B" }, { "id": "ar_lsat_200210_2-G_4_24", "context": "Musicians perform each of exactly five pieces—Nexus, Onyx, Synchrony, Tailwind, and Virtual—once, and one at a time; the pieces are performed successively (though not necessarily in that order). Each piece is performed with exactly two instruments: Nexus with fiddle and lute, Onyx with harp and mandolin, Synchrony with guitar and harp, Tailwind with fiddle and guitar, and Virtual with lute and mandolin. The following conditions must apply: Each piece shares one instrument with the piece performed immediately before it or after it (or both). Either Nexus or Tailwind is performed second.", "question": "If Synchrony is performed fifth, then which one of the following could be true?", "options": [ "A) Nexus is performed third.", "B) Onyx is performed third.", "C) Tailwind is performed fourth.", "D) Virtual is performed first.", "E) Virtual is performed second." ], "answer": "D" }, { "id": "ar_lsat_200212_1-G_1_1", "context": "Eight files will be ordered from first to eighth. Each file falls into exactly one of three categories: red files (H, M, O), green files (P, V, X), or yellow files (T, Z). The files must be ordered according to the following conditions: H must be placed into some position before O, but H cannot immediately precede O. X must be placed into some position before V. X and V must be separated by the same number of files as separate H and O. Z must immediately precede M. The first file cannot be a red file.", "question": "Which one of the following is an acceptable ordering of the files from first to eighth?", "options": [ "A) H X O V Z M P T", "B) P M Z H X O V T", "C) P Z M H O T X V", "D) X Z M V H T P O", "E) Z M H P O X V T" ], "answer": "D" }, { "id": "ar_lsat_200212_1-G_1_2", "context": "Eight files will be ordered from first to eighth. Each file falls into exactly one of three categories: red files (H, M, O), green files (P, V, X), or yellow files (T, Z). The files must be ordered according to the following conditions: H must be placed into some position before O, but H cannot immediately precede O. X must be placed into some position before V. X and V must be separated by the same number of files as separate H and O. Z must immediately precede M. The first file cannot be a red file.", "question": "The largest possible number of files that can separate Z from H is", "options": [ "A) two", "B) three", "C) four", "D) five", "E) six" ], "answer": "C" }, { "id": "ar_lsat_200212_1-G_1_3", "context": "Eight files will be ordered from first to eighth. Each file falls into exactly one of three categories: red files (H, M, O), green files (P, V, X), or yellow files (T, Z). The files must be ordered according to the following conditions: H must be placed into some position before O, but H cannot immediately precede O. X must be placed into some position before V. X and V must be separated by the same number of files as separate H and O. Z must immediately precede M. The first file cannot be a red file.", "question": "If each of the three red files is immediately followed by a green file, which one of the following must be a yellow file?", "options": [ "A) the first", "B) the second", "C) the third", "D) the fourth", "E) the fifth" ], "answer": "A" }, { "id": "ar_lsat_200212_1-G_1_4", "context": "Eight files will be ordered from first to eighth. Each file falls into exactly one of three categories: red files (H, M, O), green files (P, V, X), or yellow files (T, Z). The files must be ordered according to the following conditions: H must be placed into some position before O, but H cannot immediately precede O. X must be placed into some position before V. X and V must be separated by the same number of files as separate H and O. Z must immediately precede M. The first file cannot be a red file.", "question": "The largest possible number of files that can separate X from V is", "options": [ "A) three", "B) four", "C) five", "D) six", "E) seven" ], "answer": "C" }, { "id": "ar_lsat_200212_1-G_1_5", "context": "Eight files will be ordered from first to eighth. Each file falls into exactly one of three categories: red files (H, M, O), green files (P, V, X), or yellow files (T, Z). The files must be ordered according to the following conditions: H must be placed into some position before O, but H cannot immediately precede O. X must be placed into some position before V. X and V must be separated by the same number of files as separate H and O. Z must immediately precede M. The first file cannot be a red file.", "question": "If Z is placed in the fifth position, then which one of the following is a complete and accurate list of the positions, any one of which could be H's position?", "options": [ "A) first, third, fourth", "B) first, second, third", "C) second, third, fourth", "D) second, third, fourth, sixth", "E) third, fourth, sixth, seventh" ], "answer": "C" }, { "id": "ar_lsat_200212_1-G_2_6", "context": "Exactly three employees of Capital Enterprises—Maria, Suki, and Tate—attend a three-day conference together. Each day, there are exactly three sessions on the three topics of the conference—one on hiring, one on investing, and one on regulations. The following rules govern the conference: Each conference participant attends exactly two sessions, which are on different topics and on different days. Neither Maria nor Suki attends any session on investing. Tate does not attend any session on the third day. At most two Capital employees attend any given session together.", "question": "What is the maximum number of sessions attended by at least one Capital employee?", "options": [ "A) three", "B) four", "C) five", "D) six", "E) seven" ], "answer": "D" }, { "id": "ar_lsat_200212_1-G_2_7", "context": "Exactly three employees of Capital Enterprises—Maria, Suki, and Tate—attend a three-day conference together. Each day, there are exactly three sessions on the three topics of the conference—one on hiring, one on investing, and one on regulations. The following rules govern the conference: Each conference participant attends exactly two sessions, which are on different topics and on different days. Neither Maria nor Suki attends any session on investing. Tate does not attend any session on the third day. At most two Capital employees attend any given session together.", "question": "Which one of the following must be false?", "options": [ "A) Maria attends sessions only on the first two days.", "B) Suki attends sessions only on the last two days.", "C) Exactly two Capital employees attend a session together on the second day.", "D) Exactly one session is attended by one or more Capital employees on the second day.", "E) Exactly three sessions are attended by one or more Capital employees on the third day." ], "answer": "E" }, { "id": "ar_lsat_200212_1-G_2_8", "context": "Exactly three employees of Capital Enterprises—Maria, Suki, and Tate—attend a three-day conference together. Each day, there are exactly three sessions on the three topics of the conference—one on hiring, one on investing, and one on regulations. The following rules govern the conference: Each conference participant attends exactly two sessions, which are on different topics and on different days. Neither Maria nor Suki attends any session on investing. Tate does not attend any session on the third day. At most two Capital employees attend any given session together.", "question": "If exactly two sessions on the third day are attended by one or more Capital employees, then which one of the following must be true?", "options": [ "A) Exactly two sessions on the first day are attended by one or more Capital employees.", "B) Exactly two sessions on the second day are attended by one or more Capital employees.", "C) Maria and Suki do not attend any session together.", "D) Maria and Tate do not attend any session together.", "E) Tate attends a session on investing." ], "answer": "C" }, { "id": "ar_lsat_200212_1-G_2_9", "context": "Exactly three employees of Capital Enterprises—Maria, Suki, and Tate—attend a three-day conference together. Each day, there are exactly three sessions on the three topics of the conference—one on hiring, one on investing, and one on regulations. The following rules govern the conference: Each conference participant attends exactly two sessions, which are on different topics and on different days. Neither Maria nor Suki attends any session on investing. Tate does not attend any session on the third day. At most two Capital employees attend any given session together.", "question": "Each of the following is possible EXCEPT:", "options": [ "A) Every session attended by at least one Capital employee is attended by exactly one Capital employee.", "B) Every session attended by at least one Capital employee is attended by exactly two Capital employees.", "C) Every session attended by Maria is also attended by Suki.", "D) Every session attended by Suki is also attended by Tate.", "E) Every session attended by Tate is also attended by Maria." ], "answer": "B" }, { "id": "ar_lsat_200212_1-G_2_10", "context": "Exactly three employees of Capital Enterprises—Maria, Suki, and Tate—attend a three-day conference together. Each day, there are exactly three sessions on the three topics of the conference—one on hiring, one on investing, and one on regulations. The following rules govern the conference: Each conference participant attends exactly two sessions, which are on different topics and on different days. Neither Maria nor Suki attends any session on investing. Tate does not attend any session on the third day. At most two Capital employees attend any given session together.", "question": "If all three sessions on the first day are attended by one or more Capital employees, then which one of the following must be false?", "options": [ "A) Maria and Suki attend a session together on the third day.", "B) Suki and Tate attend a session together on the second day.", "C) Maria attends a session on hiring on the second day.", "D) Suki attends a session on regulations on the third day.", "E) Tate attends a session on investing on the first day." ], "answer": "A" }, { "id": "ar_lsat_200212_1-G_2_11", "context": "Exactly three employees of Capital Enterprises—Maria, Suki, and Tate—attend a three-day conference together. Each day, there are exactly three sessions on the three topics of the conference—one on hiring, one on investing, and one on regulations. The following rules govern the conference: Each conference participant attends exactly two sessions, which are on different topics and on different days. Neither Maria nor Suki attends any session on investing. Tate does not attend any session on the third day. At most two Capital employees attend any given session together.", "question": "If Maria and Tate are the only Capital employees to attend a session on the first day, then each of the following could be true EXCEPT:", "options": [ "A) Maria and Suki attend exactly two sessions together.", "B) Maria and Tate attend exactly two sessions together.", "C) Suki and Tate attend exactly one session together.", "D) Maria attends a session on regulations on the second day.", "E) Tate attends a session on hiring on the second day." ], "answer": "A" }, { "id": "ar_lsat_200212_1-G_3_12", "context": "Of the five Pohl children—Sara, Theo, Uma, Will, and Zoe—three are left-handed and two are right-handed. Each of the five children was born in a different one of seven calendar years, 1990 through 1996. The following conditions apply: No two left-handed children were born in consecutive years. No two right-handed children were born in consecutive years. Sara, who is left-handed, was born before Uma. Zoe was born before both Theo and Will. A left-handed child was born in 1991. Uma, who is right-handed, was born in 1993.", "question": "Which one of the following could be an accurate matching of each Pohl child with the year in which that child was born?", "options": [ "A) Sara: 1990; Zoe: 1992; Uma: 1993; Will: 1994; and Theo: 1995", "B) Sara: 1991; Uma: 1993; Theo: 1994; Zoe: 1995; and Will: 1996", "C) Zoe: 1990; Sara: 1991; Uma: 1992; Theo: 1994; and Will: 1995", "D) Zoe: 1990; Sara: 1991; Uma: 1993; Theo: 1994; and Will: 1995", "E) Zoe: 1990; Sara: 1991; Uma: 1993; Theo: 1994; and Will: 1996" ], "answer": "E" }, { "id": "ar_lsat_200212_1-G_3_13", "context": "Of the five Pohl children—Sara, Theo, Uma, Will, and Zoe—three are left-handed and two are right-handed. Each of the five children was born in a different one of seven calendar years, 1990 through 1996. The following conditions apply: No two left-handed children were born in consecutive years. No two right-handed children were born in consecutive years. Sara, who is left-handed, was born before Uma. Zoe was born before both Theo and Will. A left-handed child was born in 1991. Uma, who is right-handed, was born in 1993.", "question": "If Sara was born before Zoe was born, then which one of the following statements CANNOT be true?", "options": [ "A) Will is left-handed.", "B) Zoe is left-handed.", "C) Theo was born after Will was born.", "D) Uma was born after Zoe was born.", "E) No child was born in 1990." ], "answer": "D" }, { "id": "ar_lsat_200212_1-G_3_14", "context": "Of the five Pohl children—Sara, Theo, Uma, Will, and Zoe—three are left-handed and two are right-handed. Each of the five children was born in a different one of seven calendar years, 1990 through 1996. The following conditions apply: No two left-handed children were born in consecutive years. No two right-handed children were born in consecutive years. Sara, who is left-handed, was born before Uma. Zoe was born before both Theo and Will. A left-handed child was born in 1991. Uma, who is right-handed, was born in 1993.", "question": "Which one of the following must be false?", "options": [ "A) None of the children was born in 1990, nor was a child born in 1992.", "B) None of the children was born in 1992, nor was a child born in 1995.", "C) None of the children was born in 1994, nor was a child born in 1996.", "D) One of the children was born in 1990, and another in 1993.", "E) One of the children was born in 1993, and another in 1995." ], "answer": "C" }, { "id": "ar_lsat_200212_1-G_3_15", "context": "Of the five Pohl children—Sara, Theo, Uma, Will, and Zoe—three are left-handed and two are right-handed. Each of the five children was born in a different one of seven calendar years, 1990 through 1996. The following conditions apply: No two left-handed children were born in consecutive years. No two right-handed children were born in consecutive years. Sara, who is left-handed, was born before Uma. Zoe was born before both Theo and Will. A left-handed child was born in 1991. Uma, who is right-handed, was born in 1993.", "question": "If Theo was born after Will was born, then how many sequential orderings of the children, from firstborn to lastborn, are possible?", "options": [ "A) one", "B) two", "C) three", "D) four", "E) five" ], "answer": "B" }, { "id": "ar_lsat_200212_1-G_3_16", "context": "Of the five Pohl children—Sara, Theo, Uma, Will, and Zoe—three are left-handed and two are right-handed. Each of the five children was born in a different one of seven calendar years, 1990 through 1996. The following conditions apply: No two left-handed children were born in consecutive years. No two right-handed children were born in consecutive years. Sara, who is left-handed, was born before Uma. Zoe was born before both Theo and Will. A left-handed child was born in 1991. Uma, who is right-handed, was born in 1993.", "question": "If none of the children was born in 1995, then which one of the following statements must be true?", "options": [ "A) Theo was born in 1994.", "B) Will was born in 1994.", "C) Will was born in 1996.", "D) Zoe was born in 1990.", "E) Zoe was born in 1994." ], "answer": "D" }, { "id": "ar_lsat_200212_1-G_3_17", "context": "Of the five Pohl children—Sara, Theo, Uma, Will, and Zoe—three are left-handed and two are right-handed. Each of the five children was born in a different one of seven calendar years, 1990 through 1996. The following conditions apply: No two left-handed children were born in consecutive years. No two right-handed children were born in consecutive years. Sara, who is left-handed, was born before Uma. Zoe was born before both Theo and Will. A left-handed child was born in 1991. Uma, who is right-handed, was born in 1993.", "question": "If Theo is right-handed, then each of the following statements must be false EXCEPT:", "options": [ "A) Theo was born in 1996.", "B) Will was born in 1995.", "C) Uma was born exactly three years before Theo was born.", "D) Zoe was born exactly one year before Theo was born.", "E) Will is right-handed." ], "answer": "D" }, { "id": "ar_lsat_200212_1-G_3_18", "context": "Of the five Pohl children—Sara, Theo, Uma, Will, and Zoe—three are left-handed and two are right-handed. Each of the five children was born in a different one of seven calendar years, 1990 through 1996. The following conditions apply: No two left-handed children were born in consecutive years. No two right-handed children were born in consecutive years. Sara, who is left-handed, was born before Uma. Zoe was born before both Theo and Will. A left-handed child was born in 1991. Uma, who is right-handed, was born in 1993.", "question": "If Zoe was born before Uma was born, then which one of the following statements must be false?", "options": [ "A) No child was born in 1992.", "B) No child was born in 1995.", "C) Theo is left-handed.", "D) Zoe is left-handed.", "E) Will is left-handed." ], "answer": "D" }, { "id": "ar_lsat_200212_1-G_4_19", "context": "Barbara is shopping at a pet store to select fish for her new aquarium from among the following species: J, K, L, M, N, O, and P. For each of the seven species, the store has several fish available. Barbara makes her selection in a manner consistent with the following conditions: If she selects one or more K, then she does not select any O. If she selects one or more M, then she does not select any N. If she selects one or more M, then she selects at least one O. If she selects one or more N, then she selects at least one O. If she selects one or more O, then she selects at least one P. If she selects one or more P, then she selects at least one O. If she selects any O at all, then she selects at least two O.", "question": "Which one of the following could be a complete and accurate list of the fish Barbara selects for her aquarium?", "options": [ "A) three J, one K, two M", "B) one J, one K, one M, three O", "C) one J, one M, two O, one P", "D) one J, one N, one O, two P", "E) one M, one N, two O, one P" ], "answer": "C" }, { "id": "ar_lsat_200212_1-G_4_20", "context": "Barbara is shopping at a pet store to select fish for her new aquarium from among the following species: J, K, L, M, N, O, and P. For each of the seven species, the store has several fish available. Barbara makes her selection in a manner consistent with the following conditions: If she selects one or more K, then she does not select any O. If she selects one or more M, then she does not select any N. If she selects one or more M, then she selects at least one O. If she selects one or more N, then she selects at least one O. If she selects one or more O, then she selects at least one P. If she selects one or more P, then she selects at least one O. If she selects any O at all, then she selects at least two O.", "question": "If Barbara does not select any fish of species P, then it could be true that she selects fish of species", "options": [ "A) J and of species K", "B) J and of species M", "C) K and of species M", "D) K and of species N", "E) L and of species O" ], "answer": "A" }, { "id": "ar_lsat_200212_1-G_4_21", "context": "Barbara is shopping at a pet store to select fish for her new aquarium from among the following species: J, K, L, M, N, O, and P. For each of the seven species, the store has several fish available. Barbara makes her selection in a manner consistent with the following conditions: If she selects one or more K, then she does not select any O. If she selects one or more M, then she does not select any N. If she selects one or more M, then she selects at least one O. If she selects one or more N, then she selects at least one O. If she selects one or more O, then she selects at least one P. If she selects one or more P, then she selects at least one O. If she selects any O at all, then she selects at least two O.", "question": "If Barbara selects fish of as many species as possible, then she cannot select any fish of which one of the following species?", "options": [ "A) K", "B) L", "C) M", "D) N", "E) P" ], "answer": "A" }, { "id": "ar_lsat_200212_1-G_4_22", "context": "Barbara is shopping at a pet store to select fish for her new aquarium from among the following species: J, K, L, M, N, O, and P. For each of the seven species, the store has several fish available. Barbara makes her selection in a manner consistent with the following conditions: If she selects one or more K, then she does not select any O. If she selects one or more M, then she does not select any N. If she selects one or more M, then she selects at least one O. If she selects one or more N, then she selects at least one O. If she selects one or more O, then she selects at least one P. If she selects one or more P, then she selects at least one O. If she selects any O at all, then she selects at least two O.", "question": "Which one of the following statements must be false?", "options": [ "A) Barbara selects exactly four fish, at least one of which is a J.", "B) Barbara selects exactly four fish, at least one of which is an L.", "C) Barbara selects exactly three fish, at least one of which is an M.", "D) Barbara selects exactly three fish, at least one of which is an O.", "E) Barbara selects exactly three fish, at least one of which is a P." ], "answer": "C" }, { "id": "ar_lsat_200212_1-G_4_23", "context": "Barbara is shopping at a pet store to select fish for her new aquarium from among the following species: J, K, L, M, N, O, and P. For each of the seven species, the store has several fish available. Barbara makes her selection in a manner consistent with the following conditions: If she selects one or more K, then she does not select any O. If she selects one or more M, then she does not select any N. If she selects one or more M, then she selects at least one O. If she selects one or more N, then she selects at least one O. If she selects one or more O, then she selects at least one P. If she selects one or more P, then she selects at least one O. If she selects any O at all, then she selects at least two O.", "question": "If Barbara selects at least one fish for her aquarium, then which one of the following lists the minimum and maximum possible numbers, respectively, of different species of fish that Barbara selects?", "options": [ "A) 1, 4", "B) 1, 5", "C) 1, 6", "D) 2, 5", "E) 2, 6" ], "answer": "B" }, { "id": "ar_lsat_200306_2-G_1_1", "context": "Charlie makes a soup by adding exactly six kinds of foods—kale, lentils, mushrooms, onions, tomatoes, and zucchini—to a broth, one food at a time. No food is added more than once. The order in which Charlie adds the foods to the broth must be consistent with the following: If the mushrooms are added third, then the lentils are added last. If the zucchini is added first, then the lentils are added at some time before the onions. Neither the tomatoes nor the kale is added fifth. The mushrooms are added at some time before the tomatoes or the kale, but not before both.", "question": "Which one of the following could be the order in which the foods are added to the broth?", "options": [ "A) kale, mushrooms, onions, lentils, tomatoes, zucchini", "B) kale, zucchini, mushrooms, tomatoes, lentils, onions", "C) lentils, mushrooms, zucchini, kale, onions, tomatoes", "D) zucchini, lentils, kale, mushrooms, onions, tomatoes", "E) zucchini, tomatoes, onions, mushrooms, lentils, kale" ], "answer": "D" }, { "id": "ar_lsat_200306_2-G_1_2", "context": "Charlie makes a soup by adding exactly six kinds of foods—kale, lentils, mushrooms, onions, tomatoes, and zucchini—to a broth, one food at a time. No food is added more than once. The order in which Charlie adds the foods to the broth must be consistent with the following: If the mushrooms are added third, then the lentils are added last. If the zucchini is added first, then the lentils are added at some time before the onions. Neither the tomatoes nor the kale is added fifth. The mushrooms are added at some time before the tomatoes or the kale, but not before both.", "question": "Which one of the following foods CANNOT be added first?", "options": [ "A) kale", "B) lentils", "C) mushrooms", "D) onions", "E) tomatoes" ], "answer": "C" }, { "id": "ar_lsat_200306_2-G_1_3", "context": "Charlie makes a soup by adding exactly six kinds of foods—kale, lentils, mushrooms, onions, tomatoes, and zucchini—to a broth, one food at a time. No food is added more than once. The order in which Charlie adds the foods to the broth must be consistent with the following: If the mushrooms are added third, then the lentils are added last. If the zucchini is added first, then the lentils are added at some time before the onions. Neither the tomatoes nor the kale is added fifth. The mushrooms are added at some time before the tomatoes or the kale, but not before both.", "question": "If the lentils are added last, then which one of the following must be true?", "options": [ "A) At least one of the foods is added at some time before the zucchini.", "B) At least two of the foods are added at some time before the kale.", "C) The mushrooms are added third.", "D) The zucchini is added third.", "E) The tomatoes are added fourth." ], "answer": "A" }, { "id": "ar_lsat_200306_2-G_1_4", "context": "Charlie makes a soup by adding exactly six kinds of foods—kale, lentils, mushrooms, onions, tomatoes, and zucchini—to a broth, one food at a time. No food is added more than once. The order in which Charlie adds the foods to the broth must be consistent with the following: If the mushrooms are added third, then the lentils are added last. If the zucchini is added first, then the lentils are added at some time before the onions. Neither the tomatoes nor the kale is added fifth. The mushrooms are added at some time before the tomatoes or the kale, but not before both.", "question": "Which one of the following could be an accurate partial ordering of the foods added to the broth?", "options": [ "A) lentils: second; mushrooms: third", "B) mushrooms: fourth; lentils: last", "C) onions: second; mushrooms: fifth", "D) zucchini: first; lentils: last", "E) zucchini: first; mushrooms: second" ], "answer": "C" }, { "id": "ar_lsat_200306_2-G_1_5", "context": "Charlie makes a soup by adding exactly six kinds of foods—kale, lentils, mushrooms, onions, tomatoes, and zucchini—to a broth, one food at a time. No food is added more than once. The order in which Charlie adds the foods to the broth must be consistent with the following: If the mushrooms are added third, then the lentils are added last. If the zucchini is added first, then the lentils are added at some time before the onions. Neither the tomatoes nor the kale is added fifth. The mushrooms are added at some time before the tomatoes or the kale, but not before both.", "question": "If the zucchini is added first, then which one of the following CANNOT be true?", "options": [ "A) The kale is added second.", "B) The tomatoes are added second.", "C) The lentils are added third.", "D) The lentils are added fourth.", "E) The onions are added fourth." ], "answer": "D" }, { "id": "ar_lsat_200306_2-G_2_6", "context": "A study sponsored by a consumer group tests exactly five of seven cold medications—F, G, H, I, K, L, and M—and ranks the medications tested from first (best) to fifth (worst). There are no ties. The following conditions must apply: L ranks second. Either F or G ranks first. I is tested. H ranks better than G if both are tested. K ranks better than F if both are tested. If M is tested, both F and H are also tested.", "question": "Which one of the following could be the five cold medications that the study ranks, listed from first to fifth?", "options": [ "A) F, I, L, H, G", "B) F, L, G, H, M", "C) F, L, I, G, M", "D) F, L, I, H, M", "E) F, L, K, I, G" ], "answer": "D" }, { "id": "ar_lsat_200306_2-G_2_7", "context": "A study sponsored by a consumer group tests exactly five of seven cold medications—F, G, H, I, K, L, and M—and ranks the medications tested from first (best) to fifth (worst). There are no ties. The following conditions must apply: L ranks second. Either F or G ranks first. I is tested. H ranks better than G if both are tested. K ranks better than F if both are tested. If M is tested, both F and H are also tested.", "question": "Which one of the following could be true of the study?", "options": [ "A) G ranks better than M.", "B) H ranks better than F.", "C) I ranks better than F.", "D) K ranks better than G.", "E) M ranks better than G." ], "answer": "C" }, { "id": "ar_lsat_200306_2-G_2_8", "context": "A study sponsored by a consumer group tests exactly five of seven cold medications—F, G, H, I, K, L, and M—and ranks the medications tested from first (best) to fifth (worst). There are no ties. The following conditions must apply: L ranks second. Either F or G ranks first. I is tested. H ranks better than G if both are tested. K ranks better than F if both are tested. If M is tested, both F and H are also tested.", "question": "Which one of the following cold medications must be among those tested in the study?", "options": [ "A) F", "B) G", "C) H", "D) K", "E) M" ], "answer": "A" }, { "id": "ar_lsat_200306_2-G_2_9", "context": "A study sponsored by a consumer group tests exactly five of seven cold medications—F, G, H, I, K, L, and M—and ranks the medications tested from first (best) to fifth (worst). There are no ties. The following conditions must apply: L ranks second. Either F or G ranks first. I is tested. H ranks better than G if both are tested. K ranks better than F if both are tested. If M is tested, both F and H are also tested.", "question": "Which one of the following is a complete and accurate list of the cold medications any one of which could be the cold medication ranked fifth?", "options": [ "A) F, G, H, M", "B) G, H, I, M", "C) G, H, L, M", "D) F, G, H, I, K", "E) F, G, H, I, M" ], "answer": "E" }, { "id": "ar_lsat_200306_2-G_2_10", "context": "A study sponsored by a consumer group tests exactly five of seven cold medications—F, G, H, I, K, L, and M—and ranks the medications tested from first (best) to fifth (worst). There are no ties. The following conditions must apply: L ranks second. Either F or G ranks first. I is tested. H ranks better than G if both are tested. K ranks better than F if both are tested. If M is tested, both F and H are also tested.", "question": "If I ranks third, each of the following could also be true of the study EXCEPT:", "options": [ "A) M ranks better than H.", "B) K ranks better than G.", "C) I ranks better than F.", "D) H ranks better than M.", "E) G ranks better than K." ], "answer": "B" }, { "id": "ar_lsat_200306_2-G_3_11", "context": "Each nonstop flight offered by Zephyr Airlines departs from one and arrives at another of five cities: Honolulu, Montreal, Philadelphia, Toronto, and Vancouver. Any two cities are said to be connected with each other if Zephyr offers nonstop flights between them. Each city is connected with at least one other city. The following conditions govern Zephyr's nonstop flights: Montreal is connected with exactly one other city. Honolulu is not connected with Toronto. Any city that is connected with Honolulu is also connected with Toronto. If Philadelphia is connected with Toronto, then Philadelphia is not connected with Vancouver.", "question": "Which one of the following could be a complete and accurate list of Zephyr Airlines' connected cities?", "options": [ "A) Honolulu and Vancouver; Montreal and Toronto; Philadelphia and Vancouver; Toronto and Vancouver", "B) Honolulu and Vancouver; Montreal and Philadelphia; Montreal and Toronto; Philadelphia and Toronto; Toronto and Vancouver", "C) Honolulu and Philadelphia; Honolulu and Montreal; Philadelphia and Toronto; Toronto and Vancouver", "D) Honolulu and Philadelphia; Montreal and Toronto; Philadelphia and Toronto; Philadelphia and Vancouver; Toronto and Vancouver", "E) Honolulu and Philadelphia; Honolulu and Toronto; Montreal and Philadelphia; Philadelphia and Vancouver" ], "answer": "A" }, { "id": "ar_lsat_200306_2-G_3_12", "context": "Each nonstop flight offered by Zephyr Airlines departs from one and arrives at another of five cities: Honolulu, Montreal, Philadelphia, Toronto, and Vancouver. Any two cities are said to be connected with each other if Zephyr offers nonstop flights between them. Each city is connected with at least one other city. The following conditions govern Zephyr's nonstop flights: Montreal is connected with exactly one other city. Honolulu is not connected with Toronto. Any city that is connected with Honolulu is also connected with Toronto. If Philadelphia is connected with Toronto, then Philadelphia is not connected with Vancouver.", "question": "If exactly three cities are each connected with Philadelphia, then which one of the following could be a pair of connected cities?", "options": [ "A) Honolulu and Montreal", "B) Honolulu and Vancouver", "C) Montreal and Toronto", "D) Montreal and Vancouver", "E) Philadelphia and Vancouver" ], "answer": "B" }, { "id": "ar_lsat_200306_2-G_3_13", "context": "Each nonstop flight offered by Zephyr Airlines departs from one and arrives at another of five cities: Honolulu, Montreal, Philadelphia, Toronto, and Vancouver. Any two cities are said to be connected with each other if Zephyr offers nonstop flights between them. Each city is connected with at least one other city. The following conditions govern Zephyr's nonstop flights: Montreal is connected with exactly one other city. Honolulu is not connected with Toronto. Any city that is connected with Honolulu is also connected with Toronto. If Philadelphia is connected with Toronto, then Philadelphia is not connected with Vancouver.", "question": "Which one of the following is a pair of cities that CANNOT be connected?", "options": [ "A) Honolulu and Montreal", "B) Honolulu and Philadelphia", "C) Montreal and Philadelphia", "D) Montreal and Vancouver", "E) Philadelphia and Toronto" ], "answer": "A" }, { "id": "ar_lsat_200306_2-G_3_14", "context": "Each nonstop flight offered by Zephyr Airlines departs from one and arrives at another of five cities: Honolulu, Montreal, Philadelphia, Toronto, and Vancouver. Any two cities are said to be connected with each other if Zephyr offers nonstop flights between them. Each city is connected with at least one other city. The following conditions govern Zephyr's nonstop flights: Montreal is connected with exactly one other city. Honolulu is not connected with Toronto. Any city that is connected with Honolulu is also connected with Toronto. If Philadelphia is connected with Toronto, then Philadelphia is not connected with Vancouver.", "question": "Which one of the following could be true?", "options": [ "A) Montreal and Philadelphia are connected with each other, but neither is connected with any other city.", "B) Montreal and Toronto are connected with each other, but neither is connected with any other city.", "C) Philadelphia and Toronto are connected with each other, but neither is connected with any other city.", "D) Philadelphia and Vancouver are connected with each other, but neither is connected with any other city.", "E) Toronto and Vancouver are connected with each other, but neither is connected with any other city." ], "answer": "A" }, { "id": "ar_lsat_200306_2-G_3_15", "context": "Each nonstop flight offered by Zephyr Airlines departs from one and arrives at another of five cities: Honolulu, Montreal, Philadelphia, Toronto, and Vancouver. Any two cities are said to be connected with each other if Zephyr offers nonstop flights between them. Each city is connected with at least one other city. The following conditions govern Zephyr's nonstop flights: Montreal is connected with exactly one other city. Honolulu is not connected with Toronto. Any city that is connected with Honolulu is also connected with Toronto. If Philadelphia is connected with Toronto, then Philadelphia is not connected with Vancouver.", "question": "If Toronto is the only city that is connected with Philadelphia, then which one of the following could be true?", "options": [ "A) Exactly one city is connected with Toronto.", "B) Exactly one city is connected with Vancouver.", "C) Exactly two cities are each connected with Honolulu.", "D) Exactly two cities are each connected with Toronto.", "E) Exactly four cities are each connected with Toronto." ], "answer": "D" }, { "id": "ar_lsat_200306_2-G_3_16", "context": "Each nonstop flight offered by Zephyr Airlines departs from one and arrives at another of five cities: Honolulu, Montreal, Philadelphia, Toronto, and Vancouver. Any two cities are said to be connected with each other if Zephyr offers nonstop flights between them. Each city is connected with at least one other city. The following conditions govern Zephyr's nonstop flights: Montreal is connected with exactly one other city. Honolulu is not connected with Toronto. Any city that is connected with Honolulu is also connected with Toronto. If Philadelphia is connected with Toronto, then Philadelphia is not connected with Vancouver.", "question": "At most how many pairs of cities could be connected?", "options": [ "A) four", "B) five", "C) six", "D) seven", "E) eight" ], "answer": "B" }, { "id": "ar_lsat_200306_2-G_3_17", "context": "Each nonstop flight offered by Zephyr Airlines departs from one and arrives at another of five cities: Honolulu, Montreal, Philadelphia, Toronto, and Vancouver. Any two cities are said to be connected with each other if Zephyr offers nonstop flights between them. Each city is connected with at least one other city. The following conditions govern Zephyr's nonstop flights: Montreal is connected with exactly one other city. Honolulu is not connected with Toronto. Any city that is connected with Honolulu is also connected with Toronto. If Philadelphia is connected with Toronto, then Philadelphia is not connected with Vancouver.", "question": "If four of the cities are each connected with the remaining city, then the cities in which one of the following pairs must be connected with each other?", "options": [ "A) Honolulu and Montreal", "B) Honolulu and Philadelphia", "C) Honolulu and Vancouver", "D) Montreal and Philadelphia", "E) Montreal and Toronto" ], "answer": "C" }, { "id": "ar_lsat_200306_2-G_4_18", "context": "For a behavioral study, a researcher will select exactly six individual animals from among three monkeys—F, G, and H—three pandas—K, L, and N—and three raccoons—T, V, and Z. The selection of animals for the study must meet the following conditions: F and H are not both selected. N and T are not both selected. If H is selected, K is also selected. If K is selected, N is also selected.", "question": "Which one of the following is an acceptable selection of animals for the study?", "options": [ "A) F, G, K, N, T, V", "B) F, H, K, N, V, Z", "C) G, H, K, L, V, Z", "D) G, H, K, N, V, Z", "E) G, H, L, N, V, Z" ], "answer": "D" }, { "id": "ar_lsat_200306_2-G_4_19", "context": "For a behavioral study, a researcher will select exactly six individual animals from among three monkeys—F, G, and H—three pandas—K, L, and N—and three raccoons—T, V, and Z. The selection of animals for the study must meet the following conditions: F and H are not both selected. N and T are not both selected. If H is selected, K is also selected. If K is selected, N is also selected.", "question": "If H and L are among the animals selected, which one of the following could be true?", "options": [ "A) F is selected.", "B) T is selected.", "C) Z is selected.", "D) Exactly one panda is selected.", "E) Exactly two pandas are selected." ], "answer": "C" }, { "id": "ar_lsat_200306_2-G_4_20", "context": "For a behavioral study, a researcher will select exactly six individual animals from among three monkeys—F, G, and H—three pandas—K, L, and N—and three raccoons—T, V, and Z. The selection of animals for the study must meet the following conditions: F and H are not both selected. N and T are not both selected. If H is selected, K is also selected. If K is selected, N is also selected.", "question": "Each of the following is a pair of animals that could be selected together EXCEPT", "options": [ "A) F and G", "B) H and K", "C) K and T", "D) L and N", "E) T and V" ], "answer": "C" }, { "id": "ar_lsat_200306_2-G_4_21", "context": "For a behavioral study, a researcher will select exactly six individual animals from among three monkeys—F, G, and H—three pandas—K, L, and N—and three raccoons—T, V, and Z. The selection of animals for the study must meet the following conditions: F and H are not both selected. N and T are not both selected. If H is selected, K is also selected. If K is selected, N is also selected.", "question": "If all three of the raccoons are selected, which one of the following must be true?", "options": [ "A) K is selected.", "B) L is selected.", "C) Exactly one monkey is selected.", "D) Exactly two pandas are selected.", "E) All three of the monkeys are selected." ], "answer": "B" }, { "id": "ar_lsat_200306_2-G_4_22", "context": "For a behavioral study, a researcher will select exactly six individual animals from among three monkeys—F, G, and H—three pandas—K, L, and N—and three raccoons—T, V, and Z. The selection of animals for the study must meet the following conditions: F and H are not both selected. N and T are not both selected. If H is selected, K is also selected. If K is selected, N is also selected.", "question": "If T is selected, which one of the following is a pair of animals that must be among the animals selected?", "options": [ "A) F and G", "B) G and H", "C) K and L", "D) K and Z", "E) L and N" ], "answer": "A" }, { "id": "ar_lsat_200306_2-G_4_23", "context": "For a behavioral study, a researcher will select exactly six individual animals from among three monkeys—F, G, and H—three pandas—K, L, and N—and three raccoons—T, V, and Z. The selection of animals for the study must meet the following conditions: F and H are not both selected. N and T are not both selected. If H is selected, K is also selected. If K is selected, N is also selected.", "question": "The selection of animals must include", "options": [ "A) at most two of each kind of animal", "B) at least one of each kind of animal", "C) at least two pandas", "D) exactly two monkeys", "E) exactly two raccoons" ], "answer": "B" }, { "id": "ar_lsat_200406_4-G_1_1", "context": "There are exactly six groups in this year's Civic Parade: firefighters, gymnasts, jugglers, musicians, puppeteers, and veterans. Each group marches as a unit; the groups are ordered from first, at the front of the parade, to sixth, at the back. The following conditions apply: At least two groups march behind the puppeteers but ahead of the musicians. Exactly one group marches behind the firefighters but ahead of the veterans. The gymnasts are the first, third, or fifth group.", "question": "Which one of the following could be an accurate list of the groups in the Civic Parade in order from first to last?", "options": [ "A) firefighters, puppeteers, veterans, musicians, gymnasts, jugglers", "B) gymnasts, puppeteers, jugglers, musicians, firefighters, veterans", "C) veterans, puppeteers, firefighters, gymnasts, jugglers, musicians", "D) jugglers, puppeteers, gymnasts, firefighters, musicians, veterans", "E) musicians, veterans, jugglers, firefighters, gymnasts, puppeteers" ], "answer": "D" }, { "id": "ar_lsat_200406_4-G_1_2", "context": "There are exactly six groups in this year's Civic Parade: firefighters, gymnasts, jugglers, musicians, puppeteers, and veterans. Each group marches as a unit; the groups are ordered from first, at the front of the parade, to sixth, at the back. The following conditions apply: At least two groups march behind the puppeteers but ahead of the musicians. Exactly one group marches behind the firefighters but ahead of the veterans. The gymnasts are the first, third, or fifth group.", "question": "If the gymnasts march immediately ahead of the veterans, then which one of the following could be the fourth group?", "options": [ "A) gymnasts", "B) jugglers", "C) musicians", "D) puppeteers", "E) veterans" ], "answer": "E" }, { "id": "ar_lsat_200406_4-G_1_3", "context": "There are exactly six groups in this year's Civic Parade: firefighters, gymnasts, jugglers, musicians, puppeteers, and veterans. Each group marches as a unit; the groups are ordered from first, at the front of the parade, to sixth, at the back. The following conditions apply: At least two groups march behind the puppeteers but ahead of the musicians. Exactly one group marches behind the firefighters but ahead of the veterans. The gymnasts are the first, third, or fifth group.", "question": "If the veterans march immediately behind the puppeteers, then which one of the following could be the second group?", "options": [ "A) firefighters", "B) gymnasts", "C) jugglers", "D) musicians", "E) veterans" ], "answer": "A" }, { "id": "ar_lsat_200406_4-G_1_4", "context": "There are exactly six groups in this year's Civic Parade: firefighters, gymnasts, jugglers, musicians, puppeteers, and veterans. Each group marches as a unit; the groups are ordered from first, at the front of the parade, to sixth, at the back. The following conditions apply: At least two groups march behind the puppeteers but ahead of the musicians. Exactly one group marches behind the firefighters but ahead of the veterans. The gymnasts are the first, third, or fifth group.", "question": "If the jugglers are the fifth group, then which one of the following must be true?", "options": [ "A) The puppeteers are the first group.", "B) The firefighters are the first group.", "C) The veterans are the second group.", "D) The gymnasts are the third group.", "E) The musicians are the sixth group." ], "answer": "E" }, { "id": "ar_lsat_200406_4-G_1_5", "context": "There are exactly six groups in this year's Civic Parade: firefighters, gymnasts, jugglers, musicians, puppeteers, and veterans. Each group marches as a unit; the groups are ordered from first, at the front of the parade, to sixth, at the back. The following conditions apply: At least two groups march behind the puppeteers but ahead of the musicians. Exactly one group marches behind the firefighters but ahead of the veterans. The gymnasts are the first, third, or fifth group.", "question": "Which one of the following groups CANNOT march immediately behind the gymnasts?", "options": [ "A) firefighters", "B) jugglers", "C) musicians", "D) puppeteers", "E) veterans" ], "answer": "B" }, { "id": "ar_lsat_200406_4-G_2_6", "context": "A rowing team uses a boat with exactly six seats arranged in single file and numbered sequentially 1 through 6, from the front of the boat to the back. Six athletes—Lee, Miller, Ovitz, Singh, Valerio, and Zita—each row at exactly one of the seats. The following restrictions must apply: Miller rows closer to the front than Singh. Singh rows closer to the front than both Lee and Valerio. Valerio and Zita each row closer to the front than Ovitz.", "question": "Which one of the following could be an accurate matching of athletes to seats?", "options": [ "A) Miller: seat 1; Valerio: seat 5; Lee: seat 6", "B) Singh: seat 3; Valerio: seat 4; Zita: seat 5", "C) Miller: seat 1; Valerio: seat 3; Lee: seat 6", "D) Lee: seat 3; Valerio: seat 4; Ovitz: seat 5", "E) Zita: seat 2; Valerio: seat 3; Ovitz: seat 6" ], "answer": "C" }, { "id": "ar_lsat_200406_4-G_2_7", "context": "A rowing team uses a boat with exactly six seats arranged in single file and numbered sequentially 1 through 6, from the front of the boat to the back. Six athletes—Lee, Miller, Ovitz, Singh, Valerio, and Zita—each row at exactly one of the seats. The following restrictions must apply: Miller rows closer to the front than Singh. Singh rows closer to the front than both Lee and Valerio. Valerio and Zita each row closer to the front than Ovitz.", "question": "If Valerio rows at seat 5, then which one of the following must be true?", "options": [ "A) Miller rows at seat 1.", "B) Singh rows at seat 2.", "C) Zita rows at seat 3.", "D) Lee rows at seat 4.", "E) Ovitz rows at seat 6." ], "answer": "E" }, { "id": "ar_lsat_200406_4-G_2_8", "context": "A rowing team uses a boat with exactly six seats arranged in single file and numbered sequentially 1 through 6, from the front of the boat to the back. Six athletes—Lee, Miller, Ovitz, Singh, Valerio, and Zita—each row at exactly one of the seats. The following restrictions must apply: Miller rows closer to the front than Singh. Singh rows closer to the front than both Lee and Valerio. Valerio and Zita each row closer to the front than Ovitz.", "question": "If Lee rows at seat 3, then each of the following could be true EXCEPT:", "options": [ "A) Zita rows immediately behind Valerio.", "B) Ovitz rows immediately behind Valerio.", "C) Ovitz rows immediately behind Zita.", "D) Valerio rows immediately behind Lee.", "E) Singh rows immediately behind Zita." ], "answer": "E" }, { "id": "ar_lsat_200406_4-G_2_9", "context": "A rowing team uses a boat with exactly six seats arranged in single file and numbered sequentially 1 through 6, from the front of the boat to the back. Six athletes—Lee, Miller, Ovitz, Singh, Valerio, and Zita—each row at exactly one of the seats. The following restrictions must apply: Miller rows closer to the front than Singh. Singh rows closer to the front than both Lee and Valerio. Valerio and Zita each row closer to the front than Ovitz.", "question": "Which one of the following CANNOT be true?", "options": [ "A) Ovitz rows closer to the front than Singh.", "B) Zita rows closer to the front than Miller.", "C) Lee rows closer to the front than Valerio.", "D) Singh rows closer to the front than Zita.", "E) Valerio rows closer to the front than Lee." ], "answer": "A" }, { "id": "ar_lsat_200406_4-G_2_10", "context": "A rowing team uses a boat with exactly six seats arranged in single file and numbered sequentially 1 through 6, from the front of the boat to the back. Six athletes—Lee, Miller, Ovitz, Singh, Valerio, and Zita—each row at exactly one of the seats. The following restrictions must apply: Miller rows closer to the front than Singh. Singh rows closer to the front than both Lee and Valerio. Valerio and Zita each row closer to the front than Ovitz.", "question": "Exactly how many different seats could be the seat occupied by Zita?", "options": [ "A) two", "B) three", "C) four", "D) five", "E) six" ], "answer": "D" }, { "id": "ar_lsat_200406_4-G_2_11", "context": "A rowing team uses a boat with exactly six seats arranged in single file and numbered sequentially 1 through 6, from the front of the boat to the back. Six athletes—Lee, Miller, Ovitz, Singh, Valerio, and Zita—each row at exactly one of the seats. The following restrictions must apply: Miller rows closer to the front than Singh. Singh rows closer to the front than both Lee and Valerio. Valerio and Zita each row closer to the front than Ovitz.", "question": "If Valerio rows closer to the front than Zita, then which one of the following must be true?", "options": [ "A) Miller rows immediately in front of Singh.", "B) Lee rows immediately in front of Valerio.", "C) Zita rows immediately in front of Ovitz.", "D) Singh rows immediately in front of Lee.", "E) Singh rows immediately in front of Valerio." ], "answer": "A" }, { "id": "ar_lsat_200406_4-G_2_12", "context": "A rowing team uses a boat with exactly six seats arranged in single file and numbered sequentially 1 through 6, from the front of the boat to the back. Six athletes—Lee, Miller, Ovitz, Singh, Valerio, and Zita—each row at exactly one of the seats. The following restrictions must apply: Miller rows closer to the front than Singh. Singh rows closer to the front than both Lee and Valerio. Valerio and Zita each row closer to the front than Ovitz.", "question": "Suppose the restriction that Miller rows closer to the front than Singh is replaced by the restriction that Singh rows closer to the front than Miller. If the other two restrictions remain in effect, then each of the following could be an accurate matching of athletes to seats EXCEPT:", "options": [ "A) Singh: seat 1; Zita: seat 2; Miller: seat 6", "B) Singh: seat 1; Valerio: seat 3; Ovitz: seat 5", "C) Singh: seat 3; Lee: seat 4; Valerio: seat 5", "D) Valerio: seat 3; Miller: seat 4; Lee: seat 5", "E) Valerio: seat 4; Miller: seat 5; Ovitz: seat 6" ], "answer": "C" }, { "id": "ar_lsat_200406_4-G_3_13", "context": "Exactly six of an artist's paintings, entitled Quarterion, Redemption, Sipapu, Tesseract, Vale, and Zelkova, are sold at auction. Three of the paintings are sold to a museum, and three are sold to a private collector. Two of the paintings are from the artist's first (earliest) period, two are from her second period, and two are from her third (most recent) period. The private collector and the museum each buy one painting from each period. The following conditions hold: Sipapu, which is sold to the private collector, is from an earlier period than Zelkova, which is sold to the museum. Quarterion is not from an earlier period than Tesseract. Vale is from the artist's second period.", "question": "Which one of the following could be an accurate list of the paintings bought by the museum and the private collector, listed in order of the paintings' periods, from first to third?", "options": [ "A) museum: Quarterion, Vale, Zelkova private collector: Redemption, Sipapu, Tesseract", "B) museum: Redemption, Zelkova, Quarterion private collector: Sipapu, Vale, Tesseract", "C) museum: Sipapu, Zelkova, Quarterion private collector: Tesseract, Vale, Redemption", "D) museum: Tesseract, Quarterion, Zelkova private collector: Sipapu, Redemption, Vale", "E) museum: Zelkova, Tesseract, Redemption private collector: Sipapu, Vale, Quarterion" ], "answer": "B" }, { "id": "ar_lsat_200406_4-G_3_14", "context": "Exactly six of an artist's paintings, entitled Quarterion, Redemption, Sipapu, Tesseract, Vale, and Zelkova, are sold at auction. Three of the paintings are sold to a museum, and three are sold to a private collector. Two of the paintings are from the artist's first (earliest) period, two are from her second period, and two are from her third (most recent) period. The private collector and the museum each buy one painting from each period. The following conditions hold: Sipapu, which is sold to the private collector, is from an earlier period than Zelkova, which is sold to the museum. Quarterion is not from an earlier period than Tesseract. Vale is from the artist's second period.", "question": "If Sipapu is from the artist's second period, which one of the following could be two of the three paintings bought by the private collector?", "options": [ "A) Quarterion and Zelkova", "B) Redemption and Tesseract", "C) Redemption and Vale", "D) Redemption and Zelkova", "E) Tesseract and Zelkova" ], "answer": "B" }, { "id": "ar_lsat_200406_4-G_3_15", "context": "Exactly six of an artist's paintings, entitled Quarterion, Redemption, Sipapu, Tesseract, Vale, and Zelkova, are sold at auction. Three of the paintings are sold to a museum, and three are sold to a private collector. Two of the paintings are from the artist's first (earliest) period, two are from her second period, and two are from her third (most recent) period. The private collector and the museum each buy one painting from each period. The following conditions hold: Sipapu, which is sold to the private collector, is from an earlier period than Zelkova, which is sold to the museum. Quarterion is not from an earlier period than Tesseract. Vale is from the artist's second period.", "question": "Which one of the following is a complete and accurate list of the paintings, any one of which could be the painting from the artist's first period that is sold to the private collector?", "options": [ "A) Quarterion, Redemption", "B) Redemption, Sipapu", "C) Quarterion, Sipapu, Tesseract", "D) Quarterion, Redemption, Sipapu, Tesseract", "E) Redemption, Sipapu, Tesseract, Zelkova" ], "answer": "D" }, { "id": "ar_lsat_200406_4-G_3_16", "context": "Exactly six of an artist's paintings, entitled Quarterion, Redemption, Sipapu, Tesseract, Vale, and Zelkova, are sold at auction. Three of the paintings are sold to a museum, and three are sold to a private collector. Two of the paintings are from the artist's first (earliest) period, two are from her second period, and two are from her third (most recent) period. The private collector and the museum each buy one painting from each period. The following conditions hold: Sipapu, which is sold to the private collector, is from an earlier period than Zelkova, which is sold to the museum. Quarterion is not from an earlier period than Tesseract. Vale is from the artist's second period.", "question": "If Sipapu is from the artist's second period, then which one of the following paintings could be from the period immediately preceding Quarterion's period and be sold to the same buyer as Quarterion?", "options": [ "A) Redemption", "B) Sipapu", "C) Tesseract", "D) Vale", "E) Zelkova" ], "answer": "B" }, { "id": "ar_lsat_200406_4-G_3_17", "context": "Exactly six of an artist's paintings, entitled Quarterion, Redemption, Sipapu, Tesseract, Vale, and Zelkova, are sold at auction. Three of the paintings are sold to a museum, and three are sold to a private collector. Two of the paintings are from the artist's first (earliest) period, two are from her second period, and two are from her third (most recent) period. The private collector and the museum each buy one painting from each period. The following conditions hold: Sipapu, which is sold to the private collector, is from an earlier period than Zelkova, which is sold to the museum. Quarterion is not from an earlier period than Tesseract. Vale is from the artist's second period.", "question": "If Zelkova is sold to the same buyer as Tesseract and is from the period immediately preceding Tesseract's period, then which one of the following must be true?", "options": [ "A) Quarterion is sold to the museum.", "B) Quarterion is from the artist's third period.", "C) Redemption is sold to the private collector.", "D) Redemption is from the artist's third period.", "E) Redemption is sold to the same buyer as Vale." ], "answer": "B" }, { "id": "ar_lsat_200406_4-G_4_18", "context": "Each of exactly six lunch trucks sells a different one of six kinds of food: falafel, hot dogs, ice cream, pitas, salad, or tacos. Each truck serves one or more of exactly three office buildings: X, Y, or Z. The following conditions apply: The falafel truck, the hot dog truck, and exactly one other truck each serve Y. The falafel truck serves exactly two of the office buildings. The ice cream truck serves more of the office buildings than the salad truck. The taco truck does not serve Y. The falafel truck does not serve any office building that the pita truck serves. The taco truck serves two office buildings that are also served by the ice cream truck.", "question": "Which one of the following could be a complete and accurate list of each of the office buildings that the falafel truck serves?", "options": [ "A) X", "B) X, Z", "C) X, Y, Z", "D) Y, Z", "E) Z" ], "answer": "D" }, { "id": "ar_lsat_200406_4-G_4_19", "context": "Each of exactly six lunch trucks sells a different one of six kinds of food: falafel, hot dogs, ice cream, pitas, salad, or tacos. Each truck serves one or more of exactly three office buildings: X, Y, or Z. The following conditions apply: The falafel truck, the hot dog truck, and exactly one other truck each serve Y. The falafel truck serves exactly two of the office buildings. The ice cream truck serves more of the office buildings than the salad truck. The taco truck does not serve Y. The falafel truck does not serve any office building that the pita truck serves. The taco truck serves two office buildings that are also served by the ice cream truck.", "question": "For which one of the following pairs of trucks must it be the case that at least one of the office buildings is served by both of the trucks?", "options": [ "A) the hot dog truck and the pita truck", "B) the hot dog truck and the taco truck", "C) the ice cream truck and the pita truck", "D) the ice cream truck and the salad truck", "E) the salad truck and the taco truck" ], "answer": "C" }, { "id": "ar_lsat_200406_4-G_4_20", "context": "Each of exactly six lunch trucks sells a different one of six kinds of food: falafel, hot dogs, ice cream, pitas, salad, or tacos. Each truck serves one or more of exactly three office buildings: X, Y, or Z. The following conditions apply: The falafel truck, the hot dog truck, and exactly one other truck each serve Y. The falafel truck serves exactly two of the office buildings. The ice cream truck serves more of the office buildings than the salad truck. The taco truck does not serve Y. The falafel truck does not serve any office building that the pita truck serves. The taco truck serves two office buildings that are also served by the ice cream truck.", "question": "If the ice cream truck serves fewer of the office buildings than the hot dog truck, then which one of the following is a pair of lunch trucks that must serve exactly the same buildings as each other?", "options": [ "A) the falafel truck and the hot dog truck", "B) the falafel truck and the salad truck", "C) the ice cream truck and the pita truck", "D) the ice cream truck and the salad truck", "E) the ice cream truck and the taco truck" ], "answer": "E" }, { "id": "ar_lsat_200406_4-G_4_21", "context": "Each of exactly six lunch trucks sells a different one of six kinds of food: falafel, hot dogs, ice cream, pitas, salad, or tacos. Each truck serves one or more of exactly three office buildings: X, Y, or Z. The following conditions apply: The falafel truck, the hot dog truck, and exactly one other truck each serve Y. The falafel truck serves exactly two of the office buildings. The ice cream truck serves more of the office buildings than the salad truck. The taco truck does not serve Y. The falafel truck does not serve any office building that the pita truck serves. The taco truck serves two office buildings that are also served by the ice cream truck.", "question": "Which one of the following could be a complete and accurate list of the lunch trucks, each of which serves all three of the office buildings?", "options": [ "A) the hot dog truck, the ice cream truck", "B) the hot dog truck, the salad truck", "C) the ice cream truck, the taco truck", "D) the hot dog truck, the ice cream truck, the pita truck", "E) the ice cream truck, the pita truck, the salad truck" ], "answer": "A" }, { "id": "ar_lsat_200406_4-G_4_22", "context": "Each of exactly six lunch trucks sells a different one of six kinds of food: falafel, hot dogs, ice cream, pitas, salad, or tacos. Each truck serves one or more of exactly three office buildings: X, Y, or Z. The following conditions apply: The falafel truck, the hot dog truck, and exactly one other truck each serve Y. The falafel truck serves exactly two of the office buildings. The ice cream truck serves more of the office buildings than the salad truck. The taco truck does not serve Y. The falafel truck does not serve any office building that the pita truck serves. The taco truck serves two office buildings that are also served by the ice cream truck.", "question": "Which one of the following lunch trucks CANNOT serve both X and Z?", "options": [ "A) the hot dog truck", "B) the ice cream truck", "C) the pita truck", "D) the salad truck", "E) the taco truck" ], "answer": "C" }, { "id": "ar_lsat_200410_3-G_1_1", "context": "In the course of one month Garibaldi has exactly seven different meetings. Each of her meetings is with exactly one of five foreign dignitaries: Fuentes, Matsuba, Rhee, Soleimani, or Tbahi. The following constraints govern Garibaldi's meetings: She has exactly three meetings with Fuentes, and exactly one with each of the other dignitaries. She does not have any meetings in a row with Fuentes. Her meeting with Soleimani is the very next one after her meeting with Tbahi. Neither the first nor last of her meetings is with Matsuba.", "question": "Which one of the following could be the sequence of the meetings Garibaldi has with the dignitaries?", "options": [ "A) Fuentes, Rhee, Tbahi, Soleimani, Fuentes, Matsuba, Rhee", "B) Fuentes, Tbahi, Soleimani, Matsuba, Fuentes, Fuentes, Rhee", "C) Fuentes, Rhee, Fuentes, Matsuba, Fuentes, Tbahi, Soleimani", "D) Fuentes, Tbahi, Matsuba, Fuentes, Soleimani, Rhee, Fuentes", "E) Fuentes, Tbahi, Soleimani, Fuentes, Rhee, Fuentes, Matsuba" ], "answer": "C" }, { "id": "ar_lsat_200410_3-G_1_2", "context": "In the course of one month Garibaldi has exactly seven different meetings. Each of her meetings is with exactly one of five foreign dignitaries: Fuentes, Matsuba, Rhee, Soleimani, or Tbahi. The following constraints govern Garibaldi's meetings: She has exactly three meetings with Fuentes, and exactly one with each of the other dignitaries. She does not have any meetings in a row with Fuentes. Her meeting with Soleimani is the very next one after her meeting with Tbahi. Neither the first nor last of her meetings is with Matsuba.", "question": "If Garibaldi's last meeting is with Rhee, then which one of the following could be true?", "options": [ "A) Garibaldi's second meeting is with Soleimani.", "B) Garibaldi's third meeting is with Matsuba.", "C) Garibaldi's fourth meeting is with Soleimani.", "D) Garibaldi's fifth meeting is with Matsuba.", "E) Garibaldi's sixth meeting is with Soleimani." ], "answer": "D" }, { "id": "ar_lsat_200410_3-G_1_3", "context": "In the course of one month Garibaldi has exactly seven different meetings. Each of her meetings is with exactly one of five foreign dignitaries: Fuentes, Matsuba, Rhee, Soleimani, or Tbahi. The following constraints govern Garibaldi's meetings: She has exactly three meetings with Fuentes, and exactly one with each of the other dignitaries. She does not have any meetings in a row with Fuentes. Her meeting with Soleimani is the very next one after her meeting with Tbahi. Neither the first nor last of her meetings is with Matsuba.", "question": "If Garibaldi's second meeting is with Fuentes, then which one of the following is a complete and accurate list of the dignitaries with any one of whom Garibaldi's fourth meeting could be?", "options": [ "A) Fuentes, Soleimani, Rhee", "B) Matsuba, Rhee, Tbahi", "C) Matsuba, Soleimani", "D) Rhee, Tbahi", "E) Fuentes, Soleimani" ], "answer": "E" }, { "id": "ar_lsat_200410_3-G_1_4", "context": "In the course of one month Garibaldi has exactly seven different meetings. Each of her meetings is with exactly one of five foreign dignitaries: Fuentes, Matsuba, Rhee, Soleimani, or Tbahi. The following constraints govern Garibaldi's meetings: She has exactly three meetings with Fuentes, and exactly one with each of the other dignitaries. She does not have any meetings in a row with Fuentes. Her meeting with Soleimani is the very next one after her meeting with Tbahi. Neither the first nor last of her meetings is with Matsuba.", "question": "If Garibaldi's meeting with Rhee is the very next one after Garibaldi's meeting with Soleimani, then which one of the following must be true?", "options": [ "A) Garibaldi's third meeting is with Fuentes.", "B) Garibaldi's fourth meeting is with Rhee.", "C) Garibaldi's fifth meeting is with Fuentes.", "D) Garibaldi's sixth meeting is with Rhee.", "E) Garibaldi's seventh meeting is with Fuentes." ], "answer": "E" }, { "id": "ar_lsat_200410_3-G_1_5", "context": "In the course of one month Garibaldi has exactly seven different meetings. Each of her meetings is with exactly one of five foreign dignitaries: Fuentes, Matsuba, Rhee, Soleimani, or Tbahi. The following constraints govern Garibaldi's meetings: She has exactly three meetings with Fuentes, and exactly one with each of the other dignitaries. She does not have any meetings in a row with Fuentes. Her meeting with Soleimani is the very next one after her meeting with Tbahi. Neither the first nor last of her meetings is with Matsuba.", "question": "If Garibaldi's first meeting is with Tbahi, then Garibaldi's meeting with Rhee could be the", "options": [ "A) second meeting", "B) third meeting", "C) fifth meeting", "D) sixth meeting", "E) seventh meeting" ], "answer": "D" }, { "id": "ar_lsat_200410_3-G_1_6", "context": "In the course of one month Garibaldi has exactly seven different meetings. Each of her meetings is with exactly one of five foreign dignitaries: Fuentes, Matsuba, Rhee, Soleimani, or Tbahi. The following constraints govern Garibaldi's meetings: She has exactly three meetings with Fuentes, and exactly one with each of the other dignitaries. She does not have any meetings in a row with Fuentes. Her meeting with Soleimani is the very next one after her meeting with Tbahi. Neither the first nor last of her meetings is with Matsuba.", "question": "If Garibaldi's meeting with Matsuba is the very next meeting after Garibaldi's meeting with Rhee, then with which one of the following dignitaries must Garibaldi's fourth meeting be?", "options": [ "A) Fuentes", "B) Matsuba", "C) Rhee", "D) Soleimani", "E) Tbahi" ], "answer": "A" }, { "id": "ar_lsat_200410_3-G_2_7", "context": "During a certain week, an animal shelter places exactly six dogs—a greyhound, a husky, a keeshond, a Labrador retriever, a poodle, and a schnauzer—with new owners. Two are placed on Monday, two on Tuesday, and the remaining two on Wednesday, consistent with the following conditions: The Labrador retriever is placed on the same day as the poodle. The greyhound is not placed on the same day as the husky. If the keeshond is placed on Monday, the greyhound is placed on Tuesday. If the schnauzer is placed on Wednesday, the husky is placed on Tuesday.", "question": "Which one of the following could be a complete and accurate matching of dogs to the days on which they are placed?", "options": [ "A) Monday: greyhound, Labrador retriever Tuesday: husky, poodle Wednesday: keeshond, schnauzer", "B) Monday: greyhound, keeshond Tuesday: Labrador retriever, poodle Wednesday: husky, schnauzer", "C) Monday: keeshond, schnauzer Tuesday: greyhound, husky Wednesday: Labrador retriever, poodle", "D) Monday: Labrador retriever, poodle Tuesday: greyhound, keeshond Wednesday: husky, schnauzer", "E) Monday: Labrador retriever, poodle Tuesday: husky, keeshond Wednesday: greyhound, schnauzer" ], "answer": "E" }, { "id": "ar_lsat_200410_3-G_2_8", "context": "During a certain week, an animal shelter places exactly six dogs—a greyhound, a husky, a keeshond, a Labrador retriever, a poodle, and a schnauzer—with new owners. Two are placed on Monday, two on Tuesday, and the remaining two on Wednesday, consistent with the following conditions: The Labrador retriever is placed on the same day as the poodle. The greyhound is not placed on the same day as the husky. If the keeshond is placed on Monday, the greyhound is placed on Tuesday. If the schnauzer is placed on Wednesday, the husky is placed on Tuesday.", "question": "Which one of the following must be true?", "options": [ "A) The keeshond is not placed on the same day as the greyhound.", "B) The keeshond is not placed on the same day as the schnauzer.", "C) The schnauzer is not placed on the same day as the husky.", "D) The greyhound is placed on the same day as the schnauzer.", "E) The husky is placed on the same day as the keeshond." ], "answer": "B" }, { "id": "ar_lsat_200410_3-G_2_9", "context": "During a certain week, an animal shelter places exactly six dogs—a greyhound, a husky, a keeshond, a Labrador retriever, a poodle, and a schnauzer—with new owners. Two are placed on Monday, two on Tuesday, and the remaining two on Wednesday, consistent with the following conditions: The Labrador retriever is placed on the same day as the poodle. The greyhound is not placed on the same day as the husky. If the keeshond is placed on Monday, the greyhound is placed on Tuesday. If the schnauzer is placed on Wednesday, the husky is placed on Tuesday.", "question": "If the poodle is placed on Tuesday, then which one of the following could be true?", "options": [ "A) The greyhound is placed on Monday.", "B) The keeshond is placed on Monday.", "C) The Labrador retriever is placed on Monday.", "D) The husky is placed on Tuesday.", "E) The schnauzer is placed on Wednesday." ], "answer": "A" }, { "id": "ar_lsat_200410_3-G_2_10", "context": "During a certain week, an animal shelter places exactly six dogs—a greyhound, a husky, a keeshond, a Labrador retriever, a poodle, and a schnauzer—with new owners. Two are placed on Monday, two on Tuesday, and the remaining two on Wednesday, consistent with the following conditions: The Labrador retriever is placed on the same day as the poodle. The greyhound is not placed on the same day as the husky. If the keeshond is placed on Monday, the greyhound is placed on Tuesday. If the schnauzer is placed on Wednesday, the husky is placed on Tuesday.", "question": "If the greyhound is placed on the same day as the keeshond, then which one of the following must be true?", "options": [ "A) The husky is placed on Monday.", "B) The Labrador retriever is placed on Monday.", "C) The keeshond is placed on Tuesday.", "D) The poodle is not placed on Wednesday.", "E) The schnauzer is not placed on Wednesday." ], "answer": "E" }, { "id": "ar_lsat_200410_3-G_2_11", "context": "During a certain week, an animal shelter places exactly six dogs—a greyhound, a husky, a keeshond, a Labrador retriever, a poodle, and a schnauzer—with new owners. Two are placed on Monday, two on Tuesday, and the remaining two on Wednesday, consistent with the following conditions: The Labrador retriever is placed on the same day as the poodle. The greyhound is not placed on the same day as the husky. If the keeshond is placed on Monday, the greyhound is placed on Tuesday. If the schnauzer is placed on Wednesday, the husky is placed on Tuesday.", "question": "If the husky is placed the day before the schnauzer, then which one of the following CANNOT be true?", "options": [ "A) The husky is placed on Monday.", "B) The keeshond is placed on Monday.", "C) The greyhound is placed on Tuesday.", "D) The poodle is placed on Tuesday.", "E) The poodle is placed on Wednesday." ], "answer": "D" }, { "id": "ar_lsat_200410_3-G_2_12", "context": "During a certain week, an animal shelter places exactly six dogs—a greyhound, a husky, a keeshond, a Labrador retriever, a poodle, and a schnauzer—with new owners. Two are placed on Monday, two on Tuesday, and the remaining two on Wednesday, consistent with the following conditions: The Labrador retriever is placed on the same day as the poodle. The greyhound is not placed on the same day as the husky. If the keeshond is placed on Monday, the greyhound is placed on Tuesday. If the schnauzer is placed on Wednesday, the husky is placed on Tuesday.", "question": "If the greyhound is placed the day before the poodle, then which one of the following CANNOT be placed on Tuesday?", "options": [ "A) the husky", "B) the keeshond", "C) the Labrador retriever", "D) the poodle", "E) the schnauzer" ], "answer": "A" }, { "id": "ar_lsat_200410_3-G_3_13", "context": "A tour group plans to visit exactly five archaeological sites. Each site was discovered by exactly one of the following archaeologists—Ferrara, Gallagher, Oliphant—and each dates from the eighth, ninth, or tenth century (A.D.). The tour must satisfy the following conditions: The site visited second dates from the ninth century. Neither the site visited fourth nor the site visited fifth was discovered by Oliphant. Exactly one of the sites was discovered by Gallagher, and it dates from the tenth century. If a site dates from the eighth century, it was discovered by Oliphant. The site visited third dates from a more recent century than does either the site visited first or that visited fourth.", "question": "Which one of the following could be an accurate list of the discoverers of the five sites, listed in the order in which the sites are visited?", "options": [ "A) Oliphant, Oliphant, Gallagher, Oliphant, Ferrara", "B) Gallagher, Oliphant, Ferrara, Ferrara, Ferrara", "C) Oliphant, Gallagher, Oliphant, Ferrara, Ferrara", "D) Oliphant, Oliphant, Gallagher, Ferrara, Gallagher", "E) Ferrara, Oliphant, Gallagher, Ferrara, Ferrara" ], "answer": "E" }, { "id": "ar_lsat_200410_3-G_3_14", "context": "A tour group plans to visit exactly five archaeological sites. Each site was discovered by exactly one of the following archaeologists—Ferrara, Gallagher, Oliphant—and each dates from the eighth, ninth, or tenth century (A.D.). The tour must satisfy the following conditions: The site visited second dates from the ninth century. Neither the site visited fourth nor the site visited fifth was discovered by Oliphant. Exactly one of the sites was discovered by Gallagher, and it dates from the tenth century. If a site dates from the eighth century, it was discovered by Oliphant. The site visited third dates from a more recent century than does either the site visited first or that visited fourth.", "question": "If exactly one of the five sites the tour group visits dates from the tenth century, then which one of the following CANNOT be a site that was discovered by Ferrara?", "options": [ "A) the site visited first", "B) the site visited second", "C) the site visited third", "D) the site visited fourth", "E) the site visited fifth" ], "answer": "C" }, { "id": "ar_lsat_200410_3-G_3_15", "context": "A tour group plans to visit exactly five archaeological sites. Each site was discovered by exactly one of the following archaeologists—Ferrara, Gallagher, Oliphant—and each dates from the eighth, ninth, or tenth century (A.D.). The tour must satisfy the following conditions: The site visited second dates from the ninth century. Neither the site visited fourth nor the site visited fifth was discovered by Oliphant. Exactly one of the sites was discovered by Gallagher, and it dates from the tenth century. If a site dates from the eighth century, it was discovered by Oliphant. The site visited third dates from a more recent century than does either the site visited first or that visited fourth.", "question": "Which one of the following could be a site that dates from the eighth century?", "options": [ "A) the site visited first", "B) the site visited second", "C) the site visited third", "D) the site visited fourth", "E) the site visited fifth" ], "answer": "A" }, { "id": "ar_lsat_200410_3-G_3_16", "context": "A tour group plans to visit exactly five archaeological sites. Each site was discovered by exactly one of the following archaeologists—Ferrara, Gallagher, Oliphant—and each dates from the eighth, ninth, or tenth century (A.D.). The tour must satisfy the following conditions: The site visited second dates from the ninth century. Neither the site visited fourth nor the site visited fifth was discovered by Oliphant. Exactly one of the sites was discovered by Gallagher, and it dates from the tenth century. If a site dates from the eighth century, it was discovered by Oliphant. The site visited third dates from a more recent century than does either the site visited first or that visited fourth.", "question": "Which one of the following is a complete and accurate list of the sites each of which CANNOT be the site discovered by Gallagher?", "options": [ "A) third, fourth, fifth", "B) second, third, fourth", "C) first, fourth, fifth", "D) first, second, fifth", "E) first, second, fourth" ], "answer": "E" }, { "id": "ar_lsat_200410_3-G_3_17", "context": "A tour group plans to visit exactly five archaeological sites. Each site was discovered by exactly one of the following archaeologists—Ferrara, Gallagher, Oliphant—and each dates from the eighth, ninth, or tenth century (A.D.). The tour must satisfy the following conditions: The site visited second dates from the ninth century. Neither the site visited fourth nor the site visited fifth was discovered by Oliphant. Exactly one of the sites was discovered by Gallagher, and it dates from the tenth century. If a site dates from the eighth century, it was discovered by Oliphant. The site visited third dates from a more recent century than does either the site visited first or that visited fourth.", "question": "The tour group could visit at most how many sites that were discovered by Ferrara?", "options": [ "A) one", "B) two", "C) three", "D) four", "E) five" ], "answer": "D" }, { "id": "ar_lsat_200410_3-G_4_18", "context": "Each day of a five-day workweek (Monday through Friday), Anastasia parks for the entire day in exactly one of three downtown parking lots—X, Y, and Z. One of the lots costs $10 for the day, another costs $12, and the other costs $15. Anastasia parks in each of the three lots at least once during her workweek. The following conditions must apply: On Thursday, Anastasia parks in the $15 lot. Lot X costs more than lot Z. The lot Anastasia parks in on Wednesday costs more than the one she parks in on Friday. Anastasia parks in lot Z on more days of the workweek than she parks in lot X.", "question": "Which one of the following could be a complete and accurate list of which lot Anastasia parks in each day, listed in order from Monday through Friday?", "options": [ "A) Y, Z, X, Y, Z", "B) Y, Z, Z, Y, X", "C) Z, Z, X, X, Y", "D) Z, Z, X, X, Z", "E) Z, Z, X, Z, Y" ], "answer": "A" }, { "id": "ar_lsat_200410_3-G_4_19", "context": "Each day of a five-day workweek (Monday through Friday), Anastasia parks for the entire day in exactly one of three downtown parking lots—X, Y, and Z. One of the lots costs $10 for the day, another costs $12, and the other costs $15. Anastasia parks in each of the three lots at least once during her workweek. The following conditions must apply: On Thursday, Anastasia parks in the $15 lot. Lot X costs more than lot Z. The lot Anastasia parks in on Wednesday costs more than the one she parks in on Friday. Anastasia parks in lot Z on more days of the workweek than she parks in lot X.", "question": "Anastasia CANNOT park in the $15 lot on which one of the following days?", "options": [ "A) Monday", "B) Tuesday", "C) Wednesday", "D) Thursday", "E) Friday" ], "answer": "E" }, { "id": "ar_lsat_200410_3-G_4_20", "context": "Each day of a five-day workweek (Monday through Friday), Anastasia parks for the entire day in exactly one of three downtown parking lots—X, Y, and Z. One of the lots costs $10 for the day, another costs $12, and the other costs $15. Anastasia parks in each of the three lots at least once during her workweek. The following conditions must apply: On Thursday, Anastasia parks in the $15 lot. Lot X costs more than lot Z. The lot Anastasia parks in on Wednesday costs more than the one she parks in on Friday. Anastasia parks in lot Z on more days of the workweek than she parks in lot X.", "question": "If lot Z is the $12 lot, then on which one of the following days must Anastasia park in lot Y?", "options": [ "A) Monday", "B) Tuesday", "C) Wednesday", "D) Thursday", "E) Friday" ], "answer": "E" }, { "id": "ar_lsat_200410_3-G_4_21", "context": "Each day of a five-day workweek (Monday through Friday), Anastasia parks for the entire day in exactly one of three downtown parking lots—X, Y, and Z. One of the lots costs $10 for the day, another costs $12, and the other costs $15. Anastasia parks in each of the three lots at least once during her workweek. The following conditions must apply: On Thursday, Anastasia parks in the $15 lot. Lot X costs more than lot Z. The lot Anastasia parks in on Wednesday costs more than the one she parks in on Friday. Anastasia parks in lot Z on more days of the workweek than she parks in lot X.", "question": "Anastasia CANNOT park in lot Z on which one of the following days?", "options": [ "A) Monday", "B) Tuesday", "C) Wednesday", "D) Thursday", "E) Friday" ], "answer": "D" }, { "id": "ar_lsat_200410_3-G_4_22", "context": "Each day of a five-day workweek (Monday through Friday), Anastasia parks for the entire day in exactly one of three downtown parking lots—X, Y, and Z. One of the lots costs $10 for the day, another costs $12, and the other costs $15. Anastasia parks in each of the three lots at least once during her workweek. The following conditions must apply: On Thursday, Anastasia parks in the $15 lot. Lot X costs more than lot Z. The lot Anastasia parks in on Wednesday costs more than the one she parks in on Friday. Anastasia parks in lot Z on more days of the workweek than she parks in lot X.", "question": "Which one of the following could be a complete and accurate list of the days on which Anastasia parks in the $10 lot?", "options": [ "A) Monday", "B) Tuesday", "C) Monday, Tuesday", "D) Monday, Wednesday", "E) Monday, Thursday" ], "answer": "C" }, { "id": "ar_lsat_200412_3-G_1_1", "context": "On one afternoon, Patterson meets individually with each of exactly five clients—Reilly, Sanchez, Tang, Upton, and Yansky—and also goes to the gym by herself for a workout. Patterson's workout and her five meetings each start at either 1:00, 2:00, 3:00, 4:00, 5:00, or 6:00. The following conditions must apply: Patterson meets with Sanchez at some time before her workout. Patterson meets with Tang at some time after her workout. Patterson meets with Yansky either immediately before or immediately after her workout. Patterson meets with Upton at some time before she meets with Reilly.", "question": "Which one of the following could be an acceptable schedule of Patterson's workout and meetings, in order from 1:00 to 6:00?", "options": [ "A) Yansky, workout, Upton, Reilly, Sanchez, Tang", "B) Upton, Tang, Sanchez, Yansky, workout, Reilly", "C) Upton, Reilly, Sanchez, workout, Tang, Yansky", "D) Sanchez, Yansky, workout, Reilly, Tang, Upton", "E) Sanchez, Upton, workout, Yansky, Tang, Reilly" ], "answer": "E" }, { "id": "ar_lsat_200412_3-G_1_2", "context": "On one afternoon, Patterson meets individually with each of exactly five clients—Reilly, Sanchez, Tang, Upton, and Yansky—and also goes to the gym by herself for a workout. Patterson's workout and her five meetings each start at either 1:00, 2:00, 3:00, 4:00, 5:00, or 6:00. The following conditions must apply: Patterson meets with Sanchez at some time before her workout. Patterson meets with Tang at some time after her workout. Patterson meets with Yansky either immediately before or immediately after her workout. Patterson meets with Upton at some time before she meets with Reilly.", "question": "How many of the clients are there, any one of whom could meet with Patterson at 1:00?", "options": [ "A) one", "B) two", "C) three", "D) four", "E) five" ], "answer": "B" }, { "id": "ar_lsat_200412_3-G_1_3", "context": "On one afternoon, Patterson meets individually with each of exactly five clients—Reilly, Sanchez, Tang, Upton, and Yansky—and also goes to the gym by herself for a workout. Patterson's workout and her five meetings each start at either 1:00, 2:00, 3:00, 4:00, 5:00, or 6:00. The following conditions must apply: Patterson meets with Sanchez at some time before her workout. Patterson meets with Tang at some time after her workout. Patterson meets with Yansky either immediately before or immediately after her workout. Patterson meets with Upton at some time before she meets with Reilly.", "question": "Patterson CANNOT meet with Upton at which one of the following times?", "options": [ "A) 1:00", "B) 2:00", "C) 3:00", "D) 4:00", "E) 5:00" ], "answer": "C" }, { "id": "ar_lsat_200412_3-G_1_4", "context": "On one afternoon, Patterson meets individually with each of exactly five clients—Reilly, Sanchez, Tang, Upton, and Yansky—and also goes to the gym by herself for a workout. Patterson's workout and her five meetings each start at either 1:00, 2:00, 3:00, 4:00, 5:00, or 6:00. The following conditions must apply: Patterson meets with Sanchez at some time before her workout. Patterson meets with Tang at some time after her workout. Patterson meets with Yansky either immediately before or immediately after her workout. Patterson meets with Upton at some time before she meets with Reilly.", "question": "If Patterson meets with Sanchez the hour before she meets with Yansky, then each of the following could be true EXCEPT:", "options": [ "A) Patterson meets with Reilly at 2:00.", "B) Patterson meets with Yansky at 3:00.", "C) Patterson meets with Tang at 4:00.", "D) Patterson meets with Yansky at 5:00.", "E) Patterson meets with Tang at 6:00." ], "answer": "D" }, { "id": "ar_lsat_200412_3-G_1_5", "context": "On one afternoon, Patterson meets individually with each of exactly five clients—Reilly, Sanchez, Tang, Upton, and Yansky—and also goes to the gym by herself for a workout. Patterson's workout and her five meetings each start at either 1:00, 2:00, 3:00, 4:00, 5:00, or 6:00. The following conditions must apply: Patterson meets with Sanchez at some time before her workout. Patterson meets with Tang at some time after her workout. Patterson meets with Yansky either immediately before or immediately after her workout. Patterson meets with Upton at some time before she meets with Reilly.", "question": "If Patterson meets with Tang at 4:00, then which one of the following must be true?", "options": [ "A) Patterson meets with Reilly at 5:00.", "B) Patterson meets with Upton at 5:00.", "C) Patterson meets with Yansky at 2:00.", "D) Patterson meets with Yansky at 3:00.", "E) Patterson's workout is at 2:00." ], "answer": "B" }, { "id": "ar_lsat_200412_3-G_1_6", "context": "On one afternoon, Patterson meets individually with each of exactly five clients—Reilly, Sanchez, Tang, Upton, and Yansky—and also goes to the gym by herself for a workout. Patterson's workout and her five meetings each start at either 1:00, 2:00, 3:00, 4:00, 5:00, or 6:00. The following conditions must apply: Patterson meets with Sanchez at some time before her workout. Patterson meets with Tang at some time after her workout. Patterson meets with Yansky either immediately before or immediately after her workout. Patterson meets with Upton at some time before she meets with Reilly.", "question": "Which one of the following could be the order of Patterson's meetings, from earliest to latest?", "options": [ "A) Upton, Yansky, Sanchez, Reilly, Tang", "B) Upton, Reilly, Sanchez, Tang, Yansky", "C) Sanchez, Yansky, Reilly, Tang, Upton", "D) Sanchez, Upton, Tang, Yansky, Reilly", "E) Sanchez, Upton, Reilly, Yansky, Tang" ], "answer": "E" }, { "id": "ar_lsat_200412_3-G_2_7", "context": "Exactly six people—Lulu, Nam, Ofelia, Pachai, Santiago, and Tyrone—are the only contestants in a chess tournament. The tournament consists of four games, played one after the other. Exactly two people play in each game, and each person plays in at least one game. The following conditions must apply: Tyrone does not play in the first or third game. Lulu plays in the last game. Nam plays in only one game and it is not against Pachai. Santiago plays in exactly two games, one just before and one just after the only game that Ofelia plays in.", "question": "Which one of the following could be an accurate list of the contestants who play in each of the four games?", "options": [ "A) first game: Pachai, Santiago; second game: Ofelia, Tyrone; third game: Pachai, Santiago; fourth game: Lulu, Nam", "B) first game: Lulu, Nam; second game: Pachai, Santiago; third game: Ofelia, Tyrone; fourth game: Lulu, Santiago", "C) first game: Pachai, Santiago; second game: Lulu, Tyrone; third game: Nam, Ofelia; fourth game: Lulu, Nam", "D) first game: Nam, Santiago; second game: Nam, Ofelia; third game: Pachai, Santiago; fourth game: Lulu, Tyrone", "E) first game: Lulu, Nam; second game: Santiago, Tyrone; third game: Lulu, Ofelia; fourth game: Pachai, Santiago" ], "answer": "A" }, { "id": "ar_lsat_200412_3-G_2_8", "context": "Exactly six people—Lulu, Nam, Ofelia, Pachai, Santiago, and Tyrone—are the only contestants in a chess tournament. The tournament consists of four games, played one after the other. Exactly two people play in each game, and each person plays in at least one game. The following conditions must apply: Tyrone does not play in the first or third game. Lulu plays in the last game. Nam plays in only one game and it is not against Pachai. Santiago plays in exactly two games, one just before and one just after the only game that Ofelia plays in.", "question": "Which one of the following contestants could play in two consecutive games?", "options": [ "A) Lulu", "B) Nam", "C) Ofelia", "D) Santiago", "E) Tyrone" ], "answer": "A" }, { "id": "ar_lsat_200412_3-G_2_9", "context": "Exactly six people—Lulu, Nam, Ofelia, Pachai, Santiago, and Tyrone—are the only contestants in a chess tournament. The tournament consists of four games, played one after the other. Exactly two people play in each game, and each person plays in at least one game. The following conditions must apply: Tyrone does not play in the first or third game. Lulu plays in the last game. Nam plays in only one game and it is not against Pachai. Santiago plays in exactly two games, one just before and one just after the only game that Ofelia plays in.", "question": "If Tyrone plays in the fourth game, then which one of the following could be true?", "options": [ "A) Nam plays in the second game.", "B) Ofelia plays in the third game.", "C) Santiago plays in the second game.", "D) Nam plays a game against Lulu.", "E) Pachai plays a game against Lulu." ], "answer": "A" }, { "id": "ar_lsat_200412_3-G_2_10", "context": "Exactly six people—Lulu, Nam, Ofelia, Pachai, Santiago, and Tyrone—are the only contestants in a chess tournament. The tournament consists of four games, played one after the other. Exactly two people play in each game, and each person plays in at least one game. The following conditions must apply: Tyrone does not play in the first or third game. Lulu plays in the last game. Nam plays in only one game and it is not against Pachai. Santiago plays in exactly two games, one just before and one just after the only game that Ofelia plays in.", "question": "Which one of the following could be true?", "options": [ "A) Pachai plays against Lulu in the first game.", "B) Pachai plays against Nam in the second game.", "C) Santiago plays against Ofelia in the second game.", "D) Pachai plays against Lulu in the third game.", "E) Nam plays against Santiago in the fourth game." ], "answer": "A" }, { "id": "ar_lsat_200412_3-G_2_11", "context": "Exactly six people—Lulu, Nam, Ofelia, Pachai, Santiago, and Tyrone—are the only contestants in a chess tournament. The tournament consists of four games, played one after the other. Exactly two people play in each game, and each person plays in at least one game. The following conditions must apply: Tyrone does not play in the first or third game. Lulu plays in the last game. Nam plays in only one game and it is not against Pachai. Santiago plays in exactly two games, one just before and one just after the only game that Ofelia plays in.", "question": "Which one of the following is a complete and accurate list of the contestants who CANNOT play against Tyrone in any game?", "options": [ "A) Lulu, Pachai", "B) Nam, Ofelia", "C) Nam, Pachai", "D) Nam, Santiago", "E) Ofelia, Pachai" ], "answer": "C" }, { "id": "ar_lsat_200412_3-G_2_12", "context": "Exactly six people—Lulu, Nam, Ofelia, Pachai, Santiago, and Tyrone—are the only contestants in a chess tournament. The tournament consists of four games, played one after the other. Exactly two people play in each game, and each person plays in at least one game. The following conditions must apply: Tyrone does not play in the first or third game. Lulu plays in the last game. Nam plays in only one game and it is not against Pachai. Santiago plays in exactly two games, one just before and one just after the only game that Ofelia plays in.", "question": "If Ofelia plays in the third game, which one of the following must be true?", "options": [ "A) Lulu plays in the third game.", "B) Nam plays in the third game.", "C) Pachai plays in the first game.", "D) Pachai plays in the third game.", "E) Tyrone plays in the second game." ], "answer": "E" }, { "id": "ar_lsat_200412_3-G_3_13", "context": "An album contains photographs picturing seven friends: Raimundo, Selma, Ty, Umiko, Wendy, Yakira, Zack. The friends appear either alone or in groups with one another, in accordance with the following: Wendy appears in every photograph that Selma appears in. Selma appears in every photograph that Umiko appears in. Raimundo appears in every photograph that Yakira does not appear in. Neither Ty nor Raimundo appears in any photograph that Wendy appears in.", "question": "Which one of the following could be a complete and accurate list of the friends who appear together in a photograph?", "options": [ "A) Raimundo, Selma, Ty, Wendy", "B) Raimundo, Ty, Yakira, Zack", "C) Raimundo, Wendy, Yakira, Zack", "D) Selma, Ty, Umiko, Yakira", "E) Selma, Ty, Umiko, Zack" ], "answer": "B" }, { "id": "ar_lsat_200412_3-G_3_14", "context": "An album contains photographs picturing seven friends: Raimundo, Selma, Ty, Umiko, Wendy, Yakira, Zack. The friends appear either alone or in groups with one another, in accordance with the following: Wendy appears in every photograph that Selma appears in. Selma appears in every photograph that Umiko appears in. Raimundo appears in every photograph that Yakira does not appear in. Neither Ty nor Raimundo appears in any photograph that Wendy appears in.", "question": "If Ty and Zack appear together in a photograph, then which one of the following must be true?", "options": [ "A) Selma also appears in the photograph.", "B) Yakira also appears in the photograph.", "C) Wendy also appears in the photograph.", "D) Raimundo does not appear in the photograph.", "E) Umiko does not appear in the photograph." ], "answer": "E" }, { "id": "ar_lsat_200412_3-G_3_15", "context": "An album contains photographs picturing seven friends: Raimundo, Selma, Ty, Umiko, Wendy, Yakira, Zack. The friends appear either alone or in groups with one another, in accordance with the following: Wendy appears in every photograph that Selma appears in. Selma appears in every photograph that Umiko appears in. Raimundo appears in every photograph that Yakira does not appear in. Neither Ty nor Raimundo appears in any photograph that Wendy appears in.", "question": "What is the maximum number of friends who could appear in a photograph that Yakira does not appear in?", "options": [ "A) six", "B) five", "C) four", "D) three", "E) two" ], "answer": "D" }, { "id": "ar_lsat_200412_3-G_3_16", "context": "An album contains photographs picturing seven friends: Raimundo, Selma, Ty, Umiko, Wendy, Yakira, Zack. The friends appear either alone or in groups with one another, in accordance with the following: Wendy appears in every photograph that Selma appears in. Selma appears in every photograph that Umiko appears in. Raimundo appears in every photograph that Yakira does not appear in. Neither Ty nor Raimundo appears in any photograph that Wendy appears in.", "question": "If Umiko and Zack appear together in a photograph, then exactly how many of the other friends must also appear in that photograph?", "options": [ "A) four", "B) three", "C) two", "D) one", "E) zero" ], "answer": "B" }, { "id": "ar_lsat_200412_3-G_3_17", "context": "An album contains photographs picturing seven friends: Raimundo, Selma, Ty, Umiko, Wendy, Yakira, Zack. The friends appear either alone or in groups with one another, in accordance with the following: Wendy appears in every photograph that Selma appears in. Selma appears in every photograph that Umiko appears in. Raimundo appears in every photograph that Yakira does not appear in. Neither Ty nor Raimundo appears in any photograph that Wendy appears in.", "question": "If exactly three friends appear together in a photograph, then each of the following could be true EXCEPT:", "options": [ "A) Selma and Zack both appear in the photograph.", "B) Ty and Yakira both appear in the photograph.", "C) Wendy and Selma both appear in the photograph.", "D) Yakira and Zack both appear in the photograph.", "E) Zack and Raimundo both appear in the photograph." ], "answer": "A" }, { "id": "ar_lsat_200412_3-G_4_18", "context": "The Export Alliance consists of exactly three nations: Nation X, Nation Y, and Nation Z. Each nation in the Alliance exports exactly two of the following five crops: oranges, rice, soybeans, tea, and wheat. Each of these crops is exported by at least one of the nations in the Alliance. The following conditions hold: None of the nations exports both wheat and oranges. Nation X exports soybeans if, but only if, Nation Y does also. If Nation Y exports rice, then Nations X and Z both export tea. Nation Y does not export any crop that Nation Z exports.", "question": "Which one of the following could be an accurate list, for each of the nations, of the crops it exports?", "options": [ "A) Nation X: oranges, rice; Nation Y: oranges, tea; Nation Z: soybeans, wheat", "B) Nation X: oranges, tea; Nation Y: oranges, rice; Nation Z: soybeans, wheat", "C) Nation X: oranges, wheat; Nation Y: oranges, tea; Nation Z: rice, soybeans", "D) Nation X: rice, wheat; Nation Y: oranges, tea; Nation Z: oranges, soybeans", "E) Nation X: soybeans, rice; Nation Y: oranges, tea; Nation Z: soybeans, wheat" ], "answer": "A" }, { "id": "ar_lsat_200412_3-G_4_19", "context": "The Export Alliance consists of exactly three nations: Nation X, Nation Y, and Nation Z. Each nation in the Alliance exports exactly two of the following five crops: oranges, rice, soybeans, tea, and wheat. Each of these crops is exported by at least one of the nations in the Alliance. The following conditions hold: None of the nations exports both wheat and oranges. Nation X exports soybeans if, but only if, Nation Y does also. If Nation Y exports rice, then Nations X and Z both export tea. Nation Y does not export any crop that Nation Z exports.", "question": "If Nation X exports soybeans and tea, then which one of the following could be true?", "options": [ "A) Nation Y exports oranges.", "B) Nation Y exports rice.", "C) Nation Y exports tea.", "D) Nation Z exports soybeans.", "E) Nation Z exports tea." ], "answer": "A" }, { "id": "ar_lsat_200412_3-G_4_20", "context": "The Export Alliance consists of exactly three nations: Nation X, Nation Y, and Nation Z. Each nation in the Alliance exports exactly two of the following five crops: oranges, rice, soybeans, tea, and wheat. Each of these crops is exported by at least one of the nations in the Alliance. The following conditions hold: None of the nations exports both wheat and oranges. Nation X exports soybeans if, but only if, Nation Y does also. If Nation Y exports rice, then Nations X and Z both export tea. Nation Y does not export any crop that Nation Z exports.", "question": "If Nation Z exports tea and wheat, then which one of the following must be true?", "options": [ "A) Nation X exports oranges.", "B) Nation X exports tea.", "C) Nation X exports wheat.", "D) Nation Y exports rice.", "E) Nation Y exports soybeans." ], "answer": "E" }, { "id": "ar_lsat_200412_3-G_4_21", "context": "The Export Alliance consists of exactly three nations: Nation X, Nation Y, and Nation Z. Each nation in the Alliance exports exactly two of the following five crops: oranges, rice, soybeans, tea, and wheat. Each of these crops is exported by at least one of the nations in the Alliance. The following conditions hold: None of the nations exports both wheat and oranges. Nation X exports soybeans if, but only if, Nation Y does also. If Nation Y exports rice, then Nations X and Z both export tea. Nation Y does not export any crop that Nation Z exports.", "question": "It CANNOT be the case that both Nation X and Nation Z export which one of the following crops?", "options": [ "A) oranges", "B) rice", "C) soybeans", "D) tea", "E) wheat" ], "answer": "C" }, { "id": "ar_lsat_200412_3-G_4_22", "context": "The Export Alliance consists of exactly three nations: Nation X, Nation Y, and Nation Z. Each nation in the Alliance exports exactly two of the following five crops: oranges, rice, soybeans, tea, and wheat. Each of these crops is exported by at least one of the nations in the Alliance. The following conditions hold: None of the nations exports both wheat and oranges. Nation X exports soybeans if, but only if, Nation Y does also. If Nation Y exports rice, then Nations X and Z both export tea. Nation Y does not export any crop that Nation Z exports.", "question": "Which one of the following pairs CANNOT be the two crops that Nation Y exports?", "options": [ "A) oranges and rice", "B) oranges and soybeans", "C) rice and tea", "D) rice and wheat", "E) soybeans and wheat" ], "answer": "C" }, { "id": "ar_lsat_200506_4-G_1_1", "context": "Exactly six guideposts, numbered 1 through 6, mark a mountain trail. Each guidepost pictures a different one of six animals—fox, grizzly, hare, lynx, moose, or porcupine. The following conditions must apply: The grizzly is pictured on either guidepost 3 or guidepost 4. The moose guidepost is numbered lower than the hare guidepost. The lynx guidepost is numbered lower than the moose guidepost but higher than the fox guidepost.", "question": "Which one of the following could be an accurate list of the animals pictured on the guideposts, listed in order from guidepost 1 through guidepost 6?", "options": [ "A) fox, lynx, grizzly, porcupine, moose, hare", "B) fox, lynx, moose, hare, grizzly, porcupine", "C) fox, moose, grizzly, lynx, hare, porcupine", "D) lynx, fox, moose, grizzly, hare, porcupine", "E) porcupine, fox, hare, grizzly, lynx, moose" ], "answer": "A" }, { "id": "ar_lsat_200506_4-G_1_2", "context": "Exactly six guideposts, numbered 1 through 6, mark a mountain trail. Each guidepost pictures a different one of six animals—fox, grizzly, hare, lynx, moose, or porcupine. The following conditions must apply: The grizzly is pictured on either guidepost 3 or guidepost 4. The moose guidepost is numbered lower than the hare guidepost. The lynx guidepost is numbered lower than the moose guidepost but higher than the fox guidepost.", "question": "Which one of the following animals CANNOT be the one pictured on guidepost 3?", "options": [ "A) fox", "B) grizzly", "C) lynx", "D) moose", "E) porcupine" ], "answer": "A" }, { "id": "ar_lsat_200506_4-G_1_3", "context": "Exactly six guideposts, numbered 1 through 6, mark a mountain trail. Each guidepost pictures a different one of six animals—fox, grizzly, hare, lynx, moose, or porcupine. The following conditions must apply: The grizzly is pictured on either guidepost 3 or guidepost 4. The moose guidepost is numbered lower than the hare guidepost. The lynx guidepost is numbered lower than the moose guidepost but higher than the fox guidepost.", "question": "If the moose is pictured on guidepost 3, then which one of the following is the lowest numbered guidepost that could picture the porcupine?", "options": [ "A) guidepost 1", "B) guidepost 2", "C) guidepost 4", "D) guidepost 5", "E) guidepost 6" ], "answer": "D" }, { "id": "ar_lsat_200506_4-G_1_4", "context": "Exactly six guideposts, numbered 1 through 6, mark a mountain trail. Each guidepost pictures a different one of six animals—fox, grizzly, hare, lynx, moose, or porcupine. The following conditions must apply: The grizzly is pictured on either guidepost 3 or guidepost 4. The moose guidepost is numbered lower than the hare guidepost. The lynx guidepost is numbered lower than the moose guidepost but higher than the fox guidepost.", "question": "If guidepost 5 does not picture the moose, then which one of the following must be true?", "options": [ "A) The lynx is pictured on guidepost 2.", "B) The moose is pictured on guidepost 3.", "C) The grizzly is pictured on guidepost 4.", "D) The porcupine is pictured on guidepost 5.", "E) The hare is pictured on guidepost 6." ], "answer": "A" }, { "id": "ar_lsat_200506_4-G_1_5", "context": "Exactly six guideposts, numbered 1 through 6, mark a mountain trail. Each guidepost pictures a different one of six animals—fox, grizzly, hare, lynx, moose, or porcupine. The following conditions must apply: The grizzly is pictured on either guidepost 3 or guidepost 4. The moose guidepost is numbered lower than the hare guidepost. The lynx guidepost is numbered lower than the moose guidepost but higher than the fox guidepost.", "question": "Which one of the following animals could be pictured on any one of the six guideposts?", "options": [ "A) fox", "B) hare", "C) lynx", "D) moose", "E) porcupine" ], "answer": "E" }, { "id": "ar_lsat_200506_4-G_1_6", "context": "Exactly six guideposts, numbered 1 through 6, mark a mountain trail. Each guidepost pictures a different one of six animals—fox, grizzly, hare, lynx, moose, or porcupine. The following conditions must apply: The grizzly is pictured on either guidepost 3 or guidepost 4. The moose guidepost is numbered lower than the hare guidepost. The lynx guidepost is numbered lower than the moose guidepost but higher than the fox guidepost.", "question": "If the moose guidepost is numbered exactly one higher than the lynx guidepost, then which one of the following could be true?", "options": [ "A) Guidepost 5 pictures the hare.", "B) Guidepost 4 pictures the moose.", "C) Guidepost 4 pictures the porcupine.", "D) Guidepost 3 pictures the lynx.", "E) Guidepost 3 pictures the porcupine." ], "answer": "A" }, { "id": "ar_lsat_200506_4-G_2_7", "context": "Each side of four cassette tapes—Tapes 1 through 4—contains exactly one of the following four genres: folk, hip-hop, jazz, and rock. The following conditions must apply: Each genre is found on exactly two of the eight sides. Tape 1 has jazz on at least one side, but neither hip-hop nor rock. Tape 2 has no jazz. Folk is not on any tape numbered exactly one higher than a tape that has any rock on it.", "question": "Which one of the following could be an accurate matching of tapes with the musical genres found on them?", "options": [ "A) Tape 1: folk and jazz; Tape 2: folk and jazz; Tape 3: hip-hop and rock; Tape 4: hip-hop and rock", "B) Tape 1: folk and jazz; Tape 2: folk and rock; Tape 3: hip-hop and jazz; Tape 4: hip-hop and rock", "C) Tape 1: folk and jazz; Tape 2: folk and rock; Tape 3: two sides of jazz; Tape 4: two sides of hip-hop", "D) Tape 1: hip-hop and jazz; Tape 2: folk and hip-hop; Tape 3: folk and jazz; Tape 4: two sides of rock", "E) Tape 1: two sides of jazz; Tape 2: folk and rock; Tape 3: hip-hop and rock; Tape 4: folk and hip-hop" ], "answer": "B" }, { "id": "ar_lsat_200506_4-G_2_8", "context": "Each side of four cassette tapes—Tapes 1 through 4—contains exactly one of the following four genres: folk, hip-hop, jazz, and rock. The following conditions must apply: Each genre is found on exactly two of the eight sides. Tape 1 has jazz on at least one side, but neither hip-hop nor rock. Tape 2 has no jazz. Folk is not on any tape numbered exactly one higher than a tape that has any rock on it.", "question": "Which one of the following must be true?", "options": [ "A) If Tape 1 has two sides of jazz, Tape 4 has at least one side of rock.", "B) If Tape 2 has two sides of folk, Tape 3 has at least one side of hip-hop.", "C) If Tape 2 has two sides of rock, Tape 4 has at least one side of folk.", "D) If Tape 3 has two sides of folk, Tape 2 has at least one side of jazz.", "E) If Tape 4 has two sides of hip-hop, Tape 3 has at least one side of folk." ], "answer": "C" }, { "id": "ar_lsat_200506_4-G_2_9", "context": "Each side of four cassette tapes—Tapes 1 through 4—contains exactly one of the following four genres: folk, hip-hop, jazz, and rock. The following conditions must apply: Each genre is found on exactly two of the eight sides. Tape 1 has jazz on at least one side, but neither hip-hop nor rock. Tape 2 has no jazz. Folk is not on any tape numbered exactly one higher than a tape that has any rock on it.", "question": "Which one of the following could be true?", "options": [ "A) Tape 1 has jazz on both sides while Tape 4 has folk and hip-hop.", "B) Tape 2 has hip-hop on one side while Tape 3 has hip-hop and jazz.", "C) Tape 3 has folk on both sides while Tape 4 has jazz and rock.", "D) Tape 3 has jazz on one side while Tape 4 has folk on both sides.", "E) Tapes 2 and 3 each have jazz on one side." ], "answer": "B" }, { "id": "ar_lsat_200506_4-G_2_10", "context": "Each side of four cassette tapes—Tapes 1 through 4—contains exactly one of the following four genres: folk, hip-hop, jazz, and rock. The following conditions must apply: Each genre is found on exactly two of the eight sides. Tape 1 has jazz on at least one side, but neither hip-hop nor rock. Tape 2 has no jazz. Folk is not on any tape numbered exactly one higher than a tape that has any rock on it.", "question": "Which one of the following could be true?", "options": [ "A) Tape 1 has two sides of folk.", "B) Tape 2 has both hip-hop and jazz.", "C) Tape 4 has both folk and rock.", "D) Tapes 1 and 4 each have a side of hip-hop.", "E) Tapes 3 and 4 each have a side of folk." ], "answer": "C" }, { "id": "ar_lsat_200506_4-G_2_11", "context": "Each side of four cassette tapes—Tapes 1 through 4—contains exactly one of the following four genres: folk, hip-hop, jazz, and rock. The following conditions must apply: Each genre is found on exactly two of the eight sides. Tape 1 has jazz on at least one side, but neither hip-hop nor rock. Tape 2 has no jazz. Folk is not on any tape numbered exactly one higher than a tape that has any rock on it.", "question": "Which one of the following CANNOT be true?", "options": [ "A) Tape 2 has rock on both sides while Tape 3 has hip-hop on both sides.", "B) Tape 3 has rock on both sides while Tape 2 has hip-hop on both sides.", "C) Tape 3 has rock on both sides while Tape 4 has hip-hop on both sides.", "D) Tape 4 has rock on both sides while Tape 2 has hip-hop on both sides.", "E) Tape 4 has rock on both sides while Tape 3 has hip-hop on both sides." ], "answer": "B" }, { "id": "ar_lsat_200506_4-G_3_12", "context": "One afternoon, a single thunderstorm passes over exactly five towns—Jackson, Lofton, Nordique, Oceana, and Plattesville—dropping some form of precipitation on each. The storm is the only source of precipitation in the towns that afternoon. On some towns, it drops both hail and rain; on the remaining towns, it drops only rain. It passes over each town exactly once and does not pass over any two towns at the same time. The following must obtain: The third town the storm passes over is Plattesville. The storm drops hail and rain on the second town it passes over. The storm drops only rain on both Lofton and Oceana. The storm passes over Jackson at some time after it passes over Lofton and at some time after it passes over Nordique.", "question": "Which one of the following could be the order, from first to fifth, in which the storm passes over the towns?", "options": [ "A) Lofton, Nordique, Plattesville, Oceana, Jackson", "B) Lofton, Oceana, Plattesville, Nordique, Jackson", "C) Nordique, Jackson, Plattesville, Oceana, Lofton", "D) Nordique, Lofton, Plattesville, Jackson, Oceana", "E) Nordique, Plattesville, Lofton, Oceana, Jackson" ], "answer": "A" }, { "id": "ar_lsat_200506_4-G_3_13", "context": "One afternoon, a single thunderstorm passes over exactly five towns—Jackson, Lofton, Nordique, Oceana, and Plattesville—dropping some form of precipitation on each. The storm is the only source of precipitation in the towns that afternoon. On some towns, it drops both hail and rain; on the remaining towns, it drops only rain. It passes over each town exactly once and does not pass over any two towns at the same time. The following must obtain: The third town the storm passes over is Plattesville. The storm drops hail and rain on the second town it passes over. The storm drops only rain on both Lofton and Oceana. The storm passes over Jackson at some time after it passes over Lofton and at some time after it passes over Nordique.", "question": "If the storm passes over Oceana at some time before it passes over Jackson, then each of the following could be true EXCEPT:", "options": [ "A) The first town the storm passes over is Oceana.", "B) The fourth town the storm passes over is Lofton.", "C) The fourth town the storm passes over receives hail and rain.", "D) The fifth town the storm passes over is Jackson.", "E) The fifth town the storm passes over receives only rain." ], "answer": "C" }, { "id": "ar_lsat_200506_4-G_3_14", "context": "One afternoon, a single thunderstorm passes over exactly five towns—Jackson, Lofton, Nordique, Oceana, and Plattesville—dropping some form of precipitation on each. The storm is the only source of precipitation in the towns that afternoon. On some towns, it drops both hail and rain; on the remaining towns, it drops only rain. It passes over each town exactly once and does not pass over any two towns at the same time. The following must obtain: The third town the storm passes over is Plattesville. The storm drops hail and rain on the second town it passes over. The storm drops only rain on both Lofton and Oceana. The storm passes over Jackson at some time after it passes over Lofton and at some time after it passes over Nordique.", "question": "If the storm drops only rain on each town it passes over after passing over Lofton, then which one of the following could be false?", "options": [ "A) The first town the storm passes over is Oceana.", "B) The fourth town the storm passes over receives only rain.", "C) The fifth town the storm passes over is Jackson.", "D) Jackson receives only rain.", "E) Plattesville receives only rain." ], "answer": "E" }, { "id": "ar_lsat_200506_4-G_3_15", "context": "One afternoon, a single thunderstorm passes over exactly five towns—Jackson, Lofton, Nordique, Oceana, and Plattesville—dropping some form of precipitation on each. The storm is the only source of precipitation in the towns that afternoon. On some towns, it drops both hail and rain; on the remaining towns, it drops only rain. It passes over each town exactly once and does not pass over any two towns at the same time. The following must obtain: The third town the storm passes over is Plattesville. The storm drops hail and rain on the second town it passes over. The storm drops only rain on both Lofton and Oceana. The storm passes over Jackson at some time after it passes over Lofton and at some time after it passes over Nordique.", "question": "If the storm passes over Jackson at some time before it passes over Oceana, then which one of the following could be false?", "options": [ "A) The storm passes over Lofton at some time before it passes over Jackson.", "B) The storm passes over Lofton at some time before it passes over Oceana.", "C) The storm passes over Nordique at some time before it passes over Oceana.", "D) The fourth town the storm passes over receives only rain.", "E) The fifth town the storm passes over receives only rain." ], "answer": "D" }, { "id": "ar_lsat_200506_4-G_3_16", "context": "One afternoon, a single thunderstorm passes over exactly five towns—Jackson, Lofton, Nordique, Oceana, and Plattesville—dropping some form of precipitation on each. The storm is the only source of precipitation in the towns that afternoon. On some towns, it drops both hail and rain; on the remaining towns, it drops only rain. It passes over each town exactly once and does not pass over any two towns at the same time. The following must obtain: The third town the storm passes over is Plattesville. The storm drops hail and rain on the second town it passes over. The storm drops only rain on both Lofton and Oceana. The storm passes over Jackson at some time after it passes over Lofton and at some time after it passes over Nordique.", "question": "If the storm passes over Oceana at some time before it passes over Lofton, then which one of the following must be true?", "options": [ "A) The third town the storm passes over receives only rain.", "B) The fourth town the storm passes over receives only rain.", "C) The fourth town the storm passes over receives hail and rain.", "D) The fifth town the storm passes over receives only rain.", "E) The fifth town the storm passes over receives hail and rain." ], "answer": "B" }, { "id": "ar_lsat_200506_4-G_4_17", "context": "A reporter is trying to uncover the workings of a secret committee. The committee has six members—French, Ghauri, Hsia, Irving, Magnus, and Pinsky—each of whom serves on at least one subcommittee. There are three subcommittees, each having three members, about which the following is known: One of the committee members serves on all three subcommittees. French does not serve on any subcommittee with Ghauri. Hsia does not serve on any subcommittee with Irving.", "question": "If French does not serve on any subcommittee with Magnus, which one of the following must be true?", "options": [ "A) French serves on a subcommittee with Hsia.", "B) French serves on a subcommittee with Irving.", "C) Irving serves on a subcommittee with Pinsky.", "D) Magnus serves on a subcommittee with Ghauri.", "E) Magnus serves on a subcommittee with Irving." ], "answer": "C" }, { "id": "ar_lsat_200506_4-G_4_18", "context": "A reporter is trying to uncover the workings of a secret committee. The committee has six members—French, Ghauri, Hsia, Irving, Magnus, and Pinsky—each of whom serves on at least one subcommittee. There are three subcommittees, each having three members, about which the following is known: One of the committee members serves on all three subcommittees. French does not serve on any subcommittee with Ghauri. Hsia does not serve on any subcommittee with Irving.", "question": "If Pinsky serves on every subcommittee on which French serves and every subcommittee on which Ghauri serves, then which one of the following could be true?", "options": [ "A) Magnus serves on every subcommittee on which French serves and every subcommittee on which Ghauri serves.", "B) Magnus serves on every subcommittee on which Hsia serves and every subcommittee on which Irving serves.", "C) Hsia serves on every subcommittee on which French serves and every subcommittee on which Ghauri serves.", "D) French serves on every subcommittee on which Pinsky serves.", "E) Hsia serves on every subcommittee on which Pinsky serves." ], "answer": "C" }, { "id": "ar_lsat_200506_4-G_4_19", "context": "A reporter is trying to uncover the workings of a secret committee. The committee has six members—French, Ghauri, Hsia, Irving, Magnus, and Pinsky—each of whom serves on at least one subcommittee. There are three subcommittees, each having three members, about which the following is known: One of the committee members serves on all three subcommittees. French does not serve on any subcommittee with Ghauri. Hsia does not serve on any subcommittee with Irving.", "question": "If Irving serves on every subcommittee on which Magnus serves, which one of the following could be true?", "options": [ "A) Magnus serves on all of the subcommittees.", "B) Irving serves on more than one subcommittee.", "C) Irving serves on every subcommittee on which Pinsky serves.", "D) French serves on a subcommittee with Magnus.", "E) Ghauri serves on a subcommittee with Magnus." ], "answer": "B" }, { "id": "ar_lsat_200506_4-G_4_20", "context": "A reporter is trying to uncover the workings of a secret committee. The committee has six members—French, Ghauri, Hsia, Irving, Magnus, and Pinsky—each of whom serves on at least one subcommittee. There are three subcommittees, each having three members, about which the following is known: One of the committee members serves on all three subcommittees. French does not serve on any subcommittee with Ghauri. Hsia does not serve on any subcommittee with Irving.", "question": "Which one of the following could be true?", "options": [ "A) French serves on all three subcommittees.", "B) Hsia serves on all three subcommittees.", "C) Ghauri serves on every subcommittee on which Magnus serves and every subcommittee on which Pinsky serves.", "D) Pinsky serves on every subcommittee on which Irving serves and every subcommittee on which Magnus serves.", "E) Magnus serves on every subcommittee on which Pinsky serves, and Pinsky serves on every subcommittee on which Magnus serves." ], "answer": "D" }, { "id": "ar_lsat_200506_4-G_4_21", "context": "A reporter is trying to uncover the workings of a secret committee. The committee has six members—French, Ghauri, Hsia, Irving, Magnus, and Pinsky—each of whom serves on at least one subcommittee. There are three subcommittees, each having three members, about which the following is known: One of the committee members serves on all three subcommittees. French does not serve on any subcommittee with Ghauri. Hsia does not serve on any subcommittee with Irving.", "question": "Which one of the following must be true?", "options": [ "A) Ghauri serves on at least two subcommittees.", "B) Irving serves on only one subcommittee.", "C) French serves on a subcommittee with Hsia.", "D) Ghauri serves on a subcommittee with Irving.", "E) Magnus serves on a subcommittee with Pinsky." ], "answer": "E" }, { "id": "ar_lsat_200506_4-G_4_22", "context": "A reporter is trying to uncover the workings of a secret committee. The committee has six members—French, Ghauri, Hsia, Irving, Magnus, and Pinsky—each of whom serves on at least one subcommittee. There are three subcommittees, each having three members, about which the following is known: One of the committee members serves on all three subcommittees. French does not serve on any subcommittee with Ghauri. Hsia does not serve on any subcommittee with Irving.", "question": "Which one of the following must be true?", "options": [ "A) Every subcommittee has either French or Ghauri as a member.", "B) Every subcommittee has either Hsia or Irving as a member.", "C) No subcommittee consists of French, Magnus, and Pinsky.", "D) Some committee member serves on exactly two subcommittees.", "E) Either Magnus or Pinsky serves on only one subcommittee." ], "answer": "D" }, { "id": "ar_lsat_200510_4-G_1_1", "context": "Exactly seven products—P, Q, R, S, T, W, and X—are each to be advertised exactly once in a section of a catalog. The order in which they will be displayed is governed by the following conditions: Q must be displayed in some position before W. R must be displayed immediately before X. T cannot be displayed immediately before or immediately after W. S must be displayed either first or seventh. Either Q or T must be displayed fourth.", "question": "Which one of the following CANNOT be the product that is displayed first?", "options": [ "A) P", "B) Q", "C) R", "D) T", "E) X" ], "answer": "E" }, { "id": "ar_lsat_200510_4-G_1_2", "context": "Exactly seven products—P, Q, R, S, T, W, and X—are each to be advertised exactly once in a section of a catalog. The order in which they will be displayed is governed by the following conditions: Q must be displayed in some position before W. R must be displayed immediately before X. T cannot be displayed immediately before or immediately after W. S must be displayed either first or seventh. Either Q or T must be displayed fourth.", "question": "If X is displayed immediately before Q, then which one of the following could be true?", "options": [ "A) T is displayed first.", "B) R is displayed fifth.", "C) Q is displayed last.", "D) Q is displayed second.", "E) P is displayed second." ], "answer": "A" }, { "id": "ar_lsat_200510_4-G_1_3", "context": "Exactly seven products—P, Q, R, S, T, W, and X—are each to be advertised exactly once in a section of a catalog. The order in which they will be displayed is governed by the following conditions: Q must be displayed in some position before W. R must be displayed immediately before X. T cannot be displayed immediately before or immediately after W. S must be displayed either first or seventh. Either Q or T must be displayed fourth.", "question": "If P is displayed second, then which one of the following could be displayed third?", "options": [ "A) R", "B) S", "C) T", "D) W", "E) X" ], "answer": "C" }, { "id": "ar_lsat_200510_4-G_1_4", "context": "Exactly seven products—P, Q, R, S, T, W, and X—are each to be advertised exactly once in a section of a catalog. The order in which they will be displayed is governed by the following conditions: Q must be displayed in some position before W. R must be displayed immediately before X. T cannot be displayed immediately before or immediately after W. S must be displayed either first or seventh. Either Q or T must be displayed fourth.", "question": "Which one of the following could be true?", "options": [ "A) Q is displayed fifth.", "B) Q is displayed seventh.", "C) R is displayed third.", "D) W is displayed third.", "E) X is displayed fifth." ], "answer": "A" }, { "id": "ar_lsat_200510_4-G_1_5", "context": "Exactly seven products—P, Q, R, S, T, W, and X—are each to be advertised exactly once in a section of a catalog. The order in which they will be displayed is governed by the following conditions: Q must be displayed in some position before W. R must be displayed immediately before X. T cannot be displayed immediately before or immediately after W. S must be displayed either first or seventh. Either Q or T must be displayed fourth.", "question": "If R is displayed sixth, then which one of the following must be displayed fifth?", "options": [ "A) P", "B) Q", "C) T", "D) W", "E) X" ], "answer": "D" }, { "id": "ar_lsat_200510_4-G_2_6", "context": "A lighting control panel has exactly seven switches, numbered from 1 to 7. Each switch is either in the on position or in the off position. The circuit load of the panel is the total number of its switches that are on. The control panel must be configured in accordance with the following conditions: If switch 1 is on, then switch 3 and switch 5 are off. If switch 4 is on, then switch 2 and switch 5 are off. The switch whose number corresponds to the circuit load of the panel is itself on.", "question": "Which one of the following could be a complete and accurate list of the switches that are on?", "options": [ "A) switch 2, switch 3, switch 4, switch 7", "B) switch 3, switch 6, switch 7", "C) switch 2, switch 5, switch 6", "D) switch 1, switch 3, switch 4", "E) switch 1, switch 5" ], "answer": "B" }, { "id": "ar_lsat_200510_4-G_2_7", "context": "A lighting control panel has exactly seven switches, numbered from 1 to 7. Each switch is either in the on position or in the off position. The circuit load of the panel is the total number of its switches that are on. The control panel must be configured in accordance with the following conditions: If switch 1 is on, then switch 3 and switch 5 are off. If switch 4 is on, then switch 2 and switch 5 are off. The switch whose number corresponds to the circuit load of the panel is itself on.", "question": "If switch 1 and switch 3 are both off, then which one of the following could be two switches that are both on?", "options": [ "A) switch 2 and switch 7", "B) switch 4 and switch 6", "C) switch 4 and switch 7", "D) switch 5 and switch 6", "E) switch 6 and switch 7" ], "answer": "A" }, { "id": "ar_lsat_200510_4-G_2_8", "context": "A lighting control panel has exactly seven switches, numbered from 1 to 7. Each switch is either in the on position or in the off position. The circuit load of the panel is the total number of its switches that are on. The control panel must be configured in accordance with the following conditions: If switch 1 is on, then switch 3 and switch 5 are off. If switch 4 is on, then switch 2 and switch 5 are off. The switch whose number corresponds to the circuit load of the panel is itself on.", "question": "If exactly two of the switches are on, then which one of the following switches must be off?", "options": [ "A) switch 3", "B) switch 4", "C) switch 5", "D) switch 6", "E) switch 7" ], "answer": "B" }, { "id": "ar_lsat_200510_4-G_2_9", "context": "A lighting control panel has exactly seven switches, numbered from 1 to 7. Each switch is either in the on position or in the off position. The circuit load of the panel is the total number of its switches that are on. The control panel must be configured in accordance with the following conditions: If switch 1 is on, then switch 3 and switch 5 are off. If switch 4 is on, then switch 2 and switch 5 are off. The switch whose number corresponds to the circuit load of the panel is itself on.", "question": "If switch 6 and switch 7 are both off, then what is the maximum circuit load of the panel?", "options": [ "A) one", "B) two", "C) three", "D) four", "E) five" ], "answer": "C" }, { "id": "ar_lsat_200510_4-G_2_10", "context": "A lighting control panel has exactly seven switches, numbered from 1 to 7. Each switch is either in the on position or in the off position. The circuit load of the panel is the total number of its switches that are on. The control panel must be configured in accordance with the following conditions: If switch 1 is on, then switch 3 and switch 5 are off. If switch 4 is on, then switch 2 and switch 5 are off. The switch whose number corresponds to the circuit load of the panel is itself on.", "question": "If switch 5 and switch 6 are both on, then which one of the following switches must be on?", "options": [ "A) switch 1", "B) switch 2", "C) switch 3", "D) switch 4", "E) switch 7" ], "answer": "C" }, { "id": "ar_lsat_200510_4-G_2_11", "context": "A lighting control panel has exactly seven switches, numbered from 1 to 7. Each switch is either in the on position or in the off position. The circuit load of the panel is the total number of its switches that are on. The control panel must be configured in accordance with the following conditions: If switch 1 is on, then switch 3 and switch 5 are off. If switch 4 is on, then switch 2 and switch 5 are off. The switch whose number corresponds to the circuit load of the panel is itself on.", "question": "What is the maximum circuit load of the panel?", "options": [ "A) three", "B) four", "C) five", "D) six", "E) seven" ], "answer": "C" }, { "id": "ar_lsat_200510_4-G_3_12", "context": "In Crescentville there are exactly five record stores, whose names are abbreviated S, T, V, X, and Z. Each of the five stores carries at least one of four distinct types of music: folk, jazz, opera, and rock. None of the stores carries any other type of music. The following conditions must hold: Exactly two of the five stores carry jazz. T carries rock and opera but no other type of music. S carries more types of music than T carries. X carries more types of music than any other store in Crescentville carries. Jazz is among the types of music S carries. V does not carry any type of music that Z carries.", "question": "Which one of the following could be true?", "options": [ "A) S carries folk and rock but neither jazz nor opera.", "B) T carries jazz but neither opera nor rock.", "C) V carries folk, rock, and opera, but not jazz.", "D) X carries folk, rock, and jazz, but not opera.", "E) Z carries folk and opera but neither rock nor jazz." ], "answer": "E" }, { "id": "ar_lsat_200510_4-G_3_13", "context": "In Crescentville there are exactly five record stores, whose names are abbreviated S, T, V, X, and Z. Each of the five stores carries at least one of four distinct types of music: folk, jazz, opera, and rock. None of the stores carries any other type of music. The following conditions must hold: Exactly two of the five stores carry jazz. T carries rock and opera but no other type of music. S carries more types of music than T carries. X carries more types of music than any other store in Crescentville carries. Jazz is among the types of music S carries. V does not carry any type of music that Z carries.", "question": "Which one of the following could be true?", "options": [ "A) S, V, and Z all carry folk.", "B) S, X, and Z all carry jazz.", "C) Of the five stores, only S and V carry jazz.", "D) Of the five stores, only T and X carry rock.", "E) Of the five stores, only S, T, and V carry opera." ], "answer": "D" }, { "id": "ar_lsat_200510_4-G_3_14", "context": "In Crescentville there are exactly five record stores, whose names are abbreviated S, T, V, X, and Z. Each of the five stores carries at least one of four distinct types of music: folk, jazz, opera, and rock. None of the stores carries any other type of music. The following conditions must hold: Exactly two of the five stores carry jazz. T carries rock and opera but no other type of music. S carries more types of music than T carries. X carries more types of music than any other store in Crescentville carries. Jazz is among the types of music S carries. V does not carry any type of music that Z carries.", "question": "If exactly one of the stores carries folk, then which one of the following could be true?", "options": [ "A) S and V carry exactly two types of music in common.", "B) T and S carry exactly two types of music in common.", "C) T and V carry exactly two types of music in common.", "D) V and X carry exactly two types of music in common.", "E) X and Z carry exactly two types of music in common." ], "answer": "B" }, { "id": "ar_lsat_200510_4-G_3_15", "context": "In Crescentville there are exactly five record stores, whose names are abbreviated S, T, V, X, and Z. Each of the five stores carries at least one of four distinct types of music: folk, jazz, opera, and rock. None of the stores carries any other type of music. The following conditions must hold: Exactly two of the five stores carry jazz. T carries rock and opera but no other type of music. S carries more types of music than T carries. X carries more types of music than any other store in Crescentville carries. Jazz is among the types of music S carries. V does not carry any type of music that Z carries.", "question": "Which one of the following must be true?", "options": [ "A) T carries exactly the same number of types of music as V carries.", "B) V carries exactly the same number of types of music as Z carries.", "C) S carries at least one more type of music than Z carries.", "D) Z carries at least one more type of music than T carries.", "E) X carries exactly two more types of music than S carries." ], "answer": "C" }, { "id": "ar_lsat_200510_4-G_3_16", "context": "In Crescentville there are exactly five record stores, whose names are abbreviated S, T, V, X, and Z. Each of the five stores carries at least one of four distinct types of music: folk, jazz, opera, and rock. None of the stores carries any other type of music. The following conditions must hold: Exactly two of the five stores carry jazz. T carries rock and opera but no other type of music. S carries more types of music than T carries. X carries more types of music than any other store in Crescentville carries. Jazz is among the types of music S carries. V does not carry any type of music that Z carries.", "question": "If V is one of exactly three stores that carry rock, then which one of the following must be true?", "options": [ "A) S and Z carry no types of music in common.", "B) S and V carry at least one type of music in common.", "C) S and Z carry at least one type of music in common.", "D) T and Z carry at least one type of music in common.", "E) T and V carry at least two types of music in common." ], "answer": "C" }, { "id": "ar_lsat_200510_4-G_3_17", "context": "In Crescentville there are exactly five record stores, whose names are abbreviated S, T, V, X, and Z. Each of the five stores carries at least one of four distinct types of music: folk, jazz, opera, and rock. None of the stores carries any other type of music. The following conditions must hold: Exactly two of the five stores carry jazz. T carries rock and opera but no other type of music. S carries more types of music than T carries. X carries more types of music than any other store in Crescentville carries. Jazz is among the types of music S carries. V does not carry any type of music that Z carries.", "question": "If S and V both carry folk, then which one of the following could be true?", "options": [ "A) S and T carry no types of music in common.", "B) S and Z carry no types of music in common.", "C) T and Z carry no types of music in common.", "D) S and Z carry two types of music in common.", "E) T and V carry two types of music in common." ], "answer": "B" }, { "id": "ar_lsat_200510_4-G_4_18", "context": "Maggie's Deli is open exactly five days every week: Monday through Friday. Its staff, each of whom works on at least one day each week, consists of exactly six people—Janice, Kevin, Nan, Ophelia, Paul, and Seymour. Exactly three of them—Janice, Nan, and Paul—are supervisors. The deli's staffing is consistent with the following: Each day's staff consists of exactly two people, at least one of whom is a supervisor. Tuesday's and Wednesday's staffs both include Ophelia. Of the days Nan works each week, at least two are consecutive. Seymour does not work on any day before the first day Paul works that week. Any day on which Kevin works is the first day during the week that some other staff member works.", "question": "Which one of the following could be an accurate staffing schedule?", "options": [ "A) Monday: Janice, Kevin Tuesday: Nan, Ophelia Wednesday: Nan, Paul Thursday: Kevin, Paul Friday: Janice, Seymour", "B) Monday: Paul, Seymour Tuesday: Ophelia, Paul Wednesday: Nan, Ophelia Thursday: Kevin, Nan Friday: Janice, Seymour", "C) Monday: Janice, Kevin Tuesday: Nan, Ophelia Wednesday: Nan, Ophelia Thursday: Kevin, Paul Friday: Paul, Seymour", "D) Monday: Janice, Kevin Tuesday: Janice, Ophelia Wednesday: Nan, Ophelia Thursday: Nan, Seymour Friday: Kevin, Paul", "E) Monday: Paul, Seymour Tuesday: Ophelia, Paul Wednesday: Nan, Ophelia Thursday: Janice, Kevin Friday: Nan, Paul" ], "answer": "C" }, { "id": "ar_lsat_200510_4-G_4_19", "context": "Maggie's Deli is open exactly five days every week: Monday through Friday. Its staff, each of whom works on at least one day each week, consists of exactly six people—Janice, Kevin, Nan, Ophelia, Paul, and Seymour. Exactly three of them—Janice, Nan, and Paul—are supervisors. The deli's staffing is consistent with the following: Each day's staff consists of exactly two people, at least one of whom is a supervisor. Tuesday's and Wednesday's staffs both include Ophelia. Of the days Nan works each week, at least two are consecutive. Seymour does not work on any day before the first day Paul works that week. Any day on which Kevin works is the first day during the week that some other staff member works.", "question": "If Kevin and Paul work Thursday, who must work Friday?", "options": [ "A) Janice", "B) Kevin", "C) Nan", "D) Paul", "E) Seymour" ], "answer": "E" }, { "id": "ar_lsat_200510_4-G_4_20", "context": "Maggie's Deli is open exactly five days every week: Monday through Friday. Its staff, each of whom works on at least one day each week, consists of exactly six people—Janice, Kevin, Nan, Ophelia, Paul, and Seymour. Exactly three of them—Janice, Nan, and Paul—are supervisors. The deli's staffing is consistent with the following: Each day's staff consists of exactly two people, at least one of whom is a supervisor. Tuesday's and Wednesday's staffs both include Ophelia. Of the days Nan works each week, at least two are consecutive. Seymour does not work on any day before the first day Paul works that week. Any day on which Kevin works is the first day during the week that some other staff member works.", "question": "Each of the following could be true EXCEPT:", "options": [ "A) Janice works Monday and Tuesday.", "B) Kevin and Paul work Friday.", "C) Seymour works Monday and Friday.", "D) Janice and Kevin work Thursday.", "E) Paul works Monday and Friday." ], "answer": "B" }, { "id": "ar_lsat_200510_4-G_4_21", "context": "Maggie's Deli is open exactly five days every week: Monday through Friday. Its staff, each of whom works on at least one day each week, consists of exactly six people—Janice, Kevin, Nan, Ophelia, Paul, and Seymour. Exactly three of them—Janice, Nan, and Paul—are supervisors. The deli's staffing is consistent with the following: Each day's staff consists of exactly two people, at least one of whom is a supervisor. Tuesday's and Wednesday's staffs both include Ophelia. Of the days Nan works each week, at least two are consecutive. Seymour does not work on any day before the first day Paul works that week. Any day on which Kevin works is the first day during the week that some other staff member works.", "question": "Which one of the following CANNOT be the pair of staff that works Monday?", "options": [ "A) Janice and Seymour", "B) Kevin and Paul", "C) Paul and Seymour", "D) Nan and Ophelia", "E) Janice and Nan" ], "answer": "A" }, { "id": "ar_lsat_200510_4-G_4_22", "context": "Maggie's Deli is open exactly five days every week: Monday through Friday. Its staff, each of whom works on at least one day each week, consists of exactly six people—Janice, Kevin, Nan, Ophelia, Paul, and Seymour. Exactly three of them—Janice, Nan, and Paul—are supervisors. The deli's staffing is consistent with the following: Each day's staff consists of exactly two people, at least one of whom is a supervisor. Tuesday's and Wednesday's staffs both include Ophelia. Of the days Nan works each week, at least two are consecutive. Seymour does not work on any day before the first day Paul works that week. Any day on which Kevin works is the first day during the week that some other staff member works.", "question": "Which one of the following could be true?", "options": [ "A) Nan works Wednesday and Friday only.", "B) Seymour works Monday and Paul works Tuesday.", "C) Kevin works Monday, Wednesday, and Friday.", "D) Nan works Wednesday with Ophelia and Thursday with Kevin.", "E) Ophelia and Kevin work Tuesday." ], "answer": "B" }, { "id": "ar_lsat_200512_2-G_1_1", "context": "Henri has exactly five electrical appliances in his dormitory room: a hairdryer, a microwave oven, a razor, a television, and a vacuum. As a consequence of fire department regulations, Henri can use these appliances only in accordance with the following conditions: Henri cannot use both the hairdryer and the razor simultaneously. Henri cannot use both the hairdryer and the television simultaneously. When Henri uses the vacuum, he cannot at the same time use any of the following: the hairdryer, the razor, and the television.", "question": "Which one of the following is a pair of appliances Henri could be using simultaneously?", "options": [ "A) the hairdryer and the razor", "B) the hairdryer and the television", "C) the razor and the television", "D) the razor and the vacuum", "E) the television and the vacuum" ], "answer": "C" }, { "id": "ar_lsat_200512_2-G_1_2", "context": "Henri has exactly five electrical appliances in his dormitory room: a hairdryer, a microwave oven, a razor, a television, and a vacuum. As a consequence of fire department regulations, Henri can use these appliances only in accordance with the following conditions: Henri cannot use both the hairdryer and the razor simultaneously. Henri cannot use both the hairdryer and the television simultaneously. When Henri uses the vacuum, he cannot at the same time use any of the following: the hairdryer, the razor, and the television.", "question": "Assume that Henri is using exactly two appliances and is not using the microwave oven. Which one of the following is a list of all the appliances, other than the microwave oven, that Henri CANNOT be using?", "options": [ "A) hairdryer", "B) razor", "C) vacuum", "D) hairdryer, razor", "E) hairdryer, vacuum" ], "answer": "E" }, { "id": "ar_lsat_200512_2-G_1_3", "context": "Henri has exactly five electrical appliances in his dormitory room: a hairdryer, a microwave oven, a razor, a television, and a vacuum. As a consequence of fire department regulations, Henri can use these appliances only in accordance with the following conditions: Henri cannot use both the hairdryer and the razor simultaneously. Henri cannot use both the hairdryer and the television simultaneously. When Henri uses the vacuum, he cannot at the same time use any of the following: the hairdryer, the razor, and the television.", "question": "Which one of the following CANNOT be true?", "options": [ "A) Henri uses the hairdryer while using the microwave oven.", "B) Henri uses the microwave oven while using the razor.", "C) Henri uses the microwave oven while using two other appliances.", "D) Henri uses the television while using two other appliances.", "E) Henri uses the vacuum while using two other appliances." ], "answer": "E" }, { "id": "ar_lsat_200512_2-G_1_4", "context": "Henri has exactly five electrical appliances in his dormitory room: a hairdryer, a microwave oven, a razor, a television, and a vacuum. As a consequence of fire department regulations, Henri can use these appliances only in accordance with the following conditions: Henri cannot use both the hairdryer and the razor simultaneously. Henri cannot use both the hairdryer and the television simultaneously. When Henri uses the vacuum, he cannot at the same time use any of the following: the hairdryer, the razor, and the television.", "question": "If Henri were to use exactly three appliances, then what is the total number of different groups of three appliances any one of which could be the group of appliances he is using?", "options": [ "A) one", "B) two", "C) three", "D) four", "E) five" ], "answer": "A" }, { "id": "ar_lsat_200512_2-G_1_5", "context": "Henri has exactly five electrical appliances in his dormitory room: a hairdryer, a microwave oven, a razor, a television, and a vacuum. As a consequence of fire department regulations, Henri can use these appliances only in accordance with the following conditions: Henri cannot use both the hairdryer and the razor simultaneously. Henri cannot use both the hairdryer and the television simultaneously. When Henri uses the vacuum, he cannot at the same time use any of the following: the hairdryer, the razor, and the television.", "question": "Which one of the following statements, if true, guarantees that Henri is using no more than one of the following: the hairdryer, the razor, the television?", "options": [ "A) Henri is using the hairdryer.", "B) Henri is using the television.", "C) Henri is not using the hairdryer.", "D) Henri is not using the microwave oven.", "E) Henri is not using the vacuum." ], "answer": "A" }, { "id": "ar_lsat_200512_2-G_1_6", "context": "Henri has exactly five electrical appliances in his dormitory room: a hairdryer, a microwave oven, a razor, a television, and a vacuum. As a consequence of fire department regulations, Henri can use these appliances only in accordance with the following conditions: Henri cannot use both the hairdryer and the razor simultaneously. Henri cannot use both the hairdryer and the television simultaneously. When Henri uses the vacuum, he cannot at the same time use any of the following: the hairdryer, the razor, and the television.", "question": "Which one of the following must be true?", "options": [ "A) Henri uses at most three appliances simultaneously.", "B) Henri uses at most four appliances simultaneously.", "C) Henri uses at most one other appliance while using the microwave oven.", "D) Henri uses at most one other appliance while using the razor.", "E) Henri uses at least two other appliances while using the hairdryer." ], "answer": "A" }, { "id": "ar_lsat_200512_2-G_2_7", "context": "A farmer harvests eight separate fields—G, H, J, K, L, M, P, and T. Each field is harvested exactly once, and no two fields are harvested simultaneously. Once the harvesting of a field begins, no other fields are harvested until the harvesting of that field is complete. The farmer harvests the fields in an order consistent with the following conditions: Both P and G are harvested at some time before K. Both H and L are harvested at some time before J. K is harvested at some time before M but after L. T is harvested at some time before M.", "question": "Which one of the following could be true?", "options": [ "A) J is the first field harvested.", "B) K is the second field harvested.", "C) M is the sixth field harvested.", "D) G is the seventh field harvested.", "E) T is the eighth field harvested." ], "answer": "C" }, { "id": "ar_lsat_200512_2-G_2_8", "context": "A farmer harvests eight separate fields—G, H, J, K, L, M, P, and T. Each field is harvested exactly once, and no two fields are harvested simultaneously. Once the harvesting of a field begins, no other fields are harvested until the harvesting of that field is complete. The farmer harvests the fields in an order consistent with the following conditions: Both P and G are harvested at some time before K. Both H and L are harvested at some time before J. K is harvested at some time before M but after L. T is harvested at some time before M.", "question": "If M is the seventh field harvested, then any one of the following could be the fifth field harvested EXCEPT:", "options": [ "A) H", "B) J", "C) K", "D) L", "E) P" ], "answer": "B" }, { "id": "ar_lsat_200512_2-G_2_9", "context": "A farmer harvests eight separate fields—G, H, J, K, L, M, P, and T. Each field is harvested exactly once, and no two fields are harvested simultaneously. Once the harvesting of a field begins, no other fields are harvested until the harvesting of that field is complete. The farmer harvests the fields in an order consistent with the following conditions: Both P and G are harvested at some time before K. Both H and L are harvested at some time before J. K is harvested at some time before M but after L. T is harvested at some time before M.", "question": "Which one of the following CANNOT be the field that is harvested fifth?", "options": [ "A) G", "B) J", "C) M", "D) P", "E) T" ], "answer": "C" }, { "id": "ar_lsat_200512_2-G_2_10", "context": "A farmer harvests eight separate fields—G, H, J, K, L, M, P, and T. Each field is harvested exactly once, and no two fields are harvested simultaneously. Once the harvesting of a field begins, no other fields are harvested until the harvesting of that field is complete. The farmer harvests the fields in an order consistent with the following conditions: Both P and G are harvested at some time before K. Both H and L are harvested at some time before J. K is harvested at some time before M but after L. T is harvested at some time before M.", "question": "If J is the third field harvested, then which one of the following must be true?", "options": [ "A) L is the first field harvested.", "B) H is the second field harvested.", "C) T is the fourth field harvested.", "D) K is the seventh field harvested.", "E) M is the eighth field harvested." ], "answer": "E" }, { "id": "ar_lsat_200512_2-G_2_11", "context": "A farmer harvests eight separate fields—G, H, J, K, L, M, P, and T. Each field is harvested exactly once, and no two fields are harvested simultaneously. Once the harvesting of a field begins, no other fields are harvested until the harvesting of that field is complete. The farmer harvests the fields in an order consistent with the following conditions: Both P and G are harvested at some time before K. Both H and L are harvested at some time before J. K is harvested at some time before M but after L. T is harvested at some time before M.", "question": "If H is the sixth field harvested, then which one of the following must be true?", "options": [ "A) G is harvested at some time before T.", "B) H is harvested at some time before K.", "C) J is harvested at some time before M.", "D) K is harvested at some time before J.", "E) T is harvested at some time before K." ], "answer": "D" }, { "id": "ar_lsat_200512_2-G_2_12", "context": "A farmer harvests eight separate fields—G, H, J, K, L, M, P, and T. Each field is harvested exactly once, and no two fields are harvested simultaneously. Once the harvesting of a field begins, no other fields are harvested until the harvesting of that field is complete. The farmer harvests the fields in an order consistent with the following conditions: Both P and G are harvested at some time before K. Both H and L are harvested at some time before J. K is harvested at some time before M but after L. T is harvested at some time before M.", "question": "If L is the fifth field harvested, then which one of the following could be true?", "options": [ "A) J is harvested at some time before G.", "B) J is harvested at some time before T.", "C) K is harvested at some time before T.", "D) M is harvested at some time before H.", "E) M is harvested at some time before J." ], "answer": "E" }, { "id": "ar_lsat_200512_2-G_3_13", "context": "In a repair facility there are exactly six technicians: Stacy, Urma, Wim, Xena, Yolanda, and Zane. Each technician repairs machines of at least one of the following three types—radios, televisions, and VCRs—and no other types. The following conditions apply: Xena and exactly three other technicians repair radios. Yolanda repairs both televisions and VCRs. Stacy does not repair any type of machine that Yolanda repairs. Zane repairs more types of machines than Yolanda repairs. Wim does not repair any type of machine that Stacy repairs. Urma repairs exactly two types of machines.", "question": "For exactly how many of the six technicians is it possible to determine exactly which of the three types of machines each repairs?", "options": [ "A) one", "B) two", "C) three", "D) four", "E) five" ], "answer": "C" }, { "id": "ar_lsat_200512_2-G_3_14", "context": "In a repair facility there are exactly six technicians: Stacy, Urma, Wim, Xena, Yolanda, and Zane. Each technician repairs machines of at least one of the following three types—radios, televisions, and VCRs—and no other types. The following conditions apply: Xena and exactly three other technicians repair radios. Yolanda repairs both televisions and VCRs. Stacy does not repair any type of machine that Yolanda repairs. Zane repairs more types of machines than Yolanda repairs. Wim does not repair any type of machine that Stacy repairs. Urma repairs exactly two types of machines.", "question": "Which one of the following must be true?", "options": [ "A) Of the types of machines repaired by Stacy there is exactly one type that Urma also repairs.", "B) Of the types of machines repaired by Yolanda there is exactly one type that Xena also repairs.", "C) Of the types of machines repaired by Wim there is exactly one type that Xena also repairs.", "D) There is more than one type of machine that both Wim and Yolanda repair.", "E) There is more than one type of machine that both Urma and Wim repair." ], "answer": "A" }, { "id": "ar_lsat_200512_2-G_3_15", "context": "In a repair facility there are exactly six technicians: Stacy, Urma, Wim, Xena, Yolanda, and Zane. Each technician repairs machines of at least one of the following three types—radios, televisions, and VCRs—and no other types. The following conditions apply: Xena and exactly three other technicians repair radios. Yolanda repairs both televisions and VCRs. Stacy does not repair any type of machine that Yolanda repairs. Zane repairs more types of machines than Yolanda repairs. Wim does not repair any type of machine that Stacy repairs. Urma repairs exactly two types of machines.", "question": "Which one of the following must be false?", "options": [ "A) Exactly one of the six technicians repairs exactly one type of machine.", "B) Exactly two of the six technicians repair exactly one type of machine each.", "C) Exactly three of the six technicians repair exactly one type of machine each.", "D) Exactly one of the six technicians repairs exactly two types of machines.", "E) Exactly three of the six technicians repair exactly two types of machines each." ], "answer": "D" }, { "id": "ar_lsat_200512_2-G_3_16", "context": "In a repair facility there are exactly six technicians: Stacy, Urma, Wim, Xena, Yolanda, and Zane. Each technician repairs machines of at least one of the following three types—radios, televisions, and VCRs—and no other types. The following conditions apply: Xena and exactly three other technicians repair radios. Yolanda repairs both televisions and VCRs. Stacy does not repair any type of machine that Yolanda repairs. Zane repairs more types of machines than Yolanda repairs. Wim does not repair any type of machine that Stacy repairs. Urma repairs exactly two types of machines.", "question": "Which one of the following pairs of technicians could repair all and only the same types of machines as each other?", "options": [ "A) Stacy and Urma", "B) Urma and Yolanda", "C) Urma and Xena", "D) Wim and Xena", "E) Xena and Yolanda" ], "answer": "C" }, { "id": "ar_lsat_200512_2-G_3_17", "context": "In a repair facility there are exactly six technicians: Stacy, Urma, Wim, Xena, Yolanda, and Zane. Each technician repairs machines of at least one of the following three types—radios, televisions, and VCRs—and no other types. The following conditions apply: Xena and exactly three other technicians repair radios. Yolanda repairs both televisions and VCRs. Stacy does not repair any type of machine that Yolanda repairs. Zane repairs more types of machines than Yolanda repairs. Wim does not repair any type of machine that Stacy repairs. Urma repairs exactly two types of machines.", "question": "Which one of the following must be true?", "options": [ "A) There is exactly one type of machine that both Urma and Wim repair.", "B) There is exactly one type of machine that both Urma and Xena repair.", "C) There is exactly one type of machine that both Urma and Yolanda repair.", "D) There is exactly one type of machine that both Wim and Yolanda repair.", "E) There is exactly one type of machine that both Xena and Yolanda repair." ], "answer": "C" }, { "id": "ar_lsat_200512_2-G_4_18", "context": "Three folk groups—Glenside, Hilltopper, Levon—and three rock groups—Peasant, Query, Tinhead—each perform on one of two stages, north or south. Each stage has three two-hour performances: north at 6, 8, and 10; south at 8, 10, and 12. Each group performs individually and exactly once, consistent with the following conditions: Peasant performs at 6 or 12. Glenside performs at some time before Hilltopper. If any rock group performs at 10, no folk group does. Levon and Tinhead perform on different stages. Query performs immediately after a folk group, though not necessarily on the same stage.", "question": "Which one of the following could be a complete and accurate ordering of performances on the north stage, from first to last?", "options": [ "A) Glenside, Levon, Query", "B) Glenside, Query, Hilltopper", "C) Hilltopper, Query, Peasant", "D) Peasant, Levon, Tinhead", "E) Peasant, Query, Levon" ], "answer": "A" }, { "id": "ar_lsat_200512_2-G_4_19", "context": "Three folk groups—Glenside, Hilltopper, Levon—and three rock groups—Peasant, Query, Tinhead—each perform on one of two stages, north or south. Each stage has three two-hour performances: north at 6, 8, and 10; south at 8, 10, and 12. Each group performs individually and exactly once, consistent with the following conditions: Peasant performs at 6 or 12. Glenside performs at some time before Hilltopper. If any rock group performs at 10, no folk group does. Levon and Tinhead perform on different stages. Query performs immediately after a folk group, though not necessarily on the same stage.", "question": "Which one of the following groups must perform earlier than 10?", "options": [ "A) Glenside", "B) Hilltopper", "C) Levon", "D) Peasant", "E) Tinhead" ], "answer": "A" }, { "id": "ar_lsat_200512_2-G_4_20", "context": "Three folk groups—Glenside, Hilltopper, Levon—and three rock groups—Peasant, Query, Tinhead—each perform on one of two stages, north or south. Each stage has three two-hour performances: north at 6, 8, and 10; south at 8, 10, and 12. Each group performs individually and exactly once, consistent with the following conditions: Peasant performs at 6 or 12. Glenside performs at some time before Hilltopper. If any rock group performs at 10, no folk group does. Levon and Tinhead perform on different stages. Query performs immediately after a folk group, though not necessarily on the same stage.", "question": "Which one of the following groups could perform at 6?", "options": [ "A) Glenside", "B) Hilltopper", "C) Levon", "D) Query", "E) Tinhead" ], "answer": "A" }, { "id": "ar_lsat_200512_2-G_4_21", "context": "Three folk groups—Glenside, Hilltopper, Levon—and three rock groups—Peasant, Query, Tinhead—each perform on one of two stages, north or south. Each stage has three two-hour performances: north at 6, 8, and 10; south at 8, 10, and 12. Each group performs individually and exactly once, consistent with the following conditions: Peasant performs at 6 or 12. Glenside performs at some time before Hilltopper. If any rock group performs at 10, no folk group does. Levon and Tinhead perform on different stages. Query performs immediately after a folk group, though not necessarily on the same stage.", "question": "If Query performs at 12, then which one of the following could be an accurate ordering of the performances on the north stage, from first to last?", "options": [ "A) Glenside, Levon, Query", "B) Peasant, Hilltopper, Tinhead", "C) Peasant, Tinhead, Glenside", "D) Peasant, Tinhead, Hilltopper", "E) Peasant, Tinhead, Levon" ], "answer": "D" }, { "id": "ar_lsat_200512_2-G_4_22", "context": "Three folk groups—Glenside, Hilltopper, Levon—and three rock groups—Peasant, Query, Tinhead—each perform on one of two stages, north or south. Each stage has three two-hour performances: north at 6, 8, and 10; south at 8, 10, and 12. Each group performs individually and exactly once, consistent with the following conditions: Peasant performs at 6 or 12. Glenside performs at some time before Hilltopper. If any rock group performs at 10, no folk group does. Levon and Tinhead perform on different stages. Query performs immediately after a folk group, though not necessarily on the same stage.", "question": "If a rock group performs at 10, then which one of the following must be true?", "options": [ "A) A folk group performs at 6.", "B) A folk group performs at 8.", "C) A folk group performs at 12.", "D) A rock group performs at 8.", "E) A rock group performs at 12." ], "answer": "B" }, { "id": "ar_lsat_200606_1-G_1_1", "context": "During an international film retrospective lasting six consecutive days—day 1 through day 6—exactly six different films will be shown, one each day. Twelve films will be available for presentation, two each in French, Greek, Hungarian, Italian, Norwegian, and Turkish. The presentation of the films must conform to the following conditions: Neither day 2 nor day 4 is a day on which a film in Norwegian is shown. A film in Italian is not shown unless a film in Norwegian is going to be shown the next day. A film in Greek is not shown unless a film in Italian is going to be shown the next day.", "question": "Which one of the following is an acceptable order of films for the retrospective, listed by their language, from day 1 through day 6?", "options": [ "A) French, Greek, Italian, Turkish, Norwegian, Hungarian", "B) French, Hungarian, Italian, Norwegian, French, Hungarian", "C) Hungarian, French, Norwegian, Greek, Norwegian, Italian", "D) Norwegian, Turkish, Hungarian, Italian, French, Turkish", "E) Turkish, French, Norwegian, Hungarian, French, Turkish" ], "answer": "E" }, { "id": "ar_lsat_200606_1-G_1_2", "context": "During an international film retrospective lasting six consecutive days—day 1 through day 6—exactly six different films will be shown, one each day. Twelve films will be available for presentation, two each in French, Greek, Hungarian, Italian, Norwegian, and Turkish. The presentation of the films must conform to the following conditions: Neither day 2 nor day 4 is a day on which a film in Norwegian is shown. A film in Italian is not shown unless a film in Norwegian is going to be shown the next day. A film in Greek is not shown unless a film in Italian is going to be shown the next day.", "question": "If two films in Italian are going to be shown, one on day 2 and one on day 5, then the film shown on day 1 could be in any one of the following languages EXCEPT:", "options": [ "A) French", "B) Greek", "C) Hungarian", "D) Norwegian", "E) Turkish" ], "answer": "D" }, { "id": "ar_lsat_200606_1-G_1_3", "context": "During an international film retrospective lasting six consecutive days—day 1 through day 6—exactly six different films will be shown, one each day. Twelve films will be available for presentation, two each in French, Greek, Hungarian, Italian, Norwegian, and Turkish. The presentation of the films must conform to the following conditions: Neither day 2 nor day 4 is a day on which a film in Norwegian is shown. A film in Italian is not shown unless a film in Norwegian is going to be shown the next day. A film in Greek is not shown unless a film in Italian is going to be shown the next day.", "question": "If two films in Italian are shown during the retrospective, which one of the following must be false?", "options": [ "A) A film in French is shown on day 3.", "B) A film in Greek is shown on day 1.", "C) A film in Hungarian is shown on day 6.", "D) A film in Norwegian is shown on day 5.", "E) A film in Turkish is shown on day 4." ], "answer": "A" }, { "id": "ar_lsat_200606_1-G_1_4", "context": "During an international film retrospective lasting six consecutive days—day 1 through day 6—exactly six different films will be shown, one each day. Twelve films will be available for presentation, two each in French, Greek, Hungarian, Italian, Norwegian, and Turkish. The presentation of the films must conform to the following conditions: Neither day 2 nor day 4 is a day on which a film in Norwegian is shown. A film in Italian is not shown unless a film in Norwegian is going to be shown the next day. A film in Greek is not shown unless a film in Italian is going to be shown the next day.", "question": "Which one of the following is a complete and accurate list of the days, any one of which is a day on which a film in Italian could be shown?", "options": [ "A) day 1, day 3, day 5", "B) day 2, day 4, day 5", "C) day 2, day 5, day 6", "D) day 1, day 3", "E) day 2, day 4" ], "answer": "B" }, { "id": "ar_lsat_200606_1-G_1_5", "context": "During an international film retrospective lasting six consecutive days—day 1 through day 6—exactly six different films will be shown, one each day. Twelve films will be available for presentation, two each in French, Greek, Hungarian, Italian, Norwegian, and Turkish. The presentation of the films must conform to the following conditions: Neither day 2 nor day 4 is a day on which a film in Norwegian is shown. A film in Italian is not shown unless a film in Norwegian is going to be shown the next day. A film in Greek is not shown unless a film in Italian is going to be shown the next day.", "question": "If two films in French are going to be shown, one on day 3 and one on day 5, which one of the following is a pair of films that could be shown on day 1 and day 6, respectively?", "options": [ "A) a film in French, a film in Turkish", "B) a film in Greek, a film in Hungarian", "C) a film in Italian, a film in Norwegian", "D) a film in Norwegian, a film in Turkish", "E) a film in Turkish, a film in Greek" ], "answer": "D" }, { "id": "ar_lsat_200606_1-G_1_6", "context": "During an international film retrospective lasting six consecutive days—day 1 through day 6—exactly six different films will be shown, one each day. Twelve films will be available for presentation, two each in French, Greek, Hungarian, Italian, Norwegian, and Turkish. The presentation of the films must conform to the following conditions: Neither day 2 nor day 4 is a day on which a film in Norwegian is shown. A film in Italian is not shown unless a film in Norwegian is going to be shown the next day. A film in Greek is not shown unless a film in Italian is going to be shown the next day.", "question": "If neither a film in French nor a film in Italian is shown during the retrospective, which one of the following must be true?", "options": [ "A) A film in Norwegian is shown on day 1.", "B) A film in Norwegian is shown on day 5.", "C) A film in Turkish is shown on day 4.", "D) A film in Hungarian or else a film in Norwegian is shown on day 3.", "E) A film in Hungarian or else a film in Turkish is shown on day 2." ], "answer": "E" }, { "id": "ar_lsat_200606_1-G_1_7", "context": "During an international film retrospective lasting six consecutive days—day 1 through day 6—exactly six different films will be shown, one each day. Twelve films will be available for presentation, two each in French, Greek, Hungarian, Italian, Norwegian, and Turkish. The presentation of the films must conform to the following conditions: Neither day 2 nor day 4 is a day on which a film in Norwegian is shown. A film in Italian is not shown unless a film in Norwegian is going to be shown the next day. A film in Greek is not shown unless a film in Italian is going to be shown the next day.", "question": "If a film in Greek is going to be shown at some time after a film in Norwegian, then a film in Norwegian must be shown on", "options": [ "A) day 1", "B) day 3", "C) day 5", "D) day 1 or else day 3", "E) day 3 or else day 5" ], "answer": "D" }, { "id": "ar_lsat_200606_1-G_2_8", "context": "There are exactly five pieces of mail in a mailbox: a flyer, a letter, a magazine, a postcard, and a survey. Each piece of mail is addressed to exactly one of three housemates: Georgette, Jana, or Rini. Each housemate has at least one of the pieces of mail addressed to her. The following conditions must apply: Neither the letter nor the magazine is addressed to Georgette. If the letter is addressed to Rini, then the postcard is addressed to Jana. The housemate to whom the flyer is addressed has at least one of the other pieces of mail addressed to her as well.", "question": "Which one of the following could be a complete and accurate matching of the pieces of mail to the housemates to whom they are addressed?", "options": [ "A) Georgette: the flyer, the survey Jana: the letter Rini: the magazine", "B) Georgette: the flyer, the postcard Jana: the letter, the magazine Rini: the survey", "C) Georgette: the magazine, the survey Jana: the flyer, the letter Rini: the postcard", "D) Georgette: the survey Jana: the flyer, the magazine Rini: the letter, the postcard", "E) Georgette: the survey Jana: the letter, the magazine, the postcard Rini: the flyer" ], "answer": "B" }, { "id": "ar_lsat_200606_1-G_2_9", "context": "There are exactly five pieces of mail in a mailbox: a flyer, a letter, a magazine, a postcard, and a survey. Each piece of mail is addressed to exactly one of three housemates: Georgette, Jana, or Rini. Each housemate has at least one of the pieces of mail addressed to her. The following conditions must apply: Neither the letter nor the magazine is addressed to Georgette. If the letter is addressed to Rini, then the postcard is addressed to Jana. The housemate to whom the flyer is addressed has at least one of the other pieces of mail addressed to her as well.", "question": "Which one of the following is a complete and accurate list of the pieces of mail, any one of which could be the only piece of mail addressed to Jana?", "options": [ "A) the postcard", "B) the letter, the postcard", "C) the letter, the survey", "D) the magazine, the survey", "E) the letter, the magazine, the postcard" ], "answer": "B" }, { "id": "ar_lsat_200606_1-G_2_10", "context": "There are exactly five pieces of mail in a mailbox: a flyer, a letter, a magazine, a postcard, and a survey. Each piece of mail is addressed to exactly one of three housemates: Georgette, Jana, or Rini. Each housemate has at least one of the pieces of mail addressed to her. The following conditions must apply: Neither the letter nor the magazine is addressed to Georgette. If the letter is addressed to Rini, then the postcard is addressed to Jana. The housemate to whom the flyer is addressed has at least one of the other pieces of mail addressed to her as well.", "question": "Which one of the following CANNOT be a complete and accurate list of the pieces of mail addressed to Jana?", "options": [ "A) the flyer, the letter, the magazine", "B) the flyer, the letter, the postcard", "C) the flyer, the letter, the survey", "D) the flyer, the magazine, the postcard", "E) the flyer, the magazine, the survey" ], "answer": "E" }, { "id": "ar_lsat_200606_1-G_2_11", "context": "There are exactly five pieces of mail in a mailbox: a flyer, a letter, a magazine, a postcard, and a survey. Each piece of mail is addressed to exactly one of three housemates: Georgette, Jana, or Rini. Each housemate has at least one of the pieces of mail addressed to her. The following conditions must apply: Neither the letter nor the magazine is addressed to Georgette. If the letter is addressed to Rini, then the postcard is addressed to Jana. The housemate to whom the flyer is addressed has at least one of the other pieces of mail addressed to her as well.", "question": "Which one of the following CANNOT be a complete and accurate list of the pieces of mail addressed to Rini?", "options": [ "A) the magazine, the postcard", "B) the letter, the survey", "C) the letter, the magazine", "D) the flyer, the magazine", "E) the flyer, the letter" ], "answer": "B" }, { "id": "ar_lsat_200606_1-G_2_12", "context": "There are exactly five pieces of mail in a mailbox: a flyer, a letter, a magazine, a postcard, and a survey. Each piece of mail is addressed to exactly one of three housemates: Georgette, Jana, or Rini. Each housemate has at least one of the pieces of mail addressed to her. The following conditions must apply: Neither the letter nor the magazine is addressed to Georgette. If the letter is addressed to Rini, then the postcard is addressed to Jana. The housemate to whom the flyer is addressed has at least one of the other pieces of mail addressed to her as well.", "question": "If the magazine and the survey are both addressed to the same housemate, then which one of the following could be true?", "options": [ "A) The survey is addressed to Georgette.", "B) The postcard is addressed to Rini.", "C) The magazine is addressed to Jana.", "D) The letter is addressed to Rini.", "E) The flyer is addressed to Jana." ], "answer": "E" }, { "id": "ar_lsat_200606_1-G_3_13", "context": "A summer program offers at least one of the following seven courses: geography, history, literature, mathematics, psychology, sociology, zoology. The following restrictions on the program must apply: If mathematics is offered, then either literature or sociology (but not both) is offered. If literature is offered, then geography is also offered but psychology is not. If sociology is offered, then psychology is also offered but zoology is not. If geography is offered, then both history and zoology are also offered.", "question": "Which one of the following could be a complete and accurate list of the courses offered by the summer program?", "options": [ "A) history, psychology", "B) geography, history, literature", "C) history, mathematics, psychology", "D) literature, mathematics, psychology", "E) history, literature, mathematics, sociology" ], "answer": "A" }, { "id": "ar_lsat_200606_1-G_3_14", "context": "A summer program offers at least one of the following seven courses: geography, history, literature, mathematics, psychology, sociology, zoology. The following restrictions on the program must apply: If mathematics is offered, then either literature or sociology (but not both) is offered. If literature is offered, then geography is also offered but psychology is not. If sociology is offered, then psychology is also offered but zoology is not. If geography is offered, then both history and zoology are also offered.", "question": "If the summer program offers literature, then which one of the following could be true?", "options": [ "A) Sociology is offered.", "B) History is not offered.", "C) Mathematics is not offered.", "D) A total of two courses are offered.", "E) Zoology is not offered." ], "answer": "C" }, { "id": "ar_lsat_200606_1-G_3_15", "context": "A summer program offers at least one of the following seven courses: geography, history, literature, mathematics, psychology, sociology, zoology. The following restrictions on the program must apply: If mathematics is offered, then either literature or sociology (but not both) is offered. If literature is offered, then geography is also offered but psychology is not. If sociology is offered, then psychology is also offered but zoology is not. If geography is offered, then both history and zoology are also offered.", "question": "If history is not offered by the summer program, then which one of the following is another course that CANNOT be offered?", "options": [ "A) literature", "B) mathematics", "C) psychology", "D) sociology", "E) zoology" ], "answer": "A" }, { "id": "ar_lsat_200606_1-G_3_16", "context": "A summer program offers at least one of the following seven courses: geography, history, literature, mathematics, psychology, sociology, zoology. The following restrictions on the program must apply: If mathematics is offered, then either literature or sociology (but not both) is offered. If literature is offered, then geography is also offered but psychology is not. If sociology is offered, then psychology is also offered but zoology is not. If geography is offered, then both history and zoology are also offered.", "question": "If the summer program offers mathematics, then which one of the following must be true?", "options": [ "A) Literature is offered.", "B) Psychology is offered.", "C) Sociology is offered.", "D) At least three courses are offered.", "E) At most four courses are offered." ], "answer": "D" }, { "id": "ar_lsat_200606_1-G_3_17", "context": "A summer program offers at least one of the following seven courses: geography, history, literature, mathematics, psychology, sociology, zoology. The following restrictions on the program must apply: If mathematics is offered, then either literature or sociology (but not both) is offered. If literature is offered, then geography is also offered but psychology is not. If sociology is offered, then psychology is also offered but zoology is not. If geography is offered, then both history and zoology are also offered.", "question": "Which one of the following must be false of the summer program?", "options": [ "A) Both geography and psychology are offered.", "B) Both geography and mathematics are offered.", "C) Both psychology and mathematics are offered.", "D) Both history and mathematics are offered.", "E) Both geography and sociology are offered." ], "answer": "E" }, { "id": "ar_lsat_200606_1-G_4_18", "context": "Exactly eight computer processor chips—F, G, H, J, K, L, M, and O—are ranked according to their speed from first (fastest) to eighth (slowest). The ranking must be consistent with the following: There are no ties. Either F or G is ranked first. M is not the slowest. H is faster than J, with exactly one chip intermediate in speed between them. K is faster than L, with exactly two chips intermediate in speed between them. O is slower than both J and L.", "question": "Which one of the following could be true?", "options": [ "A) F is ranked first and M is ranked eighth.", "B) G is ranked fifth and O is ranked eighth.", "C) J is ranked third and L is ranked seventh.", "D) K is ranked second and H is ranked third.", "E) M is ranked seventh and L is ranked eighth." ], "answer": "B" }, { "id": "ar_lsat_200606_1-G_4_19", "context": "Exactly eight computer processor chips—F, G, H, J, K, L, M, and O—are ranked according to their speed from first (fastest) to eighth (slowest). The ranking must be consistent with the following: There are no ties. Either F or G is ranked first. M is not the slowest. H is faster than J, with exactly one chip intermediate in speed between them. K is faster than L, with exactly two chips intermediate in speed between them. O is slower than both J and L.", "question": "H CANNOT be ranked", "options": [ "A) second", "B) third", "C) fourth", "D) fifth", "E) sixth" ], "answer": "E" }, { "id": "ar_lsat_200606_1-G_4_20", "context": "Exactly eight computer processor chips—F, G, H, J, K, L, M, and O—are ranked according to their speed from first (fastest) to eighth (slowest). The ranking must be consistent with the following: There are no ties. Either F or G is ranked first. M is not the slowest. H is faster than J, with exactly one chip intermediate in speed between them. K is faster than L, with exactly two chips intermediate in speed between them. O is slower than both J and L.", "question": "If O is faster than F, then which one of the following chips could be ranked second?", "options": [ "A) G", "B) H", "C) M", "D) J", "E) L" ], "answer": "B" }, { "id": "ar_lsat_200606_1-G_4_21", "context": "Exactly eight computer processor chips—F, G, H, J, K, L, M, and O—are ranked according to their speed from first (fastest) to eighth (slowest). The ranking must be consistent with the following: There are no ties. Either F or G is ranked first. M is not the slowest. H is faster than J, with exactly one chip intermediate in speed between them. K is faster than L, with exactly two chips intermediate in speed between them. O is slower than both J and L.", "question": "If M is faster than J, then the fastest ranking J could have is", "options": [ "A) second", "B) third", "C) fourth", "D) fifth", "E) sixth" ], "answer": "D" }, { "id": "ar_lsat_200606_1-G_4_22", "context": "Exactly eight computer processor chips—F, G, H, J, K, L, M, and O—are ranked according to their speed from first (fastest) to eighth (slowest). The ranking must be consistent with the following: There are no ties. Either F or G is ranked first. M is not the slowest. H is faster than J, with exactly one chip intermediate in speed between them. K is faster than L, with exactly two chips intermediate in speed between them. O is slower than both J and L.", "question": "Which one of the following must be true?", "options": [ "A) J is ranked no faster than fifth.", "B) K is ranked no faster than third.", "C) L is ranked no faster than fifth.", "D) M is ranked no faster than third.", "E) O is ranked no faster than eighth." ], "answer": "C" }, { "id": "ar_lsat_200609_3-G_1_1", "context": "At each of six consecutive stops—1, 2, 3, 4, 5, and 6—that a traveler must make in that order as part of a trip, she can choose one from among exactly four airlines—L, M, N, and O—on which to continue. Her choices must conform to the following constraints: Whichever airline she chooses at a stop, she chooses one of the other airlines at the next stop. She chooses the same airline at stop 1 as she does at stop 6. She chooses the same airline at stop 2 as she does at stop 4. Whenever she chooses either L or M at a stop, she does not choose N at the next stop. At stop 5, she chooses N or O.", "question": "Which one of the following could be an accurate list of the airlines the traveler chooses at each stop, in order from 1 through 6?", "options": [ "A) L, M, M, L, O, L", "B) M, L, O, M, O, M", "C) M, N, O, N, O, M", "D) M, O, N, O, N, M", "E) O, M, L, M, O, N" ], "answer": "D" }, { "id": "ar_lsat_200609_3-G_1_2", "context": "At each of six consecutive stops—1, 2, 3, 4, 5, and 6—that a traveler must make in that order as part of a trip, she can choose one from among exactly four airlines—L, M, N, and O—on which to continue. Her choices must conform to the following constraints: Whichever airline she chooses at a stop, she chooses one of the other airlines at the next stop. She chooses the same airline at stop 1 as she does at stop 6. She chooses the same airline at stop 2 as she does at stop 4. Whenever she chooses either L or M at a stop, she does not choose N at the next stop. At stop 5, she chooses N or O.", "question": "If the traveler chooses N at stop 5, which one of the following could be an accurate list of the airlines she chooses at stops 1, 2, and 3, respectively?", "options": [ "A) L, M, N", "B) L, O, N", "C) M, L, N", "D) M, L, O", "E) N, O, N" ], "answer": "B" }, { "id": "ar_lsat_200609_3-G_1_3", "context": "At each of six consecutive stops—1, 2, 3, 4, 5, and 6—that a traveler must make in that order as part of a trip, she can choose one from among exactly four airlines—L, M, N, and O—on which to continue. Her choices must conform to the following constraints: Whichever airline she chooses at a stop, she chooses one of the other airlines at the next stop. She chooses the same airline at stop 1 as she does at stop 6. She chooses the same airline at stop 2 as she does at stop 4. Whenever she chooses either L or M at a stop, she does not choose N at the next stop. At stop 5, she chooses N or O.", "question": "If the only airlines the traveler chooses for the trip are M, N, and O, and she chooses O at stop 5, then the airlines she chooses at stops 1, 2, and 3, must be, respectively,", "options": [ "A) M, O, and N", "B) M, N, and O", "C) N, M, and O", "D) N, O, and M", "E) O, M, and N" ], "answer": "C" }, { "id": "ar_lsat_200609_3-G_1_4", "context": "At each of six consecutive stops—1, 2, 3, 4, 5, and 6—that a traveler must make in that order as part of a trip, she can choose one from among exactly four airlines—L, M, N, and O—on which to continue. Her choices must conform to the following constraints: Whichever airline she chooses at a stop, she chooses one of the other airlines at the next stop. She chooses the same airline at stop 1 as she does at stop 6. She chooses the same airline at stop 2 as she does at stop 4. Whenever she chooses either L or M at a stop, she does not choose N at the next stop. At stop 5, she chooses N or O.", "question": "Which one of the following CANNOT be an accurate list of the airlines the traveler chooses at stops 1 and 2, respectively?", "options": [ "A) L, M", "B) L, O", "C) M, L", "D) M, O", "E) O, N" ], "answer": "E" }, { "id": "ar_lsat_200609_3-G_1_5", "context": "At each of six consecutive stops—1, 2, 3, 4, 5, and 6—that a traveler must make in that order as part of a trip, she can choose one from among exactly four airlines—L, M, N, and O—on which to continue. Her choices must conform to the following constraints: Whichever airline she chooses at a stop, she chooses one of the other airlines at the next stop. She chooses the same airline at stop 1 as she does at stop 6. She chooses the same airline at stop 2 as she does at stop 4. Whenever she chooses either L or M at a stop, she does not choose N at the next stop. At stop 5, she chooses N or O.", "question": "If the traveler chooses O at stop 2, which one of the following could be an accurate list of the airlines she chooses at stops 5 and 6, respectively?", "options": [ "A) M, N", "B) N, L", "C) N, O", "D) O, L", "E) O, N" ], "answer": "B" }, { "id": "ar_lsat_200609_3-G_2_6", "context": "The members of a five-person committee will be selected from among three parents—F, G, and H—three students—K, L, and M—and four teachers—U, W, X, and Z. The selection of committee members will meet the following conditions: The committee must include exactly one student. F and H cannot both be selected. M and Z cannot both be selected. U and W cannot both be selected. F cannot be selected unless Z is also selected. W cannot be selected unless H is also selected.", "question": "Which one of the following is an acceptable selection of committee members?", "options": [ "A) F, G, K, L, Z", "B) F, G, K, U, X", "C) G, K, W, X, Z", "D) H, K, U, W, X", "E) H, L, W, X, Z" ], "answer": "E" }, { "id": "ar_lsat_200609_3-G_2_7", "context": "The members of a five-person committee will be selected from among three parents—F, G, and H—three students—K, L, and M—and four teachers—U, W, X, and Z. The selection of committee members will meet the following conditions: The committee must include exactly one student. F and H cannot both be selected. M and Z cannot both be selected. U and W cannot both be selected. F cannot be selected unless Z is also selected. W cannot be selected unless H is also selected.", "question": "If W and Z are selected, which one of the following is a pair of people who could also be selected?", "options": [ "A) U and X", "B) K and L", "C) G and M", "D) G and K", "E) F and G" ], "answer": "D" }, { "id": "ar_lsat_200609_3-G_2_8", "context": "The members of a five-person committee will be selected from among three parents—F, G, and H—three students—K, L, and M—and four teachers—U, W, X, and Z. The selection of committee members will meet the following conditions: The committee must include exactly one student. F and H cannot both be selected. M and Z cannot both be selected. U and W cannot both be selected. F cannot be selected unless Z is also selected. W cannot be selected unless H is also selected.", "question": "Which one of the following is a pair of people who CANNOT both be selected?", "options": [ "A) F and G", "B) F and M", "C) G and K", "D) H and L", "E) M and U" ], "answer": "B" }, { "id": "ar_lsat_200609_3-G_2_9", "context": "The members of a five-person committee will be selected from among three parents—F, G, and H—three students—K, L, and M—and four teachers—U, W, X, and Z. The selection of committee members will meet the following conditions: The committee must include exactly one student. F and H cannot both be selected. M and Z cannot both be selected. U and W cannot both be selected. F cannot be selected unless Z is also selected. W cannot be selected unless H is also selected.", "question": "If W is selected, then any one of the following could also be selected EXCEPT:", "options": [ "A) F", "B) G", "C) L", "D) M", "E) Z" ], "answer": "A" }, { "id": "ar_lsat_200609_3-G_2_10", "context": "The members of a five-person committee will be selected from among three parents—F, G, and H—three students—K, L, and M—and four teachers—U, W, X, and Z. The selection of committee members will meet the following conditions: The committee must include exactly one student. F and H cannot both be selected. M and Z cannot both be selected. U and W cannot both be selected. F cannot be selected unless Z is also selected. W cannot be selected unless H is also selected.", "question": "If the committee is to include exactly one parent, which one of the following is a person who must also be selected?", "options": [ "A) K", "B) L", "C) M", "D) U", "E) X" ], "answer": "E" }, { "id": "ar_lsat_200609_3-G_2_11", "context": "The members of a five-person committee will be selected from among three parents—F, G, and H—three students—K, L, and M—and four teachers—U, W, X, and Z. The selection of committee members will meet the following conditions: The committee must include exactly one student. F and H cannot both be selected. M and Z cannot both be selected. U and W cannot both be selected. F cannot be selected unless Z is also selected. W cannot be selected unless H is also selected.", "question": "If M is selected, then the committee must also include both", "options": [ "A) F and G", "B) G and H", "C) H and K", "D) K and U", "E) U and X" ], "answer": "B" }, { "id": "ar_lsat_200609_3-G_3_12", "context": "Within a five-year period from 1991 to 1995, each of three friends—Ramon, Sue, and Taylor—graduated. In that period, each bought his or her first car. The graduations and car purchases must be consistent with the following: Ramon graduated in some year before the year in which Taylor graduated. Taylor graduated in some year before the year in which he bought his first car. Sue bought her first car in some year before the year in which she graduated. Ramon and Sue graduated in the same year as each other. At least one of the friends graduated in 1993.", "question": "Which one of the following could be an accurate matching of each friend and the year in which she or he graduated?", "options": [ "A) Ramon: 1991; Sue: 1991; Taylor: 1993", "B) Ramon: 1992; Sue: 1992; Taylor: 1993", "C) Ramon: 1992; Sue: 1993; Taylor: 1994", "D) Ramon: 1993; Sue: 1993; Taylor: 1992", "E) Ramon: 1993; Sue: 1993; Taylor: 1995" ], "answer": "B" }, { "id": "ar_lsat_200609_3-G_3_13", "context": "Within a five-year period from 1991 to 1995, each of three friends—Ramon, Sue, and Taylor—graduated. In that period, each bought his or her first car. The graduations and car purchases must be consistent with the following: Ramon graduated in some year before the year in which Taylor graduated. Taylor graduated in some year before the year in which he bought his first car. Sue bought her first car in some year before the year in which she graduated. Ramon and Sue graduated in the same year as each other. At least one of the friends graduated in 1993.", "question": "Which one of the following could have taken place in 1995?", "options": [ "A) Ramon graduated.", "B) Ramon bought his first car.", "C) Sue graduated.", "D) Sue bought her first car.", "E) Taylor graduated." ], "answer": "B" }, { "id": "ar_lsat_200609_3-G_3_14", "context": "Within a five-year period from 1991 to 1995, each of three friends—Ramon, Sue, and Taylor—graduated. In that period, each bought his or her first car. The graduations and car purchases must be consistent with the following: Ramon graduated in some year before the year in which Taylor graduated. Taylor graduated in some year before the year in which he bought his first car. Sue bought her first car in some year before the year in which she graduated. Ramon and Sue graduated in the same year as each other. At least one of the friends graduated in 1993.", "question": "Which one of the following must be false?", "options": [ "A) Two of the friends each bought his or her first car in 1991.", "B) Two of the friends each bought his or her first car in 1992.", "C) Two of the friends each bought his or her first car in 1993.", "D) Two of the friends each bought his or her first car in 1994.", "E) Two of the friends each bought his or her first car in 1995." ], "answer": "C" }, { "id": "ar_lsat_200609_3-G_3_15", "context": "Within a five-year period from 1991 to 1995, each of three friends—Ramon, Sue, and Taylor—graduated. In that period, each bought his or her first car. The graduations and car purchases must be consistent with the following: Ramon graduated in some year before the year in which Taylor graduated. Taylor graduated in some year before the year in which he bought his first car. Sue bought her first car in some year before the year in which she graduated. Ramon and Sue graduated in the same year as each other. At least one of the friends graduated in 1993.", "question": "Which one of the following must be true?", "options": [ "A) None of the three friends graduated in 1991.", "B) None of the three friends graduated in 1992.", "C) None of the three friends bought his or her first car in 1993.", "D) None of the three friends graduated in 1994.", "E) None of the three friends bought his or her first car in 1995." ], "answer": "A" }, { "id": "ar_lsat_200609_3-G_3_16", "context": "Within a five-year period from 1991 to 1995, each of three friends—Ramon, Sue, and Taylor—graduated. In that period, each bought his or her first car. The graduations and car purchases must be consistent with the following: Ramon graduated in some year before the year in which Taylor graduated. Taylor graduated in some year before the year in which he bought his first car. Sue bought her first car in some year before the year in which she graduated. Ramon and Sue graduated in the same year as each other. At least one of the friends graduated in 1993.", "question": "If Taylor graduated in the same year that Ramon bought his first car, then each of the following could be true EXCEPT:", "options": [ "A) Sue bought her first car in 1991.", "B) Ramon graduated in 1992.", "C) Taylor graduated in 1993.", "D) Taylor bought his first car in 1994.", "E) Ramon bought his first car in 1995." ], "answer": "E" }, { "id": "ar_lsat_200609_3-G_3_17", "context": "Within a five-year period from 1991 to 1995, each of three friends—Ramon, Sue, and Taylor—graduated. In that period, each bought his or her first car. The graduations and car purchases must be consistent with the following: Ramon graduated in some year before the year in which Taylor graduated. Taylor graduated in some year before the year in which he bought his first car. Sue bought her first car in some year before the year in which she graduated. Ramon and Sue graduated in the same year as each other. At least one of the friends graduated in 1993.", "question": "If Sue graduated in 1993, then which one of the following must be true?", "options": [ "A) Sue bought her first car in 1991.", "B) Ramon bought his first car in 1992.", "C) Ramon bought his first car in 1993.", "D) Taylor bought his first car in 1994.", "E) Taylor bought his first car in 1995." ], "answer": "E" }, { "id": "ar_lsat_200609_3-G_4_18", "context": "A child eating alphabet soup notices that the only letters left in her bowl are one each of these six letters: T, U, W, X, Y, and Z. She plays a game with the remaining letters, eating them in the next three spoonfuls in accord with certain rules. Each of the six letters must be in exactly one of the next three spoonfuls, and each of the spoonfuls must have at least one and at most three of the letters. In addition, she obeys the following restrictions: The U is in a later spoonful than the T. The U is not in a later spoonful than the X. The Y is in a later spoonful than the W. The U is in the same spoonful as either the Y or the Z, but not both.", "question": "Which one of the following could be an accurate list of the spoonfuls and the letters in each of them?", "options": [ "A) first: Y second: T, W third: U, X, Z", "B) first: T, W second: U, X, Y third: Z", "C) first: T second: U, Z third: W, X, Y", "D) first: T, U, Z second: W third: X, Y", "E) first: W second: T, X, Z third: U, Y" ], "answer": "B" }, { "id": "ar_lsat_200609_3-G_4_19", "context": "A child eating alphabet soup notices that the only letters left in her bowl are one each of these six letters: T, U, W, X, Y, and Z. She plays a game with the remaining letters, eating them in the next three spoonfuls in accord with certain rules. Each of the six letters must be in exactly one of the next three spoonfuls, and each of the spoonfuls must have at least one and at most three of the letters. In addition, she obeys the following restrictions: The U is in a later spoonful than the T. The U is not in a later spoonful than the X. The Y is in a later spoonful than the W. The U is in the same spoonful as either the Y or the Z, but not both.", "question": "If the Y is the only letter in one of the spoonfuls, then which one of the following could be true?", "options": [ "A) The Y is in the first spoonful.", "B) The Z is in the first spoonful.", "C) The T is in the second spoonful.", "D) The X is in the second spoonful.", "E) The W is in the third spoonful." ], "answer": "D" }, { "id": "ar_lsat_200609_3-G_4_20", "context": "A child eating alphabet soup notices that the only letters left in her bowl are one each of these six letters: T, U, W, X, Y, and Z. She plays a game with the remaining letters, eating them in the next three spoonfuls in accord with certain rules. Each of the six letters must be in exactly one of the next three spoonfuls, and each of the spoonfuls must have at least one and at most three of the letters. In addition, she obeys the following restrictions: The U is in a later spoonful than the T. The U is not in a later spoonful than the X. The Y is in a later spoonful than the W. The U is in the same spoonful as either the Y or the Z, but not both.", "question": "If the Z is in the first spoonful, then which one of the following must be true?", "options": [ "A) The T is in the second spoonful.", "B) The U is in the third spoonful.", "C) The W is in the first spoonful.", "D) The W is in the second spoonful.", "E) The X is in the third spoonful." ], "answer": "E" }, { "id": "ar_lsat_200609_3-G_4_21", "context": "A child eating alphabet soup notices that the only letters left in her bowl are one each of these six letters: T, U, W, X, Y, and Z. She plays a game with the remaining letters, eating them in the next three spoonfuls in accord with certain rules. Each of the six letters must be in exactly one of the next three spoonfuls, and each of the spoonfuls must have at least one and at most three of the letters. In addition, she obeys the following restrictions: The U is in a later spoonful than the T. The U is not in a later spoonful than the X. The Y is in a later spoonful than the W. The U is in the same spoonful as either the Y or the Z, but not both.", "question": "Which one of the following is a complete list of letters, any one of which could be the only letter in the first spoonful?", "options": [ "A) T", "B) T, W", "C) T, X", "D) T, W, Z", "E) T, X, W, Z" ], "answer": "D" }, { "id": "ar_lsat_200609_3-G_4_22", "context": "A child eating alphabet soup notices that the only letters left in her bowl are one each of these six letters: T, U, W, X, Y, and Z. She plays a game with the remaining letters, eating them in the next three spoonfuls in accord with certain rules. Each of the six letters must be in exactly one of the next three spoonfuls, and each of the spoonfuls must have at least one and at most three of the letters. In addition, she obeys the following restrictions: The U is in a later spoonful than the T. The U is not in a later spoonful than the X. The Y is in a later spoonful than the W. The U is in the same spoonful as either the Y or the Z, but not both.", "question": "If the T is in the second spoonful, then which one of the following could be true?", "options": [ "A) Exactly two letters are in the first spoonful.", "B) Exactly three letters are in the first spoonful.", "C) Exactly three letters are in the second spoonful.", "D) Exactly one letter is in the third spoonful.", "E) Exactly two letters are in the third spoonful." ], "answer": "A" }, { "id": "ar_lsat_200612_4-G_1_1", "context": "A clown will select a costume consisting of two pieces and no others: a jacket and overalls. One piece of the costume will be entirely one color, and the other piece will be plaid. Selection is subject to the following restrictions: If the jacket is plaid, then there must be exactly three colors in it. If the overalls are plaid, then there must be exactly two colors in them. The jacket and overalls must have exactly one color in common. Green, red, and violet are the only colors that can be in the jacket. Red, violet, and yellow are the only colors that can be in the overalls.", "question": "Which one of the following could be a complete and accurate list of the colors in the costume? Jacket Overalls", "options": [ "A) red red", "B) red violet, yellow", "C) violet green, violet", "D) violet red, violet", "E) violet red, violet, yellow" ], "answer": "D" }, { "id": "ar_lsat_200612_4-G_1_2", "context": "A clown will select a costume consisting of two pieces and no others: a jacket and overalls. One piece of the costume will be entirely one color, and the other piece will be plaid. Selection is subject to the following restrictions: If the jacket is plaid, then there must be exactly three colors in it. If the overalls are plaid, then there must be exactly two colors in them. The jacket and overalls must have exactly one color in common. Green, red, and violet are the only colors that can be in the jacket. Red, violet, and yellow are the only colors that can be in the overalls.", "question": "If there are exactly two colors in the costume, then which one of the following must be false?", "options": [ "A) At least part of the jacket is green.", "B) At least part of the jacket is red.", "C) The overalls are red and violet.", "D) The overalls are red and yellow.", "E) The overalls are violet and yellow." ], "answer": "A" }, { "id": "ar_lsat_200612_4-G_1_3", "context": "A clown will select a costume consisting of two pieces and no others: a jacket and overalls. One piece of the costume will be entirely one color, and the other piece will be plaid. Selection is subject to the following restrictions: If the jacket is plaid, then there must be exactly three colors in it. If the overalls are plaid, then there must be exactly two colors in them. The jacket and overalls must have exactly one color in common. Green, red, and violet are the only colors that can be in the jacket. Red, violet, and yellow are the only colors that can be in the overalls.", "question": "If at least part of the jacket is green, then which one of the following could be true?", "options": [ "A) The overalls are plaid.", "B) No part of the jacket is red.", "C) No part of the jacket is violet.", "D) At least part of the overalls are yellow.", "E) At least part of the overalls are violet." ], "answer": "E" }, { "id": "ar_lsat_200612_4-G_1_4", "context": "A clown will select a costume consisting of two pieces and no others: a jacket and overalls. One piece of the costume will be entirely one color, and the other piece will be plaid. Selection is subject to the following restrictions: If the jacket is plaid, then there must be exactly three colors in it. If the overalls are plaid, then there must be exactly two colors in them. The jacket and overalls must have exactly one color in common. Green, red, and violet are the only colors that can be in the jacket. Red, violet, and yellow are the only colors that can be in the overalls.", "question": "Which one of the following must be false?", "options": [ "A) Both green and red are colors used in the costume.", "B) Both green and violet are colors used in the costume.", "C) Both green and yellow are colors used in the costume.", "D) Both red and violet are colors used in the costume.", "E) Both violet and yellow are colors used in the costume." ], "answer": "C" }, { "id": "ar_lsat_200612_4-G_1_5", "context": "A clown will select a costume consisting of two pieces and no others: a jacket and overalls. One piece of the costume will be entirely one color, and the other piece will be plaid. Selection is subject to the following restrictions: If the jacket is plaid, then there must be exactly three colors in it. If the overalls are plaid, then there must be exactly two colors in them. The jacket and overalls must have exactly one color in common. Green, red, and violet are the only colors that can be in the jacket. Red, violet, and yellow are the only colors that can be in the overalls.", "question": "If there are exactly three colors in the costume, the overalls must be", "options": [ "A) entirely red or else red and violet plaid", "B) entirely yellow or else violet and yellow plaid", "C) entirely violet or else red and violet plaid", "D) entirely red or else entirely yellow", "E) entirely red or else entirely violet" ], "answer": "E" }, { "id": "ar_lsat_200612_4-G_2_6", "context": "Six hotel suites—F, G, H, J, K, L—are ranked from most expensive (first) to least expensive (sixth). There are no ties. The ranking must be consistent with the following conditions: H is more expensive than L. If G is more expensive than H, then neither K nor L is more expensive than J. If H is more expensive than G, then neither J nor L is more expensive than K. F is more expensive than G, or else F is more expensive than H, but not both.", "question": "Which one of the following could be the ranking of the suites, from most expensive to least expensive?", "options": [ "A) G, F, H, L, J, K", "B) H, K, F, J, G, L", "C) J, H, F, K, G, L", "D) J, K, G, H, L, F", "E) K, J, L, H, F, G" ], "answer": "B" }, { "id": "ar_lsat_200612_4-G_2_7", "context": "Six hotel suites—F, G, H, J, K, L—are ranked from most expensive (first) to least expensive (sixth). There are no ties. The ranking must be consistent with the following conditions: H is more expensive than L. If G is more expensive than H, then neither K nor L is more expensive than J. If H is more expensive than G, then neither J nor L is more expensive than K. F is more expensive than G, or else F is more expensive than H, but not both.", "question": "If G is the second most expensive suite, then which one of the following could be true?", "options": [ "A) H is more expensive than F.", "B) H is more expensive than G.", "C) K is more expensive than F.", "D) K is more expensive than J.", "E) L is more expensive than F." ], "answer": "C" }, { "id": "ar_lsat_200612_4-G_2_8", "context": "Six hotel suites—F, G, H, J, K, L—are ranked from most expensive (first) to least expensive (sixth). There are no ties. The ranking must be consistent with the following conditions: H is more expensive than L. If G is more expensive than H, then neither K nor L is more expensive than J. If H is more expensive than G, then neither J nor L is more expensive than K. F is more expensive than G, or else F is more expensive than H, but not both.", "question": "Which one of the following CANNOT be the most expensive suite?", "options": [ "A) F", "B) G", "C) H", "D) J", "E) K" ], "answer": "A" }, { "id": "ar_lsat_200612_4-G_2_9", "context": "Six hotel suites—F, G, H, J, K, L—are ranked from most expensive (first) to least expensive (sixth). There are no ties. The ranking must be consistent with the following conditions: H is more expensive than L. If G is more expensive than H, then neither K nor L is more expensive than J. If H is more expensive than G, then neither J nor L is more expensive than K. F is more expensive than G, or else F is more expensive than H, but not both.", "question": "If L is more expensive than F, then which one of the following could be true?", "options": [ "A) F is more expensive than H.", "B) F is more expensive than K.", "C) G is more expensive than H.", "D) G is more expensive than J.", "E) G is more expensive than L." ], "answer": "D" }, { "id": "ar_lsat_200612_4-G_2_10", "context": "Six hotel suites—F, G, H, J, K, L—are ranked from most expensive (first) to least expensive (sixth). There are no ties. The ranking must be consistent with the following conditions: H is more expensive than L. If G is more expensive than H, then neither K nor L is more expensive than J. If H is more expensive than G, then neither J nor L is more expensive than K. F is more expensive than G, or else F is more expensive than H, but not both.", "question": "If H is more expensive than J and less expensive than K, then which one of the following could be true?", "options": [ "A) F is more expensive than H.", "B) G is more expensive than F.", "C) G is more expensive than H.", "D) J is more expensive than L.", "E) L is more expensive than K." ], "answer": "D" }, { "id": "ar_lsat_200612_4-G_3_11", "context": "A locally known guitarist's demo CD contains exactly seven different songs—S, T, V, W, X, Y, and Z. Each song occupies exactly one of the CD's seven tracks. Some of the songs are rock classics; the others are new compositions. The following conditions must hold: S occupies the fourth track of the CD. Both W and Y precede S on the CD. T precedes W on the CD. A rock classic occupies the sixth track of the CD. Each rock classic is immediately preceded on the CD by a new composition. Z is a rock classic.", "question": "Which one of the following could be the order of the songs on the CD, from the first track through the seventh?", "options": [ "A) T, W, V, S, Y, X, Z", "B) V, Y, T, S, W, Z, X", "C) X, Y, W, S, T, Z, S", "D) Y, T, W, S, X, Z, V", "E) Z, T, X, W, V, Y, S" ], "answer": "D" }, { "id": "ar_lsat_200612_4-G_3_12", "context": "A locally known guitarist's demo CD contains exactly seven different songs—S, T, V, W, X, Y, and Z. Each song occupies exactly one of the CD's seven tracks. Some of the songs are rock classics; the others are new compositions. The following conditions must hold: S occupies the fourth track of the CD. Both W and Y precede S on the CD. T precedes W on the CD. A rock classic occupies the sixth track of the CD. Each rock classic is immediately preceded on the CD by a new composition. Z is a rock classic.", "question": "Which one of the following is a pair of songs that must occupy consecutive tracks on the CD?", "options": [ "A) S and V", "B) S and W", "C) T and Z", "D) T and Y", "E) V and Z" ], "answer": "E" }, { "id": "ar_lsat_200612_4-G_3_13", "context": "A locally known guitarist's demo CD contains exactly seven different songs—S, T, V, W, X, Y, and Z. Each song occupies exactly one of the CD's seven tracks. Some of the songs are rock classics; the others are new compositions. The following conditions must hold: S occupies the fourth track of the CD. Both W and Y precede S on the CD. T precedes W on the CD. A rock classic occupies the sixth track of the CD. Each rock classic is immediately preceded on the CD by a new composition. Z is a rock classic.", "question": "Which one of the following songs must be a new composition?", "options": [ "A) S", "B) T", "C) W", "D) X", "E) Y" ], "answer": "D" }, { "id": "ar_lsat_200612_4-G_3_14", "context": "A locally known guitarist's demo CD contains exactly seven different songs—S, T, V, W, X, Y, and Z. Each song occupies exactly one of the CD's seven tracks. Some of the songs are rock classics; the others are new compositions. The following conditions must hold: S occupies the fourth track of the CD. Both W and Y precede S on the CD. T precedes W on the CD. A rock classic occupies the sixth track of the CD. Each rock classic is immediately preceded on the CD by a new composition. Z is a rock classic.", "question": "If W precedes Y on the CD, then which one of the following must be true?", "options": [ "A) S is a rock classic.", "B) V is a rock classic.", "C) Y is a rock classic.", "D) T is a new composition.", "E) W is a new composition." ], "answer": "D" }, { "id": "ar_lsat_200612_4-G_3_15", "context": "A locally known guitarist's demo CD contains exactly seven different songs—S, T, V, W, X, Y, and Z. Each song occupies exactly one of the CD's seven tracks. Some of the songs are rock classics; the others are new compositions. The following conditions must hold: S occupies the fourth track of the CD. Both W and Y precede S on the CD. T precedes W on the CD. A rock classic occupies the sixth track of the CD. Each rock classic is immediately preceded on the CD by a new composition. Z is a rock classic.", "question": "If there are exactly two songs on the CD that both precede V and are preceded by Y, then which one of the following could be true?", "options": [ "A) V occupies the seventh track of the CD.", "B) X occupies the fifth track of the CD.", "C) Y occupies the third track of the CD.", "D) T is a rock classic.", "E) W is a rock classic." ], "answer": "E" }, { "id": "ar_lsat_200612_4-G_4_16", "context": "A courier delivers exactly eight parcels—G, H, J, K, L, M, N, and O. No two parcels are delivered at the same time, nor is any parcel delivered more than once. The following conditions must apply: L is delivered later than H. K is delivered earlier than O. H is delivered earlier than M. O is delivered later than G. M is delivered earlier than G. Both N and J are delivered earlier than M.", "question": "Which one of the following could be the order of deliveries from first to last?", "options": [ "A) N, H, K, M, J, G, O, L", "B) H, N, J, K, G, O, L, M", "C) J, H, N, M, K, O, G, L", "D) N, J, H, L, M, K, G, O", "E) K, N, J, M, G, H, O, L" ], "answer": "D" }, { "id": "ar_lsat_200612_4-G_4_17", "context": "A courier delivers exactly eight parcels—G, H, J, K, L, M, N, and O. No two parcels are delivered at the same time, nor is any parcel delivered more than once. The following conditions must apply: L is delivered later than H. K is delivered earlier than O. H is delivered earlier than M. O is delivered later than G. M is delivered earlier than G. Both N and J are delivered earlier than M.", "question": "Which one of the following must be true?", "options": [ "A) At least one parcel is delivered earlier than K is delivered.", "B) At least two parcels are delivered later than G is delivered.", "C) At least four parcels are delivered later than H is delivered.", "D) At least four parcels are delivered later than J is delivered.", "E) At least four parcels are delivered earlier than M is delivered." ], "answer": "C" }, { "id": "ar_lsat_200612_4-G_4_18", "context": "A courier delivers exactly eight parcels—G, H, J, K, L, M, N, and O. No two parcels are delivered at the same time, nor is any parcel delivered more than once. The following conditions must apply: L is delivered later than H. K is delivered earlier than O. H is delivered earlier than M. O is delivered later than G. M is delivered earlier than G. Both N and J are delivered earlier than M.", "question": "If M is the fourth parcel delivered, then which one of the following must be true?", "options": [ "A) G is the fifth parcel delivered.", "B) O is the seventh parcel delivered.", "C) J is delivered later than H.", "D) K is delivered later than N.", "E) G is delivered later than L." ], "answer": "D" }, { "id": "ar_lsat_200612_4-G_4_19", "context": "A courier delivers exactly eight parcels—G, H, J, K, L, M, N, and O. No two parcels are delivered at the same time, nor is any parcel delivered more than once. The following conditions must apply: L is delivered later than H. K is delivered earlier than O. H is delivered earlier than M. O is delivered later than G. M is delivered earlier than G. Both N and J are delivered earlier than M.", "question": "If H is the fourth parcel delivered, then each of the following could be true EXCEPT:", "options": [ "A) K is the fifth parcel delivered.", "B) L is the sixth parcel delivered.", "C) M is the sixth parcel delivered.", "D) G is the seventh parcel delivered.", "E) O is the seventh parcel delivered." ], "answer": "A" }, { "id": "ar_lsat_200612_4-G_4_20", "context": "A courier delivers exactly eight parcels—G, H, J, K, L, M, N, and O. No two parcels are delivered at the same time, nor is any parcel delivered more than once. The following conditions must apply: L is delivered later than H. K is delivered earlier than O. H is delivered earlier than M. O is delivered later than G. M is delivered earlier than G. Both N and J are delivered earlier than M.", "question": "Each of the following could be true EXCEPT:", "options": [ "A) H is delivered later than K.", "B) J is delivered later than G.", "C) L is delivered later than O.", "D) M is delivered later than L.", "E) N is delivered later than H." ], "answer": "B" }, { "id": "ar_lsat_200612_4-G_4_21", "context": "A courier delivers exactly eight parcels—G, H, J, K, L, M, N, and O. No two parcels are delivered at the same time, nor is any parcel delivered more than once. The following conditions must apply: L is delivered later than H. K is delivered earlier than O. H is delivered earlier than M. O is delivered later than G. M is delivered earlier than G. Both N and J are delivered earlier than M.", "question": "If K is the seventh parcel delivered, then each of the following could be true EXCEPT:", "options": [ "A) G is the fifth parcel delivered.", "B) M is the fifth parcel delivered.", "C) H is the fourth parcel delivered.", "D) L is the fourth parcel delivered.", "E) J is the third parcel delivered." ], "answer": "C" }, { "id": "ar_lsat_200612_4-G_4_22", "context": "A courier delivers exactly eight parcels—G, H, J, K, L, M, N, and O. No two parcels are delivered at the same time, nor is any parcel delivered more than once. The following conditions must apply: L is delivered later than H. K is delivered earlier than O. H is delivered earlier than M. O is delivered later than G. M is delivered earlier than G. Both N and J are delivered earlier than M.", "question": "If L is delivered earlier than K, then which one of the following must be false?", "options": [ "A) N is the second parcel delivered.", "B) L is the third parcel delivered.", "C) H is the fourth parcel delivered.", "D) K is the fifth parcel delivered.", "E) M is the sixth parcel delivered." ], "answer": "C" }, { "id": "ar_lsat_200706_1-G_1_1", "context": "A company employee generates a series of five-digit product codes in accordance with the following rules: The codes use the digits 0, 1, 2, 3, and 4, and no others. Each digit occurs exactly once in any code. The second digit has a value exactly twice that of the first digit. The value of the third digit is less than the value of the fifth digit.", "question": "If the last digit of an acceptable product code is 1, it must be true that the", "options": [ "A) first digit is 2", "B) second digit is 0", "C) third digit is 3", "D) fourth digit is 4", "E) fourth digit is 0" ], "answer": "A" }, { "id": "ar_lsat_200706_1-G_1_2", "context": "A company employee generates a series of five-digit product codes in accordance with the following rules: The codes use the digits 0, 1, 2, 3, and 4, and no others. Each digit occurs exactly once in any code. The second digit has a value exactly twice that of the first digit. The value of the third digit is less than the value of the fifth digit.", "question": "Which one of the following must be true about any acceptable product code?", "options": [ "A) The digit 1 appears in some position before the digit 2.", "B) The digit 1 appears in some position before the digit 3.", "C) The digit 2 appears in some position before the digit 3.", "D) The digit 3 appears in some position before the digit 0.", "E) The digit 4 appears in some position before the digit 3." ], "answer": "C" }, { "id": "ar_lsat_200706_1-G_1_3", "context": "A company employee generates a series of five-digit product codes in accordance with the following rules: The codes use the digits 0, 1, 2, 3, and 4, and no others. Each digit occurs exactly once in any code. The second digit has a value exactly twice that of the first digit. The value of the third digit is less than the value of the fifth digit.", "question": "If the third digit of an acceptable product code is not 0, which one of the following must be true?", "options": [ "A) The second digit of the product code is 2.", "B) The third digit of the product code is 3.", "C) The fourth digit of the product code is 0.", "D) The fifth digit of the product code is 3.", "E) The fifth digit of the product code is 1." ], "answer": "C" }, { "id": "ar_lsat_200706_1-G_1_4", "context": "A company employee generates a series of five-digit product codes in accordance with the following rules: The codes use the digits 0, 1, 2, 3, and 4, and no others. Each digit occurs exactly once in any code. The second digit has a value exactly twice that of the first digit. The value of the third digit is less than the value of the fifth digit.", "question": "Any of the following pairs could be the third and fourth digits, respectively, of an acceptable product code, EXCEPT:", "options": [ "A) 0, 1", "B) 0, 3", "C) 1, 0", "D) 3, 0", "E) 3, 4" ], "answer": "E" }, { "id": "ar_lsat_200706_1-G_1_5", "context": "A company employee generates a series of five-digit product codes in accordance with the following rules: The codes use the digits 0, 1, 2, 3, and 4, and no others. Each digit occurs exactly once in any code. The second digit has a value exactly twice that of the first digit. The value of the third digit is less than the value of the fifth digit.", "question": "Which one of the following must be true about any acceptable product code?", "options": [ "A) There is exactly one digit between the digit 0 and the digit 1.", "B) There is exactly one digit between the digit 1 and the digit 2.", "C) There are at most two digits between the digit 1 and the digit 3.", "D) There are at most two digits between the digit 2 and the digit 3.", "E) There are at most two digits between the digit 2 and the digit 4." ], "answer": "E" }, { "id": "ar_lsat_200706_1-G_2_6", "context": "Exactly three films—Greed, Harvest, and Limelight—are shown during a film club's festival held on Thursday, Friday, and Saturday. Each film is shown at least once during the festival but never more than once on a given day. On each day at least one film is shown. Films are shown one at a time. The following conditions apply: On Thursday Harvest is shown, and no film is shown after it on that day. On Friday either Greed or Limelight, but not both, is shown, and no film is shown after it on that day. On Saturday either Greed or Harvest, but not both, is shown, and no film is shown after it on that day.", "question": "Which one of the following could be a complete and accurate description of the order in which the films are shown at the festival?", "options": [ "A) Thursday: Limelight, then Harvest; Friday: Limelight; Saturday: Harvest", "B) Thursday: Harvest; Friday: Greed, then Limelight; Saturday: Limelight, then Greed", "C) Thursday: Harvest; Friday: Limelight; Saturday: Limelight, then Greed", "D) Thursday: Greed, then Harvest, then Limelight; Friday: Limelight; Saturday: Greed", "E) Thursday: Greed, then Harvest; Friday: Limelight, then Harvest; Saturday: Harvest" ], "answer": "C" }, { "id": "ar_lsat_200706_1-G_2_7", "context": "Exactly three films—Greed, Harvest, and Limelight—are shown during a film club's festival held on Thursday, Friday, and Saturday. Each film is shown at least once during the festival but never more than once on a given day. On each day at least one film is shown. Films are shown one at a time. The following conditions apply: On Thursday Harvest is shown, and no film is shown after it on that day. On Friday either Greed or Limelight, but not both, is shown, and no film is shown after it on that day. On Saturday either Greed or Harvest, but not both, is shown, and no film is shown after it on that day.", "question": "Which one of the following CANNOT be true?", "options": [ "A) Harvest is the last film shown on each day of the festival.", "B) Limelight is shown on each day of the festival.", "C) Greed is shown second on each day of the festival.", "D) A different film is shown first on each day of the festival.", "E) A different film is shown last on each day of the festival." ], "answer": "A" }, { "id": "ar_lsat_200706_1-G_2_8", "context": "Exactly three films—Greed, Harvest, and Limelight—are shown during a film club's festival held on Thursday, Friday, and Saturday. Each film is shown at least once during the festival but never more than once on a given day. On each day at least one film is shown. Films are shown one at a time. The following conditions apply: On Thursday Harvest is shown, and no film is shown after it on that day. On Friday either Greed or Limelight, but not both, is shown, and no film is shown after it on that day. On Saturday either Greed or Harvest, but not both, is shown, and no film is shown after it on that day.", "question": "If Limelight is never shown again during the festival once Greed is shown, then which one of the following is the maximum number of film showings that could occur during the festival?", "options": [ "A) three", "B) four", "C) five", "D) six", "E) seven" ], "answer": "D" }, { "id": "ar_lsat_200706_1-G_2_9", "context": "Exactly three films—Greed, Harvest, and Limelight—are shown during a film club's festival held on Thursday, Friday, and Saturday. Each film is shown at least once during the festival but never more than once on a given day. On each day at least one film is shown. Films are shown one at a time. The following conditions apply: On Thursday Harvest is shown, and no film is shown after it on that day. On Friday either Greed or Limelight, but not both, is shown, and no film is shown after it on that day. On Saturday either Greed or Harvest, but not both, is shown, and no film is shown after it on that day.", "question": "If Greed is shown exactly three times, Harvest is shown exactly twice, and Limelight is shown exactly once, then which one of the following must be true?", "options": [ "A) All three films are shown on Thursday.", "B) Exactly two films are shown on Saturday.", "C) Limelight and Harvest are both shown on Thursday.", "D) Greed is the only film shown on Saturday.", "E) Harvest and Greed are both shown on Friday." ], "answer": "E" }, { "id": "ar_lsat_200706_1-G_2_10", "context": "Exactly three films—Greed, Harvest, and Limelight—are shown during a film club's festival held on Thursday, Friday, and Saturday. Each film is shown at least once during the festival but never more than once on a given day. On each day at least one film is shown. Films are shown one at a time. The following conditions apply: On Thursday Harvest is shown, and no film is shown after it on that day. On Friday either Greed or Limelight, but not both, is shown, and no film is shown after it on that day. On Saturday either Greed or Harvest, but not both, is shown, and no film is shown after it on that day.", "question": "If Limelight is shown exactly three times, Harvest is shown exactly twice, and Greed is shown exactly once, then which one of the following is a complete and accurate list of the films that could be the first film shown on Thursday?", "options": [ "A) Harvest", "B) Limelight", "C) Greed, Harvest", "D) Greed, Limelight", "E) Greed, Harvest, Limelight" ], "answer": "D" }, { "id": "ar_lsat_200706_1-G_3_11", "context": "A cruise line is scheduling seven week-long voyages for the ship Freedom. Each voyage will occur in exactly one of the first seven weeks of the season: weeks 1 through 7. Each voyage will be to exactly one of four destinations: Guadeloupe, Jamaica, Martinique, or Trinidad. Each destination will be scheduled for at least one of the weeks. The following conditions apply to Freedom's schedule: Jamaica will not be its destination in week 4. Trinidad will be its destination in week 7. Freedom will make exactly two voyages to Martinique, and at least one voyage to Guadeloupe will occur in some week between those two voyages. Guadeloupe will be its destination in the week preceding any voyage it makes to Jamaica. No destination will be scheduled for consecutive weeks.", "question": "Which one of the following is an acceptable schedule of destinations for Freedom, in order from week 1 through week 7?", "options": [ "A) Guadeloupe, Jamaica, Martinique, Trinidad, Guadeloupe, Martinique, Trinidad", "B) Guadeloupe, Martinique, Trinidad, Martinique, Guadeloupe, Jamaica, Trinidad", "C) Jamaica, Martinique, Guadeloupe, Martinique, Guadeloupe, Jamaica, Trinidad", "D) Martinique, Trinidad, Guadeloupe, Jamaica, Martinique, Guadeloupe, Trinidad", "E) Martinique, Trinidad, Guadeloupe, Trinidad, Guadeloupe, Jamaica, Martinique" ], "answer": "A" }, { "id": "ar_lsat_200706_1-G_3_12", "context": "A cruise line is scheduling seven week-long voyages for the ship Freedom. Each voyage will occur in exactly one of the first seven weeks of the season: weeks 1 through 7. Each voyage will be to exactly one of four destinations: Guadeloupe, Jamaica, Martinique, or Trinidad. Each destination will be scheduled for at least one of the weeks. The following conditions apply to Freedom's schedule: Jamaica will not be its destination in week 4. Trinidad will be its destination in week 7. Freedom will make exactly two voyages to Martinique, and at least one voyage to Guadeloupe will occur in some week between those two voyages. Guadeloupe will be its destination in the week preceding any voyage it makes to Jamaica. No destination will be scheduled for consecutive weeks.", "question": "Which one of the following CANNOT be true about Freedom's schedule of voyages?", "options": [ "A) Freedom makes a voyage to Trinidad in week 6.", "B) Freedom makes a voyage to Martinique in week 5.", "C) Freedom makes a voyage to Jamaica in week 6.", "D) Freedom makes a voyage to Jamaica in week 3.", "E) Freedom makes a voyage to Guadeloupe in week 3." ], "answer": "A" }, { "id": "ar_lsat_200706_1-G_3_13", "context": "A cruise line is scheduling seven week-long voyages for the ship Freedom. Each voyage will occur in exactly one of the first seven weeks of the season: weeks 1 through 7. Each voyage will be to exactly one of four destinations: Guadeloupe, Jamaica, Martinique, or Trinidad. Each destination will be scheduled for at least one of the weeks. The following conditions apply to Freedom's schedule: Jamaica will not be its destination in week 4. Trinidad will be its destination in week 7. Freedom will make exactly two voyages to Martinique, and at least one voyage to Guadeloupe will occur in some week between those two voyages. Guadeloupe will be its destination in the week preceding any voyage it makes to Jamaica. No destination will be scheduled for consecutive weeks.", "question": "If Freedom makes a voyage to Trinidad in week 5, which one of the following could be true?", "options": [ "A) Freedom makes a voyage to Trinidad in week 1.", "B) Freedom makes a voyage to Martinique in week 2.", "C) Freedom makes a voyage to Guadeloupe in week 3.", "D) Freedom makes a voyage to Martinique in week 4.", "E) Freedom makes a voyage to Jamaica in week 6." ], "answer": "D" }, { "id": "ar_lsat_200706_1-G_3_14", "context": "A cruise line is scheduling seven week-long voyages for the ship Freedom. Each voyage will occur in exactly one of the first seven weeks of the season: weeks 1 through 7. Each voyage will be to exactly one of four destinations: Guadeloupe, Jamaica, Martinique, or Trinidad. Each destination will be scheduled for at least one of the weeks. The following conditions apply to Freedom's schedule: Jamaica will not be its destination in week 4. Trinidad will be its destination in week 7. Freedom will make exactly two voyages to Martinique, and at least one voyage to Guadeloupe will occur in some week between those two voyages. Guadeloupe will be its destination in the week preceding any voyage it makes to Jamaica. No destination will be scheduled for consecutive weeks.", "question": "If Freedom makes a voyage to Guadeloupe in week 1 and a voyage to Jamaica in week 5, which one of the following must be true?", "options": [ "A) Freedom makes a voyage to Jamaica in week 2.", "B) Freedom makes a voyage to Trinidad in week 2.", "C) Freedom makes a voyage to Martinique in week 3.", "D) Freedom makes a voyage to Guadeloupe in week 6.", "E) Freedom makes a voyage to Martinique in week 6." ], "answer": "E" }, { "id": "ar_lsat_200706_1-G_3_15", "context": "A cruise line is scheduling seven week-long voyages for the ship Freedom. Each voyage will occur in exactly one of the first seven weeks of the season: weeks 1 through 7. Each voyage will be to exactly one of four destinations: Guadeloupe, Jamaica, Martinique, or Trinidad. Each destination will be scheduled for at least one of the weeks. The following conditions apply to Freedom's schedule: Jamaica will not be its destination in week 4. Trinidad will be its destination in week 7. Freedom will make exactly two voyages to Martinique, and at least one voyage to Guadeloupe will occur in some week between those two voyages. Guadeloupe will be its destination in the week preceding any voyage it makes to Jamaica. No destination will be scheduled for consecutive weeks.", "question": "If Freedom makes a voyage to Guadeloupe in week 1 and to Trinidad in week 2, which one of the following must be true?", "options": [ "A) Freedom makes a voyage to Martinique in week 3.", "B) Freedom makes a voyage to Martinique in week 4.", "C) Freedom makes a voyage to Martinique in week 5.", "D) Freedom makes a voyage to Guadeloupe in week 3.", "E) Freedom makes a voyage to Guadeloupe in week 5." ], "answer": "A" }, { "id": "ar_lsat_200706_1-G_3_16", "context": "A cruise line is scheduling seven week-long voyages for the ship Freedom. Each voyage will occur in exactly one of the first seven weeks of the season: weeks 1 through 7. Each voyage will be to exactly one of four destinations: Guadeloupe, Jamaica, Martinique, or Trinidad. Each destination will be scheduled for at least one of the weeks. The following conditions apply to Freedom's schedule: Jamaica will not be its destination in week 4. Trinidad will be its destination in week 7. Freedom will make exactly two voyages to Martinique, and at least one voyage to Guadeloupe will occur in some week between those two voyages. Guadeloupe will be its destination in the week preceding any voyage it makes to Jamaica. No destination will be scheduled for consecutive weeks.", "question": "If Freedom makes a voyage to Martinique in week 3, which one of the following could be an accurate list of Freedom's destinations in week 4 and week 5, respectively?", "options": [ "A) Guadeloupe, Trinidad", "B) Jamaica, Guadeloupe", "C) Martinique, Trinidad", "D) Trinidad, Jamaica", "E) Trinidad, Martinique" ], "answer": "A" }, { "id": "ar_lsat_200706_1-G_3_17", "context": "A cruise line is scheduling seven week-long voyages for the ship Freedom. Each voyage will occur in exactly one of the first seven weeks of the season: weeks 1 through 7. Each voyage will be to exactly one of four destinations: Guadeloupe, Jamaica, Martinique, or Trinidad. Each destination will be scheduled for at least one of the weeks. The following conditions apply to Freedom's schedule: Jamaica will not be its destination in week 4. Trinidad will be its destination in week 7. Freedom will make exactly two voyages to Martinique, and at least one voyage to Guadeloupe will occur in some week between those two voyages. Guadeloupe will be its destination in the week preceding any voyage it makes to Jamaica. No destination will be scheduled for consecutive weeks.", "question": "Which one of the following must be true about Freedom's schedule of voyages?", "options": [ "A) Freedom makes a voyage to Guadeloupe either in week 1 or else in week 2.", "B) Freedom makes a voyage to Martinique either in week 2 or else in week 3.", "C) Freedom makes at most two voyages to Guadeloupe.", "D) Freedom makes at most two voyages to Jamaica.", "E) Freedom makes at most two voyages to Trinidad." ], "answer": "D" }, { "id": "ar_lsat_200706_1-G_4_18", "context": "There are exactly three recycling centers in Rivertown: Center 1, Center 2, and Center 3. Exactly five kinds of material are recycled at these recycling centers: glass, newsprint, plastic, tin, and wood. Each recycling center recycles at least two but no more than three of these kinds of material. The following conditions must hold: Any recycling center that recycles wood also recycles newsprint. Every kind of material that Center 2 recycles is also recycled at Center 1. Only one of the recycling centers recycles plastic, and that recycling center does not recycle glass.", "question": "Which one of the following could be an accurate account of all the kinds of material recycled at each recycling center in Rivertown?", "options": [ "A) Center 1: newsprint, plastic, wood; Center 2: newsprint, wood; Center 3: glass, tin, wood", "B) Center 1: glass, newsprint, tin; Center 2: glass, newsprint, tin; Center 3: newsprint, plastic, wood", "C) Center 1: glass, newsprint, wood; Center 2: glass, newsprint, tin; Center 3: plastic, tin", "D) Center 1: glass, plastic, tin; Center 2: glass, tin; Center 3: newsprint, wood", "E) Center 1: newsprint, plastic, wood; Center 2: newsprint, plastic, wood; Center 3: glass, newsprint, tin" ], "answer": "B" }, { "id": "ar_lsat_200706_1-G_4_19", "context": "There are exactly three recycling centers in Rivertown: Center 1, Center 2, and Center 3. Exactly five kinds of material are recycled at these recycling centers: glass, newsprint, plastic, tin, and wood. Each recycling center recycles at least two but no more than three of these kinds of material. The following conditions must hold: Any recycling center that recycles wood also recycles newsprint. Every kind of material that Center 2 recycles is also recycled at Center 1. Only one of the recycling centers recycles plastic, and that recycling center does not recycle glass.", "question": "Which one of the following is a complete and accurate list of the recycling centers in Rivertown any one of which could recycle plastic?", "options": [ "A) Center 1 only", "B) Center 3 only", "C) Center 1, Center 2", "D) Center 1, Center 3", "E) Center 1, Center 2, Center 3" ], "answer": "D" }, { "id": "ar_lsat_200706_1-G_4_20", "context": "There are exactly three recycling centers in Rivertown: Center 1, Center 2, and Center 3. Exactly five kinds of material are recycled at these recycling centers: glass, newsprint, plastic, tin, and wood. Each recycling center recycles at least two but no more than three of these kinds of material. The following conditions must hold: Any recycling center that recycles wood also recycles newsprint. Every kind of material that Center 2 recycles is also recycled at Center 1. Only one of the recycling centers recycles plastic, and that recycling center does not recycle glass.", "question": "If Center 2 recycles three kinds of material, then which one of the following kinds of material must Center 3 recycle?", "options": [ "A) glass", "B) newsprint", "C) plastic", "D) tin", "E) wood" ], "answer": "C" }, { "id": "ar_lsat_200706_1-G_4_21", "context": "There are exactly three recycling centers in Rivertown: Center 1, Center 2, and Center 3. Exactly five kinds of material are recycled at these recycling centers: glass, newsprint, plastic, tin, and wood. Each recycling center recycles at least two but no more than three of these kinds of material. The following conditions must hold: Any recycling center that recycles wood also recycles newsprint. Every kind of material that Center 2 recycles is also recycled at Center 1. Only one of the recycling centers recycles plastic, and that recycling center does not recycle glass.", "question": "If each recycling center in Rivertown recycles exactly three kinds of material, then which one of the following could be true?", "options": [ "A) Only Center 2 recycles glass.", "B) Only Center 3 recycles newsprint.", "C) Only Center 1 recycles plastic.", "D) Only Center 3 recycles tin.", "E) Only Center 1 recycles wood." ], "answer": "D" }, { "id": "ar_lsat_200706_1-G_4_22", "context": "There are exactly three recycling centers in Rivertown: Center 1, Center 2, and Center 3. Exactly five kinds of material are recycled at these recycling centers: glass, newsprint, plastic, tin, and wood. Each recycling center recycles at least two but no more than three of these kinds of material. The following conditions must hold: Any recycling center that recycles wood also recycles newsprint. Every kind of material that Center 2 recycles is also recycled at Center 1. Only one of the recycling centers recycles plastic, and that recycling center does not recycle glass.", "question": "If Center 3 recycles glass, then which one of the following kinds of material must Center 2 recycle?", "options": [ "A) glass", "B) newsprint", "C) plastic", "D) tin", "E) wood" ], "answer": "B" }, { "id": "ar_lsat_200706_1-G_4_23", "context": "There are exactly three recycling centers in Rivertown: Center 1, Center 2, and Center 3. Exactly five kinds of material are recycled at these recycling centers: glass, newsprint, plastic, tin, and wood. Each recycling center recycles at least two but no more than three of these kinds of material. The following conditions must hold: Any recycling center that recycles wood also recycles newsprint. Every kind of material that Center 2 recycles is also recycled at Center 1. Only one of the recycling centers recycles plastic, and that recycling center does not recycle glass.", "question": "If Center 1 is the only recycling center that recycles wood, then which one of the following could be a complete and accurate list of the kinds of material that one of the recycling centers recycles?", "options": [ "A) plastic, tin", "B) newsprint, wood", "C) newsprint, tin", "D) glass, wood", "E) glass, tin" ], "answer": "A" }, { "id": "ar_lsat_200709_2-G_1_1", "context": "Workers at a water treatment plant open eight valves—G, H, I, K, L, N, O, and P—to flush out a system of pipes that needs emergency repairs. To maximize safety and efficiency, each valve is opened exactly once, and no two valves are opened at the same time. The valves are opened in accordance with the following conditions: Both K and P are opened before H. O is opened before L but after H. L is opened after G. N is opened before H. I is opened after K.", "question": "Which one of the following could be the order, from first to last, in which the valves are opened?", "options": [ "A) P, I, K, G, N, H, O, L", "B) P, G, K, N, L, H, O, I", "C) G, K, I, P, H, O, N, L", "D) N, K, P, H, O, I, L, G", "E) K, I, N, G, P, H, O, L" ], "answer": "E" }, { "id": "ar_lsat_200709_2-G_1_2", "context": "Workers at a water treatment plant open eight valves—G, H, I, K, L, N, O, and P—to flush out a system of pipes that needs emergency repairs. To maximize safety and efficiency, each valve is opened exactly once, and no two valves are opened at the same time. The valves are opened in accordance with the following conditions: Both K and P are opened before H. O is opened before L but after H. L is opened after G. N is opened before H. I is opened after K.", "question": "Each of the following could be the fifth valve opened EXCEPT:", "options": [ "A) H", "B) I", "C) K", "D) N", "E) O" ], "answer": "C" }, { "id": "ar_lsat_200709_2-G_1_3", "context": "Workers at a water treatment plant open eight valves—G, H, I, K, L, N, O, and P—to flush out a system of pipes that needs emergency repairs. To maximize safety and efficiency, each valve is opened exactly once, and no two valves are opened at the same time. The valves are opened in accordance with the following conditions: Both K and P are opened before H. O is opened before L but after H. L is opened after G. N is opened before H. I is opened after K.", "question": "If I is the second valve opened, then each of the following could be true EXCEPT:", "options": [ "A) G is the third valve opened.", "B) H is the fourth valve opened.", "C) P is the fifth valve opened.", "D) O is the sixth valve opened.", "E) G is the seventh valve opened." ], "answer": "B" }, { "id": "ar_lsat_200709_2-G_1_4", "context": "Workers at a water treatment plant open eight valves—G, H, I, K, L, N, O, and P—to flush out a system of pipes that needs emergency repairs. To maximize safety and efficiency, each valve is opened exactly once, and no two valves are opened at the same time. The valves are opened in accordance with the following conditions: Both K and P are opened before H. O is opened before L but after H. L is opened after G. N is opened before H. I is opened after K.", "question": "If L is the seventh valve opened, then each of the following could be the second valve opened EXCEPT:", "options": [ "A) G", "B) I", "C) K", "D) N", "E) P" ], "answer": "B" }, { "id": "ar_lsat_200709_2-G_1_5", "context": "Workers at a water treatment plant open eight valves—G, H, I, K, L, N, O, and P—to flush out a system of pipes that needs emergency repairs. To maximize safety and efficiency, each valve is opened exactly once, and no two valves are opened at the same time. The valves are opened in accordance with the following conditions: Both K and P are opened before H. O is opened before L but after H. L is opened after G. N is opened before H. I is opened after K.", "question": "Which one of the following must be true?", "options": [ "A) At least one valve is opened before P is opened.", "B) At least two valves are opened before G is opened.", "C) No more than two valves are opened after O is opened.", "D) No more than three valves are opened after H is opened.", "E) No more than four valves are opened before N is opened." ], "answer": "E" }, { "id": "ar_lsat_200709_2-G_1_6", "context": "Workers at a water treatment plant open eight valves—G, H, I, K, L, N, O, and P—to flush out a system of pipes that needs emergency repairs. To maximize safety and efficiency, each valve is opened exactly once, and no two valves are opened at the same time. The valves are opened in accordance with the following conditions: Both K and P are opened before H. O is opened before L but after H. L is opened after G. N is opened before H. I is opened after K.", "question": "If K is the fourth valve opened, then which one of the following could be true?", "options": [ "A) I is the second valve opened.", "B) N is the third valve opened.", "C) G is the fifth valve opened.", "D) O is the fifth valve opened.", "E) P is the sixth valve opened." ], "answer": "B" }, { "id": "ar_lsat_200709_2-G_1_7", "context": "Workers at a water treatment plant open eight valves—G, H, I, K, L, N, O, and P—to flush out a system of pipes that needs emergency repairs. To maximize safety and efficiency, each valve is opened exactly once, and no two valves are opened at the same time. The valves are opened in accordance with the following conditions: Both K and P are opened before H. O is opened before L but after H. L is opened after G. N is opened before H. I is opened after K.", "question": "If G is the first valve opened and I is the third valve opened, then each of the following must be true EXCEPT:", "options": [ "A) K is the second valve opened.", "B) N is the fourth valve opened.", "C) H is the sixth valve opened.", "D) O is the seventh valve opened.", "E) L is the eighth valve opened." ], "answer": "B" }, { "id": "ar_lsat_200709_2-G_2_8", "context": "On a field trip to the Museum of Natural History, each of six children—Juana, Kyle, Lucita, Salim, Thanh, and Veronica—is accompanied by one of three adults—Ms. Margoles, Mr. O'Connell, and Ms. Podorski. Each adult accompanies exactly two of the children, consistent with the following conditions: If Ms. Margoles accompanies Juana, then Ms. Podorski accompanies Lucita. If Kyle is not accompanied by Ms. Margoles, then Veronica is accompanied by Mr. O'Connell. Either Ms. Margoles or Mr. O'Connell accompanies Thanh. Juana is not accompanied by the same adult as Kyle; nor is Lucita accompanied by the same adult as Salim; nor is Thanh accompanied by the same adult as Veronica.", "question": "Which one of the following could be an accurate matching of the adults to the children they accompany?", "options": [ "A) Ms. Margoles: Juana, Thanh; Mr. O'Connell: Lucita, Veronica; Ms. Podorski: Kyle, Salim", "B) Ms. Margoles: Kyle, Thanh; Mr. O'Connell: Juana, Salim; Ms. Podorski: Lucita, Veronica", "C) Ms. Margoles: Lucita, Thanh; Mr. O'Connell: Juana, Salim; Ms. Podorski: Kyle, Veronica", "D) Ms. Margoles: Kyle, Veronica; Mr. O'Connell: Juana, Thanh; Ms. Podorski: Lucita, Salim", "E) Ms. Margoles: Salim, Veronica; Mr. O'Connell: Kyle, Lucita; Ms. Podorski: Juana, Thanh" ], "answer": "B" }, { "id": "ar_lsat_200709_2-G_2_9", "context": "On a field trip to the Museum of Natural History, each of six children—Juana, Kyle, Lucita, Salim, Thanh, and Veronica—is accompanied by one of three adults—Ms. Margoles, Mr. O'Connell, and Ms. Podorski. Each adult accompanies exactly two of the children, consistent with the following conditions: If Ms. Margoles accompanies Juana, then Ms. Podorski accompanies Lucita. If Kyle is not accompanied by Ms. Margoles, then Veronica is accompanied by Mr. O'Connell. Either Ms. Margoles or Mr. O'Connell accompanies Thanh. Juana is not accompanied by the same adult as Kyle; nor is Lucita accompanied by the same adult as Salim; nor is Thanh accompanied by the same adult as Veronica.", "question": "If Ms. Margoles accompanies Lucita and Thanh, then which one of the following must be true?", "options": [ "A) Juana is accompanied by the same adult as Veronica.", "B) Kyle is accompanied by the same adult as Salim.", "C) Juana is accompanied by Mr. O'Connell.", "D) Kyle is accompanied by Ms. Podorski.", "E) Salim is accompanied by Ms. Podorski." ], "answer": "E" }, { "id": "ar_lsat_200709_2-G_2_10", "context": "On a field trip to the Museum of Natural History, each of six children—Juana, Kyle, Lucita, Salim, Thanh, and Veronica—is accompanied by one of three adults—Ms. Margoles, Mr. O'Connell, and Ms. Podorski. Each adult accompanies exactly two of the children, consistent with the following conditions: If Ms. Margoles accompanies Juana, then Ms. Podorski accompanies Lucita. If Kyle is not accompanied by Ms. Margoles, then Veronica is accompanied by Mr. O'Connell. Either Ms. Margoles or Mr. O'Connell accompanies Thanh. Juana is not accompanied by the same adult as Kyle; nor is Lucita accompanied by the same adult as Salim; nor is Thanh accompanied by the same adult as Veronica.", "question": "If Ms. Podorski accompanies Juana and Veronica, then Ms. Margoles could accompany which one of the following pairs of children?", "options": [ "A) Kyle and Salim", "B) Kyle and Thanh", "C) Lucita and Salim", "D) Lucita and Thanh", "E) Salim and Thanh" ], "answer": "A" }, { "id": "ar_lsat_200709_2-G_2_11", "context": "On a field trip to the Museum of Natural History, each of six children—Juana, Kyle, Lucita, Salim, Thanh, and Veronica—is accompanied by one of three adults—Ms. Margoles, Mr. O'Connell, and Ms. Podorski. Each adult accompanies exactly two of the children, consistent with the following conditions: If Ms. Margoles accompanies Juana, then Ms. Podorski accompanies Lucita. If Kyle is not accompanied by Ms. Margoles, then Veronica is accompanied by Mr. O'Connell. Either Ms. Margoles or Mr. O'Connell accompanies Thanh. Juana is not accompanied by the same adult as Kyle; nor is Lucita accompanied by the same adult as Salim; nor is Thanh accompanied by the same adult as Veronica.", "question": "Ms. Podorski CANNOT accompany which one of the following pairs of children?", "options": [ "A) Juana and Lucita", "B) Juana and Salim", "C) Kyle and Salim", "D) Salim and Thanh", "E) Salim and Veronica" ], "answer": "D" }, { "id": "ar_lsat_200709_2-G_2_12", "context": "On a field trip to the Museum of Natural History, each of six children—Juana, Kyle, Lucita, Salim, Thanh, and Veronica—is accompanied by one of three adults—Ms. Margoles, Mr. O'Connell, and Ms. Podorski. Each adult accompanies exactly two of the children, consistent with the following conditions: If Ms. Margoles accompanies Juana, then Ms. Podorski accompanies Lucita. If Kyle is not accompanied by Ms. Margoles, then Veronica is accompanied by Mr. O'Connell. Either Ms. Margoles or Mr. O'Connell accompanies Thanh. Juana is not accompanied by the same adult as Kyle; nor is Lucita accompanied by the same adult as Salim; nor is Thanh accompanied by the same adult as Veronica.", "question": "Mr. O'Connell CANNOT accompany which one of the following pairs of children?", "options": [ "A) Juana and Lucita", "B) Juana and Veronica", "C) Kyle and Thanh", "D) Lucita and Thanh", "E) Salim and Veronica" ], "answer": "C" }, { "id": "ar_lsat_200709_2-G_3_13", "context": "Three short seminars—Goals, Objections, and Persuasion—and three long seminars—Humor, Negotiating, and Telemarketing—will be scheduled for a three-day sales training conference. On each day, two of the seminars will be given consecutively. Each seminar will be given exactly once. The schedule must conform to the following conditions: Exactly one short seminar and exactly one long seminar will be given each day. Telemarketing will not be given until both Goals and Objections have been given. Negotiating will not be given until Persuasion has been given.", "question": "Which one of the following could be an accurate schedule for the sales training conference?", "options": [ "A) first day: Persuasion followed by Negotiating second day: Objections followed by Telemarketing third day: Goals followed by Humor", "B) first day: Objections followed by Humor second day: Goals followed by Telemarketing third day: Persuasion followed by Negotiating", "C) first day: Objections followed by Negotiating second day: Persuasion followed by Humor third day: Goals followed by Telemarketing", "D) first day: Objections followed by Goals second day: Telemarketing followed by Persuasion third day: Negotiating followed by Humor", "E) first day: Goals followed by Humor second day: Persuasion followed by Telemarketing third day: Objections followed by Negotiating" ], "answer": "B" }, { "id": "ar_lsat_200709_2-G_3_14", "context": "Three short seminars—Goals, Objections, and Persuasion—and three long seminars—Humor, Negotiating, and Telemarketing—will be scheduled for a three-day sales training conference. On each day, two of the seminars will be given consecutively. Each seminar will be given exactly once. The schedule must conform to the following conditions: Exactly one short seminar and exactly one long seminar will be given each day. Telemarketing will not be given until both Goals and Objections have been given. Negotiating will not be given until Persuasion has been given.", "question": "If Goals is given on the first day of the sales training conference, then which one of the following could be true?", "options": [ "A) Negotiating is given on the first day.", "B) Objections is given on the first day.", "C) Persuasion is given on the first day.", "D) Humor is given on the second day.", "E) Telemarketing is given on the second day." ], "answer": "E" }, { "id": "ar_lsat_200709_2-G_3_15", "context": "Three short seminars—Goals, Objections, and Persuasion—and three long seminars—Humor, Negotiating, and Telemarketing—will be scheduled for a three-day sales training conference. On each day, two of the seminars will be given consecutively. Each seminar will be given exactly once. The schedule must conform to the following conditions: Exactly one short seminar and exactly one long seminar will be given each day. Telemarketing will not be given until both Goals and Objections have been given. Negotiating will not be given until Persuasion has been given.", "question": "If Negotiating is given at some time before Objections, then which one of the following must be true?", "options": [ "A) Negotiating is given at some time before Goals.", "B) Persuasion is given at some time before Goals.", "C) Persuasion is given at some time before Objections.", "D) Humor is given at some time before Objections.", "E) Negotiating is given at some time before Humor." ], "answer": "C" }, { "id": "ar_lsat_200709_2-G_3_16", "context": "Three short seminars—Goals, Objections, and Persuasion—and three long seminars—Humor, Negotiating, and Telemarketing—will be scheduled for a three-day sales training conference. On each day, two of the seminars will be given consecutively. Each seminar will be given exactly once. The schedule must conform to the following conditions: Exactly one short seminar and exactly one long seminar will be given each day. Telemarketing will not be given until both Goals and Objections have been given. Negotiating will not be given until Persuasion has been given.", "question": "Which one of the following CANNOT be the second seminar given on the second day of the sales training conference?", "options": [ "A) Humor", "B) Persuasion", "C) Objections", "D) Negotiating", "E) Goals" ], "answer": "B" }, { "id": "ar_lsat_200709_2-G_3_17", "context": "Three short seminars—Goals, Objections, and Persuasion—and three long seminars—Humor, Negotiating, and Telemarketing—will be scheduled for a three-day sales training conference. On each day, two of the seminars will be given consecutively. Each seminar will be given exactly once. The schedule must conform to the following conditions: Exactly one short seminar and exactly one long seminar will be given each day. Telemarketing will not be given until both Goals and Objections have been given. Negotiating will not be given until Persuasion has been given.", "question": "If Humor is given on the second day of the sales training conference, then which one of the following could be true?", "options": [ "A) Telemarketing is given on the first day.", "B) Negotiating is given on the second day.", "C) Telemarketing is given on the second day.", "D) Objections is given on the third day.", "E) Persuasion is given on the third day." ], "answer": "D" }, { "id": "ar_lsat_200709_2-G_4_18", "context": "A bread truck makes exactly one bread delivery to each of six restaurants in succession—Figueroa's, Ginsberg's, Harris's, Kanzaki's, Leacock's, and Malpighi's—though not necessarily in that order. The following conditions must apply: Ginsberg's delivery is earlier than Kanzaki's but later than Figueroa's. Harris's delivery is earlier than Ginsberg's. If Figueroa's delivery is earlier than Malpighi's, then Leacock's delivery is earlier than Harris's. Either Malpighi's delivery is earlier than Harris's or it is later than Kanzaki's, but not both.", "question": "Which one of the following accurately represents an order in which the deliveries could occur, from first to last?", "options": [ "A) Harris's, Figueroa's, Leacock's, Ginsberg's, Kanzaki's, Malpighi's", "B) Leacock's, Harris's, Figueroa's, Ginsberg's, Malpighi's, Kanzaki's", "C) Malpighi's, Figueroa's, Harris's, Ginsberg's, Leacock's, Kanzaki's", "D) Malpighi's, Figueroa's, Kanzaki's, Harris's, Ginsberg's, Leacock's", "E) Malpighi's, Figueroa's, Ginsberg's, Kanzaki's, Harris's, Leacock's" ], "answer": "C" }, { "id": "ar_lsat_200709_2-G_4_19", "context": "A bread truck makes exactly one bread delivery to each of six restaurants in succession—Figueroa's, Ginsberg's, Harris's, Kanzaki's, Leacock's, and Malpighi's—though not necessarily in that order. The following conditions must apply: Ginsberg's delivery is earlier than Kanzaki's but later than Figueroa's. Harris's delivery is earlier than Ginsberg's. If Figueroa's delivery is earlier than Malpighi's, then Leacock's delivery is earlier than Harris's. Either Malpighi's delivery is earlier than Harris's or it is later than Kanzaki's, but not both.", "question": "If Figueroa's delivery is fourth, then which one of the following must be true?", "options": [ "A) Ginsberg's delivery is fifth.", "B) Harris's delivery is second.", "C) Harris's delivery is third.", "D) Leacock's delivery is second.", "E) Malpighi's delivery is first." ], "answer": "A" }, { "id": "ar_lsat_200709_2-G_4_20", "context": "A bread truck makes exactly one bread delivery to each of six restaurants in succession—Figueroa's, Ginsberg's, Harris's, Kanzaki's, Leacock's, and Malpighi's—though not necessarily in that order. The following conditions must apply: Ginsberg's delivery is earlier than Kanzaki's but later than Figueroa's. Harris's delivery is earlier than Ginsberg's. If Figueroa's delivery is earlier than Malpighi's, then Leacock's delivery is earlier than Harris's. Either Malpighi's delivery is earlier than Harris's or it is later than Kanzaki's, but not both.", "question": "If Malpighi's delivery is first and Leacock's delivery is third, then which one of the following must be true?", "options": [ "A) Figueroa's delivery is second.", "B) Harris's delivery is second.", "C) Harris's delivery is fourth.", "D) Kanzaki's delivery is fifth.", "E) Kanzaki's delivery is last." ], "answer": "E" }, { "id": "ar_lsat_200709_2-G_4_21", "context": "A bread truck makes exactly one bread delivery to each of six restaurants in succession—Figueroa's, Ginsberg's, Harris's, Kanzaki's, Leacock's, and Malpighi's—though not necessarily in that order. The following conditions must apply: Ginsberg's delivery is earlier than Kanzaki's but later than Figueroa's. Harris's delivery is earlier than Ginsberg's. If Figueroa's delivery is earlier than Malpighi's, then Leacock's delivery is earlier than Harris's. Either Malpighi's delivery is earlier than Harris's or it is later than Kanzaki's, but not both.", "question": "Which one of the following must be true?", "options": [ "A) Figueroa's delivery is earlier than Leacock's.", "B) Ginsberg's delivery is earlier than Leacock's.", "C) Harris's delivery is earlier than Kanzaki's.", "D) Leacock's delivery is earlier than Ginsberg's.", "E) Malpighi's delivery is earlier than Harris's." ], "answer": "C" }, { "id": "ar_lsat_200709_2-G_4_22", "context": "A bread truck makes exactly one bread delivery to each of six restaurants in succession—Figueroa's, Ginsberg's, Harris's, Kanzaki's, Leacock's, and Malpighi's—though not necessarily in that order. The following conditions must apply: Ginsberg's delivery is earlier than Kanzaki's but later than Figueroa's. Harris's delivery is earlier than Ginsberg's. If Figueroa's delivery is earlier than Malpighi's, then Leacock's delivery is earlier than Harris's. Either Malpighi's delivery is earlier than Harris's or it is later than Kanzaki's, but not both.", "question": "If Kanzaki's delivery is earlier than Leacock's, then which one of the following could be true?", "options": [ "A) Figueroa's delivery is first.", "B) Ginsberg's delivery is third.", "C) Harris's delivery is third.", "D) Leacock's delivery is fifth.", "E) Malpighi's delivery is second." ], "answer": "C" }, { "id": "ar_lsat_200709_2-G_4_23", "context": "A bread truck makes exactly one bread delivery to each of six restaurants in succession—Figueroa's, Ginsberg's, Harris's, Kanzaki's, Leacock's, and Malpighi's—though not necessarily in that order. The following conditions must apply: Ginsberg's delivery is earlier than Kanzaki's but later than Figueroa's. Harris's delivery is earlier than Ginsberg's. If Figueroa's delivery is earlier than Malpighi's, then Leacock's delivery is earlier than Harris's. Either Malpighi's delivery is earlier than Harris's or it is later than Kanzaki's, but not both.", "question": "Which one of the following must be false?", "options": [ "A) Figueroa's delivery is first.", "B) Ginsberg's delivery is fifth.", "C) Harris's delivery is third.", "D) Leacock's delivery is second.", "E) Malpighi's delivery is fourth." ], "answer": "E" }, { "id": "ar_lsat_200712_2-G_1_1", "context": "Five performers—Traugott, West, Xavier, Young, and Zinser—are recruited by three talent agencies—Fame Agency, Premier Agency, and Star Agency. Each performer signs with exactly one of the agencies and each agency signs at least one of the performers. The performers' signing with the agencies is in accord with the following: Xavier signs with Fame Agency. Xavier and Young do not sign with the same agency as each other. Zinser signs with the same agency as Young. If Traugott signs with Star Agency, West also signs with Star Agency.", "question": "Which one of the following could be a complete and accurate list of the performers who sign with each agency?", "options": [ "A) Fame Agency: Xavier Premier Agency: West Star Agency: Traugott, Young, Zinser", "B) Fame Agency: Xavier Premier Agency: Traugott, West Star Agency: Young, Zinser", "C) Fame Agency: Xavier Premier Agency: Traugott, Young Star Agency: West, Zinser", "D) Fame Agency: Young, Zinser Premier Agency: Xavier Star Agency: Traugott, West", "E) Fame Agency: Xavier, Young, Zinser Premier Agency: Traugott Star Agency: West" ], "answer": "B" }, { "id": "ar_lsat_200712_2-G_1_2", "context": "Five performers—Traugott, West, Xavier, Young, and Zinser—are recruited by three talent agencies—Fame Agency, Premier Agency, and Star Agency. Each performer signs with exactly one of the agencies and each agency signs at least one of the performers. The performers' signing with the agencies is in accord with the following: Xavier signs with Fame Agency. Xavier and Young do not sign with the same agency as each other. Zinser signs with the same agency as Young. If Traugott signs with Star Agency, West also signs with Star Agency.", "question": "Which one of the following could be true?", "options": [ "A) West is the only performer who signs with Star Agency.", "B) West, Young, and Zinser all sign with Premier Agency.", "C) Xavier signs with the same agency as Zinser.", "D) Zinser is the only performer who signs with Star Agency.", "E) Three of the performers sign with Fame Agency." ], "answer": "A" }, { "id": "ar_lsat_200712_2-G_1_3", "context": "Five performers—Traugott, West, Xavier, Young, and Zinser—are recruited by three talent agencies—Fame Agency, Premier Agency, and Star Agency. Each performer signs with exactly one of the agencies and each agency signs at least one of the performers. The performers' signing with the agencies is in accord with the following: Xavier signs with Fame Agency. Xavier and Young do not sign with the same agency as each other. Zinser signs with the same agency as Young. If Traugott signs with Star Agency, West also signs with Star Agency.", "question": "Which one of the following must be true?", "options": [ "A) West and Zinser do not sign with the same agency as each other.", "B) Fame Agency signs at most two of the performers.", "C) Fame Agency signs the same number of the performers as Star Agency.", "D) Traugott signs with the same agency as West.", "E) West does not sign with Fame Agency." ], "answer": "B" }, { "id": "ar_lsat_200712_2-G_1_4", "context": "Five performers—Traugott, West, Xavier, Young, and Zinser—are recruited by three talent agencies—Fame Agency, Premier Agency, and Star Agency. Each performer signs with exactly one of the agencies and each agency signs at least one of the performers. The performers' signing with the agencies is in accord with the following: Xavier signs with Fame Agency. Xavier and Young do not sign with the same agency as each other. Zinser signs with the same agency as Young. If Traugott signs with Star Agency, West also signs with Star Agency.", "question": "The agency with which each of the performers signs is completely determined if which one of the following is true?", "options": [ "A) Traugott signs with Fame Agency.", "B) Traugott signs with Star Agency.", "C) West signs with Premier Agency.", "D) Xavier signs with Fame Agency.", "E) Zinser signs with Premier Agency." ], "answer": "B" }, { "id": "ar_lsat_200712_2-G_1_5", "context": "Five performers—Traugott, West, Xavier, Young, and Zinser—are recruited by three talent agencies—Fame Agency, Premier Agency, and Star Agency. Each performer signs with exactly one of the agencies and each agency signs at least one of the performers. The performers' signing with the agencies is in accord with the following: Xavier signs with Fame Agency. Xavier and Young do not sign with the same agency as each other. Zinser signs with the same agency as Young. If Traugott signs with Star Agency, West also signs with Star Agency.", "question": "If Zinser signs with Star Agency, which one of the following must be false?", "options": [ "A) Premier Agency signs exactly one performer.", "B) Star Agency signs exactly three of the performers.", "C) Traugott signs with Star Agency.", "D) West signs with Star Agency.", "E) None of the other performers signs with the same agency as Xavier." ], "answer": "C" }, { "id": "ar_lsat_200712_2-G_2_6", "context": "A competition is being held to select a design for Yancy College's new student union building. Each of six architects—Green, Jackson, Liu, Mertz, Peete, and Valdez—has submitted exactly one design. There are exactly six designs, and they are presented one at a time to the panel of judges, each design being presented exactly once, consistent with the following conditions: Mertz's design is presented at some time before Liu's and after Peete's. Green's design is presented either at some time before Jackson's or at some time after Liu's, but not both. Valdez's design is presented either at some time before Green's or at some time after Peete's, but not both.", "question": "Which one of the following could be the order in which the designs are presented, from first to last?", "options": [ "A) Jackson's, Peete's, Mertz's, Green's, Valdez's, Liu's", "B) Peete's, Jackson's, Liu's, Mertz's, Green's, Valdez's", "C) Peete's, Mertz's, Jackson's, Liu's, Green's, Valdez's", "D) Peete's, Mertz's, Valdez's, Green's, Liu's, Jackson's", "E) Valdez's, Liu's, Jackson's, Peete's, Mertz's, Green's" ], "answer": "C" }, { "id": "ar_lsat_200712_2-G_2_7", "context": "A competition is being held to select a design for Yancy College's new student union building. Each of six architects—Green, Jackson, Liu, Mertz, Peete, and Valdez—has submitted exactly one design. There are exactly six designs, and they are presented one at a time to the panel of judges, each design being presented exactly once, consistent with the following conditions: Mertz's design is presented at some time before Liu's and after Peete's. Green's design is presented either at some time before Jackson's or at some time after Liu's, but not both. Valdez's design is presented either at some time before Green's or at some time after Peete's, but not both.", "question": "Mertz's design CANNOT be presented", "options": [ "A) sixth", "B) fifth", "C) fourth", "D) third", "E) second" ], "answer": "A" }, { "id": "ar_lsat_200712_2-G_2_8", "context": "A competition is being held to select a design for Yancy College's new student union building. Each of six architects—Green, Jackson, Liu, Mertz, Peete, and Valdez—has submitted exactly one design. There are exactly six designs, and they are presented one at a time to the panel of judges, each design being presented exactly once, consistent with the following conditions: Mertz's design is presented at some time before Liu's and after Peete's. Green's design is presented either at some time before Jackson's or at some time after Liu's, but not both. Valdez's design is presented either at some time before Green's or at some time after Peete's, but not both.", "question": "If Liu's design is presented sixth, then which one of the following must be true?", "options": [ "A) Green's design is presented at some time before Jackson's.", "B) Jackson's design is presented at some time before Mertz's.", "C) Peete's design is presented at some time before Green's.", "D) Peete's design is presented at some time before Valdez's.", "E) Valdez's design is presented at some time before Green's." ], "answer": "A" }, { "id": "ar_lsat_200712_2-G_2_9", "context": "A competition is being held to select a design for Yancy College's new student union building. Each of six architects—Green, Jackson, Liu, Mertz, Peete, and Valdez—has submitted exactly one design. There are exactly six designs, and they are presented one at a time to the panel of judges, each design being presented exactly once, consistent with the following conditions: Mertz's design is presented at some time before Liu's and after Peete's. Green's design is presented either at some time before Jackson's or at some time after Liu's, but not both. Valdez's design is presented either at some time before Green's or at some time after Peete's, but not both.", "question": "If Jackson's design is presented at some time before Mertz's, then each of the following could be true EXCEPT:", "options": [ "A) Jackson's design is presented second.", "B) Peete's design is presented third.", "C) Peete's design is presented fourth.", "D) Jackson's design is presented fifth.", "E) Liu's design is presented fifth." ], "answer": "D" }, { "id": "ar_lsat_200712_2-G_2_10", "context": "A competition is being held to select a design for Yancy College's new student union building. Each of six architects—Green, Jackson, Liu, Mertz, Peete, and Valdez—has submitted exactly one design. There are exactly six designs, and they are presented one at a time to the panel of judges, each design being presented exactly once, consistent with the following conditions: Mertz's design is presented at some time before Liu's and after Peete's. Green's design is presented either at some time before Jackson's or at some time after Liu's, but not both. Valdez's design is presented either at some time before Green's or at some time after Peete's, but not both.", "question": "Which one of the following designs CANNOT be the design presented first?", "options": [ "A) Green's", "B) Jackson's", "C) Liu's", "D) Peete's", "E) Valdez's" ], "answer": "C" }, { "id": "ar_lsat_200712_2-G_2_11", "context": "A competition is being held to select a design for Yancy College's new student union building. Each of six architects—Green, Jackson, Liu, Mertz, Peete, and Valdez—has submitted exactly one design. There are exactly six designs, and they are presented one at a time to the panel of judges, each design being presented exactly once, consistent with the following conditions: Mertz's design is presented at some time before Liu's and after Peete's. Green's design is presented either at some time before Jackson's or at some time after Liu's, but not both. Valdez's design is presented either at some time before Green's or at some time after Peete's, but not both.", "question": "Which one of the following could be an accurate partial list of the architects, each matched with his or her design's place in the order in which the designs are presented?", "options": [ "A) first: Mertz; fourth: Liu; fifth: Green", "B) second: Green; third: Peete; fourth: Jackson", "C) second: Mertz; fifth: Green; sixth: Jackson", "D) fourth: Peete; fifth: Liu; sixth: Jackson", "E) fourth: Valdez; fifth: Green; sixth: Liu" ], "answer": "B" }, { "id": "ar_lsat_200712_2-G_3_12", "context": "Detectives investigating a citywide increase in burglaries questioned exactly seven suspects—S, T, V, W, X, Y, and Z—each on a different one of seven consecutive days. Each suspect was questioned exactly once. Any suspect who confessed did so while being questioned. The investigation conformed to the following: T was questioned on day three. The suspect questioned on day four did not confess. S was questioned after W was questioned. Both X and V were questioned after Z was questioned. No suspects confessed after W was questioned. Exactly two suspects confessed after T was questioned.", "question": "Which one of the following could be true?", "options": [ "A) X was questioned on day one.", "B) V was questioned on day two.", "C) Z was questioned on day four.", "D) W was questioned on day five.", "E) S was questioned on day six." ], "answer": "B" }, { "id": "ar_lsat_200712_2-G_3_13", "context": "Detectives investigating a citywide increase in burglaries questioned exactly seven suspects—S, T, V, W, X, Y, and Z—each on a different one of seven consecutive days. Each suspect was questioned exactly once. Any suspect who confessed did so while being questioned. The investigation conformed to the following: T was questioned on day three. The suspect questioned on day four did not confess. S was questioned after W was questioned. Both X and V were questioned after Z was questioned. No suspects confessed after W was questioned. Exactly two suspects confessed after T was questioned.", "question": "If Z was the second suspect to confess, then each of the following statements could be true EXCEPT:", "options": [ "A) T confessed.", "B) T did not confess.", "C) V did not confess.", "D) X confessed.", "E) Y did not confess." ], "answer": "E" }, { "id": "ar_lsat_200712_2-G_3_14", "context": "Detectives investigating a citywide increase in burglaries questioned exactly seven suspects—S, T, V, W, X, Y, and Z—each on a different one of seven consecutive days. Each suspect was questioned exactly once. Any suspect who confessed did so while being questioned. The investigation conformed to the following: T was questioned on day three. The suspect questioned on day four did not confess. S was questioned after W was questioned. Both X and V were questioned after Z was questioned. No suspects confessed after W was questioned. Exactly two suspects confessed after T was questioned.", "question": "If Y was questioned after V but before X, then which one of the following could be true?", "options": [ "A) V did not confess.", "B) Y confessed.", "C) X did not confess.", "D) X was questioned on day four.", "E) Z was questioned on day two." ], "answer": "A" }, { "id": "ar_lsat_200712_2-G_3_15", "context": "Detectives investigating a citywide increase in burglaries questioned exactly seven suspects—S, T, V, W, X, Y, and Z—each on a different one of seven consecutive days. Each suspect was questioned exactly once. Any suspect who confessed did so while being questioned. The investigation conformed to the following: T was questioned on day three. The suspect questioned on day four did not confess. S was questioned after W was questioned. Both X and V were questioned after Z was questioned. No suspects confessed after W was questioned. Exactly two suspects confessed after T was questioned.", "question": "Which one of the following suspects must have been questioned before T was questioned?", "options": [ "A) V", "B) W", "C) X", "D) Y", "E) Z" ], "answer": "E" }, { "id": "ar_lsat_200712_2-G_3_16", "context": "Detectives investigating a citywide increase in burglaries questioned exactly seven suspects—S, T, V, W, X, Y, and Z—each on a different one of seven consecutive days. Each suspect was questioned exactly once. Any suspect who confessed did so while being questioned. The investigation conformed to the following: T was questioned on day three. The suspect questioned on day four did not confess. S was questioned after W was questioned. Both X and V were questioned after Z was questioned. No suspects confessed after W was questioned. Exactly two suspects confessed after T was questioned.", "question": "If X and Y both confessed, then each of the following could be true EXCEPT:", "options": [ "A) V confessed.", "B) X was questioned on day five.", "C) Y was questioned on day one.", "D) Z was questioned on day one.", "E) Z did not confess." ], "answer": "A" }, { "id": "ar_lsat_200712_2-G_3_17", "context": "Detectives investigating a citywide increase in burglaries questioned exactly seven suspects—S, T, V, W, X, Y, and Z—each on a different one of seven consecutive days. Each suspect was questioned exactly once. Any suspect who confessed did so while being questioned. The investigation conformed to the following: T was questioned on day three. The suspect questioned on day four did not confess. S was questioned after W was questioned. Both X and V were questioned after Z was questioned. No suspects confessed after W was questioned. Exactly two suspects confessed after T was questioned.", "question": "If neither X nor V confessed, then which one of the following must be true?", "options": [ "A) T confessed.", "B) V was questioned on day two.", "C) X was questioned on day four.", "D) Y confessed.", "E) Z did not confess." ], "answer": "D" }, { "id": "ar_lsat_200712_2-G_4_18", "context": "The three highest-placing teams in a high school debate tournament are the teams from Fairview, Gillom, and Hilltop high schools. Each team has exactly two members. The individuals on these three teams are Mei, Navarro, O'Rourke, Pavlovich, Sethna, and Tsudama. The following is the case: Sethna is on the team from Gillom High. Tsudama is on the second-place team. Mei and Pavlovich are not on the same team. Pavlovich's team places higher than Navarro's team. The team from Gillom High places higher than the team from Hilltop High.", "question": "Which one of the following could be an accurate list of the members of each of the three highest-placing teams?", "options": [ "A) first place: Mei and O'Rourke second place: Pavlovich and Sethna third place: Navarro and Tsudama", "B) first place: Mei and Pavlovich second place: Sethna and Tsudama third place: Navarro and O'Rourke", "C) first place: Navarro and Sethna second place: Pavlovich and Tsudama third place: Mei and O'Rourke", "D) first place: O'Rourke and Pavlovich second place: Navarro and Tsudama third place: Mei and Sethna", "E) first place: Pavlovich and Sethna second place: O'Rourke and Tsudama third place: Mei and Navarro" ], "answer": "E" }, { "id": "ar_lsat_200712_2-G_4_19", "context": "The three highest-placing teams in a high school debate tournament are the teams from Fairview, Gillom, and Hilltop high schools. Each team has exactly two members. The individuals on these three teams are Mei, Navarro, O'Rourke, Pavlovich, Sethna, and Tsudama. The following is the case: Sethna is on the team from Gillom High. Tsudama is on the second-place team. Mei and Pavlovich are not on the same team. Pavlovich's team places higher than Navarro's team. The team from Gillom High places higher than the team from Hilltop High.", "question": "If Pavlovich is on the team from Hilltop High, then which one of the following could be true?", "options": [ "A) O'Rourke is on the first-place team.", "B) Pavlovich is on the first-place team.", "C) Mei is on the second-place team.", "D) Navarro is on the second-place team.", "E) Sethna is on the second-place team." ], "answer": "A" }, { "id": "ar_lsat_200712_2-G_4_20", "context": "The three highest-placing teams in a high school debate tournament are the teams from Fairview, Gillom, and Hilltop high schools. Each team has exactly two members. The individuals on these three teams are Mei, Navarro, O'Rourke, Pavlovich, Sethna, and Tsudama. The following is the case: Sethna is on the team from Gillom High. Tsudama is on the second-place team. Mei and Pavlovich are not on the same team. Pavlovich's team places higher than Navarro's team. The team from Gillom High places higher than the team from Hilltop High.", "question": "If O'Rourke is on the second-place team, then which one of the following could be true?", "options": [ "A) Mei is on the team from Gillom High.", "B) Navarro is on the team from Fairview High.", "C) O'Rourke is on the team from Gillom High.", "D) Pavlovich is on the team from Hilltop High.", "E) Tsudama is on the team from Gillom High." ], "answer": "B" }, { "id": "ar_lsat_200712_2-G_4_21", "context": "The three highest-placing teams in a high school debate tournament are the teams from Fairview, Gillom, and Hilltop high schools. Each team has exactly two members. The individuals on these three teams are Mei, Navarro, O'Rourke, Pavlovich, Sethna, and Tsudama. The following is the case: Sethna is on the team from Gillom High. Tsudama is on the second-place team. Mei and Pavlovich are not on the same team. Pavlovich's team places higher than Navarro's team. The team from Gillom High places higher than the team from Hilltop High.", "question": "If Pavlovich and Tsudama are teammates, then for how many of the individuals can it be exactly determined where his or her team places?", "options": [ "A) two", "B) three", "C) four", "D) five", "E) six" ], "answer": "C" }, { "id": "ar_lsat_200712_2-G_4_22", "context": "The three highest-placing teams in a high school debate tournament are the teams from Fairview, Gillom, and Hilltop high schools. Each team has exactly two members. The individuals on these three teams are Mei, Navarro, O'Rourke, Pavlovich, Sethna, and Tsudama. The following is the case: Sethna is on the team from Gillom High. Tsudama is on the second-place team. Mei and Pavlovich are not on the same team. Pavlovich's team places higher than Navarro's team. The team from Gillom High places higher than the team from Hilltop High.", "question": "If Mei is on a team that places higher than the Hilltop team, then which one of the following could be true?", "options": [ "A) The Fairview team places first.", "B) The Gillom team places second.", "C) Navarro is on the second-place team.", "D) O'Rourke is on the first-place team.", "E) Pavlovich is on the first-place team." ], "answer": "E" }, { "id": "ar_lsat_200712_2-G_4_23", "context": "The three highest-placing teams in a high school debate tournament are the teams from Fairview, Gillom, and Hilltop high schools. Each team has exactly two members. The individuals on these three teams are Mei, Navarro, O'Rourke, Pavlovich, Sethna, and Tsudama. The following is the case: Sethna is on the team from Gillom High. Tsudama is on the second-place team. Mei and Pavlovich are not on the same team. Pavlovich's team places higher than Navarro's team. The team from Gillom High places higher than the team from Hilltop High.", "question": "Sethna's teammate could be any one of the following EXCEPT:", "options": [ "A) Mei", "B) Navarro", "C) O'Rourke", "D) Pavlovich", "E) Tsudama" ], "answer": "B" }, { "id": "ar_lsat_200806_3-G_1_1", "context": "A dance is being choreographed for six dancers: three men—Felipe, Grant, and Hassan—and three women—Jaclyn, Keiko, and Lorena. At no time during the dance will anyone other than the dancers be on stage. Who is on stage and who is off stage at any particular time in the dance is determined by the following constraints: If Jaclyn is on stage, Lorena is off stage. If Lorena is off stage, Jaclyn is on stage. If Felipe is off stage, Jaclyn is also off stage. If any of the women are on stage, Grant is also on stage.", "question": "Which one of the following is a list of all of the dancers who could be on stage at a particular time?", "options": [ "A) Grant", "B) Keiko, Lorena", "C) Grant, Hassan, Lorena", "D) Grant, Hassan, Jaclyn", "E) Felipe, Grant, Jaclyn, Lorena" ], "answer": "C" }, { "id": "ar_lsat_200806_3-G_1_2", "context": "A dance is being choreographed for six dancers: three men—Felipe, Grant, and Hassan—and three women—Jaclyn, Keiko, and Lorena. At no time during the dance will anyone other than the dancers be on stage. Who is on stage and who is off stage at any particular time in the dance is determined by the following constraints: If Jaclyn is on stage, Lorena is off stage. If Lorena is off stage, Jaclyn is on stage. If Felipe is off stage, Jaclyn is also off stage. If any of the women are on stage, Grant is also on stage.", "question": "Which one of the following CANNOT be true at any time during the dance?", "options": [ "A) Felipe and Grant are the only men on stage.", "B) Grant and Hassan are the only men on stage.", "C) Jaclyn is the only woman on stage.", "D) Keiko is the only woman on stage.", "E) Jaclyn and Keiko are the only women on stage." ], "answer": "D" }, { "id": "ar_lsat_200806_3-G_1_3", "context": "A dance is being choreographed for six dancers: three men—Felipe, Grant, and Hassan—and three women—Jaclyn, Keiko, and Lorena. At no time during the dance will anyone other than the dancers be on stage. Who is on stage and who is off stage at any particular time in the dance is determined by the following constraints: If Jaclyn is on stage, Lorena is off stage. If Lorena is off stage, Jaclyn is on stage. If Felipe is off stage, Jaclyn is also off stage. If any of the women are on stage, Grant is also on stage.", "question": "Which one of the following is a complete and accurate list of the dancers any one of whom could be off stage when Jaclyn is on stage?", "options": [ "A) Lorena", "B) Felipe, Lorena", "C) Hassan, Lorena", "D) Hassan, Keiko", "E) Hassan, Keiko, Lorena" ], "answer": "E" }, { "id": "ar_lsat_200806_3-G_1_4", "context": "A dance is being choreographed for six dancers: three men—Felipe, Grant, and Hassan—and three women—Jaclyn, Keiko, and Lorena. At no time during the dance will anyone other than the dancers be on stage. Who is on stage and who is off stage at any particular time in the dance is determined by the following constraints: If Jaclyn is on stage, Lorena is off stage. If Lorena is off stage, Jaclyn is on stage. If Felipe is off stage, Jaclyn is also off stage. If any of the women are on stage, Grant is also on stage.", "question": "If there are more women than men on stage, then exactly how many dancers must be on stage?", "options": [ "A) five", "B) four", "C) three", "D) two", "E) one" ], "answer": "C" }, { "id": "ar_lsat_200806_3-G_1_5", "context": "A dance is being choreographed for six dancers: three men—Felipe, Grant, and Hassan—and three women—Jaclyn, Keiko, and Lorena. At no time during the dance will anyone other than the dancers be on stage. Who is on stage and who is off stage at any particular time in the dance is determined by the following constraints: If Jaclyn is on stage, Lorena is off stage. If Lorena is off stage, Jaclyn is on stage. If Felipe is off stage, Jaclyn is also off stage. If any of the women are on stage, Grant is also on stage.", "question": "What is the minimum number of dancers that must be on stage at any given time?", "options": [ "A) zero", "B) one", "C) two", "D) three", "E) four" ], "answer": "C" }, { "id": "ar_lsat_200806_3-G_2_6", "context": "A critic has prepared a review of exactly six music CDs—Headstrong, In Flight, Nice, Quasi, Reunion, and Sounds Good. Each CD received a rating of either one, two, three, or four stars, with each CD receiving exactly one rating. Although the ratings were meant to be kept secret until the review was published, the following facts have been leaked to the public: For each of the ratings, at least one but no more than two of the CDs received that rating. Headstrong received exactly one more star than Nice did. Either Headstrong or Reunion received the same number of stars as In Flight did. At most one CD received more stars than Quasi did.", "question": "Which one of the following could be an accurate matching of ratings to the CDs that received those ratings?", "options": [ "A) one star: In Flight, Reunion; two stars: Nice; three stars: Headstrong; four stars: Quasi, Sounds Good", "B) one star: In Flight, Reunion; two stars: Quasi, Sounds Good; three stars: Nice; four stars: Headstrong", "C) one star: Nice; two stars: Headstrong; three stars: In Flight, Sounds Good; four stars: Quasi, Reunion", "D) one star: Nice, Sounds Good; two stars: In Flight, Reunion; three stars: Quasi; four stars: Headstrong", "E) one star: Sounds Good; two stars: Reunion; three stars: Nice, Quasi; four stars: Headstrong, In Flight" ], "answer": "A" }, { "id": "ar_lsat_200806_3-G_2_7", "context": "A critic has prepared a review of exactly six music CDs—Headstrong, In Flight, Nice, Quasi, Reunion, and Sounds Good. Each CD received a rating of either one, two, three, or four stars, with each CD receiving exactly one rating. Although the ratings were meant to be kept secret until the review was published, the following facts have been leaked to the public: For each of the ratings, at least one but no more than two of the CDs received that rating. Headstrong received exactly one more star than Nice did. Either Headstrong or Reunion received the same number of stars as In Flight did. At most one CD received more stars than Quasi did.", "question": "If Headstrong is the only CD that received a rating of two stars, then which one of the following must be true?", "options": [ "A) In Flight received a rating of three stars.", "B) Nice received a rating of three stars.", "C) Quasi received a rating of three stars.", "D) Reunion received a rating of one star.", "E) Sounds Good received a rating of one star." ], "answer": "A" }, { "id": "ar_lsat_200806_3-G_2_8", "context": "A critic has prepared a review of exactly six music CDs—Headstrong, In Flight, Nice, Quasi, Reunion, and Sounds Good. Each CD received a rating of either one, two, three, or four stars, with each CD receiving exactly one rating. Although the ratings were meant to be kept secret until the review was published, the following facts have been leaked to the public: For each of the ratings, at least one but no more than two of the CDs received that rating. Headstrong received exactly one more star than Nice did. Either Headstrong or Reunion received the same number of stars as In Flight did. At most one CD received more stars than Quasi did.", "question": "If Reunion received the same rating as Sounds Good, then which one of the following must be true?", "options": [ "A) Headstrong received a rating of two stars.", "B) In Flight received a rating of three stars.", "C) Nice received a rating of two stars.", "D) Quasi received a rating of four stars.", "E) Sounds Good received a rating of one star." ], "answer": "D" }, { "id": "ar_lsat_200806_3-G_2_9", "context": "A critic has prepared a review of exactly six music CDs—Headstrong, In Flight, Nice, Quasi, Reunion, and Sounds Good. Each CD received a rating of either one, two, three, or four stars, with each CD receiving exactly one rating. Although the ratings were meant to be kept secret until the review was published, the following facts have been leaked to the public: For each of the ratings, at least one but no more than two of the CDs received that rating. Headstrong received exactly one more star than Nice did. Either Headstrong or Reunion received the same number of stars as In Flight did. At most one CD received more stars than Quasi did.", "question": "If Nice and Reunion each received a rating of one star, then which one of the following could be true?", "options": [ "A) Headstrong received a rating of three stars.", "B) Headstrong received a rating of four stars.", "C) In Flight received a rating of three stars.", "D) Sounds Good received a rating of two stars.", "E) Sounds Good received a rating of three stars." ], "answer": "E" }, { "id": "ar_lsat_200806_3-G_2_10", "context": "A critic has prepared a review of exactly six music CDs—Headstrong, In Flight, Nice, Quasi, Reunion, and Sounds Good. Each CD received a rating of either one, two, three, or four stars, with each CD receiving exactly one rating. Although the ratings were meant to be kept secret until the review was published, the following facts have been leaked to the public: For each of the ratings, at least one but no more than two of the CDs received that rating. Headstrong received exactly one more star than Nice did. Either Headstrong or Reunion received the same number of stars as In Flight did. At most one CD received more stars than Quasi did.", "question": "Which one of the following CANNOT be true?", "options": [ "A) Quasi is the only CD that received a rating of three stars.", "B) Quasi is the only CD that received a rating of four stars.", "C) Reunion is the only CD that received a rating of one star.", "D) Reunion is the only CD that received a rating of two stars.", "E) Reunion is the only CD that received a rating of three stars." ], "answer": "D" }, { "id": "ar_lsat_200806_3-G_2_11", "context": "A critic has prepared a review of exactly six music CDs—Headstrong, In Flight, Nice, Quasi, Reunion, and Sounds Good. Each CD received a rating of either one, two, three, or four stars, with each CD receiving exactly one rating. Although the ratings were meant to be kept secret until the review was published, the following facts have been leaked to the public: For each of the ratings, at least one but no more than two of the CDs received that rating. Headstrong received exactly one more star than Nice did. Either Headstrong or Reunion received the same number of stars as In Flight did. At most one CD received more stars than Quasi did.", "question": "If Reunion is the only CD that received a rating of one star, then which one of the following could be true?", "options": [ "A) Headstrong received a rating of four stars.", "B) In Flight received a rating of two stars.", "C) Nice received a rating of three stars.", "D) Quasi received a rating of three stars.", "E) Sounds Good received a rating of two stars." ], "answer": "E" }, { "id": "ar_lsat_200806_3-G_2_12", "context": "A critic has prepared a review of exactly six music CDs—Headstrong, In Flight, Nice, Quasi, Reunion, and Sounds Good. Each CD received a rating of either one, two, three, or four stars, with each CD receiving exactly one rating. Although the ratings were meant to be kept secret until the review was published, the following facts have been leaked to the public: For each of the ratings, at least one but no more than two of the CDs received that rating. Headstrong received exactly one more star than Nice did. Either Headstrong or Reunion received the same number of stars as In Flight did. At most one CD received more stars than Quasi did.", "question": "Which one of the following CANNOT have received a rating of four stars?", "options": [ "A) Headstrong", "B) In Flight", "C) Quasi", "D) Reunion", "E) Sounds Good" ], "answer": "B" }, { "id": "ar_lsat_200806_3-G_3_13", "context": "A cake has exactly six layers—lemon, marzipan, orange, raspberry, strawberry, and vanilla. There is exactly one bottom layer (the first layer), and each succeeding layer (from second through sixth) completely covers the layer beneath it. The following conditions must apply: The raspberry layer is neither immediately above nor immediately below the strawberry layer. The marzipan layer is immediately above the lemon layer. The orange layer is above the marzipan layer but below the strawberry layer.", "question": "Which one of the following could be an accurate list of the layers of the cake, from bottom to top?", "options": [ "A) lemon, marzipan, orange, strawberry, vanilla, raspberry", "B) lemon, marzipan, orange, strawberry, raspberry, vanilla", "C) marzipan, lemon, raspberry, vanilla, orange, strawberry", "D) raspberry, lemon, marzipan, vanilla, strawberry, orange", "E) raspberry, orange, lemon, marzipan, strawberry, vanilla" ], "answer": "A" }, { "id": "ar_lsat_200806_3-G_3_14", "context": "A cake has exactly six layers—lemon, marzipan, orange, raspberry, strawberry, and vanilla. There is exactly one bottom layer (the first layer), and each succeeding layer (from second through sixth) completely covers the layer beneath it. The following conditions must apply: The raspberry layer is neither immediately above nor immediately below the strawberry layer. The marzipan layer is immediately above the lemon layer. The orange layer is above the marzipan layer but below the strawberry layer.", "question": "If the strawberry layer is not immediately above the orange layer, then which one of the following could be true?", "options": [ "A) The raspberry layer is immediately above the vanilla layer.", "B) The raspberry layer is immediately above the orange layer.", "C) The raspberry layer is immediately below the marzipan layer.", "D) The raspberry layer is the second layer.", "E) The raspberry layer is the top layer." ], "answer": "B" }, { "id": "ar_lsat_200806_3-G_3_15", "context": "A cake has exactly six layers—lemon, marzipan, orange, raspberry, strawberry, and vanilla. There is exactly one bottom layer (the first layer), and each succeeding layer (from second through sixth) completely covers the layer beneath it. The following conditions must apply: The raspberry layer is neither immediately above nor immediately below the strawberry layer. The marzipan layer is immediately above the lemon layer. The orange layer is above the marzipan layer but below the strawberry layer.", "question": "If the strawberry layer is not the top layer, then which one of the following is a complete and accurate list of the layers that could be the vanilla layer?", "options": [ "A) the first, the second, the third, the fourth, the fifth, the sixth", "B) the second, the third, the fourth, the fifth, the sixth", "C) the third, the fourth, the fifth, the sixth", "D) the fourth, the fifth, the sixth", "E) the fifth, the sixth" ], "answer": "E" }, { "id": "ar_lsat_200806_3-G_3_16", "context": "A cake has exactly six layers—lemon, marzipan, orange, raspberry, strawberry, and vanilla. There is exactly one bottom layer (the first layer), and each succeeding layer (from second through sixth) completely covers the layer beneath it. The following conditions must apply: The raspberry layer is neither immediately above nor immediately below the strawberry layer. The marzipan layer is immediately above the lemon layer. The orange layer is above the marzipan layer but below the strawberry layer.", "question": "If the lemon layer is third, then which one of the following could be true?", "options": [ "A) The vanilla layer is fifth.", "B) The vanilla layer is immediately above the raspberry layer.", "C) The orange layer is not immediately above the marzipan layer.", "D) The raspberry layer is above the marzipan layer.", "E) The strawberry layer is not the top layer." ], "answer": "B" }, { "id": "ar_lsat_200806_3-G_3_17", "context": "A cake has exactly six layers—lemon, marzipan, orange, raspberry, strawberry, and vanilla. There is exactly one bottom layer (the first layer), and each succeeding layer (from second through sixth) completely covers the layer beneath it. The following conditions must apply: The raspberry layer is neither immediately above nor immediately below the strawberry layer. The marzipan layer is immediately above the lemon layer. The orange layer is above the marzipan layer but below the strawberry layer.", "question": "Which one of the following could be an accurate list of the two lowest layers of the cake, listed in order from the bottom up?", "options": [ "A) lemon, raspberry", "B) vanilla, raspberry", "C) marzipan, raspberry", "D) raspberry, marzipan", "E) raspberry, strawberry" ], "answer": "B" }, { "id": "ar_lsat_200806_3-G_4_18", "context": "A panel reviews six contract bids—H, J, K, R, S, and T. No two bids have the same cost. Exactly one of the bids is accepted. The following conditions must hold: The accepted bid is either K or R and is either the second or the third lowest in cost. H is lower in cost than each of J and K. If J is the fourth lowest in cost, then J is lower in cost than each of S and T. If J is not the fourth lowest in cost, then J is higher in cost than each of S and T. Either R or S is the fifth lowest in cost.", "question": "Which one of the following could be an accurate list of the bids in order from lowest to highest in cost?", "options": [ "A) T, K, H, S, J, R", "B) H, T, K, S, R, J", "C) H, S, T, K, R, J", "D) H, K, S, J, R, T", "E) H, J, K, R, S, T" ], "answer": "B" }, { "id": "ar_lsat_200806_3-G_4_19", "context": "A panel reviews six contract bids—H, J, K, R, S, and T. No two bids have the same cost. Exactly one of the bids is accepted. The following conditions must hold: The accepted bid is either K or R and is either the second or the third lowest in cost. H is lower in cost than each of J and K. If J is the fourth lowest in cost, then J is lower in cost than each of S and T. If J is not the fourth lowest in cost, then J is higher in cost than each of S and T. Either R or S is the fifth lowest in cost.", "question": "Which one of the following bids CANNOT be the fourth lowest in cost?", "options": [ "A) H", "B) J", "C) K", "D) R", "E) T" ], "answer": "A" }, { "id": "ar_lsat_200806_3-G_4_20", "context": "A panel reviews six contract bids—H, J, K, R, S, and T. No two bids have the same cost. Exactly one of the bids is accepted. The following conditions must hold: The accepted bid is either K or R and is either the second or the third lowest in cost. H is lower in cost than each of J and K. If J is the fourth lowest in cost, then J is lower in cost than each of S and T. If J is not the fourth lowest in cost, then J is higher in cost than each of S and T. Either R or S is the fifth lowest in cost.", "question": "Which one of the following bids CANNOT be the second lowest in cost?", "options": [ "A) H", "B) J", "C) K", "D) R", "E) T" ], "answer": "B" }, { "id": "ar_lsat_200806_3-G_4_21", "context": "A panel reviews six contract bids—H, J, K, R, S, and T. No two bids have the same cost. Exactly one of the bids is accepted. The following conditions must hold: The accepted bid is either K or R and is either the second or the third lowest in cost. H is lower in cost than each of J and K. If J is the fourth lowest in cost, then J is lower in cost than each of S and T. If J is not the fourth lowest in cost, then J is higher in cost than each of S and T. Either R or S is the fifth lowest in cost.", "question": "If R is the accepted bid, then which one of the following must be true?", "options": [ "A) T is the lowest in cost.", "B) K is the second lowest in cost.", "C) R is the third lowest in cost.", "D) S is the fifth lowest in cost.", "E) J is the highest in cost." ], "answer": "D" }, { "id": "ar_lsat_200806_3-G_4_22", "context": "A panel reviews six contract bids—H, J, K, R, S, and T. No two bids have the same cost. Exactly one of the bids is accepted. The following conditions must hold: The accepted bid is either K or R and is either the second or the third lowest in cost. H is lower in cost than each of J and K. If J is the fourth lowest in cost, then J is lower in cost than each of S and T. If J is not the fourth lowest in cost, then J is higher in cost than each of S and T. Either R or S is the fifth lowest in cost.", "question": "Which one of the following must be true?", "options": [ "A) H is lower in cost than S.", "B) H is lower in cost than T.", "C) K is lower in cost than J.", "D) S is lower in cost than J.", "E) S is lower in cost than K." ], "answer": "C" }, { "id": "ar_lsat_200806_3-G_4_23", "context": "A panel reviews six contract bids—H, J, K, R, S, and T. No two bids have the same cost. Exactly one of the bids is accepted. The following conditions must hold: The accepted bid is either K or R and is either the second or the third lowest in cost. H is lower in cost than each of J and K. If J is the fourth lowest in cost, then J is lower in cost than each of S and T. If J is not the fourth lowest in cost, then J is higher in cost than each of S and T. Either R or S is the fifth lowest in cost.", "question": "If R is the lowest in cost, then which one of the following could be false?", "options": [ "A) J is the highest in cost.", "B) S is the fifth lowest in cost.", "C) K is the third lowest in cost.", "D) H is the second lowest in cost.", "E) K is the accepted bid." ], "answer": "A" }, { "id": "ar_lsat_200810_4-G_1_1", "context": "There are exactly six law students—Gambini, Little, Mitchum, Richardson, Saito, and Veracruz—in a trial advocacy class. The class is divided into three trial teams—team 1, team 2, and team 3—of exactly two students each. Each student is on exactly one of the teams. Each student prepares exactly one of either the opening argument or the final argument for his or her team. The teams must be formed according to the following specifications: Mitchum is on the same team as either Gambini or Veracruz. Little prepares an opening argument. Either Gambini or Richardson, but not both, prepares a final argument.", "question": "Which one of the following could be the composition of each team and the argument each student prepares?", "options": [ "A) team 1: Little, opening; Gambini, final team 2: Veracruz, opening; Mitchum, final team 3: Saito, opening; Richardson, final", "B) team 1: Mitchum, opening; Gambini, final team 2: Veracruz, opening; Little, final team 3: Richardson, opening; Saito, final", "C) team 1: Richardson, opening; Gambini, final team 2: Mitchum, opening; Saito, final team 3: Little, opening; Veracruz, final", "D) team 1: Gambini, opening; Mitchum, final team 2: Little, opening; Richardson, final team 3: Veracruz, opening; Saito, final", "E) team 1: Gambini, opening; Mitchum, final team 2: Richardson, opening; Saito, final team 3: Little, opening; Veracruz, final" ], "answer": "D" }, { "id": "ar_lsat_200810_4-G_1_2", "context": "There are exactly six law students—Gambini, Little, Mitchum, Richardson, Saito, and Veracruz—in a trial advocacy class. The class is divided into three trial teams—team 1, team 2, and team 3—of exactly two students each. Each student is on exactly one of the teams. Each student prepares exactly one of either the opening argument or the final argument for his or her team. The teams must be formed according to the following specifications: Mitchum is on the same team as either Gambini or Veracruz. Little prepares an opening argument. Either Gambini or Richardson, but not both, prepares a final argument.", "question": "If Gambini is on the same team as Mitchum, and if Gambini prepares the final argument for that team, then which one of the following could be true?", "options": [ "A) Little is on the same team as Veracruz, who prepares the opening argument for the team.", "B) Richardson is on the same team as Saito, who prepares the opening argument for the team.", "C) Richardson is on the same team as Saito, who prepares the final argument for the team.", "D) Saito is on the same team as Veracruz, who prepares the opening argument for the team.", "E) Saito is on the same team as Veracruz, who prepares the final argument for the team." ], "answer": "C" }, { "id": "ar_lsat_200810_4-G_1_3", "context": "There are exactly six law students—Gambini, Little, Mitchum, Richardson, Saito, and Veracruz—in a trial advocacy class. The class is divided into three trial teams—team 1, team 2, and team 3—of exactly two students each. Each student is on exactly one of the teams. Each student prepares exactly one of either the opening argument or the final argument for his or her team. The teams must be formed according to the following specifications: Mitchum is on the same team as either Gambini or Veracruz. Little prepares an opening argument. Either Gambini or Richardson, but not both, prepares a final argument.", "question": "Which one of the following could be true?", "options": [ "A) Gambini, who prepares a final argument, is on the same team as Richardson.", "B) Gambini, who prepares a final argument, is on the same team as Veracruz.", "C) Gambini, who prepares an opening argument, is on the same team as Little.", "D) Little, who prepares an opening argument, is on the same team as Mitchum.", "E) Mitchum, who prepares an opening argument, is on the same team as Saito." ], "answer": "A" }, { "id": "ar_lsat_200810_4-G_1_4", "context": "There are exactly six law students—Gambini, Little, Mitchum, Richardson, Saito, and Veracruz—in a trial advocacy class. The class is divided into three trial teams—team 1, team 2, and team 3—of exactly two students each. Each student is on exactly one of the teams. Each student prepares exactly one of either the opening argument or the final argument for his or her team. The teams must be formed according to the following specifications: Mitchum is on the same team as either Gambini or Veracruz. Little prepares an opening argument. Either Gambini or Richardson, but not both, prepares a final argument.", "question": "If Richardson is on the same team as Veracruz, then for exactly how many of the students can it be determined which of the arguments he or she prepares?", "options": [ "A) one", "B) two", "C) three", "D) four", "E) five" ], "answer": "B" }, { "id": "ar_lsat_200810_4-G_1_5", "context": "There are exactly six law students—Gambini, Little, Mitchum, Richardson, Saito, and Veracruz—in a trial advocacy class. The class is divided into three trial teams—team 1, team 2, and team 3—of exactly two students each. Each student is on exactly one of the teams. Each student prepares exactly one of either the opening argument or the final argument for his or her team. The teams must be formed according to the following specifications: Mitchum is on the same team as either Gambini or Veracruz. Little prepares an opening argument. Either Gambini or Richardson, but not both, prepares a final argument.", "question": "If Little is on the same team as Richardson, then which one of the following must be true?", "options": [ "A) Saito is on the same team as Veracruz.", "B) Gambini is on the same team as Mitchum.", "C) Mitchum prepares a final argument.", "D) Veracruz prepares a final argument.", "E) Gambini prepares an opening argument." ], "answer": "E" }, { "id": "ar_lsat_200810_4-G_1_6", "context": "There are exactly six law students—Gambini, Little, Mitchum, Richardson, Saito, and Veracruz—in a trial advocacy class. The class is divided into three trial teams—team 1, team 2, and team 3—of exactly two students each. Each student is on exactly one of the teams. Each student prepares exactly one of either the opening argument or the final argument for his or her team. The teams must be formed according to the following specifications: Mitchum is on the same team as either Gambini or Veracruz. Little prepares an opening argument. Either Gambini or Richardson, but not both, prepares a final argument.", "question": "If Saito prepares an opening argument, then which one of the following pairs of students could be on the same team as each other?", "options": [ "A) Gambini and Little", "B) Gambini and Saito", "C) Little and Veracruz", "D) Mitchum and Veracruz", "E) Richardson and Veracruz" ], "answer": "C" }, { "id": "ar_lsat_200810_4-G_2_7", "context": "While on vacation, Sukanya receives several e-mail messages from work, each message from one of three associates: Hilary, Jerome, and Lula. Sukanya receives at least one and no more than two messages from each of them. Sukanya receives each message on the day it is sent. No more than one message is sent each day. The messages are received in a manner consistent with the following: The first message is not from Lula. Both the first and last messages are from the same person. Exactly once Sukanya receives a message from Jerome on the day after receiving one from Hilary. Of the first three messages, exactly one is from Jerome.", "question": "Which one of the following could be an accurate list of the e-mail messages Sukanya receives, identified by the person each message is from and listed in the order she receives them?", "options": [ "A) Lula, Hilary, Jerome, Hilary, Jerome, Lula", "B) Jerome, Lula, Hilary, Lula, Jerome", "C) Jerome, Lula, Hilary, Jerome, Hilary", "D) Jerome, Lula, Hilary, Hilary, Jerome", "E) Hilary, Lula, Lula, Jerome, Jerome, Hilary" ], "answer": "D" }, { "id": "ar_lsat_200810_4-G_2_8", "context": "While on vacation, Sukanya receives several e-mail messages from work, each message from one of three associates: Hilary, Jerome, and Lula. Sukanya receives at least one and no more than two messages from each of them. Sukanya receives each message on the day it is sent. No more than one message is sent each day. The messages are received in a manner consistent with the following: The first message is not from Lula. Both the first and last messages are from the same person. Exactly once Sukanya receives a message from Jerome on the day after receiving one from Hilary. Of the first three messages, exactly one is from Jerome.", "question": "What is the maximum possible number of e-mail messages Sukanya receives after Jerome's first message but before Hilary's first message?", "options": [ "A) zero", "B) one", "C) two", "D) three", "E) four" ], "answer": "C" }, { "id": "ar_lsat_200810_4-G_2_9", "context": "While on vacation, Sukanya receives several e-mail messages from work, each message from one of three associates: Hilary, Jerome, and Lula. Sukanya receives at least one and no more than two messages from each of them. Sukanya receives each message on the day it is sent. No more than one message is sent each day. The messages are received in a manner consistent with the following: The first message is not from Lula. Both the first and last messages are from the same person. Exactly once Sukanya receives a message from Jerome on the day after receiving one from Hilary. Of the first three messages, exactly one is from Jerome.", "question": "If Sukanya receives exactly four e-mail messages, then which one of the following must be true?", "options": [ "A) Exactly one of the messages is from Lula.", "B) Exactly two of the messages are from Jerome.", "C) The second message is from Lula.", "D) The third message is from Hilary.", "E) The fourth message is from Jerome." ], "answer": "A" }, { "id": "ar_lsat_200810_4-G_2_10", "context": "While on vacation, Sukanya receives several e-mail messages from work, each message from one of three associates: Hilary, Jerome, and Lula. Sukanya receives at least one and no more than two messages from each of them. Sukanya receives each message on the day it is sent. No more than one message is sent each day. The messages are received in a manner consistent with the following: The first message is not from Lula. Both the first and last messages are from the same person. Exactly once Sukanya receives a message from Jerome on the day after receiving one from Hilary. Of the first three messages, exactly one is from Jerome.", "question": "Which one of the following e-mail messages CANNOT be from Lula?", "options": [ "A) the second message", "B) the third message", "C) the fourth message", "D) the fifth message (if there is a fifth one)", "E) the sixth message (if there is a sixth one)" ], "answer": "E" }, { "id": "ar_lsat_200810_4-G_2_11", "context": "While on vacation, Sukanya receives several e-mail messages from work, each message from one of three associates: Hilary, Jerome, and Lula. Sukanya receives at least one and no more than two messages from each of them. Sukanya receives each message on the day it is sent. No more than one message is sent each day. The messages are received in a manner consistent with the following: The first message is not from Lula. Both the first and last messages are from the same person. Exactly once Sukanya receives a message from Jerome on the day after receiving one from Hilary. Of the first three messages, exactly one is from Jerome.", "question": "If Sukanya receives six e-mail messages, the fifth of which is from Lula, which one of the following must be true?", "options": [ "A) The first message is from Jerome.", "B) The second message is from Lula.", "C) The third message is from Hilary.", "D) The fourth message is from Jerome.", "E) The sixth message is from Lula." ], "answer": "D" }, { "id": "ar_lsat_200810_4-G_2_12", "context": "While on vacation, Sukanya receives several e-mail messages from work, each message from one of three associates: Hilary, Jerome, and Lula. Sukanya receives at least one and no more than two messages from each of them. Sukanya receives each message on the day it is sent. No more than one message is sent each day. The messages are received in a manner consistent with the following: The first message is not from Lula. Both the first and last messages are from the same person. Exactly once Sukanya receives a message from Jerome on the day after receiving one from Hilary. Of the first three messages, exactly one is from Jerome.", "question": "If Sukanya receives two e-mail messages from Lula, what is the maximum possible number of e-mail messages Sukanya receives after Lula's first message but before Lula's last message?", "options": [ "A) zero", "B) one", "C) two", "D) three", "E) four" ], "answer": "B" }, { "id": "ar_lsat_200810_4-G_3_13", "context": "Mercotek carried out a study to compare the productivity of its night shift with that of its day shift. Every week the company's six crews—F, G, H, R, S, and T—were ranked from first (most productive) to sixth (least productive). There were no ties. For any given week, either G and T were the two night-shift crews or else S and H were—the four other crews were the day-shift crews for that week. The following relationships held for every week of the study: F is more productive than G. R is more productive than S. R is more productive than T. S is more productive than H. G is more productive than T.", "question": "Which one of the following could be an accurate ranking of all the crews, in order from first to sixth, for a given week of the study?", "options": [ "A) F, G, T, R, S, H", "B) F, R, G, T, H, S", "C) G, R, T, S, H, F", "D) R, F, G, S, H, T", "E) R, S, H, T, F, G" ], "answer": "D" }, { "id": "ar_lsat_200810_4-G_3_14", "context": "Mercotek carried out a study to compare the productivity of its night shift with that of its day shift. Every week the company's six crews—F, G, H, R, S, and T—were ranked from first (most productive) to sixth (least productive). There were no ties. For any given week, either G and T were the two night-shift crews or else S and H were—the four other crews were the day-shift crews for that week. The following relationships held for every week of the study: F is more productive than G. R is more productive than S. R is more productive than T. S is more productive than H. G is more productive than T.", "question": "If F is ranked third for a given week of the study, then which one of the following could also be true of that week?", "options": [ "A) G ranks second.", "B) H ranks fourth.", "C) R ranks second.", "D) S ranks fourth.", "E) T ranks fourth." ], "answer": "B" }, { "id": "ar_lsat_200810_4-G_3_15", "context": "Mercotek carried out a study to compare the productivity of its night shift with that of its day shift. Every week the company's six crews—F, G, H, R, S, and T—were ranked from first (most productive) to sixth (least productive). There were no ties. For any given week, either G and T were the two night-shift crews or else S and H were—the four other crews were the day-shift crews for that week. The following relationships held for every week of the study: F is more productive than G. R is more productive than S. R is more productive than T. S is more productive than H. G is more productive than T.", "question": "Which one of the following CANNOT be the crew ranked fifth for any given week of the study?", "options": [ "A) G", "B) H", "C) R", "D) S", "E) T" ], "answer": "C" }, { "id": "ar_lsat_200810_4-G_3_16", "context": "Mercotek carried out a study to compare the productivity of its night shift with that of its day shift. Every week the company's six crews—F, G, H, R, S, and T—were ranked from first (most productive) to sixth (least productive). There were no ties. For any given week, either G and T were the two night-shift crews or else S and H were—the four other crews were the day-shift crews for that week. The following relationships held for every week of the study: F is more productive than G. R is more productive than S. R is more productive than T. S is more productive than H. G is more productive than T.", "question": "For any given week of the study, the ranking of all the crews is completely determined if which one of the following is true?", "options": [ "A) F ranks second that week.", "B) G ranks fifth that week.", "C) H ranks third that week.", "D) R ranks third that week.", "E) S ranks third that week." ], "answer": "C" }, { "id": "ar_lsat_200810_4-G_3_17", "context": "Mercotek carried out a study to compare the productivity of its night shift with that of its day shift. Every week the company's six crews—F, G, H, R, S, and T—were ranked from first (most productive) to sixth (least productive). There were no ties. For any given week, either G and T were the two night-shift crews or else S and H were—the four other crews were the day-shift crews for that week. The following relationships held for every week of the study: F is more productive than G. R is more productive than S. R is more productive than T. S is more productive than H. G is more productive than T.", "question": "If the night-shift crews rank fifth and sixth for a given week of the study, then which one of the following could also be true of that week?", "options": [ "A) G ranks fourth.", "B) H ranks fifth.", "C) R ranks third.", "D) S ranks fourth.", "E) T ranks fifth." ], "answer": "C" }, { "id": "ar_lsat_200810_4-G_3_18", "context": "Mercotek carried out a study to compare the productivity of its night shift with that of its day shift. Every week the company's six crews—F, G, H, R, S, and T—were ranked from first (most productive) to sixth (least productive). There were no ties. For any given week, either G and T were the two night-shift crews or else S and H were—the four other crews were the day-shift crews for that week. The following relationships held for every week of the study: F is more productive than G. R is more productive than S. R is more productive than T. S is more productive than H. G is more productive than T.", "question": "Which one of the following is a complete and accurate list of the crews that CANNOT be ranked third for any given week of the study?", "options": [ "A) G, H, S", "B) R, T", "C) F, T", "D) G, T", "E) T" ], "answer": "E" }, { "id": "ar_lsat_200810_4-G_4_19", "context": "A shuttle van stops exactly four times—once at Fundy, once at Los Altos, once at Mineola, and once at Simcoe—not necessarily in that order. The van starts with exactly four passengers on board—Greg, Jasmine, Rosa, and Vijay—each of whom gets off at a different stop. The following conditions hold: Los Altos is the first or second stop. Rosa is still on board when the van reaches Mineola. Jasmine is on board longer than Vijay. If Jasmine is still on board when the van reaches Fundy, then Greg is still on board when the van reaches Simcoe; otherwise, Greg is not still on board when the van reaches Simcoe.", "question": "Which one of the following could be a complete and accurate matching of stops, listed in the order in which the van stops at them, to the passengers who get off at them?", "options": [ "A) Los Altos: Greg Mineola: Vijay Fundy: Jasmine Simcoe: Rosa", "B) Simcoe: Vijay Mineola: Greg Fundy: Rosa Los Altos: Jasmine", "C) Los Altos: Jasmine Mineola: Vijay Fundy: Greg Simcoe: Rosa", "D) Los Altos: Rosa Mineola: Vijay Fundy: Jasmine Simcoe: Greg", "E) Los Altos: Vijay Fundy: Jasmine Mineola: Rosa Simcoe: Greg" ], "answer": "E" }, { "id": "ar_lsat_200810_4-G_4_20", "context": "A shuttle van stops exactly four times—once at Fundy, once at Los Altos, once at Mineola, and once at Simcoe—not necessarily in that order. The van starts with exactly four passengers on board—Greg, Jasmine, Rosa, and Vijay—each of whom gets off at a different stop. The following conditions hold: Los Altos is the first or second stop. Rosa is still on board when the van reaches Mineola. Jasmine is on board longer than Vijay. If Jasmine is still on board when the van reaches Fundy, then Greg is still on board when the van reaches Simcoe; otherwise, Greg is not still on board when the van reaches Simcoe.", "question": "If Mineola is the first stop, which one of the following is a complete and accurate list of the passengers who could possibly get off there?", "options": [ "A) Rosa", "B) Greg, Rosa", "C) Greg, Vijay", "D) Greg, Rosa, Vijay", "E) Jasmine, Rosa, Vijay" ], "answer": "D" }, { "id": "ar_lsat_200810_4-G_4_21", "context": "A shuttle van stops exactly four times—once at Fundy, once at Los Altos, once at Mineola, and once at Simcoe—not necessarily in that order. The van starts with exactly four passengers on board—Greg, Jasmine, Rosa, and Vijay—each of whom gets off at a different stop. The following conditions hold: Los Altos is the first or second stop. Rosa is still on board when the van reaches Mineola. Jasmine is on board longer than Vijay. If Jasmine is still on board when the van reaches Fundy, then Greg is still on board when the van reaches Simcoe; otherwise, Greg is not still on board when the van reaches Simcoe.", "question": "If Fundy is the first stop, then which one of the following could accurately list the passengers in order from first to last off?", "options": [ "A) Greg, Vijay, Jasmine, Rosa", "B) Rosa, Vijay, Greg, Jasmine", "C) Vijay, Greg, Rosa, Jasmine", "D) Vijay, Jasmine, Greg, Rosa", "E) Vijay, Rosa, Jasmine, Greg" ], "answer": "D" }, { "id": "ar_lsat_200810_4-G_4_22", "context": "A shuttle van stops exactly four times—once at Fundy, once at Los Altos, once at Mineola, and once at Simcoe—not necessarily in that order. The van starts with exactly four passengers on board—Greg, Jasmine, Rosa, and Vijay—each of whom gets off at a different stop. The following conditions hold: Los Altos is the first or second stop. Rosa is still on board when the van reaches Mineola. Jasmine is on board longer than Vijay. If Jasmine is still on board when the van reaches Fundy, then Greg is still on board when the van reaches Simcoe; otherwise, Greg is not still on board when the van reaches Simcoe.", "question": "Which one of the following must be true if Greg is still on board both when the van reaches Los Altos and when it reaches Simcoe, not necessarily in that order, assuming he is the second one off the van?", "options": [ "A) Vijay is on board when the van reaches Simcoe.", "B) Vijay is on board when the van reaches Los Altos.", "C) Rosa is on board when the van reaches Simcoe.", "D) Rosa is on board when the van reaches Fundy.", "E) Jasmine is on board when the van reaches Mineola." ], "answer": "C" }, { "id": "ar_lsat_200810_4-G_4_23", "context": "A shuttle van stops exactly four times—once at Fundy, once at Los Altos, once at Mineola, and once at Simcoe—not necessarily in that order. The van starts with exactly four passengers on board—Greg, Jasmine, Rosa, and Vijay—each of whom gets off at a different stop. The following conditions hold: Los Altos is the first or second stop. Rosa is still on board when the van reaches Mineola. Jasmine is on board longer than Vijay. If Jasmine is still on board when the van reaches Fundy, then Greg is still on board when the van reaches Simcoe; otherwise, Greg is not still on board when the van reaches Simcoe.", "question": "If Greg is not on board when the van reaches Simcoe, then which one of the following must be false?", "options": [ "A) Greg is on board when the van reaches Fundy.", "B) Jasmine is on board when the van reaches Mineola.", "C) Rosa is on board when the van reaches Fundy.", "D) Vijay is on board when the van reaches Fundy.", "E) Vijay is on board when the van reaches Mineola." ], "answer": "D" }, { "id": "ar_lsat_200812_1-G_1_1", "context": "Individual hour-long auditions will be scheduled for each of six saxophonists—Fujimura, Gabrieli, Herman, Jackson, King, and Lauder. The auditions will all take place on the same day. Each audition will begin on the hour, with the first beginning at 1 P.M. and the last at 6 P.M. The schedule of auditions must conform to the following conditions: Jackson auditions earlier than Herman does. Gabrieli auditions earlier than King does. Gabrieli auditions either immediately before or immediately after Lauder does. Exactly one audition separates the auditions of Jackson and Lauder.", "question": "Which one of the following is an acceptable schedule for the auditions, listed in order from 1 P.M. through 6 P.M.?", "options": [ "A) Fujimura, Gabrieli, King, Jackson, Herman, Lauder", "B) Fujimura, King, Lauder, Gabrieli, Jackson, Herman", "C) Fujimura, Lauder, Gabrieli, King, Jackson, Herman", "D) Herman, Jackson, Gabrieli, Lauder, King, Fujimura", "E) Jackson, Gabrieli, Lauder, Herman, King, Fujimura" ], "answer": "E" }, { "id": "ar_lsat_200812_1-G_1_2", "context": "Individual hour-long auditions will be scheduled for each of six saxophonists—Fujimura, Gabrieli, Herman, Jackson, King, and Lauder. The auditions will all take place on the same day. Each audition will begin on the hour, with the first beginning at 1 P.M. and the last at 6 P.M. The schedule of auditions must conform to the following conditions: Jackson auditions earlier than Herman does. Gabrieli auditions earlier than King does. Gabrieli auditions either immediately before or immediately after Lauder does. Exactly one audition separates the auditions of Jackson and Lauder.", "question": "Which one of the following must be true?", "options": [ "A) Lauder is scheduled to audition earlier than Herman.", "B) Lauder is scheduled to audition earlier than King.", "C) Jackson's audition is scheduled to begin at either 1 P.M. or 5 P.M.", "D) Fujimura and Jackson are not scheduled to audition in consecutive hours.", "E) Gabrieli and King are not scheduled to audition in consecutive hours." ], "answer": "B" }, { "id": "ar_lsat_200812_1-G_1_3", "context": "Individual hour-long auditions will be scheduled for each of six saxophonists—Fujimura, Gabrieli, Herman, Jackson, King, and Lauder. The auditions will all take place on the same day. Each audition will begin on the hour, with the first beginning at 1 P.M. and the last at 6 P.M. The schedule of auditions must conform to the following conditions: Jackson auditions earlier than Herman does. Gabrieli auditions earlier than King does. Gabrieli auditions either immediately before or immediately after Lauder does. Exactly one audition separates the auditions of Jackson and Lauder.", "question": "The earliest King's audition could be scheduled to begin is", "options": [ "A) 5 P.M.", "B) 4 P.M.", "C) 3 P.M.", "D) 2 P.M.", "E) 1 P.M." ], "answer": "C" }, { "id": "ar_lsat_200812_1-G_1_4", "context": "Individual hour-long auditions will be scheduled for each of six saxophonists—Fujimura, Gabrieli, Herman, Jackson, King, and Lauder. The auditions will all take place on the same day. Each audition will begin on the hour, with the first beginning at 1 P.M. and the last at 6 P.M. The schedule of auditions must conform to the following conditions: Jackson auditions earlier than Herman does. Gabrieli auditions earlier than King does. Gabrieli auditions either immediately before or immediately after Lauder does. Exactly one audition separates the auditions of Jackson and Lauder.", "question": "The order in which the saxophonists are scheduled to audition is completely determined if which one of the following is true?", "options": [ "A) Herman's audition is scheduled to begin at 4 P.M.", "B) Jackson's audition is scheduled to begin at 1 P.M.", "C) Jackson's audition is scheduled to begin at 5 P.M.", "D) Lauder's audition is scheduled to begin at 1 P.M.", "E) Lauder's audition is scheduled to begin at 2 P.M." ], "answer": "C" }, { "id": "ar_lsat_200812_1-G_1_5", "context": "Individual hour-long auditions will be scheduled for each of six saxophonists—Fujimura, Gabrieli, Herman, Jackson, King, and Lauder. The auditions will all take place on the same day. Each audition will begin on the hour, with the first beginning at 1 P.M. and the last at 6 P.M. The schedule of auditions must conform to the following conditions: Jackson auditions earlier than Herman does. Gabrieli auditions earlier than King does. Gabrieli auditions either immediately before or immediately after Lauder does. Exactly one audition separates the auditions of Jackson and Lauder.", "question": "If Fujimura's audition is not scheduled to begin at 1 P.M., which one of the following could be true?", "options": [ "A) Herman's audition is scheduled to begin at 6 P.M.", "B) Gabrieli's audition is scheduled to begin at 5 P.M.", "C) Herman's audition is scheduled to begin at 3 P.M.", "D) Jackson's audition is scheduled to begin at 2 P.M.", "E) Jackson's audition is scheduled to begin at 5 P.M." ], "answer": "A" }, { "id": "ar_lsat_200812_1-G_1_6", "context": "Individual hour-long auditions will be scheduled for each of six saxophonists—Fujimura, Gabrieli, Herman, Jackson, King, and Lauder. The auditions will all take place on the same day. Each audition will begin on the hour, with the first beginning at 1 P.M. and the last at 6 P.M. The schedule of auditions must conform to the following conditions: Jackson auditions earlier than Herman does. Gabrieli auditions earlier than King does. Gabrieli auditions either immediately before or immediately after Lauder does. Exactly one audition separates the auditions of Jackson and Lauder.", "question": "Which one of the following must be true?", "options": [ "A) Gabrieli's audition is scheduled to begin before 5 P.M.", "B) Herman's audition is scheduled to begin after 2 P.M.", "C) Herman's audition is scheduled to begin before 6 P.M.", "D) King's audition is scheduled to begin before 6 P.M.", "E) Lauder's audition is scheduled to begin before 5 P.M." ], "answer": "E" }, { "id": "ar_lsat_200812_1-G_2_7", "context": "Four people—Grace, Heather, Josh, and Maria—will help each other move exactly three pieces of furniture—a recliner, a sofa, and a table. Each piece of furniture will be moved by exactly two of the people, and each person will help move at least one of the pieces of furniture, subject to the following constraints: Grace helps move the sofa if, but only if, Heather helps move the recliner. If Josh helps move the table, then Maria helps move the recliner. No piece of furniture is moved by Grace and Josh together.", "question": "Which one of the following could be an accurate matching of each piece of furniture to the two people who help each other move it?", "options": [ "A) recliner: Grace and Maria; sofa: Heather and Josh; table: Grace and Heather", "B) recliner: Grace and Maria; sofa: Heather and Maria; table: Grace and Josh", "C) recliner: Heather and Josh; sofa: Grace and Heather; table: Josh and Maria", "D) recliner: Heather and Josh; sofa: Heather and Maria; table: Grace and Maria", "E) recliner: Josh and Maria; sofa: Grace and Heather; table: Grace and Maria" ], "answer": "A" }, { "id": "ar_lsat_200812_1-G_2_8", "context": "Four people—Grace, Heather, Josh, and Maria—will help each other move exactly three pieces of furniture—a recliner, a sofa, and a table. Each piece of furniture will be moved by exactly two of the people, and each person will help move at least one of the pieces of furniture, subject to the following constraints: Grace helps move the sofa if, but only if, Heather helps move the recliner. If Josh helps move the table, then Maria helps move the recliner. No piece of furniture is moved by Grace and Josh together.", "question": "If Josh and Maria help each other move the recliner, then which one of the following must be true?", "options": [ "A) Heather helps move the sofa.", "B) Josh helps move the sofa.", "C) Maria helps move the sofa.", "D) Grace helps move the table.", "E) Heather helps move the table." ], "answer": "D" }, { "id": "ar_lsat_200812_1-G_2_9", "context": "Four people—Grace, Heather, Josh, and Maria—will help each other move exactly three pieces of furniture—a recliner, a sofa, and a table. Each piece of furniture will be moved by exactly two of the people, and each person will help move at least one of the pieces of furniture, subject to the following constraints: Grace helps move the sofa if, but only if, Heather helps move the recliner. If Josh helps move the table, then Maria helps move the recliner. No piece of furniture is moved by Grace and Josh together.", "question": "If Heather helps move each of the pieces of furniture, then which one of the following could be true?", "options": [ "A) Grace helps move the recliner.", "B) Maria helps move the recliner.", "C) Josh helps move the sofa.", "D) Maria helps move the sofa.", "E) Grace helps move the table." ], "answer": "B" }, { "id": "ar_lsat_200812_1-G_2_10", "context": "Four people—Grace, Heather, Josh, and Maria—will help each other move exactly three pieces of furniture—a recliner, a sofa, and a table. Each piece of furniture will be moved by exactly two of the people, and each person will help move at least one of the pieces of furniture, subject to the following constraints: Grace helps move the sofa if, but only if, Heather helps move the recliner. If Josh helps move the table, then Maria helps move the recliner. No piece of furniture is moved by Grace and Josh together.", "question": "Which one of the following could be a pair of people who help each other move both the recliner and the table?", "options": [ "A) Grace and Josh", "B) Grace and Maria", "C) Heather and Josh", "D) Heather and Maria", "E) Josh and Maria" ], "answer": "B" }, { "id": "ar_lsat_200812_1-G_2_11", "context": "Four people—Grace, Heather, Josh, and Maria—will help each other move exactly three pieces of furniture—a recliner, a sofa, and a table. Each piece of furniture will be moved by exactly two of the people, and each person will help move at least one of the pieces of furniture, subject to the following constraints: Grace helps move the sofa if, but only if, Heather helps move the recliner. If Josh helps move the table, then Maria helps move the recliner. No piece of furniture is moved by Grace and Josh together.", "question": "If Josh and Maria help each other move the sofa, then which one of the following could be true?", "options": [ "A) Heather and Josh help each other move the recliner.", "B) Heather and Maria help each other move the recliner.", "C) Grace and Josh help each other move the table.", "D) Grace and Maria help each other move the table.", "E) Heather and Maria help each other move the table." ], "answer": "E" }, { "id": "ar_lsat_200812_1-G_3_12", "context": "A town has exactly two public parks—Graystone Park and Landing Park—which are to be planted with North American trees. There are exactly four varieties of trees available—maples, oaks, sycamores, and tamaracks. The planting of the trees must be in accord with the following: Each of the parks is planted with exactly three of the varieties. At least one of the parks is planted with both maples and sycamores. Any park that is planted with oaks will also be planted with tamaracks. Graystone Park is planted with maples.", "question": "Which one of the following could be a complete and accurate list of the varieties of trees planted in each of the parks?", "options": [ "A) Graystone Park: maples, oaks, sycamores Landing Park: maples, oaks, sycamores", "B) Graystone Park: maples, oaks, tamaracks Landing Park: maples, oaks, tamaracks", "C) Graystone Park: maples, sycamores, tamaracks Landing Park: maples, oaks, sycamores", "D) Graystone Park: maples, sycamores, tamaracks Landing Park: maples, oaks, tamaracks", "E) Graystone Park: oaks, sycamores, tamaracks Landing Park: maples, sycamores, tamaracks" ], "answer": "D" }, { "id": "ar_lsat_200812_1-G_3_13", "context": "A town has exactly two public parks—Graystone Park and Landing Park—which are to be planted with North American trees. There are exactly four varieties of trees available—maples, oaks, sycamores, and tamaracks. The planting of the trees must be in accord with the following: Each of the parks is planted with exactly three of the varieties. At least one of the parks is planted with both maples and sycamores. Any park that is planted with oaks will also be planted with tamaracks. Graystone Park is planted with maples.", "question": "Which one of the following must be true?", "options": [ "A) Graystone Park is planted with sycamores.", "B) Landing Park is planted with maples.", "C) Landing Park is planted with tamaracks.", "D) The number of the parks planted with maples is equal to the number of the parks planted with sycamores.", "E) The number of the parks planted with maples is greater than the number of the parks planted with sycamores." ], "answer": "C" }, { "id": "ar_lsat_200812_1-G_3_14", "context": "A town has exactly two public parks—Graystone Park and Landing Park—which are to be planted with North American trees. There are exactly four varieties of trees available—maples, oaks, sycamores, and tamaracks. The planting of the trees must be in accord with the following: Each of the parks is planted with exactly three of the varieties. At least one of the parks is planted with both maples and sycamores. Any park that is planted with oaks will also be planted with tamaracks. Graystone Park is planted with maples.", "question": "If both parks are planted with sycamores, which one of the following could be true?", "options": [ "A) The number of the parks planted with maples is equal to the number of the parks planted with oaks.", "B) The number of the parks planted with maples is greater than the number of the parks planted with sycamores.", "C) The number of the parks planted with oaks is equal to the number of the parks planted with sycamores.", "D) Graystone Park is planted with both maples and oaks.", "E) Landing Park is planted with both maples and oaks." ], "answer": "A" }, { "id": "ar_lsat_200812_1-G_3_15", "context": "A town has exactly two public parks—Graystone Park and Landing Park—which are to be planted with North American trees. There are exactly four varieties of trees available—maples, oaks, sycamores, and tamaracks. The planting of the trees must be in accord with the following: Each of the parks is planted with exactly three of the varieties. At least one of the parks is planted with both maples and sycamores. Any park that is planted with oaks will also be planted with tamaracks. Graystone Park is planted with maples.", "question": "Which one of the following must be false?", "options": [ "A) Both parks are planted with oaks.", "B) Both parks are planted with sycamores.", "C) Both parks are planted with tamaracks.", "D) Exactly one of the parks is planted with maples.", "E) Exactly one of the parks is planted with sycamores." ], "answer": "A" }, { "id": "ar_lsat_200812_1-G_3_16", "context": "A town has exactly two public parks—Graystone Park and Landing Park—which are to be planted with North American trees. There are exactly four varieties of trees available—maples, oaks, sycamores, and tamaracks. The planting of the trees must be in accord with the following: Each of the parks is planted with exactly three of the varieties. At least one of the parks is planted with both maples and sycamores. Any park that is planted with oaks will also be planted with tamaracks. Graystone Park is planted with maples.", "question": "Which one of the following could be true?", "options": [ "A) The number of the parks planted with oaks is equal to the number of the parks planted with tamaracks.", "B) The number of the parks planted with oaks is greater than the number of the parks planted with sycamores.", "C) Exactly one of the parks is planted with tamaracks.", "D) Neither park is planted with tamaracks.", "E) Both parks contain exactly the same three varieties of trees as each other." ], "answer": "E" }, { "id": "ar_lsat_200812_1-G_4_17", "context": "Five executives—Quinn, Rodriguez, Sasada, Taylor, and Vandercar—are being scheduled to make site visits to three of their company's manufacturing plants—Farmington, Homestead, and Morningside. Each site will be visited by at least one of the executives and each executive will visit just one site. Each of the three site visits will take place on a different day. The schedule of site visits must conform to the following requirements: The Farmington visit must take place before the Homestead visit. The Farmington visit will include only one of the executives. The site visit that includes Quinn must take place before any site visit that includes either Rodriguez or Taylor. The site visit that includes Sasada cannot take place after any site visit that includes Vandercar.", "question": "Which one of the following could be the executives included in each of the site visits, with the sites listed in the order in which they are visited?", "options": [ "A) Farmington: Quinn Homestead: Rodriguez, Sasada Morningside: Taylor, Vandercar", "B) Farmington: Quinn Homestead: Rodriguez, Vandercar Morningside: Sasada, Taylor", "C) Farmington: Rodriguez Morningside: Quinn, Taylor Homestead: Sasada, Vandercar", "D) Homestead: Sasada Farmington: Quinn Morningside: Rodriguez, Taylor, Vandercar", "E) Morningside: Quinn Farmington: Rodriguez, Sasada Homestead: Taylor, Vandercar" ], "answer": "A" }, { "id": "ar_lsat_200812_1-G_4_18", "context": "Five executives—Quinn, Rodriguez, Sasada, Taylor, and Vandercar—are being scheduled to make site visits to three of their company's manufacturing plants—Farmington, Homestead, and Morningside. Each site will be visited by at least one of the executives and each executive will visit just one site. Each of the three site visits will take place on a different day. The schedule of site visits must conform to the following requirements: The Farmington visit must take place before the Homestead visit. The Farmington visit will include only one of the executives. The site visit that includes Quinn must take place before any site visit that includes either Rodriguez or Taylor. The site visit that includes Sasada cannot take place after any site visit that includes Vandercar.", "question": "If the second of the three site visits includes both Rodriguez and Taylor, which one of the following must be true?", "options": [ "A) The Farmington visit includes Quinn.", "B) The Homestead visit includes Vandercar.", "C) The Morningside visit includes Sasada.", "D) The second of the three site visits includes Sasada.", "E) The second of the three site visits includes exactly three of the executives." ], "answer": "A" }, { "id": "ar_lsat_200812_1-G_4_19", "context": "Five executives—Quinn, Rodriguez, Sasada, Taylor, and Vandercar—are being scheduled to make site visits to three of their company's manufacturing plants—Farmington, Homestead, and Morningside. Each site will be visited by at least one of the executives and each executive will visit just one site. Each of the three site visits will take place on a different day. The schedule of site visits must conform to the following requirements: The Farmington visit must take place before the Homestead visit. The Farmington visit will include only one of the executives. The site visit that includes Quinn must take place before any site visit that includes either Rodriguez or Taylor. The site visit that includes Sasada cannot take place after any site visit that includes Vandercar.", "question": "If one of the site visits includes both Quinn and Sasada, which one of the following could be true?", "options": [ "A) The Farmington visit is the first of the three site visits.", "B) The Homestead visit is the second of the three site visits.", "C) One of the site visits includes only Vandercar.", "D) The second of the three site visits includes Sasada.", "E) The second of the three site visits includes exactly two of the executives." ], "answer": "C" }, { "id": "ar_lsat_200812_1-G_4_20", "context": "Five executives—Quinn, Rodriguez, Sasada, Taylor, and Vandercar—are being scheduled to make site visits to three of their company's manufacturing plants—Farmington, Homestead, and Morningside. Each site will be visited by at least one of the executives and each executive will visit just one site. Each of the three site visits will take place on a different day. The schedule of site visits must conform to the following requirements: The Farmington visit must take place before the Homestead visit. The Farmington visit will include only one of the executives. The site visit that includes Quinn must take place before any site visit that includes either Rodriguez or Taylor. The site visit that includes Sasada cannot take place after any site visit that includes Vandercar.", "question": "The executives who visit Homestead CANNOT be", "options": [ "A) Quinn and Vandercar only", "B) Rodriguez and Taylor only", "C) Sasada and Taylor only", "D) Quinn, Sasada, and Vandercar", "E) Rodriguez, Sasada, and Taylor" ], "answer": "D" }, { "id": "ar_lsat_200812_1-G_4_21", "context": "Five executives—Quinn, Rodriguez, Sasada, Taylor, and Vandercar—are being scheduled to make site visits to three of their company's manufacturing plants—Farmington, Homestead, and Morningside. Each site will be visited by at least one of the executives and each executive will visit just one site. Each of the three site visits will take place on a different day. The schedule of site visits must conform to the following requirements: The Farmington visit must take place before the Homestead visit. The Farmington visit will include only one of the executives. The site visit that includes Quinn must take place before any site visit that includes either Rodriguez or Taylor. The site visit that includes Sasada cannot take place after any site visit that includes Vandercar.", "question": "If the Morningside visit includes both Quinn and Vandercar, which one of the following could be true?", "options": [ "A) One of the site visits includes both Rodriguez and Sasada.", "B) The second of the three site visits includes exactly three of the executives.", "C) The last of the three site visits includes exactly three of the executives.", "D) The Homestead visit takes place earlier than the Morningside visit.", "E) The Morningside visit takes place earlier than the Farmington visit." ], "answer": "E" }, { "id": "ar_lsat_200812_1-G_4_22", "context": "Five executives—Quinn, Rodriguez, Sasada, Taylor, and Vandercar—are being scheduled to make site visits to three of their company's manufacturing plants—Farmington, Homestead, and Morningside. Each site will be visited by at least one of the executives and each executive will visit just one site. Each of the three site visits will take place on a different day. The schedule of site visits must conform to the following requirements: The Farmington visit must take place before the Homestead visit. The Farmington visit will include only one of the executives. The site visit that includes Quinn must take place before any site visit that includes either Rodriguez or Taylor. The site visit that includes Sasada cannot take place after any site visit that includes Vandercar.", "question": "Which one of the following must be true?", "options": [ "A) The Farmington visit takes place earlier than the Morningside visit.", "B) The site visit that includes Vandercar takes place earlier than the site visit that includes Rodriguez.", "C) One of the first two site visits includes Sasada.", "D) The second of the three site visits includes at least two of the executives.", "E) At least one of the first two site visits includes only one of the executives." ], "answer": "E" }, { "id": "ar_lsat_200812_1-G_4_23", "context": "Five executives—Quinn, Rodriguez, Sasada, Taylor, and Vandercar—are being scheduled to make site visits to three of their company's manufacturing plants—Farmington, Homestead, and Morningside. Each site will be visited by at least one of the executives and each executive will visit just one site. Each of the three site visits will take place on a different day. The schedule of site visits must conform to the following requirements: The Farmington visit must take place before the Homestead visit. The Farmington visit will include only one of the executives. The site visit that includes Quinn must take place before any site visit that includes either Rodriguez or Taylor. The site visit that includes Sasada cannot take place after any site visit that includes Vandercar.", "question": "If the Farmington visit includes Sasada, which one of the following must be true?", "options": [ "A) One of the site visits includes exactly three of the executives.", "B) The last of the three site visits includes Rodriguez.", "C) The Homestead visit includes Quinn.", "D) The Morningside visit includes Taylor.", "E) The site visit that includes Vandercar also includes Quinn." ], "answer": "B" }, { "id": "ar_lsat_200906_1-G_1_1", "context": "On a particular Saturday, a student will perform six activities—grocery shopping, hedge trimming, jogging, kitchen cleaning, laundry, and motorbike servicing. Each activity will be performed once, one at a time. The order in which the activities are performed is subject to the following conditions: Grocery shopping has to be immediately after hedge trimming. Kitchen cleaning has to be earlier than grocery shopping. Motorbike servicing has to be earlier than laundry. Motorbike servicing has to be either immediately before or immediately after jogging.", "question": "Which one of the following could be the order, from first to last, of the student's activities?", "options": [ "A) jogging, kitchen cleaning, hedge trimming, grocery shopping, motorbike servicing, laundry", "B) jogging, motorbike servicing, laundry, hedge trimming, grocery shopping, kitchen cleaning", "C) kitchen cleaning, hedge trimming, grocery shopping, laundry, motorbike servicing, jogging", "D) kitchen cleaning, jogging, motorbike servicing, laundry, hedge trimming, grocery shopping", "E) motorbike servicing, jogging, laundry, hedge trimming, kitchen cleaning, grocery shopping" ], "answer": "D" }, { "id": "ar_lsat_200906_1-G_1_2", "context": "On a particular Saturday, a student will perform six activities—grocery shopping, hedge trimming, jogging, kitchen cleaning, laundry, and motorbike servicing. Each activity will be performed once, one at a time. The order in which the activities are performed is subject to the following conditions: Grocery shopping has to be immediately after hedge trimming. Kitchen cleaning has to be earlier than grocery shopping. Motorbike servicing has to be earlier than laundry. Motorbike servicing has to be either immediately before or immediately after jogging.", "question": "Which one of the following activities CANNOT be third?", "options": [ "A) grocery shopping", "B) hedge trimming", "C) jogging", "D) kitchen cleaning", "E) motorbike servicing" ], "answer": "B" }, { "id": "ar_lsat_200906_1-G_1_3", "context": "On a particular Saturday, a student will perform six activities—grocery shopping, hedge trimming, jogging, kitchen cleaning, laundry, and motorbike servicing. Each activity will be performed once, one at a time. The order in which the activities are performed is subject to the following conditions: Grocery shopping has to be immediately after hedge trimming. Kitchen cleaning has to be earlier than grocery shopping. Motorbike servicing has to be earlier than laundry. Motorbike servicing has to be either immediately before or immediately after jogging.", "question": "Which one of the following CANNOT be true?", "options": [ "A) Hedge trimming is fourth.", "B) Jogging is fourth.", "C) Kitchen cleaning is second.", "D) Laundry is third.", "E) Motorbike servicing is second." ], "answer": "C" }, { "id": "ar_lsat_200906_1-G_1_4", "context": "On a particular Saturday, a student will perform six activities—grocery shopping, hedge trimming, jogging, kitchen cleaning, laundry, and motorbike servicing. Each activity will be performed once, one at a time. The order in which the activities are performed is subject to the following conditions: Grocery shopping has to be immediately after hedge trimming. Kitchen cleaning has to be earlier than grocery shopping. Motorbike servicing has to be earlier than laundry. Motorbike servicing has to be either immediately before or immediately after jogging.", "question": "Which one of the following activities CANNOT be fifth?", "options": [ "A) grocery shopping", "B) hedge trimming", "C) jogging", "D) laundry", "E) motorbike servicing" ], "answer": "D" }, { "id": "ar_lsat_200906_1-G_1_5", "context": "On a particular Saturday, a student will perform six activities—grocery shopping, hedge trimming, jogging, kitchen cleaning, laundry, and motorbike servicing. Each activity will be performed once, one at a time. The order in which the activities are performed is subject to the following conditions: Grocery shopping has to be immediately after hedge trimming. Kitchen cleaning has to be earlier than grocery shopping. Motorbike servicing has to be earlier than laundry. Motorbike servicing has to be either immediately before or immediately after jogging.", "question": "Which one of the following, if substituted for the condition that motorbike servicing has to be earlier than laundry, would have the same effect in determining the order of the student's activities?", "options": [ "A) Laundry has to be one of the last three activities.", "B) Laundry has to be either immediately before or immediately after jogging.", "C) Jogging has to be earlier than laundry.", "D) Laundry has to be earlier than hedge trimming.", "E) Laundry has to be earlier than jogging." ], "answer": "C" }, { "id": "ar_lsat_200906_1-G_2_6", "context": "Each of exactly three actors—Gombrich, Otto, and Raines—auditions for parts on exactly two of the following days of a particular week: Wednesday, Thursday, Friday, and Saturday. On each of these days at least one of the actors auditions for parts. The order of that week's auditions must meet the following conditions: The first day on which Otto auditions is some day before the first day on which Raines auditions. There is at least one day on which both Gombrich and Raines audition. At least one of the actors auditions on both Thursday and Saturday.", "question": "Which one of the following could be an accurate matching of the actors to the days on which they audition?", "options": [ "A) Gombrich: Thursday, Friday Otto: Wednesday, Saturday Raines: Friday, Saturday", "B) Gombrich: Thursday, Saturday Otto: Wednesday, Friday Raines: Friday, Saturday", "C) Gombrich: Friday, Saturday Otto: Thursday, Saturday Raines: Wednesday, Friday", "D) Gombrich: Wednesday, Thursday Otto: Wednesday, Saturday Raines: Thursday, Saturday", "E) Gombrich: Wednesday, Friday Otto: Wednesday, Thursday Raines: Thursday, Saturday" ], "answer": "B" }, { "id": "ar_lsat_200906_1-G_2_7", "context": "Each of exactly three actors—Gombrich, Otto, and Raines—auditions for parts on exactly two of the following days of a particular week: Wednesday, Thursday, Friday, and Saturday. On each of these days at least one of the actors auditions for parts. The order of that week's auditions must meet the following conditions: The first day on which Otto auditions is some day before the first day on which Raines auditions. There is at least one day on which both Gombrich and Raines audition. At least one of the actors auditions on both Thursday and Saturday.", "question": "If Otto auditions on both Thursday and Saturday, then Gombrich could audition on both", "options": [ "A) Wednesday and Thursday", "B) Wednesday and Friday", "C) Thursday and Friday", "D) Thursday and Saturday", "E) Friday and Saturday" ], "answer": "B" }, { "id": "ar_lsat_200906_1-G_2_8", "context": "Each of exactly three actors—Gombrich, Otto, and Raines—auditions for parts on exactly two of the following days of a particular week: Wednesday, Thursday, Friday, and Saturday. On each of these days at least one of the actors auditions for parts. The order of that week's auditions must meet the following conditions: The first day on which Otto auditions is some day before the first day on which Raines auditions. There is at least one day on which both Gombrich and Raines audition. At least one of the actors auditions on both Thursday and Saturday.", "question": "Which one of the following CANNOT be true of the week's auditions?", "options": [ "A) Gombrich's last audition is on Thursday.", "B) Gombrich's last audition is on Friday.", "C) Otto's last audition is on Saturday.", "D) Raines's last audition is on Friday.", "E) Raines's last audition is on Thursday." ], "answer": "E" }, { "id": "ar_lsat_200906_1-G_2_9", "context": "Each of exactly three actors—Gombrich, Otto, and Raines—auditions for parts on exactly two of the following days of a particular week: Wednesday, Thursday, Friday, and Saturday. On each of these days at least one of the actors auditions for parts. The order of that week's auditions must meet the following conditions: The first day on which Otto auditions is some day before the first day on which Raines auditions. There is at least one day on which both Gombrich and Raines audition. At least one of the actors auditions on both Thursday and Saturday.", "question": "Which one of the following pairs of days CANNOT be the two days on which Otto auditions?", "options": [ "A) Wednesday and Thursday", "B) Wednesday and Friday", "C) Wednesday and Saturday", "D) Thursday and Friday", "E) Thursday and Saturday" ], "answer": "D" }, { "id": "ar_lsat_200906_1-G_2_10", "context": "Each of exactly three actors—Gombrich, Otto, and Raines—auditions for parts on exactly two of the following days of a particular week: Wednesday, Thursday, Friday, and Saturday. On each of these days at least one of the actors auditions for parts. The order of that week's auditions must meet the following conditions: The first day on which Otto auditions is some day before the first day on which Raines auditions. There is at least one day on which both Gombrich and Raines audition. At least one of the actors auditions on both Thursday and Saturday.", "question": "Which one of the following could be true?", "options": [ "A) All three actors audition on Wednesday.", "B) All three actors audition on Friday.", "C) All three actors audition on Saturday.", "D) Otto auditions on Friday and on Saturday.", "E) Raines auditions on Wednesday and on Friday." ], "answer": "C" }, { "id": "ar_lsat_200906_1-G_2_11", "context": "Each of exactly three actors—Gombrich, Otto, and Raines—auditions for parts on exactly two of the following days of a particular week: Wednesday, Thursday, Friday, and Saturday. On each of these days at least one of the actors auditions for parts. The order of that week's auditions must meet the following conditions: The first day on which Otto auditions is some day before the first day on which Raines auditions. There is at least one day on which both Gombrich and Raines audition. At least one of the actors auditions on both Thursday and Saturday.", "question": "If Gombrich auditions on both Wednesday and Saturday, then which one of the following could be true?", "options": [ "A) Otto auditions on both Wednesday and Thursday.", "B) Otto auditions on both Wednesday and Friday.", "C) Otto auditions on both Wednesday and Saturday.", "D) Raines auditions on both Wednesday and Saturday.", "E) Raines auditions on both Thursday and Friday." ], "answer": "B" }, { "id": "ar_lsat_200906_1-G_3_12", "context": "Each of seven toy dinosaurs—an iguanadon, a lambeosaur, a plateosaur, a stegosaur, a tyrannosaur, an ultrasaur, and a velociraptor—is completely colored either green, mauve, red, or yellow. A display is to consist entirely of exactly five of these toys. The display must meet the following specifications: Exactly two mauve toys are included. The stegosaur is red and is included. The iguanadon is included only if it is green. The plateosaur is included only if it is yellow. The velociraptor is included only if the ultrasaur is not. If both the lambeosaur and the ultrasaur are included, at least one of them is not mauve.", "question": "Which one of the following could be the toys included in the display?", "options": [ "A) the lambeosaur, the plateosaur, the stegosaur, the ultrasaur, the velociraptor", "B) the lambeosaur, the plateosaur, the stegosaur, the tyrannosaur, the ultrasaur", "C) the iguanadon, the lambeosaur, the plateosaur, the stegosaur, the ultrasaur", "D) the iguanadon, the lambeosaur, the plateosaur, the tyrannosaur, the velociraptor", "E) the iguanadon, the lambeosaur, the stegosaur, the ultrasaur, the velociraptor" ], "answer": "B" }, { "id": "ar_lsat_200906_1-G_3_13", "context": "Each of seven toy dinosaurs—an iguanadon, a lambeosaur, a plateosaur, a stegosaur, a tyrannosaur, an ultrasaur, and a velociraptor—is completely colored either green, mauve, red, or yellow. A display is to consist entirely of exactly five of these toys. The display must meet the following specifications: Exactly two mauve toys are included. The stegosaur is red and is included. The iguanadon is included only if it is green. The plateosaur is included only if it is yellow. The velociraptor is included only if the ultrasaur is not. If both the lambeosaur and the ultrasaur are included, at least one of them is not mauve.", "question": "If the tyrannosaur is not included in the display, then the display must contain each of the following EXCEPT:", "options": [ "A) a green iguanadon", "B) a mauve velociraptor", "C) a mauve lambeosaur", "D) a mauve ultrasaur", "E) a yellow plateosaur" ], "answer": "D" }, { "id": "ar_lsat_200906_1-G_3_14", "context": "Each of seven toy dinosaurs—an iguanadon, a lambeosaur, a plateosaur, a stegosaur, a tyrannosaur, an ultrasaur, and a velociraptor—is completely colored either green, mauve, red, or yellow. A display is to consist entirely of exactly five of these toys. The display must meet the following specifications: Exactly two mauve toys are included. The stegosaur is red and is included. The iguanadon is included only if it is green. The plateosaur is included only if it is yellow. The velociraptor is included only if the ultrasaur is not. If both the lambeosaur and the ultrasaur are included, at least one of them is not mauve.", "question": "Which one of the following is a pair of toys that could be included in the display together?", "options": [ "A) a green lambeosaur and a mauve velociraptor", "B) a green lambeosaur and a yellow tyrannosaur", "C) a green lambeosaur and a yellow ultrasaur", "D) a yellow tyrannosaur and a green ultrasaur", "E) a yellow tyrannosaur and a red velociraptor" ], "answer": "A" }, { "id": "ar_lsat_200906_1-G_3_15", "context": "Each of seven toy dinosaurs—an iguanadon, a lambeosaur, a plateosaur, a stegosaur, a tyrannosaur, an ultrasaur, and a velociraptor—is completely colored either green, mauve, red, or yellow. A display is to consist entirely of exactly five of these toys. The display must meet the following specifications: Exactly two mauve toys are included. The stegosaur is red and is included. The iguanadon is included only if it is green. The plateosaur is included only if it is yellow. The velociraptor is included only if the ultrasaur is not. If both the lambeosaur and the ultrasaur are included, at least one of them is not mauve.", "question": "If the display includes a yellow tyrannosaur, then which one of the following must be true?", "options": [ "A) The iguanadon is included in the display.", "B) The plateosaur is not included in the display.", "C) The display includes two yellow toy dinosaurs.", "D) The display contains a green lambeosaur.", "E) The display contains a mauve velociraptor." ], "answer": "E" }, { "id": "ar_lsat_200906_1-G_3_16", "context": "Each of seven toy dinosaurs—an iguanadon, a lambeosaur, a plateosaur, a stegosaur, a tyrannosaur, an ultrasaur, and a velociraptor—is completely colored either green, mauve, red, or yellow. A display is to consist entirely of exactly five of these toys. The display must meet the following specifications: Exactly two mauve toys are included. The stegosaur is red and is included. The iguanadon is included only if it is green. The plateosaur is included only if it is yellow. The velociraptor is included only if the ultrasaur is not. If both the lambeosaur and the ultrasaur are included, at least one of them is not mauve.", "question": "If both the iguanadon and the ultrasaur are included in the display, then the display must contain which one of the following?", "options": [ "A) a mauve tyrannosaur", "B) a mauve ultrasaur", "C) a yellow lambeosaur", "D) a yellow plateosaur", "E) a yellow ultrasaur" ], "answer": "A" }, { "id": "ar_lsat_200906_1-G_3_17", "context": "Each of seven toy dinosaurs—an iguanadon, a lambeosaur, a plateosaur, a stegosaur, a tyrannosaur, an ultrasaur, and a velociraptor—is completely colored either green, mauve, red, or yellow. A display is to consist entirely of exactly five of these toys. The display must meet the following specifications: Exactly two mauve toys are included. The stegosaur is red and is included. The iguanadon is included only if it is green. The plateosaur is included only if it is yellow. The velociraptor is included only if the ultrasaur is not. If both the lambeosaur and the ultrasaur are included, at least one of them is not mauve.", "question": "If the display includes two green toys, then which one of the following could be true?", "options": [ "A) There is exactly one yellow toy included in the display.", "B) The tyrannosaur is included in the display and it is green.", "C) Neither the lambeosaur nor the velociraptor is included in the display.", "D) Neither the tyrannosaur nor the velociraptor is included in the display.", "E) Neither the ultrasaur nor the velociraptor is included in the display." ], "answer": "B" }, { "id": "ar_lsat_200906_1-G_4_18", "context": "A charitable foundation awards grants in exactly four areas—medical services, theater arts, wildlife preservation, and youth services—each grant being in one of these areas. One or more grants are awarded in each of the four quarters of a calendar year. Additionally, over the course of a calendar year, the following must obtain: Grants are awarded in all four areas. No more than six grants are awarded. No grants in the same area are awarded in the same quarter or in consecutive quarters. Exactly two medical services grants are awarded. A wildlife preservation grant is awarded in the second quarter.", "question": "Which one of the following is a possible allocation of grants in a particular calendar year?", "options": [ "A) first quarter: theater arts second quarter: wildlife preservation third quarter: medical services, youth services fourth quarter: theater arts", "B) first quarter: wildlife preservation second quarter: medical services third quarter: theater arts fourth quarter: medical services, youth services", "C) first quarter: youth services second quarter: wildlife preservation, medical services third quarter: theater arts fourth quarter: medical services, youth services", "D) first quarter: medical services, theater arts second quarter: theater arts, wildlife preservation third quarter: youth services fourth quarter: medical services", "E) first quarter: medical services, theater arts second quarter: wildlife preservation, youth services third quarter: theater arts fourth quarter: medical services, youth services" ], "answer": "C" }, { "id": "ar_lsat_200906_1-G_4_19", "context": "A charitable foundation awards grants in exactly four areas—medical services, theater arts, wildlife preservation, and youth services—each grant being in one of these areas. One or more grants are awarded in each of the four quarters of a calendar year. Additionally, over the course of a calendar year, the following must obtain: Grants are awarded in all four areas. No more than six grants are awarded. No grants in the same area are awarded in the same quarter or in consecutive quarters. Exactly two medical services grants are awarded. A wildlife preservation grant is awarded in the second quarter.", "question": "Which one of the following CANNOT be true in a particular calendar year?", "options": [ "A) In each of the two quarters in which a medical services grant is awarded, no other grant is awarded.", "B) Exactly two theater arts grants are awarded, one in the second quarter and one in the fourth quarter.", "C) Exactly two youth services grants are awarded, one in the first quarter and one in the third quarter.", "D) Two wildlife preservation grants and two youth services grants are awarded.", "E) Three grants are awarded in the fourth quarter." ], "answer": "D" }, { "id": "ar_lsat_200906_1-G_4_20", "context": "A charitable foundation awards grants in exactly four areas—medical services, theater arts, wildlife preservation, and youth services—each grant being in one of these areas. One or more grants are awarded in each of the four quarters of a calendar year. Additionally, over the course of a calendar year, the following must obtain: Grants are awarded in all four areas. No more than six grants are awarded. No grants in the same area are awarded in the same quarter or in consecutive quarters. Exactly two medical services grants are awarded. A wildlife preservation grant is awarded in the second quarter.", "question": "If a wildlife preservation grant and a youth services grant are awarded in the same quarter of a particular calendar year, then any of the following could be true that year EXCEPT:", "options": [ "A) A medical services grant is awarded in the second quarter.", "B) A theater arts grant is awarded in the first quarter.", "C) A theater arts grant is awarded in the second quarter.", "D) A wildlife preservation grant is awarded in the fourth quarter.", "E) A youth services grant is awarded in the third quarter." ], "answer": "E" }, { "id": "ar_lsat_200906_1-G_4_21", "context": "A charitable foundation awards grants in exactly four areas—medical services, theater arts, wildlife preservation, and youth services—each grant being in one of these areas. One or more grants are awarded in each of the four quarters of a calendar year. Additionally, over the course of a calendar year, the following must obtain: Grants are awarded in all four areas. No more than six grants are awarded. No grants in the same area are awarded in the same quarter or in consecutive quarters. Exactly two medical services grants are awarded. A wildlife preservation grant is awarded in the second quarter.", "question": "If exactly two grants are awarded in just one of the four quarters of a particular calendar year, then which one of the following could be true that year?", "options": [ "A) Two youth services grants are awarded.", "B) Neither a medical services grant nor a youth services grant is awarded in the first quarter.", "C) A wildlife preservation grant is awarded in the fourth quarter.", "D) Both a youth services grant and a theater arts grant are awarded in the first quarter.", "E) A youth services grant is awarded in the first quarter and a theater arts grant is awarded in the second quarter." ], "answer": "B" }, { "id": "ar_lsat_200906_1-G_4_22", "context": "A charitable foundation awards grants in exactly four areas—medical services, theater arts, wildlife preservation, and youth services—each grant being in one of these areas. One or more grants are awarded in each of the four quarters of a calendar year. Additionally, over the course of a calendar year, the following must obtain: Grants are awarded in all four areas. No more than six grants are awarded. No grants in the same area are awarded in the same quarter or in consecutive quarters. Exactly two medical services grants are awarded. A wildlife preservation grant is awarded in the second quarter.", "question": "Which one of the following CANNOT be true in a particular calendar year?", "options": [ "A) Three grants are awarded in a quarter, none of which is a medical services grant.", "B) Exactly two grants are awarded in the first quarter and exactly two in the third quarter.", "C) Exactly two grants are awarded in the first quarter and exactly two in the fourth quarter.", "D) Theater arts grants are awarded in the first and fourth quarters, and no other grants are awarded in those two quarters.", "E) Wildlife preservation grants are awarded in the second and fourth quarters, and no other grants are awarded in those two quarters." ], "answer": "D" }, { "id": "ar_lsat_200906_1-G_4_23", "context": "A charitable foundation awards grants in exactly four areas—medical services, theater arts, wildlife preservation, and youth services—each grant being in one of these areas. One or more grants are awarded in each of the four quarters of a calendar year. Additionally, over the course of a calendar year, the following must obtain: Grants are awarded in all four areas. No more than six grants are awarded. No grants in the same area are awarded in the same quarter or in consecutive quarters. Exactly two medical services grants are awarded. A wildlife preservation grant is awarded in the second quarter.", "question": "It is fully determined which grants are awarded for each quarter of a particular calendar year if which one of the following is true that year?", "options": [ "A) Two theater arts grants are awarded.", "B) Two youth services grants are awarded.", "C) Three grants are awarded in the first quarter.", "D) Three grants are awarded in the second quarter.", "E) Three grants are awarded in the third quarter." ], "answer": "E" }, { "id": "ar_lsat_200909_3-G_1_1", "context": "Historical records show that over the course of five consecutive years—601, 602, 603, 604, and 605—a certain emperor began construction of six monuments: F, G, H, L, M, and S. A historian is trying to determine the years in which the individual monuments were begun. The following facts have been established: L was begun in a later year than G, but in an earlier year than F. H was begun no earlier than 604. M was begun earlier than 604. Two of the monuments were begun in 601, and no other monument was begun in the same year as any of the other monuments.", "question": "Which one of the following could be an accurate matching of monuments to the years in which they were begun?", "options": [ "A) 601: G; 602: L, S; 603: M; 604: H; 605: F", "B) 601: G, M; 602: L; 603: H; 604: S; 605: F", "C) 601: G, M; 602: S; 603: F; 604: L; 605: H", "D) 601: G, S; 602: L; 603: F; 604: M; 605: H", "E) 601: G, S; 602: L; 603: M; 604: H; 605: F" ], "answer": "E" }, { "id": "ar_lsat_200909_3-G_1_2", "context": "Historical records show that over the course of five consecutive years—601, 602, 603, 604, and 605—a certain emperor began construction of six monuments: F, G, H, L, M, and S. A historian is trying to determine the years in which the individual monuments were begun. The following facts have been established: L was begun in a later year than G, but in an earlier year than F. H was begun no earlier than 604. M was begun earlier than 604. Two of the monuments were begun in 601, and no other monument was begun in the same year as any of the other monuments.", "question": "What is the latest year in which L could have been begun?", "options": [ "A) 601", "B) 602", "C) 603", "D) 604", "E) 605" ], "answer": "C" }, { "id": "ar_lsat_200909_3-G_1_3", "context": "Historical records show that over the course of five consecutive years—601, 602, 603, 604, and 605—a certain emperor began construction of six monuments: F, G, H, L, M, and S. A historian is trying to determine the years in which the individual monuments were begun. The following facts have been established: L was begun in a later year than G, but in an earlier year than F. H was begun no earlier than 604. M was begun earlier than 604. Two of the monuments were begun in 601, and no other monument was begun in the same year as any of the other monuments.", "question": "The years in which each of the monuments were begun can be completely determined if which one of the following is discovered to be true?", "options": [ "A) F was begun in 603.", "B) G was begun in 602.", "C) H was begun in 605.", "D) M was begun in 602.", "E) S was begun in 604." ], "answer": "E" }, { "id": "ar_lsat_200909_3-G_1_4", "context": "Historical records show that over the course of five consecutive years—601, 602, 603, 604, and 605—a certain emperor began construction of six monuments: F, G, H, L, M, and S. A historian is trying to determine the years in which the individual monuments were begun. The following facts have been established: L was begun in a later year than G, but in an earlier year than F. H was begun no earlier than 604. M was begun earlier than 604. Two of the monuments were begun in 601, and no other monument was begun in the same year as any of the other monuments.", "question": "Which one of the following must be true?", "options": [ "A) F was begun in a later year than M.", "B) F was begun in a later year than S.", "C) H was begun in a later year than F.", "D) H was begun in a later year than S.", "E) M was begun in a later year than G." ], "answer": "A" }, { "id": "ar_lsat_200909_3-G_1_5", "context": "Historical records show that over the course of five consecutive years—601, 602, 603, 604, and 605—a certain emperor began construction of six monuments: F, G, H, L, M, and S. A historian is trying to determine the years in which the individual monuments were begun. The following facts have been established: L was begun in a later year than G, but in an earlier year than F. H was begun no earlier than 604. M was begun earlier than 604. Two of the monuments were begun in 601, and no other monument was begun in the same year as any of the other monuments.", "question": "L must be the monument that was begun in 602 if which one of the following is true?", "options": [ "A) F was begun in 605.", "B) G was begun in 601.", "C) H was begun in 604.", "D) M was begun in 601.", "E) S was begun in 603." ], "answer": "E" }, { "id": "ar_lsat_200909_3-G_1_6", "context": "Historical records show that over the course of five consecutive years—601, 602, 603, 604, and 605—a certain emperor began construction of six monuments: F, G, H, L, M, and S. A historian is trying to determine the years in which the individual monuments were begun. The following facts have been established: L was begun in a later year than G, but in an earlier year than F. H was begun no earlier than 604. M was begun earlier than 604. Two of the monuments were begun in 601, and no other monument was begun in the same year as any of the other monuments.", "question": "If M was begun in a later year than L, then which one of the following could be true?", "options": [ "A) F was begun in 603.", "B) G was begun in 602.", "C) H was begun in 605.", "D) L was begun in 603.", "E) S was begun in 604." ], "answer": "C" }, { "id": "ar_lsat_200909_3-G_2_7", "context": "A company organizing on-site day care consults with a group of parents composed exclusively of volunteers from among the seven employees—Felicia, Leah, Masatomo, Rochelle, Salman, Terry, and Veena—who have become parents this year. The composition of the volunteer group must be consistent with the following: If Rochelle volunteers, then so does Masatomo. If Masatomo volunteers, then so does Terry. If Salman does not volunteer, then Veena volunteers. If Rochelle does not volunteer, then Leah volunteers. If Terry volunteers, then neither Felicia nor Veena volunteers.", "question": "Which one of the following could be a complete and accurate list of the volunteers?", "options": [ "A) Felicia, Salman", "B) Masatomo, Rochelle", "C) Leah, Salman, Terry", "D) Salman, Rochelle, Veena", "E) Leah, Salman, Terry, Veena" ], "answer": "C" }, { "id": "ar_lsat_200909_3-G_2_8", "context": "A company organizing on-site day care consults with a group of parents composed exclusively of volunteers from among the seven employees—Felicia, Leah, Masatomo, Rochelle, Salman, Terry, and Veena—who have become parents this year. The composition of the volunteer group must be consistent with the following: If Rochelle volunteers, then so does Masatomo. If Masatomo volunteers, then so does Terry. If Salman does not volunteer, then Veena volunteers. If Rochelle does not volunteer, then Leah volunteers. If Terry volunteers, then neither Felicia nor Veena volunteers.", "question": "If Veena volunteers, then which one of the following could be true?", "options": [ "A) Felicia and Rochelle also volunteer.", "B) Felicia and Salman also volunteer.", "C) Leah and Masatomo also volunteer.", "D) Leah and Terry also volunteer.", "E) Salman and Terry also volunteer." ], "answer": "B" }, { "id": "ar_lsat_200909_3-G_2_9", "context": "A company organizing on-site day care consults with a group of parents composed exclusively of volunteers from among the seven employees—Felicia, Leah, Masatomo, Rochelle, Salman, Terry, and Veena—who have become parents this year. The composition of the volunteer group must be consistent with the following: If Rochelle volunteers, then so does Masatomo. If Masatomo volunteers, then so does Terry. If Salman does not volunteer, then Veena volunteers. If Rochelle does not volunteer, then Leah volunteers. If Terry volunteers, then neither Felicia nor Veena volunteers.", "question": "If Terry does not volunteer, then which one of the following CANNOT be true?", "options": [ "A) Felicia volunteers.", "B) Leah volunteers.", "C) Rochelle volunteers.", "D) Salman volunteers.", "E) Veena volunteers." ], "answer": "C" }, { "id": "ar_lsat_200909_3-G_2_10", "context": "A company organizing on-site day care consults with a group of parents composed exclusively of volunteers from among the seven employees—Felicia, Leah, Masatomo, Rochelle, Salman, Terry, and Veena—who have become parents this year. The composition of the volunteer group must be consistent with the following: If Rochelle volunteers, then so does Masatomo. If Masatomo volunteers, then so does Terry. If Salman does not volunteer, then Veena volunteers. If Rochelle does not volunteer, then Leah volunteers. If Terry volunteers, then neither Felicia nor Veena volunteers.", "question": "If Masatomo volunteers, then which one of the following could be true?", "options": [ "A) Felicia volunteers.", "B) Leah volunteers.", "C) Veena volunteers.", "D) Salman does not volunteer.", "E) Terry does not volunteer." ], "answer": "B" }, { "id": "ar_lsat_200909_3-G_2_11", "context": "A company organizing on-site day care consults with a group of parents composed exclusively of volunteers from among the seven employees—Felicia, Leah, Masatomo, Rochelle, Salman, Terry, and Veena—who have become parents this year. The composition of the volunteer group must be consistent with the following: If Rochelle volunteers, then so does Masatomo. If Masatomo volunteers, then so does Terry. If Salman does not volunteer, then Veena volunteers. If Rochelle does not volunteer, then Leah volunteers. If Terry volunteers, then neither Felicia nor Veena volunteers.", "question": "If Felicia volunteers, then which one of the following must be true?", "options": [ "A) Leah volunteers.", "B) Salman volunteers.", "C) Veena does not volunteer.", "D) Exactly three of the employees volunteer.", "E) Exactly four of the employees volunteer." ], "answer": "A" }, { "id": "ar_lsat_200909_3-G_2_12", "context": "A company organizing on-site day care consults with a group of parents composed exclusively of volunteers from among the seven employees—Felicia, Leah, Masatomo, Rochelle, Salman, Terry, and Veena—who have become parents this year. The composition of the volunteer group must be consistent with the following: If Rochelle volunteers, then so does Masatomo. If Masatomo volunteers, then so does Terry. If Salman does not volunteer, then Veena volunteers. If Rochelle does not volunteer, then Leah volunteers. If Terry volunteers, then neither Felicia nor Veena volunteers.", "question": "Which one of the following pairs of employees is such that at least one member of the pair volunteers?", "options": [ "A) Felicia and Terry", "B) Leah and Masatomo", "C) Leah and Veena", "D) Rochelle and Salman", "E) Salman and Terry" ], "answer": "B" }, { "id": "ar_lsat_200909_3-G_3_13", "context": "Flyhigh Airlines owns exactly two planes: P and Q. Getaway Airlines owns exactly three planes: R, S, T. On Sunday, each plane makes exactly one flight, according to the following conditions: Only one plane departs at a time. Each plane makes either a domestic or an international flight, but not both. Plane P makes an international flight. Planes Q and R make domestic flights. All international flights depart before any domestic flight. Any Getaway domestic flight departs before Flyhigh's domestic flight.", "question": "Which one of the following could be the order, from first to last, in which the five planes depart?", "options": [ "A) P, Q, R, S, T", "B) P, Q, T, S, R", "C) P, S, T, Q, R", "D) P, S, T, R, Q", "E) T, S, R, P, Q" ], "answer": "D" }, { "id": "ar_lsat_200909_3-G_3_14", "context": "Flyhigh Airlines owns exactly two planes: P and Q. Getaway Airlines owns exactly three planes: R, S, T. On Sunday, each plane makes exactly one flight, according to the following conditions: Only one plane departs at a time. Each plane makes either a domestic or an international flight, but not both. Plane P makes an international flight. Planes Q and R make domestic flights. All international flights depart before any domestic flight. Any Getaway domestic flight departs before Flyhigh's domestic flight.", "question": "The plane that departs second could be any one of exactly how many of the planes?", "options": [ "A) one", "B) two", "C) three", "D) four", "E) five" ], "answer": "D" }, { "id": "ar_lsat_200909_3-G_3_15", "context": "Flyhigh Airlines owns exactly two planes: P and Q. Getaway Airlines owns exactly three planes: R, S, T. On Sunday, each plane makes exactly one flight, according to the following conditions: Only one plane departs at a time. Each plane makes either a domestic or an international flight, but not both. Plane P makes an international flight. Planes Q and R make domestic flights. All international flights depart before any domestic flight. Any Getaway domestic flight departs before Flyhigh's domestic flight.", "question": "If plane S departs sometime before plane P, then which one of the following must be false?", "options": [ "A) Plane S departs first.", "B) Plane S departs third.", "C) Plane T departs second.", "D) Plane T departs third.", "E) Plane T departs fourth." ], "answer": "B" }, { "id": "ar_lsat_200909_3-G_3_16", "context": "Flyhigh Airlines owns exactly two planes: P and Q. Getaway Airlines owns exactly three planes: R, S, T. On Sunday, each plane makes exactly one flight, according to the following conditions: Only one plane departs at a time. Each plane makes either a domestic or an international flight, but not both. Plane P makes an international flight. Planes Q and R make domestic flights. All international flights depart before any domestic flight. Any Getaway domestic flight departs before Flyhigh's domestic flight.", "question": "Which one of the following must be true?", "options": [ "A) Plane P departs first.", "B) Plane Q departs last.", "C) Plane R departs second.", "D) Plane S departs first.", "E) Plane T departs fourth." ], "answer": "B" }, { "id": "ar_lsat_200909_3-G_3_17", "context": "Flyhigh Airlines owns exactly two planes: P and Q. Getaway Airlines owns exactly three planes: R, S, T. On Sunday, each plane makes exactly one flight, according to the following conditions: Only one plane departs at a time. Each plane makes either a domestic or an international flight, but not both. Plane P makes an international flight. Planes Q and R make domestic flights. All international flights depart before any domestic flight. Any Getaway domestic flight departs before Flyhigh's domestic flight.", "question": "If plane S departs third, then each of the following can be true EXCEPT:", "options": [ "A) Plane R departs sometime before plane S and sometime before plane T.", "B) Plane S departs sometime before plane Q and sometime before plane T.", "C) Plane S departs sometime before plane R and sometime before plane T.", "D) Plane T departs sometime before plane P and sometime before plane S.", "E) Plane T departs sometime before plane R and sometime before plane S." ], "answer": "C" }, { "id": "ar_lsat_200909_3-G_4_18", "context": "A student is choosing courses to take during a summer school session. Each summer school student must take at least three courses from among the following seven: history, linguistics, music, physics, statistics, theater, and writing. The summer school schedule restricts the courses a student can take in the following ways: If history is taken, then neither statistics nor music can be taken. If music is taken, then neither physics nor theater can be taken. If writing is taken, then neither physics nor statistics can be taken.", "question": "The student could take which one of the following groups of courses during the summer school session?", "options": [ "A) history, linguistics, and statistics", "B) history, music, and physics", "C) history, physics, and theater", "D) linguistics, physics, theater, and writing", "E) music, theater, and writing" ], "answer": "C" }, { "id": "ar_lsat_200909_3-G_4_19", "context": "A student is choosing courses to take during a summer school session. Each summer school student must take at least three courses from among the following seven: history, linguistics, music, physics, statistics, theater, and writing. The summer school schedule restricts the courses a student can take in the following ways: If history is taken, then neither statistics nor music can be taken. If music is taken, then neither physics nor theater can be taken. If writing is taken, then neither physics nor statistics can be taken.", "question": "What is the maximum number of courses the student could take during the summer school session?", "options": [ "A) seven", "B) six", "C) five", "D) four", "E) three" ], "answer": "D" }, { "id": "ar_lsat_200909_3-G_4_20", "context": "A student is choosing courses to take during a summer school session. Each summer school student must take at least three courses from among the following seven: history, linguistics, music, physics, statistics, theater, and writing. The summer school schedule restricts the courses a student can take in the following ways: If history is taken, then neither statistics nor music can be taken. If music is taken, then neither physics nor theater can be taken. If writing is taken, then neither physics nor statistics can be taken.", "question": "If the student takes neither physics nor writing, then it could be true that the student also takes neither", "options": [ "A) history nor linguistics", "B) history nor music", "C) history nor statistics", "D) linguistics nor music", "E) statistics nor theater" ], "answer": "B" }, { "id": "ar_lsat_200909_3-G_4_21", "context": "A student is choosing courses to take during a summer school session. Each summer school student must take at least three courses from among the following seven: history, linguistics, music, physics, statistics, theater, and writing. The summer school schedule restricts the courses a student can take in the following ways: If history is taken, then neither statistics nor music can be taken. If music is taken, then neither physics nor theater can be taken. If writing is taken, then neither physics nor statistics can be taken.", "question": "If the student takes music, then which one of the following must the student also take?", "options": [ "A) writing", "B) theater", "C) statistics", "D) physics", "E) linguistics" ], "answer": "E" }, { "id": "ar_lsat_200909_3-G_4_22", "context": "A student is choosing courses to take during a summer school session. Each summer school student must take at least three courses from among the following seven: history, linguistics, music, physics, statistics, theater, and writing. The summer school schedule restricts the courses a student can take in the following ways: If history is taken, then neither statistics nor music can be taken. If music is taken, then neither physics nor theater can be taken. If writing is taken, then neither physics nor statistics can be taken.", "question": "The student must take one or the other or both of", "options": [ "A) history or statistics", "B) linguistics or theater", "C) linguistics or writing", "D) music or physics", "E) theater or writing" ], "answer": "B" }, { "id": "ar_lsat_200909_3-G_4_23", "context": "A student is choosing courses to take during a summer school session. Each summer school student must take at least three courses from among the following seven: history, linguistics, music, physics, statistics, theater, and writing. The summer school schedule restricts the courses a student can take in the following ways: If history is taken, then neither statistics nor music can be taken. If music is taken, then neither physics nor theater can be taken. If writing is taken, then neither physics nor statistics can be taken.", "question": "Which one of the following, if substituted for the restriction that if music is taken, then neither physics nor theater can be taken, would have the same effect in determining which courses the student can take?", "options": [ "A) If music is taken, then either statistics or writing must also be taken.", "B) The only courses that are eligible to be taken together with music are linguistics, statistics, and writing.", "C) The only courses that are eligible to be taken together with physics are history and linguistics.", "D) The only courses that are eligible to be taken together with theater are history, linguistics, and writing.", "E) If both physics and theater are taken, then music cannot be taken." ], "answer": "B" }, { "id": "ar_lsat_200912_1-G_1_1", "context": "A law firm has seven departments—family law, health law, injury law, labor law, probate, securities, and tax law. The firm is to occupy a building with three floors—the bottom floor, the middle floor, and the top floor. Each floor can accommodate up to four departments, and no department is to be on more than one floor. Assignment of departments to floors is subject to the following constraints: Probate must be on the same floor as tax law. Health law must be on the floor immediately above injury law. Labor law must occupy an entire floor by itself.", "question": "Which one of the following could be the assignment of departments to floors?", "options": [ "A) top floor: labor law middle floor: injury law, probate, tax law bottom floor: family law, health law, securities", "B) top floor: family law, health law, probate middle floor: injury law, securities, tax law bottom floor: labor law", "C) top floor: health law, probate, tax law middle floor: family law, injury law, securities bottom floor: labor law", "D) top floor: health law, probate, tax law middle floor: injury law, securities bottom floor: family law, labor law", "E) top floor: family law, health law, probate, tax law middle floor: labor law bottom floor: injury law, securities" ], "answer": "C" }, { "id": "ar_lsat_200912_1-G_1_2", "context": "A law firm has seven departments—family law, health law, injury law, labor law, probate, securities, and tax law. The firm is to occupy a building with three floors—the bottom floor, the middle floor, and the top floor. Each floor can accommodate up to four departments, and no department is to be on more than one floor. Assignment of departments to floors is subject to the following constraints: Probate must be on the same floor as tax law. Health law must be on the floor immediately above injury law. Labor law must occupy an entire floor by itself.", "question": "If injury law and probate are both assigned to the middle floor, which one of the following could be true?", "options": [ "A) Family law is assigned to the middle floor.", "B) Health law is assigned to the middle floor.", "C) Labor law is assigned to the top floor.", "D) Securities is assigned to the bottom floor.", "E) Tax law is assigned to the top floor." ], "answer": "A" }, { "id": "ar_lsat_200912_1-G_1_3", "context": "A law firm has seven departments—family law, health law, injury law, labor law, probate, securities, and tax law. The firm is to occupy a building with three floors—the bottom floor, the middle floor, and the top floor. Each floor can accommodate up to four departments, and no department is to be on more than one floor. Assignment of departments to floors is subject to the following constraints: Probate must be on the same floor as tax law. Health law must be on the floor immediately above injury law. Labor law must occupy an entire floor by itself.", "question": "Which one of the following CANNOT be the assignment for any of the floors?", "options": [ "A) family law, health law, probate, and tax law", "B) family law, injury law, probate, and tax law", "C) family law, probate, securities, and tax law", "D) health law, probate, securities, and tax law", "E) injury law, probate, securities, and tax law" ], "answer": "C" }, { "id": "ar_lsat_200912_1-G_1_4", "context": "A law firm has seven departments—family law, health law, injury law, labor law, probate, securities, and tax law. The firm is to occupy a building with three floors—the bottom floor, the middle floor, and the top floor. Each floor can accommodate up to four departments, and no department is to be on more than one floor. Assignment of departments to floors is subject to the following constraints: Probate must be on the same floor as tax law. Health law must be on the floor immediately above injury law. Labor law must occupy an entire floor by itself.", "question": "If family law is assigned to the same floor as securities, which one of the following could be true?", "options": [ "A) Exactly one department is assigned to the middle floor.", "B) Exactly four departments are assigned to the middle floor.", "C) Exactly two departments are assigned to the bottom floor.", "D) Exactly three departments are assigned to the bottom floor.", "E) Exactly four departments are assigned to the bottom floor." ], "answer": "D" }, { "id": "ar_lsat_200912_1-G_1_5", "context": "A law firm has seven departments—family law, health law, injury law, labor law, probate, securities, and tax law. The firm is to occupy a building with three floors—the bottom floor, the middle floor, and the top floor. Each floor can accommodate up to four departments, and no department is to be on more than one floor. Assignment of departments to floors is subject to the following constraints: Probate must be on the same floor as tax law. Health law must be on the floor immediately above injury law. Labor law must occupy an entire floor by itself.", "question": "If probate is assigned to the middle floor along with exactly two other departments, then which one of the following must be true?", "options": [ "A) Family law is assigned to the floor immediately above health law.", "B) Family law is assigned to the floor immediately below labor law.", "C) Family law is assigned to the same floor as securities.", "D) Probate is assigned to the same floor as health law.", "E) Probate is assigned to the same floor as injury law." ], "answer": "C" }, { "id": "ar_lsat_200912_1-G_2_6", "context": "A museum curator is arranging seven photographs—Fence, Gardenias, Hibiscus, Irises, Katydid, Lotus, and Magnolia—on a gallery wall in accordance with the photographer's requirements. The photographs are to be hung along the wall in a row, in seven positions sequentially numbered from first to seventh. The photographer's requirements are as follows: Gardenias must be immediately before Katydid. Hibiscus must be somewhere before Katydid but cannot be the first photograph. Irises and Lotus must be next to one another. Magnolia must be one of the first three photographs. Fence must be either first or seventh.", "question": "Which one of the following could be the positions, from first to seventh, in which the photographs are hung?", "options": [ "A) Fence, Hibiscus, Gardenias, Magnolia, Katydid, Irises, Lotus", "B) Hibiscus, Magnolia, Gardenias, Katydid, Irises, Lotus, Fence", "C) Irises, Lotus, Magnolia, Hibiscus, Gardenias, Katydid, Fence", "D) Lotus, Magnolia, Irises, Hibiscus, Gardenias, Katydid, Fence", "E) Magnolia, Fence, Hibiscus, Gardenias, Katydid, Lotus, Irises" ], "answer": "C" }, { "id": "ar_lsat_200912_1-G_2_7", "context": "A museum curator is arranging seven photographs—Fence, Gardenias, Hibiscus, Irises, Katydid, Lotus, and Magnolia—on a gallery wall in accordance with the photographer's requirements. The photographs are to be hung along the wall in a row, in seven positions sequentially numbered from first to seventh. The photographer's requirements are as follows: Gardenias must be immediately before Katydid. Hibiscus must be somewhere before Katydid but cannot be the first photograph. Irises and Lotus must be next to one another. Magnolia must be one of the first three photographs. Fence must be either first or seventh.", "question": "If Irises is immediately before Gardenias, which one of the following could be true?", "options": [ "A) Gardenias is fourth.", "B) Hibiscus is fourth.", "C) Irises is third.", "D) Lotus is second.", "E) Magnolia is third." ], "answer": "E" }, { "id": "ar_lsat_200912_1-G_2_8", "context": "A museum curator is arranging seven photographs—Fence, Gardenias, Hibiscus, Irises, Katydid, Lotus, and Magnolia—on a gallery wall in accordance with the photographer's requirements. The photographs are to be hung along the wall in a row, in seven positions sequentially numbered from first to seventh. The photographer's requirements are as follows: Gardenias must be immediately before Katydid. Hibiscus must be somewhere before Katydid but cannot be the first photograph. Irises and Lotus must be next to one another. Magnolia must be one of the first three photographs. Fence must be either first or seventh.", "question": "Where each photograph is hung is fully determined if which one of the following is true?", "options": [ "A) Gardenias is fourth.", "B) Hibiscus is second.", "C) Irises is second.", "D) Lotus is first.", "E) Magnolia is third." ], "answer": "D" }, { "id": "ar_lsat_200912_1-G_2_9", "context": "A museum curator is arranging seven photographs—Fence, Gardenias, Hibiscus, Irises, Katydid, Lotus, and Magnolia—on a gallery wall in accordance with the photographer's requirements. The photographs are to be hung along the wall in a row, in seven positions sequentially numbered from first to seventh. The photographer's requirements are as follows: Gardenias must be immediately before Katydid. Hibiscus must be somewhere before Katydid but cannot be the first photograph. Irises and Lotus must be next to one another. Magnolia must be one of the first three photographs. Fence must be either first or seventh.", "question": "If Magnolia is second, which one of the following CANNOT be true?", "options": [ "A) Hibiscus is third.", "B) Hibiscus is fourth.", "C) Hibiscus is fifth.", "D) Gardenias is fourth.", "E) Gardenias is sixth." ], "answer": "B" }, { "id": "ar_lsat_200912_1-G_2_10", "context": "A museum curator is arranging seven photographs—Fence, Gardenias, Hibiscus, Irises, Katydid, Lotus, and Magnolia—on a gallery wall in accordance with the photographer's requirements. The photographs are to be hung along the wall in a row, in seven positions sequentially numbered from first to seventh. The photographer's requirements are as follows: Gardenias must be immediately before Katydid. Hibiscus must be somewhere before Katydid but cannot be the first photograph. Irises and Lotus must be next to one another. Magnolia must be one of the first three photographs. Fence must be either first or seventh.", "question": "Which one of the following, if substituted for the condition that Hibiscus must be hung somewhere before Katydid but cannot be the first photograph, would have the same effect in determining the arrangement of the photographs?", "options": [ "A) If Fence is seventh, Hibiscus is second.", "B) Gardenias is somewhere after Hibiscus, and either Fence or Magnolia is first.", "C) Hibiscus must be somewhere between the first and sixth photographs.", "D) Unless Hibiscus is second, it must be somewhere between Magnolia and Gardenias.", "E) Katydid is somewhere after Hibiscus, which must be somewhere after Fence." ], "answer": "D" }, { "id": "ar_lsat_200912_1-G_3_11", "context": "Alicia will take exactly four courses this semester. She must choose from the following seven courses—Geography, Japanese, Macroeconomics, Psychology, Russian, Statistics (which is offered twice, once each on Tuesdays at 9 A.M. and 3 P.M.), and World History. No one is allowed to take any course more than once per semester. Because of university requirements and time conflicts, the following restrictions apply to Alicia's choices: She must take Japanese if she does not take Russian. She cannot take Japanese if she takes Macroeconomics. She cannot take World History if she takes Statistics at 9 A.M. She must take Statistics at 9 A.M. if she takes Psychology. She must take either Geography or World History but cannot take both.", "question": "Which one of the following could be the list of the four courses Alicia takes?", "options": [ "A) Geography, Japanese, Psychology, Russian", "B) Geography, Macroeconomics, Psychology, Statistics", "C) Geography, Japanese, Macroeconomics, Russian", "D) Geography, Psychology, Russian, Statistics", "E) Macroeconomics, Psychology, Russian, Statistics" ], "answer": "D" }, { "id": "ar_lsat_200912_1-G_3_12", "context": "Alicia will take exactly four courses this semester. She must choose from the following seven courses—Geography, Japanese, Macroeconomics, Psychology, Russian, Statistics (which is offered twice, once each on Tuesdays at 9 A.M. and 3 P.M.), and World History. No one is allowed to take any course more than once per semester. Because of university requirements and time conflicts, the following restrictions apply to Alicia's choices: She must take Japanese if she does not take Russian. She cannot take Japanese if she takes Macroeconomics. She cannot take World History if she takes Statistics at 9 A.M. She must take Statistics at 9 A.M. if she takes Psychology. She must take either Geography or World History but cannot take both.", "question": "Which one of the following could be an accurate list of three of the courses Alicia takes?", "options": [ "A) Geography, Statistics, World History", "B) Japanese, Macroeconomics, Statistics", "C) Japanese, Psychology, World History", "D) Psychology, Russian, World History", "E) Russian, Statistics, World History" ], "answer": "E" }, { "id": "ar_lsat_200912_1-G_3_13", "context": "Alicia will take exactly four courses this semester. She must choose from the following seven courses—Geography, Japanese, Macroeconomics, Psychology, Russian, Statistics (which is offered twice, once each on Tuesdays at 9 A.M. and 3 P.M.), and World History. No one is allowed to take any course more than once per semester. Because of university requirements and time conflicts, the following restrictions apply to Alicia's choices: She must take Japanese if she does not take Russian. She cannot take Japanese if she takes Macroeconomics. She cannot take World History if she takes Statistics at 9 A.M. She must take Statistics at 9 A.M. if she takes Psychology. She must take either Geography or World History but cannot take both.", "question": "Which courses Alicia takes is fully determined if she takes Russian and which one of the following?", "options": [ "A) World History", "B) Statistics", "C) Psychology", "D) Macroeconomics", "E) Japanese" ], "answer": "C" }, { "id": "ar_lsat_200912_1-G_3_14", "context": "Alicia will take exactly four courses this semester. She must choose from the following seven courses—Geography, Japanese, Macroeconomics, Psychology, Russian, Statistics (which is offered twice, once each on Tuesdays at 9 A.M. and 3 P.M.), and World History. No one is allowed to take any course more than once per semester. Because of university requirements and time conflicts, the following restrictions apply to Alicia's choices: She must take Japanese if she does not take Russian. She cannot take Japanese if she takes Macroeconomics. She cannot take World History if she takes Statistics at 9 A.M. She must take Statistics at 9 A.M. if she takes Psychology. She must take either Geography or World History but cannot take both.", "question": "Alicia could take Statistics at either of the available times if she takes which one of the following pairs of courses?", "options": [ "A) Geography and Japanese", "B) Geography and Psychology", "C) Japanese and World History", "D) Psychology and Russian", "E) Russian and World History" ], "answer": "A" }, { "id": "ar_lsat_200912_1-G_3_15", "context": "Alicia will take exactly four courses this semester. She must choose from the following seven courses—Geography, Japanese, Macroeconomics, Psychology, Russian, Statistics (which is offered twice, once each on Tuesdays at 9 A.M. and 3 P.M.), and World History. No one is allowed to take any course more than once per semester. Because of university requirements and time conflicts, the following restrictions apply to Alicia's choices: She must take Japanese if she does not take Russian. She cannot take Japanese if she takes Macroeconomics. She cannot take World History if she takes Statistics at 9 A.M. She must take Statistics at 9 A.M. if she takes Psychology. She must take either Geography or World History but cannot take both.", "question": "If Alicia takes Statistics at 3 P.M. and Geography, then which one of the following courses must she also take?", "options": [ "A) Japanese", "B) Macroeconomics", "C) Psychology", "D) Russian", "E) World History" ], "answer": "D" }, { "id": "ar_lsat_200912_1-G_3_16", "context": "Alicia will take exactly four courses this semester. She must choose from the following seven courses—Geography, Japanese, Macroeconomics, Psychology, Russian, Statistics (which is offered twice, once each on Tuesdays at 9 A.M. and 3 P.M.), and World History. No one is allowed to take any course more than once per semester. Because of university requirements and time conflicts, the following restrictions apply to Alicia's choices: She must take Japanese if she does not take Russian. She cannot take Japanese if she takes Macroeconomics. She cannot take World History if she takes Statistics at 9 A.M. She must take Statistics at 9 A.M. if she takes Psychology. She must take either Geography or World History but cannot take both.", "question": "Suppose that Alicia must take Statistics if she takes Psychology, but rather than being restricted to taking Statistics at 9 A.M. she can take it at either 9 A.M. or at 3 P.M. If all the other restrictions remain the same, then which one of the following could be the list of the four courses Alicia takes?", "options": [ "A) Psychology, Russian, Statistics, World History", "B) Macroeconomics, Psychology, Statistics, World History", "C) Macroeconomics, Psychology, Russian, World History", "D) Geography, Psychology, Russian, World History", "E) Geography, Macroeconomics, Russian, World History" ], "answer": "A" }, { "id": "ar_lsat_200912_1-G_4_17", "context": "An organization will hold its first six annual meetings in exactly six cities—Los Angeles, Montreal, New York, Toronto, Vancouver, and Washington—using each city only once. The following conditions govern the order in which the cities are used: Los Angeles must be used in some year after the year in which Toronto is used. Vancouver must be used either immediately before or immediately after Washington. The meeting in Toronto must be separated from the meeting in Montreal by meetings in exactly two other cities. The meeting in Vancouver must be separated from the meeting in Los Angeles by meetings in exactly two other cities.", "question": "Which one of the following lists the cities in an order in which they could be used for the meetings, from the first year through the sixth?", "options": [ "A) Toronto, Vancouver, Washington, Montreal, Los Angeles, New York", "B) Vancouver, Washington, Montreal, Los Angeles, New York, Toronto", "C) Vancouver, Washington, Toronto, New York, Los Angeles, Montreal", "D) Washington, Montreal, Vancouver, New York, Toronto, Los Angeles", "E) Washington, Vancouver, New York, Toronto, Los Angeles, Montreal" ], "answer": "A" }, { "id": "ar_lsat_200912_1-G_4_18", "context": "An organization will hold its first six annual meetings in exactly six cities—Los Angeles, Montreal, New York, Toronto, Vancouver, and Washington—using each city only once. The following conditions govern the order in which the cities are used: Los Angeles must be used in some year after the year in which Toronto is used. Vancouver must be used either immediately before or immediately after Washington. The meeting in Toronto must be separated from the meeting in Montreal by meetings in exactly two other cities. The meeting in Vancouver must be separated from the meeting in Los Angeles by meetings in exactly two other cities.", "question": "Which one of the following must be true?", "options": [ "A) Toronto is used in the first year.", "B) Montreal is used in the fourth year.", "C) Toronto is used at some time before Montreal is used.", "D) New York is used either immediately before or immediately after Vancouver.", "E) The meeting in New York is separated from the meeting in Washington by meetings in exactly two other cities." ], "answer": "E" }, { "id": "ar_lsat_200912_1-G_4_19", "context": "An organization will hold its first six annual meetings in exactly six cities—Los Angeles, Montreal, New York, Toronto, Vancouver, and Washington—using each city only once. The following conditions govern the order in which the cities are used: Los Angeles must be used in some year after the year in which Toronto is used. Vancouver must be used either immediately before or immediately after Washington. The meeting in Toronto must be separated from the meeting in Montreal by meetings in exactly two other cities. The meeting in Vancouver must be separated from the meeting in Los Angeles by meetings in exactly two other cities.", "question": "There is exactly one possible order in which the cities are used if which one of the following is true?", "options": [ "A) Los Angeles is used in the fifth year.", "B) Montreal is used in the sixth year.", "C) New York is used in the fifth year.", "D) Vancouver is used in the first year.", "E) Washington is used in the second year." ], "answer": "D" }, { "id": "ar_lsat_200912_1-G_4_20", "context": "An organization will hold its first six annual meetings in exactly six cities—Los Angeles, Montreal, New York, Toronto, Vancouver, and Washington—using each city only once. The following conditions govern the order in which the cities are used: Los Angeles must be used in some year after the year in which Toronto is used. Vancouver must be used either immediately before or immediately after Washington. The meeting in Toronto must be separated from the meeting in Montreal by meetings in exactly two other cities. The meeting in Vancouver must be separated from the meeting in Los Angeles by meetings in exactly two other cities.", "question": "Which one of the following is a complete and accurate list of the years in which Washington could be used?", "options": [ "A) 1, 3, 5", "B) 2, 3, 4, 5", "C) 2, 3, 4, 6", "D) 1, 2, 4, 6", "E) 1, 2, 3, 4, 5, 6" ], "answer": "E" }, { "id": "ar_lsat_200912_1-G_4_21", "context": "An organization will hold its first six annual meetings in exactly six cities—Los Angeles, Montreal, New York, Toronto, Vancouver, and Washington—using each city only once. The following conditions govern the order in which the cities are used: Los Angeles must be used in some year after the year in which Toronto is used. Vancouver must be used either immediately before or immediately after Washington. The meeting in Toronto must be separated from the meeting in Montreal by meetings in exactly two other cities. The meeting in Vancouver must be separated from the meeting in Los Angeles by meetings in exactly two other cities.", "question": "If Montreal is used in the first year, which one of the following CANNOT be true?", "options": [ "A) Washington is used in the third year.", "B) Vancouver is used in the third year.", "C) Toronto is used in the fourth year.", "D) New York is used in the fifth year.", "E) Los Angeles is used in the third year." ], "answer": "E" }, { "id": "ar_lsat_200912_1-G_4_22", "context": "An organization will hold its first six annual meetings in exactly six cities—Los Angeles, Montreal, New York, Toronto, Vancouver, and Washington—using each city only once. The following conditions govern the order in which the cities are used: Los Angeles must be used in some year after the year in which Toronto is used. Vancouver must be used either immediately before or immediately after Washington. The meeting in Toronto must be separated from the meeting in Montreal by meetings in exactly two other cities. The meeting in Vancouver must be separated from the meeting in Los Angeles by meetings in exactly two other cities.", "question": "Which one of the following could be true?", "options": [ "A) Los Angeles is used in the first year.", "B) New York is used in the second year.", "C) Montreal is used in the third year.", "D) Vancouver is used in the fourth year.", "E) Toronto is used in the sixth year." ], "answer": "B" }, { "id": "ar_lsat_200912_1-G_4_23", "context": "An organization will hold its first six annual meetings in exactly six cities—Los Angeles, Montreal, New York, Toronto, Vancouver, and Washington—using each city only once. The following conditions govern the order in which the cities are used: Los Angeles must be used in some year after the year in which Toronto is used. Vancouver must be used either immediately before or immediately after Washington. The meeting in Toronto must be separated from the meeting in Montreal by meetings in exactly two other cities. The meeting in Vancouver must be separated from the meeting in Los Angeles by meetings in exactly two other cities.", "question": "Which one of the following must be false?", "options": [ "A) Los Angeles is used either immediately before or immediately after New York.", "B) Los Angeles is used either immediately before or immediately after Washington.", "C) New York is used either immediately before or immediately after Toronto.", "D) Toronto is used either immediately before or immediately after Vancouver.", "E) Toronto is used either immediately before or immediately after Washington." ], "answer": "B" }, { "id": "ar_lsat_201006_2-G_1_1", "context": "A community center will host six arts-and-crafts workshops—Jewelry, Kite-making, Needlepoint, Quilting, Rug-making, and Scrapbooking. The workshops will be given on three consecutive days: Wednesday, Thursday, and Friday. Each workshop will be given once, and exactly two workshops will be given per day, one in the morning and one in the afternoon. The schedule for the workshops is subject to the following constraints: Jewelry must be given in the morning, on the same day as either Kite-making or Quilting. Rug-making must be given in the afternoon, on the same day as either Needlepoint or Scrapbooking. Quilting must be given on an earlier day than both Kite-making and Needlepoint.", "question": "Which one of the following is an acceptable schedule for the workshops, with each day's workshops listed in the order in which they are to be given?", "options": [ "A) Wednesday: Jewelry, Kite-making Thursday: Quilting, Scrapbooking Friday: Needlepoint, Rug-making", "B) Wednesday: Jewelry, Quilting Thursday: Kite-making, Needlepoint Friday: Scrapbooking, Rug-making", "C) Wednesday: Quilting, Needlepoint Thursday: Scrapbooking, Rug-making Friday: Jewelry, Kite-making", "D) Wednesday: Quilting, Scrapbooking Thursday: Jewelry, Kite-making Friday: Rug-making, Needlepoint", "E) Wednesday: Scrapbooking, Rug-making Thursday: Quilting, Jewelry Friday: Kite-making, Needlepoint" ], "answer": "B" }, { "id": "ar_lsat_201006_2-G_1_2", "context": "A community center will host six arts-and-crafts workshops—Jewelry, Kite-making, Needlepoint, Quilting, Rug-making, and Scrapbooking. The workshops will be given on three consecutive days: Wednesday, Thursday, and Friday. Each workshop will be given once, and exactly two workshops will be given per day, one in the morning and one in the afternoon. The schedule for the workshops is subject to the following constraints: Jewelry must be given in the morning, on the same day as either Kite-making or Quilting. Rug-making must be given in the afternoon, on the same day as either Needlepoint or Scrapbooking. Quilting must be given on an earlier day than both Kite-making and Needlepoint.", "question": "Which one of the following workshops CANNOT be given on Thursday morning?", "options": [ "A) Jewelry", "B) Kite-making", "C) Needlepoint", "D) Quilting", "E) Scrapbooking" ], "answer": "D" }, { "id": "ar_lsat_201006_2-G_1_3", "context": "A community center will host six arts-and-crafts workshops—Jewelry, Kite-making, Needlepoint, Quilting, Rug-making, and Scrapbooking. The workshops will be given on three consecutive days: Wednesday, Thursday, and Friday. Each workshop will be given once, and exactly two workshops will be given per day, one in the morning and one in the afternoon. The schedule for the workshops is subject to the following constraints: Jewelry must be given in the morning, on the same day as either Kite-making or Quilting. Rug-making must be given in the afternoon, on the same day as either Needlepoint or Scrapbooking. Quilting must be given on an earlier day than both Kite-making and Needlepoint.", "question": "Which one of the following pairs of workshops CANNOT be the ones given on Wednesday morning and Wednesday afternoon, respectively?", "options": [ "A) Jewelry, Kite-making", "B) Jewelry, Quilting", "C) Quilting, Scrapbooking", "D) Scrapbooking, Quilting", "E) Scrapbooking, Rug-making" ], "answer": "A" }, { "id": "ar_lsat_201006_2-G_1_4", "context": "A community center will host six arts-and-crafts workshops—Jewelry, Kite-making, Needlepoint, Quilting, Rug-making, and Scrapbooking. The workshops will be given on three consecutive days: Wednesday, Thursday, and Friday. Each workshop will be given once, and exactly two workshops will be given per day, one in the morning and one in the afternoon. The schedule for the workshops is subject to the following constraints: Jewelry must be given in the morning, on the same day as either Kite-making or Quilting. Rug-making must be given in the afternoon, on the same day as either Needlepoint or Scrapbooking. Quilting must be given on an earlier day than both Kite-making and Needlepoint.", "question": "If Kite-making is given on Friday morning, then which one of the following could be true?", "options": [ "A) Jewelry is given on Thursday morning.", "B) Needlepoint is given on Thursday afternoon.", "C) Quilting is given on Wednesday morning.", "D) Rug-making is given on Friday afternoon.", "E) Scrapbooking is given on Wednesday afternoon." ], "answer": "A" }, { "id": "ar_lsat_201006_2-G_1_5", "context": "A community center will host six arts-and-crafts workshops—Jewelry, Kite-making, Needlepoint, Quilting, Rug-making, and Scrapbooking. The workshops will be given on three consecutive days: Wednesday, Thursday, and Friday. Each workshop will be given once, and exactly two workshops will be given per day, one in the morning and one in the afternoon. The schedule for the workshops is subject to the following constraints: Jewelry must be given in the morning, on the same day as either Kite-making or Quilting. Rug-making must be given in the afternoon, on the same day as either Needlepoint or Scrapbooking. Quilting must be given on an earlier day than both Kite-making and Needlepoint.", "question": "If Quilting is given in the morning, then which one of the following workshops CANNOT be given on Thursday?", "options": [ "A) Jewelry", "B) Kite-making", "C) Needlepoint", "D) Rug-making", "E) Scrapbooking" ], "answer": "E" }, { "id": "ar_lsat_201006_2-G_1_6", "context": "A community center will host six arts-and-crafts workshops—Jewelry, Kite-making, Needlepoint, Quilting, Rug-making, and Scrapbooking. The workshops will be given on three consecutive days: Wednesday, Thursday, and Friday. Each workshop will be given once, and exactly two workshops will be given per day, one in the morning and one in the afternoon. The schedule for the workshops is subject to the following constraints: Jewelry must be given in the morning, on the same day as either Kite-making or Quilting. Rug-making must be given in the afternoon, on the same day as either Needlepoint or Scrapbooking. Quilting must be given on an earlier day than both Kite-making and Needlepoint.", "question": "How many of the workshops are there that could be the one given on Wednesday morning?", "options": [ "A) one", "B) two", "C) three", "D) four", "E) five" ], "answer": "C" }, { "id": "ar_lsat_201006_2-G_2_7", "context": "Exactly six actors—Geyer, Henson, Jhalani, Lin, Mitchell, and Paredes—will appear one after another in the opening credits of a television program. Their contracts contain certain restrictions that affect the order in which they can appear. Given these restrictions, the order in which the actors appear, from first to sixth, must conform to the following: Both Lin and Mitchell appear earlier than Henson. Both Lin and Paredes appear earlier than Jhalani. If Mitchell appears earlier than Paredes, then Henson appears earlier than Geyer. Geyer does not appear last.", "question": "Which one of the following could be the order, from first to last, in which the actors appear?", "options": [ "A) Geyer, Lin, Jhalani, Paredes, Mitchell, Henson", "B) Geyer, Mitchell, Paredes, Lin, Henson, Jhalani", "C) Henson, Lin, Paredes, Jhalani, Geyer, Mitchell", "D) Lin, Paredes, Mitchell, Henson, Jhalani, Geyer", "E) Paredes, Mitchell, Lin, Jhalani, Geyer, Henson" ], "answer": "E" }, { "id": "ar_lsat_201006_2-G_2_8", "context": "Exactly six actors—Geyer, Henson, Jhalani, Lin, Mitchell, and Paredes—will appear one after another in the opening credits of a television program. Their contracts contain certain restrictions that affect the order in which they can appear. Given these restrictions, the order in which the actors appear, from first to sixth, must conform to the following: Both Lin and Mitchell appear earlier than Henson. Both Lin and Paredes appear earlier than Jhalani. If Mitchell appears earlier than Paredes, then Henson appears earlier than Geyer. Geyer does not appear last.", "question": "Which one of the following CANNOT be true?", "options": [ "A) Henson appears earlier than Geyer.", "B) Henson appears sixth.", "C) Lin appears fifth.", "D) Paredes appears earlier than Mitchell.", "E) Paredes appears second." ], "answer": "C" }, { "id": "ar_lsat_201006_2-G_2_9", "context": "Exactly six actors—Geyer, Henson, Jhalani, Lin, Mitchell, and Paredes—will appear one after another in the opening credits of a television program. Their contracts contain certain restrictions that affect the order in which they can appear. Given these restrictions, the order in which the actors appear, from first to sixth, must conform to the following: Both Lin and Mitchell appear earlier than Henson. Both Lin and Paredes appear earlier than Jhalani. If Mitchell appears earlier than Paredes, then Henson appears earlier than Geyer. Geyer does not appear last.", "question": "Exactly how many of the actors are there any one of whom could appear sixth?", "options": [ "A) 5", "B) 4", "C) 3", "D) 2", "E) 1" ], "answer": "D" }, { "id": "ar_lsat_201006_2-G_2_10", "context": "Exactly six actors—Geyer, Henson, Jhalani, Lin, Mitchell, and Paredes—will appear one after another in the opening credits of a television program. Their contracts contain certain restrictions that affect the order in which they can appear. Given these restrictions, the order in which the actors appear, from first to sixth, must conform to the following: Both Lin and Mitchell appear earlier than Henson. Both Lin and Paredes appear earlier than Jhalani. If Mitchell appears earlier than Paredes, then Henson appears earlier than Geyer. Geyer does not appear last.", "question": "If Jhalani appears earlier than Mitchell, then which one of the following could be the order in which the other four actors appear, from earliest to latest?", "options": [ "A) Geyer, Lin, Paredes, Henson", "B) Geyer, Paredes, Henson, Lin", "C) Lin, Henson, Geyer, Paredes", "D) Lin, Paredes, Henson, Geyer", "E) Paredes, Lin, Henson, Geyer" ], "answer": "A" }, { "id": "ar_lsat_201006_2-G_2_11", "context": "Exactly six actors—Geyer, Henson, Jhalani, Lin, Mitchell, and Paredes—will appear one after another in the opening credits of a television program. Their contracts contain certain restrictions that affect the order in which they can appear. Given these restrictions, the order in which the actors appear, from first to sixth, must conform to the following: Both Lin and Mitchell appear earlier than Henson. Both Lin and Paredes appear earlier than Jhalani. If Mitchell appears earlier than Paredes, then Henson appears earlier than Geyer. Geyer does not appear last.", "question": "If Lin appears immediately before Geyer, then which one of the following must be true?", "options": [ "A) Geyer appears no later than third.", "B) Henson appears last.", "C) Lin appears no later than third.", "D) Mitchell appears earlier than Geyer.", "E) Paredes appears first." ], "answer": "C" }, { "id": "ar_lsat_201006_2-G_2_12", "context": "Exactly six actors—Geyer, Henson, Jhalani, Lin, Mitchell, and Paredes—will appear one after another in the opening credits of a television program. Their contracts contain certain restrictions that affect the order in which they can appear. Given these restrictions, the order in which the actors appear, from first to sixth, must conform to the following: Both Lin and Mitchell appear earlier than Henson. Both Lin and Paredes appear earlier than Jhalani. If Mitchell appears earlier than Paredes, then Henson appears earlier than Geyer. Geyer does not appear last.", "question": "If Mitchell appears first, then which one of the following must be true?", "options": [ "A) Geyer appears fifth.", "B) Henson appears third.", "C) Jhalani appears sixth.", "D) Lin appears second.", "E) Paredes appears fourth." ], "answer": "C" }, { "id": "ar_lsat_201006_2-G_3_13", "context": "Over the course of one day, a landscaper will use a truck to haul exactly seven loads—three loads of mulch and four loads of stone. The truck's cargo bed will be cleaned in between carrying any two loads of different materials. To meet the landscaper's needs as efficiently as possible, the following constraints apply: The cargo bed cannot be cleaned more than three times. The fifth load must be mulch.", "question": "Which one of the following is a pair of loads that can both be mulch?", "options": [ "A) the first and the third", "B) the second and the third", "C) the second and the sixth", "D) the third and the sixth", "E) the fourth and the sixth" ], "answer": "E" }, { "id": "ar_lsat_201006_2-G_3_14", "context": "Over the course of one day, a landscaper will use a truck to haul exactly seven loads—three loads of mulch and four loads of stone. The truck's cargo bed will be cleaned in between carrying any two loads of different materials. To meet the landscaper's needs as efficiently as possible, the following constraints apply: The cargo bed cannot be cleaned more than three times. The fifth load must be mulch.", "question": "Which one of the following must be true?", "options": [ "A) The second load is stone.", "B) The first and second loads are the same material.", "C) The second and third loads are different materials.", "D) At least two loads of mulch are hauled consecutively.", "E) At least three loads of stone are hauled consecutively." ], "answer": "D" }, { "id": "ar_lsat_201006_2-G_3_15", "context": "Over the course of one day, a landscaper will use a truck to haul exactly seven loads—three loads of mulch and four loads of stone. The truck's cargo bed will be cleaned in between carrying any two loads of different materials. To meet the landscaper's needs as efficiently as possible, the following constraints apply: The cargo bed cannot be cleaned more than three times. The fifth load must be mulch.", "question": "If the third load is mulch, which one of the following must be true?", "options": [ "A) The sixth load is a different material than the seventh load.", "B) The first load is a different material than the second load.", "C) The seventh load is mulch.", "D) The sixth load is mulch.", "E) The first load is stone." ], "answer": "E" }, { "id": "ar_lsat_201006_2-G_3_16", "context": "Over the course of one day, a landscaper will use a truck to haul exactly seven loads—three loads of mulch and four loads of stone. The truck's cargo bed will be cleaned in between carrying any two loads of different materials. To meet the landscaper's needs as efficiently as possible, the following constraints apply: The cargo bed cannot be cleaned more than three times. The fifth load must be mulch.", "question": "If the cargo bed is cleaned exactly twice, which one of the following must be true?", "options": [ "A) The second load is stone.", "B) The third load is mulch.", "C) The third load is stone.", "D) The sixth load is mulch.", "E) The seventh load is mulch." ], "answer": "A" }, { "id": "ar_lsat_201006_2-G_3_17", "context": "Over the course of one day, a landscaper will use a truck to haul exactly seven loads—three loads of mulch and four loads of stone. The truck's cargo bed will be cleaned in between carrying any two loads of different materials. To meet the landscaper's needs as efficiently as possible, the following constraints apply: The cargo bed cannot be cleaned more than three times. The fifth load must be mulch.", "question": "If no more than two loads of the same material are hauled consecutively, then which one of the following could be true?", "options": [ "A) The first load is stone.", "B) The fourth load is stone.", "C) The third load is mulch.", "D) The sixth load is mulch.", "E) The seventh load is mulch." ], "answer": "B" }, { "id": "ar_lsat_201006_2-G_4_18", "context": "A travel magazine has hired six interns—Farber, Gombarick, Hall, Jackson, Kanze, and Lha—to assist in covering three stories—Romania, Spain, and Tuscany. Each intern will be trained either as a photographer's assistant or as a writer's assistant. Each story is assigned a team of two interns—one photographer's assistant and one writer's assistant—in accordance with the following conditions: Gombarick and Lha will be trained in the same field. Farber and Kanze will be trained in different fields. Hall will be trained as a photographer's assistant. Jackson is assigned to Tuscany. Kanze is not assigned to Spain.", "question": "Which one of the following could be an acceptable assignment of photographer's assistants to stories?", "options": [ "A) Romania: Farber Spain: Hall Tuscany: Jackson", "B) Romania: Gombarick Spain: Hall Tuscany: Farber", "C) Romania: Gombarick Spain: Hall Tuscany: Lha", "D) Romania: Gombarick Spain: Lha Tuscany: Kanze", "E) Romania: Hall Spain: Kanze Tuscany: Jackson" ], "answer": "A" }, { "id": "ar_lsat_201006_2-G_4_19", "context": "A travel magazine has hired six interns—Farber, Gombarick, Hall, Jackson, Kanze, and Lha—to assist in covering three stories—Romania, Spain, and Tuscany. Each intern will be trained either as a photographer's assistant or as a writer's assistant. Each story is assigned a team of two interns—one photographer's assistant and one writer's assistant—in accordance with the following conditions: Gombarick and Lha will be trained in the same field. Farber and Kanze will be trained in different fields. Hall will be trained as a photographer's assistant. Jackson is assigned to Tuscany. Kanze is not assigned to Spain.", "question": "If Farber is assigned to Romania, then which one of the following must be true?", "options": [ "A) Gombarick is assigned to Spain.", "B) Hall is assigned to Spain.", "C) Kanze is assigned to Tuscany.", "D) Lha is assigned to Spain.", "E) Lha is assigned to Tuscany." ], "answer": "B" }, { "id": "ar_lsat_201006_2-G_4_20", "context": "A travel magazine has hired six interns—Farber, Gombarick, Hall, Jackson, Kanze, and Lha—to assist in covering three stories—Romania, Spain, and Tuscany. Each intern will be trained either as a photographer's assistant or as a writer's assistant. Each story is assigned a team of two interns—one photographer's assistant and one writer's assistant—in accordance with the following conditions: Gombarick and Lha will be trained in the same field. Farber and Kanze will be trained in different fields. Hall will be trained as a photographer's assistant. Jackson is assigned to Tuscany. Kanze is not assigned to Spain.", "question": "If Farber and Hall are assigned to the same story as each other, then which one of the following could be true?", "options": [ "A) Farber is assigned to Tuscany.", "B) Gombarick is assigned to Romania.", "C) Hall is assigned to Romania.", "D) Kanze is assigned to Tuscany.", "E) Lha is assigned to Spain." ], "answer": "B" }, { "id": "ar_lsat_201006_2-G_4_21", "context": "A travel magazine has hired six interns—Farber, Gombarick, Hall, Jackson, Kanze, and Lha—to assist in covering three stories—Romania, Spain, and Tuscany. Each intern will be trained either as a photographer's assistant or as a writer's assistant. Each story is assigned a team of two interns—one photographer's assistant and one writer's assistant—in accordance with the following conditions: Gombarick and Lha will be trained in the same field. Farber and Kanze will be trained in different fields. Hall will be trained as a photographer's assistant. Jackson is assigned to Tuscany. Kanze is not assigned to Spain.", "question": "If Farber is a writer's assistant, then which one of the following pairs could be the team of interns assigned to Romania?", "options": [ "A) Farber and Gombarick", "B) Gombarick and Hall", "C) Hall and Kanze", "D) Kanze and Lha", "E) Lha and Hall" ], "answer": "D" }, { "id": "ar_lsat_201006_2-G_4_22", "context": "A travel magazine has hired six interns—Farber, Gombarick, Hall, Jackson, Kanze, and Lha—to assist in covering three stories—Romania, Spain, and Tuscany. Each intern will be trained either as a photographer's assistant or as a writer's assistant. Each story is assigned a team of two interns—one photographer's assistant and one writer's assistant—in accordance with the following conditions: Gombarick and Lha will be trained in the same field. Farber and Kanze will be trained in different fields. Hall will be trained as a photographer's assistant. Jackson is assigned to Tuscany. Kanze is not assigned to Spain.", "question": "If Gombarick and Kanze are assigned to the same story as each other, then which one of the following could be true?", "options": [ "A) Farber is assigned to Romania.", "B) Gombarick is assigned to Spain.", "C) Hall is assigned to Romania.", "D) Kanze is assigned to Tuscany.", "E) Lha is assigned to Spain." ], "answer": "E" }, { "id": "ar_lsat_201006_2-G_4_23", "context": "A travel magazine has hired six interns—Farber, Gombarick, Hall, Jackson, Kanze, and Lha—to assist in covering three stories—Romania, Spain, and Tuscany. Each intern will be trained either as a photographer's assistant or as a writer's assistant. Each story is assigned a team of two interns—one photographer's assistant and one writer's assistant—in accordance with the following conditions: Gombarick and Lha will be trained in the same field. Farber and Kanze will be trained in different fields. Hall will be trained as a photographer's assistant. Jackson is assigned to Tuscany. Kanze is not assigned to Spain.", "question": "Which one of the following interns CANNOT be assigned to Tuscany?", "options": [ "A) Farber", "B) Gombarick", "C) Hall", "D) Kanze", "E) Lha" ], "answer": "C" }, { "id": "ar_lsat_201010_3-G_1_1", "context": "Exactly six workers—Faith, Gus, Hannah, Juan, Kenneth, and Lisa—will travel to a business convention in two cars—car 1 and car 2. Each car must carry at least two of the workers, one of whom will be assigned to drive. For the entire trip, the workers will comply with an assignment that also meets the following constraints: Either Faith or Gus must drive the car in which Hannah travels. Either Faith or Kenneth must drive the car in which Juan travels. Gus must travel in the same car as Lisa.", "question": "Which one of the following is a possible assignment of the workers to the cars?", "options": [ "A) car 1: Faith (driver), Hannah, and Juan car 2: Gus (driver), Kenneth, and Lisa", "B) car 1: Faith (driver), Hannah, and Kenneth car 2: Lisa (driver), Gus, and Juan", "C) car 1: Faith (driver), Juan, Kenneth, and Lisa car 2: Gus (driver) and Hannah", "D) car 1: Faith (driver) and Juan car 2: Kenneth (driver), Gus, Hannah, and Lisa", "E) car 1: Gus (driver), Hannah, and Lisa car 2: Juan (driver), Faith, and Kenneth" ], "answer": "A" }, { "id": "ar_lsat_201010_3-G_1_2", "context": "Exactly six workers—Faith, Gus, Hannah, Juan, Kenneth, and Lisa—will travel to a business convention in two cars—car 1 and car 2. Each car must carry at least two of the workers, one of whom will be assigned to drive. For the entire trip, the workers will comply with an assignment that also meets the following constraints: Either Faith or Gus must drive the car in which Hannah travels. Either Faith or Kenneth must drive the car in which Juan travels. Gus must travel in the same car as Lisa.", "question": "The two workers who drive the cars CANNOT be", "options": [ "A) Faith and Gus", "B) Faith and Kenneth", "C) Faith and Lisa", "D) Gus and Kenneth", "E) Kenneth and Lisa" ], "answer": "E" }, { "id": "ar_lsat_201010_3-G_1_3", "context": "Exactly six workers—Faith, Gus, Hannah, Juan, Kenneth, and Lisa—will travel to a business convention in two cars—car 1 and car 2. Each car must carry at least two of the workers, one of whom will be assigned to drive. For the entire trip, the workers will comply with an assignment that also meets the following constraints: Either Faith or Gus must drive the car in which Hannah travels. Either Faith or Kenneth must drive the car in which Juan travels. Gus must travel in the same car as Lisa.", "question": "If Lisa drives one of the cars, then which one of the following could be true?", "options": [ "A) Faith travels in the same car as Kenneth.", "B) Faith travels in the same car as Lisa.", "C) Gus travels in the same car as Hannah.", "D) Gus travels in the same car as Juan.", "E) Hannah travels in the same car as Lisa." ], "answer": "A" }, { "id": "ar_lsat_201010_3-G_1_4", "context": "Exactly six workers—Faith, Gus, Hannah, Juan, Kenneth, and Lisa—will travel to a business convention in two cars—car 1 and car 2. Each car must carry at least two of the workers, one of whom will be assigned to drive. For the entire trip, the workers will comply with an assignment that also meets the following constraints: Either Faith or Gus must drive the car in which Hannah travels. Either Faith or Kenneth must drive the car in which Juan travels. Gus must travel in the same car as Lisa.", "question": "If Faith travels with two other workers in car 1, and if Faith is not the driver, then the person in car 1 other than Faith and the driver must be", "options": [ "A) Gus", "B) Hannah", "C) Juan", "D) Kenneth", "E) Lisa" ], "answer": "C" }, { "id": "ar_lsat_201010_3-G_1_5", "context": "Exactly six workers—Faith, Gus, Hannah, Juan, Kenneth, and Lisa—will travel to a business convention in two cars—car 1 and car 2. Each car must carry at least two of the workers, one of whom will be assigned to drive. For the entire trip, the workers will comply with an assignment that also meets the following constraints: Either Faith or Gus must drive the car in which Hannah travels. Either Faith or Kenneth must drive the car in which Juan travels. Gus must travel in the same car as Lisa.", "question": "Which one of the following CANNOT be true?", "options": [ "A) Gus is the only person other than the driver in one of the cars.", "B) Hannah is the only person other than the driver in one of the cars.", "C) Juan is the only person other than the driver in one of the cars.", "D) Kenneth is the only person other than the driver in one of the cars.", "E) Lisa is the only person other than the driver in one of the cars." ], "answer": "D" }, { "id": "ar_lsat_201010_3-G_2_6", "context": "An archaeologist has six ancient artifacts—a figurine, a headdress, a jar, a necklace, a plaque, and a tureen—no two of which are the same age. She will order them from first (oldest) to sixth (most recent). The following has already been determined: The figurine is older than both the jar and the headdress. The necklace and the jar are both older than the tureen. Either the plaque is older than both the headdress and the necklace, or both the headdress and the necklace are older than the plaque.", "question": "Which one of the following could be the artifacts in the order of their age, from first to sixth?", "options": [ "A) figurine, headdress, jar, necklace, plaque, tureen", "B) figurine, jar, plaque, headdress, tureen, necklace", "C) figurine, necklace, plaque, headdress, jar, tureen", "D) necklace, jar, figurine, headdress, plaque, tureen", "E) plaque, tureen, figurine, necklace, jar, headdress" ], "answer": "A" }, { "id": "ar_lsat_201010_3-G_2_7", "context": "An archaeologist has six ancient artifacts—a figurine, a headdress, a jar, a necklace, a plaque, and a tureen—no two of which are the same age. She will order them from first (oldest) to sixth (most recent). The following has already been determined: The figurine is older than both the jar and the headdress. The necklace and the jar are both older than the tureen. Either the plaque is older than both the headdress and the necklace, or both the headdress and the necklace are older than the plaque.", "question": "Exactly how many of the artifacts are there any one of which could be first?", "options": [ "A) one", "B) two", "C) three", "D) four", "E) five" ], "answer": "C" }, { "id": "ar_lsat_201010_3-G_2_8", "context": "An archaeologist has six ancient artifacts—a figurine, a headdress, a jar, a necklace, a plaque, and a tureen—no two of which are the same age. She will order them from first (oldest) to sixth (most recent). The following has already been determined: The figurine is older than both the jar and the headdress. The necklace and the jar are both older than the tureen. Either the plaque is older than both the headdress and the necklace, or both the headdress and the necklace are older than the plaque.", "question": "Which one of the following artifacts CANNOT be fourth?", "options": [ "A) figurine", "B) headdress", "C) jar", "D) necklace", "E) plaque" ], "answer": "A" }, { "id": "ar_lsat_201010_3-G_2_9", "context": "An archaeologist has six ancient artifacts—a figurine, a headdress, a jar, a necklace, a plaque, and a tureen—no two of which are the same age. She will order them from first (oldest) to sixth (most recent). The following has already been determined: The figurine is older than both the jar and the headdress. The necklace and the jar are both older than the tureen. Either the plaque is older than both the headdress and the necklace, or both the headdress and the necklace are older than the plaque.", "question": "If the figurine is third, which one of the following must be second?", "options": [ "A) headdress", "B) jar", "C) necklace", "D) plaque", "E) tureen" ], "answer": "C" }, { "id": "ar_lsat_201010_3-G_2_10", "context": "An archaeologist has six ancient artifacts—a figurine, a headdress, a jar, a necklace, a plaque, and a tureen—no two of which are the same age. She will order them from first (oldest) to sixth (most recent). The following has already been determined: The figurine is older than both the jar and the headdress. The necklace and the jar are both older than the tureen. Either the plaque is older than both the headdress and the necklace, or both the headdress and the necklace are older than the plaque.", "question": "If the plaque is first, then exactly how many artifacts are there any one of which could be second?", "options": [ "A) one", "B) two", "C) three", "D) four", "E) five" ], "answer": "B" }, { "id": "ar_lsat_201010_3-G_2_11", "context": "An archaeologist has six ancient artifacts—a figurine, a headdress, a jar, a necklace, a plaque, and a tureen—no two of which are the same age. She will order them from first (oldest) to sixth (most recent). The following has already been determined: The figurine is older than both the jar and the headdress. The necklace and the jar are both older than the tureen. Either the plaque is older than both the headdress and the necklace, or both the headdress and the necklace are older than the plaque.", "question": "Which one of the following, if substituted for the information that the necklace and the jar are both older than the tureen, would have the same effect in determining the order of the artifacts?", "options": [ "A) The tureen is older than the headdress but not as old as the figurine.", "B) The figurine and the necklace are both older than the tureen.", "C) The necklace is older than the tureen if and only if the jar is.", "D) All of the artifacts except the headdress and the plaque must be older than the tureen.", "E) The plaque is older than the necklace if and only if the plaque is older than the tureen." ], "answer": "D" }, { "id": "ar_lsat_201010_3-G_3_12", "context": "The coach of a women's track team must determine which four of five runners—Quinn, Ramirez, Smith, Terrell, and Uzoma—will run in the four races of an upcoming track meet. Each of the four runners chosen will run in exactly one of the four races—the first, second, third, or fourth. The coach's selection is bound by the following constraints: If Quinn runs in the track meet, then Terrell runs in the race immediately after the race in which Quinn runs. Smith does not run in either the second race or the fourth race. If Uzoma does not run in the track meet, then Ramirez runs in the second race. If Ramirez runs in the second race, then Uzoma does not run in the track meet.", "question": "Which one of the following could be the order in which the runners run, from first to fourth?", "options": [ "A) Uzoma, Ramirez, Quinn, Terrell", "B) Terrell, Smith, Ramirez, Uzoma", "C) Smith, Ramirez, Terrell, Quinn", "D) Ramirez, Uzoma, Smith, Terrell", "E) Quinn, Terrell, Smith, Ramirez" ], "answer": "D" }, { "id": "ar_lsat_201010_3-G_3_13", "context": "The coach of a women's track team must determine which four of five runners—Quinn, Ramirez, Smith, Terrell, and Uzoma—will run in the four races of an upcoming track meet. Each of the four runners chosen will run in exactly one of the four races—the first, second, third, or fourth. The coach's selection is bound by the following constraints: If Quinn runs in the track meet, then Terrell runs in the race immediately after the race in which Quinn runs. Smith does not run in either the second race or the fourth race. If Uzoma does not run in the track meet, then Ramirez runs in the second race. If Ramirez runs in the second race, then Uzoma does not run in the track meet.", "question": "Which one of the following runners must the coach select to run in the track meet?", "options": [ "A) Quinn", "B) Ramirez", "C) Smith", "D) Terrell", "E) Uzoma" ], "answer": "D" }, { "id": "ar_lsat_201010_3-G_3_14", "context": "The coach of a women's track team must determine which four of five runners—Quinn, Ramirez, Smith, Terrell, and Uzoma—will run in the four races of an upcoming track meet. Each of the four runners chosen will run in exactly one of the four races—the first, second, third, or fourth. The coach's selection is bound by the following constraints: If Quinn runs in the track meet, then Terrell runs in the race immediately after the race in which Quinn runs. Smith does not run in either the second race or the fourth race. If Uzoma does not run in the track meet, then Ramirez runs in the second race. If Ramirez runs in the second race, then Uzoma does not run in the track meet.", "question": "The question of which runners will be chosen to run in the track meet and in what races they will run can be completely resolved if which one of the following is true?", "options": [ "A) Ramirez runs in the first race.", "B) Ramirez runs in the second race.", "C) Ramirez runs in the third race.", "D) Ramirez runs in the fourth race.", "E) Ramirez does not run in the track meet." ], "answer": "B" }, { "id": "ar_lsat_201010_3-G_3_15", "context": "The coach of a women's track team must determine which four of five runners—Quinn, Ramirez, Smith, Terrell, and Uzoma—will run in the four races of an upcoming track meet. Each of the four runners chosen will run in exactly one of the four races—the first, second, third, or fourth. The coach's selection is bound by the following constraints: If Quinn runs in the track meet, then Terrell runs in the race immediately after the race in which Quinn runs. Smith does not run in either the second race or the fourth race. If Uzoma does not run in the track meet, then Ramirez runs in the second race. If Ramirez runs in the second race, then Uzoma does not run in the track meet.", "question": "Which one of the following CANNOT be true?", "options": [ "A) Ramirez runs in the race immediately before the race in which Smith runs.", "B) Smith runs in the race immediately before the race in which Quinn runs.", "C) Smith runs in the race immediately before the race in which Terrell runs.", "D) Terrell runs in the race immediately before the race in which Ramirez runs.", "E) Uzoma runs in the race immediately before the race in which Terrell runs." ], "answer": "A" }, { "id": "ar_lsat_201010_3-G_3_16", "context": "The coach of a women's track team must determine which four of five runners—Quinn, Ramirez, Smith, Terrell, and Uzoma—will run in the four races of an upcoming track meet. Each of the four runners chosen will run in exactly one of the four races—the first, second, third, or fourth. The coach's selection is bound by the following constraints: If Quinn runs in the track meet, then Terrell runs in the race immediately after the race in which Quinn runs. Smith does not run in either the second race or the fourth race. If Uzoma does not run in the track meet, then Ramirez runs in the second race. If Ramirez runs in the second race, then Uzoma does not run in the track meet.", "question": "If Uzoma runs in the first race, then which one of the following must be true?", "options": [ "A) Quinn does not run in the track meet.", "B) Smith does not run in the track meet.", "C) Quinn runs in the second race.", "D) Terrell runs in the second race.", "E) Ramirez runs in the fourth race." ], "answer": "E" }, { "id": "ar_lsat_201010_3-G_3_17", "context": "The coach of a women's track team must determine which four of five runners—Quinn, Ramirez, Smith, Terrell, and Uzoma—will run in the four races of an upcoming track meet. Each of the four runners chosen will run in exactly one of the four races—the first, second, third, or fourth. The coach's selection is bound by the following constraints: If Quinn runs in the track meet, then Terrell runs in the race immediately after the race in which Quinn runs. Smith does not run in either the second race or the fourth race. If Uzoma does not run in the track meet, then Ramirez runs in the second race. If Ramirez runs in the second race, then Uzoma does not run in the track meet.", "question": "If both Quinn and Smith run in the track meet, then how many of the runners are there any one of whom could be the one who runs in the first race?", "options": [ "A) one", "B) two", "C) three", "D) four", "E) five" ], "answer": "B" }, { "id": "ar_lsat_201010_3-G_4_18", "context": "From the 1st through the 7th of next month, seven nurses—Farnham, Griseldi, Heany, Juarez, Khan, Lightfoot, and Moreau—will each conduct one information session at a community center. Each nurse's session will fall on a different day. The nurses' schedule is governed by the following constraints: At least two of the other nurses' sessions must fall in between Heany's session and Moreau's session. Griseldi's session must be on the day before Khan's. Juarez's session must be on a later day than Moreau's. Farnham's session must be on an earlier day than Khan's but on a later day than Lightfoot's. Lightfoot cannot conduct the session on the 2nd.", "question": "Which one of the following could be the order of the nurses' sessions, from first to last?", "options": [ "A) Farnham, Griseldi, Khan, Moreau, Juarez, Lightfoot, Heany", "B) Heany, Lightfoot, Farnham, Moreau, Juarez, Griseldi, Khan", "C) Juarez, Heany, Lightfoot, Farnham, Moreau, Griseldi, Khan", "D) Lightfoot, Moreau, Farnham, Juarez, Griseldi, Khan, Heany", "E) Moreau, Lightfoot, Heany, Juarez, Farnham, Griseldi, Khan" ], "answer": "D" }, { "id": "ar_lsat_201010_3-G_4_19", "context": "From the 1st through the 7th of next month, seven nurses—Farnham, Griseldi, Heany, Juarez, Khan, Lightfoot, and Moreau—will each conduct one information session at a community center. Each nurse's session will fall on a different day. The nurses' schedule is governed by the following constraints: At least two of the other nurses' sessions must fall in between Heany's session and Moreau's session. Griseldi's session must be on the day before Khan's. Juarez's session must be on a later day than Moreau's. Farnham's session must be on an earlier day than Khan's but on a later day than Lightfoot's. Lightfoot cannot conduct the session on the 2nd.", "question": "Juarez's session CANNOT be on which one of the following days?", "options": [ "A) the 2nd", "B) the 3rd", "C) the 5th", "D) the 6th", "E) the 7th" ], "answer": "C" }, { "id": "ar_lsat_201010_3-G_4_20", "context": "From the 1st through the 7th of next month, seven nurses—Farnham, Griseldi, Heany, Juarez, Khan, Lightfoot, and Moreau—will each conduct one information session at a community center. Each nurse's session will fall on a different day. The nurses' schedule is governed by the following constraints: At least two of the other nurses' sessions must fall in between Heany's session and Moreau's session. Griseldi's session must be on the day before Khan's. Juarez's session must be on a later day than Moreau's. Farnham's session must be on an earlier day than Khan's but on a later day than Lightfoot's. Lightfoot cannot conduct the session on the 2nd.", "question": "If Juarez's session is on the 3rd, then which one of the following could be true?", "options": [ "A) Moreau's session is on the 1st.", "B) Khan's session is on the 5th.", "C) Heany's session is on the 6th.", "D) Griseldi's session is on the 5th.", "E) Farnham's session is on the 2nd." ], "answer": "D" }, { "id": "ar_lsat_201010_3-G_4_21", "context": "From the 1st through the 7th of next month, seven nurses—Farnham, Griseldi, Heany, Juarez, Khan, Lightfoot, and Moreau—will each conduct one information session at a community center. Each nurse's session will fall on a different day. The nurses' schedule is governed by the following constraints: At least two of the other nurses' sessions must fall in between Heany's session and Moreau's session. Griseldi's session must be on the day before Khan's. Juarez's session must be on a later day than Moreau's. Farnham's session must be on an earlier day than Khan's but on a later day than Lightfoot's. Lightfoot cannot conduct the session on the 2nd.", "question": "If Khan's session is on an earlier day than Moreau's, which one of the following could conduct the session on the 3rd?", "options": [ "A) Griseldi", "B) Heany", "C) Juarez", "D) Lightfoot", "E) Moreau" ], "answer": "B" }, { "id": "ar_lsat_201010_3-G_4_22", "context": "From the 1st through the 7th of next month, seven nurses—Farnham, Griseldi, Heany, Juarez, Khan, Lightfoot, and Moreau—will each conduct one information session at a community center. Each nurse's session will fall on a different day. The nurses' schedule is governed by the following constraints: At least two of the other nurses' sessions must fall in between Heany's session and Moreau's session. Griseldi's session must be on the day before Khan's. Juarez's session must be on a later day than Moreau's. Farnham's session must be on an earlier day than Khan's but on a later day than Lightfoot's. Lightfoot cannot conduct the session on the 2nd.", "question": "If Griseldi's session is on the 5th, then which one of the following must be true?", "options": [ "A) Farnham's session is on the 3rd.", "B) Heany's session is on the 7th.", "C) Juarez's session is on the 4th.", "D) Lightfoot's session is on the 1st.", "E) Moreau's session is on the 2nd." ], "answer": "B" }, { "id": "ar_lsat_201010_3-G_4_23", "context": "From the 1st through the 7th of next month, seven nurses—Farnham, Griseldi, Heany, Juarez, Khan, Lightfoot, and Moreau—will each conduct one information session at a community center. Each nurse's session will fall on a different day. The nurses' schedule is governed by the following constraints: At least two of the other nurses' sessions must fall in between Heany's session and Moreau's session. Griseldi's session must be on the day before Khan's. Juarez's session must be on a later day than Moreau's. Farnham's session must be on an earlier day than Khan's but on a later day than Lightfoot's. Lightfoot cannot conduct the session on the 2nd.", "question": "Lightfoot's session could be on which one of the following days?", "options": [ "A) the 3rd", "B) the 4th", "C) the 5th", "D) the 6th", "E) the 7th" ], "answer": "A" }, { "id": "ar_lsat_201012_3-G_1_1", "context": "A motel operator is scheduling appointments to start up services at a new motel. Appointments for six services—gas, landscaping, power, satellite, telephone, and water—will be scheduled, one appointment per day for the next six days. The schedule for the appointments is subject to the following conditions: The water appointment must be scheduled for an earlier day than the landscaping appointment. The power appointment must be scheduled for an earlier day than both the gas and satellite appointments. The appointments scheduled for the second and third days cannot be for either gas, satellite, or telephone. The telephone appointment cannot be scheduled for the sixth day.", "question": "Which one of the following is an acceptable schedule of appointments, listed in order from earliest to latest?", "options": [ "A) gas, water, power, telephone, landscaping, satellite", "B) power, water, landscaping, gas, satellite, telephone", "C) telephone, power, landscaping, gas, water, satellite", "D) telephone, water, power, landscaping, gas, satellite", "E) water, telephone, power, gas, satellite, landscaping" ], "answer": "D" }, { "id": "ar_lsat_201012_3-G_1_2", "context": "A motel operator is scheduling appointments to start up services at a new motel. Appointments for six services—gas, landscaping, power, satellite, telephone, and water—will be scheduled, one appointment per day for the next six days. The schedule for the appointments is subject to the following conditions: The water appointment must be scheduled for an earlier day than the landscaping appointment. The power appointment must be scheduled for an earlier day than both the gas and satellite appointments. The appointments scheduled for the second and third days cannot be for either gas, satellite, or telephone. The telephone appointment cannot be scheduled for the sixth day.", "question": "If neither the gas nor the satellite nor the telephone appointment is scheduled for the fourth day, which one of the following must be true?", "options": [ "A) The gas appointment is scheduled for the fifth day.", "B) The power appointment is scheduled for the third day.", "C) The satellite appointment is scheduled for the sixth day.", "D) The telephone appointment is scheduled for the first day.", "E) The water appointment is scheduled for the second day." ], "answer": "D" }, { "id": "ar_lsat_201012_3-G_1_3", "context": "A motel operator is scheduling appointments to start up services at a new motel. Appointments for six services—gas, landscaping, power, satellite, telephone, and water—will be scheduled, one appointment per day for the next six days. The schedule for the appointments is subject to the following conditions: The water appointment must be scheduled for an earlier day than the landscaping appointment. The power appointment must be scheduled for an earlier day than both the gas and satellite appointments. The appointments scheduled for the second and third days cannot be for either gas, satellite, or telephone. The telephone appointment cannot be scheduled for the sixth day.", "question": "Which one of the following must be true?", "options": [ "A) The landscaping appointment is scheduled for an earlier day than the telephone appointment.", "B) The power appointment is scheduled for an earlier day than the landscaping appointment.", "C) The telephone appointment is scheduled for an earlier day than the gas appointment.", "D) The telephone appointment is scheduled for an earlier day than the water appointment.", "E) The water appointment is scheduled for an earlier day than the gas appointment." ], "answer": "E" }, { "id": "ar_lsat_201012_3-G_1_4", "context": "A motel operator is scheduling appointments to start up services at a new motel. Appointments for six services—gas, landscaping, power, satellite, telephone, and water—will be scheduled, one appointment per day for the next six days. The schedule for the appointments is subject to the following conditions: The water appointment must be scheduled for an earlier day than the landscaping appointment. The power appointment must be scheduled for an earlier day than both the gas and satellite appointments. The appointments scheduled for the second and third days cannot be for either gas, satellite, or telephone. The telephone appointment cannot be scheduled for the sixth day.", "question": "Which one of the following CANNOT be the appointments scheduled for the fourth, fifth, and sixth days, listed in that order?", "options": [ "A) gas, satellite, landscaping", "B) landscaping, satellite, gas", "C) power, satellite, gas", "D) telephone, satellite, gas", "E) water, gas, landscaping" ], "answer": "E" }, { "id": "ar_lsat_201012_3-G_1_5", "context": "A motel operator is scheduling appointments to start up services at a new motel. Appointments for six services—gas, landscaping, power, satellite, telephone, and water—will be scheduled, one appointment per day for the next six days. The schedule for the appointments is subject to the following conditions: The water appointment must be scheduled for an earlier day than the landscaping appointment. The power appointment must be scheduled for an earlier day than both the gas and satellite appointments. The appointments scheduled for the second and third days cannot be for either gas, satellite, or telephone. The telephone appointment cannot be scheduled for the sixth day.", "question": "If neither the gas appointment nor the satellite appointment is scheduled for the sixth day, which one of the following must be true?", "options": [ "A) The gas appointment is scheduled for the fifth day.", "B) The landscaping appointment is scheduled for the sixth day.", "C) The power appointment is scheduled for the third day.", "D) The telephone appointment is scheduled for the fourth day.", "E) The water appointment is scheduled for the second day." ], "answer": "B" }, { "id": "ar_lsat_201012_3-G_1_6", "context": "A motel operator is scheduling appointments to start up services at a new motel. Appointments for six services—gas, landscaping, power, satellite, telephone, and water—will be scheduled, one appointment per day for the next six days. The schedule for the appointments is subject to the following conditions: The water appointment must be scheduled for an earlier day than the landscaping appointment. The power appointment must be scheduled for an earlier day than both the gas and satellite appointments. The appointments scheduled for the second and third days cannot be for either gas, satellite, or telephone. The telephone appointment cannot be scheduled for the sixth day.", "question": "Which one of the following, if substituted for the condition that the telephone appointment cannot be scheduled for the sixth day, would have the same effect in determining the order of the appointments?", "options": [ "A) The telephone appointment must be scheduled for an earlier day than the gas appointment or the satellite appointment, or both.", "B) The telephone appointment must be scheduled for the day immediately before either the gas appointment or the satellite appointment.", "C) The telephone appointment must be scheduled for an earlier day than the landscaping appointment.", "D) If the telephone appointment is not scheduled for the first day, it must be scheduled for the day immediately before the gas appointment.", "E) Either the gas appointment or the satellite appointment must be scheduled for the sixth day." ], "answer": "A" }, { "id": "ar_lsat_201012_3-G_2_7", "context": "An artisan has been hired to create three stained glass windows. The artisan will use exactly five colors of glass: green, orange, purple, rose, and yellow. Each color of glass will be used at least once, and each window will contain at least two different colors of glass. The windows must also conform to the following conditions: Exactly one of the windows contains both green glass and purple glass. Exactly two of the windows contain rose glass. If a window contains yellow glass, then that window contains neither green glass nor orange glass. If a window does not contain purple glass, then that window contains orange glass.", "question": "Which one of the following could be the color combinations of the glass in the three windows?", "options": [ "A) window 1: green, purple, rose, and orange window 2: rose and yellow window 3: green and orange", "B) window 1: green, purple, and rose window 2: green, rose, and orange window 3: purple and yellow", "C) window 1: green, purple, and rose window 2: green, purple, and orange window 3: purple, rose, and yellow", "D) window 1: green, purple, and orange window 2: rose, orange, and yellow window 3: purple and rose", "E) window 1: green, purple, and orange window 2: purple, rose, and yellow window 3: purple and orange" ], "answer": "B" }, { "id": "ar_lsat_201012_3-G_2_8", "context": "An artisan has been hired to create three stained glass windows. The artisan will use exactly five colors of glass: green, orange, purple, rose, and yellow. Each color of glass will be used at least once, and each window will contain at least two different colors of glass. The windows must also conform to the following conditions: Exactly one of the windows contains both green glass and purple glass. Exactly two of the windows contain rose glass. If a window contains yellow glass, then that window contains neither green glass nor orange glass. If a window does not contain purple glass, then that window contains orange glass.", "question": "Which one of the following CANNOT be the complete color combination of the glass in one of the windows?", "options": [ "A) green and orange", "B) green and purple", "C) green and rose", "D) purple and orange", "E) rose and orange" ], "answer": "C" }, { "id": "ar_lsat_201012_3-G_2_9", "context": "An artisan has been hired to create three stained glass windows. The artisan will use exactly five colors of glass: green, orange, purple, rose, and yellow. Each color of glass will be used at least once, and each window will contain at least two different colors of glass. The windows must also conform to the following conditions: Exactly one of the windows contains both green glass and purple glass. Exactly two of the windows contain rose glass. If a window contains yellow glass, then that window contains neither green glass nor orange glass. If a window does not contain purple glass, then that window contains orange glass.", "question": "If two of the windows are made with exactly two colors of glass each, then the complete color combination of the glass in one of those windows could be", "options": [ "A) rose and yellow", "B) orange and rose", "C) orange and purple", "D) green and rose", "E) green and orange" ], "answer": "B" }, { "id": "ar_lsat_201012_3-G_2_10", "context": "An artisan has been hired to create three stained glass windows. The artisan will use exactly five colors of glass: green, orange, purple, rose, and yellow. Each color of glass will be used at least once, and each window will contain at least two different colors of glass. The windows must also conform to the following conditions: Exactly one of the windows contains both green glass and purple glass. Exactly two of the windows contain rose glass. If a window contains yellow glass, then that window contains neither green glass nor orange glass. If a window does not contain purple glass, then that window contains orange glass.", "question": "If the complete color combination of the glass in one of the windows is purple, rose, and orange, then the complete color combination of the glass in one of the other windows could be", "options": [ "A) green, orange, and rose", "B) green, orange, and purple", "C) orange and rose", "D) orange and purple", "E) green and orange" ], "answer": "B" }, { "id": "ar_lsat_201012_3-G_2_11", "context": "An artisan has been hired to create three stained glass windows. The artisan will use exactly five colors of glass: green, orange, purple, rose, and yellow. Each color of glass will be used at least once, and each window will contain at least two different colors of glass. The windows must also conform to the following conditions: Exactly one of the windows contains both green glass and purple glass. Exactly two of the windows contain rose glass. If a window contains yellow glass, then that window contains neither green glass nor orange glass. If a window does not contain purple glass, then that window contains orange glass.", "question": "If orange glass is used in more of the windows than green glass, then the complete color combination of the glass in one of the windows could be", "options": [ "A) orange and purple", "B) green, purple, and rose", "C) green and purple", "D) green and orange", "E) green, orange, and rose" ], "answer": "A" }, { "id": "ar_lsat_201012_3-G_2_12", "context": "An artisan has been hired to create three stained glass windows. The artisan will use exactly five colors of glass: green, orange, purple, rose, and yellow. Each color of glass will be used at least once, and each window will contain at least two different colors of glass. The windows must also conform to the following conditions: Exactly one of the windows contains both green glass and purple glass. Exactly two of the windows contain rose glass. If a window contains yellow glass, then that window contains neither green glass nor orange glass. If a window does not contain purple glass, then that window contains orange glass.", "question": "Which one of the following could be used in all three windows?", "options": [ "A) green glass", "B) orange glass", "C) purple glass", "D) rose glass", "E) yellow glass" ], "answer": "C" }, { "id": "ar_lsat_201012_3-G_2_13", "context": "An artisan has been hired to create three stained glass windows. The artisan will use exactly five colors of glass: green, orange, purple, rose, and yellow. Each color of glass will be used at least once, and each window will contain at least two different colors of glass. The windows must also conform to the following conditions: Exactly one of the windows contains both green glass and purple glass. Exactly two of the windows contain rose glass. If a window contains yellow glass, then that window contains neither green glass nor orange glass. If a window does not contain purple glass, then that window contains orange glass.", "question": "If none of the windows contains both rose glass and orange glass, then the complete color combination of the glass in one of the windows must be", "options": [ "A) green and purple", "B) green, purple, and orange", "C) green and orange", "D) purple and orange", "E) purple, rose, and yellow" ], "answer": "E" }, { "id": "ar_lsat_201012_3-G_3_14", "context": "A conference on management skills consists of exactly five talks, which are held successively in the following order: Feedback, Goal Sharing, Handling People, Information Overload, and Leadership. Exactly four employees of SoftCorp—Quigley, Rivera, Spivey, and Tran—each attend exactly two of the talks. No talk is attended by more than two of the employees, who attend the talks in accordance with the following conditions: Quigley attends neither Feedback nor Handling People. Rivera attends neither Goal Sharing nor Handling People. Spivey does not attend either of the talks that Tran attends. Quigley attends the first talk Tran attends. Spivey attends the first talk Rivera attends.", "question": "Which one of the following could be a complete and accurate matching of the talks to the SoftCorp employees who attend them?", "options": [ "A) Feedback: Rivera, Spivey Goal Sharing: Quigley, Tran Handling People: None Information Overload: Quigley, Rivera Leadership: Spivey, Tran", "B) Feedback: Rivera, Spivey Goal Sharing: Quigley, Tran Handling People: Rivera, Tran Information Overload: Quigley Leadership: Spivey", "C) Feedback: Rivera, Spivey Goal Sharing: Quigley, Tran Handling People: Tran Information Overload: Quigley, Rivera Leadership: Spivey", "D) Feedback: Rivera, Spivey Goal Sharing: Tran Handling People: Tran Information Overload: Quigley, Rivera Leadership: Quigley, Spivey", "E) Feedback: Spivey Goal Sharing: Quigley, Tran Handling People: Spivey Information Overload: Quigley, Rivera Leadership: Rivera, Tran" ], "answer": "C" }, { "id": "ar_lsat_201012_3-G_3_15", "context": "A conference on management skills consists of exactly five talks, which are held successively in the following order: Feedback, Goal Sharing, Handling People, Information Overload, and Leadership. Exactly four employees of SoftCorp—Quigley, Rivera, Spivey, and Tran—each attend exactly two of the talks. No talk is attended by more than two of the employees, who attend the talks in accordance with the following conditions: Quigley attends neither Feedback nor Handling People. Rivera attends neither Goal Sharing nor Handling People. Spivey does not attend either of the talks that Tran attends. Quigley attends the first talk Tran attends. Spivey attends the first talk Rivera attends.", "question": "If none of the SoftCorp employees attends Handling People, then which one of the following must be true?", "options": [ "A) Rivera attends Feedback.", "B) Rivera attends Leadership.", "C) Spivey attends Information Overload.", "D) Tran attends Goal Sharing.", "E) Tran attends Information Overload." ], "answer": "A" }, { "id": "ar_lsat_201012_3-G_3_16", "context": "A conference on management skills consists of exactly five talks, which are held successively in the following order: Feedback, Goal Sharing, Handling People, Information Overload, and Leadership. Exactly four employees of SoftCorp—Quigley, Rivera, Spivey, and Tran—each attend exactly two of the talks. No talk is attended by more than two of the employees, who attend the talks in accordance with the following conditions: Quigley attends neither Feedback nor Handling People. Rivera attends neither Goal Sharing nor Handling People. Spivey does not attend either of the talks that Tran attends. Quigley attends the first talk Tran attends. Spivey attends the first talk Rivera attends.", "question": "Which one of the following is a complete and accurate list of the talks any one of which Rivera and Spivey could attend together?", "options": [ "A) Feedback, Information Overload, Leadership", "B) Feedback, Goal Sharing, Information Overload", "C) Information Overload, Leadership", "D) Feedback, Leadership", "E) Feedback, Information Overload" ], "answer": "A" }, { "id": "ar_lsat_201012_3-G_3_17", "context": "A conference on management skills consists of exactly five talks, which are held successively in the following order: Feedback, Goal Sharing, Handling People, Information Overload, and Leadership. Exactly four employees of SoftCorp—Quigley, Rivera, Spivey, and Tran—each attend exactly two of the talks. No talk is attended by more than two of the employees, who attend the talks in accordance with the following conditions: Quigley attends neither Feedback nor Handling People. Rivera attends neither Goal Sharing nor Handling People. Spivey does not attend either of the talks that Tran attends. Quigley attends the first talk Tran attends. Spivey attends the first talk Rivera attends.", "question": "If Quigley is the only SoftCorp employee to attend Leadership, then which one of the following could be false?", "options": [ "A) Rivera attends Feedback.", "B) Rivera attends Information Overload.", "C) Spivey attends Feedback.", "D) Spivey attends Handling People.", "E) Tran attends Goal Sharing." ], "answer": "D" }, { "id": "ar_lsat_201012_3-G_3_18", "context": "A conference on management skills consists of exactly five talks, which are held successively in the following order: Feedback, Goal Sharing, Handling People, Information Overload, and Leadership. Exactly four employees of SoftCorp—Quigley, Rivera, Spivey, and Tran—each attend exactly two of the talks. No talk is attended by more than two of the employees, who attend the talks in accordance with the following conditions: Quigley attends neither Feedback nor Handling People. Rivera attends neither Goal Sharing nor Handling People. Spivey does not attend either of the talks that Tran attends. Quigley attends the first talk Tran attends. Spivey attends the first talk Rivera attends.", "question": "If Rivera is the only SoftCorp employee to attend Information Overload, then which one of the following could be false?", "options": [ "A) Quigley attends Leadership.", "B) Rivera attends Feedback.", "C) Spivey attends Feedback.", "D) Tran attends Goal Sharing.", "E) Tran attends Handling People." ], "answer": "E" }, { "id": "ar_lsat_201012_3-G_4_19", "context": "Exactly six witnesses will testify in a trial: Mangione, Ramirez, Sanderson, Tannenbaum, Ujemori, and Wong. The witnesses will testify one by one, and each only once. The order in which the witnesses testify is subject to the following constraints: Sanderson must testify immediately before either Tannenbaum or Ujemori. Ujemori must testify earlier than both Ramirez and Wong. Either Tannenbaum or Wong must testify immediately before Mangione.", "question": "Which one of the following lists the witnesses in an order in which they could testify?", "options": [ "A) Ramirez, Sanderson, Tannenbaum, Mangione, Ujemori, Wong", "B) Sanderson, Tannenbaum, Ujemori, Ramirez, Wong, Mangione", "C) Sanderson, Ujemori, Tannenbaum, Wong, Ramirez, Mangione", "D) Tannenbaum, Mangione, Ujemori, Sanderson, Ramirez, Wong", "E) Wong, Ramirez, Sanderson, Tannenbaum, Mangione, Ujemori" ], "answer": "B" }, { "id": "ar_lsat_201012_3-G_4_20", "context": "Exactly six witnesses will testify in a trial: Mangione, Ramirez, Sanderson, Tannenbaum, Ujemori, and Wong. The witnesses will testify one by one, and each only once. The order in which the witnesses testify is subject to the following constraints: Sanderson must testify immediately before either Tannenbaum or Ujemori. Ujemori must testify earlier than both Ramirez and Wong. Either Tannenbaum or Wong must testify immediately before Mangione.", "question": "If Tannenbaum testifies first, then which one of the following could be true?", "options": [ "A) Ramirez testifies second.", "B) Wong testifies third.", "C) Sanderson testifies fourth.", "D) Ujemori testifies fifth.", "E) Mangione testifies sixth." ], "answer": "E" }, { "id": "ar_lsat_201012_3-G_4_21", "context": "Exactly six witnesses will testify in a trial: Mangione, Ramirez, Sanderson, Tannenbaum, Ujemori, and Wong. The witnesses will testify one by one, and each only once. The order in which the witnesses testify is subject to the following constraints: Sanderson must testify immediately before either Tannenbaum or Ujemori. Ujemori must testify earlier than both Ramirez and Wong. Either Tannenbaum or Wong must testify immediately before Mangione.", "question": "If Sanderson testifies fifth, then Ujemori must testify", "options": [ "A) first", "B) second", "C) third", "D) fourth", "E) sixth" ], "answer": "A" }, { "id": "ar_lsat_201012_3-G_4_22", "context": "Exactly six witnesses will testify in a trial: Mangione, Ramirez, Sanderson, Tannenbaum, Ujemori, and Wong. The witnesses will testify one by one, and each only once. The order in which the witnesses testify is subject to the following constraints: Sanderson must testify immediately before either Tannenbaum or Ujemori. Ujemori must testify earlier than both Ramirez and Wong. Either Tannenbaum or Wong must testify immediately before Mangione.", "question": "Which one of the following pairs of witnesses CANNOT testify third and fourth, respectively?", "options": [ "A) Mangione, Tannenbaum", "B) Ramirez, Sanderson", "C) Sanderson, Ujemori", "D) Tannenbaum, Ramirez", "E) Ujemori, Wong" ], "answer": "A" }, { "id": "ar_lsat_201012_3-G_4_23", "context": "Exactly six witnesses will testify in a trial: Mangione, Ramirez, Sanderson, Tannenbaum, Ujemori, and Wong. The witnesses will testify one by one, and each only once. The order in which the witnesses testify is subject to the following constraints: Sanderson must testify immediately before either Tannenbaum or Ujemori. Ujemori must testify earlier than both Ramirez and Wong. Either Tannenbaum or Wong must testify immediately before Mangione.", "question": "Which one of the following pairs of witnesses CANNOT testify first and second, respectively?", "options": [ "A) Sanderson, Ujemori", "B) Tannenbaum, Mangione", "C) Tannenbaum, Sanderson", "D) Ujemori, Tannenbaum", "E) Ujemori, Wong" ], "answer": "D" }, { "id": "ar_lsat_201312_2-G_1_1", "context": "A movie studio is scheduling the release of six films—Fiesta, Glaciers, Hurricanes, Jets, Kangaroos, and Lovebird. No two of these films can be released on the same date. The release schedule is governed by the following conditions: Fiesta must be released earlier than both Jets and Lovebird. Kangaroos must be released earlier than Jets, and Jets must be released earlier than Hurricanes. Lovebird must be released earlier than Glaciers.", "question": "Which one of the following CANNOT be true?", "options": [ "A) Fiesta is released second.", "B) Glaciers is released third.", "C) Hurricanes is released fourth.", "D) Kangaroos is released fourth.", "E) Kangaroos is released fifth." ], "answer": "E" }, { "id": "ar_lsat_201312_2-G_1_2", "context": "A movie studio is scheduling the release of six films—Fiesta, Glaciers, Hurricanes, Jets, Kangaroos, and Lovebird. No two of these films can be released on the same date. The release schedule is governed by the following conditions: Fiesta must be released earlier than both Jets and Lovebird. Kangaroos must be released earlier than Jets, and Jets must be released earlier than Hurricanes. Lovebird must be released earlier than Glaciers.", "question": "Which one of the following must be true?", "options": [ "A) Fiesta is released earlier than Hurricanes.", "B) Jets is released earlier than Glaciers.", "C) Kangaroos is released earlier than Glaciers.", "D) Lovebird is released earlier than Hurricanes.", "E) Lovebird is released earlier than Jets." ], "answer": "A" }, { "id": "ar_lsat_201312_2-G_1_3", "context": "A movie studio is scheduling the release of six films—Fiesta, Glaciers, Hurricanes, Jets, Kangaroos, and Lovebird. No two of these films can be released on the same date. The release schedule is governed by the following conditions: Fiesta must be released earlier than both Jets and Lovebird. Kangaroos must be released earlier than Jets, and Jets must be released earlier than Hurricanes. Lovebird must be released earlier than Glaciers.", "question": "If Glaciers is released earlier than Hurricanes, then each of the following could be true EXCEPT:", "options": [ "A) Glaciers is released fourth.", "B) Jets is released third.", "C) Kangaroos is released second.", "D) Lovebird is released third.", "E) Lovebird is released fifth." ], "answer": "E" }, { "id": "ar_lsat_201312_2-G_1_4", "context": "A movie studio is scheduling the release of six films—Fiesta, Glaciers, Hurricanes, Jets, Kangaroos, and Lovebird. No two of these films can be released on the same date. The release schedule is governed by the following conditions: Fiesta must be released earlier than both Jets and Lovebird. Kangaroos must be released earlier than Jets, and Jets must be released earlier than Hurricanes. Lovebird must be released earlier than Glaciers.", "question": "If Lovebird is released earlier than Kangaroos, which one of the following could be true?", "options": [ "A) Lovebird is released third.", "B) Lovebird is released fourth.", "C) Hurricanes is released earlier than Lovebird.", "D) Jets is released earlier than Glaciers.", "E) Jets is released earlier than Lovebird." ], "answer": "D" }, { "id": "ar_lsat_201312_2-G_1_5", "context": "A movie studio is scheduling the release of six films—Fiesta, Glaciers, Hurricanes, Jets, Kangaroos, and Lovebird. No two of these films can be released on the same date. The release schedule is governed by the following conditions: Fiesta must be released earlier than both Jets and Lovebird. Kangaroos must be released earlier than Jets, and Jets must be released earlier than Hurricanes. Lovebird must be released earlier than Glaciers.", "question": "Which one of the following, if substituted for the condition that Fiesta must be released earlier than both Jets and Lovebird, would have the same effect on the order in which the films are released?", "options": [ "A) Only Kangaroos can be released earlier than Fiesta.", "B) Kangaroos must be released earlier than Lovebird.", "C) Fiesta must be released either first or second.", "D) Fiesta must be released earlier than both Kangaroos and Lovebird.", "E) Either Fiesta or Kangaroos must be released first." ], "answer": "A" }, { "id": "ar_lsat_201312_2-G_2_6", "context": "The applications of seven job candidates—Farrell, Grant, Hong, Inman, Kent, Lopez, and Madsen—will be evaluated by four human resource officers—Rao, Smith, Tipton, and Ullman. Each application will be evaluated by exactly one officer, and each officer will evaluate at least one application, subject to the following constraints: Grant's application must be evaluated by Ullman. Farrell's application must be evaluated by the same officer who evaluates Lopez's application. Neither Hong's application nor Madsen's application can be evaluated by the same officer who evaluates Inman's application. The officer who evaluates Kent's application cannot evaluate any other applications. Smith must evaluate more of the applications than Tipton does.", "question": "Which one of the following could be the assignment of applications to officers?", "options": [ "A) Rao: Hong Smith: Farrell, Lopez, Madsen Tipton: Kent Ullman: Grant, Inman", "B) Rao: Inman Smith: Hong, Lopez, Madsen Tipton: Kent Ullman: Farrell, Grant", "C) Rao: Madsen Smith: Farrell, Lopez Tipton: Kent Ullman: Grant, Hong, Inman", "D) Rao: Farrell, Lopez Smith: Hong, Kent, Madsen Tipton: Inman Ullman: Grant", "E) Rao: Farrell, Grant, Lopez Smith: Hong, Madsen Tipton: Kent Ullman: Inman" ], "answer": "A" }, { "id": "ar_lsat_201312_2-G_2_7", "context": "The applications of seven job candidates—Farrell, Grant, Hong, Inman, Kent, Lopez, and Madsen—will be evaluated by four human resource officers—Rao, Smith, Tipton, and Ullman. Each application will be evaluated by exactly one officer, and each officer will evaluate at least one application, subject to the following constraints: Grant's application must be evaluated by Ullman. Farrell's application must be evaluated by the same officer who evaluates Lopez's application. Neither Hong's application nor Madsen's application can be evaluated by the same officer who evaluates Inman's application. The officer who evaluates Kent's application cannot evaluate any other applications. Smith must evaluate more of the applications than Tipton does.", "question": "If Hong's application is evaluated by Rao, which one of the following could be true?", "options": [ "A) Farrells application is evaluated by Rao.", "B) Inmans application is evaluated by Smith.", "C) Kents application is evaluated by Rao.", "D) Lopezs application is evaluated by Ullman.", "E) Madsens application is evaluated by Tipton." ], "answer": "B" }, { "id": "ar_lsat_201312_2-G_2_8", "context": "The applications of seven job candidates—Farrell, Grant, Hong, Inman, Kent, Lopez, and Madsen—will be evaluated by four human resource officers—Rao, Smith, Tipton, and Ullman. Each application will be evaluated by exactly one officer, and each officer will evaluate at least one application, subject to the following constraints: Grant's application must be evaluated by Ullman. Farrell's application must be evaluated by the same officer who evaluates Lopez's application. Neither Hong's application nor Madsen's application can be evaluated by the same officer who evaluates Inman's application. The officer who evaluates Kent's application cannot evaluate any other applications. Smith must evaluate more of the applications than Tipton does.", "question": "If exactly two of the applications are evaluated by Tipton, then each of the following must be true EXCEPT:", "options": [ "A) Exactly one of the applications is evaluated by Rao.", "B) Exactly one of the applications is evaluated by Ullman.", "C) Farrells application is evaluated by Tipton.", "D) Inmans application is evaluated by Smith.", "E) Lopezs application is evaluated by Smith." ], "answer": "C" }, { "id": "ar_lsat_201312_2-G_2_9", "context": "The applications of seven job candidates—Farrell, Grant, Hong, Inman, Kent, Lopez, and Madsen—will be evaluated by four human resource officers—Rao, Smith, Tipton, and Ullman. Each application will be evaluated by exactly one officer, and each officer will evaluate at least one application, subject to the following constraints: Grant's application must be evaluated by Ullman. Farrell's application must be evaluated by the same officer who evaluates Lopez's application. Neither Hong's application nor Madsen's application can be evaluated by the same officer who evaluates Inman's application. The officer who evaluates Kent's application cannot evaluate any other applications. Smith must evaluate more of the applications than Tipton does.", "question": "If the officer who evaluates Madsens application does not evaluate any other application, which one of the following must be true?", "options": [ "A) Madsens application is evaluated by Tipton.", "B) Lopezs application is evaluated by Smith.", "C) Kents application is evaluated by Tipton.", "D) Inmans application is evaluated by Smith.", "E) Hongs application is evaluated by Smith." ], "answer": "B" }, { "id": "ar_lsat_201312_2-G_2_10", "context": "The applications of seven job candidates—Farrell, Grant, Hong, Inman, Kent, Lopez, and Madsen—will be evaluated by four human resource officers—Rao, Smith, Tipton, and Ullman. Each application will be evaluated by exactly one officer, and each officer will evaluate at least one application, subject to the following constraints: Grant's application must be evaluated by Ullman. Farrell's application must be evaluated by the same officer who evaluates Lopez's application. Neither Hong's application nor Madsen's application can be evaluated by the same officer who evaluates Inman's application. The officer who evaluates Kent's application cannot evaluate any other applications. Smith must evaluate more of the applications than Tipton does.", "question": "If Farrells application is evaluated by the same officer who evaluates Inmans application, then any of the following could be true EXCEPT:", "options": [ "A) Hongs application is evaluated by Ullman.", "B) Kents application is evaluated by Tipton.", "C) Lopezs application is evaluated by Ullman.", "D) Madsens application is evaluated by Smith.", "E) Madsens application is evaluated by Ullman." ], "answer": "C" }, { "id": "ar_lsat_201312_2-G_2_11", "context": "The applications of seven job candidates—Farrell, Grant, Hong, Inman, Kent, Lopez, and Madsen—will be evaluated by four human resource officers—Rao, Smith, Tipton, and Ullman. Each application will be evaluated by exactly one officer, and each officer will evaluate at least one application, subject to the following constraints: Grant's application must be evaluated by Ullman. Farrell's application must be evaluated by the same officer who evaluates Lopez's application. Neither Hong's application nor Madsen's application can be evaluated by the same officer who evaluates Inman's application. The officer who evaluates Kent's application cannot evaluate any other applications. Smith must evaluate more of the applications than Tipton does.", "question": "If Farrells application is evaluated by Rao, then for how many of the other applications is the identity of the officer who evaluates it fully determined?", "options": [ "A) one", "B) two", "C) three", "D) four", "E) five" ], "answer": "E" }, { "id": "ar_lsat_201312_2-G_3_12", "context": "A six-week literature course is being planned in which six books—F, K, N, O, R, and T—will be discussed. The books will be discussed one at a time, one book per week. In addition, written summaries will be required for one or more of the books. The order in which the books are discussed and the selection of books to be summarized is subject to the following conditions: No two books that are summarized are discussed in consecutive weeks. If N is not summarized, then both R and T are summarized. N is discussed earlier than T, and T is discussed earlier than O. F is discussed earlier than O, and O is discussed earlier than both K and R.", "question": "Which one of the following could be the plan for the course, showing the order, from first to last, in which the books are discussed and the choice of books to be summarized?", "options": [ "A) F, N, T, O, R, K; with only T and R summarized", "B) F, T, N, O, K, R; with only N and K summarized", "C) N, F, T, O, K, R; with only T, O, and R summarized", "D) N, T, F, O, K, R; with only T and O summarized", "E) N, T, O, F, K, R; with only T and R summarized" ], "answer": "A" }, { "id": "ar_lsat_201312_2-G_3_13", "context": "A six-week literature course is being planned in which six books—F, K, N, O, R, and T—will be discussed. The books will be discussed one at a time, one book per week. In addition, written summaries will be required for one or more of the books. The order in which the books are discussed and the selection of books to be summarized is subject to the following conditions: No two books that are summarized are discussed in consecutive weeks. If N is not summarized, then both R and T are summarized. N is discussed earlier than T, and T is discussed earlier than O. F is discussed earlier than O, and O is discussed earlier than both K and R.", "question": "If N is the second book discussed and it is not summarized, which one of the following could be true?", "options": [ "A) F is summarized.", "B) K is summarized.", "C) O is summarized.", "D) T is discussed earlier than F.", "E) The third book discussed is not summarized." ], "answer": "A" }, { "id": "ar_lsat_201312_2-G_3_14", "context": "A six-week literature course is being planned in which six books—F, K, N, O, R, and T—will be discussed. The books will be discussed one at a time, one book per week. In addition, written summaries will be required for one or more of the books. The order in which the books are discussed and the selection of books to be summarized is subject to the following conditions: No two books that are summarized are discussed in consecutive weeks. If N is not summarized, then both R and T are summarized. N is discussed earlier than T, and T is discussed earlier than O. F is discussed earlier than O, and O is discussed earlier than both K and R.", "question": "If O is summarized, which one of the following CANNOT be true?", "options": [ "A) F is the first book discussed.", "B) K is the sixth book discussed.", "C) F is summarized.", "D) K is not summarized.", "E) N is not summarized." ], "answer": "C" }, { "id": "ar_lsat_201312_2-G_3_15", "context": "A six-week literature course is being planned in which six books—F, K, N, O, R, and T—will be discussed. The books will be discussed one at a time, one book per week. In addition, written summaries will be required for one or more of the books. The order in which the books are discussed and the selection of books to be summarized is subject to the following conditions: No two books that are summarized are discussed in consecutive weeks. If N is not summarized, then both R and T are summarized. N is discussed earlier than T, and T is discussed earlier than O. F is discussed earlier than O, and O is discussed earlier than both K and R.", "question": "If neither of the last two books discussed is summarized, which one of the following could be true?", "options": [ "A) K is summarized", "B) O is summarized", "C) R is summarized", "D) F and T summarized", "E) N is not summarized" ], "answer": "B" }, { "id": "ar_lsat_201312_2-G_3_16", "context": "A six-week literature course is being planned in which six books—F, K, N, O, R, and T—will be discussed. The books will be discussed one at a time, one book per week. In addition, written summaries will be required for one or more of the books. The order in which the books are discussed and the selection of books to be summarized is subject to the following conditions: No two books that are summarized are discussed in consecutive weeks. If N is not summarized, then both R and T are summarized. N is discussed earlier than T, and T is discussed earlier than O. F is discussed earlier than O, and O is discussed earlier than both K and R.", "question": "Which one of the following, if substituted for the condition that F is discussed earlier than O, and O is discussed earlier than both K and R, would have the same effect in determining the plan for the literature course?", "options": [ "A) T is discussed third, and the last two books discussed are K and R, not necessarily in that order.", "B) T is discussed earlier than F, and the last two books discussed are K and R, not necessarily in that order.", "C) K and R are among the last three books discussed, and F is among the first three books discussed.", "D) K and R are discussed in consecutive weeks, not necessarily in that order, and O is discussed fourth.", "E) K and R are discussed in consecutive weeks, not necessarily in that order, and F is discussed third." ], "answer": "D" }, { "id": "ar_lsat_201312_2-G_4_17", "context": "A museum curator is arranging seven paintings—a Morisot, a Pissarro, a Renoir, a Sisley, a Turner, a Vuillard, and a Whistler. The paintings will be arranged in a horizontal row of seven positions, with the first position being closest to the entrance and the seventh being furthest from the entrance. The arrangement is subject to the following constraints: The Turner must be closer to the entrance than the Whistler is. The Renoir must be closer to the entrance than the Morisot is, with exactly one other painting between them. The Pissarro and the Sisley must be next to each other. If the Vuillard is not in the third position, it must be in the fourth position.", "question": "Which one of the following could be the arrangement of the paintings, listed in order from the first position to the seventh?", "options": [ "A) Morisot, Turner, Renoir, Vuillard, Whistler, Sisley, Pissarro", "B) Pissarro, Sisley, Renoir, Vuillard, Morisot, Whistler, Turner", "C) Renoir, Turner, Morisot, Vuillard, Whistler, Sisley, Pissarro", "D) Sisley, Turner, Pissarro, Vuillard, Renoir, Whistler, Morisot", "E) Turner, Vuillard, Pissarro, Sisley, Renoir, Whistler, Morisot" ], "answer": "C" }, { "id": "ar_lsat_201312_2-G_4_18", "context": "A museum curator is arranging seven paintings—a Morisot, a Pissarro, a Renoir, a Sisley, a Turner, a Vuillard, and a Whistler. The paintings will be arranged in a horizontal row of seven positions, with the first position being closest to the entrance and the seventh being furthest from the entrance. The arrangement is subject to the following constraints: The Turner must be closer to the entrance than the Whistler is. The Renoir must be closer to the entrance than the Morisot is, with exactly one other painting between them. The Pissarro and the Sisley must be next to each other. If the Vuillard is not in the third position, it must be in the fourth position.", "question": "If the Sisley is in the seventh position, which one of the following could be the position that the Turner is in?", "options": [ "A) second", "B) third", "C) fourth", "D) fifth", "E) sixth" ], "answer": "A" }, { "id": "ar_lsat_201312_2-G_4_19", "context": "A museum curator is arranging seven paintings—a Morisot, a Pissarro, a Renoir, a Sisley, a Turner, a Vuillard, and a Whistler. The paintings will be arranged in a horizontal row of seven positions, with the first position being closest to the entrance and the seventh being furthest from the entrance. The arrangement is subject to the following constraints: The Turner must be closer to the entrance than the Whistler is. The Renoir must be closer to the entrance than the Morisot is, with exactly one other painting between them. The Pissarro and the Sisley must be next to each other. If the Vuillard is not in the third position, it must be in the fourth position.", "question": "If the Pissarro is in the fifth position, which one of the following must be true?", "options": [ "A) The Morisot is in the fourth position.", "B) The Renoir is in the second position.", "C) The Sisley is in the sixth position.", "D) The Turner is in the first position.", "E) The Vuillard is in the third position." ], "answer": "C" }, { "id": "ar_lsat_201312_2-G_4_20", "context": "A museum curator is arranging seven paintings—a Morisot, a Pissarro, a Renoir, a Sisley, a Turner, a Vuillard, and a Whistler. The paintings will be arranged in a horizontal row of seven positions, with the first position being closest to the entrance and the seventh being furthest from the entrance. The arrangement is subject to the following constraints: The Turner must be closer to the entrance than the Whistler is. The Renoir must be closer to the entrance than the Morisot is, with exactly one other painting between them. The Pissarro and the Sisley must be next to each other. If the Vuillard is not in the third position, it must be in the fourth position.", "question": "Any one of the following could be in the third position EXCEPT:", "options": [ "A) the Morisot", "B) the Renoir", "C) the Sisley", "D) the Turner", "E) the Whistler" ], "answer": "E" }, { "id": "ar_lsat_201312_2-G_4_21", "context": "A museum curator is arranging seven paintings—a Morisot, a Pissarro, a Renoir, a Sisley, a Turner, a Vuillard, and a Whistler. The paintings will be arranged in a horizontal row of seven positions, with the first position being closest to the entrance and the seventh being furthest from the entrance. The arrangement is subject to the following constraints: The Turner must be closer to the entrance than the Whistler is. The Renoir must be closer to the entrance than the Morisot is, with exactly one other painting between them. The Pissarro and the Sisley must be next to each other. If the Vuillard is not in the third position, it must be in the fourth position.", "question": "If the Renoir and the Morisot are both between the Turner and the Whistler, which one of the following could be true?", "options": [ "A) The Pissarro is in the fifth position.", "B) The Sisley is in the second position.", "C) The Turner is in the third position.", "D) The Vuillard is in the fourth position.", "E) The Whistler is in the sixth position." ], "answer": "A" }, { "id": "ar_lsat_201312_2-G_4_22", "context": "A museum curator is arranging seven paintings—a Morisot, a Pissarro, a Renoir, a Sisley, a Turner, a Vuillard, and a Whistler. The paintings will be arranged in a horizontal row of seven positions, with the first position being closest to the entrance and the seventh being furthest from the entrance. The arrangement is subject to the following constraints: The Turner must be closer to the entrance than the Whistler is. The Renoir must be closer to the entrance than the Morisot is, with exactly one other painting between them. The Pissarro and the Sisley must be next to each other. If the Vuillard is not in the third position, it must be in the fourth position.", "question": "If there is exactly one painting between the Turner and the Whistler, which one of the following must be true?", "options": [ "A) The Morisot is in the seventh position.", "B) The Pissarro is in the first position.", "C) The Renoir is in the fourth position.", "D) The Turner is in the second position.", "E) The Vuillard is in the third position." ], "answer": "E" }, { "id": "ar_lsat_201312_2-G_4_23", "context": "A museum curator is arranging seven paintings—a Morisot, a Pissarro, a Renoir, a Sisley, a Turner, a Vuillard, and a Whistler. The paintings will be arranged in a horizontal row of seven positions, with the first position being closest to the entrance and the seventh being furthest from the entrance. The arrangement is subject to the following constraints: The Turner must be closer to the entrance than the Whistler is. The Renoir must be closer to the entrance than the Morisot is, with exactly one other painting between them. The Pissarro and the Sisley must be next to each other. If the Vuillard is not in the third position, it must be in the fourth position.", "question": "If the Turner is next to the Vuillard, which one of the following is a pair of paintings in which the one mentioned first must be closer to the entrance than the one mentioned second?", "options": [ "A) the Pissarro and the Sisley", "B) the Renoir and the Whistler", "C) the Turner and the Vuillard", "D) the Vuillard and the Turner", "E) the Whistler and the Renoir" ], "answer": "B" }, { "id": "ar_lsat_201406_4-G_1_1", "context": "A radio station airs hourly news updates every morning. Each update consists of exactly five reports—two of general interest: international and national; and three of local interest: sports, traffic, and weather. Each update must be structured as follows: There are exactly two segments, the first segment containing three reports and the second segment containing two. Within each segment, reports are ordered by length, from longest to shortest. Each segment contains at least one report of local interest. The national report is always the longest of the five reports. The sports report is always the shortest of the five reports. The international report is always longer than the weather report.", "question": "Which one of the following could be an accurate matching of reports to their segments, with the reports listed in order from earliest to latest?", "options": [ "A) first segment: international, national, sports second segment: traffic, weather", "B) first segment: national, international, sports second segment: weather, traffic", "C) first segment: national, international, weather second segment: sports, traffic", "D) first segment: national, weather, international second segment: traffic, sports", "E) first segment: traffic, weather, sports second segment: national, international" ], "answer": "B" }, { "id": "ar_lsat_201406_4-G_1_2", "context": "A radio station airs hourly news updates every morning. Each update consists of exactly five reports—two of general interest: international and national; and three of local interest: sports, traffic, and weather. Each update must be structured as follows: There are exactly two segments, the first segment containing three reports and the second segment containing two. Within each segment, reports are ordered by length, from longest to shortest. Each segment contains at least one report of local interest. The national report is always the longest of the five reports. The sports report is always the shortest of the five reports. The international report is always longer than the weather report.", "question": "If the traffic report is the last report in the first segment, then which one of the following must be true?", "options": [ "A) The national report is the first report in the first segment.", "B) The international report is the second report in the first segment.", "C) The weather report is the second report in the first segment.", "D) The national report is the first report in the second segment.", "E) The sports report is the last report in the second segment." ], "answer": "E" }, { "id": "ar_lsat_201406_4-G_1_3", "context": "A radio station airs hourly news updates every morning. Each update consists of exactly five reports—two of general interest: international and national; and three of local interest: sports, traffic, and weather. Each update must be structured as follows: There are exactly two segments, the first segment containing three reports and the second segment containing two. Within each segment, reports are ordered by length, from longest to shortest. Each segment contains at least one report of local interest. The national report is always the longest of the five reports. The sports report is always the shortest of the five reports. The international report is always longer than the weather report.", "question": "If the national report is the first report in the second segment, then exactly how many of the reports are there any one of which could be the first report in the first segment?", "options": [ "A) one", "B) two", "C) three", "D) four", "E) five" ], "answer": "B" }, { "id": "ar_lsat_201406_4-G_1_4", "context": "A radio station airs hourly news updates every morning. Each update consists of exactly five reports—two of general interest: international and national; and three of local interest: sports, traffic, and weather. Each update must be structured as follows: There are exactly two segments, the first segment containing three reports and the second segment containing two. Within each segment, reports are ordered by length, from longest to shortest. Each segment contains at least one report of local interest. The national report is always the longest of the five reports. The sports report is always the shortest of the five reports. The international report is always longer than the weather report.", "question": "Which one of the following CANNOT be true?", "options": [ "A) The international report is the first report in the first segment.", "B) The national report is the first report in the first segment.", "C) The national report is the first report in the second segment.", "D) The weather report is the first report in the first segment.", "E) The weather report is the last report in the second segment." ], "answer": "D" }, { "id": "ar_lsat_201406_4-G_1_5", "context": "A radio station airs hourly news updates every morning. Each update consists of exactly five reports—two of general interest: international and national; and three of local interest: sports, traffic, and weather. Each update must be structured as follows: There are exactly two segments, the first segment containing three reports and the second segment containing two. Within each segment, reports are ordered by length, from longest to shortest. Each segment contains at least one report of local interest. The national report is always the longest of the five reports. The sports report is always the shortest of the five reports. The international report is always longer than the weather report.", "question": "The order of the reports is fully determined if which one of the following is true?", "options": [ "A) The international report is the last report in the first segment.", "B) The national report is the first report in the first segment.", "C) The national report is the first report in the second segment.", "D) The sports report is the last report in the second segment.", "E) The weather report is the last report in the first segment." ], "answer": "A" }, { "id": "ar_lsat_201406_4-G_1_6", "context": "A radio station airs hourly news updates every morning. Each update consists of exactly five reports—two of general interest: international and national; and three of local interest: sports, traffic, and weather. Each update must be structured as follows: There are exactly two segments, the first segment containing three reports and the second segment containing two. Within each segment, reports are ordered by length, from longest to shortest. Each segment contains at least one report of local interest. The national report is always the longest of the five reports. The sports report is always the shortest of the five reports. The international report is always longer than the weather report.", "question": "If the traffic report is the first report in the first segment, then which one of the following could be true?", "options": [ "A) The international report is the first report in the second segment.", "B) The national report is the second report in the first segment.", "C) The weather report is the second report in the first segment.", "D) The weather report is the first report in the second segment.", "E) The weather report is the last report in the second segment." ], "answer": "E" }, { "id": "ar_lsat_201406_4-G_2_7", "context": "On a single day, a realtor will show a client five houses, exactly one house in each of five neighborhoods—Quarry, Riverton, Shelburne, Townsend, and Valencia. Each house will be shown to the client exactly once. The order in which the houses are shown is subject to the following constraints: The house in Riverton must be shown either first or second. The house in Townsend must be shown either first or fifth. The third house shown must be the house in Quarry or the house in Valencia. The house in Quarry cannot be shown either immediately before or immediately after the house in Shelburne.", "question": "If the house in Quarry is shown fourth, which one of the following must be true?", "options": [ "A) The house in Riverton is shown first.", "B) The house in Riverton is shown second.", "C) The house in Shelburne is shown second.", "D) The house in Townsend is shown first.", "E) The house in Valencia is shown third." ], "answer": "E" }, { "id": "ar_lsat_201406_4-G_2_8", "context": "On a single day, a realtor will show a client five houses, exactly one house in each of five neighborhoods—Quarry, Riverton, Shelburne, Townsend, and Valencia. Each house will be shown to the client exactly once. The order in which the houses are shown is subject to the following constraints: The house in Riverton must be shown either first or second. The house in Townsend must be shown either first or fifth. The third house shown must be the house in Quarry or the house in Valencia. The house in Quarry cannot be shown either immediately before or immediately after the house in Shelburne.", "question": "The order in which the houses are shown is fully determined if which one of the following is true?", "options": [ "A) The house in Quarry is shown third.", "B) The house in Riverton is shown first.", "C) The house in Shelburne is shown second.", "D) The house in Townsend is shown fifth.", "E) The house in Valencia is shown fourth." ], "answer": "C" }, { "id": "ar_lsat_201406_4-G_2_9", "context": "On a single day, a realtor will show a client five houses, exactly one house in each of five neighborhoods—Quarry, Riverton, Shelburne, Townsend, and Valencia. Each house will be shown to the client exactly once. The order in which the houses are shown is subject to the following constraints: The house in Riverton must be shown either first or second. The house in Townsend must be shown either first or fifth. The third house shown must be the house in Quarry or the house in Valencia. The house in Quarry cannot be shown either immediately before or immediately after the house in Shelburne.", "question": "If the house in Shelburne is shown earlier than the house in Quarry, which one of the following must be true?", "options": [ "A) The house in Quarry is shown fourth.", "B) The house in Riverton is shown second.", "C) The house in Shelburne is shown first.", "D) The house in Townsend is shown fifth.", "E) The house in Valencia is shown third." ], "answer": "D" }, { "id": "ar_lsat_201406_4-G_2_10", "context": "On a single day, a realtor will show a client five houses, exactly one house in each of five neighborhoods—Quarry, Riverton, Shelburne, Townsend, and Valencia. Each house will be shown to the client exactly once. The order in which the houses are shown is subject to the following constraints: The house in Riverton must be shown either first or second. The house in Townsend must be shown either first or fifth. The third house shown must be the house in Quarry or the house in Valencia. The house in Quarry cannot be shown either immediately before or immediately after the house in Shelburne.", "question": "Which one of the following could be true?", "options": [ "A) The house in Quarry is shown first.", "B) The house in Quarry is shown fifth.", "C) The house in Valencia is shown first.", "D) The house in Valencia is shown second.", "E) The house in Valencia is shown fifth." ], "answer": "A" }, { "id": "ar_lsat_201406_4-G_2_11", "context": "On a single day, a realtor will show a client five houses, exactly one house in each of five neighborhoods—Quarry, Riverton, Shelburne, Townsend, and Valencia. Each house will be shown to the client exactly once. The order in which the houses are shown is subject to the following constraints: The house in Riverton must be shown either first or second. The house in Townsend must be shown either first or fifth. The third house shown must be the house in Quarry or the house in Valencia. The house in Quarry cannot be shown either immediately before or immediately after the house in Shelburne.", "question": "If the house in Valencia is shown third, which one of the following must be true?", "options": [ "A) The house in Quarry is shown fourth.", "B) The house in Riverton is shown second.", "C) The house in Shelburne is shown first.", "D) The house in Shelburne is shown fourth.", "E) The house in Townsend is shown fifth." ], "answer": "E" }, { "id": "ar_lsat_201406_4-G_2_12", "context": "On a single day, a realtor will show a client five houses, exactly one house in each of five neighborhoods—Quarry, Riverton, Shelburne, Townsend, and Valencia. Each house will be shown to the client exactly once. The order in which the houses are shown is subject to the following constraints: The house in Riverton must be shown either first or second. The house in Townsend must be shown either first or fifth. The third house shown must be the house in Quarry or the house in Valencia. The house in Quarry cannot be shown either immediately before or immediately after the house in Shelburne.", "question": "Which one of the following, if substituted for the constraint that the house in Riverton must be shown either first or second, would have the same effect on the order in which the houses are shown?", "options": [ "A) The house in Riverton cannot be shown fourth.", "B) The house in Riverton must be shown earlier than the house in Valencia.", "C) The house in Valencia must be shown either third or fourth.", "D) The house in Quarry must be shown either immediately before or immediately after the house in Riverton.", "E) If the house in Townsend is not shown fifth, then it must be shown immediately before the house in Riverton." ], "answer": "B" }, { "id": "ar_lsat_201406_4-G_3_13", "context": "Five artifacts—V, W, X, Y, and Z—recovered from a sunken ship are each known to have originated in Iceland, Norway, or Sweden. These artifacts, together with the surviving fragments of a cargo list, have enabled historians to determine the following: W and Y originated in the same country. X originated in Norway or Sweden. More of the artifacts originated in Iceland than in Norway. If V originated in Iceland, then Z originated in Sweden.", "question": "Which one of the following could be an accurate matching of the artifacts to their origins?", "options": [ "A) Iceland: V, W Norway: X Sweden: Y, Z", "B) Iceland: W, Y Norway: none Sweden: V, X, Z", "C) Iceland: W, Y Norway: V, Z Sweden: X", "D) Iceland: V, W, Y Norway: Z Sweden: X", "E) Iceland: W, X, Y Norway: Z Sweden: V" ], "answer": "B" }, { "id": "ar_lsat_201406_4-G_3_14", "context": "Five artifacts—V, W, X, Y, and Z—recovered from a sunken ship are each known to have originated in Iceland, Norway, or Sweden. These artifacts, together with the surviving fragments of a cargo list, have enabled historians to determine the following: W and Y originated in the same country. X originated in Norway or Sweden. More of the artifacts originated in Iceland than in Norway. If V originated in Iceland, then Z originated in Sweden.", "question": "If Y and Z originated in Iceland, then what is the minimum number of artifacts that originated in Sweden?", "options": [ "A) zero", "B) one", "C) two", "D) three", "E) four" ], "answer": "A" }, { "id": "ar_lsat_201406_4-G_3_15", "context": "Five artifacts—V, W, X, Y, and Z—recovered from a sunken ship are each known to have originated in Iceland, Norway, or Sweden. These artifacts, together with the surviving fragments of a cargo list, have enabled historians to determine the following: W and Y originated in the same country. X originated in Norway or Sweden. More of the artifacts originated in Iceland than in Norway. If V originated in Iceland, then Z originated in Sweden.", "question": "Which one of the following CANNOT be true?", "options": [ "A) V and X both originated in Norway.", "B) V and Y both originated in Iceland.", "C) W and Z both originated in Iceland.", "D) W and Z both originated in Sweden.", "E) W and Y both originated in Norway." ], "answer": "E" }, { "id": "ar_lsat_201406_4-G_3_16", "context": "Five artifacts—V, W, X, Y, and Z—recovered from a sunken ship are each known to have originated in Iceland, Norway, or Sweden. These artifacts, together with the surviving fragments of a cargo list, have enabled historians to determine the following: W and Y originated in the same country. X originated in Norway or Sweden. More of the artifacts originated in Iceland than in Norway. If V originated in Iceland, then Z originated in Sweden.", "question": "If W and X originated in Sweden, then which one of the following must be true?", "options": [ "A) None of the artifacts originated in Norway.", "B) None of the artifacts originated in Iceland.", "C) V originated in Sweden.", "D) Z originated in Iceland.", "E) Z originated in Sweden." ], "answer": "A" }, { "id": "ar_lsat_201406_4-G_3_17", "context": "Five artifacts—V, W, X, Y, and Z—recovered from a sunken ship are each known to have originated in Iceland, Norway, or Sweden. These artifacts, together with the surviving fragments of a cargo list, have enabled historians to determine the following: W and Y originated in the same country. X originated in Norway or Sweden. More of the artifacts originated in Iceland than in Norway. If V originated in Iceland, then Z originated in Sweden.", "question": "Exactly how many of the artifacts are there any one of which could have originated in Norway?", "options": [ "A) one", "B) two", "C) three", "D) four", "E) five" ], "answer": "C" }, { "id": "ar_lsat_201406_4-G_3_18", "context": "Five artifacts—V, W, X, Y, and Z—recovered from a sunken ship are each known to have originated in Iceland, Norway, or Sweden. These artifacts, together with the surviving fragments of a cargo list, have enabled historians to determine the following: W and Y originated in the same country. X originated in Norway or Sweden. More of the artifacts originated in Iceland than in Norway. If V originated in Iceland, then Z originated in Sweden.", "question": "Which one of the following CANNOT be true?", "options": [ "A) Only V originated in Sweden.", "B) Only V and Z originated in Sweden.", "C) Only W and Y originated in Sweden.", "D) Only X and Z originated in Sweden.", "E) Only V, W, X, and Y originated in Sweden." ], "answer": "C" }, { "id": "ar_lsat_201406_4-G_4_19", "context": "The employees of the Summit Company—J, K, L, and M—work a four-day workweek from Monday through Thursday. Every Monday, work begins on four raw workpieces, each of which is worked on for four consecutive days. On any given day, an employee works on exactly one workpiece. At the beginning of each workday after Monday, each workpiece is transferred from the employee who worked on it the previous day to another one of the employees, who will work on it that day. Workpieces cannot be transferred in any of the following ways: From J to M. From K to J. From L to J.", "question": "Which one of the following describes four transfers of workpieces that could all occur together at the beginning of a particular workday?", "options": [ "A) From J to K; from K to L; from L to M; from M to J", "B) From J to K; from K to M; from L to K; from M to J", "C) From J to L; from K to M; from L to J; from M to K", "D) From J to L; from K to J; from L to M; from M to K", "E) From J to M; from K to L; from L to K; from M to J" ], "answer": "A" }, { "id": "ar_lsat_201406_4-G_4_20", "context": "The employees of the Summit Company—J, K, L, and M—work a four-day workweek from Monday through Thursday. Every Monday, work begins on four raw workpieces, each of which is worked on for four consecutive days. On any given day, an employee works on exactly one workpiece. At the beginning of each workday after Monday, each workpiece is transferred from the employee who worked on it the previous day to another one of the employees, who will work on it that day. Workpieces cannot be transferred in any of the following ways: From J to M. From K to J. From L to J.", "question": "Which one of the following transfers must occur at the beginning of any workday that is not a Monday?", "options": [ "A) From J to K", "B) From J to L", "C) From K to L", "D) From L to M", "E) From M to J" ], "answer": "E" }, { "id": "ar_lsat_201406_4-G_4_21", "context": "The employees of the Summit Company—J, K, L, and M—work a four-day workweek from Monday through Thursday. Every Monday, work begins on four raw workpieces, each of which is worked on for four consecutive days. On any given day, an employee works on exactly one workpiece. At the beginning of each workday after Monday, each workpiece is transferred from the employee who worked on it the previous day to another one of the employees, who will work on it that day. Workpieces cannot be transferred in any of the following ways: From J to M. From K to J. From L to J.", "question": "If one workpiece is worked on by only two of the four employees in the course of an entire workweek, those two employees must be", "options": [ "A) J and K", "B) J and L", "C) K and L", "D) K and M", "E) L and M" ], "answer": "C" }, { "id": "ar_lsat_201406_4-G_4_22", "context": "The employees of the Summit Company—J, K, L, and M—work a four-day workweek from Monday through Thursday. Every Monday, work begins on four raw workpieces, each of which is worked on for four consecutive days. On any given day, an employee works on exactly one workpiece. At the beginning of each workday after Monday, each workpiece is transferred from the employee who worked on it the previous day to another one of the employees, who will work on it that day. Workpieces cannot be transferred in any of the following ways: From J to M. From K to J. From L to J.", "question": "If L works on the same workpiece both on Tuesday and on Thursday, which one of the following must be true about that workpiece?", "options": [ "A) J works on it on Monday.", "B) K works on it on Monday.", "C) M works on it on Monday.", "D) J works on it on Wednesday.", "E) K works on it on Wednesday." ], "answer": "E" }, { "id": "ar_lsat_201406_4-G_4_23", "context": "The employees of the Summit Company—J, K, L, and M—work a four-day workweek from Monday through Thursday. Every Monday, work begins on four raw workpieces, each of which is worked on for four consecutive days. On any given day, an employee works on exactly one workpiece. At the beginning of each workday after Monday, each workpiece is transferred from the employee who worked on it the previous day to another one of the employees, who will work on it that day. Workpieces cannot be transferred in any of the following ways: From J to M. From K to J. From L to J.", "question": "Which one of the following could be true about the Tuesday?", "options": [ "A) Transfer from J to K and from K to M occur.", "B) Transfer from J to L and from L to M occur.", "C) Transfer from J to M and from M to J occur.", "D) Transfer from K to L and from L to K occur.", "E) Transfer from K to L and from L to M occur." ], "answer": "E" }, { "id": "ar_lsat_india1_1-G_1_1", "context": "A company employee generates a series of five-digit product codes in accordance with the following rules: The codes use the digits 0, 1, 2, 3, and 4, and no others. Each digit occurs exactly once in any code. The second digit has a value exactly twice that of the first digit. The value of the third digit is less than the value of the fifth digit.", "question": "If the last digit of an acceptable product code is 1, it must be true that the", "options": [ "A) first digit is 2", "B) second digit is 0", "C) third digit is 3", "D) fourth digit is 4", "E) fourth digit is 0" ], "answer": "A" }, { "id": "ar_lsat_india1_1-G_1_2", "context": "A company employee generates a series of five-digit product codes in accordance with the following rules: The codes use the digits 0, 1, 2, 3, and 4, and no others. Each digit occurs exactly once in any code. The second digit has a value exactly twice that of the first digit. The value of the third digit is less than the value of the fifth digit.", "question": "Which one of the following must be true about any acceptable product code?", "options": [ "A) The digit 1 appears in some position before the digit 2.", "B) The digit 1 appears in some position before the digit 3.", "C) The digit 2 appears in some position before the digit 3.", "D) The digit 3 appears in some position before the digit 0.", "E) The digit 4 appears in some position before the digit 3." ], "answer": "C" }, { "id": "ar_lsat_india1_1-G_1_3", "context": "A company employee generates a series of five-digit product codes in accordance with the following rules: The codes use the digits 0, 1, 2, 3, and 4, and no others. Each digit occurs exactly once in any code. The second digit has a value exactly twice that of the first digit. The value of the third digit is less than the value of the fifth digit.", "question": "If the third digit of an acceptable product code is not 0, which one of the following must be true?", "options": [ "A) The second digit of the product code is 2.", "B) The third digit of the product code is 3.", "C) The fourth digit of the product code is 0.", "D) The fifth digit of the product code is 3.", "E) The fifth digit of the product code is 1." ], "answer": "C" }, { "id": "ar_lsat_india1_1-G_1_4", "context": "A company employee generates a series of five-digit product codes in accordance with the following rules: The codes use the digits 0, 1, 2, 3, and 4, and no others. Each digit occurs exactly once in any code. The second digit has a value exactly twice that of the first digit. The value of the third digit is less than the value of the fifth digit.", "question": "Any of the following pairs could be the third and fourth digits, respectively, of an acceptable product code, EXCEPT:", "options": [ "A) 0, 1", "B) 0, 3", "C) 1, 0", "D) 3, 0", "E) 3, 4" ], "answer": "E" }, { "id": "ar_lsat_india1_1-G_1_5", "context": "A company employee generates a series of five-digit product codes in accordance with the following rules: The codes use the digits 0, 1, 2, 3, and 4, and no others. Each digit occurs exactly once in any code. The second digit has a value exactly twice that of the first digit. The value of the third digit is less than the value of the fifth digit.", "question": "Which one of the following must be true about any acceptable product code?", "options": [ "A) There is exactly one digit between the digit 0 and the digit 1.", "B) There is exactly one digit between the digit 1 and the digit 2.", "C) There are at most two digits between the digit 1 and the digit 3.", "D) There are at most two digits between the digit 2 and the digit 3.", "E) There are at most two digits between the digit 2 and the digit 4." ], "answer": "E" }, { "id": "ar_lsat_india1_1-G_2_6", "context": "Exactly three films—Greed, Harvest, and Limelight—are shown during a film club's festival held on Thursday, Friday, and Saturday. Each film is shown at least once during the festival but never more than once on a given day. On each day at least one film is shown. Films are shown one at a time. The following conditions apply: On Thursday Harvest is shown, and no film is shown after it on that day. On Friday either Greed or Limelight, but not both, is shown, and no film is shown after it on that day. On Saturday either Greed or Harvest, but not both, is shown, and no film is shown after it on that day.", "question": "Which one of the following could be a complete and accurate description of the order in which the films are shown at the festival?", "options": [ "A) Thursday: Limelight, then Harvest; Friday: Limelight; Saturday: Harvest", "B) Thursday: Harvest; Friday: Greed, then Limelight; Saturday: Limelight, then Greed", "C) Thursday: Harvest; Friday: Limelight; Saturday: Limelight, then Greed", "D) Thursday: Greed, then Harvest, then Limelight; Friday: Limelight; Saturday: Greed", "E) Thursday: Greed, then Harvest; Friday: Limelight, then Harvest; Saturday: Harvest" ], "answer": "C" }, { "id": "ar_lsat_india1_1-G_2_7", "context": "Exactly three films—Greed, Harvest, and Limelight—are shown during a film club's festival held on Thursday, Friday, and Saturday. Each film is shown at least once during the festival but never more than once on a given day. On each day at least one film is shown. Films are shown one at a time. The following conditions apply: On Thursday Harvest is shown, and no film is shown after it on that day. On Friday either Greed or Limelight, but not both, is shown, and no film is shown after it on that day. On Saturday either Greed or Harvest, but not both, is shown, and no film is shown after it on that day.", "question": "Which one of the following CANNOT be true?", "options": [ "A) Harvest is the last film shown on each day of the festival.", "B) Limelight is shown on each day of the festival.", "C) Greed is shown second on each day of the festival.", "D) A different film is shown first on each day of the festival.", "E) A different film is shown last on each day of the festival." ], "answer": "A" }, { "id": "ar_lsat_india1_1-G_2_8", "context": "Exactly three films—Greed, Harvest, and Limelight—are shown during a film club's festival held on Thursday, Friday, and Saturday. Each film is shown at least once during the festival but never more than once on a given day. On each day at least one film is shown. Films are shown one at a time. The following conditions apply: On Thursday Harvest is shown, and no film is shown after it on that day. On Friday either Greed or Limelight, but not both, is shown, and no film is shown after it on that day. On Saturday either Greed or Harvest, but not both, is shown, and no film is shown after it on that day.", "question": "If Limelight is never shown again during the festival once Greed is shown, then which one of the following is the maximum number of film showings that could occur during the festival?", "options": [ "A) three", "B) four", "C) five", "D) six", "E) seven" ], "answer": "D" }, { "id": "ar_lsat_india1_1-G_2_9", "context": "Exactly three films—Greed, Harvest, and Limelight—are shown during a film club's festival held on Thursday, Friday, and Saturday. Each film is shown at least once during the festival but never more than once on a given day. On each day at least one film is shown. Films are shown one at a time. The following conditions apply: On Thursday Harvest is shown, and no film is shown after it on that day. On Friday either Greed or Limelight, but not both, is shown, and no film is shown after it on that day. On Saturday either Greed or Harvest, but not both, is shown, and no film is shown after it on that day.", "question": "If Greed is shown exactly three times, Harvest is shown exactly twice, and Limelight is shown exactly once, then which one of the following must be true?", "options": [ "A) All three films are shown on Thursday.", "B) Exactly two films are shown on Saturday.", "C) Limelight and Harvest are both shown on Thursday.", "D) Greed is the only film shown on Saturday.", "E) Harvest and Greed are both shown on Friday." ], "answer": "E" }, { "id": "ar_lsat_india1_1-G_2_10", "context": "Exactly three films—Greed, Harvest, and Limelight—are shown during a film club's festival held on Thursday, Friday, and Saturday. Each film is shown at least once during the festival but never more than once on a given day. On each day at least one film is shown. Films are shown one at a time. The following conditions apply: On Thursday Harvest is shown, and no film is shown after it on that day. On Friday either Greed or Limelight, but not both, is shown, and no film is shown after it on that day. On Saturday either Greed or Harvest, but not both, is shown, and no film is shown after it on that day.", "question": "If Limelight is shown exactly three times, Harvest is shown exactly twice, and Greed is shown exactly once, then which one of the following is a complete and accurate list of the films that could be the first film shown on Thursday?", "options": [ "A) Harvest", "B) Limelight", "C) Greed, Harvest", "D) Greed, Limelight", "E) Greed, Harvest, Limelight" ], "answer": "D" }, { "id": "ar_lsat_india1_1-G_3_11", "context": "A cruise line is scheduling seven week-long voyages for the ship Freedom. Each voyage will occur in exactly one of the first seven weeks of the season: weeks 1 through 7. Each voyage will be to exactly one of four destinations: Guadeloupe, Jamaica, Martinique, or Trinidad. Each destination will be scheduled for at least one of the weeks. The following conditions apply to Freedom's schedule: Jamaica will not be its destination in week 4. Trinidad will be its destination in week 7. Freedom will make exactly two voyages to Martinique, and at least one voyage to Guadeloupe will occur in some week between those two voyages. Guadeloupe will be its destination in the week preceding any voyage it makes to Jamaica. No destination will be scheduled for consecutive weeks.", "question": "Which one of the following is an acceptable schedule of destinations for Freedom, in order from week 1 through week 7?", "options": [ "A) Guadeloupe, Jamaica, Martinique, Trinidad, Guadeloupe, Martinique, Trinidad", "B) Guadeloupe, Martinique, Trinidad, Martinique, Guadeloupe, Jamaica, Trinidad", "C) Jamaica, Martinique, Guadeloupe, Martinique, Guadeloupe, Jamaica, Trinidad", "D) Martinique, Trinidad, Guadeloupe, Jamaica, Martinique, Guadeloupe, Trinidad", "E) Martinique, Trinidad, Guadeloupe, Trinidad, Guadeloupe, Jamaica, Martinique" ], "answer": "A" }, { "id": "ar_lsat_india1_1-G_3_12", "context": "A cruise line is scheduling seven week-long voyages for the ship Freedom. Each voyage will occur in exactly one of the first seven weeks of the season: weeks 1 through 7. Each voyage will be to exactly one of four destinations: Guadeloupe, Jamaica, Martinique, or Trinidad. Each destination will be scheduled for at least one of the weeks. The following conditions apply to Freedom's schedule: Jamaica will not be its destination in week 4. Trinidad will be its destination in week 7. Freedom will make exactly two voyages to Martinique, and at least one voyage to Guadeloupe will occur in some week between those two voyages. Guadeloupe will be its destination in the week preceding any voyage it makes to Jamaica. No destination will be scheduled for consecutive weeks.", "question": "Which one of the following CANNOT be true about Freedom's schedule of voyages?", "options": [ "A) Freedom makes a voyage to Trinidad in week 6.", "B) Freedom makes a voyage to Martinique in week 5.", "C) Freedom makes a voyage to Jamaica in week 6.", "D) Freedom makes a voyage to Jamaica in week 3.", "E) Freedom makes a voyage to Guadeloupe in week 3." ], "answer": "A" }, { "id": "ar_lsat_india1_1-G_3_13", "context": "A cruise line is scheduling seven week-long voyages for the ship Freedom. Each voyage will occur in exactly one of the first seven weeks of the season: weeks 1 through 7. Each voyage will be to exactly one of four destinations: Guadeloupe, Jamaica, Martinique, or Trinidad. Each destination will be scheduled for at least one of the weeks. The following conditions apply to Freedom's schedule: Jamaica will not be its destination in week 4. Trinidad will be its destination in week 7. Freedom will make exactly two voyages to Martinique, and at least one voyage to Guadeloupe will occur in some week between those two voyages. Guadeloupe will be its destination in the week preceding any voyage it makes to Jamaica. No destination will be scheduled for consecutive weeks.", "question": "If Freedom makes a voyage to Trinidad in week 5, which one of the following could be true?", "options": [ "A) Freedom makes a voyage to Trinidad in week 1.", "B) Freedom makes a voyage to Martinique in week 2.", "C) Freedom makes a voyage to Guadeloupe in week 3.", "D) Freedom makes a voyage to Martinique in week 4.", "E) Freedom makes a voyage to Jamaica in week 6." ], "answer": "D" }, { "id": "ar_lsat_india1_1-G_3_14", "context": "A cruise line is scheduling seven week-long voyages for the ship Freedom. Each voyage will occur in exactly one of the first seven weeks of the season: weeks 1 through 7. Each voyage will be to exactly one of four destinations: Guadeloupe, Jamaica, Martinique, or Trinidad. Each destination will be scheduled for at least one of the weeks. The following conditions apply to Freedom's schedule: Jamaica will not be its destination in week 4. Trinidad will be its destination in week 7. Freedom will make exactly two voyages to Martinique, and at least one voyage to Guadeloupe will occur in some week between those two voyages. Guadeloupe will be its destination in the week preceding any voyage it makes to Jamaica. No destination will be scheduled for consecutive weeks.", "question": "f Freedom makes a voyage to Guadeloupe in week 1 and a voyage to Jamaica in week 5, which one of the following must be true?", "options": [ "A) Freedom makes a voyage to Jamaica in week 2.", "B) Freedom makes a voyage to Trinidad in week 2.", "C) Freedom makes a voyage to Martinique in week 3.", "D) Freedom makes a voyage to Guadeloupe in week 6.", "E) Freedom makes a voyage to Martinique in week 6." ], "answer": "E" }, { "id": "ar_lsat_india1_1-G_3_15", "context": "A cruise line is scheduling seven week-long voyages for the ship Freedom. Each voyage will occur in exactly one of the first seven weeks of the season: weeks 1 through 7. Each voyage will be to exactly one of four destinations: Guadeloupe, Jamaica, Martinique, or Trinidad. Each destination will be scheduled for at least one of the weeks. The following conditions apply to Freedom's schedule: Jamaica will not be its destination in week 4. Trinidad will be its destination in week 7. Freedom will make exactly two voyages to Martinique, and at least one voyage to Guadeloupe will occur in some week between those two voyages. Guadeloupe will be its destination in the week preceding any voyage it makes to Jamaica. No destination will be scheduled for consecutive weeks.", "question": "If Freedom makes a voyage to Guadeloupe in week 1 and to Trinidad in week 2, which one of the following must be true?", "options": [ "A) Freedom makes a voyage to Martinique in week 3.", "B) Freedom makes a voyage to Martinique in week 4.", "C) Freedom makes a voyage to Martinique in week 5.", "D) Freedom makes a voyage to Guadeloupe in week 3.", "E) Freedom makes a voyage to Guadeloupe in week 5." ], "answer": "A" }, { "id": "ar_lsat_india1_1-G_3_16", "context": "A cruise line is scheduling seven week-long voyages for the ship Freedom. Each voyage will occur in exactly one of the first seven weeks of the season: weeks 1 through 7. Each voyage will be to exactly one of four destinations: Guadeloupe, Jamaica, Martinique, or Trinidad. Each destination will be scheduled for at least one of the weeks. The following conditions apply to Freedom's schedule: Jamaica will not be its destination in week 4. Trinidad will be its destination in week 7. Freedom will make exactly two voyages to Martinique, and at least one voyage to Guadeloupe will occur in some week between those two voyages. Guadeloupe will be its destination in the week preceding any voyage it makes to Jamaica. No destination will be scheduled for consecutive weeks.", "question": "If Freedom makes a voyage to Martinique in week 3, which one of the following could be an accurate list of Freedom's destinations in week 4 and week 5, respectively?", "options": [ "A) Guadeloupe, Trinidad", "B) Jamaica, Guadeloupe", "C) Martinique, Trinidad", "D) Trinidad, Jamaica", "E) Trinidad, Martinique" ], "answer": "A" }, { "id": "ar_lsat_india1_1-G_3_17", "context": "A cruise line is scheduling seven week-long voyages for the ship Freedom. Each voyage will occur in exactly one of the first seven weeks of the season: weeks 1 through 7. Each voyage will be to exactly one of four destinations: Guadeloupe, Jamaica, Martinique, or Trinidad. Each destination will be scheduled for at least one of the weeks. The following conditions apply to Freedom's schedule: Jamaica will not be its destination in week 4. Trinidad will be its destination in week 7. Freedom will make exactly two voyages to Martinique, and at least one voyage to Guadeloupe will occur in some week between those two voyages. Guadeloupe will be its destination in the week preceding any voyage it makes to Jamaica. No destination will be scheduled for consecutive weeks.", "question": "Which one of the following must be true about Freedom's schedule of voyages?", "options": [ "A) Freedom makes a voyage to Guadeloupe either in week 1 or else in week 2.", "B) Freedom makes a voyage to Martinique either in week 2 or else in week 3.", "C) Freedom makes at most two voyages to Guadeloupe.", "D) Freedom makes at most two voyages to Jamaica.", "E) Freedom makes at most two voyages to Trinidad." ], "answer": "D" }, { "id": "ar_lsat_india1_1-G_4_18", "context": "There are exactly three recycling centers in Rivertown: Center 1, Center 2, and Center 3. Exactly five kinds of material are recycled at these recycling centers: glass, newsprint, plastic, tin, and wood. Each recycling center recycles at least two but no more than three of these kinds of material. The following conditions must hold: Any recycling center that recycles wood also recycles newsprint. Every kind of material that Center 2 recycles is also recycled at Center 1. Only one of the recycling centers recycles plastic, and that recycling center does not recycle glass.", "question": "Which one of the following could be an accurate account of all the kinds of material recycled at each recycling center in Rivertown?", "options": [ "A) Center 1: newsprint, plastic, wood; Center 2: newsprint, wood; Center 3: glass, tin, wood", "B) Center 1: glass, newsprint, tin; Center 2: glass, newsprint, tin; Center 3: newsprint, plastic, wood", "C) Center 1: glass, newsprint, wood; Center 2: glass, newsprint, tin; Center 3: plastic, tin", "D) Center 1: glass, plastic, tin; Center 2: glass, tin; Center 3: newsprint, wood", "E) Center 1: newsprint, plastic, wood; Center 2: newsprint, plastic, wood; Center 3: glass, newsprint, tin" ], "answer": "B" }, { "id": "ar_lsat_india1_1-G_4_19", "context": "There are exactly three recycling centers in Rivertown: Center 1, Center 2, and Center 3. Exactly five kinds of material are recycled at these recycling centers: glass, newsprint, plastic, tin, and wood. Each recycling center recycles at least two but no more than three of these kinds of material. The following conditions must hold: Any recycling center that recycles wood also recycles newsprint. Every kind of material that Center 2 recycles is also recycled at Center 1. Only one of the recycling centers recycles plastic, and that recycling center does not recycle glass.", "question": "ch one of the following is a complete and accurate list of the recycling centers in Rivertown any one of which could recycle plastic?", "options": [ "A) Center 1 only", "B) Center 3 only", "C) Center 1, Center 2", "D) Center 1, Center 3", "E) Center 1, Center 2, Center 3" ], "answer": "D" }, { "id": "ar_lsat_india1_1-G_4_20", "context": "There are exactly three recycling centers in Rivertown: Center 1, Center 2, and Center 3. Exactly five kinds of material are recycled at these recycling centers: glass, newsprint, plastic, tin, and wood. Each recycling center recycles at least two but no more than three of these kinds of material. The following conditions must hold: Any recycling center that recycles wood also recycles newsprint. Every kind of material that Center 2 recycles is also recycled at Center 1. Only one of the recycling centers recycles plastic, and that recycling center does not recycle glass.", "question": "If Center 2 recycles three kinds of material, then which one of the following kinds of material must Center 3 recycle?", "options": [ "A) glass", "B) newsprint", "C) plastic", "D) tin", "E) wood" ], "answer": "C" }, { "id": "ar_lsat_india1_1-G_4_21", "context": "There are exactly three recycling centers in Rivertown: Center 1, Center 2, and Center 3. Exactly five kinds of material are recycled at these recycling centers: glass, newsprint, plastic, tin, and wood. Each recycling center recycles at least two but no more than three of these kinds of material. The following conditions must hold: Any recycling center that recycles wood also recycles newsprint. Every kind of material that Center 2 recycles is also recycled at Center 1. Only one of the recycling centers recycles plastic, and that recycling center does not recycle glass.", "question": "If each recycling center in Rivertown recycles exactly three kinds of material, then which one of the following could be true?", "options": [ "A) Only Center 2 recycles glass.", "B) Only Center 3 recycles newsprint.", "C) Only Center 1 recycles plastic.", "D) Only Center 3 recycles tin.", "E) Only Center 1 recycles wood." ], "answer": "D" }, { "id": "ar_lsat_india1_1-G_4_22", "context": "There are exactly three recycling centers in Rivertown: Center 1, Center 2, and Center 3. Exactly five kinds of material are recycled at these recycling centers: glass, newsprint, plastic, tin, and wood. Each recycling center recycles at least two but no more than three of these kinds of material. The following conditions must hold: Any recycling center that recycles wood also recycles newsprint. Every kind of material that Center 2 recycles is also recycled at Center 1. Only one of the recycling centers recycles plastic, and that recycling center does not recycle glass.", "question": "If Center 3 recycles glass, then which one of the following kinds of material must Center 2 recycle?", "options": [ "A) glass", "B) newsprint", "C) plastic", "D) tin", "E) wood" ], "answer": "B" }, { "id": "ar_lsat_india1_1-G_4_23", "context": "There are exactly three recycling centers in Rivertown: Center 1, Center 2, and Center 3. Exactly five kinds of material are recycled at these recycling centers: glass, newsprint, plastic, tin, and wood. Each recycling center recycles at least two but no more than three of these kinds of material. The following conditions must hold: Any recycling center that recycles wood also recycles newsprint. Every kind of material that Center 2 recycles is also recycled at Center 1. Only one of the recycling centers recycles plastic, and that recycling center does not recycle glass.", "question": "If Center 1 is the only recycling center that recycles wood, then which one of the following could be a complete and accurate list of the kinds of material that one of the recycling centers recycles?", "options": [ "A) plastic, tin", "B) newsprint, wood", "C) newsprint, tin", "D) glass, wood", "E) glass, tin" ], "answer": "A" }, { "id": "ar_lsat_india3_4-G_1_1", "context": "A researcher is evaluating exactly four medicines: W, X, Y, and Z. The only side effects the medicines can have are fatigue, headaches, palpitations, and sweating. The researcher knows the following to be true of the medicines side effects: Each medicine has at least one side effect. No medicine has both fatigue and palpitations as side effects. Medicine Z has no side effect in common with any of the other medicines. Medicines W and X have exactly one side effect in common. Fatigue is a side effect of medicine W. Palpitations are a side effect of medicine X. Sweating is not a side effect of medicine Y.", "question": "If sweating is not a side effect of medicine X, then which one of the following statements must be true?", "options": [ "A) Fatigue is a side effect of medicine Y.", "B) Headaches are a side effect of medicine W.", "C) Headaches are a side effect of medicine Y.", "D) Headaches are a side effect of medicine Z.", "E) Palpitations are a side effect of medicine Y." ], "answer": "B" }, { "id": "ar_lsat_india3_4-G_1_2", "context": "A researcher is evaluating exactly four medicines: W, X, Y, and Z. The only side effects the medicines can have are fatigue, headaches, palpitations, and sweating. The researcher knows the following to be true of the medicines side effects: Each medicine has at least one side effect. No medicine has both fatigue and palpitations as side effects. Medicine Z has no side effect in common with any of the other medicines. Medicines W and X have exactly one side effect in common. Fatigue is a side effect of medicine W. Palpitations are a side effect of medicine X. Sweating is not a side effect of medicine Y.", "question": "If sweating is not a side effect of medicine Z, then which one of the following statements must be true?", "options": [ "A) Fatigue is a side effect of medicine Y.", "B) Headaches are a side effect of medicine W.", "C) Headaches are a side effect of medicine Y.", "D) Headaches are a side effect of medicine Z.", "E) Palpitations are a side effect of medicine Y." ], "answer": "D" }, { "id": "ar_lsat_india3_4-G_1_3", "context": "A researcher is evaluating exactly four medicines: W, X, Y, and Z. The only side effects the medicines can have are fatigue, headaches, palpitations, and sweating. The researcher knows the following to be true of the medicines side effects: Each medicine has at least one side effect. No medicine has both fatigue and palpitations as side effects. Medicine Z has no side effect in common with any of the other medicines. Medicines W and X have exactly one side effect in common. Fatigue is a side effect of medicine W. Palpitations are a side effect of medicine X. Sweating is not a side effect of medicine Y.", "question": "Which one of the following statements could be true?", "options": [ "A) Fatigue is a side effect of medicine X.", "B) Fatigue is a side effect of medicine Z.", "C) Headaches are a side effect of medicine X.", "D) Palpitations are a side effect of medicine W.", "E) Palpitations are a side effect of medicine Z." ], "answer": "C" }, { "id": "ar_lsat_india3_4-G_1_4", "context": "A researcher is evaluating exactly four medicines: W, X, Y, and Z. The only side effects the medicines can have are fatigue, headaches, palpitations, and sweating. The researcher knows the following to be true of the medicines side effects: Each medicine has at least one side effect. No medicine has both fatigue and palpitations as side effects. Medicine Z has no side effect in common with any of the other medicines. Medicines W and X have exactly one side effect in common. Fatigue is a side effect of medicine W. Palpitations are a side effect of medicine X. Sweating is not a side effect of medicine Y.", "question": "If medicines W, X, and Y have a side effect in common, then which one of the following statements must be true?", "options": [ "A) Fatigue is a side effect of medicine Y.", "B) Headaches are a side effect of medicine W.", "C) Headaches are a side effect of medicine Z.", "D) Palpitations are a side effect of medicine Y.", "E) Sweating is a side effect of medicine W." ], "answer": "B" }, { "id": "ar_lsat_india3_4-G_1_5", "context": "A researcher is evaluating exactly four medicines: W, X, Y, and Z. The only side effects the medicines can have are fatigue, headaches, palpitations, and sweating. The researcher knows the following to be true of the medicines side effects: Each medicine has at least one side effect. No medicine has both fatigue and palpitations as side effects. Medicine Z has no side effect in common with any of the other medicines. Medicines W and X have exactly one side effect in common. Fatigue is a side effect of medicine W. Palpitations are a side effect of medicine X. Sweating is not a side effect of medicine Y.", "question": "If medicine Y has more than one side effect, then which one of the following statements must be true?", "options": [ "A) Headaches are a side effect of medicine Y.", "B) Palpitations are a side effect of medicine Y.", "C) Sweating is a side effect of medicine W.", "D) Palpitations are not a side effect of medicine Y.", "E) Sweating is not a side effect of medicine Z." ], "answer": "A" }, { "id": "ar_lsat_india3_4-G_2_6", "context": "Tracy's Flower Shop delivers exactly six types of flowers—lilacs, magnolias, orchids, roses, tulips, and violets. Exactly six deliveries are made over a period of two consecutive days—Friday and Saturday. Three deliveries are made each day, at three different times each day—10 A.M., 2 P.M., and 4 P.M. Each of the six deliveries involves only one of the six types of flowers. The deliveries are made in accord with the following: The violets are delivered on Friday. The lilacs are delivered at some time before the tulips. The violets are delivered at some time before the magnolias. The orchids and the roses are delivered on the same day as one another.", "question": "Which one of the following could be an accurate list of the flowers in the order in which they are delivered, from first to last?", "options": [ "A) magnolias, lilacs, violets, orchids, tulips, roses", "B) orchids, violets, roses, lilacs, magnolias, tulips", "C) roses, orchids, lilacs, tulips, violets, magnolias", "D) violets, orchids, magnolias, lilacs, tulips, roses", "E) violets, roses, orchids, tulips, magnolias, lilacs" ], "answer": "B" }, { "id": "ar_lsat_india3_4-G_2_7", "context": "Tracy's Flower Shop delivers exactly six types of flowers—lilacs, magnolias, orchids, roses, tulips, and violets. Exactly six deliveries are made over a period of two consecutive days—Friday and Saturday. Three deliveries are made each day, at three different times each day—10 A.M., 2 P.M., and 4 P.M. Each of the six deliveries involves only one of the six types of flowers. The deliveries are made in accord with the following: The violets are delivered on Friday. The lilacs are delivered at some time before the tulips. The violets are delivered at some time before the magnolias. The orchids and the roses are delivered on the same day as one another.", "question": "If the roses are delivered on Friday at 2 P.M., then each of the following could be true EXCEPT:", "options": [ "A) The violets are delivered on Friday at 4 P.M.", "B) The tulips are delivered on Saturday at 2 P.M.", "C) The orchids are delivered on Friday at 4 P.M.", "D) The magnolias are delivered on Friday at 4 P.M.", "E) The lilacs are delivered on Saturday at 2 P.M." ], "answer": "D" }, { "id": "ar_lsat_india3_4-G_2_8", "context": "Tracy's Flower Shop delivers exactly six types of flowers—lilacs, magnolias, orchids, roses, tulips, and violets. Exactly six deliveries are made over a period of two consecutive days—Friday and Saturday. Three deliveries are made each day, at three different times each day—10 A.M., 2 P.M., and 4 P.M. Each of the six deliveries involves only one of the six types of flowers. The deliveries are made in accord with the following: The violets are delivered on Friday. The lilacs are delivered at some time before the tulips. The violets are delivered at some time before the magnolias. The orchids and the roses are delivered on the same day as one another.", "question": "If the magnolias and the lilacs are delivered on Saturday, then which one of the following could be true?", "options": [ "A) The orchids are delivered on Friday at 2 P.M.", "B) The orchids are delivered on Saturday at 10 A.M.", "C) The roses are delivered on Saturday at 4 P.M.", "D) The tulips are delivered on Friday at 4 P.M.", "E) The tulips are delivered on Saturday at 10 A.M." ], "answer": "A" }, { "id": "ar_lsat_india3_4-G_2_9", "context": "Tracy's Flower Shop delivers exactly six types of flowers—lilacs, magnolias, orchids, roses, tulips, and violets. Exactly six deliveries are made over a period of two consecutive days—Friday and Saturday. Three deliveries are made each day, at three different times each day—10 A.M., 2 P.M., and 4 P.M. Each of the six deliveries involves only one of the six types of flowers. The deliveries are made in accord with the following: The violets are delivered on Friday. The lilacs are delivered at some time before the tulips. The violets are delivered at some time before the magnolias. The orchids and the roses are delivered on the same day as one another.", "question": "Which one of the following could be an accurate list of the flowers in the order in which they are delivered, from first to last?", "options": [ "A) lilacs, roses, orchids, violets, tulips, magnolias", "B) magnolias, violets, lilacs, orchids, roses, tulips", "C) orchids, lilacs, violets, magnolias, roses, tulips", "D) orchids, roses, violets, magnolias, tulips, lilacs", "E) roses, violets, orchids, lilacs, tulips, magnolias" ], "answer": "E" }, { "id": "ar_lsat_india3_4-G_2_10", "context": "Tracy's Flower Shop delivers exactly six types of flowers—lilacs, magnolias, orchids, roses, tulips, and violets. Exactly six deliveries are made over a period of two consecutive days—Friday and Saturday. Three deliveries are made each day, at three different times each day—10 A.M., 2 P.M., and 4 P.M. Each of the six deliveries involves only one of the six types of flowers. The deliveries are made in accord with the following: The violets are delivered on Friday. The lilacs are delivered at some time before the tulips. The violets are delivered at some time before the magnolias. The orchids and the roses are delivered on the same day as one another.", "question": "Which one of the following could be true?", "options": [ "A) e lilacs are delivered on Saturday at 4 P.M.", "B) The magnolias are delivered on Friday at 10 A.M.", "C) The magnolias are delivered on Friday at 2 P.M.", "D) The tulips are delivered on Friday at 10 A.M.", "E) The violets are delivered on Saturday at 4 P.M." ], "answer": "C" }, { "id": "ar_lsat_india3_4-G_2_11", "context": "Tracy's Flower Shop delivers exactly six types of flowers—lilacs, magnolias, orchids, roses, tulips, and violets. Exactly six deliveries are made over a period of two consecutive days—Friday and Saturday. Three deliveries are made each day, at three different times each day—10 A.M., 2 P.M., and 4 P.M. Each of the six deliveries involves only one of the six types of flowers. The deliveries are made in accord with the following: The violets are delivered on Friday. The lilacs are delivered at some time before the tulips. The violets are delivered at some time before the magnolias. The orchids and the roses are delivered on the same day as one another.", "question": "If the tulips are delivered on Friday, then which one of the following CANNOT be true?", "options": [ "A) The magnolias are delivered on Friday at 2 P.M.", "B) The magnolias are delivered on Saturday at 4 P.M.", "C) The orchids are delivered on Saturday at 10 A.M.", "D) The roses are delivered on Saturday at 4 P.M.", "E) The violets are delivered on Friday at 4 P.M." ], "answer": "A" }, { "id": "ar_lsat_india3_4-G_2_12", "context": "Tracy's Flower Shop delivers exactly six types of flowers—lilacs, magnolias, orchids, roses, tulips, and violets. Exactly six deliveries are made over a period of two consecutive days—Friday and Saturday. Three deliveries are made each day, at three different times each day—10 A.M., 2 P.M., and 4 P.M. Each of the six deliveries involves only one of the six types of flowers. The deliveries are made in accord with the following: The violets are delivered on Friday. The lilacs are delivered at some time before the tulips. The violets are delivered at some time before the magnolias. The orchids and the roses are delivered on the same day as one another.", "question": "If the magnolias and the orchids are delivered on the same day, then which one of the following could be true?", "options": [ "A) he roses are delivered on Friday.", "B) The lilacs are delivered on Saturday.", "C) The tulips are delivered on Saturday.", "D) The orchids are delivered before the violets.", "E) The violets are delivered before the lilacs." ], "answer": "E" }, { "id": "ar_lsat_india3_4-G_2_13", "context": "Tracy's Flower Shop delivers exactly six types of flowers—lilacs, magnolias, orchids, roses, tulips, and violets. Exactly six deliveries are made over a period of two consecutive days—Friday and Saturday. Three deliveries are made each day, at three different times each day—10 A.M., 2 P.M., and 4 P.M. Each of the six deliveries involves only one of the six types of flowers. The deliveries are made in accord with the following: The violets are delivered on Friday. The lilacs are delivered at some time before the tulips. The violets are delivered at some time before the magnolias. The orchids and the roses are delivered on the same day as one another.", "question": "If the tulips are delivered after the roses, then which one of the following must be true?", "options": [ "A) The magnolias are delivered on Friday.", "B) The tulips are delivered on Saturday.", "C) The magnolias and the tulips are delivered on different days.", "D) The orchids and the tulips are delivered on different days.", "E) The tulips are delivered after the orchids." ], "answer": "B" }, { "id": "ar_lsat_india3_4-G_3_14", "context": "During a seven-year period, an amusement park builds exactly seven roller coasters—the Firecracker, the Gobbler, the Hurricane, the Jackrabbit, the Lasso, the Niagara, and the Pretzel. No two roller coasters are built in the same year. Each roller coaster is either steel or wooden. The following conditions must apply: The Pretzel is built in the second year. The roller coaster built in the first year is steel, and the one built in the seventh year is wooden. The Lasso is built after the Firecracker. The Jackrabbit and the Gobbler are built before the Hurricane. Exactly two of the roller coasters built after the Hurricane are steel. Wooden roller coasters are not built in any two consecutive years.", "question": "Which one of the following could be the order, from first to last, in which the roller coasters are built?", "options": [ "A) Gobbler, Jackrabbit, Pretzel, Hurricane, Firecracker, Lasso, Niagara", "B) Jackrabbit, Pretzel, Gobbler, Hurricane, Lasso, Firecracker, Niagara", "C) Jackrabbit, Pretzel, Gobbler, Hurricane, Niagara, Firecracker, Lasso", "D) Niagara, Pretzel, Gobbler, Jackrabbit, Hurricane, Firecracker, Lasso", "E) Niagara, Pretzel, Jackrabbit, Hurricane, Gobbler, Firecracker, Lasso" ], "answer": "C" }, { "id": "ar_lsat_india3_4-G_3_15", "context": "During a seven-year period, an amusement park builds exactly seven roller coasters—the Firecracker, the Gobbler, the Hurricane, the Jackrabbit, the Lasso, the Niagara, and the Pretzel. No two roller coasters are built in the same year. Each roller coaster is either steel or wooden. The following conditions must apply: The Pretzel is built in the second year. The roller coaster built in the first year is steel, and the one built in the seventh year is wooden. The Lasso is built after the Firecracker. The Jackrabbit and the Gobbler are built before the Hurricane. Exactly two of the roller coasters built after the Hurricane are steel. Wooden roller coasters are not built in any two consecutive years.", "question": "Which one of the following roller coasters must be steel?", "options": [ "A) Firecracker", "B) Gobbler", "C) Hurricane", "D) Jackrabbit", "E) Lasso" ], "answer": "A" }, { "id": "ar_lsat_india3_4-G_3_16", "context": "During a seven-year period, an amusement park builds exactly seven roller coasters—the Firecracker, the Gobbler, the Hurricane, the Jackrabbit, the Lasso, the Niagara, and the Pretzel. No two roller coasters are built in the same year. Each roller coaster is either steel or wooden. The following conditions must apply: The Pretzel is built in the second year. The roller coaster built in the first year is steel, and the one built in the seventh year is wooden. The Lasso is built after the Firecracker. The Jackrabbit and the Gobbler are built before the Hurricane. Exactly two of the roller coasters built after the Hurricane are steel. Wooden roller coasters are not built in any two consecutive years.", "question": "If the Firecracker is built in a year immediately after a year in which a wooden roller coaster is built, then which one of the following must be true?", "options": [ "A) The Gobbler is wooden.", "B) The Hurricane is wooden.", "C) The Firecracker is built in the sixth year.", "D) The Jackrabbit is built in the third year.", "E) The Lasso is built in the sixth year." ], "answer": "B" }, { "id": "ar_lsat_india3_4-G_3_17", "context": "During a seven-year period, an amusement park builds exactly seven roller coasters—the Firecracker, the Gobbler, the Hurricane, the Jackrabbit, the Lasso, the Niagara, and the Pretzel. No two roller coasters are built in the same year. Each roller coaster is either steel or wooden. The following conditions must apply: The Pretzel is built in the second year. The roller coaster built in the first year is steel, and the one built in the seventh year is wooden. The Lasso is built after the Firecracker. The Jackrabbit and the Gobbler are built before the Hurricane. Exactly two of the roller coasters built after the Hurricane are steel. Wooden roller coasters are not built in any two consecutive years.", "question": "Each of the following roller coasters must be built before the Lasso EXCEPT:", "options": [ "A) Firecracker", "B) Gobbler", "C) Hurricane", "D) Jackrabbit", "E) Niagara" ], "answer": "E" }, { "id": "ar_lsat_india3_4-G_3_18", "context": "During a seven-year period, an amusement park builds exactly seven roller coasters—the Firecracker, the Gobbler, the Hurricane, the Jackrabbit, the Lasso, the Niagara, and the Pretzel. No two roller coasters are built in the same year. Each roller coaster is either steel or wooden. The following conditions must apply: The Pretzel is built in the second year. The roller coaster built in the first year is steel, and the one built in the seventh year is wooden. The Lasso is built after the Firecracker. The Jackrabbit and the Gobbler are built before the Hurricane. Exactly two of the roller coasters built after the Hurricane are steel. Wooden roller coasters are not built in any two consecutive years.", "question": "If the Jackrabbit, the Hurricane, and the Firecracker are built in three consecutive years, in that order, then each of the following must be true EXCEPT:", "options": [ "A) The Firecracker is built before the Niagara.", "B) The Gobbler is built before the Jackrabbit.", "C) The Hurricane is built before the Niagara.", "D) The Niagara is built before the Lasso.", "E) The Pretzel is built before the Jackrabbit." ], "answer": "D" }, { "id": "ar_lsat_india3_4-G_4_19", "context": "On Tuesday evenings, the Community Center offers one session of each of the following six introductory classes: gymnastics, jazz dance, kung fu, meditation, tennis, and yoga. No other introductory classes are offered on Tuesdays. Each class is scheduled for exactly one hour, beginning at 5 P.M., 6 P.M., 7 P.M., or 8 P.M. Tuesdays schedule conforms to the following conditions: Yoga begins later than jazz dance but no later than kung fu. Meditation begins at the same time as exactly one other introductory class. No other introductory class begins at the same time as gymnastics. At most one of the other introductory classes begins later than gymnastics.", "question": "Which one of the following could be an accurate schedule of the Tuesday introductory classes?", "options": [ "A) 5 P.M.: jazz dance, meditation 6 P.M.: yoga 7 P.M.: gymnastics 8 P.M.: kung fu, tennis", "B) 5 P.M.: jazz dance 6 P.M.: meditation, tennis 7 P.M.: yoga 8 P.M.: gymnastics, kung fu", "C) 5 P.M.: jazz dance, meditation 6 P.M.: yoga 7 P.M.: kung fu, tennis 8 P.M.: gymnastics", "D) 5 P.M.: jazz dance, tennis 6 P.M.: meditation 7 P.M.: kung fu, yoga 8 P.M.: gymnastics", "E) 5 P.M.: tennis, yoga 6 P.M.: jazz dance, meditation 7 P.M.: gymnastics 8 P.M.: kung fu" ], "answer": "C" }, { "id": "ar_lsat_india3_4-G_4_20", "context": "On Tuesday evenings, the Community Center offers one session of each of the following six introductory classes: gymnastics, jazz dance, kung fu, meditation, tennis, and yoga. No other introductory classes are offered on Tuesdays. Each class is scheduled for exactly one hour, beginning at 5 P.M., 6 P.M., 7 P.M., or 8 P.M. Tuesdays schedule conforms to the following conditions: Yoga begins later than jazz dance but no later than kung fu. Meditation begins at the same time as exactly one other introductory class. No other introductory class begins at the same time as gymnastics. At most one of the other introductory classes begins later than gymnastics.", "question": "If meditation is scheduled to begin later than tennis, then which one of the following could be true of the schedule?", "options": [ "A) Jazz dance begins later than meditation.", "B) Kung fu begins later than gymnastics.", "C) Meditation begins later than kung fu.", "D) Tennis begins later than kung fu.", "E) Tennis begins later than yoga." ], "answer": "B" }, { "id": "ar_lsat_india3_4-G_4_21", "context": "On Tuesday evenings, the Community Center offers one session of each of the following six introductory classes: gymnastics, jazz dance, kung fu, meditation, tennis, and yoga. No other introductory classes are offered on Tuesdays. Each class is scheduled for exactly one hour, beginning at 5 P.M., 6 P.M., 7 P.M., or 8 P.M. Tuesdays schedule conforms to the following conditions: Yoga begins later than jazz dance but no later than kung fu. Meditation begins at the same time as exactly one other introductory class. No other introductory class begins at the same time as gymnastics. At most one of the other introductory classes begins later than gymnastics.", "question": "Which one of the following introductory classes could be the only class scheduled to begin at 5 P.M.?", "options": [ "A) yoga", "B) tennis", "C) meditation", "D) kung fu", "E) gymnastics" ], "answer": "B" }, { "id": "ar_lsat_india3_4-G_4_22", "context": "On Tuesday evenings, the Community Center offers one session of each of the following six introductory classes: gymnastics, jazz dance, kung fu, meditation, tennis, and yoga. No other introductory classes are offered on Tuesdays. Each class is scheduled for exactly one hour, beginning at 5 P.M., 6 P.M., 7 P.M., or 8 P.M. Tuesdays schedule conforms to the following conditions: Yoga begins later than jazz dance but no later than kung fu. Meditation begins at the same time as exactly one other introductory class. No other introductory class begins at the same time as gymnastics. At most one of the other introductory classes begins later than gymnastics.", "question": "Which one of the following introductory classes CANNOT be scheduled to start at 6 P.M.?", "options": [ "A) gymnastics", "B) jazz dance", "C) kung fu", "D) meditation", "E) tennis" ], "answer": "A" }, { "id": "ar_lsat_india5_1-G_1_1", "context": "Meena has six colored pencils—green, maroon, orange, red, white, and yellow. She sketches a drawing using exactly five of the six pencils, one pencil at a time. The following conditions must hold: No pencil is used more than once. Either the maroon or the yellow pencil is not used. The red pencil is used at some time before the green. The red pencil is used at some time before either the orange or the yellow, but not before both. The green pencil is used at some time before either the maroon or the white, but not before both.", "question": "Which one of the following could be an accurate list of the pencils used, from first to fifth?", "options": [ "A) orange, green, red, maroon, yellow", "B) red, green, orange, white, maroon", "C) red, orange, maroon, white, green", "D) white, red, orange, green, maroon", "E) white, yellow, orange, green, red" ], "answer": "D" }, { "id": "ar_lsat_india5_1-G_1_2", "context": "Meena has six colored pencils—green, maroon, orange, red, white, and yellow. She sketches a drawing using exactly five of the six pencils, one pencil at a time. The following conditions must hold: No pencil is used more than once. Either the maroon or the yellow pencil is not used. The red pencil is used at some time before the green. The red pencil is used at some time before either the orange or the yellow, but not before both. The green pencil is used at some time before either the maroon or the white, but not before both.", "question": "Which one of the following could be true?", "options": [ "A) The maroon pencil is used first, whereas the white is used second.", "B) The white pencil is used first, whereas the green is used second.", "C) The yellow pencil is used first, whereas the orange is used second.", "D) The yellow pencil is used first, whereas the orange is used fourth.", "E) The yellow pencil is used fourth, whereas the maroon is used fifth." ], "answer": "D" }, { "id": "ar_lsat_india5_1-G_1_3", "context": "Meena has six colored pencils—green, maroon, orange, red, white, and yellow. She sketches a drawing using exactly five of the six pencils, one pencil at a time. The following conditions must hold: No pencil is used more than once. Either the maroon or the yellow pencil is not used. The red pencil is used at some time before the green. The red pencil is used at some time before either the orange or the yellow, but not before both. The green pencil is used at some time before either the maroon or the white, but not before both.", "question": "Which one of the following CANNOT be the color of the fifth pencil used?", "options": [ "A) green", "B) maroon", "C) orange", "D) white", "E) yellow" ], "answer": "A" }, { "id": "ar_lsat_india5_1-G_1_4", "context": "Meena has six colored pencils—green, maroon, orange, red, white, and yellow. She sketches a drawing using exactly five of the six pencils, one pencil at a time. The following conditions must hold: No pencil is used more than once. Either the maroon or the yellow pencil is not used. The red pencil is used at some time before the green. The red pencil is used at some time before either the orange or the yellow, but not before both. The green pencil is used at some time before either the maroon or the white, but not before both.", "question": "Which one of the following could be an accurate list of the pencils used, from first to fifth?", "options": [ "A) maroon, green, white, red, orange", "B) maroon, red, green, white, yellow", "C) red, green, orange, white, yellow", "D) red, white, orange, green, maroon", "E) white, red, maroon, green, orange" ], "answer": "D" }, { "id": "ar_lsat_india5_1-G_1_5", "context": "Meena has six colored pencils—green, maroon, orange, red, white, and yellow. She sketches a drawing using exactly five of the six pencils, one pencil at a time. The following conditions must hold: No pencil is used more than once. Either the maroon or the yellow pencil is not used. The red pencil is used at some time before the green. The red pencil is used at some time before either the orange or the yellow, but not before both. The green pencil is used at some time before either the maroon or the white, but not before both.", "question": "Which one of the following CANNOT be the color of the third pencil used?", "options": [ "A) green", "B) maroon", "C) red", "D) white", "E) yellow" ], "answer": "C" }, { "id": "ar_lsat_india5_1-G_1_6", "context": "Meena has six colored pencils—green, maroon, orange, red, white, and yellow. She sketches a drawing using exactly five of the six pencils, one pencil at a time. The following conditions must hold: No pencil is used more than once. Either the maroon or the yellow pencil is not used. The red pencil is used at some time before the green. The red pencil is used at some time before either the orange or the yellow, but not before both. The green pencil is used at some time before either the maroon or the white, but not before both.", "question": "Suppose that the condition that either the maroon or the yellow pencil is not used no longer holds. If all other conditions remain in effect, then which one of the following could be an accurate list of the pencils used, from first to fifth?", "options": [ "A) maroon, red, green, orange, yellow", "B) maroon, yellow, red, green, white", "C) orange, green, red, yellow, maroon", "D) orange, red, maroon, green, white", "E) white, red, green, maroon, yellow" ], "answer": "E" }, { "id": "ar_lsat_india5_1-G_2_7", "context": "A bird sanctuary contains birds of at least two of the following six kinds—kingfishers, mynas, peacocks, robins, sparrows, and woodpeckers. No other kinds of birds are in the sanctuary. The following conditions must hold: Woodpeckers are not in the sanctuary if mynas are. Peacocks are not in the sanctuary if robins are. Either robins or woodpeckers, but not both, are in the sanctuary. Woodpeckers are in the sanctuary if kingfishers, sparrows, or both are in the sanctuary", "question": "Which one of the following could be a complete and accurate list of the kinds of birds in the sanctuary?", "options": [ "A) kingfishers, mynas", "B) peacocks, woodpeckers", "C) kingfishers, robins, sparrows", "D) mynas, peacocks, robins", "E) mynas, peacocks, sparrows" ], "answer": "B" }, { "id": "ar_lsat_india5_1-G_2_8", "context": "A bird sanctuary contains birds of at least two of the following six kinds—kingfishers, mynas, peacocks, robins, sparrows, and woodpeckers. No other kinds of birds are in the sanctuary. The following conditions must hold: Woodpeckers are not in the sanctuary if mynas are. Peacocks are not in the sanctuary if robins are. Either robins or woodpeckers, but not both, are in the sanctuary. Woodpeckers are in the sanctuary if kingfishers, sparrows, or both are in the sanctuary", "question": "What is the maximum number of the kinds of birds that could be in the sanctuary?", "options": [ "A) two", "B) three", "C) four", "D) five", "E) six" ], "answer": "C" }, { "id": "ar_lsat_india5_1-G_2_9", "context": "A bird sanctuary contains birds of at least two of the following six kinds—kingfishers, mynas, peacocks, robins, sparrows, and woodpeckers. No other kinds of birds are in the sanctuary. The following conditions must hold: Woodpeckers are not in the sanctuary if mynas are. Peacocks are not in the sanctuary if robins are. Either robins or woodpeckers, but not both, are in the sanctuary. Woodpeckers are in the sanctuary if kingfishers, sparrows, or both are in the sanctuary", "question": "If both kingfishers and sparrows are in the sanctuary, then each of the following could be true EXCEPT:", "options": [ "A) Exactly three kinds of birds are in the sanctuary.", "B) Exactly four kinds of birds are in the sanctuary.", "C) There are peacocks in the sanctuary.", "D) There are robins in the sanctuary.", "E) There are woodpeckers in the sanctuary" ], "answer": "D" }, { "id": "ar_lsat_india5_1-G_2_10", "context": "A bird sanctuary contains birds of at least two of the following six kinds—kingfishers, mynas, peacocks, robins, sparrows, and woodpeckers. No other kinds of birds are in the sanctuary. The following conditions must hold: Woodpeckers are not in the sanctuary if mynas are. Peacocks are not in the sanctuary if robins are. Either robins or woodpeckers, but not both, are in the sanctuary. Woodpeckers are in the sanctuary if kingfishers, sparrows, or both are in the sanctuary", "question": "If there are no kingfishers in the sanctuary, then which one of the following must be true?", "options": [ "A) There are no sparrows in the sanctuary.", "B) There are no woodpeckers in the sanctuary.", "C) There are peacocks in the sanctuary.", "D) At least three kinds of birds are in the sanctuary.", "E) At most three kinds of birds are in the sanctuary" ], "answer": "E" }, { "id": "ar_lsat_india5_1-G_2_11", "context": "A bird sanctuary contains birds of at least two of the following six kinds—kingfishers, mynas, peacocks, robins, sparrows, and woodpeckers. No other kinds of birds are in the sanctuary. The following conditions must hold: Woodpeckers are not in the sanctuary if mynas are. Peacocks are not in the sanctuary if robins are. Either robins or woodpeckers, but not both, are in the sanctuary. Woodpeckers are in the sanctuary if kingfishers, sparrows, or both are in the sanctuary", "question": "If there are no robins in the sanctuary, then which one of the following is a kind of bird that CANNOT be in the sanctuary?", "options": [ "A) kingfishers", "B) mynas", "C) peacocks", "D) sparrows", "E) woodpeckers" ], "answer": "B" }, { "id": "ar_lsat_india5_1-G_2_12", "context": "A bird sanctuary contains birds of at least two of the following six kinds—kingfishers, mynas, peacocks, robins, sparrows, and woodpeckers. No other kinds of birds are in the sanctuary. The following conditions must hold: Woodpeckers are not in the sanctuary if mynas are. Peacocks are not in the sanctuary if robins are. Either robins or woodpeckers, but not both, are in the sanctuary. Woodpeckers are in the sanctuary if kingfishers, sparrows, or both are in the sanctuary", "question": "If peacocks are in the sanctuary, then which one of the following must be true?", "options": [ "A) Exactly two kinds of birds are in the sanctuary.", "B) Exactly three kinds of birds are in the sanctuary.", "C) Exactly four kinds of birds are in the sanctuary.", "D) There are no kingfishers in the sanctuary.", "E) There are no mynas in the sanctuary." ], "answer": "E" }, { "id": "ar_lsat_india5_1-G_3_13", "context": "Last year, seven stores—Faroj's Appliances, Good Buy, Intelligent Office, LANs for Less, Networks Unlimited, Silicon Village, and Uptown Computing—each sold exactly 100, 200, 300, 400, or 500 computers, consistent with the following conditions: Good Buy sold exactly the same number of computers as Networks Unlimited did. Intelligent Office sold exactly the same number of computers as Uptown Computing did. Neither Faroj's Appliances nor Silicon Village sold exactly the same number of computers as any other store. LANs for Less sold more computers than Uptown Computing did. Intelligent Office sold more computers than Good Buy did.", "question": "Which one of the following could be an accurate matching of the stores to the exact number of computers each sold last year?", "options": [ "A) Faroj's Appliances: 100; Good Buy: 200; Intelligent Office: 300; LANs for Less: 400; Networks Unlimited: 200; Silicon Village: 500; Uptown Computing: 300", "B) Faroj's Appliances: 100; Good Buy: 200; Intelligent Office: 400; LANs for Less: 300; Networks Unlimited: 200; Silicon Village: 500; Uptown Computing: 400", "C) Faroj's Appliances: 500; Good Buy: 200; Intelligent Office: 300; LANs for Less: 400; Networks Unlimited: 500; Silicon Village: 100; Uptown Computing: 300", "D) Faroj's Appliances: 500; Good Buy: 300; Intelligent Office: 200; LANs for Less: 400; Networks Unlimited: 300; Silicon Village: 100; Uptown Computing: 200", "E) Faroj's Appliances: 500; Good Buy: 300; Intelligent Office: 400; LANs for Less: 200; Networks Unlimited: 300; Silicon Village: 500; Uptown Computing: 100" ], "answer": "A" }, { "id": "ar_lsat_india5_1-G_3_14", "context": "Last year, seven stores—Faroj's Appliances, Good Buy, Intelligent Office, LANs for Less, Networks Unlimited, Silicon Village, and Uptown Computing—each sold exactly 100, 200, 300, 400, or 500 computers, consistent with the following conditions: Good Buy sold exactly the same number of computers as Networks Unlimited did. Intelligent Office sold exactly the same number of computers as Uptown Computing did. Neither Faroj's Appliances nor Silicon Village sold exactly the same number of computers as any other store. LANs for Less sold more computers than Uptown Computing did. Intelligent Office sold more computers than Good Buy did.", "question": "Which one of the following stores CANNOT have sold exactly 400 computers last year?", "options": [ "A) Faroj's Appliances", "B) Good Buy", "C) Intelligent Office", "D) Silicon Village", "E) Uptown Computing" ], "answer": "B" }, { "id": "ar_lsat_india5_1-G_3_15", "context": "Last year, seven stores—Faroj's Appliances, Good Buy, Intelligent Office, LANs for Less, Networks Unlimited, Silicon Village, and Uptown Computing—each sold exactly 100, 200, 300, 400, or 500 computers, consistent with the following conditions: Good Buy sold exactly the same number of computers as Networks Unlimited did. Intelligent Office sold exactly the same number of computers as Uptown Computing did. Neither Faroj's Appliances nor Silicon Village sold exactly the same number of computers as any other store. LANs for Less sold more computers than Uptown Computing did. Intelligent Office sold more computers than Good Buy did.", "question": "Which one of the following stores CANNOT have sold exactly 200 computers last year?", "options": [ "A) Faroj's Appliances", "B) Good Buy", "C) Intelligent Office", "D) LANs for Less", "E) Silicon Village" ], "answer": "D" }, { "id": "ar_lsat_india5_1-G_3_16", "context": "Last year, seven stores—Faroj's Appliances, Good Buy, Intelligent Office, LANs for Less, Networks Unlimited, Silicon Village, and Uptown Computing—each sold exactly 100, 200, 300, 400, or 500 computers, consistent with the following conditions: Good Buy sold exactly the same number of computers as Networks Unlimited did. Intelligent Office sold exactly the same number of computers as Uptown Computing did. Neither Faroj's Appliances nor Silicon Village sold exactly the same number of computers as any other store. LANs for Less sold more computers than Uptown Computing did. Intelligent Office sold more computers than Good Buy did.", "question": "Which one of the following must be true?", "options": [ "A) Faroj's Appliances sold more computers last year than Good Buy did.", "B) Intelligent Office sold more computers last year than Silicon Village did.", "C) LANs for Less sold more computers last year than Faroj's Appliances did.", "D) Silicon Village sold more computers last year than Good Buy did.", "E) Uptown Computing sold more computers last year than Networks Unlimited did." ], "answer": "E" }, { "id": "ar_lsat_india5_1-G_4_17", "context": "Arbutus College owns exactly four houses that it leases to faculty or students. Of these houses, no two are exactly the same distance from Arbutus's campus, and each house is either a student house (occupied entirely by students) or a faculty house (occupied entirely by faculty). The lease length for each house is one, two, or three semesters. The following conditions must hold: No student house has a three-semester lease. At least two houses each have longer leases than does the house closest to campus. Every student house (if there are any) is farther from campus than any faculty house (if there are any).", "question": "Which one of the following could be a complete and accurate list of the leases of the student houses, ordered from the student house closest to campus to the student house farthest from campus?", "options": [ "A) one semester, one semester", "B) two semesters, three semesters", "C) one semester, two semesters, one semester", "D) one semester, two semesters, two semesters, one semester", "E) one semester, two semesters, three semesters, two semesters" ], "answer": "D" }, { "id": "ar_lsat_india5_1-G_4_18", "context": "Arbutus College owns exactly four houses that it leases to faculty or students. Of these houses, no two are exactly the same distance from Arbutus's campus, and each house is either a student house (occupied entirely by students) or a faculty house (occupied entirely by faculty). The lease length for each house is one, two, or three semesters. The following conditions must hold: No student house has a three-semester lease. At least two houses each have longer leases than does the house closest to campus. Every student house (if there are any) is farther from campus than any faculty house (if there are any).", "question": "If the house farthest from campus has a lease longer than that of each of the other houses, then which one of the following could be true?", "options": [ "A) Each faculty house has a two-semester lease.", "B) Exactly two houses each have a one-semester lease.", "C) Exactly three houses each have a two-semester lease.", "D) None of the houses has a one-semester lease.", "E) None of the houses has a two-semester lease" ], "answer": "B" }, { "id": "ar_lsat_india5_1-G_4_19", "context": "Arbutus College owns exactly four houses that it leases to faculty or students. Of these houses, no two are exactly the same distance from Arbutus's campus, and each house is either a student house (occupied entirely by students) or a faculty house (occupied entirely by faculty). The lease length for each house is one, two, or three semesters. The following conditions must hold: No student house has a three-semester lease. At least two houses each have longer leases than does the house closest to campus. Every student house (if there are any) is farther from campus than any faculty house (if there are any).", "question": "What is the maximum number of houses that could all be student houses with two-semester leases?", "options": [ "A) zero", "B) one", "C) two", "D) three", "E) four" ], "answer": "D" }, { "id": "ar_lsat_india5_1-G_4_20", "context": "Arbutus College owns exactly four houses that it leases to faculty or students. Of these houses, no two are exactly the same distance from Arbutus's campus, and each house is either a student house (occupied entirely by students) or a faculty house (occupied entirely by faculty). The lease length for each house is one, two, or three semesters. The following conditions must hold: No student house has a three-semester lease. At least two houses each have longer leases than does the house closest to campus. Every student house (if there are any) is farther from campus than any faculty house (if there are any).", "question": "Which one of the following must be true of the two houses that are neither the house farthest from campus nor the house closest to campus?", "options": [ "A) At least one of them has a lease the same length as that of the house closest to campus.", "B) At least one of them has a lease longer than that of the house closest to campus.", "C) At least one of them has a lease shorter than three semesters.", "D) Neither of them is a student house.", "E) Both of them are student houses" ], "answer": "B" } ] ================================================ FILE: data/FOLIO/dev.json ================================================ [ { "id": "FOLIO_dev_0", "context": "If people perform in school talent shows often, then they attend and are very engaged with school events. People either perform in school talent shows often or are inactive and disinterested members of their community. If people chaperone high school dances, then they are not students who attend the school. All people who are inactive and disinterested members of their community chaperone high school dances. All young children and teenagers who wish to further their academic careers and educational opportunities are students who attend the school. Bonnie either both attends and is very engaged with school events and is a student who attends the school, or she neither attends and is very engaged with school events nor is a student who attends the school.", "question": "Based on the above information, is the following statement true, false, or uncertain? Bonnie performs in school talent shows often.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_1", "context": "If people perform in school talent shows often, then they attend and are very engaged with school events. People either perform in school talent shows often or are inactive and disinterested members of their community. If people chaperone high school dances, then they are not students who attend the school. All people who are inactive and disinterested members of their community chaperone high school dances. All young children and teenagers who wish to further their academic careers and educational opportunities are students who attend the school. Bonnie either both attends and is very engaged with school events and is a student who attends the school, or she neither attends and is very engaged with school events nor is a student who attends the school.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Bonnie is either both a young child or teenager who wishes to further her academic career and educational opportunities and chaperones high school dances or neither is a young child nor teenager who wishes to further her academic career and educational opportunities, then Bonnie is either a student who attends the school or is an inactive and disinterested member of the community.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_2", "context": "If people perform in school talent shows often, then they attend and are very engaged with school events. People either perform in school talent shows often or are inactive and disinterested members of their community. If people chaperone high school dances, then they are not students who attend the school. All people who are inactive and disinterested members of their community chaperone high school dances. All young children and teenagers who wish to further their academic careers and educational opportunities are students who attend the school. Bonnie either both attends and is very engaged with school events and is a student who attends the school, or she neither attends and is very engaged with school events nor is a student who attends the school.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Bonnie either chaperones high school dances or, if she does not, she performs in school talent shows often, then Bonnie is both a young child or teenager who wishes to further her academic career and educational opportunities and an inactive and disinterested member of the community.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_3", "context": "All employees who schedule a meeting with their customers will appear in the company today. Everyone who has lunch in the company schedules meetings with their customers. Employees will either have lunch in the company or have lunch at home. If an employee has lunch at home, then he/she is working remotely from home. All employees who are in other countries work remotely from home. No managers work remotely from home. James is either a manager and appears in the company today or neither a manager nor appears in the company today.", "question": "Based on the above information, is the following statement true, false, or uncertain? James has lunch in the company.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_4", "context": "All employees who schedule a meeting with their customers will appear in the company today. Everyone who has lunch in the company schedules meetings with their customers. Employees will either have lunch in the company or have lunch at home. If an employee has lunch at home, then he/she is working remotely from home. All employees who are in other countries work remotely from home. No managers work remotely from home. James is either a manager and appears in the company today or neither a manager nor appears in the company today.", "question": "Based on the above information, is the following statement true, false, or uncertain? James does not have lunch in the company.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_5", "context": "All employees who schedule a meeting with their customers will appear in the company today. Everyone who has lunch in the company schedules meetings with their customers. Employees will either have lunch in the company or have lunch at home. If an employee has lunch at home, then he/she is working remotely from home. All employees who are in other countries work remotely from home. No managers work remotely from home. James is either a manager and appears in the company today or neither a manager nor appears in the company today.", "question": "Based on the above information, is the following statement true, false, or uncertain? If James is either a manager or in other countries, then James either has lunch at home and works remotely from home, or neither has lunch at home nor works remotely from home.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_6", "context": "Monkeypox is an infectious disease caused by the monkeypox virus. Monkeypox virus can occur in certain animals, including humans. Humans are mammals. Mammals are animals. Symptons of Monkeypox include fever, headache, muscle pains, feeling tired, and so on. People feel tired when they get a glu.", "question": "Based on the above information, is the following statement true, false, or uncertain? There is an animal.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_7", "context": "Monkeypox is an infectious disease caused by the monkeypox virus. Monkeypox virus can occur in certain animals, including humans. Humans are mammals. Mammals are animals. Symptons of Monkeypox include fever, headache, muscle pains, feeling tired, and so on. People feel tired when they get a glu.", "question": "Based on the above information, is the following statement true, false, or uncertain? No one gets flu.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_8", "context": "Monkeypox is an infectious disease caused by the monkeypox virus. Monkeypox virus can occur in certain animals, including humans. Humans are mammals. Mammals are animals. Symptons of Monkeypox include fever, headache, muscle pains, feeling tired, and so on. People feel tired when they get a glu.", "question": "Based on the above information, is the following statement true, false, or uncertain? Symptons of Monkeypox include coughing.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_9", "context": "There are six types of wild turkeys: Eastern wild turkey, Osceola wild turkey, Gould’s wild turkey, Merriam’s wild turkey, Rio Grande wild turkey, and Ocellated wild turkey. Tom is not an Eastern wild turkey. Tom is not an Osceola wild turkey. Tom is also not a Gould's wild turkey, or a Merriam's wild turkey, or a Rio Grande wild turkey. Tom is a wild turkey.", "question": "Based on the above information, is the following statement true, false, or uncertain? Tom is an Ocellated wild turkey.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_10", "context": "There are six types of wild turkeys: Eastern wild turkey, Osceola wild turkey, Gould’s wild turkey, Merriam’s wild turkey, Rio Grande wild turkey, and Ocellated wild turkey. Tom is not an Eastern wild turkey. Tom is not an Osceola wild turkey. Tom is also not a Gould's wild turkey, or a Merriam's wild turkey, or a Rio Grande wild turkey. Tom is a wild turkey.", "question": "Based on the above information, is the following statement true, false, or uncertain? Tom is an Eastern wild turkey.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_11", "context": "There are six types of wild turkeys: Eastern wild turkey, Osceola wild turkey, Gould’s wild turkey, Merriam’s wild turkey, Rio Grande wild turkey, and Ocellated wild turkey. Tom is not an Eastern wild turkey. Tom is not an Osceola wild turkey. Tom is also not a Gould's wild turkey, or a Merriam's wild turkey, or a Rio Grande wild turkey. Tom is a wild turkey.", "question": "Based on the above information, is the following statement true, false, or uncertain? Joey is a wild turkey.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_12", "context": "A Japanese game company created the game the Legend of Zelda. All games in the Top 10 list are made by Japanese game companies. [BG] If a game sells more than one million copies, then it will be selected into the Top 10 list. The Legend of Zelda sold more than one million copies.", "question": "Based on the above information, is the following statement true, false, or uncertain? The Legend of Zelda is in the Top 10 list.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_13", "context": "A Japanese game company created the game the Legend of Zelda. All games in the Top 10 list are made by Japanese game companies. [BG] If a game sells more than one million copies, then it will be selected into the Top 10 list. The Legend of Zelda sold more than one million copies.", "question": "Based on the above information, is the following statement true, false, or uncertain? FIFA 22 is made by a Japanese video game company.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_14", "context": "A Japanese game company created the game the Legend of Zelda. All games in the Top 10 list are made by Japanese game companies. [BG] If a game sells more than one million copies, then it will be selected into the Top 10 list. The Legend of Zelda sold more than one million copies.", "question": "Based on the above information, is the following statement true, false, or uncertain? The Legend of Zelda is not in the Top 10 list.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_15", "context": "All squares have four sides. All four-sided things are shapes.", "question": "Based on the above information, is the following statement true, false, or uncertain? All squares are shapes.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_16", "context": "All rabbits are cute. Some turtles exist. An animal is either a rabbit or a squirrel. If something is skittish, then it is not still. All squirrels are skittish. Rock is still.", "question": "Based on the above information, is the following statement true, false, or uncertain? Rock is a turtle.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_17", "context": "All rabbits are cute. Some turtles exist. An animal is either a rabbit or a squirrel. If something is skittish, then it is not still. All squirrels are skittish. Rock is still.", "question": "Based on the above information, is the following statement true, false, or uncertain? Rock is not a turtle.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_18", "context": "All rabbits are cute. Some turtles exist. An animal is either a rabbit or a squirrel. If something is skittish, then it is not still. All squirrels are skittish. Rock is still.", "question": "Based on the above information, is the following statement true, false, or uncertain? Rock is a turtle or cute.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_19", "context": "All rabbits are cute. Some turtles exist. An animal is either a rabbit or a squirrel. If something is skittish, then it is not still. All squirrels are skittish. Rock is still.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Rock is not both a turtle and a squirrel, then Rock is either cute or skittish.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_20", "context": "All rabbits are cute. Some turtles exist. An animal is either a rabbit or a squirrel. If something is skittish, then it is not still. All squirrels are skittish. Rock is still.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Rock is cute and still, then Rock is a turtle and skittish.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_21", "context": "\"Stranger Things\" is a popular Netflix show. If a Netflix show is popular, Karen will binge-watch it. If and only if Karen binge-watches a Netflix show, she will download it. Karen does not download \"Black Mirror\". \"Black Mirror\" is a Netflix show. If Karen binge-watches a Netflix show, she will share it to Lisa.", "question": "Based on the above information, is the following statement true, false, or uncertain? Karen will share \"Stranger Things\" to Lisa.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_22", "context": "\"Stranger Things\" is a popular Netflix show. If a Netflix show is popular, Karen will binge-watch it. If and only if Karen binge-watches a Netflix show, she will download it. Karen does not download \"Black Mirror\". \"Black Mirror\" is a Netflix show. If Karen binge-watches a Netflix show, she will share it to Lisa.", "question": "Based on the above information, is the following statement true, false, or uncertain? \"Black Mirror\" is popular.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_23", "context": "\"Stranger Things\" is a popular Netflix show. If a Netflix show is popular, Karen will binge-watch it. If and only if Karen binge-watches a Netflix show, she will download it. Karen does not download \"Black Mirror\". \"Black Mirror\" is a Netflix show. If Karen binge-watches a Netflix show, she will share it to Lisa.", "question": "Based on the above information, is the following statement true, false, or uncertain? Karen will share \"Black Mirror\" to Lisa.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_24", "context": "Beijing is the capital of the People's Republic of China. Beijing is the world's most populous national capital city. Beijing is located in Northern China. Beijing hosted the 2008 Summer Olympics and 2008 Summer Paralympics Games. Beijing has hosted both the Summer and Winter Olympics, along with the Summer and Winter Paralympics Many of Beijing's 91 universities consistently rank among the best in the Asia-Pacific and the world.", "question": "Based on the above information, is the following statement true, false, or uncertain? Beijing has hosted both the 2008 Summer Olympics and a winter olympics.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_25", "context": "Beijing is the capital of the People's Republic of China. Beijing is the world's most populous national capital city. Beijing is located in Northern China. Beijing hosted the 2008 Summer Olympics and 2008 Summer Paralympics Games. Beijing has hosted both the Summer and Winter Olympics, along with the Summer and Winter Paralympics Many of Beijing's 91 universities consistently rank among the best in the Asia-Pacific and the world.", "question": "Based on the above information, is the following statement true, false, or uncertain? Beijing is located in southern China.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_26", "context": "Beijing is the capital of the People's Republic of China. Beijing is the world's most populous national capital city. Beijing is located in Northern China. Beijing hosted the 2008 Summer Olympics and 2008 Summer Paralympics Games. Beijing has hosted both the Summer and Winter Olympics, along with the Summer and Winter Paralympics Many of Beijing's 91 universities consistently rank among the best in the Asia-Pacific and the world.", "question": "Based on the above information, is the following statement true, false, or uncertain? Beijing is the second largest Chinese city by urban population.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_27", "context": "All aliens are extraterrestrial. If someone is from Mars, then they are aliens. No extraterrestrial is human. Everyone from Earth is a human. Marvin cannot be from Earth and from Mars. If Marvin is not from Earth, then Marvin is an extraterrestrial.", "question": "Based on the above information, is the following statement true, false, or uncertain? Marvin is an alien.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_28", "context": "All aliens are extraterrestrial. If someone is from Mars, then they are aliens. No extraterrestrial is human. Everyone from Earth is a human. Marvin cannot be from Earth and from Mars. If Marvin is not from Earth, then Marvin is an extraterrestrial.", "question": "Based on the above information, is the following statement true, false, or uncertain? Marvin is neither a human nor from Mars.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_29", "context": "All aliens are extraterrestrial. If someone is from Mars, then they are aliens. No extraterrestrial is human. Everyone from Earth is a human. Marvin cannot be from Earth and from Mars. If Marvin is not from Earth, then Marvin is an extraterrestrial.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Marvin is not from Mars, then Marvin is a human.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_30", "context": "A person is either a Grand Slam champion or an Oscar-nominated actor. All people who are Grand Slam champions are professional tennis players. All Oscar-nominated actors are celebrities. All professional tennis players are athletes. If a person is a celebrity then they are well paid. If a person is an athlete then they are famous. All well-paid people live in tax havens. If Djokovic is famous and is an athlete, then Djokovic lives in well paid.", "question": "Based on the above information, is the following statement true, false, or uncertain? Djokovic is a Grand Slam champion.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_31", "context": "A person is either a Grand Slam champion or an Oscar-nominated actor. All people who are Grand Slam champions are professional tennis players. All Oscar-nominated actors are celebrities. All professional tennis players are athletes. If a person is a celebrity then they are well paid. If a person is an athlete then they are famous. All well-paid people live in tax havens. If Djokovic is famous and is an athlete, then Djokovic lives in well paid.", "question": "Based on the above information, is the following statement true, false, or uncertain? Djokovic lives in a tax haven.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_32", "context": "A person is either a Grand Slam champion or an Oscar-nominated actor. All people who are Grand Slam champions are professional tennis players. All Oscar-nominated actors are celebrities. All professional tennis players are athletes. If a person is a celebrity then they are well paid. If a person is an athlete then they are famous. All well-paid people live in tax havens. If Djokovic is famous and is an athlete, then Djokovic lives in well paid.", "question": "Based on the above information, is the following statement true, false, or uncertain? Djokovic does not live in a tax haven.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_33", "context": "Diamond Mine is a professional wrestling stable, formed in WWE. Roderick Strong leads Diamond Mine. Diamond Mine includes the Creed Brothers, and Ivy Nile. Imperium has a feud with Diamond Mine.", "question": "Based on the above information, is the following statement true, false, or uncertain? Roderick strong leads a professional wrestling stable.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_34", "context": "Diamond Mine is a professional wrestling stable, formed in WWE. Roderick Strong leads Diamond Mine. Diamond Mine includes the Creed Brothers, and Ivy Nile. Imperium has a feud with Diamond Mine.", "question": "Based on the above information, is the following statement true, false, or uncertain? Roderick strong leads the Creed Brothers.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_35", "context": "Diamond Mine is a professional wrestling stable, formed in WWE. Roderick Strong leads Diamond Mine. Diamond Mine includes the Creed Brothers, and Ivy Nile. Imperium has a feud with Diamond Mine.", "question": "Based on the above information, is the following statement true, false, or uncertain? Imperium doesn't have a feud with a professional wrestling stable that includes Ivy Nile.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_36", "context": "Symphony No. 9 is a music piece. Composers write music pieces. Beethoven wrote Symphony No. 9. Vienna Music Society premiered Symphony No. 9. Vienna Music Society is an orchestra. Beethoven leads the Vienna Music Society. Orchestras are led by conductors.", "question": "Based on the above information, is the following statement true, false, or uncertain? Beethoven is a composer.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_37", "context": "Symphony No. 9 is a music piece. Composers write music pieces. Beethoven wrote Symphony No. 9. Vienna Music Society premiered Symphony No. 9. Vienna Music Society is an orchestra. Beethoven leads the Vienna Music Society. Orchestras are led by conductors.", "question": "Based on the above information, is the following statement true, false, or uncertain? Some orchestras premiered music pieces.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_38", "context": "Symphony No. 9 is a music piece. Composers write music pieces. Beethoven wrote Symphony No. 9. Vienna Music Society premiered Symphony No. 9. Vienna Music Society is an orchestra. Beethoven leads the Vienna Music Society. Orchestras are led by conductors.", "question": "Based on the above information, is the following statement true, false, or uncertain? Beethoven is not a conductor.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_39", "context": "All of Zaha Hadid's design styles are timeless. No mass product design is timeless. Either Zaha Hadid's design style or Kelly Wearstler's design style. All of Kelly Wearstler's design styles are evocative. All of Kelly Wearstler's design styles are dreamy. If a design by Max is timeless, then a design by Max is a mass product design and evocative.", "question": "Based on the above information, is the following statement true, false, or uncertain? A design by Max is a mass product design.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_40", "context": "All of Zaha Hadid's design styles are timeless. No mass product design is timeless. Either Zaha Hadid's design style or Kelly Wearstler's design style. All of Kelly Wearstler's design styles are evocative. All of Kelly Wearstler's design styles are dreamy. If a design by Max is timeless, then a design by Max is a mass product design and evocative.", "question": "Based on the above information, is the following statement true, false, or uncertain? A design by Max is evocative and dreamy.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_41", "context": "All of Zaha Hadid's design styles are timeless. No mass product design is timeless. Either Zaha Hadid's design style or Kelly Wearstler's design style. All of Kelly Wearstler's design styles are evocative. All of Kelly Wearstler's design styles are dreamy. If a design by Max is timeless, then a design by Max is a mass product design and evocative.", "question": "Based on the above information, is the following statement true, false, or uncertain? A design by Max is either evocative or dreamy.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_42", "context": "If a player is ranked highly by the Women's Tennis Association, then they are among the most active players in major tennis. Everyone who lost to Iga Świątek is ranked highly by the Women's Tennis Association. All female tennis players at Roland Garros 2022 lost to Iga Świątek. Either female tennis players at Roland Garros 2022 or male tennis players at Roland Garros 2022. All male tennis players at Roland Garros 2022 lost to Rafael Nadal. If Coco Gauff is a player who is ranked highly by the Women's Tennis Association or a player who lost to Rafael Nadal, then Coco Gauff is not a male tennis player at Roland Garros 2022.", "question": "Based on the above information, is the following statement true, false, or uncertain? Coco Gauff is among the most active players in major tennis.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_43", "context": "If a player is ranked highly by the Women's Tennis Association, then they are among the most active players in major tennis. Everyone who lost to Iga Świątek is ranked highly by the Women's Tennis Association. All female tennis players at Roland Garros 2022 lost to Iga Świątek. Either female tennis players at Roland Garros 2022 or male tennis players at Roland Garros 2022. All male tennis players at Roland Garros 2022 lost to Rafael Nadal. If Coco Gauff is a player who is ranked highly by the Women's Tennis Association or a player who lost to Rafael Nadal, then Coco Gauff is not a male tennis player at Roland Garros 2022.", "question": "Based on the above information, is the following statement true, false, or uncertain? Coco Gauff has lost to Rafael Nadal.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_44", "context": "If a player is ranked highly by the Women's Tennis Association, then they are among the most active players in major tennis. Everyone who lost to Iga Świątek is ranked highly by the Women's Tennis Association. All female tennis players at Roland Garros 2022 lost to Iga Świątek. Either female tennis players at Roland Garros 2022 or male tennis players at Roland Garros 2022. All male tennis players at Roland Garros 2022 lost to Rafael Nadal. If Coco Gauff is a player who is ranked highly by the Women's Tennis Association or a player who lost to Rafael Nadal, then Coco Gauff is not a male tennis player at Roland Garros 2022.", "question": "Based on the above information, is the following statement true, false, or uncertain? Coco Gauff is not a player who lost to Iga Świątek or one of the most active players in major tennis.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_45", "context": "All cats are mammals. Some pets are not mammals.", "question": "Based on the above information, is the following statement true, false, or uncertain? No pets are cats.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_46", "context": "[BG] There are four seasons in a year: Spring, Summer, Fall, and Winter. All students who want to have a long vacation love summer the most. Emma's favorite season is summer. Mia's favorite season is not the same as Emma's. James wants to have a long vacation.", "question": "Based on the above information, is the following statement true, false, or uncertain? James's favorite season is summer.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_47", "context": "[BG] There are four seasons in a year: Spring, Summer, Fall, and Winter. All students who want to have a long vacation love summer the most. Emma's favorite season is summer. Mia's favorite season is not the same as Emma's. James wants to have a long vacation.", "question": "Based on the above information, is the following statement true, false, or uncertain? James's favorite season is fall.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_48", "context": "[BG] There are four seasons in a year: Spring, Summer, Fall, and Winter. All students who want to have a long vacation love summer the most. Emma's favorite season is summer. Mia's favorite season is not the same as Emma's. James wants to have a long vacation.", "question": "Based on the above information, is the following statement true, false, or uncertain? Mia's favorite season is spring.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_49", "context": "No digital media are analog. Every printed text is analog. All streaming services are digital. If an object is a hardcover book then it is printed text. If 1984 is a streaming service, then 1984 is a hardcover book.", "question": "Based on the above information, is the following statement true, false, or uncertain? 1984 is printed text.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_50", "context": "No digital media are analog. Every printed text is analog. All streaming services are digital. If an object is a hardcover book then it is printed text. If 1984 is a streaming service, then 1984 is a hardcover book.", "question": "Based on the above information, is the following statement true, false, or uncertain? 1984 is a streaming service.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_51", "context": "No digital media are analog. Every printed text is analog. All streaming services are digital. If an object is a hardcover book then it is printed text. If 1984 is a streaming service, then 1984 is a hardcover book.", "question": "Based on the above information, is the following statement true, false, or uncertain? 1984 is not a streaming service.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_52", "context": "All Romance languages are Indo-European languages. The Romance languages are a language family. All languages within a language family are related to each other. French and Spanish are both Romance languages. German is related to Spanish. Basque is not related to any other language.", "question": "Based on the above information, is the following statement true, false, or uncertain? Basque is a Romance language.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_53", "context": "All Romance languages are Indo-European languages. The Romance languages are a language family. All languages within a language family are related to each other. French and Spanish are both Romance languages. German is related to Spanish. Basque is not related to any other language.", "question": "Based on the above information, is the following statement true, false, or uncertain? German is a Romance language.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_54", "context": "All Romance languages are Indo-European languages. The Romance languages are a language family. All languages within a language family are related to each other. French and Spanish are both Romance languages. German is related to Spanish. Basque is not related to any other language.", "question": "Based on the above information, is the following statement true, false, or uncertain? French is an Indo-European language.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_55", "context": "Robert Lewandowski is a striker. [BG] Strikers are soccer players. Robert Lewandowski left Bayern Munchen. [BG] If a player left a team they no longer play for that team.", "question": "Based on the above information, is the following statement true, false, or uncertain? Robert Lewandowski is a soccer player.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_56", "context": "Robert Lewandowski is a striker. [BG] Strikers are soccer players. Robert Lewandowski left Bayern Munchen. [BG] If a player left a team they no longer play for that team.", "question": "Based on the above information, is the following statement true, false, or uncertain? Robert Lewandowski plays for Bayern Munchen.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_57", "context": "Robert Lewandowski is a striker. [BG] Strikers are soccer players. Robert Lewandowski left Bayern Munchen. [BG] If a player left a team they no longer play for that team.", "question": "Based on the above information, is the following statement true, false, or uncertain? Robert Lewandowski is a star.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_58", "context": "Billings is a city in Montana. Montana includes the cities of Butte, Helena, and Missoula. White Sulphur Springs and Butte are cities in the same state. The city of Pierre is not in Montana. Any city in Butte is not in Pierre.", "question": "Based on the above information, is the following statement true, false, or uncertain? Butte and Pierre are in the same state.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_59", "context": "Billings is a city in Montana. Montana includes the cities of Butte, Helena, and Missoula. White Sulphur Springs and Butte are cities in the same state. The city of Pierre is not in Montana. Any city in Butte is not in Pierre.", "question": "Based on the above information, is the following statement true, false, or uncertain? Pierre and Bismarck are in the same state.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_60", "context": "Billings is a city in Montana. Montana includes the cities of Butte, Helena, and Missoula. White Sulphur Springs and Butte are cities in the same state. The city of Pierre is not in Montana. Any city in Butte is not in Pierre.", "question": "Based on the above information, is the following statement true, false, or uncertain? Montana is home to the city of Missoula.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_61", "context": "International students in US have either an F1 visa or a J1 visa. An international student in US with an F1 visa needs to apply for CPT or OPT if the student wants to work in the US. Mike is an international student. Mike needs to apply for CPT if he wants to work in the US.", "question": "Based on the above information, is the following statement true, false, or uncertain? Mike has an F1 visa.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_62", "context": "International students in US have either an F1 visa or a J1 visa. An international student in US with an F1 visa needs to apply for CPT or OPT if the student wants to work in the US. Mike is an international student. Mike needs to apply for CPT if he wants to work in the US.", "question": "Based on the above information, is the following statement true, false, or uncertain? Mike has a J1 visa.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_63", "context": "All cows are bovines. Some pets are cows. If something is a bovine, then it is domesticated. No domesticated animals are alligators. Ted is an aligator.", "question": "Based on the above information, is the following statement true, false, or uncertain? Ted is a pet.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_64", "context": "All cows are bovines. Some pets are cows. If something is a bovine, then it is domesticated. No domesticated animals are alligators. Ted is an aligator.", "question": "Based on the above information, is the following statement true, false, or uncertain? Ted is a pet and a cow.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_65", "context": "All cows are bovines. Some pets are cows. If something is a bovine, then it is domesticated. No domesticated animals are alligators. Ted is an aligator.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Ted is a cow, then Ted is not a pet.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_66", "context": "Yale University is a private Ivy League research university. Yale University moved to New Haven in 1716. Yale university's endowment was valued at $42.3 billion. Yale University has been organized into 27 constituent colleges and schools: the residential colleges, the Yale Graduate School of Arts and Sciences, and twelve professional schools. A list of residential colleges at Yale: Benjamin Franklin College, Berkeley College, Branford College, Davenport College, Ezra Stiles College, Grace Hopper College, Jonathan Edwards College, Morse College, Pauli Murray College, Pierson College, Saybrook College, Silliman College, Timothy Dwight College, and Trumbull College.", "question": "Based on the above information, is the following statement true, false, or uncertain? A private Ivy League research university moved to New Haven.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_67", "context": "Yale University is a private Ivy League research university. Yale University moved to New Haven in 1716. Yale university's endowment was valued at $42.3 billion. Yale University has been organized into 27 constituent colleges and schools: the residential colleges, the Yale Graduate School of Arts and Sciences, and twelve professional schools. A list of residential colleges at Yale: Benjamin Franklin College, Berkeley College, Branford College, Davenport College, Ezra Stiles College, Grace Hopper College, Jonathan Edwards College, Morse College, Pauli Murray College, Pierson College, Saybrook College, Silliman College, Timothy Dwight College, and Trumbull College.", "question": "Based on the above information, is the following statement true, false, or uncertain? Yale University has the largest university endowment of any educational institution.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_68", "context": "Yale University is a private Ivy League research university. Yale University moved to New Haven in 1716. Yale university's endowment was valued at $42.3 billion. Yale University has been organized into 27 constituent colleges and schools: the residential colleges, the Yale Graduate School of Arts and Sciences, and twelve professional schools. A list of residential colleges at Yale: Benjamin Franklin College, Berkeley College, Branford College, Davenport College, Ezra Stiles College, Grace Hopper College, Jonathan Edwards College, Morse College, Pauli Murray College, Pierson College, Saybrook College, Silliman College, Timothy Dwight College, and Trumbull College.", "question": "Based on the above information, is the following statement true, false, or uncertain? Pierson College is a residential college at Yale.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_69", "context": "Badults is a British Sitcom series, starring members of Pappy's. Badults piloted in July 2013 on BBC Three. The Working title \"The Secret Dude Society\" was used for Badults. Andrew Collins was the script editor for Badults", "question": "Based on the above information, is the following statement true, false, or uncertain? Andrew Collins was the script editor for a series with the working title \"The Secret Dude Society\".", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_70", "context": "Badults is a British Sitcom series, starring members of Pappy's. Badults piloted in July 2013 on BBC Three. The Working title \"The Secret Dude Society\" was used for Badults. Andrew Collins was the script editor for Badults", "question": "Based on the above information, is the following statement true, false, or uncertain? No members of Pappy's have starred for a show piloting on BBC Two or BBC Three.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_71", "context": "All growth companies’ stocks are volatile. If the stock price is volatile, then it is not suitable for a retirement fund. Some companies’ stocks are growth companies’ stocks. All mature companies’ stocks are suitable for a retirement fund. KO is a mature company’s stock.", "question": "Based on the above information, is the following statement true, false, or uncertain? KO is a company stock.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_72", "context": "All growth companies’ stocks are volatile. If the stock price is volatile, then it is not suitable for a retirement fund. Some companies’ stocks are growth companies’ stocks. All mature companies’ stocks are suitable for a retirement fund. KO is a mature company’s stock.", "question": "Based on the above information, is the following statement true, false, or uncertain? KO is a company stock and a growth company’s stock.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_73", "context": "All growth companies’ stocks are volatile. If the stock price is volatile, then it is not suitable for a retirement fund. Some companies’ stocks are growth companies’ stocks. All mature companies’ stocks are suitable for a retirement fund. KO is a mature company’s stock.", "question": "Based on the above information, is the following statement true, false, or uncertain? If KO is a growth company’s stock or if its price is volatile, then KO is neither a company’s stock nor is its price volatile.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_74", "context": "All vehicle registration plates in Istanbul begin with the number 34. Plates that do not begin with the number 34 are not from Istanbul. Joe's vehicle registration plate is from Istanbul. Tom's license plate begins with the number 35. [BG] If a license plate begins with the number 35, then it does not begin with the number 34.", "question": "Based on the above information, is the following statement true, false, or uncertain? Joe's license plate begins with the number 34.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_75", "context": "All vehicle registration plates in Istanbul begin with the number 34. Plates that do not begin with the number 34 are not from Istanbul. Joe's vehicle registration plate is from Istanbul. Tom's license plate begins with the number 35. [BG] If a license plate begins with the number 35, then it does not begin with the number 34.", "question": "Based on the above information, is the following statement true, false, or uncertain? Tom's license plate is from Istanbul.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_76", "context": "If people work in student jobs on campus, then they need to earn money to help pay for their college tuition. If people order takeout frequently in college, then they work in student jobs on campus. People either order takeout frequently in college or enjoy the dining hall meals and recipes. If people enjoy the dining hall meals and recipes, then they are not picky eaters. If people enjoy the dining hall meals and recipes, then they spend a lot of their time eating and catching up with friends in the campus dining halls. If Mary works in student jobs on campus and needs to earn money to help pay for her college tuition, then Mary is neither picky nor needs to earn money to help pay for her college tuition.", "question": "Based on the above information, is the following statement true, false, or uncertain? Mary needs to earn money to help pay for her college tuition.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_77", "context": "If people work in student jobs on campus, then they need to earn money to help pay for their college tuition. If people order takeout frequently in college, then they work in student jobs on campus. People either order takeout frequently in college or enjoy the dining hall meals and recipes. If people enjoy the dining hall meals and recipes, then they are not picky eaters. If people enjoy the dining hall meals and recipes, then they spend a lot of their time eating and catching up with friends in the campus dining halls. If Mary works in student jobs on campus and needs to earn money to help pay for her college tuition, then Mary is neither picky nor needs to earn money to help pay for her college tuition.", "question": "Based on the above information, is the following statement true, false, or uncertain? Mary is not a picky eater and spends a lot of her time eating and catching up with friends in the campus dining halls.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_78", "context": "If people work in student jobs on campus, then they need to earn money to help pay for their college tuition. If people order takeout frequently in college, then they work in student jobs on campus. People either order takeout frequently in college or enjoy the dining hall meals and recipes. If people enjoy the dining hall meals and recipes, then they are not picky eaters. If people enjoy the dining hall meals and recipes, then they spend a lot of their time eating and catching up with friends in the campus dining halls. If Mary works in student jobs on campus and needs to earn money to help pay for her college tuition, then Mary is neither picky nor needs to earn money to help pay for her college tuition.", "question": "Based on the above information, is the following statement true, false, or uncertain? Mary either is not a picky eater or, if she is, then she spends a lot of her time eating and catching up with friends in the campus dining halls.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_79", "context": "No bakery is spicy. All cupcakes are bakeries. All hotpots are spicy. All products of Baked by Melissa are cupcakes. If dried Thai chilies are spicy or a bakery, then dried Thai chilies are a hotpot or are spicy.", "question": "Based on the above information, is the following statement true, false, or uncertain? Dried Thai chilies are a product of Baked by Melissa.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_80", "context": "No bakery is spicy. All cupcakes are bakeries. All hotpots are spicy. All products of Baked by Melissa are cupcakes. If dried Thai chilies are spicy or a bakery, then dried Thai chilies are a hotpot or are spicy.", "question": "Based on the above information, is the following statement true, false, or uncertain? Dried Thai chilies are not a product of Baked by Melissa.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_81", "context": "No bakery is spicy. All cupcakes are bakeries. All hotpots are spicy. All products of Baked by Melissa are cupcakes. If dried Thai chilies are spicy or a bakery, then dried Thai chilies are a hotpot or are spicy.", "question": "Based on the above information, is the following statement true, false, or uncertain? Dried Thai chilies are a hotpot.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_82", "context": "No bakery is spicy. All cupcakes are bakeries. All hotpots are spicy. All products of Baked by Melissa are cupcakes. If dried Thai chilies are spicy or a bakery, then dried Thai chilies are a hotpot or are spicy.", "question": "Based on the above information, is the following statement true, false, or uncertain? Dried Thai chilies are neither a product of Baked by Melissa nor a bakery.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_83", "context": "No bakery is spicy. All cupcakes are bakeries. All hotpots are spicy. All products of Baked by Melissa are cupcakes. If dried Thai chilies are spicy or a bakery, then dried Thai chilies are a hotpot or are spicy.", "question": "Based on the above information, is the following statement true, false, or uncertain? Dried Thai chilies are cupcakes and a product of Baked by Melissa.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_84", "context": "If the restaurant is listed in Yelp’s recommendations, then the restaurant does not receive many negative reviews. All restaurants with a rating greater than 9 are listed in Yelp’s recommendations. Some restaurants that do not provide take-out service receive many negative reviews. All restaurants that are popular among local residents have ratings greater than 9. Subway has a rating greater than 9 or is popular among local residents.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Subway provides take-out service and receives many negative reviews, then its rating is greater than 9 and it does not provide take-out service.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_85", "context": "If the restaurant is listed in Yelp’s recommendations, then the restaurant does not receive many negative reviews. All restaurants with a rating greater than 9 are listed in Yelp’s recommendations. Some restaurants that do not provide take-out service receive many negative reviews. All restaurants that are popular among local residents have ratings greater than 9. Subway has a rating greater than 9 or is popular among local residents.", "question": "Based on the above information, is the following statement true, false, or uncertain? Subway provides take-out service and does not receive many negative reviews.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_86", "context": "If the restaurant is listed in Yelp’s recommendations, then the restaurant does not receive many negative reviews. All restaurants with a rating greater than 9 are listed in Yelp’s recommendations. Some restaurants that do not provide take-out service receive many negative reviews. All restaurants that are popular among local residents have ratings greater than 9. Subway has a rating greater than 9 or is popular among local residents.", "question": "Based on the above information, is the following statement true, false, or uncertain? Subway does not provide take-out service.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_87", "context": "In superhero movies, the good guys always win. The Surprising Adventures of Sir Digby Chicken Caesar is a superhero movie. Good guys fight bad guys and vice versa. Sir Digby fights his nemesis. If a superhero movie is named after a character, that character is a good guy. The Surprising Adventures of Sir Digby Chicken Caesar is named after Sir Digby. If somebody wins a fight, the person they are fighting loses. If a superhero movie is named after a character, that character appears in the movie.", "question": "Based on the above information, is the following statement true, false, or uncertain? Sir Digby’s nemesis loses.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_88", "context": "[BG] Books contain tons of knowledge. [BG] When a person reads a book, that person gains knowledge. [BG] If a person gains knowledge, they become smarter. Harry read the book “Walden” by Henry Thoreau.", "question": "Based on the above information, is the following statement true, false, or uncertain? Walden contains knowledge.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_89", "context": "[BG] Books contain tons of knowledge. [BG] When a person reads a book, that person gains knowledge. [BG] If a person gains knowledge, they become smarter. Harry read the book “Walden” by Henry Thoreau.", "question": "Based on the above information, is the following statement true, false, or uncertain? Harry is smarter than before.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_90", "context": "[BG] Books contain tons of knowledge. [BG] When a person reads a book, that person gains knowledge. [BG] If a person gains knowledge, they become smarter. Harry read the book “Walden” by Henry Thoreau.", "question": "Based on the above information, is the following statement true, false, or uncertain? A person who is smarter has gained knowledge.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_91", "context": "Natural language processing tasks can be categorized as either language generation task or language understanding task. If the output of a natural language processing task is a text sequence, then it is a language generation task. Machine translation is a natural language processing task. The output of machine translation is a text sequence.", "question": "Based on the above information, is the following statement true, false, or uncertain? Machine translation is a language generation task.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_92", "context": "Natural language processing tasks can be categorized as either language generation task or language understanding task. If the output of a natural language processing task is a text sequence, then it is a language generation task. Machine translation is a natural language processing task. The output of machine translation is a text sequence.", "question": "Based on the above information, is the following statement true, false, or uncertain? Machine translation is a language understanding task.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_93", "context": "Pets are allowed in some managed buildings. [BG] A deposit is required to rent an apartment in a managed building. The security deposit can be either equal to one month's rent or more. Fluffy is Tom's cat. Cats are pets. The Olive Garden is a managed building. The monthly rent at the Olive Garden is $2000. Tom will rent an apartment in a managed building if and only if he is allowed to move in with Fluffy, and the security deposit is no more than $1500. 2000$ is more than $1500.", "question": "Based on the above information, is the following statement true, false, or uncertain? Tom will rent an apartment in The Olive Garden.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_94", "context": "Pets are allowed in some managed buildings. [BG] A deposit is required to rent an apartment in a managed building. The security deposit can be either equal to one month's rent or more. Fluffy is Tom's cat. Cats are pets. The Olive Garden is a managed building. The monthly rent at the Olive Garden is $2000. Tom will rent an apartment in a managed building if and only if he is allowed to move in with Fluffy, and the security deposit is no more than $1500. 2000$ is more than $1500.", "question": "Based on the above information, is the following statement true, false, or uncertain? Tom is allowed to move in an apartment in The Olive Garden with Fluffy.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_95", "context": "Pets are allowed in some managed buildings. [BG] A deposit is required to rent an apartment in a managed building. The security deposit can be either equal to one month's rent or more. Fluffy is Tom's cat. Cats are pets. The Olive Garden is a managed building. The monthly rent at the Olive Garden is $2000. Tom will rent an apartment in a managed building if and only if he is allowed to move in with Fluffy, and the security deposit is no more than $1500. 2000$ is more than $1500.", "question": "Based on the above information, is the following statement true, false, or uncertain? The security deposit at the Olive Garden is either $2000 or more.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_96", "context": "If animals are loved by tourists, then they are Max's favorite animals. All animals from Australia are loved by tourists. All quokka are animals from Australia. All of Max's favorite animals are very fluffy. All of Max's favorite animals love to sleep. If a koala is very fluffy, then the koala is not a quokka.", "question": "Based on the above information, is the following statement true, false, or uncertain? Koalas love to sleep.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_97", "context": "If animals are loved by tourists, then they are Max's favorite animals. All animals from Australia are loved by tourists. All quokka are animals from Australia. All of Max's favorite animals are very fluffy. All of Max's favorite animals love to sleep. If a koala is very fluffy, then the koala is not a quokka.", "question": "Based on the above information, is the following statement true, false, or uncertain? Koalas love to sleep and are quokka.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_98", "context": "If animals are loved by tourists, then they are Max's favorite animals. All animals from Australia are loved by tourists. All quokka are animals from Australia. All of Max's favorite animals are very fluffy. All of Max's favorite animals love to sleep. If a koala is very fluffy, then the koala is not a quokka.", "question": "Based on the above information, is the following statement true, false, or uncertain? If a koala is a quokka, then the koala either loves to sleep or is very fluffy.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_99", "context": "A man is either kind or evil. No ugly person is handsome. All evil people are ugly. All gentlemen are handsome. All CEOs are gentlemen. Harry is a gentleman.", "question": "Based on the above information, is the following statement true, false, or uncertain? Harry is a CEO.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_100", "context": "A man is either kind or evil. No ugly person is handsome. All evil people are ugly. All gentlemen are handsome. All CEOs are gentlemen. Harry is a gentleman.", "question": "Based on the above information, is the following statement true, false, or uncertain? Harry is kind or a CEO.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_101", "context": "A man is either kind or evil. No ugly person is handsome. All evil people are ugly. All gentlemen are handsome. All CEOs are gentlemen. Harry is a gentleman.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Harry is either both evil and ugly, or neither evil nor ugly, then Harry is neither kind nor a CEO.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_102", "context": "If people are twins or triplets, then they spend a lot of time hanging out with and playing with their siblings. If people have siblings who are the same age, then they are twins or triplets. If people complain often about annoying siblings, then they have siblings who are the same age. If people do not live at home regularly, then they do not develop strong bonds with their family members. If people spend a lot of time hanging out with and playing with their siblings, then they often did not live at home regularly. Luke is either both a twin or triplet and develops strong bonds with his family members, or he neither is a twin or triplet nor develops strong bonds with his family members.", "question": "Based on the above information, is the following statement true, false, or uncertain? Luke spends a lot of time hanging out and playing with his siblings.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_103", "context": "If people are twins or triplets, then they spend a lot of time hanging out with and playing with their siblings. If people have siblings who are the same age, then they are twins or triplets. If people complain often about annoying siblings, then they have siblings who are the same age. If people do not live at home regularly, then they do not develop strong bonds with their family members. If people spend a lot of time hanging out with and playing with their siblings, then they often did not live at home regularly. Luke is either both a twin or triplet and develops strong bonds with his family members, or he neither is a twin or triplet nor develops strong bonds with his family members.", "question": "Based on the above information, is the following statement true, false, or uncertain? Luke complains often about annoying siblings.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_104", "context": "If people are twins or triplets, then they spend a lot of time hanging out with and playing with their siblings. If people have siblings who are the same age, then they are twins or triplets. If people complain often about annoying siblings, then they have siblings who are the same age. If people do not live at home regularly, then they do not develop strong bonds with their family members. If people spend a lot of time hanging out with and playing with their siblings, then they often did not live at home regularly. Luke is either both a twin or triplet and develops strong bonds with his family members, or he neither is a twin or triplet nor develops strong bonds with his family members.", "question": "Based on the above information, is the following statement true, false, or uncertain? Luke is neither a twin nor triplet nor complains often about annoying siblings.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_105", "context": "It costs US $205 to take the GRE test. ETS provides financial aid to those GRE applicants who prove economic hardship. Economic hardship refers to difficulty caused by having too little money or too few resources. Tom lives in a single-parent family. His dad has been out of work for more than a year.", "question": "Based on the above information, is the following statement true, false, or uncertain? Tom can apply for financial aid from ETS to take the GRE test.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_106", "context": "It costs US $205 to take the GRE test. ETS provides financial aid to those GRE applicants who prove economic hardship. Economic hardship refers to difficulty caused by having too little money or too few resources. Tom lives in a single-parent family. His dad has been out of work for more than a year.", "question": "Based on the above information, is the following statement true, false, or uncertain? It cost below US $300 to take the GRE test.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_107", "context": "It costs US $205 to take the GRE test. ETS provides financial aid to those GRE applicants who prove economic hardship. Economic hardship refers to difficulty caused by having too little money or too few resources. Tom lives in a single-parent family. His dad has been out of work for more than a year.", "question": "Based on the above information, is the following statement true, false, or uncertain? There is no financial aid available for the GRE test.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_108", "context": "If people spill a lot of food on their clothing, then they do not tidy their spaces consistently and enjoy the process of cleaning. All foodies who go out frequently to find new food restaurants to try are people who spill a lot of food on their clothing. If people grew up as only children with no siblings, then they tidy their spaces consistently and enjoy the process of cleaning. If people have parents who are very busy with their regular jobs, then they grew up as only children with no siblings. All households with a high net income have people who have parents who are very busy with their regular jobs. Peter is either both a person who spills a lot of food on his clothing and grew up as an only child with no siblings, or he is neither a person who spills a lot of food on his clothing nor grew up as an only child with no siblings.", "question": "Based on the above information, is the following statement true, false, or uncertain? Peter tidies his space consistently and enjoys the process of cleaning.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_109", "context": "If people spill a lot of food on their clothing, then they do not tidy their spaces consistently and enjoy the process of cleaning. All foodies who go out frequently to find new food restaurants to try are people who spill a lot of food on their clothing. If people grew up as only children with no siblings, then they tidy their spaces consistently and enjoy the process of cleaning. If people have parents who are very busy with their regular jobs, then they grew up as only children with no siblings. All households with a high net income have people who have parents who are very busy with their regular jobs. Peter is either both a person who spills a lot of food on his clothing and grew up as an only child with no siblings, or he is neither a person who spills a lot of food on his clothing nor grew up as an only child with no siblings.", "question": "Based on the above information, is the following statement true, false, or uncertain? Peter is either a foodie who goes out frequently to find new food restaurants to try or belongs to a household with a high net income.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_110", "context": "If people spill a lot of food on their clothing, then they do not tidy their spaces consistently and enjoy the process of cleaning. All foodies who go out frequently to find new food restaurants to try are people who spill a lot of food on their clothing. If people grew up as only children with no siblings, then they tidy their spaces consistently and enjoy the process of cleaning. If people have parents who are very busy with their regular jobs, then they grew up as only children with no siblings. All households with a high net income have people who have parents who are very busy with their regular jobs. Peter is either both a person who spills a lot of food on his clothing and grew up as an only child with no siblings, or he is neither a person who spills a lot of food on his clothing nor grew up as an only child with no siblings.", "question": "Based on the above information, is the following statement true, false, or uncertain? Peter is either a foodie who goes out frequently to find new food restaurants to try and belong to a household with a high net income or he is a foodie who goes out frequently to find new food restaurants to try nor belongs to a household with a high net income.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_111", "context": "All fir trees are evergreens. Some objects of worship are fir trees.", "question": "Based on the above information, is the following statement true, false, or uncertain? Some evergreens are not objects of worship.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_112", "context": "The Picuris Mountains are a mountain range in New Mexico or Texas. Juan de Onate visited the Picuris Mountains. The Harding Pegmatite Mine, located in the Picuris Mountains, was donated. There are no mountain ranges in texas that have mines which have been donated.", "question": "Based on the above information, is the following statement true, false, or uncertain? Juan de Onate visited a mountain range in New Mexico.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_113", "context": "The Picuris Mountains are a mountain range in New Mexico or Texas. Juan de Onate visited the Picuris Mountains. The Harding Pegmatite Mine, located in the Picuris Mountains, was donated. There are no mountain ranges in texas that have mines which have been donated.", "question": "Based on the above information, is the following statement true, false, or uncertain? Juan de Onate visited a mountain range in Texas.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_114", "context": "The Picuris Mountains are a mountain range in New Mexico or Texas. Juan de Onate visited the Picuris Mountains. The Harding Pegmatite Mine, located in the Picuris Mountains, was donated. There are no mountain ranges in texas that have mines which have been donated.", "question": "Based on the above information, is the following statement true, false, or uncertain? The Harding Pegmatite Mine is not located in a mountain range in New Mexico.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_115", "context": "If a man is taller than another man, the taller one can block the other's shooting. Michael is a man who is taller than everyone else in his class. If person x is taller than person y, and person y is taller than person z, than x is taller than z Peter is a man who is taller than Michael. Michael can block any shooting from a person as long as the person does not jump when shooting. Michael cannot block Windy's shooting. Every shooter who can jump when shooting is a great shooter.", "question": "Based on the above information, is the following statement true, false, or uncertain? Peter is shorter than a man in Michael's class.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_116", "context": "If a man is taller than another man, the taller one can block the other's shooting. Michael is a man who is taller than everyone else in his class. If person x is taller than person y, and person y is taller than person z, than x is taller than z Peter is a man who is taller than Michael. Michael can block any shooting from a person as long as the person does not jump when shooting. Michael cannot block Windy's shooting. Every shooter who can jump when shooting is a great shooter.", "question": "Based on the above information, is the following statement true, false, or uncertain? Windy is a great shooter.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_117", "context": "If a man is taller than another man, the taller one can block the other's shooting. Michael is a man who is taller than everyone else in his class. If person x is taller than person y, and person y is taller than person z, than x is taller than z Peter is a man who is taller than Michael. Michael can block any shooting from a person as long as the person does not jump when shooting. Michael cannot block Windy's shooting. Every shooter who can jump when shooting is a great shooter.", "question": "Based on the above information, is the following statement true, false, or uncertain? Peter can block Windy's shooting.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_118", "context": "Barutin Cove is named after the Bulgarian settlement of Barutin. Barutin Cove is on the southwest coast of Snow Island. The South Shetland Islands include Snow Island, Greenwich Island, and Deception Island. The South Shetland Islands are considered part of Antarctica. If A is located in B and B is located in C, then A is located in C.", "question": "Based on the above information, is the following statement true, false, or uncertain? Barutin is named after all islands in Antarctica.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_119", "context": "Barutin Cove is named after the Bulgarian settlement of Barutin. Barutin Cove is on the southwest coast of Snow Island. The South Shetland Islands include Snow Island, Greenwich Island, and Deception Island. The South Shetland Islands are considered part of Antarctica. If A is located in B and B is located in C, then A is located in C.", "question": "Based on the above information, is the following statement true, false, or uncertain? There is at least one cove in Antarctica named after a place in Bulgaria.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_120", "context": "Barutin Cove is named after the Bulgarian settlement of Barutin. Barutin Cove is on the southwest coast of Snow Island. The South Shetland Islands include Snow Island, Greenwich Island, and Deception Island. The South Shetland Islands are considered part of Antarctica. If A is located in B and B is located in C, then A is located in C.", "question": "Based on the above information, is the following statement true, false, or uncertain? Barutin is not located in Antarctica.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_121", "context": "Some affection is love. Some love is positive.", "question": "Based on the above information, is the following statement true, false, or uncertain? Some affection is positive.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_122", "context": "If something can transport multiple passengers, then they are not empty. All airlines can transport multiple passengers. All planes are empty. All Boeing 707s are planes. If Greyhound is not an airline, then there are no Greyhound planes.", "question": "Based on the above information, is the following statement true, false, or uncertain? Greyhound is an airline.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_123", "context": "If something can transport multiple passengers, then they are not empty. All airlines can transport multiple passengers. All planes are empty. All Boeing 707s are planes. If Greyhound is not an airline, then there are no Greyhound planes.", "question": "Based on the above information, is the following statement true, false, or uncertain? A Greyhound is a Boeing 707.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_124", "context": "If something can transport multiple passengers, then they are not empty. All airlines can transport multiple passengers. All planes are empty. All Boeing 707s are planes. If Greyhound is not an airline, then there are no Greyhound planes.", "question": "Based on the above information, is the following statement true, false, or uncertain? A Greyhound is not a Boeing 707.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_125", "context": "All mammals are animals. All monkeys are mammals. An animal is either a monkey or a bird. All birds fly. All animals breathe. If something can fly, then it has wings. If Rock is neither a fly nor a bird, then Rock neither flies nor breathes.", "question": "Based on the above information, is the following statement true, false, or uncertain? Rock is a monkey.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_126", "context": "All mammals are animals. All monkeys are mammals. An animal is either a monkey or a bird. All birds fly. All animals breathe. If something can fly, then it has wings. If Rock is neither a fly nor a bird, then Rock neither flies nor breathes.", "question": "Based on the above information, is the following statement true, false, or uncertain? Rock has wings.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_127", "context": "All mammals are animals. All monkeys are mammals. An animal is either a monkey or a bird. All birds fly. All animals breathe. If something can fly, then it has wings. If Rock is neither a fly nor a bird, then Rock neither flies nor breathes.", "question": "Based on the above information, is the following statement true, false, or uncertain? Rock does not have wings.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_128", "context": "All people who have a wedding are people who have at least one child. All people who travel to Paris for their honeymoon are people who have a wedding. All weddings that occur in July belong to people who travel to Paris for their honeymoon. Some weddings in July are well-attended. If John has at least one child, then John does not travel to Paris for his honeymoon and does not have a wedding. If John has a wedding that is well-attended, then John has a wedding in July or, if not, then John travels to Paris for their honeymoon.", "question": "Based on the above information, is the following statement true, false, or uncertain? John has a wedding that is well-attended.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_129", "context": "All people who have a wedding are people who have at least one child. All people who travel to Paris for their honeymoon are people who have a wedding. All weddings that occur in July belong to people who travel to Paris for their honeymoon. Some weddings in July are well-attended. If John has at least one child, then John does not travel to Paris for his honeymoon and does not have a wedding. If John has a wedding that is well-attended, then John has a wedding in July or, if not, then John travels to Paris for their honeymoon.", "question": "Based on the above information, is the following statement true, false, or uncertain? John does not have a wedding that is well-attended.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_130", "context": "All people who have a wedding are people who have at least one child. All people who travel to Paris for their honeymoon are people who have a wedding. All weddings that occur in July belong to people who travel to Paris for their honeymoon. Some weddings in July are well-attended. If John has at least one child, then John does not travel to Paris for his honeymoon and does not have a wedding. If John has a wedding that is well-attended, then John has a wedding in July or, if not, then John travels to Paris for their honeymoon.", "question": "Based on the above information, is the following statement true, false, or uncertain? John has at least one child.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_131", "context": "All people who have a wedding are people who have at least one child. All people who travel to Paris for their honeymoon are people who have a wedding. All weddings that occur in July belong to people who travel to Paris for their honeymoon. Some weddings in July are well-attended. If John has at least one child, then John does not travel to Paris for his honeymoon and does not have a wedding. If John has a wedding that is well-attended, then John has a wedding in July or, if not, then John travels to Paris for their honeymoon.", "question": "Based on the above information, is the following statement true, false, or uncertain? John has neither a wedding that is well-attended nor does he travel to Paris for his honeymoon.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_132", "context": "[BG] Some mammals have teeth. Platypus have no teeth. Platypus are mammals. Humans have teeth.", "question": "Based on the above information, is the following statement true, false, or uncertain? Platypus are mammals with no teeth.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_133", "context": "[BG] Some mammals have teeth. Platypus have no teeth. Platypus are mammals. Humans have teeth.", "question": "Based on the above information, is the following statement true, false, or uncertain? Platypus are reptiles.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_134", "context": "[BG] Some mammals have teeth. Platypus have no teeth. Platypus are mammals. Humans have teeth.", "question": "Based on the above information, is the following statement true, false, or uncertain? Humans are mammals.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_135", "context": "Plungers suck. Vacuums suck. Vampires suck. Space is a vacuum. A duster is a household appliance that doesn't suck.", "question": "Based on the above information, is the following statement true, false, or uncertain? Space sucks.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_136", "context": "Plungers suck. Vacuums suck. Vampires suck. Space is a vacuum. A duster is a household appliance that doesn't suck.", "question": "Based on the above information, is the following statement true, false, or uncertain? Space is a vampire.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_137", "context": "Plungers suck. Vacuums suck. Vampires suck. Space is a vacuum. A duster is a household appliance that doesn't suck.", "question": "Based on the above information, is the following statement true, false, or uncertain? If something is a household appliance, it sucks.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_138", "context": "Machine Learning algorithms can be categorized as supervised learning, unsupervised learning, and reinforcement learning. Unsupervised learning doesn't require labelled data. The state-of-the-art text summarization model is trained with machine learning algorithms. Reinforcement learning is not used to train the state-of-the-art text summarization model. The Machine Learning algorithm for training text summarization model requires labelled data.", "question": "Based on the above information, is the following statement true, false, or uncertain? Supervised learning is used to train the state-of-the-art text summarization model.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_139", "context": "Machine Learning algorithms can be categorized as supervised learning, unsupervised learning, and reinforcement learning. Unsupervised learning doesn't require labelled data. The state-of-the-art text summarization model is trained with machine learning algorithms. Reinforcement learning is not used to train the state-of-the-art text summarization model. The Machine Learning algorithm for training text summarization model requires labelled data.", "question": "Based on the above information, is the following statement true, false, or uncertain? Unsupervised learning is used to train the state-of-the-art text summarization model.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_140", "context": "If a cartoon character is funny, then it is popular. If a cartoon character is ugly, then it is not popular. If a cartoon character is loved by children, then it is funny. If a cartoon character is from The Simpsons, then it is loved by children. If a cartoon character is yellow, then it is from The Simpsons. Ben is either from The Simpsons or funny.", "question": "Based on the above information, is the following statement true, false, or uncertain? Ben is loved by children.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_141", "context": "If a cartoon character is funny, then it is popular. If a cartoon character is ugly, then it is not popular. If a cartoon character is loved by children, then it is funny. If a cartoon character is from The Simpsons, then it is loved by children. If a cartoon character is yellow, then it is from The Simpsons. Ben is either from The Simpsons or funny.", "question": "Based on the above information, is the following statement true, false, or uncertain? Ben is ugly or yellow.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_142", "context": "If a cartoon character is funny, then it is popular. If a cartoon character is ugly, then it is not popular. If a cartoon character is loved by children, then it is funny. If a cartoon character is from The Simpsons, then it is loved by children. If a cartoon character is yellow, then it is from The Simpsons. Ben is either from The Simpsons or funny.", "question": "Based on the above information, is the following statement true, false, or uncertain? Ben is either yellow and ugly or neither yellow nor ugly.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_143", "context": "Breeding back is a form of artificial selection by the deliberate selective breeding of domestic animals. Heck cattle were bred-back in the 1920s to resemble the aurochs. [BG] Heck cattle are animals. [BG] Aurochs are animals. Some animals to be bred-back resemble animals that are extinct.", "question": "Based on the above information, is the following statement true, false, or uncertain? Some Heck cattle are artificially selected.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_144", "context": "Breeding back is a form of artificial selection by the deliberate selective breeding of domestic animals. Heck cattle were bred-back in the 1920s to resemble the aurochs. [BG] Heck cattle are animals. [BG] Aurochs are animals. Some animals to be bred-back resemble animals that are extinct.", "question": "Based on the above information, is the following statement true, false, or uncertain? Aurochs are extinct.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_145", "context": "All students are humans. If someone studies, then they are a student. A person either studys or teaches. No young person teaches. Jerry neither teaches nor is a manager. Rose is young or a student.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jerry is young.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_146", "context": "All students are humans. If someone studies, then they are a student. A person either studys or teaches. No young person teaches. Jerry neither teaches nor is a manager. Rose is young or a student.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jerry is not young.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_147", "context": "All students are humans. If someone studies, then they are a student. A person either studys or teaches. No young person teaches. Jerry neither teaches nor is a manager. Rose is young or a student.", "question": "Based on the above information, is the following statement true, false, or uncertain? Rose is a human or a manager.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_148", "context": "All students are humans. If someone studies, then they are a student. A person either studys or teaches. No young person teaches. Jerry neither teaches nor is a manager. Rose is young or a student.", "question": "Based on the above information, is the following statement true, false, or uncertain? Rose is a human or Jerry is a manager.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_149", "context": "All students are humans. If someone studies, then they are a student. A person either studys or teaches. No young person teaches. Jerry neither teaches nor is a manager. Rose is young or a student.", "question": "Based on the above information, is the following statement true, false, or uncertain? It is not true that Rose is a student and Jerry is a human.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_150", "context": "New Vessel Press is a publishing house which specializes in translating foreign literature into English. All of New Vessel Press's published books are in English. Neapolitan Chronicles is a book published by New Vessel Press. Neapolitan Chronicles was translated from Italian. Palace of Flies is a book published by New Vessel Press.", "question": "Based on the above information, is the following statement true, false, or uncertain? Neapolitan Chronicles is an English book.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_151", "context": "New Vessel Press is a publishing house which specializes in translating foreign literature into English. All of New Vessel Press's published books are in English. Neapolitan Chronicles is a book published by New Vessel Press. Neapolitan Chronicles was translated from Italian. Palace of Flies is a book published by New Vessel Press.", "question": "Based on the above information, is the following statement true, false, or uncertain? Harry Potter was published by New Vessel Press.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_152", "context": "New Vessel Press is a publishing house which specializes in translating foreign literature into English. All of New Vessel Press's published books are in English. Neapolitan Chronicles is a book published by New Vessel Press. Neapolitan Chronicles was translated from Italian. Palace of Flies is a book published by New Vessel Press.", "question": "Based on the above information, is the following statement true, false, or uncertain? Palace of Flies was translated from Italian.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_153", "context": "If people own a large desktop monitor at their home, then they work regularly and often at home. All people who have a fully stocked and impressive home office are people who own a large desktop monitor at their home. All people who work regularly and often at home spend their free time tidying and organizing the spaces in their homes. All people who work regularly and often at home visit the office supply store regularly. If people spend their free time tidying and organizing the spaces in their home, then they do not go to bed late and wake up every day after noon. Remy either both goes to bed late and wakes up every day after noon and spends their free time tidying and organizing the spaces in their home, or they do not go to bed late and wake up every day after noon nor spend their free time tidying and organizing the spaces in their home.", "question": "Based on the above information, is the following statement true, false, or uncertain? Remy visits the office supply store regularly.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_154", "context": "If people own a large desktop monitor at their home, then they work regularly and often at home. All people who have a fully stocked and impressive home office are people who own a large desktop monitor at their home. All people who work regularly and often at home spend their free time tidying and organizing the spaces in their homes. All people who work regularly and often at home visit the office supply store regularly. If people spend their free time tidying and organizing the spaces in their home, then they do not go to bed late and wake up every day after noon. Remy either both goes to bed late and wakes up every day after noon and spends their free time tidying and organizing the spaces in their home, or they do not go to bed late and wake up every day after noon nor spend their free time tidying and organizing the spaces in their home.", "question": "Based on the above information, is the following statement true, false, or uncertain? Remy has a fully stocked and impressive home office and also visits the office supply store regularly.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_155", "context": "If people own a large desktop monitor at their home, then they work regularly and often at home. All people who have a fully stocked and impressive home office are people who own a large desktop monitor at their home. All people who work regularly and often at home spend their free time tidying and organizing the spaces in their homes. All people who work regularly and often at home visit the office supply store regularly. If people spend their free time tidying and organizing the spaces in their home, then they do not go to bed late and wake up every day after noon. Remy either both goes to bed late and wakes up every day after noon and spends their free time tidying and organizing the spaces in their home, or they do not go to bed late and wake up every day after noon nor spend their free time tidying and organizing the spaces in their home.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Remy either goes to bed late and wakes up every day after noon or visits the office supply store regularly, then Remy neither spends their free time tidying and organizing the spaces in their home nor has a fully stocked and impressive home office.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_156", "context": "All humans are mortal. All Greeks are humans.", "question": "Based on the above information, is the following statement true, false, or uncertain? Some Greeks are mortal.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_157", "context": "No students who work in the library are from the computer science department. All students who have part-time jobs offered by the university are students who work in the library. All students who take the database course are from the computer science department. All students instructed by professor David are taking the database course. All students working in the lab are instructed by professor David. James is a student working in the lab. Jack neither has a part-time job offered by the university nor works in the lab.", "question": "Based on the above information, is the following statement true, false, or uncertain? James has a part-time job offered by the university.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_158", "context": "No students who work in the library are from the computer science department. All students who have part-time jobs offered by the university are students who work in the library. All students who take the database course are from the computer science department. All students instructed by professor David are taking the database course. All students working in the lab are instructed by professor David. James is a student working in the lab. Jack neither has a part-time job offered by the university nor works in the lab.", "question": "Based on the above information, is the following statement true, false, or uncertain? James does not have a part-time job offered by the university.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_159", "context": "No students who work in the library are from the computer science department. All students who have part-time jobs offered by the university are students who work in the library. All students who take the database course are from the computer science department. All students instructed by professor David are taking the database course. All students working in the lab are instructed by professor David. James is a student working in the lab. Jack neither has a part-time job offered by the university nor works in the lab.", "question": "Based on the above information, is the following statement true, false, or uncertain? James either takes the database course or has a part-time job offered by the university.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_160", "context": "No students who work in the library are from the computer science department. All students who have part-time jobs offered by the university are students who work in the library. All students who take the database course are from the computer science department. All students instructed by professor David are taking the database course. All students working in the lab are instructed by professor David. James is a student working in the lab. Jack neither has a part-time job offered by the university nor works in the lab.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jack takes the database course.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_161", "context": "If George likes music, he wants to compose. If George has access to a program, he can compose. If George can compose and wants to compose, he will compose.", "question": "Based on the above information, is the following statement true, false, or uncertain? If George likes music and has access to a program, he will compose.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_162", "context": "If George likes music, he wants to compose. If George has access to a program, he can compose. If George can compose and wants to compose, he will compose.", "question": "Based on the above information, is the following statement true, false, or uncertain? If George will not compose, George can not compose.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_163", "context": "A hawk never lands. Some birds are hawks.", "question": "Based on the above information, is the following statement true, false, or uncertain? All birds land", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_164", "context": "On some Mondays at 8 pm, roses are given out on TV. Every rose given out on TV is on the Bachelor. Everything on the Bachelor portrays the lives of real people. All shows portraying the lives of real people are reality TV shows. Breaking Bad is not a reality TV show.", "question": "Based on the above information, is the following statement true, false, or uncertain? Breaking Bad is on Monday at 8 pm.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_165", "context": "On some Mondays at 8 pm, roses are given out on TV. Every rose given out on TV is on the Bachelor. Everything on the Bachelor portrays the lives of real people. All shows portraying the lives of real people are reality TV shows. Breaking Bad is not a reality TV show.", "question": "Based on the above information, is the following statement true, false, or uncertain? Breaking Bad is a TV show in which roses are given out on Monday at 8 pm.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_166", "context": "On some Mondays at 8 pm, roses are given out on TV. Every rose given out on TV is on the Bachelor. Everything on the Bachelor portrays the lives of real people. All shows portraying the lives of real people are reality TV shows. Breaking Bad is not a reality TV show.", "question": "Based on the above information, is the following statement true, false, or uncertain? If roses are given out during Breaking Bad, then it is on Monday at 8 pm.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_167", "context": "Heinrich Scmidt was a Nazi German politician. Heeinrich Scmidt was also a member of the Prussian State Parliament and the Nazi Reichstag.", "question": "Based on the above information, is the following statement true, false, or uncertain? Heinrich Schmidt was either German or Russian.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_168", "context": "Heinrich Scmidt was a Nazi German politician. Heeinrich Scmidt was also a member of the Prussian State Parliament and the Nazi Reichstag.", "question": "Based on the above information, is the following statement true, false, or uncertain? Some Nazi German politician was part of both the Prussian State Parliament and the Nazi Reichstag.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_169", "context": "Heinrich Scmidt was a Nazi German politician. Heeinrich Scmidt was also a member of the Prussian State Parliament and the Nazi Reichstag.", "question": "Based on the above information, is the following statement true, false, or uncertain? No politicans are part of the Nazi Reichstag.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_170", "context": "If something is a deadly disease, then its survival rate is low. All severe cancers are deadly diseases. Bile duct cancer is a severe cancer. All Cholangiocarcinoma is bile duct cancer. No one with mild flu has a low survival rate. If colorectal cancer is a bile duct cancer and the survival rate is low, then colorectal cancer is not a bile duct cancer.", "question": "Based on the above information, is the following statement true, false, or uncertain? Colorectal cancer is a severe cancer", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_171", "context": "If something is a deadly disease, then its survival rate is low. All severe cancers are deadly diseases. Bile duct cancer is a severe cancer. All Cholangiocarcinoma is bile duct cancer. No one with mild flu has a low survival rate. If colorectal cancer is a bile duct cancer and the survival rate is low, then colorectal cancer is not a bile duct cancer.", "question": "Based on the above information, is the following statement true, false, or uncertain? If colorectal cancer is a bile duct cancer or a Cholangiocarcinoma, then colorectal cancer is a bile duct cancer and a mild flu.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_172", "context": "If something is a deadly disease, then its survival rate is low. All severe cancers are deadly diseases. Bile duct cancer is a severe cancer. All Cholangiocarcinoma is bile duct cancer. No one with mild flu has a low survival rate. If colorectal cancer is a bile duct cancer and the survival rate is low, then colorectal cancer is not a bile duct cancer.", "question": "Based on the above information, is the following statement true, false, or uncertain? If colorectal cancer is not a mild flu and a Cholangiocarcinoma, then colorectal cancer is a bile duct cancer or a Cholangiocarcinoma.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_173", "context": "All people who eat salads regularly are very conscious about their health and eating habits. All people who grew up in health-conscious childhood homes eat salads regularly. All people who fulfill their nutritional daily intakes grew up in health-conscious childhood homes. If people have good relationships with their parents, then they fulfill their nutritional daily intakes. If people have good relationships with their parents, then they do not eat salads regularly. If people visit the gym at least once a day, then they always fulfill their daily nutritional intakes. It is either both true that Taylor grew up in a health-conscious childhood home and she has a good relationship with her parents, or it is true that Taylor neither grew up in a health-conscious childhood home nor has a good relationship with her parents.", "question": "Based on the above information, is the following statement true, false, or uncertain? Taylor eats salads regularly.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_174", "context": "All people who eat salads regularly are very conscious about their health and eating habits. All people who grew up in health-conscious childhood homes eat salads regularly. All people who fulfill their nutritional daily intakes grew up in health-conscious childhood homes. If people have good relationships with their parents, then they fulfill their nutritional daily intakes. If people have good relationships with their parents, then they do not eat salads regularly. If people visit the gym at least once a day, then they always fulfill their daily nutritional intakes. It is either both true that Taylor grew up in a health-conscious childhood home and she has a good relationship with her parents, or it is true that Taylor neither grew up in a health-conscious childhood home nor has a good relationship with her parents.", "question": "Based on the above information, is the following statement true, false, or uncertain? Taylor visits the gym at least once a day.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_175", "context": "All people who eat salads regularly are very conscious about their health and eating habits. All people who grew up in health-conscious childhood homes eat salads regularly. All people who fulfill their nutritional daily intakes grew up in health-conscious childhood homes. If people have good relationships with their parents, then they fulfill their nutritional daily intakes. If people have good relationships with their parents, then they do not eat salads regularly. If people visit the gym at least once a day, then they always fulfill their daily nutritional intakes. It is either both true that Taylor grew up in a health-conscious childhood home and she has a good relationship with her parents, or it is true that Taylor neither grew up in a health-conscious childhood home nor has a good relationship with her parents.", "question": "Based on the above information, is the following statement true, false, or uncertain? Taylor neither grew up in a health-conscious childhood home nor does she visit the gym at least once a day.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_176", "context": "[BG] The Olympic games is a sporting event. The last Olympic games was in Tokyo. The United States won the most medals in Tokyo.", "question": "Based on the above information, is the following statement true, false, or uncertain? The world championships is a sporting event.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_177", "context": "[BG] The Olympic games is a sporting event. The last Olympic games was in Tokyo. The United States won the most medals in Tokyo.", "question": "Based on the above information, is the following statement true, false, or uncertain? The last Olympic games were not in Tokyo.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_178", "context": "[BG] The Olympic games is a sporting event. The last Olympic games was in Tokyo. The United States won the most medals in Tokyo.", "question": "Based on the above information, is the following statement true, false, or uncertain? The United States won the most medals in the last Olympic games.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_179", "context": "All horses have hooves. No humans have hooves.", "question": "Based on the above information, is the following statement true, false, or uncertain? Some humans are horses.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_180", "context": "Susan flies to LGA airport. The departure and arrival can not be the same airport. John flies from LGA airport.", "question": "Based on the above information, is the following statement true, false, or uncertain? Susan flies from LGA airport.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_181", "context": "Susan flies to LGA airport. The departure and arrival can not be the same airport. John flies from LGA airport.", "question": "Based on the above information, is the following statement true, false, or uncertain? John flies to LGA airport.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_182", "context": "No one nice to animals is mean to animals. Some grumpy people are mean to animals. All animal lovers are nice to animals. If someone owns a pet, then they love animals. Tom is a pet owner.", "question": "Based on the above information, is the following statement true, false, or uncertain? Tom is a grumpy person.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_183", "context": "No one nice to animals is mean to animals. Some grumpy people are mean to animals. All animal lovers are nice to animals. If someone owns a pet, then they love animals. Tom is a pet owner.", "question": "Based on the above information, is the following statement true, false, or uncertain? Tom is not a grumpy person and mean to animals.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_184", "context": "No one nice to animals is mean to animals. Some grumpy people are mean to animals. All animal lovers are nice to animals. If someone owns a pet, then they love animals. Tom is a pet owner.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Tom is not a grumpy person and mean to animals, then Tom is neither a grumpy person nor an Animal Lover.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_185", "context": "A podcast is not a novel. [BG] If a person is born in American City, the person is American. [BG] If a book is novel and it is written by a person, then the person is a novel writer. Dani Shapiro is an American writer. Family History is written by Dani Shapiro. Family History is a novel written in 2003. Dani Shapiro created a podcast called Family Secrets. [BG] Boston is an American city.", "question": "Based on the above information, is the following statement true, false, or uncertain? Dani Shapiro is a novel writer.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_186", "context": "A podcast is not a novel. [BG] If a person is born in American City, the person is American. [BG] If a book is novel and it is written by a person, then the person is a novel writer. Dani Shapiro is an American writer. Family History is written by Dani Shapiro. Family History is a novel written in 2003. Dani Shapiro created a podcast called Family Secrets. [BG] Boston is an American city.", "question": "Based on the above information, is the following statement true, false, or uncertain? Family Secrets is a novel.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_187", "context": "A podcast is not a novel. [BG] If a person is born in American City, the person is American. [BG] If a book is novel and it is written by a person, then the person is a novel writer. Dani Shapiro is an American writer. Family History is written by Dani Shapiro. Family History is a novel written in 2003. Dani Shapiro created a podcast called Family Secrets. [BG] Boston is an American city.", "question": "Based on the above information, is the following statement true, false, or uncertain? Dani Shapiro was born in Boston.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_188", "context": "Some basketball players are not American. All basketball players are tall. If someone is tall, they wear large shoes. If someone wears large shoes, they wear large-sized clothes. Yuri does not wear large-size clothes.", "question": "Based on the above information, is the following statement true, false, or uncertain? Yuri is an American.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_189", "context": "Some basketball players are not American. All basketball players are tall. If someone is tall, they wear large shoes. If someone wears large shoes, they wear large-sized clothes. Yuri does not wear large-size clothes.", "question": "Based on the above information, is the following statement true, false, or uncertain? Yuri is not an American basketball player.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_190", "context": "Some basketball players are not American. All basketball players are tall. If someone is tall, they wear large shoes. If someone wears large shoes, they wear large-sized clothes. Yuri does not wear large-size clothes.", "question": "Based on the above information, is the following statement true, false, or uncertain? Yuri is an American basketball player.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_191", "context": "Some basketball players are not American. All basketball players are tall. If someone is tall, they wear large shoes. If someone wears large shoes, they wear large-sized clothes. Yuri does not wear large-size clothes.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Yuri does not wear large shoes, then Yuri is an American basketball player.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_192", "context": "Some basketball players are not American. All basketball players are tall. If someone is tall, they wear large shoes. If someone wears large shoes, they wear large-sized clothes. Yuri does not wear large-size clothes.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Yuri is not an American basketball player, then Yuri is a basketball player.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_193", "context": "Events are either happy or sad. At least one event is happy.", "question": "Based on the above information, is the following statement true, false, or uncertain? All events are sad.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_194", "context": "The winner of the 1992 du Maurier Classic was Steinhauer. Steinhauer participated in the 1992 du Maurier Classic. There was one six-way tie on the leaderboard and one person in the six-way tie was from Belgium. Descampe is from Belgium and is on the leaderboard of the 1992 du Maurier Classic. All people on the leaderboard of the 1992 du Maurier Classic participated in the 1992 du Maurier Classic.", "question": "Based on the above information, is the following statement true, false, or uncertain? Steinhauer was not the winner of the 1992 du Maurier Classic.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_195", "context": "The winner of the 1992 du Maurier Classic was Steinhauer. Steinhauer participated in the 1992 du Maurier Classic. There was one six-way tie on the leaderboard and one person in the six-way tie was from Belgium. Descampe is from Belgium and is on the leaderboard of the 1992 du Maurier Classic. All people on the leaderboard of the 1992 du Maurier Classic participated in the 1992 du Maurier Classic.", "question": "Based on the above information, is the following statement true, false, or uncertain? Descampe is in the six-way tie in the leaderboard of the 1992 du Maurier Classic.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_196", "context": "If an animal barks, then Jane does not like it. All dogs are animals that bark. If an animal jumps, then Jane likes it. If an animal has legs, then it jumps. If an animal is terricolous, then it has legs. If KiKi neither jumps nor has legs, then KiKi is terricolous or has legs.", "question": "Based on the above information, is the following statement true, false, or uncertain? KiKi is terricolous.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_197", "context": "If an animal barks, then Jane does not like it. All dogs are animals that bark. If an animal jumps, then Jane likes it. If an animal has legs, then it jumps. If an animal is terricolous, then it has legs. If KiKi neither jumps nor has legs, then KiKi is terricolous or has legs.", "question": "Based on the above information, is the following statement true, false, or uncertain? KiKi barks and is a dog.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_198", "context": "If an animal barks, then Jane does not like it. All dogs are animals that bark. If an animal jumps, then Jane likes it. If an animal has legs, then it jumps. If an animal is terricolous, then it has legs. If KiKi neither jumps nor has legs, then KiKi is terricolous or has legs.", "question": "Based on the above information, is the following statement true, false, or uncertain? KiKi neither barks nor is a dog.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_dev_199", "context": "Ailton Silva, born in 1995, is commonly known as Ailton. Ailton is a football player who was loaned out to Braga. Ailton Silva is a Brazillian footballer who plays for Nautico. Nautico is a football club along with Braga. Fluminense is a football club.", "question": "Based on the above information, is the following statement true, false, or uncertain? No one playing for Nautico is Brazilian.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_200", "context": "Ailton Silva, born in 1995, is commonly known as Ailton. Ailton is a football player who was loaned out to Braga. Ailton Silva is a Brazillian footballer who plays for Nautico. Nautico is a football club along with Braga. Fluminense is a football club.", "question": "Based on the above information, is the following statement true, false, or uncertain? Ailton Silva foes not play for a football club.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_201", "context": "Ailton Silva, born in 1995, is commonly known as Ailton. Ailton is a football player who was loaned out to Braga. Ailton Silva is a Brazillian footballer who plays for Nautico. Nautico is a football club along with Braga. Fluminense is a football club.", "question": "Based on the above information, is the following statement true, false, or uncertain? Ailton was not loaned out to a football club.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_dev_202", "context": "Ailton Silva, born in 1995, is commonly known as Ailton. Ailton is a football player who was loaned out to Braga. Ailton Silva is a Brazillian footballer who plays for Nautico. Nautico is a football club along with Braga. Fluminense is a football club.", "question": "Based on the above information, is the following statement true, false, or uncertain? Ailton Silva played for Fluminense.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_dev_203", "context": "Ailton Silva, born in 1995, is commonly known as Ailton. Ailton is a football player who was loaned out to Braga. Ailton Silva is a Brazillian footballer who plays for Nautico. Nautico is a football club along with Braga. Fluminense is a football club.", "question": "Based on the above information, is the following statement true, false, or uncertain? Ailton Silva was loaned out to a football club.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" } ] ================================================ FILE: data/FOLIO/train.json ================================================ [ { "id": "FOLIO_train_0", "context": "All people who regularly drink coffee are dependent on caffeine. People either regularly drink coffee or joke about being addicted to caffeine. No one who jokes about being addicted to caffeine is unaware that caffeine is a drug. Rina is either a student and unaware that caffeine is a drug, or neither a student nor unaware that caffeine is a drug. If Rina is not a person dependent on caffeine and a student, then Rina is either a person dependent on caffeine and a student, or neither a person dependent on caffeine nor a student.", "question": "Based on the above information, is the following statement true, false, or uncertain? Rina is a person who jokes about being addicted to caffeine or unaware that caffeine is a drug.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_1", "context": "All people who regularly drink coffee are dependent on caffeine. People either regularly drink coffee or joke about being addicted to caffeine. No one who jokes about being addicted to caffeine is unaware that caffeine is a drug. Rina is either a student and unaware that caffeine is a drug, or neither a student nor unaware that caffeine is a drug. If Rina is not a person dependent on caffeine and a student, then Rina is either a person dependent on caffeine and a student, or neither a person dependent on caffeine nor a student.", "question": "Based on the above information, is the following statement true, false, or uncertain? Rina is either a person who jokes about being addicted to caffeine or is unaware that caffeine is a drug.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_2", "context": "All people who regularly drink coffee are dependent on caffeine. People either regularly drink coffee or joke about being addicted to caffeine. No one who jokes about being addicted to caffeine is unaware that caffeine is a drug. Rina is either a student and unaware that caffeine is a drug, or neither a student nor unaware that caffeine is a drug. If Rina is not a person dependent on caffeine and a student, then Rina is either a person dependent on caffeine and a student, or neither a person dependent on caffeine nor a student.", "question": "Based on the above information, is the following statement true, false, or uncertain? Rina is either a person who regularly drinks coffee or a person who is unaware that caffeine is a drug.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_3", "context": "All people who regularly drink coffee are dependent on caffeine. People either regularly drink coffee or joke about being addicted to caffeine. No one who jokes about being addicted to caffeine is unaware that caffeine is a drug. Rina is either a student and unaware that caffeine is a drug, or neither a student nor unaware that caffeine is a drug. If Rina is not a person dependent on caffeine and a student, then Rina is either a person dependent on caffeine and a student, or neither a person dependent on caffeine nor a student.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Rina is either a person who jokes about being addicted to caffeine and a person who is unaware that caffeine is a drug, or neither a person who jokes about being addicted to caffeine nor a person who is unaware that caffeine is a drug, then Rina jokes about being addicted to caffeine and regularly drinks coffee.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_4", "context": "Miroslav Venhoda was a Czech choral conductor who specialized in the performance of Renaissance and Baroque music. Any choral conductor is a musician. Some musicians love music. Miroslav Venhoda published a book in 1946 called Method of Studying Gregorian Chant.", "question": "Based on the above information, is the following statement true, false, or uncertain? Miroslav Venhoda loved music.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_5", "context": "Miroslav Venhoda was a Czech choral conductor who specialized in the performance of Renaissance and Baroque music. Any choral conductor is a musician. Some musicians love music. Miroslav Venhoda published a book in 1946 called Method of Studying Gregorian Chant.", "question": "Based on the above information, is the following statement true, false, or uncertain? A Czech person wrote a book in 1946.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_6", "context": "Miroslav Venhoda was a Czech choral conductor who specialized in the performance of Renaissance and Baroque music. Any choral conductor is a musician. Some musicians love music. Miroslav Venhoda published a book in 1946 called Method of Studying Gregorian Chant.", "question": "Based on the above information, is the following statement true, false, or uncertain? No choral conductor specialized in the performance of Renaissance.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_7", "context": "All eels are fish. No fish are plants. A thing is either a plant or animal. Nothing that breathes is paper. All animals breathe. If a sea eel is either an eel or a plant, then a sea eel is an eel or an animal.", "question": "Based on the above information, is the following statement true, false, or uncertain? Sea eel is an eel.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_8", "context": "All eels are fish. No fish are plants. A thing is either a plant or animal. Nothing that breathes is paper. All animals breathe. If a sea eel is either an eel or a plant, then a sea eel is an eel or an animal.", "question": "Based on the above information, is the following statement true, false, or uncertain? Sea eel is a paper.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_9", "context": "All eels are fish. No fish are plants. A thing is either a plant or animal. Nothing that breathes is paper. All animals breathe. If a sea eel is either an eel or a plant, then a sea eel is an eel or an animal.", "question": "Based on the above information, is the following statement true, false, or uncertain? Sea eel breathes or is a paper.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_10", "context": "The Blake McFall Company Building is a commercial warehouse listed on the National Register of Historic Places. The Blake McFall Company Building was added to the National Register of Historic Places in 1990. The Emmet Building is a five-story building in Portland, Oregon. The Emmet Building was built in 1915. The Emmet Building is another name for the Blake McFall Company Building. John works at the Emmet Building.", "question": "Based on the above information, is the following statement true, false, or uncertain? A five-story building is built in 1915.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_11", "context": "The Blake McFall Company Building is a commercial warehouse listed on the National Register of Historic Places. The Blake McFall Company Building was added to the National Register of Historic Places in 1990. The Emmet Building is a five-story building in Portland, Oregon. The Emmet Building was built in 1915. The Emmet Building is another name for the Blake McFall Company Building. John works at the Emmet Building.", "question": "Based on the above information, is the following statement true, false, or uncertain? The Blake McFall Company Building is located in Portland, Oregon.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_12", "context": "The Blake McFall Company Building is a commercial warehouse listed on the National Register of Historic Places. The Blake McFall Company Building was added to the National Register of Historic Places in 1990. The Emmet Building is a five-story building in Portland, Oregon. The Emmet Building was built in 1915. The Emmet Building is another name for the Blake McFall Company Building. John works at the Emmet Building.", "question": "Based on the above information, is the following statement true, false, or uncertain? John started his current job in 1990.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_13", "context": "William Dickinson was a British politician who sat in the House of Commons William Dickinson attended Westminster school for high school and then the University of Edinburgh. The University of Edinburgh is a university located in the United Kingdom. William Dickinson supported the Portland Whigs. People who supported the Portland Whigs did not get a seat in the Parliament.", "question": "Based on the above information, is the following statement true, false, or uncertain? William Dickinson did not get a seat in the Parliament.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_14", "context": "William Dickinson was a British politician who sat in the House of Commons William Dickinson attended Westminster school for high school and then the University of Edinburgh. The University of Edinburgh is a university located in the United Kingdom. William Dickinson supported the Portland Whigs. People who supported the Portland Whigs did not get a seat in the Parliament.", "question": "Based on the above information, is the following statement true, false, or uncertain? William Dickinson went to schools located in the United Kingdom for both high school and university.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_15", "context": "William Dickinson was a British politician who sat in the House of Commons William Dickinson attended Westminster school for high school and then the University of Edinburgh. The University of Edinburgh is a university located in the United Kingdom. William Dickinson supported the Portland Whigs. People who supported the Portland Whigs did not get a seat in the Parliament.", "question": "Based on the above information, is the following statement true, false, or uncertain? William Dickinson attended university in the United Kingdom.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_16", "context": "William Dickinson was a British politician who sat in the House of Commons William Dickinson attended Westminster school for high school and then the University of Edinburgh. The University of Edinburgh is a university located in the United Kingdom. William Dickinson supported the Portland Whigs. People who supported the Portland Whigs did not get a seat in the Parliament.", "question": "Based on the above information, is the following statement true, false, or uncertain? William Dickinson sat in the House of Commons.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_17", "context": "LanguageA is a universal language If a universal language exists, then for every two people if they both know the same universal language they can communicate. Katya cannot communicate with Danil. Katya knows LanguageA.", "question": "Based on the above information, is the following statement true, false, or uncertain? Danil knows LanguageA.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_18", "context": "All customers who are subscribed to AMC List are available to watch 3 movies every week without any additional fees. Some customers go to cinemas every week Customers either subscribe to AMC service or HBO service. Customers who prefer TV series more and will not watch TV series in cinemas. All customers who subscribe to HBO services prefer TV series to movies. James watches TV series in cinemas.", "question": "Based on the above information, is the following statement true, false, or uncertain? James goes to cinemas every week.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_19", "context": "All customers who are subscribed to AMC List are available to watch 3 movies every week without any additional fees. Some customers go to cinemas every week Customers either subscribe to AMC service or HBO service. Customers who prefer TV series more and will not watch TV series in cinemas. All customers who subscribe to HBO services prefer TV series to movies. James watches TV series in cinemas.", "question": "Based on the above information, is the following statement true, false, or uncertain? James does not go to cinemas every week.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_20", "context": "All customers who are subscribed to AMC List are available to watch 3 movies every week without any additional fees. Some customers go to cinemas every week Customers either subscribe to AMC service or HBO service. Customers who prefer TV series more and will not watch TV series in cinemas. All customers who subscribe to HBO services prefer TV series to movies. James watches TV series in cinemas.", "question": "Based on the above information, is the following statement true, false, or uncertain? James goes to cinemas every week or watches 3 movies every week without any additional fees.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_21", "context": "All customers who are subscribed to AMC List are available to watch 3 movies every week without any additional fees. Some customers go to cinemas every week Customers either subscribe to AMC service or HBO service. Customers who prefer TV series more and will not watch TV series in cinemas. All customers who subscribe to HBO services prefer TV series to movies. James watches TV series in cinemas.", "question": "Based on the above information, is the following statement true, false, or uncertain? If James does not both go to cinemas every week and subscribe to HBO service, then James is either available to watch 3 movies every week without any additional fees or he prefers TV more.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_22", "context": "All customers who are subscribed to AMC List are available to watch 3 movies every week without any additional fees. Some customers go to cinemas every week Customers either subscribe to AMC service or HBO service. Customers who prefer TV series more and will not watch TV series in cinemas. All customers who subscribe to HBO services prefer TV series to movies. James watches TV series in cinemas.", "question": "Based on the above information, is the following statement true, false, or uncertain? If James is available to watch 3 movies every week without any additional fees and he watches TV series in cinemas, then he goes to cinemas every week and prefers TV series more.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_23", "context": "A La Liga soccer team ranks higher than another if it receives more points. If two La Liga soccer teams recieve the same points, the team which recieves more points from the games between the two teams ranks higher. Real Madrid and Barcelona are both La Liga soccer teams. In La Liga 2021-2022, Real Madrid recieves 86 points and Barcelon recieves 73 points. In La Liga 2021-2022, Real Madrid and Barcelona both recieve 3 points from the games between them.", "question": "Based on the above information, is the following statement true, false, or uncertain? In La Liga 2021-2022, Real Madrid ranks higher than Barcelona.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_24", "context": "A La Liga soccer team ranks higher than another if it receives more points. If two La Liga soccer teams recieve the same points, the team which recieves more points from the games between the two teams ranks higher. Real Madrid and Barcelona are both La Liga soccer teams. In La Liga 2021-2022, Real Madrid recieves 86 points and Barcelon recieves 73 points. In La Liga 2021-2022, Real Madrid and Barcelona both recieve 3 points from the games between them.", "question": "Based on the above information, is the following statement true, false, or uncertain? In La Liga 2021-2022, Barcelona ranks higher than Real Madrid.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_25", "context": "Lawton Park is a neighbourhood in Seattle. All citizens of Lawton Park use the zip code 98199. Tom is a citizen of Lawton Park. Daniel uses the zip code 98199.", "question": "Based on the above information, is the following statement true, false, or uncertain? Tom uses the zip code 98199.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_26", "context": "Lawton Park is a neighbourhood in Seattle. All citizens of Lawton Park use the zip code 98199. Tom is a citizen of Lawton Park. Daniel uses the zip code 98199.", "question": "Based on the above information, is the following statement true, false, or uncertain? Tom doesn't use the zip code 98199.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_27", "context": "Lawton Park is a neighbourhood in Seattle. All citizens of Lawton Park use the zip code 98199. Tom is a citizen of Lawton Park. Daniel uses the zip code 98199.", "question": "Based on the above information, is the following statement true, false, or uncertain? Tom is a citizen of Washington.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_28", "context": "Lawton Park is a neighbourhood in Seattle. All citizens of Lawton Park use the zip code 98199. Tom is a citizen of Lawton Park. Daniel uses the zip code 98199.", "question": "Based on the above information, is the following statement true, false, or uncertain? Daniel is a citizen of Lawton Park.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_29", "context": "If a legislator is found guilty of stealing government funds, they will be suspended from office. Tiffany T. Alston was a legislator in Maryland's House of Delegates from 2011 to 2013. Tiffany T. Alston was found guilty of stealing government funds in 2012.", "question": "Based on the above information, is the following statement true, false, or uncertain? Tiffany T. Alston was suspended from the Maryland House of Delegates.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_30", "context": "If a legislator is found guilty of stealing government funds, they will be suspended from office. Tiffany T. Alston was a legislator in Maryland's House of Delegates from 2011 to 2013. Tiffany T. Alston was found guilty of stealing government funds in 2012.", "question": "Based on the above information, is the following statement true, false, or uncertain? Tiffany T. Alston was not suspended from the Maryland House of Delegates.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_31", "context": "If a legislator is found guilty of stealing government funds, they will be suspended from office. Tiffany T. Alston was a legislator in Maryland's House of Delegates from 2011 to 2013. Tiffany T. Alston was found guilty of stealing government funds in 2012.", "question": "Based on the above information, is the following statement true, false, or uncertain? Tiffany T. Alston went to prison for stealing government funds.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_32", "context": "Some fish may sting. Stonefish is a fish. It stings to step on a stonefish. Stonefish stings cause death if not treated. To treat stonefish stings, apply heat to the affected area or use an antivenom.", "question": "Based on the above information, is the following statement true, false, or uncertain? If you step on a stonefish and don’t use an antivenom, it will cause death.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_33", "context": "Some fish may sting. Stonefish is a fish. It stings to step on a stonefish. Stonefish stings cause death if not treated. To treat stonefish stings, apply heat to the affected area or use an antivenom.", "question": "Based on the above information, is the following statement true, false, or uncertain? Stings of some fish can cause death if not treated.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_34", "context": "Some fish may sting. Stonefish is a fish. It stings to step on a stonefish. Stonefish stings cause death if not treated. To treat stonefish stings, apply heat to the affected area or use an antivenom.", "question": "Based on the above information, is the following statement true, false, or uncertain? If you step on a stonefish and apply heat to the affected area, stings will cause death.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_35", "context": "Some monitors produced by LG have a type-c port. If the monitor has a type-c port, then it is not produced by AOC. All monitors in the library are produced by AOC. L-2021 is either in the library or has a type-c port. L-2021 is either produced by AOC and produced by LG, or neither produced by AOC nor produced by LG.", "question": "Based on the above information, is the following statement true, false, or uncertain? L-2021 is in the library.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_36", "context": "Some monitors produced by LG have a type-c port. If the monitor has a type-c port, then it is not produced by AOC. All monitors in the library are produced by AOC. L-2021 is either in the library or has a type-c port. L-2021 is either produced by AOC and produced by LG, or neither produced by AOC nor produced by LG.", "question": "Based on the above information, is the following statement true, false, or uncertain? L-2021 is either in the library or produced by LG.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_37", "context": "Some monitors produced by LG have a type-c port. If the monitor has a type-c port, then it is not produced by AOC. All monitors in the library are produced by AOC. L-2021 is either in the library or has a type-c port. L-2021 is either produced by AOC and produced by LG, or neither produced by AOC nor produced by LG.", "question": "Based on the above information, is the following statement true, false, or uncertain? L-2021 either has a type-c port or is produced by LG.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_38", "context": "Some monitors produced by LG have a type-c port. If the monitor has a type-c port, then it is not produced by AOC. All monitors in the library are produced by AOC. L-2021 is either in the library or has a type-c port. L-2021 is either produced by AOC and produced by LG, or neither produced by AOC nor produced by LG.", "question": "Based on the above information, is the following statement true, false, or uncertain? If L-2021 is either in the library and produced by LG, or neither in the library nor produced by LG, then L-2021 neither has a type-c port nor is produced by LG.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_39", "context": "Some monitors produced by LG have a type-c port. If the monitor has a type-c port, then it is not produced by AOC. All monitors in the library are produced by AOC. L-2021 is either in the library or has a type-c port. L-2021 is either produced by AOC and produced by LG, or neither produced by AOC nor produced by LG.", "question": "Based on the above information, is the following statement true, false, or uncertain? If L-2021 is either produced by LG and produced by AOC or neither produced by LG nor produced by AOC, then L-2021 is either in the library or produced by LG.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_40", "context": "People eat meat regularly or are vegetation. If people eat meat regularly, then they enjoy eating hamburgers and steaks. All people who are vegetarian are conscious of the environment or their health. If people are conscious about the environment or their health, then they do not go to fast food places often. If people have busy schedules without time to cook, then they go to fast food places often. If Jeremy does not both go to fast food places often and is conscious about the environment or their health, then he goes to fast food places often.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jeremy has a busy schedule without time to cook.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_41", "context": "People eat meat regularly or are vegetation. If people eat meat regularly, then they enjoy eating hamburgers and steaks. All people who are vegetarian are conscious of the environment or their health. If people are conscious about the environment or their health, then they do not go to fast food places often. If people have busy schedules without time to cook, then they go to fast food places often. If Jeremy does not both go to fast food places often and is conscious about the environment or their health, then he goes to fast food places often.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jeremy has a busy schedule without time to cook or enjoy eating hamburgers and steaks.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_42", "context": "People eat meat regularly or are vegetation. If people eat meat regularly, then they enjoy eating hamburgers and steaks. All people who are vegetarian are conscious of the environment or their health. If people are conscious about the environment or their health, then they do not go to fast food places often. If people have busy schedules without time to cook, then they go to fast food places often. If Jeremy does not both go to fast food places often and is conscious about the environment or their health, then he goes to fast food places often.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Jeremy has a busy schedule without time to cook or enjoy eating hamburgers and steaks, then Jeremy neither has a busy schedule without having time to cook nor enjoys eating hamburgers and steaks.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_43", "context": "Sam is doing a project. A project is written either in C++ or in Python. If Sam does a project written in Python, he will not use a Mac. Sam is using a Mac. If Sam uses a Mac, he will play a song. If a song is not \"Perfect\", Sam will never play it.", "question": "Based on the above information, is the following statement true, false, or uncertain? The project Sam is doing is written in C++.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_44", "context": "Sam is doing a project. A project is written either in C++ or in Python. If Sam does a project written in Python, he will not use a Mac. Sam is using a Mac. If Sam uses a Mac, he will play a song. If a song is not \"Perfect\", Sam will never play it.", "question": "Based on the above information, is the following statement true, false, or uncertain? The song Sam is playing is \"Perfect\".", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_45", "context": "Sam is doing a project. A project is written either in C++ or in Python. If Sam does a project written in Python, he will not use a Mac. Sam is using a Mac. If Sam uses a Mac, he will play a song. If a song is not \"Perfect\", Sam will never play it.", "question": "Based on the above information, is the following statement true, false, or uncertain? If a song is \"Perfect\", Sam will play it.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_46", "context": "All rabbits have fur Some pets are rabbits.", "question": "Based on the above information, is the following statement true, false, or uncertain? Some pets do not have fur.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_47", "context": "All video applications are software. All YouTube-related applications are video applications. An APP is either related to YouTube or Instagram. All Instagram is entertainment. All software is programmed. All entertainments are interesting. If something is interesting, then it is good. TikTok is not good.", "question": "Based on the above information, is the following statement true, false, or uncertain? Tiktok is a program.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_48", "context": "All video applications are software. All YouTube-related applications are video applications. An APP is either related to YouTube or Instagram. All Instagram is entertainment. All software is programmed. All entertainments are interesting. If something is interesting, then it is good. TikTok is not good.", "question": "Based on the above information, is the following statement true, false, or uncertain? Tiktok is either good or a program.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_49", "context": "All video applications are software. All YouTube-related applications are video applications. An APP is either related to YouTube or Instagram. All Instagram is entertainment. All software is programmed. All entertainments are interesting. If something is interesting, then it is good. TikTok is not good.", "question": "Based on the above information, is the following statement true, false, or uncertain? Tiktok is not both related to youtube and a program.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_50", "context": "All video applications are software. All YouTube-related applications are video applications. An APP is either related to YouTube or Instagram. All Instagram is entertainment. All software is programmed. All entertainments are interesting. If something is interesting, then it is good. TikTok is not good.", "question": "Based on the above information, is the following statement true, false, or uncertain? Tiktok is either related to youtube or a program.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_51", "context": "Ordinary is an unincorporated community. Located within Elliot County, Ordinary is on Kentucky Route 32. Ordinary is located northwest of Sandy Hook.", "question": "Based on the above information, is the following statement true, false, or uncertain? There are no unincorporated communities along Kentucky Route 32.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_52", "context": "Ordinary is an unincorporated community. Located within Elliot County, Ordinary is on Kentucky Route 32. Ordinary is located northwest of Sandy Hook.", "question": "Based on the above information, is the following statement true, false, or uncertain? There is an unincorporated community in Elliot County.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_53", "context": "All young adults go on a diet. All college students are young adults. All Yale students are college students. Someone is either a Yale student or a Harvard student. All Harvard students are diligent. If Susan is a Harvard student, then she is a young adult. If Susan is a Yale student, then she does not go on a diet.", "question": "Based on the above information, is the following statement true, false, or uncertain? Susan is a college student.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_54", "context": "All young adults go on a diet. All college students are young adults. All Yale students are college students. Someone is either a Yale student or a Harvard student. All Harvard students are diligent. If Susan is a Harvard student, then she is a young adult. If Susan is a Yale student, then she does not go on a diet.", "question": "Based on the above information, is the following statement true, false, or uncertain? Susan goes on a diet and is diligent.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_55", "context": "All young adults go on a diet. All college students are young adults. All Yale students are college students. Someone is either a Yale student or a Harvard student. All Harvard students are diligent. If Susan is a Harvard student, then she is a young adult. If Susan is a Yale student, then she does not go on a diet.", "question": "Based on the above information, is the following statement true, false, or uncertain? Susan does not go on a diet and is diligent.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_56", "context": "Vic DiCara plays guitar and bass. The only style of music Vic DiCara plays is punk music. Vic DiCara played in the band Inside Out.", "question": "Based on the above information, is the following statement true, false, or uncertain? Inside Out was a punk band.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_57", "context": "Vic DiCara plays guitar and bass. The only style of music Vic DiCara plays is punk music. Vic DiCara played in the band Inside Out.", "question": "Based on the above information, is the following statement true, false, or uncertain? A musician of Inside Out plays bass.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_58", "context": "All athletes are good at sports. All Olympic gold medal winners are good athletes. No scientists are good at sports. All Nobel laureates are scientists. Amy is good at sports or Amy is an Olympic gold medal winner. If Amy is not a Nobel laureate, then Amy is not an Olympic gold medal winner.", "question": "Based on the above information, is the following statement true, false, or uncertain? Amy is an athlete.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_59", "context": "All athletes are good at sports. All Olympic gold medal winners are good athletes. No scientists are good at sports. All Nobel laureates are scientists. Amy is good at sports or Amy is an Olympic gold medal winner. If Amy is not a Nobel laureate, then Amy is not an Olympic gold medal winner.", "question": "Based on the above information, is the following statement true, false, or uncertain? Amy is neither a scientist nor an Olympic gold medal winner.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_60", "context": "All athletes are good at sports. All Olympic gold medal winners are good athletes. No scientists are good at sports. All Nobel laureates are scientists. Amy is good at sports or Amy is an Olympic gold medal winner. If Amy is not a Nobel laureate, then Amy is not an Olympic gold medal winner.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Amy is not an Olympic gold medal winner, then Amy is a Nobel laureate.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_61", "context": "All fruits with the color red contain a large amount of vitamin C. All apples are fruits with the color red. All fruits containing a large amount of vitamin C are beneficial to people. No fruits that are beneficial to people are on a warning list. If K is not beneficial to people and also not an apple, then it is a fruit with the color red.", "question": "Based on the above information, is the following statement true, false, or uncertain? K is an apple.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_62", "context": "All fruits with the color red contain a large amount of vitamin C. All apples are fruits with the color red. All fruits containing a large amount of vitamin C are beneficial to people. No fruits that are beneficial to people are on a warning list. If K is not beneficial to people and also not an apple, then it is a fruit with the color red.", "question": "Based on the above information, is the following statement true, false, or uncertain? K either contains a large amount of vitamin C or is on a warning list.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_63", "context": "All fruits with the color red contain a large amount of vitamin C. All apples are fruits with the color red. All fruits containing a large amount of vitamin C are beneficial to people. No fruits that are beneficial to people are on a warning list. If K is not beneficial to people and also not an apple, then it is a fruit with the color red.", "question": "Based on the above information, is the following statement true, false, or uncertain? K is either on a warning list or with the color red.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_64", "context": "All fruits with the color red contain a large amount of vitamin C. All apples are fruits with the color red. All fruits containing a large amount of vitamin C are beneficial to people. No fruits that are beneficial to people are on a warning list. If K is not beneficial to people and also not an apple, then it is a fruit with the color red.", "question": "Based on the above information, is the following statement true, false, or uncertain? If K is either beneficial to people or on a warning list, then it is not red.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_65", "context": "All fruits with the color red contain a large amount of vitamin C. All apples are fruits with the color red. All fruits containing a large amount of vitamin C are beneficial to people. No fruits that are beneficial to people are on a warning list. If K is not beneficial to people and also not an apple, then it is a fruit with the color red.", "question": "Based on the above information, is the following statement true, false, or uncertain? If K is either on a warning list or with the color red, then it is not beneficial to people and does not contain a large amount of vitamin C.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_66", "context": "Everyone working at Meta has a high income. If a person has a high income, then he/she will not take a bus to their destination. People will either take a bus or drive to their destination. Everyone who has a car will choose to drive to their destination. No students drive to their destination. James has a car or works at Meta.", "question": "Based on the above information, is the following statement true, false, or uncertain? James has a high income.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_67", "context": "Everyone working at Meta has a high income. If a person has a high income, then he/she will not take a bus to their destination. People will either take a bus or drive to their destination. Everyone who has a car will choose to drive to their destination. No students drive to their destination. James has a car or works at Meta.", "question": "Based on the above information, is the following statement true, false, or uncertain? James does not have a high income.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_68", "context": "Everyone working at Meta has a high income. If a person has a high income, then he/she will not take a bus to their destination. People will either take a bus or drive to their destination. Everyone who has a car will choose to drive to their destination. No students drive to their destination. James has a car or works at Meta.", "question": "Based on the above information, is the following statement true, false, or uncertain? James is a student.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_69", "context": "Everyone working at Meta has a high income. If a person has a high income, then he/she will not take a bus to their destination. People will either take a bus or drive to their destination. Everyone who has a car will choose to drive to their destination. No students drive to their destination. James has a car or works at Meta.", "question": "Based on the above information, is the following statement true, false, or uncertain? James drives to his destination or he is a student.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_70", "context": "Everyone working at Meta has a high income. If a person has a high income, then he/she will not take a bus to their destination. People will either take a bus or drive to their destination. Everyone who has a car will choose to drive to their destination. No students drive to their destination. James has a car or works at Meta.", "question": "Based on the above information, is the following statement true, false, or uncertain? James either drives to their destination or is a student.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_71", "context": "Everyone working at Meta has a high income. If a person has a high income, then he/she will not take a bus to their destination. People will either take a bus or drive to their destination. Everyone who has a car will choose to drive to their destination. No students drive to their destination. James has a car or works at Meta.", "question": "Based on the above information, is the following statement true, false, or uncertain? If James either drives to his destination or is a student, then he has a high income and is a student.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_72", "context": "Students either go to the park or go to the movies. No student who enjoys nature has free time during the weekend. All students who go to the movies enjoy nature. All students who do not have class during the weekend have free time during the weekend. All students not in summer camp do not have class during the weekend. James does not have class during the weekend.", "question": "Based on the above information, is the following statement true, false, or uncertain? James is in summer camp.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_73", "context": "Students either go to the park or go to the movies. No student who enjoys nature has free time during the weekend. All students who go to the movies enjoy nature. All students who do not have class during the weekend have free time during the weekend. All students not in summer camp do not have class during the weekend. James does not have class during the weekend.", "question": "Based on the above information, is the following statement true, false, or uncertain? James goes to the park or is in summer camp.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_74", "context": "No television stars are certified public accountants. All certified public accountants have good business sense.", "question": "Based on the above information, is the following statement true, false, or uncertain? All television stars have good business sense.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_75", "context": "Some students good at math are good at chemistry. All students good at chemistry enjoy conducting experiments. All students that enjoy conducting experiments are good at planning. No student good at planning is awarded the Dean's List. James is either good at chemistry and awarded the Dean's List, or neither good at chemistry nor awarded the Dean's List.", "question": "Based on the above information, is the following statement true, false, or uncertain? James is good at planning.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_76", "context": "Some students good at math are good at chemistry. All students good at chemistry enjoy conducting experiments. All students that enjoy conducting experiments are good at planning. No student good at planning is awarded the Dean's List. James is either good at chemistry and awarded the Dean's List, or neither good at chemistry nor awarded the Dean's List.", "question": "Based on the above information, is the following statement true, false, or uncertain? James is either good at planning or good at math.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_77", "context": "Some students good at math are good at chemistry. All students good at chemistry enjoy conducting experiments. All students that enjoy conducting experiments are good at planning. No student good at planning is awarded the Dean's List. James is either good at chemistry and awarded the Dean's List, or neither good at chemistry nor awarded the Dean's List.", "question": "Based on the above information, is the following statement true, false, or uncertain? James is either good at chemistry or good at math.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_78", "context": "Some students good at math are good at chemistry. All students good at chemistry enjoy conducting experiments. All students that enjoy conducting experiments are good at planning. No student good at planning is awarded the Dean's List. James is either good at chemistry and awarded the Dean's List, or neither good at chemistry nor awarded the Dean's List.", "question": "Based on the above information, is the following statement true, false, or uncertain? If James is good at Chemistry or gets awarded the Dean's List, then James is either good at planning or good at math.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_79", "context": "If a Leetcode problem is at the easy level, then its AC rate is lower than 20 percent. All Leetcode problems that are recommended to novices are easy. A Leetode problem is either easy or hard. Leetcode problems that are starred by more than 1 thousand users are hard. 2Sum is recommended to novices. 4Sum is starred by more than 1 thousand users.", "question": "Based on the above information, is the following statement true, false, or uncertain? 2Sum is a Leetcode problem with an easy level.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_80", "context": "If a Leetcode problem is at the easy level, then its AC rate is lower than 20 percent. All Leetcode problems that are recommended to novices are easy. A Leetode problem is either easy or hard. Leetcode problems that are starred by more than 1 thousand users are hard. 2Sum is recommended to novices. 4Sum is starred by more than 1 thousand users.", "question": "Based on the above information, is the following statement true, false, or uncertain? 4Sum is a Leetcode problem recommended to the novice.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_81", "context": "If a Leetcode problem is at the easy level, then its AC rate is lower than 20 percent. All Leetcode problems that are recommended to novices are easy. A Leetode problem is either easy or hard. Leetcode problems that are starred by more than 1 thousand users are hard. 2Sum is recommended to novices. 4Sum is starred by more than 1 thousand users.", "question": "Based on the above information, is the following statement true, false, or uncertain? 2Sum has an AC rate higher than 20 percent.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_82", "context": "All rental cars cost the renter money. Whenever Sarah goes to Vermont, Sarah drives there. For someone who does not own a car to drive somewhere, they must either borrow a car or rent a car. Sarah doesn’t own a car. Sarah never borrows a car to go camping. Sarah is going to go camping in Vermont this weekend. To go camping somewhere, you must go to that place.", "question": "Based on the above information, is the following statement true, false, or uncertain? Sarah will spend money this weekend.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_83", "context": "All people who attend weddings are getting married or have friends who are getting married. No preteens and other young children are getting married or have friends who are getting married. If people enjoy celebrating life milestone events with other people, then they attend weddings. If people are fond of large organized group functions, then they enjoy celebrating life milestone events with other people. All people who are outgoing and very spirited are fond of large organized group functions. If Carol is not both a pre-teen or other young child and attends weddings, then Carol is not getting married or has friends who are getting married.", "question": "Based on the above information, is the following statement true, false, or uncertain? Carol is outgoing and very spirited.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_84", "context": "All people who attend weddings are getting married or have friends who are getting married. No preteens and other young children are getting married or have friends who are getting married. If people enjoy celebrating life milestone events with other people, then they attend weddings. If people are fond of large organized group functions, then they enjoy celebrating life milestone events with other people. All people who are outgoing and very spirited are fond of large organized group functions. If Carol is not both a pre-teen or other young child and attends weddings, then Carol is not getting married or has friends who are getting married.", "question": "Based on the above information, is the following statement true, false, or uncertain? Carol is either a preteen or other young child.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_85", "context": "All people who attend weddings are getting married or have friends who are getting married. No preteens and other young children are getting married or have friends who are getting married. If people enjoy celebrating life milestone events with other people, then they attend weddings. If people are fond of large organized group functions, then they enjoy celebrating life milestone events with other people. All people who are outgoing and very spirited are fond of large organized group functions. If Carol is not both a pre-teen or other young child and attends weddings, then Carol is not getting married or has friends who are getting married.", "question": "Based on the above information, is the following statement true, false, or uncertain? Carol neither enjoys celebrating life milestone events with other people nor is outgoing and very spirited.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_86", "context": "All Republicans are anti-abortion. Either Republicans or Democrats. No Democrats are conservative. Either conservative or liberal. A U.S government official is either conservative or a Republican.", "question": "Based on the above information, is the following statement true, false, or uncertain? A U.S government official is a Democrat.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_87", "context": "All Republicans are anti-abortion. Either Republicans or Democrats. No Democrats are conservative. Either conservative or liberal. A U.S government official is either conservative or a Republican.", "question": "Based on the above information, is the following statement true, false, or uncertain? A U.S government official is anti-abortion and a liberal.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_88", "context": "All Republicans are anti-abortion. Either Republicans or Democrats. No Democrats are conservative. Either conservative or liberal. A U.S government official is either conservative or a Republican.", "question": "Based on the above information, is the following statement true, false, or uncertain? A U.S government official is either anti-abortion or a liberal.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_89", "context": "All Republicans are anti-abortion. Either Republicans or Democrats. No Democrats are conservative. Either conservative or liberal. A U.S government official is either conservative or a Republican.", "question": "Based on the above information, is the following statement true, false, or uncertain? If a U.S government official is not anti-abortion and a Republican, then a U.S government official is neither anti-abortion nor a liberal.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_90", "context": "All Republicans are anti-abortion. Either Republicans or Democrats. No Democrats are conservative. Either conservative or liberal. A U.S government official is either conservative or a Republican.", "question": "Based on the above information, is the following statement true, false, or uncertain? If a U.S government official is anti-abortion and a liberal, then a U.S government official is either a Republican or a liberal.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_91", "context": "All Republicans are anti-abortion. Either Republicans or Democrats. No Democrats are conservative. Either conservative or liberal. A U.S government official is either conservative or a Republican.", "question": "Based on the above information, is the following statement true, false, or uncertain? If a U.S government official is either a conservative or anti-abortion, then a U.S government official is either a conservative and a liberal or neither a conservative nor a liberal.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_92", "context": "All Republicans are anti-abortion. Either Republicans or Democrats. No Democrats are conservative. Either conservative or liberal. A U.S government official is either conservative or a Republican.", "question": "Based on the above information, is the following statement true, false, or uncertain? If a U.S government official is either a conservative or anti-abortion, then a U.S government official is neither a Democrat or a liberal.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_93", "context": "All Republicans are anti-abortion. Either Republicans or Democrats. No Democrats are conservative. Either conservative or liberal. A U.S government official is either conservative or a Republican.", "question": "Based on the above information, is the following statement true, false, or uncertain? If an U.S government official is anti-abortion or a liberal, then a U.S government official is either anti-abortion or a liberal.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_94", "context": "All advocates of high tariff rates are Republicans. Some Republicans are not conservatives.", "question": "Based on the above information, is the following statement true, false, or uncertain? Some conservatives are advocates of high tariff rates.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_95", "context": "No athletes are slow runners. All professional basketball players are athletes. All NBA players are professional basketball players. All Knicks players are NBA players. Jim is either not a professional basketball player or not a slow runner.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jim is a Knicks player.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_96", "context": "No athletes are slow runners. All professional basketball players are athletes. All NBA players are professional basketball players. All Knicks players are NBA players. Jim is either not a professional basketball player or not a slow runner.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jim is not a Knicks player.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_97", "context": "No athletes are slow runners. All professional basketball players are athletes. All NBA players are professional basketball players. All Knicks players are NBA players. Jim is either not a professional basketball player or not a slow runner.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jim is an athlete.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_98", "context": "All kids love animals. All toddlers are kids. If someone loves animals, then they are not bad. All pirates are bad. If Nancy is not a pirate, then Nancy loves animals. If Nancy is not a toddler, then Nancy is bad.", "question": "Based on the above information, is the following statement true, false, or uncertain? Nancy is a pirate.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_99", "context": "All kids love animals. All toddlers are kids. If someone loves animals, then they are not bad. All pirates are bad. If Nancy is not a pirate, then Nancy loves animals. If Nancy is not a toddler, then Nancy is bad.", "question": "Based on the above information, is the following statement true, false, or uncertain? Nancy is not a pirate or a toddler.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_100", "context": "All kids love animals. All toddlers are kids. If someone loves animals, then they are not bad. All pirates are bad. If Nancy is not a pirate, then Nancy loves animals. If Nancy is not a toddler, then Nancy is bad.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Nancy is not a pirate or a toddler, then she loves animals and is a kid.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_101", "context": "Lana Wilson directed After Tiller, The Departure, and Miss Americana. If a film is directedy by a person, the person is a filmmaker. After Tiller is a documentary. The documentary is a type of films. Lana Wilson is from Kirkland. Kirkland is a US city. If a person is from a city in a country, the person is from the country. After Tiller is nominated for the Independent Spirit Award for Best Documentary.", "question": "Based on the above information, is the following statement true, false, or uncertain? Lana Wilson is a US filmmaker.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_102", "context": "Lana Wilson directed After Tiller, The Departure, and Miss Americana. If a film is directedy by a person, the person is a filmmaker. After Tiller is a documentary. The documentary is a type of films. Lana Wilson is from Kirkland. Kirkland is a US city. If a person is from a city in a country, the person is from the country. After Tiller is nominated for the Independent Spirit Award for Best Documentary.", "question": "Based on the above information, is the following statement true, false, or uncertain? Miss Americana is not directed by a filmmaker from Kirkland.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_103", "context": "Lana Wilson directed After Tiller, The Departure, and Miss Americana. If a film is directedy by a person, the person is a filmmaker. After Tiller is a documentary. The documentary is a type of films. Lana Wilson is from Kirkland. Kirkland is a US city. If a person is from a city in a country, the person is from the country. After Tiller is nominated for the Independent Spirit Award for Best Documentary.", "question": "Based on the above information, is the following statement true, false, or uncertain? Lana Wilson has won the Independent Spirit Award.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_104", "context": "All bears in zoos are not wild. Some bears are in zoos.", "question": "Based on the above information, is the following statement true, false, or uncertain? Not all bears are wild.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_105", "context": "If a person is the leader of a country for life, that person is in a monarchy. Leaders are either a king or a queen. Queens are female. Kings are male. Elizabeth is a queen. Elizabeth is a leader", "question": "Based on the above information, is the following statement true, false, or uncertain? Elizabeth is a king.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_106", "context": "If a person is the leader of a country for life, that person is in a monarchy. Leaders are either a king or a queen. Queens are female. Kings are male. Elizabeth is a queen. Elizabeth is a leader", "question": "Based on the above information, is the following statement true, false, or uncertain? Elizabeth is in a monarchy.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_107", "context": "If a person is the leader of a country for life, that person is in a monarchy. Leaders are either a king or a queen. Queens are female. Kings are male. Elizabeth is a queen. Elizabeth is a leader", "question": "Based on the above information, is the following statement true, false, or uncertain? Elizabeth is a leader of a country.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_108", "context": "If people make their own matcha teas every morning with ceremonial-grade matcha powder, then they do not wake up late and start their schedules past noon regularly. If people live in California and attend yoga classes regularly, then they make their own matcha teas every morning with ceremonial-grade matcha powder. If people work in the entertainment industry as high-profile celebrities, then they wake up late and start their schedules past noon regularly. If people do not have regular 9-5 jobs, then they work in the entertainment industry as high-profile celebrities. All people who prefer working at home over going to the office every day do not have regular 9-5 jobs. Clay either both prefers to work at home over going to the office every day and makes his own matcha teas every morning with ceremonial-grade matcha powder, or he neither prefers to work at home over going to the office every day nor makes his own matcha teas every morning with ceremonial-grade matcha powder.", "question": "Based on the above information, is the following statement true, false, or uncertain? Clay does not have a regular 9-5 job.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_109", "context": "If people make their own matcha teas every morning with ceremonial-grade matcha powder, then they do not wake up late and start their schedules past noon regularly. If people live in California and attend yoga classes regularly, then they make their own matcha teas every morning with ceremonial-grade matcha powder. If people work in the entertainment industry as high-profile celebrities, then they wake up late and start their schedules past noon regularly. If people do not have regular 9-5 jobs, then they work in the entertainment industry as high-profile celebrities. All people who prefer working at home over going to the office every day do not have regular 9-5 jobs. Clay either both prefers to work at home over going to the office every day and makes his own matcha teas every morning with ceremonial-grade matcha powder, or he neither prefers to work at home over going to the office every day nor makes his own matcha teas every morning with ceremonial-grade matcha powder.", "question": "Based on the above information, is the following statement true, false, or uncertain? Clay lives in California and attends yoga classes regularly.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_110", "context": "If people make their own matcha teas every morning with ceremonial-grade matcha powder, then they do not wake up late and start their schedules past noon regularly. If people live in California and attend yoga classes regularly, then they make their own matcha teas every morning with ceremonial-grade matcha powder. If people work in the entertainment industry as high-profile celebrities, then they wake up late and start their schedules past noon regularly. If people do not have regular 9-5 jobs, then they work in the entertainment industry as high-profile celebrities. All people who prefer working at home over going to the office every day do not have regular 9-5 jobs. Clay either both prefers to work at home over going to the office every day and makes his own matcha teas every morning with ceremonial-grade matcha powder, or he neither prefers to work at home over going to the office every day nor makes his own matcha teas every morning with ceremonial-grade matcha powder.", "question": "Based on the above information, is the following statement true, false, or uncertain? Clay neither prefers working at home over going to the office every day nor lives in California and attends yoga classes regularly.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_111", "context": "Thomas Barber was an English professional footballer. Thomas Barber played in the Football League for Aston Villa. Thomas Barber played as a half back and inside left. Thomas Barber scored the winning goal in the 1913 FA Cup Final.", "question": "Based on the above information, is the following statement true, false, or uncertain? Thomas Barber played in the Football League for Bolton Wanderers", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_112", "context": "Thomas Barber was an English professional footballer. Thomas Barber played in the Football League for Aston Villa. Thomas Barber played as a half back and inside left. Thomas Barber scored the winning goal in the 1913 FA Cup Final.", "question": "Based on the above information, is the following statement true, false, or uncertain? Thomas Barber played as an inside left.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_113", "context": "Thomas Barber was an English professional footballer. Thomas Barber played in the Football League for Aston Villa. Thomas Barber played as a half back and inside left. Thomas Barber scored the winning goal in the 1913 FA Cup Final.", "question": "Based on the above information, is the following statement true, false, or uncertain? An English professional footballer scored the winning goal in the 1913 FA Cup Final.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_114", "context": "If people play the instrument in the concert, then he is good at playing this kind of instrument. Peter plays piano, violin, and saxophone. Peter was invited to play piano at the concert hall. Oliver and Peter were both invited to perform in the concert. Oliver plays a different musical instrument from Peter in the concert.", "question": "Based on the above information, is the following statement true, false, or uncertain? Oliver plays piano in the concert.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_115", "context": "If people play the instrument in the concert, then he is good at playing this kind of instrument. Peter plays piano, violin, and saxophone. Peter was invited to play piano at the concert hall. Oliver and Peter were both invited to perform in the concert. Oliver plays a different musical instrument from Peter in the concert.", "question": "Based on the above information, is the following statement true, false, or uncertain? Oliver plays violin in the concert.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_116", "context": "If people play the instrument in the concert, then he is good at playing this kind of instrument. Peter plays piano, violin, and saxophone. Peter was invited to play piano at the concert hall. Oliver and Peter were both invited to perform in the concert. Oliver plays a different musical instrument from Peter in the concert.", "question": "Based on the above information, is the following statement true, false, or uncertain? Peter is good at playing piano.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_117", "context": "If something can go underwater, then it enjoys water. All animals that can swim can go underwater. Either an animal can swim or it can walk. Animals that can walk travel on land. Animals that enjoy water splash water around. Every animal that travels on land enjoys basking in the sun. George splashes water around and can swim. Liam is either an animal that can walk and enjoys water, or is neither an animal that can walk nor enjoys water.", "question": "Based on the above information, is the following statement true, false, or uncertain? George enjoys basking in the sun.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_118", "context": "If something can go underwater, then it enjoys water. All animals that can swim can go underwater. Either an animal can swim or it can walk. Animals that can walk travel on land. Animals that enjoy water splash water around. Every animal that travels on land enjoys basking in the sun. George splashes water around and can swim. Liam is either an animal that can walk and enjoys water, or is neither an animal that can walk nor enjoys water.", "question": "Based on the above information, is the following statement true, false, or uncertain? Liam enjoys basking in the sun and splashing water around.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_119", "context": "If something can go underwater, then it enjoys water. All animals that can swim can go underwater. Either an animal can swim or it can walk. Animals that can walk travel on land. Animals that enjoy water splash water around. Every animal that travels on land enjoys basking in the sun. George splashes water around and can swim. Liam is either an animal that can walk and enjoys water, or is neither an animal that can walk nor enjoys water.", "question": "Based on the above information, is the following statement true, false, or uncertain? Liam neither enjoys basking in the sun nor splashing water around.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_120", "context": "Cancer biology is finding genetic alterations that confer selective advantage to cancer cells. Cancer researchers have frequently ranked the importance of substitutions to cancer growth by P value. P values are thresholds for belief, not metrics of effect.", "question": "Based on the above information, is the following statement true, false, or uncertain? Cancer researchers tend to use the cancer effect size to determine the relative importance of the genetic alterations that confer selective advantage to cancer cells.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_121", "context": "Cancer biology is finding genetic alterations that confer selective advantage to cancer cells. Cancer researchers have frequently ranked the importance of substitutions to cancer growth by P value. P values are thresholds for belief, not metrics of effect.", "question": "Based on the above information, is the following statement true, false, or uncertain? P value represents the selection intensity for somatic variants in cancer cell lineages.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_122", "context": "Cancer biology is finding genetic alterations that confer selective advantage to cancer cells. Cancer researchers have frequently ranked the importance of substitutions to cancer growth by P value. P values are thresholds for belief, not metrics of effect.", "question": "Based on the above information, is the following statement true, false, or uncertain? Cancer effect size is a metric that is preferred by the majority of cancer researchers.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_123", "context": "Cancer biology is finding genetic alterations that confer selective advantage to cancer cells. Cancer researchers have frequently ranked the importance of substitutions to cancer growth by P value. P values are thresholds for belief, not metrics of effect.", "question": "Based on the above information, is the following statement true, false, or uncertain? P value doesn't represent metrics of effect.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_124", "context": "All dispensable things are environment-friendly. All woodware is dispensable. All paper is woodware. No good things are bad. All environment-friendly things are good. A worksheet is either paper or is environment-friendly.", "question": "Based on the above information, is the following statement true, false, or uncertain? A worksheet is dispensable.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_125", "context": "All dispensable things are environment-friendly. All woodware is dispensable. All paper is woodware. No good things are bad. All environment-friendly things are good. A worksheet is either paper or is environment-friendly.", "question": "Based on the above information, is the following statement true, false, or uncertain? A worksheet is not dispensable.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_126", "context": "All dispensable things are environment-friendly. All woodware is dispensable. All paper is woodware. No good things are bad. All environment-friendly things are good. A worksheet is either paper or is environment-friendly.", "question": "Based on the above information, is the following statement true, false, or uncertain? A worksheet is bad.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_127", "context": "All dispensable things are environment-friendly. All woodware is dispensable. All paper is woodware. No good things are bad. All environment-friendly things are good. A worksheet is either paper or is environment-friendly.", "question": "Based on the above information, is the following statement true, false, or uncertain? A worksheet is not bad.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_128", "context": "No reptile has fur. All snakes are reptiles.", "question": "Based on the above information, is the following statement true, false, or uncertain? Some snake has fur.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_129", "context": "All buildings in New Haven are low. All buildings managed by the Yale Housing are located in New Haven. All buildings in Manhattans are high. All buildings owned by Bloomberg are located in Manhattans. All buildings with the Bloomberg logo are owned by Bloomberg. Tower A is managed by the Yale Housing. Tower B is with the Bloomberg logo.", "question": "Based on the above information, is the following statement true, false, or uncertain? Tower A is low.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_130", "context": "All buildings in New Haven are low. All buildings managed by the Yale Housing are located in New Haven. All buildings in Manhattans are high. All buildings owned by Bloomberg are located in Manhattans. All buildings with the Bloomberg logo are owned by Bloomberg. Tower A is managed by the Yale Housing. Tower B is with the Bloomberg logo.", "question": "Based on the above information, is the following statement true, false, or uncertain? Tower B is not located in Manhattans.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_131", "context": "All buildings in New Haven are low. All buildings managed by the Yale Housing are located in New Haven. All buildings in Manhattans are high. All buildings owned by Bloomberg are located in Manhattans. All buildings with the Bloomberg logo are owned by Bloomberg. Tower A is managed by the Yale Housing. Tower B is with the Bloomberg logo.", "question": "Based on the above information, is the following statement true, false, or uncertain? Tower B is located in New Haven.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_132", "context": "No cold-blooded animals are birds. All reptiles are cold-blooded. Either an animal is a bird or it eats other animals. If an animal eats other animals, then it is a carnivore. Ron is neither a cold-blooded animal nor a carnivore. Henry is neither a carnivore nor a lizard.", "question": "Based on the above information, is the following statement true, false, or uncertain? Ron is a lizard.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_133", "context": "No cold-blooded animals are birds. All reptiles are cold-blooded. Either an animal is a bird or it eats other animals. If an animal eats other animals, then it is a carnivore. Ron is neither a cold-blooded animal nor a carnivore. Henry is neither a carnivore nor a lizard.", "question": "Based on the above information, is the following statement true, false, or uncertain? Either Henry is a reptile or Ron eats other animals.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_134", "context": "No cold-blooded animals are birds. All reptiles are cold-blooded. Either an animal is a bird or it eats other animals. If an animal eats other animals, then it is a carnivore. Ron is neither a cold-blooded animal nor a carnivore. Henry is neither a carnivore nor a lizard.", "question": "Based on the above information, is the following statement true, false, or uncertain? It is not true that Ron is a reptile or that Henry is cold-blooded.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_135", "context": "Ambiortus is a prehistoric bird genus. Ambiorus Dementjevi is the only known species of Ambiortus. The Mongol region was where Ambiorus Dementjevi lived. Yevgeny Kurochkin was the discoverer of Ambiortus.", "question": "Based on the above information, is the following statement true, false, or uncertain? Yevgeny Kurochkin discovered a new bird genus.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_136", "context": "Ambiortus is a prehistoric bird genus. Ambiorus Dementjevi is the only known species of Ambiortus. The Mongol region was where Ambiorus Dementjevi lived. Yevgeny Kurochkin was the discoverer of Ambiortus.", "question": "Based on the above information, is the following statement true, false, or uncertain? There is a species of Ambiortus that doesn't live in the Mongol region.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_137", "context": "Ambiortus is a prehistoric bird genus. Ambiorus Dementjevi is the only known species of Ambiortus. The Mongol region was where Ambiorus Dementjevi lived. Yevgeny Kurochkin was the discoverer of Ambiortus.", "question": "Based on the above information, is the following statement true, false, or uncertain? Yevgeny Kurochkin lived in the Mongol region.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_138", "context": "Ambiortus is a prehistoric bird genus. Ambiorus Dementjevi is the only known species of Ambiortus. The Mongol region was where Ambiorus Dementjevi lived. Yevgeny Kurochkin was the discoverer of Ambiortus.", "question": "Based on the above information, is the following statement true, false, or uncertain? All species of Ambiortus live in the Mongol region.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_139", "context": "Everyone that uses a football can throw a football. If someone plays football, then they use a football. Either someone is a football player or a basketball player. Every basketball player is tall. Everyone that can throw a football can throw a football with a spiral. If someone is tall, then they are in shape. If Jack is neither tall nor a basketball player, then Jack is neither tall nor can throw a football.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jack plays football.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_140", "context": "Everyone that uses a football can throw a football. If someone plays football, then they use a football. Either someone is a football player or a basketball player. Every basketball player is tall. Everyone that can throw a football can throw a football with a spiral. If someone is tall, then they are in shape. If Jack is neither tall nor a basketball player, then Jack is neither tall nor can throw a football.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jack is in shape.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_141", "context": "Everyone that uses a football can throw a football. If someone plays football, then they use a football. Either someone is a football player or a basketball player. Every basketball player is tall. Everyone that can throw a football can throw a football with a spiral. If someone is tall, then they are in shape. If Jack is neither tall nor a basketball player, then Jack is neither tall nor can throw a football.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jack is not in shape.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_142", "context": "Fort Ticonderoga is the current name for Fort Carillon. Pierre de Rigaud de Vaudreuil built Fort Carillon. Fort Carillon was located in New France. New France is not in Europe.", "question": "Based on the above information, is the following statement true, false, or uncertain? Pierre de Rigaud de Vaudreuil built a fort in New France.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_143", "context": "Fort Ticonderoga is the current name for Fort Carillon. Pierre de Rigaud de Vaudreuil built Fort Carillon. Fort Carillon was located in New France. New France is not in Europe.", "question": "Based on the above information, is the following statement true, false, or uncertain? Pierre de Rigaud de Vaudreuil built a fort in New England.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_144", "context": "Fort Ticonderoga is the current name for Fort Carillon. Pierre de Rigaud de Vaudreuil built Fort Carillon. Fort Carillon was located in New France. New France is not in Europe.", "question": "Based on the above information, is the following statement true, false, or uncertain? Fort Carillon was located in Europe.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_145", "context": "No soccer players are professional basketball players. All NBA players are professional basketball players. All defenders are soccer players. All centerback players are defenders. If Stephen Curry is an NBA player or a soccer player, then he is a professional basketball player.", "question": "Based on the above information, is the following statement true, false, or uncertain? Stephen Curry is an NBA player.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_146", "context": "No soccer players are professional basketball players. All NBA players are professional basketball players. All defenders are soccer players. All centerback players are defenders. If Stephen Curry is an NBA player or a soccer player, then he is a professional basketball player.", "question": "Based on the above information, is the following statement true, false, or uncertain? Stephen Curry is a centerback player.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_147", "context": "No soccer players are professional basketball players. All NBA players are professional basketball players. All defenders are soccer players. All centerback players are defenders. If Stephen Curry is an NBA player or a soccer player, then he is a professional basketball player.", "question": "Based on the above information, is the following statement true, false, or uncertain? Stephen Curry is not a centerback player.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_148", "context": "No songs are visual. All folk songs are songs. All videos are visual. All movies are videos. All sci-fi movies are movies. Inception is a sci-fi movie. Mac is neither a folk song nor a sci-fi movie.", "question": "Based on the above information, is the following statement true, false, or uncertain? Inception is a folk song.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_149", "context": "No songs are visual. All folk songs are songs. All videos are visual. All movies are videos. All sci-fi movies are movies. Inception is a sci-fi movie. Mac is neither a folk song nor a sci-fi movie.", "question": "Based on the above information, is the following statement true, false, or uncertain? Inception is not a folk song.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_150", "context": "No songs are visual. All folk songs are songs. All videos are visual. All movies are videos. All sci-fi movies are movies. Inception is a sci-fi movie. Mac is neither a folk song nor a sci-fi movie.", "question": "Based on the above information, is the following statement true, false, or uncertain? Inception is either a video or a folk song.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_151", "context": "No songs are visual. All folk songs are songs. All videos are visual. All movies are videos. All sci-fi movies are movies. Inception is a sci-fi movie. Mac is neither a folk song nor a sci-fi movie.", "question": "Based on the above information, is the following statement true, false, or uncertain? Mac is a video.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_152", "context": "All extroverts are overtly expressive. People are either extroverts or introverts. If someone is an introvert, then they are shy and reticent. No shy and reticent person likes to talk to strangers. Jeff is not an extrovert and someone who likes to talk to strangers.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jeff is a shy and reticent person.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_153", "context": "All extroverts are overtly expressive. People are either extroverts or introverts. If someone is an introvert, then they are shy and reticent. No shy and reticent person likes to talk to strangers. Jeff is not an extrovert and someone who likes to talk to strangers.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jeff is overtly expressive and likes to talk to strangers.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_154", "context": "All extroverts are overtly expressive. People are either extroverts or introverts. If someone is an introvert, then they are shy and reticent. No shy and reticent person likes to talk to strangers. Jeff is not an extrovert and someone who likes to talk to strangers.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Jeff is either overtly expressive and likes to talk to strangers or neither overtly expressive nor likes to talk to strangers, then Jeff is neither an extrovert nor likes to talk to strangers.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_155", "context": "No low-scoring players are top players in the league. Basketball players are either top players in the league or successfully shoot a high percentage of 3-pointers. All players who successfully shoot a high percentage of 3-pointers are solid at shooting 2-pointers. No players who are solid at shooting 2-pointers are bad at mid-range shots. Candace is either a low-scoring player or successfully shoots a high percentage of 3-pointers.", "question": "Based on the above information, is the following statement true, false, or uncertain? Candace is a top player in the league.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_156", "context": "No low-scoring players are top players in the league. Basketball players are either top players in the league or successfully shoot a high percentage of 3-pointers. All players who successfully shoot a high percentage of 3-pointers are solid at shooting 2-pointers. No players who are solid at shooting 2-pointers are bad at mid-range shots. Candace is either a low-scoring player or successfully shoots a high percentage of 3-pointers.", "question": "Based on the above information, is the following statement true, false, or uncertain? Candace is bad at mid-range shots.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_157", "context": "No low-scoring players are top players in the league. Basketball players are either top players in the league or successfully shoot a high percentage of 3-pointers. All players who successfully shoot a high percentage of 3-pointers are solid at shooting 2-pointers. No players who are solid at shooting 2-pointers are bad at mid-range shots. Candace is either a low-scoring player or successfully shoots a high percentage of 3-pointers.", "question": "Based on the above information, is the following statement true, false, or uncertain? Candace is solid at shooting 2-pointers or bad at mid-range shots.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_158", "context": "No low-scoring players are top players in the league. Basketball players are either top players in the league or successfully shoot a high percentage of 3-pointers. All players who successfully shoot a high percentage of 3-pointers are solid at shooting 2-pointers. No players who are solid at shooting 2-pointers are bad at mid-range shots. Candace is either a low-scoring player or successfully shoots a high percentage of 3-pointers.", "question": "Based on the above information, is the following statement true, false, or uncertain? Candace is either solid at shooting 2-pointers or bad at mid-range shots.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_159", "context": "No low-scoring players are top players in the league. Basketball players are either top players in the league or successfully shoot a high percentage of 3-pointers. All players who successfully shoot a high percentage of 3-pointers are solid at shooting 2-pointers. No players who are solid at shooting 2-pointers are bad at mid-range shots. Candace is either a low-scoring player or successfully shoots a high percentage of 3-pointers.", "question": "Based on the above information, is the following statement true, false, or uncertain? Candace is a low-scoring player or bad at mid-range shots.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_160", "context": "No low-scoring players are top players in the league. Basketball players are either top players in the league or successfully shoot a high percentage of 3-pointers. All players who successfully shoot a high percentage of 3-pointers are solid at shooting 2-pointers. No players who are solid at shooting 2-pointers are bad at mid-range shots. Candace is either a low-scoring player or successfully shoots a high percentage of 3-pointers.", "question": "Based on the above information, is the following statement true, false, or uncertain? Candace is either a low-scoring player or bad at mid-range shots.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_161", "context": "No low-scoring players are top players in the league. Basketball players are either top players in the league or successfully shoot a high percentage of 3-pointers. All players who successfully shoot a high percentage of 3-pointers are solid at shooting 2-pointers. No players who are solid at shooting 2-pointers are bad at mid-range shots. Candace is either a low-scoring player or successfully shoots a high percentage of 3-pointers.", "question": "Based on the above information, is the following statement true, false, or uncertain? Candace is either a player who successfully shoots a high percentage of 3-pointers or is bad at mid-range shots.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_162", "context": "No low-scoring players are top players in the league. Basketball players are either top players in the league or successfully shoot a high percentage of 3-pointers. All players who successfully shoot a high percentage of 3-pointers are solid at shooting 2-pointers. No players who are solid at shooting 2-pointers are bad at mid-range shots. Candace is either a low-scoring player or successfully shoots a high percentage of 3-pointers.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Candace is not solid at shooting 2-pointers and bad at mid-range shots, then Candace is not solid at shooting 2-pointers and is a player who successfully shoots a high percentage of 3-pointers.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_163", "context": "No low-scoring players are top players in the league. Basketball players are either top players in the league or successfully shoot a high percentage of 3-pointers. All players who successfully shoot a high percentage of 3-pointers are solid at shooting 2-pointers. No players who are solid at shooting 2-pointers are bad at mid-range shots. Candace is either a low-scoring player or successfully shoots a high percentage of 3-pointers.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Candace is solid at shooting 2-pointers or successfully shoots a high percentage of 3-pointers, then Candace is a top player in the league and bad at mid-range shots.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_164", "context": "No plants are fungi. Mushrooms are fungi.", "question": "Based on the above information, is the following statement true, false, or uncertain? No plants are mushrooms.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_165", "context": "No road is clean. And some streets are roads.", "question": "Based on the above information, is the following statement true, false, or uncertain? Some streets are clean", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_166", "context": "New York City is on the East Coast. Seattle is on the West Coast. If a person from a city on the East coast is traveling to a city on the west coast, they will be on a long flight. Most passengers on flights to Seattle from New York City are not in first class. People on long flights are uncomfortable unless they're in first class", "question": "Based on the above information, is the following statement true, false, or uncertain? Some people flying from New York City to Seattle will be uncomfortable.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_167", "context": "Musicians have very busy lives. Singh Kaur is a musician and famous. If a musician is not famous, that musician will not make a lot of money. A musician can be a singer or a writer.", "question": "Based on the above information, is the following statement true, false, or uncertain? Singh Kaur makes a lot of money.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_168", "context": "Musicians have very busy lives. Singh Kaur is a musician and famous. If a musician is not famous, that musician will not make a lot of money. A musician can be a singer or a writer.", "question": "Based on the above information, is the following statement true, false, or uncertain? Singh Kaur is a writer.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_169", "context": "Musicians have very busy lives. Singh Kaur is a musician and famous. If a musician is not famous, that musician will not make a lot of money. A musician can be a singer or a writer.", "question": "Based on the above information, is the following statement true, false, or uncertain? Singh Kaur has a very busy life.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_170", "context": "Each building is tall. Everything tall has height.", "question": "Based on the above information, is the following statement true, false, or uncertain? All buildings are magnificent.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_171", "context": "A cat named Garfield, which is the main character of the film Garfield, is orange and fat and likes having lasagna. Garfield and Odie, who is another pet of Jon, share the same home. Garfield hates Odie. A pet who hates the pet with whom he shares the same owner is childish and possessive. Cats are pets.", "question": "Based on the above information, is the following statement true, false, or uncertain? The main character of the film Garfield is childish and possessive.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_172", "context": "All humans eat. If something eats, then it is not a plant. A thing is either plant or animal. All goats are animals. No dirt is an animal. Hulu is a goat or a human.", "question": "Based on the above information, is the following statement true, false, or uncertain? Hulu eats.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_173", "context": "All humans eat. If something eats, then it is not a plant. A thing is either plant or animal. All goats are animals. No dirt is an animal. Hulu is a goat or a human.", "question": "Based on the above information, is the following statement true, false, or uncertain? Hulu does not eat.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_174", "context": "All humans eat. If something eats, then it is not a plant. A thing is either plant or animal. All goats are animals. No dirt is an animal. Hulu is a goat or a human.", "question": "Based on the above information, is the following statement true, false, or uncertain? Hulu is dirt.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_175", "context": "All humans eat. If something eats, then it is not a plant. A thing is either plant or animal. All goats are animals. No dirt is an animal. Hulu is a goat or a human.", "question": "Based on the above information, is the following statement true, false, or uncertain? Hulu is an animal or dirt.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_176", "context": "All humans eat. If something eats, then it is not a plant. A thing is either plant or animal. All goats are animals. No dirt is an animal. Hulu is a goat or a human.", "question": "Based on the above information, is the following statement true, false, or uncertain? Hulu is either an animal or dirt.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_177", "context": "All humans eat. If something eats, then it is not a plant. A thing is either plant or animal. All goats are animals. No dirt is an animal. Hulu is a goat or a human.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Hulu is either an animal or dirt, then Hulu eats and is dirt.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_178", "context": "A controlled substance is a drug. There exist both harmful and beneficial controlled substances. If a child is exposed to a controlled substance, he or she is in chemical endangerment. Chemical Endangerment is harmful. The Controlled Substances Act was an act passed in 1971. Some Acts prevent harmful things.", "question": "Based on the above information, is the following statement true, false, or uncertain? The Controlled Substances Act prevents harmful things.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_179", "context": "A controlled substance is a drug. There exist both harmful and beneficial controlled substances. If a child is exposed to a controlled substance, he or she is in chemical endangerment. Chemical Endangerment is harmful. The Controlled Substances Act was an act passed in 1971. Some Acts prevent harmful things.", "question": "Based on the above information, is the following statement true, false, or uncertain? Some drugs are beneficial.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_180", "context": "A controlled substance is a drug. There exist both harmful and beneficial controlled substances. If a child is exposed to a controlled substance, he or she is in chemical endangerment. Chemical Endangerment is harmful. The Controlled Substances Act was an act passed in 1971. Some Acts prevent harmful things.", "question": "Based on the above information, is the following statement true, false, or uncertain? A child in chemical endangerment is in harm.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_181", "context": "No people who work at corporate jobs are starting a new company. All entrepreneurs are starting a new company. All risk-averse people are people who work at corporate jobs. All people who hate working for others are entrepreneurs. If Mark Zuckerberg is neither an entrepreneur nor a person who hates working for others, then Mark Zuckerberg is not a risk-averse person.", "question": "Based on the above information, is the following statement true, false, or uncertain? Mark Zuckerberg is an entrepreneur.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_182", "context": "No people who work at corporate jobs are starting a new company. All entrepreneurs are starting a new company. All risk-averse people are people who work at corporate jobs. All people who hate working for others are entrepreneurs. If Mark Zuckerberg is neither an entrepreneur nor a person who hates working for others, then Mark Zuckerberg is not a risk-averse person.", "question": "Based on the above information, is the following statement true, false, or uncertain? Mark Zuckerberg is a risk-averse person.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_183", "context": "No people who work at corporate jobs are starting a new company. All entrepreneurs are starting a new company. All risk-averse people are people who work at corporate jobs. All people who hate working for others are entrepreneurs. If Mark Zuckerberg is neither an entrepreneur nor a person who hates working for others, then Mark Zuckerberg is not a risk-averse person.", "question": "Based on the above information, is the following statement true, false, or uncertain? Mark Zuckerberg is not a risk-averse person.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_184", "context": "There are two kitchens in the house: the upstairs kitchen and the downstairs kitchen. When someone is cooking in the downstairs kitchen, the first floor becomes smokey unless the air conditioner is running. If the air conditioner is running and someone is cooking in the downstairs kitchen, all the smoke travels to the second floor.", "question": "Based on the above information, is the following statement true, false, or uncertain? If someone is cooking downstairs, it will always cause the first floor to become smokey.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_185", "context": "There are two kitchens in the house: the upstairs kitchen and the downstairs kitchen. When someone is cooking in the downstairs kitchen, the first floor becomes smokey unless the air conditioner is running. If the air conditioner is running and someone is cooking in the downstairs kitchen, all the smoke travels to the second floor.", "question": "Based on the above information, is the following statement true, false, or uncertain? If someone is cooking upstairs, the first floor will become smokey.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_186", "context": "There are two kitchens in the house: the upstairs kitchen and the downstairs kitchen. When someone is cooking in the downstairs kitchen, the first floor becomes smokey unless the air conditioner is running. If the air conditioner is running and someone is cooking in the downstairs kitchen, all the smoke travels to the second floor.", "question": "Based on the above information, is the following statement true, false, or uncertain? If someone is cooking downstairs and the air conditioner is running, there will be smoke upstairs.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_187", "context": "New York City is Located in the United States of America. United States of America is part of North America. North America is in the western hemisphere of the earth. New York City is a highly developed city. If place A is located in place B and place B is located in place C, then place A is located in place C.", "question": "Based on the above information, is the following statement true, false, or uncertain? A highly developed city is located in the western hemisphere of the earth.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_188", "context": "New York City is Located in the United States of America. United States of America is part of North America. North America is in the western hemisphere of the earth. New York City is a highly developed city. If place A is located in place B and place B is located in place C, then place A is located in place C.", "question": "Based on the above information, is the following statement true, false, or uncertain? USA is not located in western hemisphere of the earth.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_189", "context": "New York City is Located in the United States of America. United States of America is part of North America. North America is in the western hemisphere of the earth. New York City is a highly developed city. If place A is located in place B and place B is located in place C, then place A is located in place C.", "question": "Based on the above information, is the following statement true, false, or uncertain? New York City is located in the New York State.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_190", "context": "Callus 4 is a poem that was written by the ancient Roman writer Catullus. Callus 4 is a story about the retirement of a well-traveled ship. There is a strong analogy of human aging in the poem Callus 4. Callus 4 is written in an unusual iambic trimeter to convey a sense of speed over the waves.", "question": "Based on the above information, is the following statement true, false, or uncertain? There exists a poem written by an ancient Roman writer with a strong analogy of human aging.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_191", "context": "Callus 4 is a poem that was written by the ancient Roman writer Catullus. Callus 4 is a story about the retirement of a well-traveled ship. There is a strong analogy of human aging in the poem Callus 4. Callus 4 is written in an unusual iambic trimeter to convey a sense of speed over the waves.", "question": "Based on the above information, is the following statement true, false, or uncertain? There exists a poem written by an ancient Roman writer written in iambic petameter.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_192", "context": "Callus 4 is a poem that was written by the ancient Roman writer Catullus. Callus 4 is a story about the retirement of a well-traveled ship. There is a strong analogy of human aging in the poem Callus 4. Callus 4 is written in an unusual iambic trimeter to convey a sense of speed over the waves.", "question": "Based on the above information, is the following statement true, false, or uncertain? Callus 4 is written in an unusual iambic trimeter to convey a strong analogy of human aging.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_193", "context": "Westworld is an American science fiction-thriller TV series. In 2016, a new television series named Westworld debuted on HBO. The TV series Westworld is adapted from the original film in 1973, which was written and directed by Michael Crichton. The 1973 film Westworld is about robots that malfunction and begin killing the human visitors.", "question": "Based on the above information, is the following statement true, false, or uncertain? Michael Crichton has directed a film about robots.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_194", "context": "Westworld is an American science fiction-thriller TV series. In 2016, a new television series named Westworld debuted on HBO. The TV series Westworld is adapted from the original film in 1973, which was written and directed by Michael Crichton. The 1973 film Westworld is about robots that malfunction and begin killing the human visitors.", "question": "Based on the above information, is the following statement true, false, or uncertain? An American TV series debuted in 2016.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_195", "context": "The 2008 Summer Olympics were held in Beijing, China. The 2008 Summer Olympics were the second Summer Olympic Games to be held in a communist state. China won the most gold medals (48) in the 2008 Summer Olympics. The United States placed second in the gold medal tally but won the highest number of medals overall (112) in the 2008 Summer Olympics. The third place in the gold medal tally was achieved by Russia in the 2008 Summer Olympics. If a country places third in gold medals, then they had fewer gold medals than the team that won the most gold medals. 87 countries won at least one medal during the 2008 Games.", "question": "Based on the above information, is the following statement true, false, or uncertain? Russia did not win fewer gold medals than China.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_196", "context": "The 2008 Summer Olympics were held in Beijing, China. The 2008 Summer Olympics were the second Summer Olympic Games to be held in a communist state. China won the most gold medals (48) in the 2008 Summer Olympics. The United States placed second in the gold medal tally but won the highest number of medals overall (112) in the 2008 Summer Olympics. The third place in the gold medal tally was achieved by Russia in the 2008 Summer Olympics. If a country places third in gold medals, then they had fewer gold medals than the team that won the most gold medals. 87 countries won at least one medal during the 2008 Games.", "question": "Based on the above information, is the following statement true, false, or uncertain? The United States won fewer gold medals than China.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_197", "context": "The 2008 Summer Olympics were held in Beijing, China. The 2008 Summer Olympics were the second Summer Olympic Games to be held in a communist state. China won the most gold medals (48) in the 2008 Summer Olympics. The United States placed second in the gold medal tally but won the highest number of medals overall (112) in the 2008 Summer Olympics. The third place in the gold medal tally was achieved by Russia in the 2008 Summer Olympics. If a country places third in gold medals, then they had fewer gold medals than the team that won the most gold medals. 87 countries won at least one medal during the 2008 Games.", "question": "Based on the above information, is the following statement true, false, or uncertain? Russia won fewer gold medals than China.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_198", "context": "Xiufeng, Xiangshan, Diecai, Qixing are districts in the city of Guilin. Yangshuo is not a district in Guilin.", "question": "Based on the above information, is the following statement true, false, or uncertain? Xiangshan and Diecai are districts in the same city.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_199", "context": "Xiufeng, Xiangshan, Diecai, Qixing are districts in the city of Guilin. Yangshuo is not a district in Guilin.", "question": "Based on the above information, is the following statement true, false, or uncertain? Xiufeng is in Guilin.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_200", "context": "Xiufeng, Xiangshan, Diecai, Qixing are districts in the city of Guilin. Yangshuo is not a district in Guilin.", "question": "Based on the above information, is the following statement true, false, or uncertain? Kowloon District is in Hong Kong.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_201", "context": "All people who grow their own fresh vegetables in their home garden also have ample space. If people are young working professionals who live in large cities, then they do not have ample space. If people order takeout from delivery services often, then they grow their own fresh vegetables in their home garden. If people enjoy going out often to restaurants with friends, then they order takeout from delivery services often. If people regularly tout the benefits of homegrown and homecooked meals over fast food, then they enjoy going out often to restaurants with friends. Michael grows his own fresh vegetables in his home garden or regularly touts the benefits of homegrown and homecooked meals over fast food.", "question": "Based on the above information, is the following statement true, false, or uncertain? Michael enjoys going out often to restaurants with friends.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_202", "context": "All people who grow their own fresh vegetables in their home garden also have ample space. If people are young working professionals who live in large cities, then they do not have ample space. If people order takeout from delivery services often, then they grow their own fresh vegetables in their home garden. If people enjoy going out often to restaurants with friends, then they order takeout from delivery services often. If people regularly tout the benefits of homegrown and homecooked meals over fast food, then they enjoy going out often to restaurants with friends. Michael grows his own fresh vegetables in his home garden or regularly touts the benefits of homegrown and homecooked meals over fast food.", "question": "Based on the above information, is the following statement true, false, or uncertain? Michael is a young working professional who lives in large cities.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_203", "context": "All people who grow their own fresh vegetables in their home garden also have ample space. If people are young working professionals who live in large cities, then they do not have ample space. If people order takeout from delivery services often, then they grow their own fresh vegetables in their home garden. If people enjoy going out often to restaurants with friends, then they order takeout from delivery services often. If people regularly tout the benefits of homegrown and homecooked meals over fast food, then they enjoy going out often to restaurants with friends. Michael grows his own fresh vegetables in his home garden or regularly touts the benefits of homegrown and homecooked meals over fast food.", "question": "Based on the above information, is the following statement true, false, or uncertain? Michael grows his own fresh vegetables in their home garden or is a young working professional who lives in large cities.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_204", "context": "All devices belonging to the company are connected to Google Home. All devices belonging to employees are connected to the company's wifi. All devices connected to Google Home are controlled by the managers. All devices that connect to the company's wifi are easy to operate. IPod1 belongs to employees.", "question": "Based on the above information, is the following statement true, false, or uncertain? iPod1 is easy to operate.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_205", "context": "All devices belonging to the company are connected to Google Home. All devices belonging to employees are connected to the company's wifi. All devices connected to Google Home are controlled by the managers. All devices that connect to the company's wifi are easy to operate. IPod1 belongs to employees.", "question": "Based on the above information, is the following statement true, false, or uncertain? iPod1 is controlled by managers.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_206", "context": "All devices belonging to the company are connected to Google Home. All devices belonging to employees are connected to the company's wifi. All devices connected to Google Home are controlled by the managers. All devices that connect to the company's wifi are easy to operate. IPod1 belongs to employees.", "question": "Based on the above information, is the following statement true, false, or uncertain? iPod1 is connected to Google Home.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_207", "context": "No touring musicians are permanent members of an orchestra. Musicians are either permanent members of an orchestra or have a unique musical voice or style. All musicians who have a unique musical voice or style are interesting as individual performers. All musicians who are interesting as individual performers are capable of attracting large audiences. If Ryan is interesting as an individual performer and has a unique musical voice or style, then Ryan is either a touring soloist musician and capable of attracting large audiences, or neither a touring soloist musician nor capable of attracting large audiences.", "question": "Based on the above information, is the following statement true, false, or uncertain? Ryan is interesting as an individual performer.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_208", "context": "No touring musicians are permanent members of an orchestra. Musicians are either permanent members of an orchestra or have a unique musical voice or style. All musicians who have a unique musical voice or style are interesting as individual performers. All musicians who are interesting as individual performers are capable of attracting large audiences. If Ryan is interesting as an individual performer and has a unique musical voice or style, then Ryan is either a touring soloist musician and capable of attracting large audiences, or neither a touring soloist musician nor capable of attracting large audiences.", "question": "Based on the above information, is the following statement true, false, or uncertain? Ryan is either a permanent member of an orchestra or a touring soloist musician.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_209", "context": "No touring musicians are permanent members of an orchestra. Musicians are either permanent members of an orchestra or have a unique musical voice or style. All musicians who have a unique musical voice or style are interesting as individual performers. All musicians who are interesting as individual performers are capable of attracting large audiences. If Ryan is interesting as an individual performer and has a unique musical voice or style, then Ryan is either a touring soloist musician and capable of attracting large audiences, or neither a touring soloist musician nor capable of attracting large audiences.", "question": "Based on the above information, is the following statement true, false, or uncertain? Ryan is either a permanent member of an orchestra or has a unique musical voice or style.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_210", "context": "If someone yells, then they are not cool. If someone is angry, then they yell. If someone flies, then they are cool. Every person that knows magic can fly. All wizards know magic. Harry either yells and flies, or neither yells nor flies. Potter is a wizard and flies.", "question": "Based on the above information, is the following statement true, false, or uncertain? Harry is cool.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_211", "context": "If someone yells, then they are not cool. If someone is angry, then they yell. If someone flies, then they are cool. Every person that knows magic can fly. All wizards know magic. Harry either yells and flies, or neither yells nor flies. Potter is a wizard and flies.", "question": "Based on the above information, is the following statement true, false, or uncertain? Harry is not cool.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_212", "context": "If someone yells, then they are not cool. If someone is angry, then they yell. If someone flies, then they are cool. Every person that knows magic can fly. All wizards know magic. Harry either yells and flies, or neither yells nor flies. Potter is a wizard and flies.", "question": "Based on the above information, is the following statement true, false, or uncertain? Harry is a wizard or angry.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_213", "context": "If someone yells, then they are not cool. If someone is angry, then they yell. If someone flies, then they are cool. Every person that knows magic can fly. All wizards know magic. Harry either yells and flies, or neither yells nor flies. Potter is a wizard and flies.", "question": "Based on the above information, is the following statement true, false, or uncertain? Harry is neither a wizard nor angry.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_214", "context": "Products are either produced in China or the US. All produced in China are labeled. All produced in the US are sold in the US. If labeled, then the product is cheaper. All sold in the US are sold in Walmart. All displayed on the homepage are sold in Walmart. No products returned by customers are sold in Walmart. G-910 is either displayed on the homepage or cheaper.", "question": "Based on the above information, is the following statement true, false, or uncertain? G-910 is displayed on the homepage.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_215", "context": "Products are either produced in China or the US. All produced in China are labeled. All produced in the US are sold in the US. If labeled, then the product is cheaper. All sold in the US are sold in Walmart. All displayed on the homepage are sold in Walmart. No products returned by customers are sold in Walmart. G-910 is either displayed on the homepage or cheaper.", "question": "Based on the above information, is the following statement true, false, or uncertain? G-910 is not displayed on the homepage.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_216", "context": "Products are either produced in China or the US. All produced in China are labeled. All produced in the US are sold in the US. If labeled, then the product is cheaper. All sold in the US are sold in Walmart. All displayed on the homepage are sold in Walmart. No products returned by customers are sold in Walmart. G-910 is either displayed on the homepage or cheaper.", "question": "Based on the above information, is the following statement true, false, or uncertain? G-910 is a product returned by customers.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_217", "context": "Products are either produced in China or the US. All produced in China are labeled. All produced in the US are sold in the US. If labeled, then the product is cheaper. All sold in the US are sold in Walmart. All displayed on the homepage are sold in Walmart. No products returned by customers are sold in Walmart. G-910 is either displayed on the homepage or cheaper.", "question": "Based on the above information, is the following statement true, false, or uncertain? G-910 is a product returned by customers or sold in Walmart.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_218", "context": "Products are either produced in China or the US. All produced in China are labeled. All produced in the US are sold in the US. If labeled, then the product is cheaper. All sold in the US are sold in Walmart. All displayed on the homepage are sold in Walmart. No products returned by customers are sold in Walmart. G-910 is either displayed on the homepage or cheaper.", "question": "Based on the above information, is the following statement true, false, or uncertain? G-910 is either returned by customers or sold in Walmart.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_219", "context": "People either order a lot of Amazon packages or are environmentally conscious. If people order a lot of Amazon packages, then they get a lot of daily mail delivered. If people are environmentally conscious, then they have solar panels in their homes. If people get a lot of daily mail delivered, then they are very involved with their neighborhood. If people have solar panels in their homes, then they save a lot of money. If Marcy either gets a lot of mail and is very involved with her neighborhood or if she does not order a lot of Amazon packages nor is very involved with her neighborhood, then Marcy does not both get a lot of daily mail and order a lot of Amazon packages.", "question": "Based on the above information, is the following statement true, false, or uncertain? Marcy either orders a lot of Amazon packages or saves a lot of money.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_220", "context": "People either order a lot of Amazon packages or are environmentally conscious. If people order a lot of Amazon packages, then they get a lot of daily mail delivered. If people are environmentally conscious, then they have solar panels in their homes. If people get a lot of daily mail delivered, then they are very involved with their neighborhood. If people have solar panels in their homes, then they save a lot of money. If Marcy either gets a lot of mail and is very involved with her neighborhood or if she does not order a lot of Amazon packages nor is very involved with her neighborhood, then Marcy does not both get a lot of daily mail and order a lot of Amazon packages.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Marcy is not a person who orders a lot of Amazon packages and is very environmentally conscious, then Taylor is not someone who saves a lot of money and is environmentally conscious.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_221", "context": "Indonesia is a country. In Indonesia, the prosecutor only personally investigates cases of some special crimes. Corruption is a type of crime. Once the police complete investigations of a crime, they hand the evidence to the prosecutor. Evidence can be either satisfactory or unsatisfactory. If the police hand the evidence to the prosecutor and the evidence is satisfactory, the prosecutor will prosecute the offender in an appropriate court.", "question": "Based on the above information, is the following statement true, false, or uncertain? When the police complete investigations, the prosecutor will prosecute the offender at an appropriate court.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_222", "context": "Indonesia is a country. In Indonesia, the prosecutor only personally investigates cases of some special crimes. Corruption is a type of crime. Once the police complete investigations of a crime, they hand the evidence to the prosecutor. Evidence can be either satisfactory or unsatisfactory. If the police hand the evidence to the prosecutor and the evidence is satisfactory, the prosecutor will prosecute the offender in an appropriate court.", "question": "Based on the above information, is the following statement true, false, or uncertain? In Indonesia, the prosecutor personally investigates cases of corruption.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_223", "context": "Indonesia is a country. In Indonesia, the prosecutor only personally investigates cases of some special crimes. Corruption is a type of crime. Once the police complete investigations of a crime, they hand the evidence to the prosecutor. Evidence can be either satisfactory or unsatisfactory. If the police hand the evidence to the prosecutor and the evidence is satisfactory, the prosecutor will prosecute the offender in an appropriate court.", "question": "Based on the above information, is the following statement true, false, or uncertain? When the police complete investigations, the prosecutor investigates in personally.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_224", "context": "No watch that is battery-powered is automatic. All digital watches are battery-powered. Some mechanical watches are automatic. All smart watches are digital. Moonwatch is not a digital watch or an automatic.", "question": "Based on the above information, is the following statement true, false, or uncertain? Moonwatch is a mechanical watch.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_225", "context": "No watch that is battery-powered is automatic. All digital watches are battery-powered. Some mechanical watches are automatic. All smart watches are digital. Moonwatch is not a digital watch or an automatic.", "question": "Based on the above information, is the following statement true, false, or uncertain? Moonwatch is a smartwatch and a mechanical watch.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_226", "context": "No watch that is battery-powered is automatic. All digital watches are battery-powered. Some mechanical watches are automatic. All smart watches are digital. Moonwatch is not a digital watch or an automatic.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Moonwatch is a smartwatch and a mechanical watch, then Moonwatch is not a mechanical watch.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_227", "context": "No watch that is battery-powered is automatic. All digital watches are battery-powered. Some mechanical watches are automatic. All smart watches are digital. Moonwatch is not a digital watch or an automatic.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Moonwatch is a mechanical or battery-powered watch, then Moonwatch is not a smartwatch.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_228", "context": "If a person can distinguish the taste of different condiments, then he/she can also use different condiments to cook. People who have the talent of cooking can distinguish the taste of different condiments. Only people with the talent of cooking can make delicious meals. If the meal is popular at the party, then it is delicious. John can make meals which are popular at the party.", "question": "Based on the above information, is the following statement true, false, or uncertain? John cannot use different condiments to cook.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_229", "context": "Effective monetary policy is possible with successful inflation control and a strong national currency. A country cannot simultaneously regulate the exchange rate and successfully control inflation. The introduction of an embargo on foreign trade goods in a country leads to a sharp decrease in exports. If exports fall sharply, the national currency cannot be in this country. Regulation of the exchange rate is required to have a strong national currency. There is an embargo on Russian foreign trade goods.", "question": "Based on the above information, is the following statement true, false, or uncertain? In Russia, an effective monetary policy is possible.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_230", "context": "Video Gag is a French television series that airs weekly. Video Gag airs on the French broadcast channel TF1. If viewers send in funny videos to the French broadcast channel, then Video Gag airs them on television. All videos aired on Video Gag are in French.", "question": "Based on the above information, is the following statement true, false, or uncertain? Viewers send in funny videos to the French broadcast channel that are in French.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_231", "context": "Video Gag is a French television series that airs weekly. Video Gag airs on the French broadcast channel TF1. If viewers send in funny videos to the French broadcast channel, then Video Gag airs them on television. All videos aired on Video Gag are in French.", "question": "Based on the above information, is the following statement true, false, or uncertain? Viewers send in funny videos to the French broadcast channel that are in English.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_232", "context": "All phones are things. All cellphones are phones. All iPhones are cellphones. All engineers are workers. All workers are human. Jack is either an engineer or a worker. Jack is is either a human or a phone.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jack is a thing.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_233", "context": "All phones are things. All cellphones are phones. All iPhones are cellphones. All engineers are workers. All workers are human. Jack is either an engineer or a worker. Jack is is either a human or a phone.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jack is not a thing.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_234", "context": "All phones are things. All cellphones are phones. All iPhones are cellphones. All engineers are workers. All workers are human. Jack is either an engineer or a worker. Jack is is either a human or a phone.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jack is a thing and an iPhone.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_235", "context": "All phones are things. All cellphones are phones. All iPhones are cellphones. All engineers are workers. All workers are human. Jack is either an engineer or a worker. Jack is is either a human or a phone.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jack is not both a thing and an iPhone.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_236", "context": "All iPhones are electronic. Some phones are iPhones.", "question": "Based on the above information, is the following statement true, false, or uncertain? No phones are electronic.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_237", "context": "Metropolitan Museum of Art is a museum in NYC. Whitney Museum of American Art is a museum in NYC. Museum of Modern Art (MoMA) is a museum if NYC. Metropolitan Museum of Art includes Bytantine and Islamic Art. Whitney Museum of American Art includes American art.", "question": "Based on the above information, is the following statement true, false, or uncertain? A museum in NYC includes Byzantine and Islamic Art.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_238", "context": "Metropolitan Museum of Art is a museum in NYC. Whitney Museum of American Art is a museum in NYC. Museum of Modern Art (MoMA) is a museum if NYC. Metropolitan Museum of Art includes Bytantine and Islamic Art. Whitney Museum of American Art includes American art.", "question": "Based on the above information, is the following statement true, false, or uncertain? A museum in NYC includes American art.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_239", "context": "Metropolitan Museum of Art is a museum in NYC. Whitney Museum of American Art is a museum in NYC. Museum of Modern Art (MoMA) is a museum if NYC. Metropolitan Museum of Art includes Bytantine and Islamic Art. Whitney Museum of American Art includes American art.", "question": "Based on the above information, is the following statement true, false, or uncertain? A museum in NYC includes Greek art.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_240", "context": "A person either likes eating cheese or is a francophile. No francophiles are people who like Spain as their favorite country. A person likes Spain as their favorite country or likes eating cheese. Benji is not a person who likes eating cheese and a person who studies Spanish. If Benji is neither a person who studies Spanish nor a person that studies French, then Benji is a person who studies Spanish or a person that studies French.", "question": "Based on the above information, is the following statement true, false, or uncertain? Benji is a person who likes eating cheese.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_241", "context": "A person either likes eating cheese or is a francophile. No francophiles are people who like Spain as their favorite country. A person likes Spain as their favorite country or likes eating cheese. Benji is not a person who likes eating cheese and a person who studies Spanish. If Benji is neither a person who studies Spanish nor a person that studies French, then Benji is a person who studies Spanish or a person that studies French.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Benji is either a person who likes eating cheese or a francophile, then Benji is neither a person who studies Spanish nor a person who studies French.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_242", "context": "A person either likes eating cheese or is a francophile. No francophiles are people who like Spain as their favorite country. A person likes Spain as their favorite country or likes eating cheese. Benji is not a person who likes eating cheese and a person who studies Spanish. If Benji is neither a person who studies Spanish nor a person that studies French, then Benji is a person who studies Spanish or a person that studies French.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Benji is a person who likes Spain as their favorite country or studies French, then Benji is either a person who studies Spanish or a person who likes Spain as their favorite country.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_243", "context": "Gasteren is village located in the province of Drenthe. Drenthe is a Dutch province. No cities are villages. The population of a village in Drenthe was 155 people.", "question": "Based on the above information, is the following statement true, false, or uncertain? Gasteren is a Dutch village.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_244", "context": "Gasteren is village located in the province of Drenthe. Drenthe is a Dutch province. No cities are villages. The population of a village in Drenthe was 155 people.", "question": "Based on the above information, is the following statement true, false, or uncertain? Gasteren is a city.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_245", "context": "Gasteren is village located in the province of Drenthe. Drenthe is a Dutch province. No cities are villages. The population of a village in Drenthe was 155 people.", "question": "Based on the above information, is the following statement true, false, or uncertain? Gasteren has a population of 155.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_246", "context": "The only types of mammals that lay eggs are platypuses and echidnas. Platypuses are not hyrax. Echidnas are not hyrax. No mammals are invertebrates. All animals are either vertebrates or invertebrates. Mammals are animals. Hyraxes are mammals. Grebes lay eggs. Grebes are not platypuses and also not echidnas.", "question": "Based on the above information, is the following statement true, false, or uncertain? Hyraxes lay eggs.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_247", "context": "The only types of mammals that lay eggs are platypuses and echidnas. Platypuses are not hyrax. Echidnas are not hyrax. No mammals are invertebrates. All animals are either vertebrates or invertebrates. Mammals are animals. Hyraxes are mammals. Grebes lay eggs. Grebes are not platypuses and also not echidnas.", "question": "Based on the above information, is the following statement true, false, or uncertain? Grebes are not mammals.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_248", "context": "The only types of mammals that lay eggs are platypuses and echidnas. Platypuses are not hyrax. Echidnas are not hyrax. No mammals are invertebrates. All animals are either vertebrates or invertebrates. Mammals are animals. Hyraxes are mammals. Grebes lay eggs. Grebes are not platypuses and also not echidnas.", "question": "Based on the above information, is the following statement true, false, or uncertain? Platypuses are vertebrates.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_249", "context": "Bobby Flynn is a singer-songwriter. Bobby Flynn finished 7th while competing on Australian Idol. Australian Idol competitors are Australian citizens. The Omega Three band made a nationwide tour in 2007. Bobby Flynn is a member of The Omega Three band. Bobby Flynn was born in Queensland.", "question": "Based on the above information, is the following statement true, false, or uncertain? Bobby Flynn is an Australian citizen.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_250", "context": "Bobby Flynn is a singer-songwriter. Bobby Flynn finished 7th while competing on Australian Idol. Australian Idol competitors are Australian citizens. The Omega Three band made a nationwide tour in 2007. Bobby Flynn is a member of The Omega Three band. Bobby Flynn was born in Queensland.", "question": "Based on the above information, is the following statement true, false, or uncertain? Bobby Flynn flew to America in 2007.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_251", "context": "Bobby Flynn is a singer-songwriter. Bobby Flynn finished 7th while competing on Australian Idol. Australian Idol competitors are Australian citizens. The Omega Three band made a nationwide tour in 2007. Bobby Flynn is a member of The Omega Three band. Bobby Flynn was born in Queensland.", "question": "Based on the above information, is the following statement true, false, or uncertain? Bobby Flynn was born in Queens.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_252", "context": "All proteins are organic compounds. All enzymes are organic compounds.", "question": "Based on the above information, is the following statement true, false, or uncertain? All enzymes are proteins.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_253", "context": "One American screenwriter and producer is Maggie Friedman. Maggie Friedman was the showrunner and executive producer of the lifetime television series Witches of East End. Witches of East End is a fantasy-drama series. Maggie Friedman produced and developed Eastwick. Eastwick is a series by ABC.", "question": "Based on the above information, is the following statement true, false, or uncertain? There is a series by ABC that was developed by the showrunner of Witches of East End.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_254", "context": "One American screenwriter and producer is Maggie Friedman. Maggie Friedman was the showrunner and executive producer of the lifetime television series Witches of East End. Witches of East End is a fantasy-drama series. Maggie Friedman produced and developed Eastwick. Eastwick is a series by ABC.", "question": "Based on the above information, is the following statement true, false, or uncertain? There isn't a series by ABC that was developed by the showrunner of Witches of East End.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_255", "context": "One American screenwriter and producer is Maggie Friedman. Maggie Friedman was the showrunner and executive producer of the lifetime television series Witches of East End. Witches of East End is a fantasy-drama series. Maggie Friedman produced and developed Eastwick. Eastwick is a series by ABC.", "question": "Based on the above information, is the following statement true, false, or uncertain? Maggie Friedman developed Witches of East End.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_256", "context": "Evangelos Eleftheriou is a Greek electrical engineer. Evangelos Eleftheriou worked for IBM in Zurich. If a company has employees working for them somewhere, then they have an office there. IBM is a company.", "question": "Based on the above information, is the following statement true, false, or uncertain? IBM has an office in London or Zurich.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_257", "context": "Evangelos Eleftheriou is a Greek electrical engineer. Evangelos Eleftheriou worked for IBM in Zurich. If a company has employees working for them somewhere, then they have an office there. IBM is a company.", "question": "Based on the above information, is the following statement true, false, or uncertain? No Greeks have worked for IBM.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_258", "context": "Before releasing their single, \"Hooray! Hooray! It's a Holi-Holiday!\", Boney M. had had seven consecutive German #1 singles. \"Hooray! Hooray! It's a Holi-Holiday!\" was a big hit all over Europe. Nevertheless, \"Hooray! Hooray! It's a Holi-Holiday!\" broke Boney M's streak of consecutive German #1 singles. A song that peaks below #1 on the german charts is also a song that is not the #1 single", "question": "Based on the above information, is the following statement true, false, or uncertain? \"Hooray! Hooray! It's a Holi-Holiday!\" was a #1 hit in Germany.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_259", "context": "Before releasing their single, \"Hooray! Hooray! It's a Holi-Holiday!\", Boney M. had had seven consecutive German #1 singles. \"Hooray! Hooray! It's a Holi-Holiday!\" was a big hit all over Europe. Nevertheless, \"Hooray! Hooray! It's a Holi-Holiday!\" broke Boney M's streak of consecutive German #1 singles. A song that peaks below #1 on the german charts is also a song that is not the #1 single", "question": "Based on the above information, is the following statement true, false, or uncertain? \"Hooray! Hooray! It's a Holi-Holiday!\" peaked below #1 on the German charts.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_260", "context": "Before releasing their single, \"Hooray! Hooray! It's a Holi-Holiday!\", Boney M. had had seven consecutive German #1 singles. \"Hooray! Hooray! It's a Holi-Holiday!\" was a big hit all over Europe. Nevertheless, \"Hooray! Hooray! It's a Holi-Holiday!\" broke Boney M's streak of consecutive German #1 singles. A song that peaks below #1 on the german charts is also a song that is not the #1 single", "question": "Based on the above information, is the following statement true, false, or uncertain? \"Hooray! Hooray! It's a Holi-Holiday!\" peaked at #3 on the UK charts.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_261", "context": "Every chef can cook. Some people who aren’t chefs can cook. People who cook can make scrambled eggs and pasta. If someone can make cookies and muffins, they are a baker. Bakers who can also make scrambled eggs can make a good breakfast. Luke can make cookies, scrambled eggs, and muffins, but not pasta.", "question": "Based on the above information, is the following statement true, false, or uncertain? Luke can make a good breakfast.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_262", "context": "Every chef can cook. Some people who aren’t chefs can cook. People who cook can make scrambled eggs and pasta. If someone can make cookies and muffins, they are a baker. Bakers who can also make scrambled eggs can make a good breakfast. Luke can make cookies, scrambled eggs, and muffins, but not pasta.", "question": "Based on the above information, is the following statement true, false, or uncertain? Luke is a chef.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_263", "context": "ETS develops various standardized tests primarily in the United States for K-12 and higher education. ETS administers international tests including the TOEFL, TOEIC, GRE and subject tests in more than 180 countries. Many of the assessments ETS develops are associated with entry to the US tertiary and quaternary education institutions. ETS also develops K-12 statewide assessments used for accountability testing in many states.", "question": "Based on the above information, is the following statement true, false, or uncertain? ETS develops assessments for K-12 statewide as well as entry to US tertiary and quaternary education institutions.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_264", "context": "ETS develops various standardized tests primarily in the United States for K-12 and higher education. ETS administers international tests including the TOEFL, TOEIC, GRE and subject tests in more than 180 countries. Many of the assessments ETS develops are associated with entry to the US tertiary and quaternary education institutions. ETS also develops K-12 statewide assessments used for accountability testing in many states.", "question": "Based on the above information, is the following statement true, false, or uncertain? ETS doesn't administer tests internationally.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_265", "context": "ETS develops various standardized tests primarily in the United States for K-12 and higher education. ETS administers international tests including the TOEFL, TOEIC, GRE and subject tests in more than 180 countries. Many of the assessments ETS develops are associated with entry to the US tertiary and quaternary education institutions. ETS also develops K-12 statewide assessments used for accountability testing in many states.", "question": "Based on the above information, is the following statement true, false, or uncertain? ETS administers international tests including the TOEFL, GRE and subject tests in China.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_266", "context": "All people who enjoy eating gelato ice cream would enjoy a vacation to Italy. There are no people who can resist the hallmark delectable drinks and desserts that are famed in Italy. People either enjoy eating gelato ice cream or love to travel and vacation often. If people often take study abroad semesters to Europe, then they do not regret their college experiences. If people love to travel and vacation often, then they often take study abroad semesters to Europe. Robert either enjoys eating gelato ice cream and loves to travel and vacation often, or he neither enjoys eating gelato ice cream nor loves to travel and vacation often.", "question": "Based on the above information, is the following statement true, false, or uncertain? Robert can resist the hallmark delectable drinks and desserts that are famed in Italy.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_267", "context": "All people who enjoy eating gelato ice cream would enjoy a vacation to Italy. There are no people who can resist the hallmark delectable drinks and desserts that are famed in Italy. People either enjoy eating gelato ice cream or love to travel and vacation often. If people often take study abroad semesters to Europe, then they do not regret their college experiences. If people love to travel and vacation often, then they often take study abroad semesters to Europe. Robert either enjoys eating gelato ice cream and loves to travel and vacation often, or he neither enjoys eating gelato ice cream nor loves to travel and vacation often.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Robert either would both enjoy a vacation to Italy and regrets his college experiences or neither would enjoy a vacation to Italy nor regrets his college experiences, then Robert would either enjoy a vacation to Italy or, if not, then he can resist the hallmark delectable drinks and desserts that are famed in Italy.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_268", "context": "All people who enjoy eating gelato ice cream would enjoy a vacation to Italy. There are no people who can resist the hallmark delectable drinks and desserts that are famed in Italy. People either enjoy eating gelato ice cream or love to travel and vacation often. If people often take study abroad semesters to Europe, then they do not regret their college experiences. If people love to travel and vacation often, then they often take study abroad semesters to Europe. Robert either enjoys eating gelato ice cream and loves to travel and vacation often, or he neither enjoys eating gelato ice cream nor loves to travel and vacation often.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Robert is not both a person who can resist the hallmark delectable drinks and desserts that are famed in Italy and regrets his college experiences, then Robert either enjoys eating gelato ice cream or would enjoy a vacation to Italy.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_269", "context": "To get a student visa, you must be full-time enrolled in an academic program. Those who are full-time enrolled in an academic program can not work full-time. Everyone who wants to study abroad needs to have a student visa. All PhD graduates can work full time. If Tom does not want to study abroad, he is full-time enrolled in an educational program.", "question": "Based on the above information, is the following statement true, false, or uncertain? Tom is a PhD graduate.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_270", "context": "To get a student visa, you must be full-time enrolled in an academic program. Those who are full-time enrolled in an academic program can not work full-time. Everyone who wants to study abroad needs to have a student visa. All PhD graduates can work full time. If Tom does not want to study abroad, he is full-time enrolled in an educational program.", "question": "Based on the above information, is the following statement true, false, or uncertain? Tom is not a PhD graduate.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_271", "context": "To get a student visa, you must be full-time enrolled in an academic program. Those who are full-time enrolled in an academic program can not work full-time. Everyone who wants to study abroad needs to have a student visa. All PhD graduates can work full time. If Tom does not want to study abroad, he is full-time enrolled in an educational program.", "question": "Based on the above information, is the following statement true, false, or uncertain? Tom wants to study abroad.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_272", "context": "The installment sales method is the approach to recognize revenue under the US GAAP. In accrual accounting, revenues are recognized when they are realized. In cash accounting, revenues are recognized when cash is received. The US GAAP is the accounting standard developed and used by the US Securities and Exchange Commission. Sally works for the US Securities and Exchange Commission.", "question": "Based on the above information, is the following statement true, false, or uncertain? Sally's company utilizes the installment sales method.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_273", "context": "The installment sales method is the approach to recognize revenue under the US GAAP. In accrual accounting, revenues are recognized when they are realized. In cash accounting, revenues are recognized when cash is received. The US GAAP is the accounting standard developed and used by the US Securities and Exchange Commission. Sally works for the US Securities and Exchange Commission.", "question": "Based on the above information, is the following statement true, false, or uncertain? The company Sally works for performs accrual accounting.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_274", "context": "The installment sales method is the approach to recognize revenue under the US GAAP. In accrual accounting, revenues are recognized when they are realized. In cash accounting, revenues are recognized when cash is received. The US GAAP is the accounting standard developed and used by the US Securities and Exchange Commission. Sally works for the US Securities and Exchange Commission.", "question": "Based on the above information, is the following statement true, false, or uncertain? Sally does not work for a company that uses the GAAP.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_275", "context": "All people who are respected by others are people who contribute to the country. If a person is respected by others, then he/she contributes to the country. All people available to have a visit without any fees are those respected by others. All Customers who once served in the army are available to have a visit without any fees. All people who once were sentenced for thief stayed in prison for some time. All people who once stayed in prison for some time have a bad record in the local state. James was either once sentenced for thief or stayed in prison for some time. James is either with a bad record in the local state or respected by others.", "question": "Based on the above information, is the following statement true, false, or uncertain? James contributes to the country.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_276", "context": "All people who are respected by others are people who contribute to the country. If a person is respected by others, then he/she contributes to the country. All people available to have a visit without any fees are those respected by others. All Customers who once served in the army are available to have a visit without any fees. All people who once were sentenced for thief stayed in prison for some time. All people who once stayed in prison for some time have a bad record in the local state. James was either once sentenced for thief or stayed in prison for some time. James is either with a bad record in the local state or respected by others.", "question": "Based on the above information, is the following statement true, false, or uncertain? James does not contribute to the country.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_277", "context": "All people who are respected by others are people who contribute to the country. If a person is respected by others, then he/she contributes to the country. All people available to have a visit without any fees are those respected by others. All Customers who once served in the army are available to have a visit without any fees. All people who once were sentenced for thief stayed in prison for some time. All people who once stayed in prison for some time have a bad record in the local state. James was either once sentenced for thief or stayed in prison for some time. James is either with a bad record in the local state or respected by others.", "question": "Based on the above information, is the following statement true, false, or uncertain? James contributes to the country, and he once served in the army.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_278", "context": "All people who are respected by others are people who contribute to the country. If a person is respected by others, then he/she contributes to the country. All people available to have a visit without any fees are those respected by others. All Customers who once served in the army are available to have a visit without any fees. All people who once were sentenced for thief stayed in prison for some time. All people who once stayed in prison for some time have a bad record in the local state. James was either once sentenced for thief or stayed in prison for some time. James is either with a bad record in the local state or respected by others.", "question": "Based on the above information, is the following statement true, false, or uncertain? James did not contribute to the country and did not serve in the army.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_279", "context": "The Croton River watershed is the drainage basin of the Croton River. The Croton River is in southwestern New York. Water from the Croton River watershed flows to the Bronx. The Bronx is in New York.", "question": "Based on the above information, is the following statement true, false, or uncertain? Water from the Croton River watershed flows to somewhere in New York.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_280", "context": "The Croton River watershed is the drainage basin of the Croton River. The Croton River is in southwestern New York. Water from the Croton River watershed flows to the Bronx. The Bronx is in New York.", "question": "Based on the above information, is the following statement true, false, or uncertain? The Croton River watershed is in the Bronx.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_281", "context": "The Croton River watershed is the drainage basin of the Croton River. The Croton River is in southwestern New York. Water from the Croton River watershed flows to the Bronx. The Bronx is in New York.", "question": "Based on the above information, is the following statement true, false, or uncertain? Water from the Croton River flows to the Bronx.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_282", "context": "All nuclear-powered submarines are warships. No nuclear-powered submarines are commercial vessels.", "question": "Based on the above information, is the following statement true, false, or uncertain? Some warships are commercial vessels.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_283", "context": "If a album is written by a rock band, then the genre of the album is rock. If a band writes a album winning an award, then this band wins this award. Trouble at the Henhouse is an album by The Tragically Hip. The Tragically Hip is a Canadian rock band. The song \"Butts Wigglin'\" is in Trouble at the Henhouse. Trouble at the Henhouse won the Album of the Year award. A song in Trouble at the Henhouse appeared in a film.", "question": "Based on the above information, is the following statement true, false, or uncertain? The genre of Trouble at the Henhouse is rock.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_284", "context": "If a album is written by a rock band, then the genre of the album is rock. If a band writes a album winning an award, then this band wins this award. Trouble at the Henhouse is an album by The Tragically Hip. The Tragically Hip is a Canadian rock band. The song \"Butts Wigglin'\" is in Trouble at the Henhouse. Trouble at the Henhouse won the Album of the Year award. A song in Trouble at the Henhouse appeared in a film.", "question": "Based on the above information, is the following statement true, false, or uncertain? A canada rock band didn't win the Album of the Year award.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_285", "context": "If a album is written by a rock band, then the genre of the album is rock. If a band writes a album winning an award, then this band wins this award. Trouble at the Henhouse is an album by The Tragically Hip. The Tragically Hip is a Canadian rock band. The song \"Butts Wigglin'\" is in Trouble at the Henhouse. Trouble at the Henhouse won the Album of the Year award. A song in Trouble at the Henhouse appeared in a film.", "question": "Based on the above information, is the following statement true, false, or uncertain? \"Butts Wigglin'\" appeared in a film.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_286", "context": "Daniel is a software engineer and he works at Palantir Technologies. Daniel studied bioengineering during his undergraduate at Rice University. Daniel’s older sister works at Meta as a technical sourcer. Daniel’s dad and older sister both graduated from Stanford University. Daniel’s dad is a doctor practicing internal medicine at a veteran’s hospital in Minneapolis", "question": "Based on the above information, is the following statement true, false, or uncertain? Daniel once applied to Stanford University, but he couldn’t get in even though he has family members who are Stanford alumni.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_287", "context": "Daniel is a software engineer and he works at Palantir Technologies. Daniel studied bioengineering during his undergraduate at Rice University. Daniel’s older sister works at Meta as a technical sourcer. Daniel’s dad and older sister both graduated from Stanford University. Daniel’s dad is a doctor practicing internal medicine at a veteran’s hospital in Minneapolis", "question": "Based on the above information, is the following statement true, false, or uncertain? Daniel studied bioengineering as his major at Rice University.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_288", "context": "Daniel is a software engineer and he works at Palantir Technologies. Daniel studied bioengineering during his undergraduate at Rice University. Daniel’s older sister works at Meta as a technical sourcer. Daniel’s dad and older sister both graduated from Stanford University. Daniel’s dad is a doctor practicing internal medicine at a veteran’s hospital in Minneapolis", "question": "Based on the above information, is the following statement true, false, or uncertain? Daniel and his sister grew up in Minneapolis, Minnesota.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_289", "context": "All commerical aircraft are produced by either Boeing or Airbus. All American Airlines jets are commerical aircraft. Airbus made more in revenue than Boeing last year.", "question": "Based on the above information, is the following statement true, false, or uncertain? An American Airlines plane is either a Boeing or Airbus plane.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_290", "context": "All commerical aircraft are produced by either Boeing or Airbus. All American Airlines jets are commerical aircraft. Airbus made more in revenue than Boeing last year.", "question": "Based on the above information, is the following statement true, false, or uncertain? There exists a SpaceX commerical aircraft.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_291", "context": "All commerical aircraft are produced by either Boeing or Airbus. All American Airlines jets are commerical aircraft. Airbus made more in revenue than Boeing last year.", "question": "Based on the above information, is the following statement true, false, or uncertain? There does not exist a United Airlines plane produced by Boeing.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_292", "context": "All commerical aircraft are produced by either Boeing or Airbus. All American Airlines jets are commerical aircraft. Airbus made more in revenue than Boeing last year.", "question": "Based on the above information, is the following statement true, false, or uncertain? There is a commercial plane made by both Airbus and Boeing.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_293", "context": "Luzon is an island in the Philippines. In December 1999, an earthquake struck Luzon. People died in the December 1999 earthquake in Luzon.", "question": "Based on the above information, is the following statement true, false, or uncertain? Leyte is an island in the Philippines.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_294", "context": "Luzon is an island in the Philippines. In December 1999, an earthquake struck Luzon. People died in the December 1999 earthquake in Luzon.", "question": "Based on the above information, is the following statement true, false, or uncertain? No one has ever died of an earthquake that struck in the Philippines.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_295", "context": "Luzon is an island in the Philippines. In December 1999, an earthquake struck Luzon. People died in the December 1999 earthquake in Luzon.", "question": "Based on the above information, is the following statement true, false, or uncertain? In 1999, there was at least one earthquake in the Philippines.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_296", "context": "People either invest in the public stock market regularly or enjoy gambling regularly. If people invest in the public stock market regularly, then they read the Wall Street Journal and other newspapers regularly to keep updated on financial metrics. All people who enjoy gambling regularly spend a lot of money at casinos and other betting games. People who spend a lot of money at casinos and other betting games visit the Las Vegas Strip regularly. People who spend a lot of money at casinos and other betting games have a lot of disposable income to spend. If Matt invests in the public stock market regularly, then Matt neither has a lot of disposable income to spend nor invests in the public stock market regularly.", "question": "Based on the above information, is the following statement true, false, or uncertain? Matt reads the Wall Street Journal and other newspapers regularly to keep updated on financial metrics.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_297", "context": "People either invest in the public stock market regularly or enjoy gambling regularly. If people invest in the public stock market regularly, then they read the Wall Street Journal and other newspapers regularly to keep updated on financial metrics. All people who enjoy gambling regularly spend a lot of money at casinos and other betting games. People who spend a lot of money at casinos and other betting games visit the Las Vegas Strip regularly. People who spend a lot of money at casinos and other betting games have a lot of disposable income to spend. If Matt invests in the public stock market regularly, then Matt neither has a lot of disposable income to spend nor invests in the public stock market regularly.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Matt is either both a person who has a lot of disposable income to spend and invests in the public stock market regularly, or neither has a lot of disposable income to spend nor invests in the public stock market regularly, then Matt neither visits the Las Vegas Strip regularly nor reads the Wall Street Journal and other newspapers regularly to keep updated on the financial metrics.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_298", "context": "People either invest in the public stock market regularly or enjoy gambling regularly. If people invest in the public stock market regularly, then they read the Wall Street Journal and other newspapers regularly to keep updated on financial metrics. All people who enjoy gambling regularly spend a lot of money at casinos and other betting games. People who spend a lot of money at casinos and other betting games visit the Las Vegas Strip regularly. People who spend a lot of money at casinos and other betting games have a lot of disposable income to spend. If Matt invests in the public stock market regularly, then Matt neither has a lot of disposable income to spend nor invests in the public stock market regularly.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Matt is either a person who has a lot of disposable income to spend or reads the Wall Street Journal and other newspapers regularly, then Matt neither has a lot of disposable income to spend nor visits the Las Vegas Strip Regularly.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_299", "context": "All students learning piano can strike the right notes. All students who can strike the right note can get the rhythms right. If a student can get the rhythms right, he will start working on coordination between the left and the right hands. Some students who start working on coordination between the left and the right hands become good at it. The other students find it challenging. If John can strike the right notes, get the rhythms right and is good at coordination between right and left hands, then he puts emotions into his playing. John is a student learning piano. John does not find coordination between the left and the right hands challenging.", "question": "Based on the above information, is the following statement true, false, or uncertain? John can get the rhythms right.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_300", "context": "All students learning piano can strike the right notes. All students who can strike the right note can get the rhythms right. If a student can get the rhythms right, he will start working on coordination between the left and the right hands. Some students who start working on coordination between the left and the right hands become good at it. The other students find it challenging. If John can strike the right notes, get the rhythms right and is good at coordination between right and left hands, then he puts emotions into his playing. John is a student learning piano. John does not find coordination between the left and the right hands challenging.", "question": "Based on the above information, is the following statement true, false, or uncertain? John does not put emotions into his playing.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_301", "context": "Barbara Ann Marshall is a former swimmer and former world record-holder. Barbara Ann Marshall participated in the 1972 Summer Olympics. Barbara Ann Marshall's home country is the United States. All people who compete in the 1972 Summer Olympics represent their home country. Barbara Ann Marshall participated in the preliminary heat in the freestyle relay. Barbara Ann Marshall did not participate in the event final of the 1972 Summer Olympics freestyle relay. Only relay swimmers who participated in the event final received medals.", "question": "Based on the above information, is the following statement true, false, or uncertain? Barbara Ann Marshall did not receive medals.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_302", "context": "Barbara Ann Marshall is a former swimmer and former world record-holder. Barbara Ann Marshall participated in the 1972 Summer Olympics. Barbara Ann Marshall's home country is the United States. All people who compete in the 1972 Summer Olympics represent their home country. Barbara Ann Marshall participated in the preliminary heat in the freestyle relay. Barbara Ann Marshall did not participate in the event final of the 1972 Summer Olympics freestyle relay. Only relay swimmers who participated in the event final received medals.", "question": "Based on the above information, is the following statement true, false, or uncertain? Barbara Ann Marshall represented the United States in the 1972 Summer Olympics.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_303", "context": "A game is played with three stages: red stage, yellow stage, and green stage. Each player begins at the red stage. All players must reach the yellow stage before they can reach the green stage. The yellow stage comes after the red stage. All players must proceed one stage at a time.", "question": "Based on the above information, is the following statement true, false, or uncertain? It is possible to move to the green stage without ever reaching the yellow stage.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_304", "context": "A game is played with three stages: red stage, yellow stage, and green stage. Each player begins at the red stage. All players must reach the yellow stage before they can reach the green stage. The yellow stage comes after the red stage. All players must proceed one stage at a time.", "question": "Based on the above information, is the following statement true, false, or uncertain? It is possible to reach the yellow stage without ever reaching the green stage.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_305", "context": "A game is played with three stages: red stage, yellow stage, and green stage. Each player begins at the red stage. All players must reach the yellow stage before they can reach the green stage. The yellow stage comes after the red stage. All players must proceed one stage at a time.", "question": "Based on the above information, is the following statement true, false, or uncertain? It is possible to complete the game without ever reaching the green stage.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_306", "context": "People either value physical touch as an especially important love language or value words of affirmation as an especially important love language. If a person values physical touch as an especially important love language, then they are good with pets. No people that are good with pets are scared of animals. People are either scared of animals or love animals. Adam is either a person who values physical touch as an especially important love language or a person who loves animals.", "question": "Based on the above information, is the following statement true, false, or uncertain? Adam is scared of animals.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_307", "context": "People either value physical touch as an especially important love language or value words of affirmation as an especially important love language. If a person values physical touch as an especially important love language, then they are good with pets. No people that are good with pets are scared of animals. People are either scared of animals or love animals. Adam is either a person who values physical touch as an especially important love language or a person who loves animals.", "question": "Based on the above information, is the following statement true, false, or uncertain? Adam values words of affirmation as an especially important love language.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_308", "context": "People either value physical touch as an especially important love language or value words of affirmation as an especially important love language. If a person values physical touch as an especially important love language, then they are good with pets. No people that are good with pets are scared of animals. People are either scared of animals or love animals. Adam is either a person who values physical touch as an especially important love language or a person who loves animals.", "question": "Based on the above information, is the following statement true, false, or uncertain? Adam values physical touch as an especially important love language and values words of affirmation as an especially important love language.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_309", "context": "People either value physical touch as an especially important love language or value words of affirmation as an especially important love language. If a person values physical touch as an especially important love language, then they are good with pets. No people that are good with pets are scared of animals. People are either scared of animals or love animals. Adam is either a person who values physical touch as an especially important love language or a person who loves animals.", "question": "Based on the above information, is the following statement true, false, or uncertain? Adam either values physical touch as an especially important love language or values words of affirmation as an especially important love language.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_310", "context": "People either value physical touch as an especially important love language or value words of affirmation as an especially important love language. If a person values physical touch as an especially important love language, then they are good with pets. No people that are good with pets are scared of animals. People are either scared of animals or love animals. Adam is either a person who values physical touch as an especially important love language or a person who loves animals.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Adam values physical touch as an especially important love language or is good with pets, then Adam values words of affirmation as an especially important love language.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_311", "context": "All birds have wings. No animal with wings is a reptile. Some animals that fly are birds. If something is an iguana, then it is a reptile. John is neither an iguana nor a bird.", "question": "Based on the above information, is the following statement true, false, or uncertain? John is a reptile.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_312", "context": "All birds have wings. No animal with wings is a reptile. Some animals that fly are birds. If something is an iguana, then it is a reptile. John is neither an iguana nor a bird.", "question": "Based on the above information, is the following statement true, false, or uncertain? John is not an iguana and an animal that can fly.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_313", "context": "All birds have wings. No animal with wings is a reptile. Some animals that fly are birds. If something is an iguana, then it is a reptile. John is neither an iguana nor a bird.", "question": "Based on the above information, is the following statement true, false, or uncertain? John is an animal that can fly and a bird.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_314", "context": "EndGame is a movie released in 2006. EndGame was set in Washington. EndGame was filmed outside of Washington. Some movies are filmed in New York. Andy Chang directed EndGame. Andy Chang is from Hong Kong.", "question": "Based on the above information, is the following statement true, false, or uncertain? EndGame was filmed in New York.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_315", "context": "EndGame is a movie released in 2006. EndGame was set in Washington. EndGame was filmed outside of Washington. Some movies are filmed in New York. Andy Chang directed EndGame. Andy Chang is from Hong Kong.", "question": "Based on the above information, is the following statement true, false, or uncertain? EndGame was not directed by someone from Hong Kong.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_316", "context": "EndGame is a movie released in 2006. EndGame was set in Washington. EndGame was filmed outside of Washington. Some movies are filmed in New York. Andy Chang directed EndGame. Andy Chang is from Hong Kong.", "question": "Based on the above information, is the following statement true, false, or uncertain? All of Andy Chang's movies are filmed outside of Washington.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_317", "context": "Six, seven and eight are real numbers. If a real number equals another real number adding one, the first number is larger. If the number x is larger than number y, then y is not larger than x. Seven equals six plus one. Eight equals seven plus one. Two is positive. If a number is positive, then the double of it is also positive. Eight is the double of four. Four is the double of two.", "question": "Based on the above information, is the following statement true, false, or uncertain? Eight is larger than seven.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_318", "context": "Six, seven and eight are real numbers. If a real number equals another real number adding one, the first number is larger. If the number x is larger than number y, then y is not larger than x. Seven equals six plus one. Eight equals seven plus one. Two is positive. If a number is positive, then the double of it is also positive. Eight is the double of four. Four is the double of two.", "question": "Based on the above information, is the following statement true, false, or uncertain? Eight is positive.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_319", "context": "Six, seven and eight are real numbers. If a real number equals another real number adding one, the first number is larger. If the number x is larger than number y, then y is not larger than x. Seven equals six plus one. Eight equals seven plus one. Two is positive. If a number is positive, then the double of it is also positive. Eight is the double of four. Four is the double of two.", "question": "Based on the above information, is the following statement true, false, or uncertain? Six is larger than seven.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_320", "context": "A dog never tells the truth. Some poker players are dogs.", "question": "Based on the above information, is the following statement true, false, or uncertain? Some poker players never tell the truth.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_321", "context": "All Asians are human. All Chinese are Asian. A man is either Chinese or British. All British are European. All Spanish are European. No Indian is European. Jessee is either both an Indian and a human, or neither an Indian nor a human.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jesse is Chinese.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_322", "context": "All Asians are human. All Chinese are Asian. A man is either Chinese or British. All British are European. All Spanish are European. No Indian is European. Jessee is either both an Indian and a human, or neither an Indian nor a human.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jesse is not Chinese.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_323", "context": "All Asians are human. All Chinese are Asian. A man is either Chinese or British. All British are European. All Spanish are European. No Indian is European. Jessee is either both an Indian and a human, or neither an Indian nor a human.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Jesse is either an Indian or a Spanish, then Jesse is either both British and European, or neither British nor European.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_324", "context": "No people who never admit a mistake are good teachers. Some well-informed people are people who never admit a mistake.", "question": "Based on the above information, is the following statement true, false, or uncertain? Some good teachers are not well-informed people.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_325", "context": "Philatelic literature is divided into the following categories: Stamp catalogues, Periodicals, Auction catalogues, Books, Bibliographies, and Background Material Mort is not a Stamp catalogue. Mort is not a periodical, auction catalogue, bibliography, or background material. Mort is a piece of Philatelic literature.", "question": "Based on the above information, is the following statement true, false, or uncertain? Mort is a book", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_326", "context": "Philatelic literature is divided into the following categories: Stamp catalogues, Periodicals, Auction catalogues, Books, Bibliographies, and Background Material Mort is not a Stamp catalogue. Mort is not a periodical, auction catalogue, bibliography, or background material. Mort is a piece of Philatelic literature.", "question": "Based on the above information, is the following statement true, false, or uncertain? Mort is background material.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_327", "context": "Philatelic literature is divided into the following categories: Stamp catalogues, Periodicals, Auction catalogues, Books, Bibliographies, and Background Material Mort is not a Stamp catalogue. Mort is not a periodical, auction catalogue, bibliography, or background material. Mort is a piece of Philatelic literature.", "question": "Based on the above information, is the following statement true, false, or uncertain? Eragon is a piece of Philatelic literature.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_328", "context": "Adventures of Rusty is a drama film and children's film. Columbia Pictures produced Adventures of Rusty Tintin was produced by Paramount. Tintin is an adventure film.", "question": "Based on the above information, is the following statement true, false, or uncertain? Columbia pictures produces drama films.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_329", "context": "Adventures of Rusty is a drama film and children's film. Columbia Pictures produced Adventures of Rusty Tintin was produced by Paramount. Tintin is an adventure film.", "question": "Based on the above information, is the following statement true, false, or uncertain? Columbia pictures produces adventure films.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_330", "context": "Adventures of Rusty is a drama film and children's film. Columbia Pictures produced Adventures of Rusty Tintin was produced by Paramount. Tintin is an adventure film.", "question": "Based on the above information, is the following statement true, false, or uncertain? Paramount produces children's films.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_331", "context": "Adventures of Rusty is a drama film and children's film. Columbia Pictures produced Adventures of Rusty Tintin was produced by Paramount. Tintin is an adventure film.", "question": "Based on the above information, is the following statement true, false, or uncertain? Paramount produces adventure films.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_332", "context": "Deng Xiaoping served as the paramount leader of the People's Republic of China (PRC). Deng Xiaoping was praised for his reaffirmation of the reform program in his Southern Tour of 1992 as well as the reversion of Hong Kong to Chinese control in 1997 and the return of Macau in 1999. As the party's Secretary-General under Mao and Vice Premier in he 1950s, Deng Xiaoping presided over the Anti-Rightist Campaign launched by Mao. Deng Xiaoping became instrumental in China's economic reconstruction following the disastrous Great Leap Forward (1958–1960). Mao Zedong died in 1976. After Mao Zedong's death, Deng Xiaoping gradually rose to supreme power.", "question": "Based on the above information, is the following statement true, false, or uncertain? The paramount leader of the PRC was also the vice premier.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_333", "context": "Deng Xiaoping served as the paramount leader of the People's Republic of China (PRC). Deng Xiaoping was praised for his reaffirmation of the reform program in his Southern Tour of 1992 as well as the reversion of Hong Kong to Chinese control in 1997 and the return of Macau in 1999. As the party's Secretary-General under Mao and Vice Premier in he 1950s, Deng Xiaoping presided over the Anti-Rightist Campaign launched by Mao. Deng Xiaoping became instrumental in China's economic reconstruction following the disastrous Great Leap Forward (1958–1960). Mao Zedong died in 1976. After Mao Zedong's death, Deng Xiaoping gradually rose to supreme power.", "question": "Based on the above information, is the following statement true, false, or uncertain? Deng Xiaoping presided over something launched by someone he was under.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_334", "context": "Deng Xiaoping served as the paramount leader of the People's Republic of China (PRC). Deng Xiaoping was praised for his reaffirmation of the reform program in his Southern Tour of 1992 as well as the reversion of Hong Kong to Chinese control in 1997 and the return of Macau in 1999. As the party's Secretary-General under Mao and Vice Premier in he 1950s, Deng Xiaoping presided over the Anti-Rightist Campaign launched by Mao. Deng Xiaoping became instrumental in China's economic reconstruction following the disastrous Great Leap Forward (1958–1960). Mao Zedong died in 1976. After Mao Zedong's death, Deng Xiaoping gradually rose to supreme power.", "question": "Based on the above information, is the following statement true, false, or uncertain? The person instrumental in china's economic reconstruction gradually rose to supreme power.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_335", "context": "All imaginative processes are produced in human brains. All science-fiction is from an imaginative process. Either science-fiction or fact. No facts are proven to be false. Dune is a science-fiction or proven to be false.", "question": "Based on the above information, is the following statement true, false, or uncertain? Dune is a fact.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_336", "context": "All imaginative processes are produced in human brains. All science-fiction is from an imaginative process. Either science-fiction or fact. No facts are proven to be false. Dune is a science-fiction or proven to be false.", "question": "Based on the above information, is the following statement true, false, or uncertain? Dune is produced in human brains and is an imaginative process.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_337", "context": "All imaginative processes are produced in human brains. All science-fiction is from an imaginative process. Either science-fiction or fact. No facts are proven to be false. Dune is a science-fiction or proven to be false.", "question": "Based on the above information, is the following statement true, false, or uncertain? Dune is either produced in human brains or an imaginative process.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_338", "context": "All imaginative processes are produced in human brains. All science-fiction is from an imaginative process. Either science-fiction or fact. No facts are proven to be false. Dune is a science-fiction or proven to be false.", "question": "Based on the above information, is the following statement true, false, or uncertain? Dune is produced in human brains and is science fiction.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_339", "context": "All imaginative processes are produced in human brains. All science-fiction is from an imaginative process. Either science-fiction or fact. No facts are proven to be false. Dune is a science-fiction or proven to be false.", "question": "Based on the above information, is the following statement true, false, or uncertain? Dune is either produced in human brains or science-fiction.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_340", "context": "All imaginative processes are produced in human brains. All science-fiction is from an imaginative process. Either science-fiction or fact. No facts are proven to be false. Dune is a science-fiction or proven to be false.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Dune is produced in human brains and is an imaginative process, then Dune is not produced in human brains and science-fiction.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_341", "context": "All imaginative processes are produced in human brains. All science-fiction is from an imaginative process. Either science-fiction or fact. No facts are proven to be false. Dune is a science-fiction or proven to be false.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Dune is either a fact and produced in human brains, or neither a fact nor produced in human brains, then Dune is produced in human brains and science-fiction.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_342", "context": "All imaginative processes are produced in human brains. All science-fiction is from an imaginative process. Either science-fiction or fact. No facts are proven to be false. Dune is a science-fiction or proven to be false.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Dune is science-fiction, then Dune is not produced in human brains and science-fiction.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_343", "context": "All imaginative processes are produced in human brains. All science-fiction is from an imaginative process. Either science-fiction or fact. No facts are proven to be false. Dune is a science-fiction or proven to be false.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Dune is not produced in human brains and science-fiction, then Dune is neither an imaginative process nor proved to be false.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_344", "context": "All imaginative processes are produced in human brains. All science-fiction is from an imaginative process. Either science-fiction or fact. No facts are proven to be false. Dune is a science-fiction or proven to be false.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Dune is not an imaginative process and science-fiction, then Dune is neither produced in human brains nor an imaginative process.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_345", "context": "An American superhero comes from either DC universe or Marvel universe. Captain America is a superhero. Captain America is an American. Captain America does not come from DC universe. If a superhero is American, he speaks English. A superhero speaks English or Spanish.", "question": "Based on the above information, is the following statement true, false, or uncertain? Captain America does not speak English.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_346", "context": "An American superhero comes from either DC universe or Marvel universe. Captain America is a superhero. Captain America is an American. Captain America does not come from DC universe. If a superhero is American, he speaks English. A superhero speaks English or Spanish.", "question": "Based on the above information, is the following statement true, false, or uncertain? Captain America comes from Marvel universe.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_347", "context": "An American superhero comes from either DC universe or Marvel universe. Captain America is a superhero. Captain America is an American. Captain America does not come from DC universe. If a superhero is American, he speaks English. A superhero speaks English or Spanish.", "question": "Based on the above information, is the following statement true, false, or uncertain? Captain America speaks Spanish.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_348", "context": "Robert Zimmer was born in Germany. Robert Zimmer is an essayist. Robert Zimmer was born in 1953. Every essayist is a writer. Every person born in Germany is German.", "question": "Based on the above information, is the following statement true, false, or uncertain? Robert Zimmer is German.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_349", "context": "Robert Zimmer was born in Germany. Robert Zimmer is an essayist. Robert Zimmer was born in 1953. Every essayist is a writer. Every person born in Germany is German.", "question": "Based on the above information, is the following statement true, false, or uncertain? Robert Zimmer is not a writer.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_350", "context": "Robert Zimmer was born in Germany. Robert Zimmer is an essayist. Robert Zimmer was born in 1953. Every essayist is a writer. Every person born in Germany is German.", "question": "Based on the above information, is the following statement true, false, or uncertain? Robert Zimmer is a biographer.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_351", "context": "All people who repay their loans on time have a high credit score. Some people with high credit scores and high salaries are approved for mortgages. John has a high salary.", "question": "Based on the above information, is the following statement true, false, or uncertain? If John repays his loans on time, he will be approved for a mortgage.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_352", "context": "All students are members of the university. All graduate students are students. All PhD students are graduate students. Some PhD students have high IQs. If John is not a PhD student, then he is not a member of the university. If John has a high IQ, then he is a PhD student or a graduate student.", "question": "Based on the above information, is the following statement true, false, or uncertain? John has a high IQ.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_353", "context": "All students are members of the university. All graduate students are students. All PhD students are graduate students. Some PhD students have high IQs. If John is not a PhD student, then he is not a member of the university. If John has a high IQ, then he is a PhD student or a graduate student.", "question": "Based on the above information, is the following statement true, false, or uncertain? John does not have a high IQ.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_354", "context": "All students are members of the university. All graduate students are students. All PhD students are graduate students. Some PhD students have high IQs. If John is not a PhD student, then he is not a member of the university. If John has a high IQ, then he is a PhD student or a graduate student.", "question": "Based on the above information, is the following statement true, false, or uncertain? John is a PhD student.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_355", "context": "Belgium, France and Germany are European countries. Paris is the capital of France. The Eiffel Tower is one of the main tourist attractions located in Paris. Some people who live in Belgium speak French. If John goes to Europe, he will see some tourist attractions. John speaks French.", "question": "Based on the above information, is the following statement true, false, or uncertain? If John goes to Europe, he will see the Eiffel Tower.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_356", "context": "Belgium, France and Germany are European countries. Paris is the capital of France. The Eiffel Tower is one of the main tourist attractions located in Paris. Some people who live in Belgium speak French. If John goes to Europe, he will see some tourist attractions. John speaks French.", "question": "Based on the above information, is the following statement true, false, or uncertain? The Eiffel Tower is located in the capital of France.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_357", "context": "Belgium, France and Germany are European countries. Paris is the capital of France. The Eiffel Tower is one of the main tourist attractions located in Paris. Some people who live in Belgium speak French. If John goes to Europe, he will see some tourist attractions. John speaks French.", "question": "Based on the above information, is the following statement true, false, or uncertain? John lives in Belgium.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_358", "context": "All sports cars are loud. No loud cars are electric. If a car is a Ferrari, then it is a sports car. All cars made in Maranello are Ferrari If Prius is neither a sports car nor a loud car, then Prius is a Maranello-made car or a loud car.", "question": "Based on the above information, is the following statement true, false, or uncertain? Prius is an electric car.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_359", "context": "All sports cars are loud. No loud cars are electric. If a car is a Ferrari, then it is a sports car. All cars made in Maranello are Ferrari If Prius is neither a sports car nor a loud car, then Prius is a Maranello-made car or a loud car.", "question": "Based on the above information, is the following statement true, false, or uncertain? Prius is not an electric car.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_360", "context": "All sports cars are loud. No loud cars are electric. If a car is a Ferrari, then it is a sports car. All cars made in Maranello are Ferrari If Prius is neither a sports car nor a loud car, then Prius is a Maranello-made car or a loud car.", "question": "Based on the above information, is the following statement true, false, or uncertain? Prius is a Maranello-made car.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_361", "context": "All sports cars are loud. No loud cars are electric. If a car is a Ferrari, then it is a sports car. All cars made in Maranello are Ferrari If Prius is neither a sports car nor a loud car, then Prius is a Maranello-made car or a loud car.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Prius is a Ferrari or a loud car, then Prius is an electric car.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_362", "context": "If something is a plant, then it is not a cute animal. All flowers are plants. Every kitten is a cute animal. If something is grown in a garden, then it is a flower. Piper is a kitten or a cute animal.", "question": "Based on the above information, is the following statement true, false, or uncertain? Piper was grown in a garden.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_363", "context": "If something is a plant, then it is not a cute animal. All flowers are plants. Every kitten is a cute animal. If something is grown in a garden, then it is a flower. Piper is a kitten or a cute animal.", "question": "Based on the above information, is the following statement true, false, or uncertain? Piper was not grown in a garden.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_364", "context": "If something is a plant, then it is not a cute animal. All flowers are plants. Every kitten is a cute animal. If something is grown in a garden, then it is a flower. Piper is a kitten or a cute animal.", "question": "Based on the above information, is the following statement true, false, or uncertain? Piper is a kitten.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_365", "context": "Guam has participated in the Winter Olympics. In 1988, the Winter Olympics were held in Calgary. Guam sent an athlete to the Calgary Winter Olympics. If Guan sent an athlete to the Calgary Winter Olympics, then it participated in the Calgary Winter Olympics. Judd Bankert is the only athlete from Guam who has ever competed in the Winter Olympics.", "question": "Based on the above information, is the following statement true, false, or uncertain? Judd Bankert competed in the 1992 Winter Olympics.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_366", "context": "Guam has participated in the Winter Olympics. In 1988, the Winter Olympics were held in Calgary. Guam sent an athlete to the Calgary Winter Olympics. If Guan sent an athlete to the Calgary Winter Olympics, then it participated in the Calgary Winter Olympics. Judd Bankert is the only athlete from Guam who has ever competed in the Winter Olympics.", "question": "Based on the above information, is the following statement true, false, or uncertain? Guam has participated in the Summer Olympics at least once.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_367", "context": "Michael O'Donnell is a British physician, journalist, author and broadcaster. One of the word-setters of My Word! was Michael O'Donnell. The magazine World Medicine was edited by Michael O'Donnell. Michael O'Donnell was born in Yorkshire as the son of a general practitioner.", "question": "Based on the above information, is the following statement true, false, or uncertain? The son of a general practitioner was a word-setter of My Word!.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_368", "context": "Michael O'Donnell is a British physician, journalist, author and broadcaster. One of the word-setters of My Word! was Michael O'Donnell. The magazine World Medicine was edited by Michael O'Donnell. Michael O'Donnell was born in Yorkshire as the son of a general practitioner.", "question": "Based on the above information, is the following statement true, false, or uncertain? World Medicine is not a magazine.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_369", "context": "Michael O'Donnell is a British physician, journalist, author and broadcaster. One of the word-setters of My Word! was Michael O'Donnell. The magazine World Medicine was edited by Michael O'Donnell. Michael O'Donnell was born in Yorkshire as the son of a general practitioner.", "question": "Based on the above information, is the following statement true, false, or uncertain? There are no British authors.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_370", "context": "Michael O'Donnell is a British physician, journalist, author and broadcaster. One of the word-setters of My Word! was Michael O'Donnell. The magazine World Medicine was edited by Michael O'Donnell. Michael O'Donnell was born in Yorkshire as the son of a general practitioner.", "question": "Based on the above information, is the following statement true, false, or uncertain? There are no journalists that were born in Yorkshire.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_371", "context": "Michael O'Donnell is a British physician, journalist, author and broadcaster. One of the word-setters of My Word! was Michael O'Donnell. The magazine World Medicine was edited by Michael O'Donnell. Michael O'Donnell was born in Yorkshire as the son of a general practitioner.", "question": "Based on the above information, is the following statement true, false, or uncertain? There is a son of a general practitioner that is not an author.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_372", "context": "No homework is fun. Some reading is homework.", "question": "Based on the above information, is the following statement true, false, or uncertain? Some reading is fun.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_373", "context": "If violence is good, it is justified. If something is justified, it is lawful.", "question": "Based on the above information, is the following statement true, false, or uncertain? If violence is good, it is lawful.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_374", "context": "All people who have a horse ranch regularly ride horses for pleasure and sport. All people who have a lot of disposable income have a horse ranch. If people compete in horse dressage shows, then they have a lot of disposable income. If people compete in horse dressage shows, then they have invested in high-quality equestrian gear and equipment. If people regularly ride horses for pleasure and sport, then they do not live in cramped residential buildings. Manny either has a horse ranch and lives in cramped residential buildings, or he neither has a horse ranch nor lives in cramped residential buildings.", "question": "Based on the above information, is the following statement true, false, or uncertain? Manny regularly rides horses for pleasure and sport.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_375", "context": "All people who have a horse ranch regularly ride horses for pleasure and sport. All people who have a lot of disposable income have a horse ranch. If people compete in horse dressage shows, then they have a lot of disposable income. If people compete in horse dressage shows, then they have invested in high-quality equestrian gear and equipment. If people regularly ride horses for pleasure and sport, then they do not live in cramped residential buildings. Manny either has a horse ranch and lives in cramped residential buildings, or he neither has a horse ranch nor lives in cramped residential buildings.", "question": "Based on the above information, is the following statement true, false, or uncertain? Manny competes in horse dressage shows and has invested in high-quality equestrian equipment and gear.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_376", "context": "All people who have a horse ranch regularly ride horses for pleasure and sport. All people who have a lot of disposable income have a horse ranch. If people compete in horse dressage shows, then they have a lot of disposable income. If people compete in horse dressage shows, then they have invested in high-quality equestrian gear and equipment. If people regularly ride horses for pleasure and sport, then they do not live in cramped residential buildings. Manny either has a horse ranch and lives in cramped residential buildings, or he neither has a horse ranch nor lives in cramped residential buildings.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Manny either has a horse ranch or competes in horse dressage shows, then Manny has not invested in high-quality equestrian equipment and gear.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_377", "context": "A roundel is a rounded artillery fortification. A roundel is not higher than adjacent walls. Cannons can be deployed on artillery fortifications. Roundels are the oldest artillery fortifications. Battery towers are an artillery fortification.", "question": "Based on the above information, is the following statement true, false, or uncertain? Cannons can be deployed on battery towers.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_378", "context": "A roundel is a rounded artillery fortification. A roundel is not higher than adjacent walls. Cannons can be deployed on artillery fortifications. Roundels are the oldest artillery fortifications. Battery towers are an artillery fortification.", "question": "Based on the above information, is the following statement true, false, or uncertain? Roundels are older than battery towers.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_379", "context": "A roundel is a rounded artillery fortification. A roundel is not higher than adjacent walls. Cannons can be deployed on artillery fortifications. Roundels are the oldest artillery fortifications. Battery towers are an artillery fortification.", "question": "Based on the above information, is the following statement true, false, or uncertain? Battery towers are higher than adjacent walls.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_380", "context": "A roundel is a rounded artillery fortification. A roundel is not higher than adjacent walls. Cannons can be deployed on artillery fortifications. Roundels are the oldest artillery fortifications. Battery towers are an artillery fortification.", "question": "Based on the above information, is the following statement true, false, or uncertain? Roundels can be deployed on roundels.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_381", "context": "All tissues are soft. Some papers are tissues.", "question": "Based on the above information, is the following statement true, false, or uncertain? Some papers are hard.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_382", "context": "All volunteers receive intangible benefits for their work. Volunteers work regularly or on an as-needed basis. Some volunteers are trained. Volunteers work in groups or individually. Environmental volunteers contribute toward environmental management or conservation. Participating in natural disaster response is an example of volunteers working in groups on an as-needed basis.", "question": "Based on the above information, is the following statement true, false, or uncertain? Volunteers who participate in natural disaster response receive intangible benefits for their work.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_383", "context": "All volunteers receive intangible benefits for their work. Volunteers work regularly or on an as-needed basis. Some volunteers are trained. Volunteers work in groups or individually. Environmental volunteers contribute toward environmental management or conservation. Participating in natural disaster response is an example of volunteers working in groups on an as-needed basis.", "question": "Based on the above information, is the following statement true, false, or uncertain? Environmental volunteers work in groups.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_384", "context": "All volunteers receive intangible benefits for their work. Volunteers work regularly or on an as-needed basis. Some volunteers are trained. Volunteers work in groups or individually. Environmental volunteers contribute toward environmental management or conservation. Participating in natural disaster response is an example of volunteers working in groups on an as-needed basis.", "question": "Based on the above information, is the following statement true, false, or uncertain? To be a volunteer, you must be trained.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_385", "context": "All people who are very consistent and enjoy sticking to their regular routines do not like surprises. If people wear flannel shirts every day, then they are very consistent and enjoy sticking to their regular routines. If people do not like shopping for clothes and other materialistic goods, then they wear flannel shirts every day. All old people living in stable homes do not like surprises. If people have very high energy and are impulsive, then they like surprises. If Mike is not a person who wears flannel shirts every day and has very high energy and is impulsive, then Mike either is very consistent and enjoys sticking to his regular routines or does not like surprises.", "question": "Based on the above information, is the following statement true, false, or uncertain? Mike is an old person living in a stable home.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_386", "context": "All people who are very consistent and enjoy sticking to their regular routines do not like surprises. If people wear flannel shirts every day, then they are very consistent and enjoy sticking to their regular routines. If people do not like shopping for clothes and other materialistic goods, then they wear flannel shirts every day. All old people living in stable homes do not like surprises. If people have very high energy and are impulsive, then they like surprises. If Mike is not a person who wears flannel shirts every day and has very high energy and is impulsive, then Mike either is very consistent and enjoys sticking to his regular routines or does not like surprises.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Mike wears flannel shirts every day or does not like shopping for clothes and other materialistic goods, then Mike is neither an old person living in a stable home nor does not like shopping for clothes and other materialistic goods.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_387", "context": "All people who are very consistent and enjoy sticking to their regular routines do not like surprises. If people wear flannel shirts every day, then they are very consistent and enjoy sticking to their regular routines. If people do not like shopping for clothes and other materialistic goods, then they wear flannel shirts every day. All old people living in stable homes do not like surprises. If people have very high energy and are impulsive, then they like surprises. If Mike is not a person who wears flannel shirts every day and has very high energy and is impulsive, then Mike either is very consistent and enjoys sticking to his regular routines or does not like surprises.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Mike is not an old person living in a stable home and does not like shopping for clothes and other materialistic goods, then Mike does not like shopping for clothes and other materialistic goods.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_388", "context": "Adam owns cars. Adam has a favorite car. Among the cars he owns, Adam's favorite car is European. Adam broke his favorite car.", "question": "Based on the above information, is the following statement true, false, or uncertain? Adam owns a Japanese car.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_389", "context": "Adam owns cars. Adam has a favorite car. Among the cars he owns, Adam's favorite car is European. Adam broke his favorite car.", "question": "Based on the above information, is the following statement true, false, or uncertain? Adam broke a European car.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_390", "context": "No buildings in New Haven are higher than 400 meters. All buildings managed by Yale Housing are in New Haven. All buildings in Manhattan are higher than 400 meters. All buildings owned by Bloomberg are in Manhattan. All buildings with the Bloomberg logo are buildings owned by Bloomberg. Tower A is neither in New Haven nor in Manhattan. Tower B is a building with the Bloomberg logo and in Manhattan.", "question": "Based on the above information, is the following statement true, false, or uncertain? Tower A is higher than 400 meters.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_391", "context": "No buildings in New Haven are higher than 400 meters. All buildings managed by Yale Housing are in New Haven. All buildings in Manhattan are higher than 400 meters. All buildings owned by Bloomberg are in Manhattan. All buildings with the Bloomberg logo are buildings owned by Bloomberg. Tower A is neither in New Haven nor in Manhattan. Tower B is a building with the Bloomberg logo and in Manhattan.", "question": "Based on the above information, is the following statement true, false, or uncertain? Tower A is not higher than 400 meters.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_392", "context": "No buildings in New Haven are higher than 400 meters. All buildings managed by Yale Housing are in New Haven. All buildings in Manhattan are higher than 400 meters. All buildings owned by Bloomberg are in Manhattan. All buildings with the Bloomberg logo are buildings owned by Bloomberg. Tower A is neither in New Haven nor in Manhattan. Tower B is a building with the Bloomberg logo and in Manhattan.", "question": "Based on the above information, is the following statement true, false, or uncertain? Tower A is a building with the Bloomberg logo or managed by Yale Housing.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_393", "context": "No buildings in New Haven are higher than 400 meters. All buildings managed by Yale Housing are in New Haven. All buildings in Manhattan are higher than 400 meters. All buildings owned by Bloomberg are in Manhattan. All buildings with the Bloomberg logo are buildings owned by Bloomberg. Tower A is neither in New Haven nor in Manhattan. Tower B is a building with the Bloomberg logo and in Manhattan.", "question": "Based on the above information, is the following statement true, false, or uncertain? Tower A is neither a building with the Bloomberg logo nor managed by Yale Housing.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_394", "context": "No fish are birds. Everything that is an osprey is a bird. If something is a carp, then it is a fish. All goldfish are carp. If Bubbles is either an osprey or a goldfish, then Bubbles is not a fish.", "question": "Based on the above information, is the following statement true, false, or uncertain? Bubbles is an Osprey.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_395", "context": "No fish are birds. Everything that is an osprey is a bird. If something is a carp, then it is a fish. All goldfish are carp. If Bubbles is either an osprey or a goldfish, then Bubbles is not a fish.", "question": "Based on the above information, is the following statement true, false, or uncertain? Bubbles is a carp.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_396", "context": "No fish are birds. Everything that is an osprey is a bird. If something is a carp, then it is a fish. All goldfish are carp. If Bubbles is either an osprey or a goldfish, then Bubbles is not a fish.", "question": "Based on the above information, is the following statement true, false, or uncertain? Bubbles is not a carp.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_397", "context": "Mr. and Mrs. Smith make a travel plan, they want to go to a city in California or Florida, and where neither of them has ever been. Cities in California that they are interested in are San Francisco, Los Angeles, and San Diego. Cities in Florida that they are interested in are Orlando and Miami. Mr. Smith has been to two cities in California. Mrs. Smith has been to one city in Florida.", "question": "Based on the above information, is the following statement true, false, or uncertain? Mr. Smith has been to San Francisco.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_398", "context": "Mr. and Mrs. Smith make a travel plan, they want to go to a city in California or Florida, and where neither of them has ever been. Cities in California that they are interested in are San Francisco, Los Angeles, and San Diego. Cities in Florida that they are interested in are Orlando and Miami. Mr. Smith has been to two cities in California. Mrs. Smith has been to one city in Florida.", "question": "Based on the above information, is the following statement true, false, or uncertain? They have at leat one candidate city in Florida to visit.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_399", "context": "Mr. and Mrs. Smith make a travel plan, they want to go to a city in California or Florida, and where neither of them has ever been. Cities in California that they are interested in are San Francisco, Los Angeles, and San Diego. Cities in Florida that they are interested in are Orlando and Miami. Mr. Smith has been to two cities in California. Mrs. Smith has been to one city in Florida.", "question": "Based on the above information, is the following statement true, false, or uncertain? They have at least two candidate cities in California to visit.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_400", "context": "Everything is either big or small. All big things are heavy. All small things are light. All heavy things are still. All light things are unstable. All unstable things are changing. All unstable things are kinetic. A bird is not both heavy and still.", "question": "Based on the above information, is the following statement true, false, or uncertain? A bird is still.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_401", "context": "Everything is either big or small. All big things are heavy. All small things are light. All heavy things are still. All light things are unstable. All unstable things are changing. All unstable things are kinetic. A bird is not both heavy and still.", "question": "Based on the above information, is the following statement true, false, or uncertain? A bird is not still.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_402", "context": "Everything is either big or small. All big things are heavy. All small things are light. All heavy things are still. All light things are unstable. All unstable things are changing. All unstable things are kinetic. A bird is not both heavy and still.", "question": "Based on the above information, is the following statement true, false, or uncertain? A bird is kinetic and changing.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_403", "context": "Everything is either big or small. All big things are heavy. All small things are light. All heavy things are still. All light things are unstable. All unstable things are changing. All unstable things are kinetic. A bird is not both heavy and still.", "question": "Based on the above information, is the following statement true, false, or uncertain? A bird is kinetic or changing.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_404", "context": "Everything is either big or small. All big things are heavy. All small things are light. All heavy things are still. All light things are unstable. All unstable things are changing. All unstable things are kinetic. A bird is not both heavy and still.", "question": "Based on the above information, is the following statement true, false, or uncertain? A bird is either kinetic or changing.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_405", "context": "Everything is either big or small. All big things are heavy. All small things are light. All heavy things are still. All light things are unstable. All unstable things are changing. All unstable things are kinetic. A bird is not both heavy and still.", "question": "Based on the above information, is the following statement true, false, or uncertain? If a bird is small or still, then the bird is either kinetic or changing.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_406", "context": "DI Ray is a police procedural television series. DI Ray was created and written by Maya Sondhi. DI Ray was produced by Jed Mercurio. Maya Sondhi and Jed Mercurio are both British.", "question": "Based on the above information, is the following statement true, false, or uncertain? DI Ray was created by a Brit.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_407", "context": "DI Ray is a police procedural television series. DI Ray was created and written by Maya Sondhi. DI Ray was produced by Jed Mercurio. Maya Sondhi and Jed Mercurio are both British.", "question": "Based on the above information, is the following statement true, false, or uncertain? Some Brit produced a television series.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_408", "context": "All men are human. All gentlemen are men. All lawyers are gentlemen. All women are human. No sheep are human. If Mike is not both a human and a sheep, then Mike is either a man or a human.", "question": "Based on the above information, is the following statement true, false, or uncertain? Mike is a woman.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_409", "context": "All men are human. All gentlemen are men. All lawyers are gentlemen. All women are human. No sheep are human. If Mike is not both a human and a sheep, then Mike is either a man or a human.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Mike is a gentleman or a lawyer, then Mike is neither a woman nor a lawyer.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_410", "context": "All men are human. All gentlemen are men. All lawyers are gentlemen. All women are human. No sheep are human. If Mike is not both a human and a sheep, then Mike is either a man or a human.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Mike is not both a woman and a lawyer, then Mike is a lawyer.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_411", "context": "Some defenders are centerback. All defenders are soccer players. No soccer players are professional basketball players. All NBA players are professional basketball players. Stephen Curry is an NBA player.", "question": "Based on the above information, is the following statement true, false, or uncertain? Stephen Curry is a centerback.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_412", "context": "Some defenders are centerback. All defenders are soccer players. No soccer players are professional basketball players. All NBA players are professional basketball players. Stephen Curry is an NBA player.", "question": "Based on the above information, is the following statement true, false, or uncertain? Stephen Curry is not a centerback and a defender.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_413", "context": "Some defenders are centerback. All defenders are soccer players. No soccer players are professional basketball players. All NBA players are professional basketball players. Stephen Curry is an NBA player.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Stephen Curry is not a centerback and a defender, then Stephen Curry is neither a soccer player nor a professional basketball player.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_414", "context": "If a person doesn't have enough money to buy a product, then that person can't buy it. Monitors are products. 4k monitors are more expensive than 1080 monitors and 2k monitors. John is a person. John doesn't have enough money to buy a 2k monitor.", "question": "Based on the above information, is the following statement true, false, or uncertain? John can not buy the 1080 monitor.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_415", "context": "If a person doesn't have enough money to buy a product, then that person can't buy it. Monitors are products. 4k monitors are more expensive than 1080 monitors and 2k monitors. John is a person. John doesn't have enough money to buy a 2k monitor.", "question": "Based on the above information, is the following statement true, false, or uncertain? John can not buy the 2k monitor.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_416", "context": "All artificial satellites are important scientific achievements. Some artificial satellites are not U.S. inventions.", "question": "Based on the above information, is the following statement true, false, or uncertain? All important scientific achievements are U.S. inventions.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_417", "context": "Some cats are not pets. All cats are mammals.", "question": "Based on the above information, is the following statement true, false, or uncertain? Some mammals are not pets.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_418", "context": "If people visit a coffee shop at least three times a week, then they are addicted to coffee or other caffeinated drinks. People either visit a coffee shop at least three times a week or order takeout at least once a day. If people make a lot of their own food at home using recipes and online guides, then they order takeout at least once a day. If people own at least one coffeemaker and one blender in their home, then they do not order takeout at least once a day. All people who lead very busy lives that include 12-hour work hours make a lot of their own food at home using recipes and online guides. Sam is either both addicted to coffee or other caffeinated drinks or leads very busy lives that include 12-hour work hours, or she is neither addicted to coffee and other caffeinated drinks nor leads very busy lives that include 12-hour work hours", "question": "Based on the above information, is the following statement true, false, or uncertain? Sam is addicted to coffee and other caffeinated drinks.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_419", "context": "If people visit a coffee shop at least three times a week, then they are addicted to coffee or other caffeinated drinks. People either visit a coffee shop at least three times a week or order takeout at least once a day. If people make a lot of their own food at home using recipes and online guides, then they order takeout at least once a day. If people own at least one coffeemaker and one blender in their home, then they do not order takeout at least once a day. All people who lead very busy lives that include 12-hour work hours make a lot of their own food at home using recipes and online guides. Sam is either both addicted to coffee or other caffeinated drinks or leads very busy lives that include 12-hour work hours, or she is neither addicted to coffee and other caffeinated drinks nor leads very busy lives that include 12-hour work hours", "question": "Based on the above information, is the following statement true, false, or uncertain? Sam owns at least one coffeemaker and one blender in her home.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_420", "context": "If people visit a coffee shop at least three times a week, then they are addicted to coffee or other caffeinated drinks. People either visit a coffee shop at least three times a week or order takeout at least once a day. If people make a lot of their own food at home using recipes and online guides, then they order takeout at least once a day. If people own at least one coffeemaker and one blender in their home, then they do not order takeout at least once a day. All people who lead very busy lives that include 12-hour work hours make a lot of their own food at home using recipes and online guides. Sam is either both addicted to coffee or other caffeinated drinks or leads very busy lives that include 12-hour work hours, or she is neither addicted to coffee and other caffeinated drinks nor leads very busy lives that include 12-hour work hours", "question": "Based on the above information, is the following statement true, false, or uncertain? Sam either owns at least one coffeemaker and one blender in her home or orders takeout at least once a day.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_421", "context": "No professional basketball players are soccer players. All NBA players are professional basketball players. All defenders are soccer players. All centerbacks are defenders. Roger Federer is not an NBA player or a defender.", "question": "Based on the above information, is the following statement true, false, or uncertain? Roger Federer is a centerback.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_422", "context": "No professional basketball players are soccer players. All NBA players are professional basketball players. All defenders are soccer players. All centerbacks are defenders. Roger Federer is not an NBA player or a defender.", "question": "Based on the above information, is the following statement true, false, or uncertain? Roger Federer is not a centerback.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_423", "context": "No professional basketball players are soccer players. All NBA players are professional basketball players. All defenders are soccer players. All centerbacks are defenders. Roger Federer is not an NBA player or a defender.", "question": "Based on the above information, is the following statement true, false, or uncertain? Roger Federer is a soccer player.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_424", "context": "Some teachers working at a pool are not nice. All teachers working at pools are pool managers. All pool managers are lifeguards. If someone is a lifeguard, then they work at a pool. Mary does not work at a pool.", "question": "Based on the above information, is the following statement true, false, or uncertain? Mary is nice.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_425", "context": "Some teachers working at a pool are not nice. All teachers working at pools are pool managers. All pool managers are lifeguards. If someone is a lifeguard, then they work at a pool. Mary does not work at a pool.", "question": "Based on the above information, is the following statement true, false, or uncertain? Mary is not nice and is a teacher working at a pool.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_426", "context": "Some teachers working at a pool are not nice. All teachers working at pools are pool managers. All pool managers are lifeguards. If someone is a lifeguard, then they work at a pool. Mary does not work at a pool.", "question": "Based on the above information, is the following statement true, false, or uncertain? Mary is nice and is a teacher working at a pool.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_427", "context": "Not all art pieces require talent. Everything that requires talent requires practice.", "question": "Based on the above information, is the following statement true, false, or uncertain? There exist art pieces that do not require practice.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_428", "context": "Bernarda Bryson Shahn was a painter and lithographer. Bernarda Bryson Shahn was born in Athens, Ohio. Bernarda Bryson Shahn was married to Ben Shahn. People born in Athens, Ohio are Americans.", "question": "Based on the above information, is the following statement true, false, or uncertain? Bernarda Bryson Shahn was born in Greece.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_429", "context": "Bernarda Bryson Shahn was a painter and lithographer. Bernarda Bryson Shahn was born in Athens, Ohio. Bernarda Bryson Shahn was married to Ben Shahn. People born in Athens, Ohio are Americans.", "question": "Based on the above information, is the following statement true, false, or uncertain? Bernarda Bryson Shahn was American.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_430", "context": "Bernarda Bryson Shahn was a painter and lithographer. Bernarda Bryson Shahn was born in Athens, Ohio. Bernarda Bryson Shahn was married to Ben Shahn. People born in Athens, Ohio are Americans.", "question": "Based on the above information, is the following statement true, false, or uncertain? Bernarda Bryson Shahn had been divorced once.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_431", "context": "If people upgrade to the newest iPhone model every year, then they are not saving money for a down payment on a new house. If people enjoy reading about tech specs and keeping up to date on the latest technology, then they upgrade to the newest iPhone model every year. People either are saving money for a down payment on a new house or they live in apartments in big metropolitan cities. If people live with at least one roommate then they do not own at least one pet. All people who own at least one pet live with at least one roommate. If Emma does not both own at least one pet and live in apartments in big metropolitan cities, then Emma either owns at least one pet and lives in an apartment in big metropolitan cities, or she neither owns a pet nor lives in an apartment in big metropolitan cities.", "question": "Based on the above information, is the following statement true, false, or uncertain? Emma lives with at least one roommate.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_432", "context": "If people upgrade to the newest iPhone model every year, then they are not saving money for a down payment on a new house. If people enjoy reading about tech specs and keeping up to date on the latest technology, then they upgrade to the newest iPhone model every year. People either are saving money for a down payment on a new house or they live in apartments in big metropolitan cities. If people live with at least one roommate then they do not own at least one pet. All people who own at least one pet live with at least one roommate. If Emma does not both own at least one pet and live in apartments in big metropolitan cities, then Emma either owns at least one pet and lives in an apartment in big metropolitan cities, or she neither owns a pet nor lives in an apartment in big metropolitan cities.", "question": "Based on the above information, is the following statement true, false, or uncertain? Emma enjoys reading about tech specs and keeping up to date on the latest technology.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_433", "context": "If you are on the payroll, then you are being paid by the school. If someone has a job at a school, then they are on the payroll. All faculty members have a job at a school. One can either be a faculty member or a teacher. Every teacher has students. If Nancy is a teacher, then they are on the payroll. If Nancy is not a teacher, then they are not paid by the school.", "question": "Based on the above information, is the following statement true, false, or uncertain? Nancy is a faculty member.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_434", "context": "If you are on the payroll, then you are being paid by the school. If someone has a job at a school, then they are on the payroll. All faculty members have a job at a school. One can either be a faculty member or a teacher. Every teacher has students. If Nancy is a teacher, then they are on the payroll. If Nancy is not a teacher, then they are not paid by the school.", "question": "Based on the above information, is the following statement true, false, or uncertain? Nancy is paid by the school and has students.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_435", "context": "If you are on the payroll, then you are being paid by the school. If someone has a job at a school, then they are on the payroll. All faculty members have a job at a school. One can either be a faculty member or a teacher. Every teacher has students. If Nancy is a teacher, then they are on the payroll. If Nancy is not a teacher, then they are not paid by the school.", "question": "Based on the above information, is the following statement true, false, or uncertain? Nancy is not paid by the school and has students.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_436", "context": "Kangaroo is an animal. No Kangaroos live in Germany. If Jane saves enough money for the summer, she will fly to Germany. If Jane flies to Germany, she will go to the Berlin Zoo. If someone goes to the Berlin Zoo, they will see some of the animals that live in Germany.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Jane saves enough money for the summer, she will see a kangaroo.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_437", "context": "If a class has prerequisites the student must take the prerequisites to take the class. If a class has no prerequisites, then the student can take the class CPSC 201 and CPSC 223 are prerequisites for CPSC 323. Intro Microeconomics is the only prerequisite for Intermediate Microeconomics. Intro Geology has no prerequisites.", "question": "Based on the above information, is the following statement true, false, or uncertain? CPSC 201 has no prerequisites.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_438", "context": "If a class has prerequisites the student must take the prerequisites to take the class. If a class has no prerequisites, then the student can take the class CPSC 201 and CPSC 223 are prerequisites for CPSC 323. Intro Microeconomics is the only prerequisite for Intermediate Microeconomics. Intro Geology has no prerequisites.", "question": "Based on the above information, is the following statement true, false, or uncertain? If a student took CPSC 201 but did not take CPSC 223, they can take CPSC 323.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_439", "context": "If a class has prerequisites the student must take the prerequisites to take the class. If a class has no prerequisites, then the student can take the class CPSC 201 and CPSC 223 are prerequisites for CPSC 323. Intro Microeconomics is the only prerequisite for Intermediate Microeconomics. Intro Geology has no prerequisites.", "question": "Based on the above information, is the following statement true, false, or uncertain? A student cannot take Intro Geology.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_440", "context": "If a class has prerequisites the student must take the prerequisites to take the class. If a class has no prerequisites, then the student can take the class CPSC 201 and CPSC 223 are prerequisites for CPSC 323. Intro Microeconomics is the only prerequisite for Intermediate Microeconomics. Intro Geology has no prerequisites.", "question": "Based on the above information, is the following statement true, false, or uncertain? Intermediate Microeconomics has one prerequisite.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_441", "context": "A heptalogy, is a compound literary or narrative work that is made up of seven distinct works. The Harry Potter series consists of 7 distinct works. The Chronicles of Narnia consists of 7 distinct works.", "question": "Based on the above information, is the following statement true, false, or uncertain? The Harry Potter series of books is a heptalogy.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_442", "context": "A heptalogy, is a compound literary or narrative work that is made up of seven distinct works. The Harry Potter series consists of 7 distinct works. The Chronicles of Narnia consists of 7 distinct works.", "question": "Based on the above information, is the following statement true, false, or uncertain? The Chronicles of Narnia series of books is not a heptalogy.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_443", "context": "A heptalogy, is a compound literary or narrative work that is made up of seven distinct works. The Harry Potter series consists of 7 distinct works. The Chronicles of Narnia consists of 7 distinct works.", "question": "Based on the above information, is the following statement true, false, or uncertain? The Lord of Rings is a heptalogy.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_444", "context": "All people who attend Renaissance fairs regularly enjoy dressing up in old-fashioned and historical period clothing. If people are fascinated by the history of the Renaissance and other past eras, then they attend Renaissance fairs regularly. People are either fascinated by the history of the Renaissance and other past eras, or are not nostalgic academics who enjoy learning. If people are focused on the future and industry professions, then they are not nostalgic academics who enjoy learning. If people are historical professors who are passionate about their job and subject, then they are nostalgic academics who enjoy learning. If Clyde is not focused on the future and industry professions, then he is neither focused on the future and industry professions nor enjoys dressing up in old-fashioned and historical period clothing.", "question": "Based on the above information, is the following statement true, false, or uncertain? Clyde attends Renaissance fairs regularly.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_445", "context": "All people who attend Renaissance fairs regularly enjoy dressing up in old-fashioned and historical period clothing. If people are fascinated by the history of the Renaissance and other past eras, then they attend Renaissance fairs regularly. People are either fascinated by the history of the Renaissance and other past eras, or are not nostalgic academics who enjoy learning. If people are focused on the future and industry professions, then they are not nostalgic academics who enjoy learning. If people are historical professors who are passionate about their job and subject, then they are nostalgic academics who enjoy learning. If Clyde is not focused on the future and industry professions, then he is neither focused on the future and industry professions nor enjoys dressing up in old-fashioned and historical period clothing.", "question": "Based on the above information, is the following statement true, false, or uncertain? Clyde is a history professor who is passionate about his job and subject.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_446", "context": "All people who attend Renaissance fairs regularly enjoy dressing up in old-fashioned and historical period clothing. If people are fascinated by the history of the Renaissance and other past eras, then they attend Renaissance fairs regularly. People are either fascinated by the history of the Renaissance and other past eras, or are not nostalgic academics who enjoy learning. If people are focused on the future and industry professions, then they are not nostalgic academics who enjoy learning. If people are historical professors who are passionate about their job and subject, then they are nostalgic academics who enjoy learning. If Clyde is not focused on the future and industry professions, then he is neither focused on the future and industry professions nor enjoys dressing up in old-fashioned and historical period clothing.", "question": "Based on the above information, is the following statement true, false, or uncertain? Clyde is a history professor who is passionate about his job and subject, or is not a nostalgic academic who enjoys learning.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_447", "context": "No sports cars are vehicles intended to be driven at moderate speeds. All automobiles designed for family use are vehicles intended to be driven at moderate speeds.", "question": "Based on the above information, is the following statement true, false, or uncertain? No sports cars are automobiles designed for family use.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_448", "context": "If people work well in teams in their workplace, then they get along with all their colleagues at their work. If people come to work every day with a positive attitude, then they work well in teams in their workplace. People either come into work every day with a positive attitude or are always tired every morning. If people get many promotions from their boss at work, then they receive negative feedback from teams at work. Kat is either both a person who works well in teams in their workplace and is always tired every morning, or she neither works well in teams in their workplace nor is always tired every morning.", "question": "Based on the above information, is the following statement true, false, or uncertain? Kat is a person who comes to work every day with a positive attitude.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_449", "context": "If people work well in teams in their workplace, then they get along with all their colleagues at their work. If people come to work every day with a positive attitude, then they work well in teams in their workplace. People either come into work every day with a positive attitude or are always tired every morning. If people get many promotions from their boss at work, then they receive negative feedback from teams at work. Kat is either both a person who works well in teams in their workplace and is always tired every morning, or she neither works well in teams in their workplace nor is always tired every morning.", "question": "Based on the above information, is the following statement true, false, or uncertain? Kat gets along with her colleagues at her work and receives negative feedback from teams at her work.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_450", "context": "If people work well in teams in their workplace, then they get along with all their colleagues at their work. If people come to work every day with a positive attitude, then they work well in teams in their workplace. People either come into work every day with a positive attitude or are always tired every morning. If people get many promotions from their boss at work, then they receive negative feedback from teams at work. Kat is either both a person who works well in teams in their workplace and is always tired every morning, or she neither works well in teams in their workplace nor is always tired every morning.", "question": "Based on the above information, is the following statement true, false, or uncertain? Kat either gets along with her colleagues at her work or receives negative feedback from teams at her work.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_451", "context": "Drishti is open-source. Open-source software is free to modify.", "question": "Based on the above information, is the following statement true, false, or uncertain? Drishti is free to modify.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_452", "context": "There are five grades including A+, A, B+, B, and C in English. If a student gets A+ in English, then his score is greater than 95. If a student gets A in English, then his score is in the range of 90-95. Zhang got an A in English. Wang's English score is better than Zhang's. Wu's English score is lower than 90.", "question": "Based on the above information, is the following statement true, false, or uncertain? Zhang's English score is lower than 95.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_453", "context": "There are five grades including A+, A, B+, B, and C in English. If a student gets A+ in English, then his score is greater than 95. If a student gets A in English, then his score is in the range of 90-95. Zhang got an A in English. Wang's English score is better than Zhang's. Wu's English score is lower than 90.", "question": "Based on the above information, is the following statement true, false, or uncertain? Wang got an A+ in English.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_454", "context": "There are five grades including A+, A, B+, B, and C in English. If a student gets A+ in English, then his score is greater than 95. If a student gets A in English, then his score is in the range of 90-95. Zhang got an A in English. Wang's English score is better than Zhang's. Wu's English score is lower than 90.", "question": "Based on the above information, is the following statement true, false, or uncertain? Wu does not get an A or A+ in English.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_455", "context": "Olivia doesn't prefer warm temperature during the day. When Olivia sleeps, she prefers cool temperature. Olivia sleeps during the night. Olivia works during the day. Olivia either works or sleeps. The time is either the day or the night. Olivia either prefers warm temperature or prefers cool temperature.", "question": "Based on the above information, is the following statement true, false, or uncertain? At all times, Olivia prefers cool temperature.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_456", "context": "Taylor Swift gives a commencement speech in New York University in 2022. Both Columbia University and New York University are located in Manhattan. Taylor Swift has received three Grammy Album of the Year Awards. Columbia University is one of the Ivy League schools.", "question": "Based on the above information, is the following statement true, false, or uncertain? Taylor Swift delivers a commencement speech in Manhattan.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_457", "context": "Taylor Swift gives a commencement speech in New York University in 2022. Both Columbia University and New York University are located in Manhattan. Taylor Swift has received three Grammy Album of the Year Awards. Columbia University is one of the Ivy League schools.", "question": "Based on the above information, is the following statement true, false, or uncertain? The commencement speaker of NYU does not have any album.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_458", "context": "Customers either choose Plan A or Plan B. All who choose Plan B are rewarded with a $30 gift card. There are no customers who do not choose any plans. No customers rewarded a $30 gift card are older than 80. Customers are either older than 80 or are currently studying at school. James is not a customer who is currently studying at school.", "question": "Based on the above information, is the following statement true, false, or uncertain? James is a customer who does not choose any plans.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_459", "context": "Customers either choose Plan A or Plan B. All who choose Plan B are rewarded with a $30 gift card. There are no customers who do not choose any plans. No customers rewarded a $30 gift card are older than 80. Customers are either older than 80 or are currently studying at school. James is not a customer who is currently studying at school.", "question": "Based on the above information, is the following statement true, false, or uncertain? James is a customer who chooses Plan A or does not choose any plans.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_460", "context": "Customers either choose Plan A or Plan B. All who choose Plan B are rewarded with a $30 gift card. There are no customers who do not choose any plans. No customers rewarded a $30 gift card are older than 80. Customers are either older than 80 or are currently studying at school. James is not a customer who is currently studying at school.", "question": "Based on the above information, is the following statement true, false, or uncertain? Suppose James is a customer who chooses Plan A or does not choose any plans, then he is either rewarded a $30 gift card or chooses Plan B.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_461", "context": "Detroit City is a horse. Some horses are racehorses. If a horse falls during a race, then it dies. Detroit City fell during a race. A horse is a racehorse if it is in a race.", "question": "Based on the above information, is the following statement true, false, or uncertain? Detroit City has been in multiple races.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_462", "context": "Detroit City is a horse. Some horses are racehorses. If a horse falls during a race, then it dies. Detroit City fell during a race. A horse is a racehorse if it is in a race.", "question": "Based on the above information, is the following statement true, false, or uncertain? Detroit City is dead.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_463", "context": "Detroit City is a horse. Some horses are racehorses. If a horse falls during a race, then it dies. Detroit City fell during a race. A horse is a racehorse if it is in a race.", "question": "Based on the above information, is the following statement true, false, or uncertain? Detroit City is a racehorse.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_464", "context": "Frederick Monhoff was an architect, artist, and illustrator. Frederick Monhoff was an American. An artist is good at painting or music. All Americans speak English.", "question": "Based on the above information, is the following statement true, false, or uncertain? Frederick Monhoff is good at music.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_465", "context": "Frederick Monhoff was an architect, artist, and illustrator. Frederick Monhoff was an American. An artist is good at painting or music. All Americans speak English.", "question": "Based on the above information, is the following statement true, false, or uncertain? There is no illustrator who speaks English.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_466", "context": "Miroslav Fiedler was a Czech mathematician. Miroslav Fiedler is known for his contributions to linear algebra and graph theory. Miroslav Fiedler is honored by the Fiedler eigenvalue. Fiedler eigenvalue is the second smallest eigenvalue of the graph Laplacian.", "question": "Based on the above information, is the following statement true, false, or uncertain? Miroslav Fiedler is honored by the second smallest eigenvalue of the graph Laplacian.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_467", "context": "Miroslav Fiedler was a Czech mathematician. Miroslav Fiedler is known for his contributions to linear algebra and graph theory. Miroslav Fiedler is honored by the Fiedler eigenvalue. Fiedler eigenvalue is the second smallest eigenvalue of the graph Laplacian.", "question": "Based on the above information, is the following statement true, false, or uncertain? Miroslav Fiedler was a French mathematician.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_468", "context": "Miroslav Fiedler was a Czech mathematician. Miroslav Fiedler is known for his contributions to linear algebra and graph theory. Miroslav Fiedler is honored by the Fiedler eigenvalue. Fiedler eigenvalue is the second smallest eigenvalue of the graph Laplacian.", "question": "Based on the above information, is the following statement true, false, or uncertain? A Czech mathematician is known for his contributions to linear algebra and graph theory.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_469", "context": "A laptop is a computer. You can play games on a computer. A phone is not a computer.", "question": "Based on the above information, is the following statement true, false, or uncertain? You can play games on a laptop.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_470", "context": "A laptop is a computer. You can play games on a computer. A phone is not a computer.", "question": "Based on the above information, is the following statement true, false, or uncertain? You can not play games on a phone.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_471", "context": "Walter Folger Brown was an American politician and lawyer, and served as the postmaster general. Walter Folger Brown graduated from Harvard University with a Bachelors of Arts. While they were both in Toledo, Walter Folger Brown's father practiced law with Walter Folger Brown. Katherin Hafer married Walter Folger Brown.", "question": "Based on the above information, is the following statement true, false, or uncertain? Walter Folger Brown graduated with a Bachelors of Arts.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_472", "context": "Walter Folger Brown was an American politician and lawyer, and served as the postmaster general. Walter Folger Brown graduated from Harvard University with a Bachelors of Arts. While they were both in Toledo, Walter Folger Brown's father practiced law with Walter Folger Brown. Katherin Hafer married Walter Folger Brown.", "question": "Based on the above information, is the following statement true, false, or uncertain? Walter Folger Brown's father was in Toledo.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_473", "context": "Walter Folger Brown was an American politician and lawyer, and served as the postmaster general. Walter Folger Brown graduated from Harvard University with a Bachelors of Arts. While they were both in Toledo, Walter Folger Brown's father practiced law with Walter Folger Brown. Katherin Hafer married Walter Folger Brown.", "question": "Based on the above information, is the following statement true, false, or uncertain? Walter Folger Brown was not in Toledo.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_474", "context": "All products shipped from China are made in China. All products sold in JD are shipped from China. All products commonly used in China are sold in JD. All products favored by young people are commonly used in China. MacBook is not made in China and is not commonly used in China.", "question": "Based on the above information, is the following statement true, false, or uncertain? The MacBook is favored by young people.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_475", "context": "All products shipped from China are made in China. All products sold in JD are shipped from China. All products commonly used in China are sold in JD. All products favored by young people are commonly used in China. MacBook is not made in China and is not commonly used in China.", "question": "Based on the above information, is the following statement true, false, or uncertain? The MacBook is made in China.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_476", "context": "All products shipped from China are made in China. All products sold in JD are shipped from China. All products commonly used in China are sold in JD. All products favored by young people are commonly used in China. MacBook is not made in China and is not commonly used in China.", "question": "Based on the above information, is the following statement true, false, or uncertain? The MacBook is favored by young people and commonly used in China.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_477", "context": "All products shipped from China are made in China. All products sold in JD are shipped from China. All products commonly used in China are sold in JD. All products favored by young people are commonly used in China. MacBook is not made in China and is not commonly used in China.", "question": "Based on the above information, is the following statement true, false, or uncertain? The MacBook is either favored by young people or commonly used in China.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_478", "context": "All products shipped from China are made in China. All products sold in JD are shipped from China. All products commonly used in China are sold in JD. All products favored by young people are commonly used in China. MacBook is not made in China and is not commonly used in China.", "question": "Based on the above information, is the following statement true, false, or uncertain? If the MacBook is favored by young people and commonly used in China, then it is neither favored by young people nor made in China.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_479", "context": "Oxford Circus is a road junction connecting Oxford Street and Regent Street. Oxford Street is in London. John Nash designed the construction on Regent Street. John Nash designed Oxford Circus. John Nash is an architect in British. Oxford Circus is the entrance to Oxford Circus tube station which is a part of the Central line in 1900.", "question": "Based on the above information, is the following statement true, false, or uncertain? Oxford Circus is in London.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_480", "context": "Oxford Circus is a road junction connecting Oxford Street and Regent Street. Oxford Street is in London. John Nash designed the construction on Regent Street. John Nash designed Oxford Circus. John Nash is an architect in British. Oxford Circus is the entrance to Oxford Circus tube station which is a part of the Central line in 1900.", "question": "Based on the above information, is the following statement true, false, or uncertain? Oxford Circus is designed by a British architect.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_481", "context": "Oxford Circus is a road junction connecting Oxford Street and Regent Street. Oxford Street is in London. John Nash designed the construction on Regent Street. John Nash designed Oxford Circus. John Nash is an architect in British. Oxford Circus is the entrance to Oxford Circus tube station which is a part of the Central line in 1900.", "question": "Based on the above information, is the following statement true, false, or uncertain? John Nash designed the Central line in 1900.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_482", "context": "Oxford Circus is a road junction connecting Oxford Street and Regent Street. Oxford Street is in London. John Nash designed the construction on Regent Street. John Nash designed Oxford Circus. John Nash is an architect in British. Oxford Circus is the entrance to Oxford Circus tube station which is a part of the Central line in 1900.", "question": "Based on the above information, is the following statement true, false, or uncertain? Regent Street is not in London.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_483", "context": "An animal is either a cat or a dog. All dogs bark. Ghosts do not exist. If something barks, then it is not alive. A thing is either alive or dead. Jojo is not dead.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jojo is a ghost.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_484", "context": "An animal is either a cat or a dog. All dogs bark. Ghosts do not exist. If something barks, then it is not alive. A thing is either alive or dead. Jojo is not dead.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jojo is a cat or a ghost.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_485", "context": "An animal is either a cat or a dog. All dogs bark. Ghosts do not exist. If something barks, then it is not alive. A thing is either alive or dead. Jojo is not dead.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Jojo is a cat or a ghost, then Jojo either barks or is a dog.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_486", "context": "All animals that are tigers are cats. No cats are dogs. All Bengal tigers are tigers. Everything that is a husky is a dog. Fido is either a Bengal tiger or a cat.", "question": "Based on the above information, is the following statement true, false, or uncertain? Fido is a husky.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_487", "context": "All animals that are tigers are cats. No cats are dogs. All Bengal tigers are tigers. Everything that is a husky is a dog. Fido is either a Bengal tiger or a cat.", "question": "Based on the above information, is the following statement true, false, or uncertain? Fido is not a husky.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_488", "context": "All animals that are tigers are cats. No cats are dogs. All Bengal tigers are tigers. Everything that is a husky is a dog. Fido is either a Bengal tiger or a cat.", "question": "Based on the above information, is the following statement true, false, or uncertain? Fido is a Bengal tiger.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_489", "context": "All animals that are tigers are cats. No cats are dogs. All Bengal tigers are tigers. Everything that is a husky is a dog. Fido is either a Bengal tiger or a cat.", "question": "Based on the above information, is the following statement true, false, or uncertain? Fido is neither a dog nor a husky.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_490", "context": "If a city hold a Summer Olympics, and the city is a US city, then the Summer Olympics will be in the US. If a city is in a state which is in US, the city is a US city. If a city in a state, and a Summer Olympics is in this city, then the Summer Olympics is in this state. The 2028 Summer Olympics is scheduled to take place in Los Angeles(LA). LA is a city in California(CA). Atlanta is a US city. Atlanta is in Georgia(CA). CA is a state in the United States. Boxing, modern pentathlon, and weightlifting will be removed from The 2028 Summer Olympics. Atlanta in the United States hold the 1996 Summer Olympics.", "question": "Based on the above information, is the following statement true, false, or uncertain? The 2028 Summer Olympics will take place in the US.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_491", "context": "If a city hold a Summer Olympics, and the city is a US city, then the Summer Olympics will be in the US. If a city is in a state which is in US, the city is a US city. If a city in a state, and a Summer Olympics is in this city, then the Summer Olympics is in this state. The 2028 Summer Olympics is scheduled to take place in Los Angeles(LA). LA is a city in California(CA). Atlanta is a US city. Atlanta is in Georgia(CA). CA is a state in the United States. Boxing, modern pentathlon, and weightlifting will be removed from The 2028 Summer Olympics. Atlanta in the United States hold the 1996 Summer Olympics.", "question": "Based on the above information, is the following statement true, false, or uncertain? The 1996 Summer Olympics is not in Georgia.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_492", "context": "If a city hold a Summer Olympics, and the city is a US city, then the Summer Olympics will be in the US. If a city is in a state which is in US, the city is a US city. If a city in a state, and a Summer Olympics is in this city, then the Summer Olympics is in this state. The 2028 Summer Olympics is scheduled to take place in Los Angeles(LA). LA is a city in California(CA). Atlanta is a US city. Atlanta is in Georgia(CA). CA is a state in the United States. Boxing, modern pentathlon, and weightlifting will be removed from The 2028 Summer Olympics. Atlanta in the United States hold the 1996 Summer Olympics.", "question": "Based on the above information, is the following statement true, false, or uncertain? Skateboarding will appear at The 2028 Summer Olympics.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_493", "context": "The taiga vole is a large vole found in northwestern North America. Cats like playing with all voles. The taiga vole lives in the boreal taiga zone. The boreal taiga zone in North America is a cold place to live in. Taiga vole is typically much larger than most other North American voles, especially those from the genus Microtus.", "question": "Based on the above information, is the following statement true, false, or uncertain? Cats like playing with taiga vole.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_494", "context": "The taiga vole is a large vole found in northwestern North America. Cats like playing with all voles. The taiga vole lives in the boreal taiga zone. The boreal taiga zone in North America is a cold place to live in. Taiga vole is typically much larger than most other North American voles, especially those from the genus Microtus.", "question": "Based on the above information, is the following statement true, false, or uncertain? Taiga vole's living place is not cold.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_495", "context": "Either in women or in men. No men have breast cancer. Either breast cancer or non-breast cancer. No type of cancer is without a tumor. All non-breast cancers are a type of cancer. If adenocarcinoma is a type of cancer or without a tumor, then adenocarcinoma is in women or without a tumor.", "question": "Based on the above information, is the following statement true, false, or uncertain? Adenocarcinoma is a breast cancer.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_496", "context": "Either in women or in men. No men have breast cancer. Either breast cancer or non-breast cancer. No type of cancer is without a tumor. All non-breast cancers are a type of cancer. If adenocarcinoma is a type of cancer or without a tumor, then adenocarcinoma is in women or without a tumor.", "question": "Based on the above information, is the following statement true, false, or uncertain? Adenocarcinoma is in women.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_497", "context": "Either in women or in men. No men have breast cancer. Either breast cancer or non-breast cancer. No type of cancer is without a tumor. All non-breast cancers are a type of cancer. If adenocarcinoma is a type of cancer or without a tumor, then adenocarcinoma is in women or without a tumor.", "question": "Based on the above information, is the following statement true, false, or uncertain? If adenocarcinoma is in women or without a tumor, then adenocarcinoma is without a tumor and a non-breast cancer.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_498", "context": "Some monitors equipped in the lab are produced by the company named AOC. All monitors equipped in the lab are cheaper than their original prices. If the monitor is cheaper than its original prices, then its resolution is 1080p. If a monitor is with a resolution of 1080p, then it does not support the type-c port. LG34 is equipped in the lab.", "question": "Based on the above information, is the following statement true, false, or uncertain? LG34 machine is produced by AOC.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_499", "context": "Some monitors equipped in the lab are produced by the company named AOC. All monitors equipped in the lab are cheaper than their original prices. If the monitor is cheaper than its original prices, then its resolution is 1080p. If a monitor is with a resolution of 1080p, then it does not support the type-c port. LG34 is equipped in the lab.", "question": "Based on the above information, is the following statement true, false, or uncertain? LG34 machine does not support the type-c port.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_500", "context": "Some monitors equipped in the lab are produced by the company named AOC. All monitors equipped in the lab are cheaper than their original prices. If the monitor is cheaper than its original prices, then its resolution is 1080p. If a monitor is with a resolution of 1080p, then it does not support the type-c port. LG34 is equipped in the lab.", "question": "Based on the above information, is the following statement true, false, or uncertain? LG34 is not with a resolution of 1080p.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_501", "context": "All fruits sold in Boston are shipped from Columbia. Some fruits sold in New Haven are shipped from Mexico. No fruits shipped from Columbia are fruits sold in New York. Avocadoe are a kind of fruit sold in New York or New York. Avocadoe are either shipped from Columbia and sold in New Haven, or neither shipped from Columbia nor sold in New Haven.", "question": "Based on the above information, is the following statement true, false, or uncertain? Avocados are a kind of fruit sold in New York.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_502", "context": "All fruits sold in Boston are shipped from Columbia. Some fruits sold in New Haven are shipped from Mexico. No fruits shipped from Columbia are fruits sold in New York. Avocadoe are a kind of fruit sold in New York or New York. Avocadoe are either shipped from Columbia and sold in New Haven, or neither shipped from Columbia nor sold in New Haven.", "question": "Based on the above information, is the following statement true, false, or uncertain? Avocados are either sold in New York or sold in New Haven.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_503", "context": "All fruits sold in Boston are shipped from Columbia. Some fruits sold in New Haven are shipped from Mexico. No fruits shipped from Columbia are fruits sold in New York. Avocadoe are a kind of fruit sold in New York or New York. Avocadoe are either shipped from Columbia and sold in New Haven, or neither shipped from Columbia nor sold in New Haven.", "question": "Based on the above information, is the following statement true, false, or uncertain? Avocados are either sold in New Haven or sold in Boston", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_504", "context": "All fruits sold in Boston are shipped from Columbia. Some fruits sold in New Haven are shipped from Mexico. No fruits shipped from Columbia are fruits sold in New York. Avocadoe are a kind of fruit sold in New York or New York. Avocadoe are either shipped from Columbia and sold in New Haven, or neither shipped from Columbia nor sold in New Haven.", "question": "Based on the above information, is the following statement true, false, or uncertain? If avocados are not sold in New York and not shipped from Columbia, then they are neither sold in New York nor New Haven.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_505", "context": "Some monitors equipped in the library are produced by AOC. All monitors equipped in the library are cheaper than 800 dollars. All monitors cheaper than 800 dollars are with a resolution of 1080p. If a monitor has a resolution of 1080p, then it does not support the type-c port. A-2017 supports the type-c port.", "question": "Based on the above information, is the following statement true, false, or uncertain? A-2017 is produced by AOC.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_506", "context": "Some monitors equipped in the library are produced by AOC. All monitors equipped in the library are cheaper than 800 dollars. All monitors cheaper than 800 dollars are with a resolution of 1080p. If a monitor has a resolution of 1080p, then it does not support the type-c port. A-2017 supports the type-c port.", "question": "Based on the above information, is the following statement true, false, or uncertain? A-2017 is produced by AOC and equipped in the library.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_507", "context": "Some monitors equipped in the library are produced by AOC. All monitors equipped in the library are cheaper than 800 dollars. All monitors cheaper than 800 dollars are with a resolution of 1080p. If a monitor has a resolution of 1080p, then it does not support the type-c port. A-2017 supports the type-c port.", "question": "Based on the above information, is the following statement true, false, or uncertain? If A-2017 is not with a resolution of 1080p or produced by AOC, then it is not equipped in the library.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_508", "context": "Sūduva Marijampolė holds the Lithuanian Supercup. Sūduva Marijampolė is a soccer team.", "question": "Based on the above information, is the following statement true, false, or uncertain? Some soccer team holds the Lithuanian Supercup.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_509", "context": "Ainderby Quernhow is a village and civil parish in the Hambleton District. Hambleton District is in North Yorkshire. North Yorkshire is in England.", "question": "Based on the above information, is the following statement true, false, or uncertain? There is a village in England.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_510", "context": "Ainderby Quernhow is a village and civil parish in the Hambleton District. Hambleton District is in North Yorkshire. North Yorkshire is in England.", "question": "Based on the above information, is the following statement true, false, or uncertain? There is no civil parish in England.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_511", "context": "Douglas Adams is an author who created the book collection called The Salmon of Doubt. The Salmon of Doubt is about life experiences and technology. All authors are writers. Writers create innovative ideas. Some books that contain innovative ideas are about technology.", "question": "Based on the above information, is the following statement true, false, or uncertain? Douglas Adams is a writer.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_512", "context": "Douglas Adams is an author who created the book collection called The Salmon of Doubt. The Salmon of Doubt is about life experiences and technology. All authors are writers. Writers create innovative ideas. Some books that contain innovative ideas are about technology.", "question": "Based on the above information, is the following statement true, false, or uncertain? Douglas Adams created innovative ideas.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_513", "context": "Douglas Adams is an author who created the book collection called The Salmon of Doubt. The Salmon of Doubt is about life experiences and technology. All authors are writers. Writers create innovative ideas. Some books that contain innovative ideas are about technology.", "question": "Based on the above information, is the following statement true, false, or uncertain? The Salmon of Doubt has no innovative Ideas.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_514", "context": "No disposable products can help slow down global warming. All eco-friendly brands can help slow down global warming. All sustainable fashion brands are eco-friendly brands. All fast fashion products are disposable products. If Reformation is not helping slow down global warming, then Reformation is an eco-friendly brand or a sustainable fashion brand.", "question": "Based on the above information, is the following statement true, false, or uncertain? Reformation is an eco-friendly brand.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_515", "context": "No disposable products can help slow down global warming. All eco-friendly brands can help slow down global warming. All sustainable fashion brands are eco-friendly brands. All fast fashion products are disposable products. If Reformation is not helping slow down global warming, then Reformation is an eco-friendly brand or a sustainable fashion brand.", "question": "Based on the above information, is the following statement true, false, or uncertain? Reformation produces fast fashion products.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_516", "context": "No disposable products can help slow down global warming. All eco-friendly brands can help slow down global warming. All sustainable fashion brands are eco-friendly brands. All fast fashion products are disposable products. If Reformation is not helping slow down global warming, then Reformation is an eco-friendly brand or a sustainable fashion brand.", "question": "Based on the above information, is the following statement true, false, or uncertain? Reformation does not produce fast fashion products.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_517", "context": "No disposable products can help slow down global warming. All eco-friendly brands can help slow down global warming. All sustainable fashion brands are eco-friendly brands. All fast fashion products are disposable products. If Reformation is not helping slow down global warming, then Reformation is an eco-friendly brand or a sustainable fashion brand.", "question": "Based on the above information, is the following statement true, false, or uncertain? Reformation does not produce fast fashion products or does not produce disposable products.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_518", "context": "No disposable products can help slow down global warming. All eco-friendly brands can help slow down global warming. All sustainable fashion brands are eco-friendly brands. All fast fashion products are disposable products. If Reformation is not helping slow down global warming, then Reformation is an eco-friendly brand or a sustainable fashion brand.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Reformation produces disposable products, then Reformation produces fast fashion products.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_519", "context": "No disposable products can help slow down global warming. All eco-friendly brands can help slow down global warming. All sustainable fashion brands are eco-friendly brands. All fast fashion products are disposable products. If Reformation is not helping slow down global warming, then Reformation is an eco-friendly brand or a sustainable fashion brand.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Reformation produces fast fashion products or helps slow down global warming, then Reformation produces fast fashion products.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_520", "context": "Roy Richardson was a cricketer for Sint Maartener, a consituent country. Roy Richardson was a right handed batsman and medium pace bowler. Roy Richardson was old when he debuted in cricket. Sherville Huggins dismissed Roy Richardson.", "question": "Based on the above information, is the following statement true, false, or uncertain? Sherville Huggins has never dismissed anyone playing for a constituent country.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_521", "context": "Roy Richardson was a cricketer for Sint Maartener, a consituent country. Roy Richardson was a right handed batsman and medium pace bowler. Roy Richardson was old when he debuted in cricket. Sherville Huggins dismissed Roy Richardson.", "question": "Based on the above information, is the following statement true, false, or uncertain? There are no right handed medium pace bowlers playing for Sint Maartener.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_522", "context": "To get a job at Google, you need to have a lot of work experience or a good education. All Yale graduates who submitted their resumes to Google got jobs there. John has a lot of work experience. John submitted his resume to Google and got a job there.", "question": "Based on the above information, is the following statement true, false, or uncertain? John is a Yale graduate.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_523", "context": "No students are doctors. All people taking classes are students. All graduate students are people taking classes. All PhD students are graduate students. If Joe is a graduate student or a doctor (but not both), then Joe is not a graduate student and a student.", "question": "Based on the above information, is the following statement true, false, or uncertain? Joe is a person taking classes.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_524", "context": "No students are doctors. All people taking classes are students. All graduate students are people taking classes. All PhD students are graduate students. If Joe is a graduate student or a doctor (but not both), then Joe is not a graduate student and a student.", "question": "Based on the above information, is the following statement true, false, or uncertain? Joe is a PhD student.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_525", "context": "No students are doctors. All people taking classes are students. All graduate students are people taking classes. All PhD students are graduate students. If Joe is a graduate student or a doctor (but not both), then Joe is not a graduate student and a student.", "question": "Based on the above information, is the following statement true, false, or uncertain? Joe is not a PhD student.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_526", "context": "Hugh Vanstone is one of the world's leading lighting designers. Hugh Vanstone is from the UK. Hugh Vanstone has lit more than 160 productions. Hugh Vanstone attended school where he is from.", "question": "Based on the above information, is the following statement true, false, or uncertain? Hugh Vanstone is one of the world's leading ligting designers and from the uk", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_527", "context": "Hugh Vanstone is one of the world's leading lighting designers. Hugh Vanstone is from the UK. Hugh Vanstone has lit more than 160 productions. Hugh Vanstone attended school where he is from.", "question": "Based on the above information, is the following statement true, false, or uncertain? Hugh Vanstone has lit 170 productions.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_528", "context": "Hugh Vanstone is one of the world's leading lighting designers. Hugh Vanstone is from the UK. Hugh Vanstone has lit more than 160 productions. Hugh Vanstone attended school where he is from.", "question": "Based on the above information, is the following statement true, false, or uncertain? Hugh Vanstone attended school in the US.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_529", "context": "No man can run faster than Bolt. Superman is not a man.", "question": "Based on the above information, is the following statement true, false, or uncertain? Superman can run faster than Bolt.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_530", "context": "Donald Ervin Knuth is an American computer scientist, mathematician, and Professor Emeritus at Stanford University. Knuth has been called the \"father of the analysis of algorithms\".", "question": "Based on the above information, is the following statement true, false, or uncertain? An American scientist has been called the \"father of the analysis of algorithms\".", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_531", "context": "Donald Ervin Knuth is an American computer scientist, mathematician, and Professor Emeritus at Stanford University. Knuth has been called the \"father of the analysis of algorithms\".", "question": "Based on the above information, is the following statement true, false, or uncertain? A mathematician has been called the \"father of the analysis of algorithms\".", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_532", "context": "Donald Ervin Knuth is an American computer scientist, mathematician, and Professor Emeritus at Stanford University. Knuth has been called the \"father of the analysis of algorithms\".", "question": "Based on the above information, is the following statement true, false, or uncertain? Donald Knuth is a well-known figure in the field of artificial intelligence .", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_533", "context": "Neocrepidodera Corpulentas are flea beetles or moths. The species Neocrepidodera Corpulenta is in the Chrysomelidae family. There are no moths within the Chrysomelidae family.", "question": "Based on the above information, is the following statement true, false, or uncertain? There is a flea beetle within the Chrysomelidae family.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_534", "context": "Neocrepidodera Corpulentas are flea beetles or moths. The species Neocrepidodera Corpulenta is in the Chrysomelidae family. There are no moths within the Chrysomelidae family.", "question": "Based on the above information, is the following statement true, false, or uncertain? There are no flea beetles within the Chrysomelidae family.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_535", "context": "Carrozzeria Colli is a Milanese coachbuilder company that was established by Giuseppe Colli in 1931. Carrozzeria Colli is a company that specialized in using aluminum. The first automobiles built by Carrozzeria Colli were racing cars. Some racing cars built by Carrozzeria Colli used Fiat 1100 mechanicals and chasis. Carrozzeria Colli worked for airforces. Carrozzeria Colli made car bodies.", "question": "Based on the above information, is the following statement true, false, or uncertain? Carrozzeria Colli made car bodies in 1931.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_536", "context": "Carrozzeria Colli is a Milanese coachbuilder company that was established by Giuseppe Colli in 1931. Carrozzeria Colli is a company that specialized in using aluminum. The first automobiles built by Carrozzeria Colli were racing cars. Some racing cars built by Carrozzeria Colli used Fiat 1100 mechanicals and chasis. Carrozzeria Colli worked for airforces. Carrozzeria Colli made car bodies.", "question": "Based on the above information, is the following statement true, false, or uncertain? Carrozzeria Colli built airplanes during World War II.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_537", "context": "Carrozzeria Colli is a Milanese coachbuilder company that was established by Giuseppe Colli in 1931. Carrozzeria Colli is a company that specialized in using aluminum. The first automobiles built by Carrozzeria Colli were racing cars. Some racing cars built by Carrozzeria Colli used Fiat 1100 mechanicals and chasis. Carrozzeria Colli worked for airforces. Carrozzeria Colli made car bodies.", "question": "Based on the above information, is the following statement true, false, or uncertain? Giuseppe Colli established a company that made car bodies.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_538", "context": "Carrozzeria Colli is a Milanese coachbuilder company that was established by Giuseppe Colli in 1931. Carrozzeria Colli is a company that specialized in using aluminum. The first automobiles built by Carrozzeria Colli were racing cars. Some racing cars built by Carrozzeria Colli used Fiat 1100 mechanicals and chasis. Carrozzeria Colli worked for airforces. Carrozzeria Colli made car bodies.", "question": "Based on the above information, is the following statement true, false, or uncertain? Giuseppe Colli established a Milanese coachbuilder company that specialized in using aluminum.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_539", "context": "Carrozzeria Colli is a Milanese coachbuilder company that was established by Giuseppe Colli in 1931. Carrozzeria Colli is a company that specialized in using aluminum. The first automobiles built by Carrozzeria Colli were racing cars. Some racing cars built by Carrozzeria Colli used Fiat 1100 mechanicals and chasis. Carrozzeria Colli worked for airforces. Carrozzeria Colli made car bodies.", "question": "Based on the above information, is the following statement true, false, or uncertain? The first automobiles built by Carrozzeria Colli were built using Fiat 1100 mechanicals and chasis.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_540", "context": "John will go to the cinema if and only if Jack goes to the cinema today. Jack will go to the cinema if and only if Iron Man is on and the weather is not bad today. Some days in March have bad weather. Iron man is on. It's March now.", "question": "Based on the above information, is the following statement true, false, or uncertain? John will go to the cinema.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_541", "context": "John will go to the cinema if and only if Jack goes to the cinema today. Jack will go to the cinema if and only if Iron Man is on and the weather is not bad today. Some days in March have bad weather. Iron man is on. It's March now.", "question": "Based on the above information, is the following statement true, false, or uncertain? The weather is good today.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_542", "context": "Quiksilver sells sportswear, clothing, footwear, and accessories. Flannels are a type of clothing. Joe owns an item fron Quiksilver.", "question": "Based on the above information, is the following statement true, false, or uncertain? Quiksilver sells beer.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_543", "context": "Quiksilver sells sportswear, clothing, footwear, and accessories. Flannels are a type of clothing. Joe owns an item fron Quiksilver.", "question": "Based on the above information, is the following statement true, false, or uncertain? Joe owns a flannel.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_544", "context": "Quiksilver sells sportswear, clothing, footwear, and accessories. Flannels are a type of clothing. Joe owns an item fron Quiksilver.", "question": "Based on the above information, is the following statement true, false, or uncertain? Joe owns at least one a piece of sportswear, clothing, footwear, or accessory", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_545", "context": "No video games released by Nintendo support the PS4 platform. All video games in the Pokemon series are released by Nintendo. All video games in the FIFA series support the PS4 platform. All video games supporting users to simulate playing soccer games online are in the FIFA series. The video game named “Be Lionel” is in the Pokemon series or supports users to simulate playing football games online.", "question": "Based on the above information, is the following statement true, false, or uncertain? The video game \"Be Lionel\" is in the pokemon series.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_546", "context": "No video games released by Nintendo support the PS4 platform. All video games in the Pokemon series are released by Nintendo. All video games in the FIFA series support the PS4 platform. All video games supporting users to simulate playing soccer games online are in the FIFA series. The video game named “Be Lionel” is in the Pokemon series or supports users to simulate playing football games online.", "question": "Based on the above information, is the following statement true, false, or uncertain? The video game named “Be Lionel” is not in the FIFA series or supports the PS4 platform.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_547", "context": "No video games released by Nintendo support the PS4 platform. All video games in the Pokemon series are released by Nintendo. All video games in the FIFA series support the PS4 platform. All video games supporting users to simulate playing soccer games online are in the FIFA series. The video game named “Be Lionel” is in the Pokemon series or supports users to simulate playing football games online.", "question": "Based on the above information, is the following statement true, false, or uncertain? The video game named “Be Lionel” is in the FIFA series or supports the PS4 platform.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_548", "context": "No video games released by Nintendo support the PS4 platform. All video games in the Pokemon series are released by Nintendo. All video games in the FIFA series support the PS4 platform. All video games supporting users to simulate playing soccer games online are in the FIFA series. The video game named “Be Lionel” is in the Pokemon series or supports users to simulate playing football games online.", "question": "Based on the above information, is the following statement true, false, or uncertain? The video game named “Be Lionel” is not in the FIFA or Pokemon series.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_549", "context": "No payment cards issued by Russian banks can be used with ApplePay. All MIR payment cards are issued by Russian banks. Some international payment cards can be used with ApplePay. Social payments in Russia can only be transferred to MIR payment cards. Bank of America payment cards can be used with ApplePay.", "question": "Based on the above information, is the following statement true, false, or uncertain? Bank of America payment cards are international.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_550", "context": "No payment cards issued by Russian banks can be used with ApplePay. All MIR payment cards are issued by Russian banks. Some international payment cards can be used with ApplePay. Social payments in Russia can only be transferred to MIR payment cards. Bank of America payment cards can be used with ApplePay.", "question": "Based on the above information, is the following statement true, false, or uncertain? Bank of America payment cards are international and can be used to transfer social payments in Russia.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_551", "context": "No payment cards issued by Russian banks can be used with ApplePay. All MIR payment cards are issued by Russian banks. Some international payment cards can be used with ApplePay. Social payments in Russia can only be transferred to MIR payment cards. Bank of America payment cards can be used with ApplePay.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Bank of America payment cards are international or issued by Russian banks, then they can not be used to transfer social payments in Russia.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_552", "context": "The Lumina APV is produced by Chevrolet. The Astro is a van produced by Chevrolet. Cars produced by Chevrolet are either cars or vans.", "question": "Based on the above information, is the following statement true, false, or uncertain? The Lumina APV is van.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_553", "context": "The Lumina APV is produced by Chevrolet. The Astro is a van produced by Chevrolet. Cars produced by Chevrolet are either cars or vans.", "question": "Based on the above information, is the following statement true, false, or uncertain? The Lumina APV is either a car or a van.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_554", "context": "The Lumina APV is produced by Chevrolet. The Astro is a van produced by Chevrolet. Cars produced by Chevrolet are either cars or vans.", "question": "Based on the above information, is the following statement true, false, or uncertain? The Astro is a van.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_555", "context": "The Lumina APV is produced by Chevrolet. The Astro is a van produced by Chevrolet. Cars produced by Chevrolet are either cars or vans.", "question": "Based on the above information, is the following statement true, false, or uncertain? The Astro is a car.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_556", "context": "Everyone who works in person is a commuter. People either work in person or work from home. Everyone who works from home has a relaxed schedule. George is either a commuter or has a home office setup. If George is either a person who works from home or has a home office setup, then George is not a person who works from home and a commuter.", "question": "Based on the above information, is the following statement true, false, or uncertain? George is a person who works from home.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_557", "context": "Everyone who works in person is a commuter. People either work in person or work from home. Everyone who works from home has a relaxed schedule. George is either a commuter or has a home office setup. If George is either a person who works from home or has a home office setup, then George is not a person who works from home and a commuter.", "question": "Based on the above information, is the following statement true, false, or uncertain? If George is not a person who works from home and a person who works in person, then George is neither a commuter nor a person who has a relaxed schedule.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_558", "context": "Everyone who works in person is a commuter. People either work in person or work from home. Everyone who works from home has a relaxed schedule. George is either a commuter or has a home office setup. If George is either a person who works from home or has a home office setup, then George is not a person who works from home and a commuter.", "question": "Based on the above information, is the following statement true, false, or uncertain? If George is either a person who has a home office setup and a person who works in person, or neither a person who has a home office setup nor a person who works in person, then George is either a person who works from home or a person who has a relaxed schedule.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_559", "context": "Jason Kramer is an American music supervisor. Some American radio personalities are also music supervisors. Anyone who hosts a show on a public radio station is a radio personality. Joe Rogan is a radio personality. Jason Kramer hosted a show on a public radio station.", "question": "Based on the above information, is the following statement true, false, or uncertain? Joe Rogan is American.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_560", "context": "Jason Kramer is an American music supervisor. Some American radio personalities are also music supervisors. Anyone who hosts a show on a public radio station is a radio personality. Joe Rogan is a radio personality. Jason Kramer hosted a show on a public radio station.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jason Kramer is a music supervisor.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_561", "context": "Jason Kramer is an American music supervisor. Some American radio personalities are also music supervisors. Anyone who hosts a show on a public radio station is a radio personality. Joe Rogan is a radio personality. Jason Kramer hosted a show on a public radio station.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jason Kramer is a radio personality.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_562", "context": "No coffee sold in Walmart is produced in France. All coffee supplied by the company is sold in Walmart. All coffee produced in Columbia is produced in France. All coffee favored by local residents is coffee produced in Columbia. All coffee with high prices is favored by local residents. Civet Coffee is not produced in Columbia and is cheap. Jamaica Blue is sold in Walmart or favored by local residents.", "question": "Based on the above information, is the following statement true, false, or uncertain? Civet Coffee is produced in France.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_563", "context": "No coffee sold in Walmart is produced in France. All coffee supplied by the company is sold in Walmart. All coffee produced in Columbia is produced in France. All coffee favored by local residents is coffee produced in Columbia. All coffee with high prices is favored by local residents. Civet Coffee is not produced in Columbia and is cheap. Jamaica Blue is sold in Walmart or favored by local residents.", "question": "Based on the above information, is the following statement true, false, or uncertain? Civet Coffee is not produced in France.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_564", "context": "No coffee sold in Walmart is produced in France. All coffee supplied by the company is sold in Walmart. All coffee produced in Columbia is produced in France. All coffee favored by local residents is coffee produced in Columbia. All coffee with high prices is favored by local residents. Civet Coffee is not produced in Columbia and is cheap. Jamaica Blue is sold in Walmart or favored by local residents.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jamaica Blue is expensive and supplied by the company.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_565", "context": "No coffee sold in Walmart is produced in France. All coffee supplied by the company is sold in Walmart. All coffee produced in Columbia is produced in France. All coffee favored by local residents is coffee produced in Columbia. All coffee with high prices is favored by local residents. Civet Coffee is not produced in Columbia and is cheap. Jamaica Blue is sold in Walmart or favored by local residents.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jamaica Blue is not expensive and is not supplied by the company.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_566", "context": "There are two places named Galicia: either in Spain or in Poland. Spain is in Europe. Poland is in Europe. Rochelle lives in Europe. Dominique does not live in Europe. Alfonso lives in Galicia.", "question": "Based on the above information, is the following statement true, false, or uncertain? Rochelle lives in Galicia.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_567", "context": "There are two places named Galicia: either in Spain or in Poland. Spain is in Europe. Poland is in Europe. Rochelle lives in Europe. Dominique does not live in Europe. Alfonso lives in Galicia.", "question": "Based on the above information, is the following statement true, false, or uncertain? Dominique does not live in Spain.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_568", "context": "There are two places named Galicia: either in Spain or in Poland. Spain is in Europe. Poland is in Europe. Rochelle lives in Europe. Dominique does not live in Europe. Alfonso lives in Galicia.", "question": "Based on the above information, is the following statement true, false, or uncertain? Alfonso lives in Europe.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_569", "context": "Ralph Hammerthaler was born in Wasserburg am Inn. Wasserburg am Inn is in Germany. Germany is in Europe. Ralph Hammerthaler is a German writer. Ralph Hammerthaler was born in 1965.", "question": "Based on the above information, is the following statement true, false, or uncertain? Ralph Hammerthaler is a writer born in Asia.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_570", "context": "Ralph Hammerthaler was born in Wasserburg am Inn. Wasserburg am Inn is in Germany. Germany is in Europe. Ralph Hammerthaler is a German writer. Ralph Hammerthaler was born in 1965.", "question": "Based on the above information, is the following statement true, false, or uncertain? Ralph Hammerthaler lives in Germany.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_571", "context": "All books written by Tomas have sold more than 1 million copies. Some books that have won Hugo Awards are written by Tomas. All books about the future are inspired by Shakespeare. 2001 is a book either inspired from Shakespeare or it has sold more than 1 million copies. 2001 is a book that has either sold more than 1 million copies or it was written by Tomas.", "question": "Based on the above information, is the following statement true, false, or uncertain? 2001 is a book that has won a Hugo Award.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_572", "context": "All books written by Tomas have sold more than 1 million copies. Some books that have won Hugo Awards are written by Tomas. All books about the future are inspired by Shakespeare. 2001 is a book either inspired from Shakespeare or it has sold more than 1 million copies. 2001 is a book that has either sold more than 1 million copies or it was written by Tomas.", "question": "Based on the above information, is the following statement true, false, or uncertain? 2001 is a book that has won a Hugo Award and is about the future.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_573", "context": "All books written by Tomas have sold more than 1 million copies. Some books that have won Hugo Awards are written by Tomas. All books about the future are inspired by Shakespeare. 2001 is a book either inspired from Shakespeare or it has sold more than 1 million copies. 2001 is a book that has either sold more than 1 million copies or it was written by Tomas.", "question": "Based on the above information, is the following statement true, false, or uncertain? If 2001 either has won a Hugo Award and is about the future, or neither has won a Hugo Award nor is about the future, then 2001 has neither won a Hugo Award nor is written by Tomas.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_574", "context": "No grass is food. All meadows are grass. All edible things are food. All fruits are edible. All lemons are fruit. Grapes are not edible and lemons. Bananas are grass or fruit.", "question": "Based on the above information, is the following statement true, false, or uncertain? Grapes are a food.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_575", "context": "No grass is food. All meadows are grass. All edible things are food. All fruits are edible. All lemons are fruit. Grapes are not edible and lemons. Bananas are grass or fruit.", "question": "Based on the above information, is the following statement true, false, or uncertain? Grapes are not a food.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_576", "context": "No grass is food. All meadows are grass. All edible things are food. All fruits are edible. All lemons are fruit. Grapes are not edible and lemons. Bananas are grass or fruit.", "question": "Based on the above information, is the following statement true, false, or uncertain? Bananas are a lemon and meadow.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_577", "context": "No grass is food. All meadows are grass. All edible things are food. All fruits are edible. All lemons are fruit. Grapes are not edible and lemons. Bananas are grass or fruit.", "question": "Based on the above information, is the following statement true, false, or uncertain? Bananas are not both a lemon and a meadow.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_578", "context": "The Golden State Warriors are a team from San Francisco. The Golden State Warriors won the NBA finals. All teams attending the NBA finals have more than thirty years of history. Boston Celtics are a team that lost the NBA finals. If a team wins the NBA finals, then they will have more income. If a team wins or loses at the NBA finals, then they are attending the finals.", "question": "Based on the above information, is the following statement true, false, or uncertain? The Boston Celtics is from San Francisco.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_579", "context": "The Golden State Warriors are a team from San Francisco. The Golden State Warriors won the NBA finals. All teams attending the NBA finals have more than thirty years of history. Boston Celtics are a team that lost the NBA finals. If a team wins the NBA finals, then they will have more income. If a team wins or loses at the NBA finals, then they are attending the finals.", "question": "Based on the above information, is the following statement true, false, or uncertain? The Boston Celtics has more than 30 years of experience.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_580", "context": "The Golden State Warriors are a team from San Francisco. The Golden State Warriors won the NBA finals. All teams attending the NBA finals have more than thirty years of history. Boston Celtics are a team that lost the NBA finals. If a team wins the NBA finals, then they will have more income. If a team wins or loses at the NBA finals, then they are attending the finals.", "question": "Based on the above information, is the following statement true, false, or uncertain? The Golden State Warriors will have more income for gate receipts.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_581", "context": "Maya will play violin if and only if she never injures her fingers. Volleyball players can injure their ankle, fingers, or shoulder. Maya is a volleyball player.", "question": "Based on the above information, is the following statement true, false, or uncertain? Maya will not play violin.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_582", "context": "All devices belonging to the company are connected to Google Home. All devices with the company logo belong to the company. A device is either with the company logo or belongs to employees. All devices belonging to employees are available to connect to the company's wifi. All devices connected to Google Home are controlled by managers. All devices that connect to the company's wifi are easy to operate. All devices that are easy to operate are produced after 2020. IPod1 is produced before 2020.", "question": "Based on the above information, is the following statement true, false, or uncertain? IPod1 is controlled by managers.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_583", "context": "All devices belonging to the company are connected to Google Home. All devices with the company logo belong to the company. A device is either with the company logo or belongs to employees. All devices belonging to employees are available to connect to the company's wifi. All devices connected to Google Home are controlled by managers. All devices that connect to the company's wifi are easy to operate. All devices that are easy to operate are produced after 2020. IPod1 is produced before 2020.", "question": "Based on the above information, is the following statement true, false, or uncertain? IPod1 is either produced after 2020 or controlled by managers.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_584", "context": "All devices belonging to the company are connected to Google Home. All devices with the company logo belong to the company. A device is either with the company logo or belongs to employees. All devices belonging to employees are available to connect to the company's wifi. All devices connected to Google Home are controlled by managers. All devices that connect to the company's wifi are easy to operate. All devices that are easy to operate are produced after 2020. IPod1 is produced before 2020.", "question": "Based on the above information, is the following statement true, false, or uncertain? IPod1 is not with the company logo, and managers do not control it.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_585", "context": "All devices belonging to the company are connected to Google Home. All devices with the company logo belong to the company. A device is either with the company logo or belongs to employees. All devices belonging to employees are available to connect to the company's wifi. All devices connected to Google Home are controlled by managers. All devices that connect to the company's wifi are easy to operate. All devices that are easy to operate are produced after 2020. IPod1 is produced before 2020.", "question": "Based on the above information, is the following statement true, false, or uncertain? IPod1 is either with the company logo or controlled by managers.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_586", "context": "All CD players are delicate mechanisms. No delicate mechanisms are suitable toys for children.", "question": "Based on the above information, is the following statement true, false, or uncertain? Some CD players are suitable toys for children.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_587", "context": "All mammals are living beings. All elephants are mammals. All baby elephants are elephants. Some baby elephants are sleepy. If Jumbo is a living being, then Jumbo is not an elephant or a mammal. If Jumbo is sleepy, then Jumbo is a baby elephant or an elephant.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jumbo is sleepy.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_588", "context": "All mammals are living beings. All elephants are mammals. All baby elephants are elephants. Some baby elephants are sleepy. If Jumbo is a living being, then Jumbo is not an elephant or a mammal. If Jumbo is sleepy, then Jumbo is a baby elephant or an elephant.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jumbo is not sleepy.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_589", "context": "All mammals are living beings. All elephants are mammals. All baby elephants are elephants. Some baby elephants are sleepy. If Jumbo is a living being, then Jumbo is not an elephant or a mammal. If Jumbo is sleepy, then Jumbo is a baby elephant or an elephant.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jumbo is a living being.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_590", "context": "All mammals are living beings. All elephants are mammals. All baby elephants are elephants. Some baby elephants are sleepy. If Jumbo is a living being, then Jumbo is not an elephant or a mammal. If Jumbo is sleepy, then Jumbo is a baby elephant or an elephant.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jumbo is neither sleepy nor a baby elephant.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_591", "context": "All mammals are living beings. All elephants are mammals. All baby elephants are elephants. Some baby elephants are sleepy. If Jumbo is a living being, then Jumbo is not an elephant or a mammal. If Jumbo is sleepy, then Jumbo is a baby elephant or an elephant.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jumbo is not sleepy or an elephant.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_592", "context": "No faculty does homework. All students do homework. All kids are students. If someone works at a school, then they are faculty. If Jill works at a school or is a teacher, then Jill works at a school.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jill works at a school.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_593", "context": "No faculty does homework. All students do homework. All kids are students. If someone works at a school, then they are faculty. If Jill works at a school or is a teacher, then Jill works at a school.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jill is a kid.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_594", "context": "No faculty does homework. All students do homework. All kids are students. If someone works at a school, then they are faculty. If Jill works at a school or is a teacher, then Jill works at a school.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jill is not a kid.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_595", "context": "Either Max listens to classical music or Max listens to rap. All the songs that Max listens to that are classical music are from the 12th century. If the song Max listens to is rap, then the song is from Kanye West. If a songs is from Kanye West, then the song is full of lyrics. All songs that are full of lyrics need to be written with words If “As it was” by Harry Styles is classical music that Max listens to or from the 12th century, then “As it was” by Harry Styles is either classical music that Max listens to, or the songs are from 12th century.", "question": "Based on the above information, is the following statement true, false, or uncertain? “As it was” by Harry Styles needs to be written with words.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_596", "context": "Either Max listens to classical music or Max listens to rap. All the songs that Max listens to that are classical music are from the 12th century. If the song Max listens to is rap, then the song is from Kanye West. If a songs is from Kanye West, then the song is full of lyrics. All songs that are full of lyrics need to be written with words If “As it was” by Harry Styles is classical music that Max listens to or from the 12th century, then “As it was” by Harry Styles is either classical music that Max listens to, or the songs are from 12th century.", "question": "Based on the above information, is the following statement true, false, or uncertain? \"As it was” by Harry Styles is a song from the 12th century.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_597", "context": "Either Max listens to classical music or Max listens to rap. All the songs that Max listens to that are classical music are from the 12th century. If the song Max listens to is rap, then the song is from Kanye West. If a songs is from Kanye West, then the song is full of lyrics. All songs that are full of lyrics need to be written with words If “As it was” by Harry Styles is classical music that Max listens to or from the 12th century, then “As it was” by Harry Styles is either classical music that Max listens to, or the songs are from 12th century.", "question": "Based on the above information, is the following statement true, false, or uncertain? \"As it was” by Harry Styles is not a song from Kanye West and needs to be written with words.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_598", "context": "\"Your Woman\" is a song by British one-man band White Town. \"Your Woman\" song peaked at No. 1 on the UK Singles Chart. If a song peaked at No.1 at a cetain place, then it was extremely popular. \"Your Woman\" also peaked No. 1 in Iceland, Israel and Spain.", "question": "Based on the above information, is the following statement true, false, or uncertain? \"Your Woman\" was extremely popular.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_599", "context": "\"Your Woman\" is a song by British one-man band White Town. \"Your Woman\" song peaked at No. 1 on the UK Singles Chart. If a song peaked at No.1 at a cetain place, then it was extremely popular. \"Your Woman\" also peaked No. 1 in Iceland, Israel and Spain.", "question": "Based on the above information, is the following statement true, false, or uncertain? White Town did not produce any popular song.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_600", "context": "\"Your Woman\" is a song by British one-man band White Town. \"Your Woman\" song peaked at No. 1 on the UK Singles Chart. If a song peaked at No.1 at a cetain place, then it was extremely popular. \"Your Woman\" also peaked No. 1 in Iceland, Israel and Spain.", "question": "Based on the above information, is the following statement true, false, or uncertain? White Town was a successful band.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_601", "context": "All people who limp often and regularly have long-term medical issues with underlying causes. If people have long-term medical issues with underlying causes, then they are not often spry and energetic. People either stay indoors and rest a lot at home or people are often tired and disinterested in their activities. If people stay indoors and rest a lot at home, then they do not visit the gym at least once a day. If Mark either limps often and regularly or is often spry and energetic, then Mark limps often and regularly or is often tired and disinterested in his activities.", "question": "Based on the above information, is the following statement true, false, or uncertain? Mark limps often and regularly.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_602", "context": "All people who limp often and regularly have long-term medical issues with underlying causes. If people have long-term medical issues with underlying causes, then they are not often spry and energetic. People either stay indoors and rest a lot at home or people are often tired and disinterested in their activities. If people stay indoors and rest a lot at home, then they do not visit the gym at least once a day. If Mark either limps often and regularly or is often spry and energetic, then Mark limps often and regularly or is often tired and disinterested in his activities.", "question": "Based on the above information, is the following statement true, false, or uncertain? Mark visits the gym at least once a day.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_603", "context": "All people who limp often and regularly have long-term medical issues with underlying causes. If people have long-term medical issues with underlying causes, then they are not often spry and energetic. People either stay indoors and rest a lot at home or people are often tired and disinterested in their activities. If people stay indoors and rest a lot at home, then they do not visit the gym at least once a day. If Mark either limps often and regularly or is often spry and energetic, then Mark limps often and regularly or is often tired and disinterested in his activities.", "question": "Based on the above information, is the following statement true, false, or uncertain? Mark stays indoors and rests regularly at his home or visits the gym at least once a day.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_604", "context": "If two soccer teams score the same number of goals in one UCL final during the regular time, they need to play for the extra time. If two soccer teams score the same number of goals in one UCL final during both the regular time and extra time, they need to play the penalty shoot-out. Real Madrid and Atlético Madrid both scored one goal in 2016 UCL final during the regular time. Real Madrid and Atlético Madrid both scored zero goals in 2016 UCL final during the extra time.", "question": "Based on the above information, is the following statement true, false, or uncertain? Real Madrid and Atlético Madrid needed to play a penalty shoot-out in 2016 UCL final.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_605", "context": "If two soccer teams score the same number of goals in one UCL final during the regular time, they need to play for the extra time. If two soccer teams score the same number of goals in one UCL final during both the regular time and extra time, they need to play the penalty shoot-out. Real Madrid and Atlético Madrid both scored one goal in 2016 UCL final during the regular time. Real Madrid and Atlético Madrid both scored zero goals in 2016 UCL final during the extra time.", "question": "Based on the above information, is the following statement true, false, or uncertain? Real Madrid and Atlético Madrid did not need to play a penalty shoot-out in 2016 UCL final.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_606", "context": "System 7 is a UK-based electronic dance music band. Steve Hillage and Miquette Giraudy formed System 7. Steve Hillage and Miquette Giraudy are former members of the band Gong. Electric dance music bands are bands. System 7 has released several club singles. Club singles are not singles.", "question": "Based on the above information, is the following statement true, false, or uncertain? System 7 was formed by former members of Gong.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_607", "context": "System 7 is a UK-based electronic dance music band. Steve Hillage and Miquette Giraudy formed System 7. Steve Hillage and Miquette Giraudy are former members of the band Gong. Electric dance music bands are bands. System 7 has released several club singles. Club singles are not singles.", "question": "Based on the above information, is the following statement true, false, or uncertain? System 7 has released several singles.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_608", "context": "System 7 is a UK-based electronic dance music band. Steve Hillage and Miquette Giraudy formed System 7. Steve Hillage and Miquette Giraudy are former members of the band Gong. Electric dance music bands are bands. System 7 has released several club singles. Club singles are not singles.", "question": "Based on the above information, is the following statement true, false, or uncertain? System 7 is not a band.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_609", "context": "A summarization model is always faithful if it uses content from the input documents. Extractive models are a kind of summarization models. Extractive model can only use content from the input documents.", "question": "Based on the above information, is the following statement true, false, or uncertain? Extractive models are always faithful.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_610", "context": "A summarization model is always faithful if it uses content from the input documents. Extractive models are a kind of summarization models. Extractive model can only use content from the input documents.", "question": "Based on the above information, is the following statement true, false, or uncertain? Extractive models are not always faithful.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_611", "context": "If people practice coding questions, then they are not studying to go to medical school to become a doctor. If people want to work in the software engineering industry, then they practice coding questions. If people enjoy healthcare fields and want to help people with medical issues, then they are studying to go to medical school to become a doctor. If people grew up with parents who worked as doctors, then they enjoy healthcare fields and want to help people with medical issues. If people study hard, then they grew up with parents who worked as doctors. If Robin neither enjoys healthcare fields and wants to help people with medical issues nor grew up with parents who worked as doctors, then Robin is either a person who studies hard or grew up with parents who worked as doctors.", "question": "Based on the above information, is the following statement true, false, or uncertain? Robin is a person who studies hard.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_612", "context": "If people practice coding questions, then they are not studying to go to medical school to become a doctor. If people want to work in the software engineering industry, then they practice coding questions. If people enjoy healthcare fields and want to help people with medical issues, then they are studying to go to medical school to become a doctor. If people grew up with parents who worked as doctors, then they enjoy healthcare fields and want to help people with medical issues. If people study hard, then they grew up with parents who worked as doctors. If Robin neither enjoys healthcare fields and wants to help people with medical issues nor grew up with parents who worked as doctors, then Robin is either a person who studies hard or grew up with parents who worked as doctors.", "question": "Based on the above information, is the following statement true, false, or uncertain? Robin practices coding questions and wants to work in the software engineering industry.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_613", "context": "If people practice coding questions, then they are not studying to go to medical school to become a doctor. If people want to work in the software engineering industry, then they practice coding questions. If people enjoy healthcare fields and want to help people with medical issues, then they are studying to go to medical school to become a doctor. If people grew up with parents who worked as doctors, then they enjoy healthcare fields and want to help people with medical issues. If people study hard, then they grew up with parents who worked as doctors. If Robin neither enjoys healthcare fields and wants to help people with medical issues nor grew up with parents who worked as doctors, then Robin is either a person who studies hard or grew up with parents who worked as doctors.", "question": "Based on the above information, is the following statement true, false, or uncertain? Robin neither practices coding questions nor works to work in the software engineering industry.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_614", "context": "If people go to the spa at least once a week, then they are not people who are miserly and need to save a large portion of their income. People are either miserly and need to save a large portion of their income, or people that frivolously spend a lot of money every time they go out. If people frivolously spend a lot of money every time they go out, then they value quality manufacturing and luxury items. If people value quality manufacturing and luxury items, then they enjoy shopping for materialistic items in their free time. If Jess is not miserly and needs to save a large portion of their income, then Jess does not value quality manufacturing and luxury items. If Jess either values quality manufacturing and luxury items or, if he does not, then he is miserly and needs to save a large portion of his income, then Jess frivolously spends a lot of money every time he goes out.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jess frivolously spends a lot of money every time they go out.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_615", "context": "If people go to the spa at least once a week, then they are not people who are miserly and need to save a large portion of their income. People are either miserly and need to save a large portion of their income, or people that frivolously spend a lot of money every time they go out. If people frivolously spend a lot of money every time they go out, then they value quality manufacturing and luxury items. If people value quality manufacturing and luxury items, then they enjoy shopping for materialistic items in their free time. If Jess is not miserly and needs to save a large portion of their income, then Jess does not value quality manufacturing and luxury items. If Jess either values quality manufacturing and luxury items or, if he does not, then he is miserly and needs to save a large portion of his income, then Jess frivolously spends a lot of money every time he goes out.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jess either enjoys shopping for materialistic items in his free time or, if he does not, then he goes to the spa at least once a week.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_616", "context": "If people go to the spa at least once a week, then they are not people who are miserly and need to save a large portion of their income. People are either miserly and need to save a large portion of their income, or people that frivolously spend a lot of money every time they go out. If people frivolously spend a lot of money every time they go out, then they value quality manufacturing and luxury items. If people value quality manufacturing and luxury items, then they enjoy shopping for materialistic items in their free time. If Jess is not miserly and needs to save a large portion of their income, then Jess does not value quality manufacturing and luxury items. If Jess either values quality manufacturing and luxury items or, if he does not, then he is miserly and needs to save a large portion of his income, then Jess frivolously spends a lot of money every time he goes out.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Jess either enjoys shopping for materialistic items in his free time or, if he does not, then he goes to the spa at least once a week, then Jess neither values quality manufacturing and luxury items nor goes to the spa at least once a week.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_617", "context": "The indie pop band Phoenix has released 6 albums. Phoenix's album \"Wolfgang Amadeus Phoenix\" sold over 500,000 copies. A certified gold album or single is one which sold over half a million copies. \"1901\" is a single from Phoenix's album \"Wolfgang Amadeus Phoenix.\" Over 400,000 copies of \"1901\" have been sold.", "question": "Based on the above information, is the following statement true, false, or uncertain? The album \"Wolfgang Amadeus Phoenix\" is a certified gold album.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_618", "context": "The indie pop band Phoenix has released 6 albums. Phoenix's album \"Wolfgang Amadeus Phoenix\" sold over 500,000 copies. A certified gold album or single is one which sold over half a million copies. \"1901\" is a single from Phoenix's album \"Wolfgang Amadeus Phoenix.\" Over 400,000 copies of \"1901\" have been sold.", "question": "Based on the above information, is the following statement true, false, or uncertain? The single \"1901\" is a certified gold single.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_619", "context": "Peter Parker is a either a superhero or a civilian. The Hulk is a destroyer. The Hulk wakes up when he is angry. If the Hulk wakes up, then he will break a bridge. Thor is a god. Thor will break a bridge when he is happy. A god is not a destroyer and a destroyer is not a god. Peter Parker wears a uniform when he is a superhero. Peter Parker is not a civilian if and only if a destroyer is breaking a bridge. If Thor is happy, the Hulk is angry.", "question": "Based on the above information, is the following statement true, false, or uncertain? If the Hulk does not wake up, then Thor is not happy.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_620", "context": "Peter Parker is a either a superhero or a civilian. The Hulk is a destroyer. The Hulk wakes up when he is angry. If the Hulk wakes up, then he will break a bridge. Thor is a god. Thor will break a bridge when he is happy. A god is not a destroyer and a destroyer is not a god. Peter Parker wears a uniform when he is a superhero. Peter Parker is not a civilian if and only if a destroyer is breaking a bridge. If Thor is happy, the Hulk is angry.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Thor is happy, then Peter Parker wears a uniform.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_621", "context": "Peter Parker is a either a superhero or a civilian. The Hulk is a destroyer. The Hulk wakes up when he is angry. If the Hulk wakes up, then he will break a bridge. Thor is a god. Thor will break a bridge when he is happy. A god is not a destroyer and a destroyer is not a god. Peter Parker wears a uniform when he is a superhero. Peter Parker is not a civilian if and only if a destroyer is breaking a bridge. If Thor is happy, the Hulk is angry.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Thor is not happy, then no bridge will be broken.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_622", "context": "Diethylcarbamazine is a medication discovered in the year 1947. Diethylcarbamazine can be used to treat river blindness. The only preferred treatment for river blindness is ivermectin. Diethylcarbamazine is not ivermectin.", "question": "Based on the above information, is the following statement true, false, or uncertain? Diethylcarbamazine is not preferred for the treatment of river blindness.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_623", "context": "Diethylcarbamazine is a medication discovered in the year 1947. Diethylcarbamazine can be used to treat river blindness. The only preferred treatment for river blindness is ivermectin. Diethylcarbamazine is not ivermectin.", "question": "Based on the above information, is the following statement true, false, or uncertain? Diethylcarbamazine was often used to treat river blindness.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_624", "context": "Diethylcarbamazine is a medication discovered in the year 1947. Diethylcarbamazine can be used to treat river blindness. The only preferred treatment for river blindness is ivermectin. Diethylcarbamazine is not ivermectin.", "question": "Based on the above information, is the following statement true, false, or uncertain? Diethylcarbamazine is used in the treatment of filariasis.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_625", "context": "All univariate analyses use a generalized linear model. All multivoxel (pattern) analyses are implementing machine learning algorithms. All implementing machine learning algorithms are to learn and classify multivariate data. The Latent Dirichlet allocation model uses a generalized linear model or a univariate analysis. If the Latent Dirichlet allocation model does not learn and classify multivariate data, then the Latent Dirichlet allocation model uses a generalized linear model and a multivoxel (pattern) analysis.", "question": "Based on the above information, is the following statement true, false, or uncertain? Latent Dirichlet allocation model is implementing machine learning algorithms.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_626", "context": "All univariate analyses use a generalized linear model. All multivoxel (pattern) analyses are implementing machine learning algorithms. All implementing machine learning algorithms are to learn and classify multivariate data. The Latent Dirichlet allocation model uses a generalized linear model or a univariate analysis. If the Latent Dirichlet allocation model does not learn and classify multivariate data, then the Latent Dirichlet allocation model uses a generalized linear model and a multivoxel (pattern) analysis.", "question": "Based on the above information, is the following statement true, false, or uncertain? Latent Dirichlet allocation model uses a generalized linear model and learns and classifies multivariate data.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_627", "context": "All univariate analyses use a generalized linear model. All multivoxel (pattern) analyses are implementing machine learning algorithms. All implementing machine learning algorithms are to learn and classify multivariate data. The Latent Dirichlet allocation model uses a generalized linear model or a univariate analysis. If the Latent Dirichlet allocation model does not learn and classify multivariate data, then the Latent Dirichlet allocation model uses a generalized linear model and a multivoxel (pattern) analysis.", "question": "Based on the above information, is the following statement true, false, or uncertain? Latent Dirichlet allocation model either uses a generalized linear model or learns and classifies multivariate data.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_628", "context": "If something requires a medical diagnosis, then lab tests or imaging is required. All rare diseases require a medical diagnosis. If something is mild, then no lab tests or imaging is required. All blood cancers are rare diseases. All Leukemia is blood cancer. If bladder cancer is either both blood cancer and Leukemia or neither blood cancer nor Leukemia, then bladder cancer is Leukemia.", "question": "Based on the above information, is the following statement true, false, or uncertain? Bladder cancer is mild.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_629", "context": "If something requires a medical diagnosis, then lab tests or imaging is required. All rare diseases require a medical diagnosis. If something is mild, then no lab tests or imaging is required. All blood cancers are rare diseases. All Leukemia is blood cancer. If bladder cancer is either both blood cancer and Leukemia or neither blood cancer nor Leukemia, then bladder cancer is Leukemia.", "question": "Based on the above information, is the following statement true, false, or uncertain? Bladder cancer is Leukemia.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_630", "context": "If something requires a medical diagnosis, then lab tests or imaging is required. All rare diseases require a medical diagnosis. If something is mild, then no lab tests or imaging is required. All blood cancers are rare diseases. All Leukemia is blood cancer. If bladder cancer is either both blood cancer and Leukemia or neither blood cancer nor Leukemia, then bladder cancer is Leukemia.", "question": "Based on the above information, is the following statement true, false, or uncertain? Bladder cancer is either a rare disease or mild.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_631", "context": "No precious metals aren't scarce. All non-rare earth metals are not scarce. Either non-rare earth metals or rare earth metals. All rare earth metals can be used for batteries. All rare earth metals are essential for electric vehicles. Lithium is neither a non-rare earth metal nor essential for electric vehicles.", "question": "Based on the above information, is the following statement true, false, or uncertain? Lithium is a rare earth metal.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_632", "context": "No precious metals aren't scarce. All non-rare earth metals are not scarce. Either non-rare earth metals or rare earth metals. All rare earth metals can be used for batteries. All rare earth metals are essential for electric vehicles. Lithium is neither a non-rare earth metal nor essential for electric vehicles.", "question": "Based on the above information, is the following statement true, false, or uncertain? Lithium is a precious metal and is used for batteries.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_633", "context": "No precious metals aren't scarce. All non-rare earth metals are not scarce. Either non-rare earth metals or rare earth metals. All rare earth metals can be used for batteries. All rare earth metals are essential for electric vehicles. Lithium is neither a non-rare earth metal nor essential for electric vehicles.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Lithium is not essential for electric vehicles or a precious metal, then Lithium is not a non-rare earth metal or usable for batteries.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_634", "context": "If people own at least one pet, then they do not have tidy houses. If people grew up with childhood pets, then they own at least one pet. If people hire a maid or cleaning service, then they have tidy houses. If people live in the suburbs, then they have tidy houses. Jack either does not hire a maid or cleaning service or, if he does, then he does not own at least one pet.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jack lives in the suburbs.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_635", "context": "If people own at least one pet, then they do not have tidy houses. If people grew up with childhood pets, then they own at least one pet. If people hire a maid or cleaning service, then they have tidy houses. If people live in the suburbs, then they have tidy houses. Jack either does not hire a maid or cleaning service or, if he does, then he does not own at least one pet.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jack does not live in the suburbs.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_636", "context": "If people own at least one pet, then they do not have tidy houses. If people grew up with childhood pets, then they own at least one pet. If people hire a maid or cleaning service, then they have tidy houses. If people live in the suburbs, then they have tidy houses. Jack either does not hire a maid or cleaning service or, if he does, then he does not own at least one pet.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jack has a tidy house.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_637", "context": "If people own at least one pet, then they do not have tidy houses. If people grew up with childhood pets, then they own at least one pet. If people hire a maid or cleaning service, then they have tidy houses. If people live in the suburbs, then they have tidy houses. Jack either does not hire a maid or cleaning service or, if he does, then he does not own at least one pet.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jack neither lives in the suburbs nor owns at least one pet.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_638", "context": "If people own at least one pet, then they do not have tidy houses. If people grew up with childhood pets, then they own at least one pet. If people hire a maid or cleaning service, then they have tidy houses. If people live in the suburbs, then they have tidy houses. Jack either does not hire a maid or cleaning service or, if he does, then he does not own at least one pet.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jack grew up with childhood pets and lives in the suburbs.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_639", "context": "A bottle is either standing upright or toppled over. The bottle is not upright.", "question": "Based on the above information, is the following statement true, false, or uncertain? The bottle is toppled over.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_640", "context": "If people eat cereal and milk every day for breakfast, then they have very busy morning schedules every day. All young children below the age of ten eat cereal and milk every day for breakfast. People are either young children below the age of ten or have a lot of commitments they voluntarily signed up for. If people have a lot of commitments they voluntarily signed up for, then they are hardworking individuals with high ambitions and goals for the future. If people are hardworking individuals with high ambitions and goals for the future, then they are not good at staying organized and motivated. John either is both a hardworking individual with high ambitions and goals for the future and has busy morning schedules every day, or he is neither a hardworking individual with high ambitions and goals for the future nor does he have a busy morning schedule every day.", "question": "Based on the above information, is the following statement true, false, or uncertain? John is good at staying organized and motivated.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_641", "context": "If people eat cereal and milk every day for breakfast, then they have very busy morning schedules every day. All young children below the age of ten eat cereal and milk every day for breakfast. People are either young children below the age of ten or have a lot of commitments they voluntarily signed up for. If people have a lot of commitments they voluntarily signed up for, then they are hardworking individuals with high ambitions and goals for the future. If people are hardworking individuals with high ambitions and goals for the future, then they are not good at staying organized and motivated. John either is both a hardworking individual with high ambitions and goals for the future and has busy morning schedules every day, or he is neither a hardworking individual with high ambitions and goals for the future nor does he have a busy morning schedule every day.", "question": "Based on the above information, is the following statement true, false, or uncertain? John eats cereal and milk every day for breakfast.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_642", "context": "If people eat cereal and milk every day for breakfast, then they have very busy morning schedules every day. All young children below the age of ten eat cereal and milk every day for breakfast. People are either young children below the age of ten or have a lot of commitments they voluntarily signed up for. If people have a lot of commitments they voluntarily signed up for, then they are hardworking individuals with high ambitions and goals for the future. If people are hardworking individuals with high ambitions and goals for the future, then they are not good at staying organized and motivated. John either is both a hardworking individual with high ambitions and goals for the future and has busy morning schedules every day, or he is neither a hardworking individual with high ambitions and goals for the future nor does he have a busy morning schedule every day.", "question": "Based on the above information, is the following statement true, false, or uncertain? John is either a hardworking individual with high ambitions and goals for the future or is good at staying organized and motivated.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_643", "context": "Ableton has an office in Germany. Ableton has an office in the USA. USA and Germany are different countries. Any company that has offices in different countries is a multinational company. Ableton makes music software.", "question": "Based on the above information, is the following statement true, false, or uncertain? Ableton is a multinational company.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_644", "context": "Ableton has an office in Germany. Ableton has an office in the USA. USA and Germany are different countries. Any company that has offices in different countries is a multinational company. Ableton makes music software.", "question": "Based on the above information, is the following statement true, false, or uncertain? Ableton makes AI software.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_645", "context": "Ableton has an office in Germany. Ableton has an office in the USA. USA and Germany are different countries. Any company that has offices in different countries is a multinational company. Ableton makes music software.", "question": "Based on the above information, is the following statement true, false, or uncertain? Ableton does not have an office in Germany.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_646", "context": "Every swimmer can go underwater. Everyone that eats fish they catch themselves is a swimmer. Every penguin eats fish they catch themselves. All nonflying birds in Antarctica are penguins. Fido is a penguin or a swimmer.", "question": "Based on the above information, is the following statement true, false, or uncertain? Fido eats fish they catch themselves.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_647", "context": "Every swimmer can go underwater. Everyone that eats fish they catch themselves is a swimmer. Every penguin eats fish they catch themselves. All nonflying birds in Antarctica are penguins. Fido is a penguin or a swimmer.", "question": "Based on the above information, is the following statement true, false, or uncertain? Fido is neither a non-flying bird nor can Fido go underwater.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_648", "context": "Every swimmer can go underwater. Everyone that eats fish they catch themselves is a swimmer. Every penguin eats fish they catch themselves. All nonflying birds in Antarctica are penguins. Fido is a penguin or a swimmer.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Fido can either go underwater or is a swimmer, then Fido is a nonflying bird in Antartica.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_649", "context": "All professors are teachers. All researchers are professors. No teachers are students. All people who study are students. Leon is not studying or a researcher. If Leon is not studying, then Leon is a teacher.", "question": "Based on the above information, is the following statement true, false, or uncertain? Leon is a professor.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_650", "context": "All professors are teachers. All researchers are professors. No teachers are students. All people who study are students. Leon is not studying or a researcher. If Leon is not studying, then Leon is a teacher.", "question": "Based on the above information, is the following statement true, false, or uncertain? Leon is neither a student nor a researcher.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_651", "context": "All professors are teachers. All researchers are professors. No teachers are students. All people who study are students. Leon is not studying or a researcher. If Leon is not studying, then Leon is a teacher.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Leon is not a researcher, then Leon is a student.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_652", "context": "A cutman is responsible for preventing and treating physical damage to a fighter. Cutmen appear in matches such as a boxing, kickboxing or a mixed martial arts bout. Cutmen typically handle swelling, nosebleeds and lacerations. Jack is a cutman.", "question": "Based on the above information, is the following statement true, false, or uncertain? No cutmen appear in boxing matches.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_653", "context": "A cutman is responsible for preventing and treating physical damage to a fighter. Cutmen appear in matches such as a boxing, kickboxing or a mixed martial arts bout. Cutmen typically handle swelling, nosebleeds and lacerations. Jack is a cutman.", "question": "Based on the above information, is the following statement true, false, or uncertain? If someone is not a cutman, then they cannot handle nosebleeds.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_654", "context": "A cutman is responsible for preventing and treating physical damage to a fighter. Cutmen appear in matches such as a boxing, kickboxing or a mixed martial arts bout. Cutmen typically handle swelling, nosebleeds and lacerations. Jack is a cutman.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jack can treat physical damage.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_655", "context": "The Mona Lisa is one of the world's best-known artworks. The Mona Lisa is a portrait painted by Leonardo da Vinci. Leonardo da Vinci was a scientist and painter. Painting genres are history, portrait, animal, landscape, and still life.", "question": "Based on the above information, is the following statement true, false, or uncertain? One of the world's best-known artworks is painted by a scientist.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_656", "context": "The Mona Lisa is one of the world's best-known artworks. The Mona Lisa is a portrait painted by Leonardo da Vinci. Leonardo da Vinci was a scientist and painter. Painting genres are history, portrait, animal, landscape, and still life.", "question": "Based on the above information, is the following statement true, false, or uncertain? Leonardo da Vinci has artworks in the landscape genre.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_657", "context": "The Mona Lisa is one of the world's best-known artworks. The Mona Lisa is a portrait painted by Leonardo da Vinci. Leonardo da Vinci was a scientist and painter. Painting genres are history, portrait, animal, landscape, and still life.", "question": "Based on the above information, is the following statement true, false, or uncertain? No world's best-known artworks are portraits.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_658", "context": "No professional tennis umpires are professional tennis players. If you are a World Tour player, then you are a professional tennis player. All Grand Slam champions are World Tour players. All Grand Slam umpires are professional tennis umpires. Nadal is a World Tour player or a Grand Slam champion", "question": "Based on the above information, is the following statement true, false, or uncertain? Nadal is a Grand Slam umpire.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_659", "context": "No professional tennis umpires are professional tennis players. If you are a World Tour player, then you are a professional tennis player. All Grand Slam champions are World Tour players. All Grand Slam umpires are professional tennis umpires. Nadal is a World Tour player or a Grand Slam champion", "question": "Based on the above information, is the following statement true, false, or uncertain? Nadal is not a Grand Slam umpire.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_660", "context": "No professional tennis umpires are professional tennis players. If you are a World Tour player, then you are a professional tennis player. All Grand Slam champions are World Tour players. All Grand Slam umpires are professional tennis umpires. Nadal is a World Tour player or a Grand Slam champion", "question": "Based on the above information, is the following statement true, false, or uncertain? Nadal is a Grand Slam champion.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_661", "context": "No professional tennis umpires are professional tennis players. If you are a World Tour player, then you are a professional tennis player. All Grand Slam champions are World Tour players. All Grand Slam umpires are professional tennis umpires. Nadal is a World Tour player or a Grand Slam champion", "question": "Based on the above information, is the following statement true, false, or uncertain? Nadal is neither a Grand Slam umpire nor a professional tennis umpire.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_662", "context": "No professional tennis umpires are professional tennis players. If you are a World Tour player, then you are a professional tennis player. All Grand Slam champions are World Tour players. All Grand Slam umpires are professional tennis umpires. Nadal is a World Tour player or a Grand Slam champion", "question": "Based on the above information, is the following statement true, false, or uncertain? If Nadal is a professional tennis umpire, then Nadal is a Grand Slam Umpire.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_663", "context": "No professional tennis umpires are professional tennis players. If you are a World Tour player, then you are a professional tennis player. All Grand Slam champions are World Tour players. All Grand Slam umpires are professional tennis umpires. Nadal is a World Tour player or a Grand Slam champion", "question": "Based on the above information, is the following statement true, false, or uncertain? If Nadal is a Grand Slam umpire or a professional tennis player, then Nadal is a Grand Slam umpire.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_664", "context": "Buisnesses are either sanctioned or unsanctioned. Sanctioned buisnesses are limited. Unsanctioned buisnesses are free. The Crude Oil Data Exchange is a buisness that isn't free.", "question": "Based on the above information, is the following statement true, false, or uncertain? Crude Oil Data Exchange is sanctioned.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_665", "context": "Buisnesses are either sanctioned or unsanctioned. Sanctioned buisnesses are limited. Unsanctioned buisnesses are free. The Crude Oil Data Exchange is a buisness that isn't free.", "question": "Based on the above information, is the following statement true, false, or uncertain? Crude Oil Data Exchange is unsanctioned.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_666", "context": "Buisnesses are either sanctioned or unsanctioned. Sanctioned buisnesses are limited. Unsanctioned buisnesses are free. The Crude Oil Data Exchange is a buisness that isn't free.", "question": "Based on the above information, is the following statement true, false, or uncertain? Crude Oil Data Exchange is limited.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_667", "context": "When something is depressing, it is sad. V is depressing.", "question": "Based on the above information, is the following statement true, false, or uncertain? V is invigorating", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_668", "context": "Palstaves are a type of early bronze axe. Commonly found in northern, western and south-western Europe, palstaves are cast in moulds. John Evans is an archeologist who popularized the term \"palstave\". A paalstab is not an axe, but rather a digging shovel.", "question": "Based on the above information, is the following statement true, false, or uncertain? John Evans Popularized the term paalstab.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_669", "context": "Palstaves are a type of early bronze axe. Commonly found in northern, western and south-western Europe, palstaves are cast in moulds. John Evans is an archeologist who popularized the term \"palstave\". A paalstab is not an axe, but rather a digging shovel.", "question": "Based on the above information, is the following statement true, false, or uncertain? There is an axe that is commonly found in Western Europe.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_670", "context": "Palstaves are a type of early bronze axe. Commonly found in northern, western and south-western Europe, palstaves are cast in moulds. John Evans is an archeologist who popularized the term \"palstave\". A paalstab is not an axe, but rather a digging shovel.", "question": "Based on the above information, is the following statement true, false, or uncertain? Archeologists haven't popularized anything.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_671", "context": "Koei Tecmo is a Japanese video game and anime holding company. Holding companies hold several companies. Tecmo was disbanded in Japan, while Koei survived, but was renamed. Video game holding companies are holding companies.", "question": "Based on the above information, is the following statement true, false, or uncertain? Koei Tecmo holds another company.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_672", "context": "Koei Tecmo is a Japanese video game and anime holding company. Holding companies hold several companies. Tecmo was disbanded in Japan, while Koei survived, but was renamed. Video game holding companies are holding companies.", "question": "Based on the above information, is the following statement true, false, or uncertain? Tecmo holds another company.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_673", "context": "Koei Tecmo is a Japanese video game and anime holding company. Holding companies hold several companies. Tecmo was disbanded in Japan, while Koei survived, but was renamed. Video game holding companies are holding companies.", "question": "Based on the above information, is the following statement true, false, or uncertain? Koei Tecmo holds anime.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_674", "context": "The PlayStation EyeToy is a camera accessory for the Playstation 2. The PlayStation Eye is a camera accessory for the Playstation 3. The Playstation Camera is a camera accessory for the Playstation 4 and the Playstation 5. Camera accessory for the system is compatible with that system Only the Playstation Camera is compatible with more than one system.", "question": "Based on the above information, is the following statement true, false, or uncertain? The Playstation Eye can be used with the Playstation 2 and the Playstation 3.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_675", "context": "The PlayStation EyeToy is a camera accessory for the Playstation 2. The PlayStation Eye is a camera accessory for the Playstation 3. The Playstation Camera is a camera accessory for the Playstation 4 and the Playstation 5. Camera accessory for the system is compatible with that system Only the Playstation Camera is compatible with more than one system.", "question": "Based on the above information, is the following statement true, false, or uncertain? The Playstation EyeToy is compatible with the Playstation 2.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_676", "context": "The PlayStation EyeToy is a camera accessory for the Playstation 2. The PlayStation Eye is a camera accessory for the Playstation 3. The Playstation Camera is a camera accessory for the Playstation 4 and the Playstation 5. Camera accessory for the system is compatible with that system Only the Playstation Camera is compatible with more than one system.", "question": "Based on the above information, is the following statement true, false, or uncertain? The Playstation Camera can be used for all Playstation consoles.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_677", "context": "Adam Buska is a European football player. If a European plays football, they play what Americans call soccer.", "question": "Based on the above information, is the following statement true, false, or uncertain? Adam Buska plays what Americans call soccer.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_678", "context": "If the game has sold more than 1 million copies, then it is on the Best Seller list. All Games developed by Paradox Development Studio sold more than 1 million copies. Some games published before 2010 support the Linux OS system. All games on the Best Seller list are popular among young people. FIFA22 neither supports the Linux OS system nor is it popular among young people.", "question": "Based on the above information, is the following statement true, false, or uncertain? FIFA21 is published before 2010", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_679", "context": "If the game has sold more than 1 million copies, then it is on the Best Seller list. All Games developed by Paradox Development Studio sold more than 1 million copies. Some games published before 2010 support the Linux OS system. All games on the Best Seller list are popular among young people. FIFA22 neither supports the Linux OS system nor is it popular among young people.", "question": "Based on the above information, is the following statement true, false, or uncertain? FIFA21 is published before 2010 and developed by Paradox Development Studio", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_680", "context": "If the game has sold more than 1 million copies, then it is on the Best Seller list. All Games developed by Paradox Development Studio sold more than 1 million copies. Some games published before 2010 support the Linux OS system. All games on the Best Seller list are popular among young people. FIFA22 neither supports the Linux OS system nor is it popular among young people.", "question": "Based on the above information, is the following statement true, false, or uncertain? if FIFA21 is either a game published before 2010 or developed by Paradox Development Studio, then it is either in the Best Seller list and sold more than 1 million copies; or not in the Best Seller list and hasn't sold more than 1 million copies.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_681", "context": "China is one of BRICS and its economy is emerging. India is one of BRICS and its economy is emerging. All people from China speak Chinese. All people from India speak Hindi or English. There is an Indian.", "question": "Based on the above information, is the following statement true, false, or uncertain? All people from BRICS neither speak Hindi nor speak English.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_682", "context": "China is one of BRICS and its economy is emerging. India is one of BRICS and its economy is emerging. All people from China speak Chinese. All people from India speak Hindi or English. There is an Indian.", "question": "Based on the above information, is the following statement true, false, or uncertain? India's economy is not emerging.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_683", "context": "China is one of BRICS and its economy is emerging. India is one of BRICS and its economy is emerging. All people from China speak Chinese. All people from India speak Hindi or English. There is an Indian.", "question": "Based on the above information, is the following statement true, false, or uncertain? There is a person from BRICS speaking Hindi.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_684", "context": "Daveed Diggs is an actor and film producer. Daveed Diggs played two roles in the musical Hamilton. One of the actors from Hamilton won the best actor award. The actor playing Thomas Jefferson won the best actor award. Daveed Diggs played Thomas Jefferson. Musicals are not films.", "question": "Based on the above information, is the following statement true, false, or uncertain? Hamilton is a film.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_685", "context": "Daveed Diggs is an actor and film producer. Daveed Diggs played two roles in the musical Hamilton. One of the actors from Hamilton won the best actor award. The actor playing Thomas Jefferson won the best actor award. Daveed Diggs played Thomas Jefferson. Musicals are not films.", "question": "Based on the above information, is the following statement true, false, or uncertain? Daveed Diggs won the best actor award.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_686", "context": "Daveed Diggs is an actor and film producer. Daveed Diggs played two roles in the musical Hamilton. One of the actors from Hamilton won the best actor award. The actor playing Thomas Jefferson won the best actor award. Daveed Diggs played Thomas Jefferson. Musicals are not films.", "question": "Based on the above information, is the following statement true, false, or uncertain? Hamilton won two awards.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_687", "context": "Ernest Pohl was a Polish football player. A football player in the Polish First Division has scored over 180 goals. Ernest Pohl scored more than 180 goals in the Polish First Division. Górnik Zabrze's stadium was named after a soccer player from Ruda Śląska. Ernest Pohl is from Ruda Śląska.", "question": "Based on the above information, is the following statement true, false, or uncertain? Ernest Pohl has not scored more than 180 goals.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_688", "context": "Ernest Pohl was a Polish football player. A football player in the Polish First Division has scored over 180 goals. Ernest Pohl scored more than 180 goals in the Polish First Division. Górnik Zabrze's stadium was named after a soccer player from Ruda Śląska. Ernest Pohl is from Ruda Śląska.", "question": "Based on the above information, is the following statement true, false, or uncertain? Górnik Zabrze's stadium was named after Ernest Pohl.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_689", "context": "Ann J. Land was a member of the Philadelphia City Council and was also a member of the Democratic Party. Ann J. Land ran unopposed for the Philadephia City Council in 1980. People who run unopposed for the Philadelphia City Council are elected to the positions they run for in the same year. Michael Nutter was a political challenger. Ann J. Land defeated Michael Nutter and ran for the Philadelphia City Council in 1987.", "question": "Based on the above information, is the following statement true, false, or uncertain? Ann J. Land was elected to the Philadelphia City Council in 1980.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_690", "context": "Ann J. Land was a member of the Philadelphia City Council and was also a member of the Democratic Party. Ann J. Land ran unopposed for the Philadephia City Council in 1980. People who run unopposed for the Philadelphia City Council are elected to the positions they run for in the same year. Michael Nutter was a political challenger. Ann J. Land defeated Michael Nutter and ran for the Philadelphia City Council in 1987.", "question": "Based on the above information, is the following statement true, false, or uncertain? Ann J. Land was elected to the Philadelphia City Council in 1987.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_691", "context": "Ann J. Land was a member of the Philadelphia City Council and was also a member of the Democratic Party. Ann J. Land ran unopposed for the Philadephia City Council in 1980. People who run unopposed for the Philadelphia City Council are elected to the positions they run for in the same year. Michael Nutter was a political challenger. Ann J. Land defeated Michael Nutter and ran for the Philadelphia City Council in 1987.", "question": "Based on the above information, is the following statement true, false, or uncertain? There was some member of the Democratic Party elected to the Philadelphia City Council in 1980.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_692", "context": "Aberdeen won the cup in the 2013 final. Rangers won the cup in 2014 final. Aberdeen and Rangers are different teams. Different teams cannot win the same cup in a given year's final.", "question": "Based on the above information, is the following statement true, false, or uncertain? Rangers won the cup in 2015.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_693", "context": "Aberdeen won the cup in the 2013 final. Rangers won the cup in 2014 final. Aberdeen and Rangers are different teams. Different teams cannot win the same cup in a given year's final.", "question": "Based on the above information, is the following statement true, false, or uncertain? Rangers won the cup in 2013.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_694", "context": "Aberdeen won the cup in the 2013 final. Rangers won the cup in 2014 final. Aberdeen and Rangers are different teams. Different teams cannot win the same cup in a given year's final.", "question": "Based on the above information, is the following statement true, false, or uncertain? Aberdeen has won a cup before.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_695", "context": "All young working professionals who have regular 9-5 jobs also have pets. Some people who live in Manhattan are young working professionals who have regular 9-5 jobs. All people who have pets are people who have at least one child. People who do not have at least one child are people who own a sports car. Mary either does not own a sports car or, if they do, then they do not have at least one child.", "question": "Based on the above information, is the following statement true, false, or uncertain? Mary is a person who lives in Manhattan.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_696", "context": "All young working professionals who have regular 9-5 jobs also have pets. Some people who live in Manhattan are young working professionals who have regular 9-5 jobs. All people who have pets are people who have at least one child. People who do not have at least one child are people who own a sports car. Mary either does not own a sports car or, if they do, then they do not have at least one child.", "question": "Based on the above information, is the following statement true, false, or uncertain? Mary is a person who lives in Manhattan and is a young working professional who has a regular 9-5 job.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_697", "context": "All young working professionals who have regular 9-5 jobs also have pets. Some people who live in Manhattan are young working professionals who have regular 9-5 jobs. All people who have pets are people who have at least one child. People who do not have at least one child are people who own a sports car. Mary either does not own a sports car or, if they do, then they do not have at least one child.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Mary is a young working professional who has a regular 9-5 job, then Mary does not live in Manhattan.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_698", "context": "Either block design or event-related design. All event-related designs are brain image acquisition. All brain image acquisition is preceded by data processing. Nothing preceded by data processing acquires data. Picture memory is either an event-related design and acquiring data or neither an event-related design nor acquiring data.", "question": "Based on the above information, is the following statement true, false, or uncertain? Picture memory is preceded by data processing.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_699", "context": "Either block design or event-related design. All event-related designs are brain image acquisition. All brain image acquisition is preceded by data processing. Nothing preceded by data processing acquires data. Picture memory is either an event-related design and acquiring data or neither an event-related design nor acquiring data.", "question": "Based on the above information, is the following statement true, false, or uncertain? Picture memory is a block design.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_700", "context": "Either block design or event-related design. All event-related designs are brain image acquisition. All brain image acquisition is preceded by data processing. Nothing preceded by data processing acquires data. Picture memory is either an event-related design and acquiring data or neither an event-related design nor acquiring data.", "question": "Based on the above information, is the following statement true, false, or uncertain? Picture memory is either a block design or acquiring data.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_701", "context": "Either block design or event-related design. All event-related designs are brain image acquisition. All brain image acquisition is preceded by data processing. Nothing preceded by data processing acquires data. Picture memory is either an event-related design and acquiring data or neither an event-related design nor acquiring data.", "question": "Based on the above information, is the following statement true, false, or uncertain? If picture memory is not acquiring data, then picture memory is a block design and acquiring data.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_702", "context": "The USS Lyon was a US Navy ship involved in WWII. All ships involved in WWII are currently decommissioned or in a museum.", "question": "Based on the above information, is the following statement true, false, or uncertain? The USS Lyon is decommissioned.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_703", "context": "All disposable chopsticks are made from trees. Some chopsticks are eco-friendly. Either disposable chopsticks or reusable chopsticks. If chopsticks are made from metals, then they are not made from plastics. All reusable chopsticks are made from metal. Chopsticks at restaurants are either made from metals and made from plastics, or neither made from metals nor made from plastics.", "question": "Based on the above information, is the following statement true, false, or uncertain? Chopsticks at restaurants are eco-friendly.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_704", "context": "All disposable chopsticks are made from trees. Some chopsticks are eco-friendly. Either disposable chopsticks or reusable chopsticks. If chopsticks are made from metals, then they are not made from plastics. All reusable chopsticks are made from metal. Chopsticks at restaurants are either made from metals and made from plastics, or neither made from metals nor made from plastics.", "question": "Based on the above information, is the following statement true, false, or uncertain? Chopsticks at restaurants are eco-friendly or made from trees.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_705", "context": "All disposable chopsticks are made from trees. Some chopsticks are eco-friendly. Either disposable chopsticks or reusable chopsticks. If chopsticks are made from metals, then they are not made from plastics. All reusable chopsticks are made from metal. Chopsticks at restaurants are either made from metals and made from plastics, or neither made from metals nor made from plastics.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Chopsticks at restaurants are made from plastics or made from trees, then Chopsticks at restaurants are made from plastics and are eco-friendly.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_706", "context": "Anything that is lazy is unproductive. No one unproductive is an energetic person. If something is a sloth, then it is lazy. Some animals are sloths. Sid is not either an energetic person or a sloth.", "question": "Based on the above information, is the following statement true, false, or uncertain? Sid is an animal.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_707", "context": "Anything that is lazy is unproductive. No one unproductive is an energetic person. If something is a sloth, then it is lazy. Some animals are sloths. Sid is not either an energetic person or a sloth.", "question": "Based on the above information, is the following statement true, false, or uncertain? Sid is an energetic person and an animal.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_708", "context": "Anything that is lazy is unproductive. No one unproductive is an energetic person. If something is a sloth, then it is lazy. Some animals are sloths. Sid is not either an energetic person or a sloth.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Sid is either an animal or unproductive, then Sid is not an energetic person.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_709", "context": "European soccer clubs can attend UCL, UEL and UECL. A soccer club eligible to attend UCL has a higher ranking than a soccer club eligible to attend UEL. A soccer club eligible to attend UEL has a higher ranking than a soccer club eligible to attend UECL. Manchester United and Machester City are both European soccer clubs. Manchester United is eligible to attend UEL next season. Manchester City is eligible to attend UCL next season.", "question": "Based on the above information, is the following statement true, false, or uncertain? Manchester City has a higher ranking than Manchester United.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_710", "context": "If a person coach a football club, the person is a football coach. If a person has a position in a club for a position in a year, and the club is in NFL in the same year, the person plays in NFL. Minnesota Vikings is a football club. Dennis Green coached Minnesota Vikings. Cris Carter had 13 touchdown receptions. Minnesota Vikings was in the National Football League in 1997. John Randle was Minnesota Vikings defensive tackle in 1997.", "question": "Based on the above information, is the following statement true, false, or uncertain? Dennis Green is a football coach.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_711", "context": "If a person coach a football club, the person is a football coach. If a person has a position in a club for a position in a year, and the club is in NFL in the same year, the person plays in NFL. Minnesota Vikings is a football club. Dennis Green coached Minnesota Vikings. Cris Carter had 13 touchdown receptions. Minnesota Vikings was in the National Football League in 1997. John Randle was Minnesota Vikings defensive tackle in 1997.", "question": "Based on the above information, is the following statement true, false, or uncertain? John Randle didn't play in the National Football League.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_712", "context": "If a person coach a football club, the person is a football coach. If a person has a position in a club for a position in a year, and the club is in NFL in the same year, the person plays in NFL. Minnesota Vikings is a football club. Dennis Green coached Minnesota Vikings. Cris Carter had 13 touchdown receptions. Minnesota Vikings was in the National Football League in 1997. John Randle was Minnesota Vikings defensive tackle in 1997.", "question": "Based on the above information, is the following statement true, false, or uncertain? Cris Carter played for Minnesota Vikings.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_713", "context": "All cats are cute. Ghosts do not exist. An animal is either a cat or a dog. Nothing that barks is lovely. If something is a dog, then it barks. Grace is either a cat and a dog, or neither a cat nor a dog.", "question": "Based on the above information, is the following statement true, false, or uncertain? Grace is a ghost.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_714", "context": "All cats are cute. Ghosts do not exist. An animal is either a cat or a dog. Nothing that barks is lovely. If something is a dog, then it barks. Grace is either a cat and a dog, or neither a cat nor a dog.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Grace is either both cute and lovely, or neither cute nor lovely, then Grace is either a dog or a ghost.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_715", "context": "All cats are cute. Ghosts do not exist. An animal is either a cat or a dog. Nothing that barks is lovely. If something is a dog, then it barks. Grace is either a cat and a dog, or neither a cat nor a dog.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Grace is not both a ghost and lovely, then Grace is either a cat or cute.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_716", "context": "Shafaq-Asiman is a large complex of offshore geological structures in the Caspian Sea. Baku is northwest of Shafaq-Asiman. If place A is northwest of place B, then place B is southeast of place A.", "question": "Based on the above information, is the following statement true, false, or uncertain? Baku is southeast of Shafaq-Asiman.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_717", "context": "Shafaq-Asiman is a large complex of offshore geological structures in the Caspian Sea. Baku is northwest of Shafaq-Asiman. If place A is northwest of place B, then place B is southeast of place A.", "question": "Based on the above information, is the following statement true, false, or uncertain? A large complex is southeast of Baku.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_718", "context": "Shafaq-Asiman is a large complex of offshore geological structures in the Caspian Sea. Baku is northwest of Shafaq-Asiman. If place A is northwest of place B, then place B is southeast of place A.", "question": "Based on the above information, is the following statement true, false, or uncertain? Baku is not northwest of an offshore geological structures.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_719", "context": "Herodicus was a Greek physician, dietician, sophist, and gymnastic-master. Herodicus was born in the city of Selymbria. Selymbria is a colony of the city-state Megara. One of the tutors of Hippocrates was Herodicus. Massages were recommended by Herodicus. Some of theories of Herodicus are considered to be the foundation of sports medicine.", "question": "Based on the above information, is the following statement true, false, or uncertain? Herodicus tutored Hippocrates.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_720", "context": "Herodicus was a Greek physician, dietician, sophist, and gymnastic-master. Herodicus was born in the city of Selymbria. Selymbria is a colony of the city-state Megara. One of the tutors of Hippocrates was Herodicus. Massages were recommended by Herodicus. Some of theories of Herodicus are considered to be the foundation of sports medicine.", "question": "Based on the above information, is the following statement true, false, or uncertain? Herodicus was tutored by Hippocrates.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_721", "context": "Herodicus was a Greek physician, dietician, sophist, and gymnastic-master. Herodicus was born in the city of Selymbria. Selymbria is a colony of the city-state Megara. One of the tutors of Hippocrates was Herodicus. Massages were recommended by Herodicus. Some of theories of Herodicus are considered to be the foundation of sports medicine.", "question": "Based on the above information, is the following statement true, false, or uncertain? Herodicus was born in a city-state.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_722", "context": "Herodicus was a Greek physician, dietician, sophist, and gymnastic-master. Herodicus was born in the city of Selymbria. Selymbria is a colony of the city-state Megara. One of the tutors of Hippocrates was Herodicus. Massages were recommended by Herodicus. Some of theories of Herodicus are considered to be the foundation of sports medicine.", "question": "Based on the above information, is the following statement true, false, or uncertain? Herodicus did not recommend massages.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_723", "context": "Herodicus was a Greek physician, dietician, sophist, and gymnastic-master. Herodicus was born in the city of Selymbria. Selymbria is a colony of the city-state Megara. One of the tutors of Hippocrates was Herodicus. Massages were recommended by Herodicus. Some of theories of Herodicus are considered to be the foundation of sports medicine.", "question": "Based on the above information, is the following statement true, false, or uncertain? Herodicus was born in a colony of a city-state.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_724", "context": "No kid loves the Opera. All adults love the Opera. If someone is a scientist, then they are an adult. Some students are kids. Billy is a kid.", "question": "Based on the above information, is the following statement true, false, or uncertain? Billy is a student.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_725", "context": "No kid loves the Opera. All adults love the Opera. If someone is a scientist, then they are an adult. Some students are kids. Billy is a kid.", "question": "Based on the above information, is the following statement true, false, or uncertain? Billy is a student and a scientist.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_726", "context": "No kid loves the Opera. All adults love the Opera. If someone is a scientist, then they are an adult. Some students are kids. Billy is a kid.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Billy is a student or a scientist, then Billy is a student and a kid.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_727", "context": "Brian Winter is a Scottish football referee. After being injured, Brian Winter retired in 2012. Brian Winter was appointed as a referee observer after his retirement. Some football referees become referee observers. The son of Brian Winter, Andy Winter, is a football player who plays for Hamilton Academical.", "question": "Based on the above information, is the following statement true, false, or uncertain? There is a son of a referee observer that plays football.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_728", "context": "Brian Winter is a Scottish football referee. After being injured, Brian Winter retired in 2012. Brian Winter was appointed as a referee observer after his retirement. Some football referees become referee observers. The son of Brian Winter, Andy Winter, is a football player who plays for Hamilton Academical.", "question": "Based on the above information, is the following statement true, false, or uncertain? Brian Winter is not a referee observer.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_729", "context": "Brian Winter is a Scottish football referee. After being injured, Brian Winter retired in 2012. Brian Winter was appointed as a referee observer after his retirement. Some football referees become referee observers. The son of Brian Winter, Andy Winter, is a football player who plays for Hamilton Academical.", "question": "Based on the above information, is the following statement true, false, or uncertain? Brian Winter is retired.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_730", "context": "Brian Winter is a Scottish football referee. After being injured, Brian Winter retired in 2012. Brian Winter was appointed as a referee observer after his retirement. Some football referees become referee observers. The son of Brian Winter, Andy Winter, is a football player who plays for Hamilton Academical.", "question": "Based on the above information, is the following statement true, false, or uncertain? Andy Winter is a referee.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_731", "context": "People are either interested in puzzles or bad at chess. If a person is bad at chess, then they don't play a lot of chess. A person is either a planner or a creative person. Erica is someone who plays a lot of chess. If Erica is neither bad at chess nor creative, then Erica is either someone who plans and is creative, or someone who neither plans nor is creative.", "question": "Based on the above information, is the following statement true, false, or uncertain? Erica plans.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_732", "context": "People are either interested in puzzles or bad at chess. If a person is bad at chess, then they don't play a lot of chess. A person is either a planner or a creative person. Erica is someone who plays a lot of chess. If Erica is neither bad at chess nor creative, then Erica is either someone who plans and is creative, or someone who neither plans nor is creative.", "question": "Based on the above information, is the following statement true, false, or uncertain? Erica is interested in puzzles and is creative.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_733", "context": "People are either interested in puzzles or bad at chess. If a person is bad at chess, then they don't play a lot of chess. A person is either a planner or a creative person. Erica is someone who plays a lot of chess. If Erica is neither bad at chess nor creative, then Erica is either someone who plans and is creative, or someone who neither plans nor is creative.", "question": "Based on the above information, is the following statement true, false, or uncertain? Erica is either interested in puzzles or is creative.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_734", "context": "People are either interested in puzzles or bad at chess. If a person is bad at chess, then they don't play a lot of chess. A person is either a planner or a creative person. Erica is someone who plays a lot of chess. If Erica is neither bad at chess nor creative, then Erica is either someone who plans and is creative, or someone who neither plans nor is creative.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Erica plans ahead or plays a lot of chess matches, then Erica is not interested in puzzles and creative.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_735", "context": "People are either interested in puzzles or bad at chess. If a person is bad at chess, then they don't play a lot of chess. A person is either a planner or a creative person. Erica is someone who plays a lot of chess. If Erica is neither bad at chess nor creative, then Erica is either someone who plans and is creative, or someone who neither plans nor is creative.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Erica is creative, then Erica is not interested in puzzles and creative.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_736", "context": "People are either interested in puzzles or bad at chess. If a person is bad at chess, then they don't play a lot of chess. A person is either a planner or a creative person. Erica is someone who plays a lot of chess. If Erica is neither bad at chess nor creative, then Erica is either someone who plans and is creative, or someone who neither plans nor is creative.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Erica is interested in puzzles and is creative, then Erica is not creative.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_737", "context": "People are either interested in puzzles or bad at chess. If a person is bad at chess, then they don't play a lot of chess. A person is either a planner or a creative person. Erica is someone who plays a lot of chess. If Erica is neither bad at chess nor creative, then Erica is either someone who plans and is creative, or someone who neither plans nor is creative.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Erica either plays a lot of chess matches or is creative, then Erica is neither interested in puzzles nor a person who plays a lot of chess matches.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_738", "context": "People are either interested in puzzles or bad at chess. If a person is bad at chess, then they don't play a lot of chess. A person is either a planner or a creative person. Erica is someone who plays a lot of chess. If Erica is neither bad at chess nor creative, then Erica is either someone who plans and is creative, or someone who neither plans nor is creative.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Erica is interested in puzzles and plays a lot of chess matches, then Erica is either a person who plays a lot of chess matches or a person that is creative.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_739", "context": "People are either interested in puzzles or bad at chess. If a person is bad at chess, then they don't play a lot of chess. A person is either a planner or a creative person. Erica is someone who plays a lot of chess. If Erica is neither bad at chess nor creative, then Erica is either someone who plans and is creative, or someone who neither plans nor is creative.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Erica plans ahead or is interested in puzzles, then Erica is creative.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_740", "context": "People are either interested in puzzles or bad at chess. If a person is bad at chess, then they don't play a lot of chess. A person is either a planner or a creative person. Erica is someone who plays a lot of chess. If Erica is neither bad at chess nor creative, then Erica is either someone who plans and is creative, or someone who neither plans nor is creative.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Erica is either bad at chess or interested in puzzles, then Erica is not a person who plays a lot of chess matches and creative.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_741", "context": "Soccer players have a right foot and a left foot. Top soccer players are soccer players who can use their both feet very efficiently. If a soccer player can score many goals using left foot, then they can use that foot very efficiently. If a soccer player can score many goals using right foot, then they can use that foot very efficiently. Cristiano Ronaldo is a soccer player. Cristiano Ronaldo can use his right foot very efficiently. Cristiano Ronaldo have scored more than one hundred goals using his left foot.", "question": "Based on the above information, is the following statement true, false, or uncertain? Cristiano Ronaldo is a top soccer player.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_742", "context": "Soccer players have a right foot and a left foot. Top soccer players are soccer players who can use their both feet very efficiently. If a soccer player can score many goals using left foot, then they can use that foot very efficiently. If a soccer player can score many goals using right foot, then they can use that foot very efficiently. Cristiano Ronaldo is a soccer player. Cristiano Ronaldo can use his right foot very efficiently. Cristiano Ronaldo have scored more than one hundred goals using his left foot.", "question": "Based on the above information, is the following statement true, false, or uncertain? Cristiano Ronaldo is not a top soccer player.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_743", "context": "The National Lobster Hatchery is a hatchery located in Padstow England. The National Lobster Hatchery is open to visitors. A hatchery is either for profit, or for conservation. If a hatchery is for conservation, it might release animals into the wild. The National Lobster Hatchery is not for profit.", "question": "Based on the above information, is the following statement true, false, or uncertain? The National Lobster Hatchery is for conservation.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_744", "context": "The National Lobster Hatchery is a hatchery located in Padstow England. The National Lobster Hatchery is open to visitors. A hatchery is either for profit, or for conservation. If a hatchery is for conservation, it might release animals into the wild. The National Lobster Hatchery is not for profit.", "question": "Based on the above information, is the following statement true, false, or uncertain? All hatcheries are open to visitors.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_745", "context": "The National Lobster Hatchery is a hatchery located in Padstow England. The National Lobster Hatchery is open to visitors. A hatchery is either for profit, or for conservation. If a hatchery is for conservation, it might release animals into the wild. The National Lobster Hatchery is not for profit.", "question": "Based on the above information, is the following statement true, false, or uncertain? The National Lobster Hatchery releases animals into the wild.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_746", "context": "Rhos Aelwyd F.C. is a Welsh football club. Rhos Aelwyd F.C. is the only club based in Ponciau. The Premier Division was won in 2005–06 by a team from Ponciau. The winner of the Premier Division in 2009–10 was promoted back to the Cymru Alliance. The Premier Division in 2009–10 was won by the same team that won in 2005-06.", "question": "Based on the above information, is the following statement true, false, or uncertain? Rhos Aelwyd F.C. won the 2005-06 Premier Division.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_747", "context": "Rhos Aelwyd F.C. is a Welsh football club. Rhos Aelwyd F.C. is the only club based in Ponciau. The Premier Division was won in 2005–06 by a team from Ponciau. The winner of the Premier Division in 2009–10 was promoted back to the Cymru Alliance. The Premier Division in 2009–10 was won by the same team that won in 2005-06.", "question": "Based on the above information, is the following statement true, false, or uncertain? Rhos Aelwyd F.C. was promoted to the Cymru Alliance.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_748", "context": "All OS are software. All Mac are OS. An OS is either Mac or Windows. All Windows are convenient. All software has code. If something is convenient, then it is popular. Burger is a piece of code and a Mac. PyTorch is either Windows and software, or neither Windows nor software.", "question": "Based on the above information, is the following statement true, false, or uncertain? Burger is popular.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_749", "context": "All OS are software. All Mac are OS. An OS is either Mac or Windows. All Windows are convenient. All software has code. If something is convenient, then it is popular. Burger is a piece of code and a Mac. PyTorch is either Windows and software, or neither Windows nor software.", "question": "Based on the above information, is the following statement true, false, or uncertain? Burger is not popular.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_750", "context": "All OS are software. All Mac are OS. An OS is either Mac or Windows. All Windows are convenient. All software has code. If something is convenient, then it is popular. Burger is a piece of code and a Mac. PyTorch is either Windows and software, or neither Windows nor software.", "question": "Based on the above information, is the following statement true, false, or uncertain? PyTorch is popular and has code.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_751", "context": "All OS are software. All Mac are OS. An OS is either Mac or Windows. All Windows are convenient. All software has code. If something is convenient, then it is popular. Burger is a piece of code and a Mac. PyTorch is either Windows and software, or neither Windows nor software.", "question": "Based on the above information, is the following statement true, false, or uncertain? PyTorch is not popular and has code.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_752", "context": "Roads are made of either concrete or asphalt. Roads made of concrete last longer than roads made with asphalt. Roads made of asphalt are smoother than roads made of concrete. Everyone prefers the smoother of two roads. Road one is made of concrete and Road two is made of asphalt.", "question": "Based on the above information, is the following statement true, false, or uncertain? Road one will last longer than Road two", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_753", "context": "Roads are made of either concrete or asphalt. Roads made of concrete last longer than roads made with asphalt. Roads made of asphalt are smoother than roads made of concrete. Everyone prefers the smoother of two roads. Road one is made of concrete and Road two is made of asphalt.", "question": "Based on the above information, is the following statement true, false, or uncertain? Road two is not smoother than Road one.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_754", "context": "Roads are made of either concrete or asphalt. Roads made of concrete last longer than roads made with asphalt. Roads made of asphalt are smoother than roads made of concrete. Everyone prefers the smoother of two roads. Road one is made of concrete and Road two is made of asphalt.", "question": "Based on the above information, is the following statement true, false, or uncertain? John prefers Road two.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_755", "context": "Camp Davern is a traditional summer camp for boys and girls. Camp Davern was established in the year 1946. Camp Davern was operated by the YMCA until the year 2015. Camp Davern is one of Ontario's oldest summer camps.", "question": "Based on the above information, is the following statement true, false, or uncertain? One of Ontario's oldest summer camps is a traditional summer camp for boys and girls.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_756", "context": "Camp Davern is a traditional summer camp for boys and girls. Camp Davern was established in the year 1946. Camp Davern was operated by the YMCA until the year 2015. Camp Davern is one of Ontario's oldest summer camps.", "question": "Based on the above information, is the following statement true, false, or uncertain? A traditional summer camp for boys and girls was operated by the YMCA until the year 2015.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_757", "context": "Camp Davern is a traditional summer camp for boys and girls. Camp Davern was established in the year 1946. Camp Davern was operated by the YMCA until the year 2015. Camp Davern is one of Ontario's oldest summer camps.", "question": "Based on the above information, is the following statement true, false, or uncertain? Camp Davern was established in 1989.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_758", "context": "If people publish journals, then they do not work in the entertainment industry. All people who are award-winning novelists publish journals. People either work in the entertainment industry or are highly acclaimed in their profession. If people are highly acclaimed in their profession, then they often hold tenured and high-ranking positions at their workplace. If people are highly acclaimed in their profession, then they often receive glowing feedback and recommendations from their colleagues. If Emily is either both highly acclaimed in her profession and often holds tenured and high-ranking positions at her workplace, or she is neither highly acclaimed in her profession nor often holds tenured and high-ranking positions at her workplace, then Emily is not highly acclaimed in her profession.", "question": "Based on the above information, is the following statement true, false, or uncertain? Emily often holds tenured and high-ranking positions at her workplace.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_759", "context": "If people publish journals, then they do not work in the entertainment industry. All people who are award-winning novelists publish journals. People either work in the entertainment industry or are highly acclaimed in their profession. If people are highly acclaimed in their profession, then they often hold tenured and high-ranking positions at their workplace. If people are highly acclaimed in their profession, then they often receive glowing feedback and recommendations from their colleagues. If Emily is either both highly acclaimed in her profession and often holds tenured and high-ranking positions at her workplace, or she is neither highly acclaimed in her profession nor often holds tenured and high-ranking positions at her workplace, then Emily is not highly acclaimed in her profession.", "question": "Based on the above information, is the following statement true, false, or uncertain? Emily often receives glowing feedback and recommendations from their colleagues and is an award-winning novelist.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_760", "context": "If people publish journals, then they do not work in the entertainment industry. All people who are award-winning novelists publish journals. People either work in the entertainment industry or are highly acclaimed in their profession. If people are highly acclaimed in their profession, then they often hold tenured and high-ranking positions at their workplace. If people are highly acclaimed in their profession, then they often receive glowing feedback and recommendations from their colleagues. If Emily is either both highly acclaimed in her profession and often holds tenured and high-ranking positions at her workplace, or she is neither highly acclaimed in her profession nor often holds tenured and high-ranking positions at her workplace, then Emily is not highly acclaimed in her profession.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Emily either often receives glowing feedback and recommendations from her colleagues or is an award-winning novelist, then Emily does not both publish journals and is an award-winning novelist.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_761", "context": "Thick as Thieves is a young adult fantasy novel, written by Megan Whalen Turner. Thick as Thieves was published by Greenwillow Books. If a book was published by a company, than the author of that book worked with the company that published the book. The fictional Mede Empire is where Thick as Thieves is set. The Mede Empire plots to swallow up some nearby countries. Attolia and Sounis are countries near the Mede Empire. Thick as Thieves was sold both as a hardcover and an e-book.", "question": "Based on the above information, is the following statement true, false, or uncertain? Megan Whalen Turner worked with Greenwillow Books.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_762", "context": "Thick as Thieves is a young adult fantasy novel, written by Megan Whalen Turner. Thick as Thieves was published by Greenwillow Books. If a book was published by a company, than the author of that book worked with the company that published the book. The fictional Mede Empire is where Thick as Thieves is set. The Mede Empire plots to swallow up some nearby countries. Attolia and Sounis are countries near the Mede Empire. Thick as Thieves was sold both as a hardcover and an e-book.", "question": "Based on the above information, is the following statement true, false, or uncertain? The Mede Empire plans to swallow up Attolia.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_763", "context": "Thick as Thieves is a young adult fantasy novel, written by Megan Whalen Turner. Thick as Thieves was published by Greenwillow Books. If a book was published by a company, than the author of that book worked with the company that published the book. The fictional Mede Empire is where Thick as Thieves is set. The Mede Empire plots to swallow up some nearby countries. Attolia and Sounis are countries near the Mede Empire. Thick as Thieves was sold both as a hardcover and an e-book.", "question": "Based on the above information, is the following statement true, false, or uncertain? Thick as Thieves is not set in the mede empire.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_764", "context": "Thick as Thieves is a young adult fantasy novel, written by Megan Whalen Turner. Thick as Thieves was published by Greenwillow Books. If a book was published by a company, than the author of that book worked with the company that published the book. The fictional Mede Empire is where Thick as Thieves is set. The Mede Empire plots to swallow up some nearby countries. Attolia and Sounis are countries near the Mede Empire. Thick as Thieves was sold both as a hardcover and an e-book.", "question": "Based on the above information, is the following statement true, false, or uncertain? Megan Whalen Turner did not work with Greenwillow Books.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_765", "context": "WeTab is a MeeGo-based tablet computer. There is a WeTab product. WeTab was announced by Neofonie. Neofonie is a German producer. Germans speak English or German.", "question": "Based on the above information, is the following statement true, false, or uncertain? There is a tablet computer that was announced by a German.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_766", "context": "WeTab is a MeeGo-based tablet computer. There is a WeTab product. WeTab was announced by Neofonie. Neofonie is a German producer. Germans speak English or German.", "question": "Based on the above information, is the following statement true, false, or uncertain? Neofonie doesn't speak English or German.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_767", "context": "Some employees working in business analysis are good at math. All employees working in business analysis are working in this company. No employees working in this company are from China. All employees working in software engineering are from China. James is working in software engineering.", "question": "Based on the above information, is the following statement true, false, or uncertain? James is good at math.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_768", "context": "Some employees working in business analysis are good at math. All employees working in business analysis are working in this company. No employees working in this company are from China. All employees working in software engineering are from China. James is working in software engineering.", "question": "Based on the above information, is the following statement true, false, or uncertain? James is not good at math and he is working in business analysis.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_769", "context": "Some employees working in business analysis are good at math. All employees working in business analysis are working in this company. No employees working in this company are from China. All employees working in software engineering are from China. James is working in software engineering.", "question": "Based on the above information, is the following statement true, false, or uncertain? If James is not good at math and he is in business analysis, then he is neither working in this company nor working in software engineering.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_770", "context": "The party provides five kinds of fruits: strawberry, orange, blueberry, grape, and cherry. All fruits are provided in the same weight at the beginning of the party. If the fruit had the lowest remaining weight at the end of the party, then it means it was the most popular fruit. At the end of the party, strawberries had the lowest remaining weight. At the end of the party, the amount of leftover blueberries was lower than that of cherries. Benjamin only ate oranges and grapes at the party.", "question": "Based on the above information, is the following statement true, false, or uncertain? Blueberries were the most popular fruit at the party.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_771", "context": "The party provides five kinds of fruits: strawberry, orange, blueberry, grape, and cherry. All fruits are provided in the same weight at the beginning of the party. If the fruit had the lowest remaining weight at the end of the party, then it means it was the most popular fruit. At the end of the party, strawberries had the lowest remaining weight. At the end of the party, the amount of leftover blueberries was lower than that of cherries. Benjamin only ate oranges and grapes at the party.", "question": "Based on the above information, is the following statement true, false, or uncertain? Cherries were the most popular fruit at the party.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_772", "context": "The party provides five kinds of fruits: strawberry, orange, blueberry, grape, and cherry. All fruits are provided in the same weight at the beginning of the party. If the fruit had the lowest remaining weight at the end of the party, then it means it was the most popular fruit. At the end of the party, strawberries had the lowest remaining weight. At the end of the party, the amount of leftover blueberries was lower than that of cherries. Benjamin only ate oranges and grapes at the party.", "question": "Based on the above information, is the following statement true, false, or uncertain? Benjamin ate blueberries at the party.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_773", "context": "All students who attend in person have registered for the conference. Students either attend the conference in person or remotely. No students from China attend the conference remotely. James attends the conference but he does not attend the conference remotely. Jack attends the conference and he is a student from China.", "question": "Based on the above information, is the following statement true, false, or uncertain? James attends the conference but not in person.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_774", "context": "All students who attend in person have registered for the conference. Students either attend the conference in person or remotely. No students from China attend the conference remotely. James attends the conference but he does not attend the conference remotely. Jack attends the conference and he is a student from China.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jack attends the conference in person.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_775", "context": "All students who attend in person have registered for the conference. Students either attend the conference in person or remotely. No students from China attend the conference remotely. James attends the conference but he does not attend the conference remotely. Jack attends the conference and he is a student from China.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jack has registered for the conference.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_776", "context": "David Ha'ivri is a political strategist. If you are born in Israel to at least one Israeli parent, then you receive citizenship at birth. David Ha'ivri emigrated to the United States from Israel, where he was born to Israeli parents. Several Zionist leaders have been elected to the Shomron Regional Municipal council. David Ha'ivri is a Zionist leader.", "question": "Based on the above information, is the following statement true, false, or uncertain? David Ha'ivri is an Israeli citizen.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_777", "context": "David Ha'ivri is a political strategist. If you are born in Israel to at least one Israeli parent, then you receive citizenship at birth. David Ha'ivri emigrated to the United States from Israel, where he was born to Israeli parents. Several Zionist leaders have been elected to the Shomron Regional Municipal council. David Ha'ivri is a Zionist leader.", "question": "Based on the above information, is the following statement true, false, or uncertain? David Ha'ivri is a United States citizen.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_778", "context": "David Ha'ivri is a political strategist. If you are born in Israel to at least one Israeli parent, then you receive citizenship at birth. David Ha'ivri emigrated to the United States from Israel, where he was born to Israeli parents. Several Zionist leaders have been elected to the Shomron Regional Municipal council. David Ha'ivri is a Zionist leader.", "question": "Based on the above information, is the following statement true, false, or uncertain? David Ha'ivri has been elected to the Shomron Regional Municipal council.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_779", "context": "Mary has the flu. Flu and influenza are the same disease. Susan doesn't have influenza.", "question": "Based on the above information, is the following statement true, false, or uncertain? Either Mary or Susan has influenza.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_780", "context": "James Cocks was a British lawyer. James Cocks was a Whig politician who sat in the House of Commons. A British is a European. Any lawyer is familiar with laws. Some Whigs speak French.", "question": "Based on the above information, is the following statement true, false, or uncertain? No lawyer ever sat in the House of Commons.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_781", "context": "James Cocks was a British lawyer. James Cocks was a Whig politician who sat in the House of Commons. A British is a European. Any lawyer is familiar with laws. Some Whigs speak French.", "question": "Based on the above information, is the following statement true, false, or uncertain? Some European is familiar with laws.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_782", "context": "James Cocks was a British lawyer. James Cocks was a Whig politician who sat in the House of Commons. A British is a European. Any lawyer is familiar with laws. Some Whigs speak French.", "question": "Based on the above information, is the following statement true, false, or uncertain? James Cocks speaks French.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_783", "context": "Beasts of Prey is either a fantasy novel or a science fiction novel. Science fiction novels are not about mythological creatures Beasts of Prey Is about a creature known as the Shetani. Shetanis are mythological.", "question": "Based on the above information, is the following statement true, false, or uncertain? Beasts of prey is a fantasy novel.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_784", "context": "Beasts of Prey is either a fantasy novel or a science fiction novel. Science fiction novels are not about mythological creatures Beasts of Prey Is about a creature known as the Shetani. Shetanis are mythological.", "question": "Based on the above information, is the following statement true, false, or uncertain? Beasts of prey isn't a science fiction novel.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_785", "context": "Beasts of Prey is either a fantasy novel or a science fiction novel. Science fiction novels are not about mythological creatures Beasts of Prey Is about a creature known as the Shetani. Shetanis are mythological.", "question": "Based on the above information, is the following statement true, false, or uncertain? A shetani is either mythological or a creature.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_786", "context": "Odell is an English surname originating in Odell, Bedfordshire. In some families Odell is spelled O'Dell, in a mistaken Irish adaptation. Notable people with the surname include Amy Odell, Jack Odell, and Mats Odell. Amy Odell is a British singer-songwriter. Jack Odell is an English toy inventor.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jack Odell is a notable people.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_787", "context": "Odell is an English surname originating in Odell, Bedfordshire. In some families Odell is spelled O'Dell, in a mistaken Irish adaptation. Notable people with the surname include Amy Odell, Jack Odell, and Mats Odell. Amy Odell is a British singer-songwriter. Jack Odell is an English toy inventor.", "question": "Based on the above information, is the following statement true, false, or uncertain? Odell is Amy Odell's surname.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_788", "context": "Odell is an English surname originating in Odell, Bedfordshire. In some families Odell is spelled O'Dell, in a mistaken Irish adaptation. Notable people with the surname include Amy Odell, Jack Odell, and Mats Odell. Amy Odell is a British singer-songwriter. Jack Odell is an English toy inventor.", "question": "Based on the above information, is the following statement true, false, or uncertain? Amy Odell is an English toy inventor.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_789", "context": "Odell is an English surname originating in Odell, Bedfordshire. In some families Odell is spelled O'Dell, in a mistaken Irish adaptation. Notable people with the surname include Amy Odell, Jack Odell, and Mats Odell. Amy Odell is a British singer-songwriter. Jack Odell is an English toy inventor.", "question": "Based on the above information, is the following statement true, false, or uncertain? Amy Odell is also Amy O'dell.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_790", "context": "If you go somewhere by train, you will not lose time. If you go somewhere by car and meet traffic jam, you will lose time. If you lose time, you will be late for work. Mary can get from New Haven to New York City either by train or car. Mary is late for work.", "question": "Based on the above information, is the following statement true, false, or uncertain? Mary gets from New Haven to New York City by train.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_791", "context": "If you go somewhere by train, you will not lose time. If you go somewhere by car and meet traffic jam, you will lose time. If you lose time, you will be late for work. Mary can get from New Haven to New York City either by train or car. Mary is late for work.", "question": "Based on the above information, is the following statement true, false, or uncertain? Mary gets from New Haven to New York City by car.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_792", "context": "If you go somewhere by train, you will not lose time. If you go somewhere by car and meet traffic jam, you will lose time. If you lose time, you will be late for work. Mary can get from New Haven to New York City either by train or car. Mary is late for work.", "question": "Based on the above information, is the following statement true, false, or uncertain? Mary meets traffic jam.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_793", "context": "If a person is hungry, the person is uncomfortable. If a person is uncomfortable, the person is unhappy.", "question": "Based on the above information, is the following statement true, false, or uncertain? If a person is not hungry, the person is unhappy.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_794", "context": "Tipped employees do not get a guaranteed minimum wage. If a person is a white-collar worker, they will get a guaranteed minimum wage (All white-collar workers get a guaranteed minimum wage). All lawyers are white-collar workers. Every advocate is a lawyer. Mary is not a lawyer or a tipped employee.", "question": "Based on the above information, is the following statement true, false, or uncertain? Mary is a white-collar worker.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_795", "context": "Tipped employees do not get a guaranteed minimum wage. If a person is a white-collar worker, they will get a guaranteed minimum wage (All white-collar workers get a guaranteed minimum wage). All lawyers are white-collar workers. Every advocate is a lawyer. Mary is not a lawyer or a tipped employee.", "question": "Based on the above information, is the following statement true, false, or uncertain? Mary is an advocate.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_796", "context": "Tipped employees do not get a guaranteed minimum wage. If a person is a white-collar worker, they will get a guaranteed minimum wage (All white-collar workers get a guaranteed minimum wage). All lawyers are white-collar workers. Every advocate is a lawyer. Mary is not a lawyer or a tipped employee.", "question": "Based on the above information, is the following statement true, false, or uncertain? Mary is not an advocate.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_797", "context": "Tipped employees do not get a guaranteed minimum wage. If a person is a white-collar worker, they will get a guaranteed minimum wage (All white-collar workers get a guaranteed minimum wage). All lawyers are white-collar workers. Every advocate is a lawyer. Mary is not a lawyer or a tipped employee.", "question": "Based on the above information, is the following statement true, false, or uncertain? Mary is either an advocate or a tipped employee.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_798", "context": "Tipped employees do not get a guaranteed minimum wage. If a person is a white-collar worker, they will get a guaranteed minimum wage (All white-collar workers get a guaranteed minimum wage). All lawyers are white-collar workers. Every advocate is a lawyer. Mary is not a lawyer or a tipped employee.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Mary is not an advocate and gets a guaranteed minimum wage, she is not a tipped employee.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_799", "context": "Tipped employees do not get a guaranteed minimum wage. If a person is a white-collar worker, they will get a guaranteed minimum wage (All white-collar workers get a guaranteed minimum wage). All lawyers are white-collar workers. Every advocate is a lawyer. Mary is not a lawyer or a tipped employee.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Mary is either an advocate or a tipped employee, she is an advocate.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_800", "context": "Asa Hoffmann was born in New York City. Asa Hoffman lives in Manhattan. Asa Hoffman is a chess player. Some chess players are grandmasters. People born and living in New York City are New Yorkers. People liviing in Manhattan live in New York City.", "question": "Based on the above information, is the following statement true, false, or uncertain? Asa Hoffmann is a New Yorkers.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_801", "context": "Asa Hoffmann was born in New York City. Asa Hoffman lives in Manhattan. Asa Hoffman is a chess player. Some chess players are grandmasters. People born and living in New York City are New Yorkers. People liviing in Manhattan live in New York City.", "question": "Based on the above information, is the following statement true, false, or uncertain? Asa Hoffmann is a grandmaster.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_802", "context": "Asa Hoffmann was born in New York City. Asa Hoffman lives in Manhattan. Asa Hoffman is a chess player. Some chess players are grandmasters. People born and living in New York City are New Yorkers. People liviing in Manhattan live in New York City.", "question": "Based on the above information, is the following statement true, false, or uncertain? Asa Hoffmann does not live in New York.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_803", "context": "Some of those who apply for a Schengen Visa get it. To apply for a Schengen Visa, you need to provide financial guarantees. If you need to provide financial guarantees, you must request documents from the bank. Do not close your bank account if you request documents from the bank. Philip closed his bank account.", "question": "Based on the above information, is the following statement true, false, or uncertain? Philip got a Schengen Visa.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_804", "context": "Some of those who apply for a Schengen Visa get it. To apply for a Schengen Visa, you need to provide financial guarantees. If you need to provide financial guarantees, you must request documents from the bank. Do not close your bank account if you request documents from the bank. Philip closed his bank account.", "question": "Based on the above information, is the following statement true, false, or uncertain? Philip applied for a Schengen Visa and got it.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_805", "context": "Some of those who apply for a Schengen Visa get it. To apply for a Schengen Visa, you need to provide financial guarantees. If you need to provide financial guarantees, you must request documents from the bank. Do not close your bank account if you request documents from the bank. Philip closed his bank account.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Philip did not request documents from the bank or get a Schengen Visa, he didn’t apply for a Schengen Visa.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_806", "context": "Some fears lead to anxiety. Some anxiety leads to terror.", "question": "Based on the above information, is the following statement true, false, or uncertain? No fears lead to terror.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_807", "context": "The Great Lakes are Lake Superior, Lake Michigan, Lake Huron, Lake Erie, and Lake Ontario. Some major settlements of Lake Erie are in NY, PA, OH, and MI. NY, PA, OH, MI are states in the US. ON is a state of Canada. There is a major settlement of Lake Huron in ON. All states are in their country. The US is in North America. The Great Lakes began to form at the end of the Last Glacial Period.", "question": "Based on the above information, is the following statement true, false, or uncertain? Lake Erie has a major settlement.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_808", "context": "The Great Lakes are Lake Superior, Lake Michigan, Lake Huron, Lake Erie, and Lake Ontario. Some major settlements of Lake Erie are in NY, PA, OH, and MI. NY, PA, OH, MI are states in the US. ON is a state of Canada. There is a major settlement of Lake Huron in ON. All states are in their country. The US is in North America. The Great Lakes began to form at the end of the Last Glacial Period.", "question": "Based on the above information, is the following statement true, false, or uncertain? There is a great lake that did not form at the end of the Last Glacial Period.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_809", "context": "All defenders are soccer players. No soccer players are professional basketball players. All centerbacks are defenders. All NBA players are professional basketball players. If Stephen Curry is not an NBA player, then Stephen Curry is not an NBA player or a soccer player.", "question": "Based on the above information, is the following statement true, false, or uncertain? Stephen Curry is a professional basketball player.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_810", "context": "All defenders are soccer players. No soccer players are professional basketball players. All centerbacks are defenders. All NBA players are professional basketball players. If Stephen Curry is not an NBA player, then Stephen Curry is not an NBA player or a soccer player.", "question": "Based on the above information, is the following statement true, false, or uncertain? Stephen Curry is a centerback.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_811", "context": "All defenders are soccer players. No soccer players are professional basketball players. All centerbacks are defenders. All NBA players are professional basketball players. If Stephen Curry is not an NBA player, then Stephen Curry is not an NBA player or a soccer player.", "question": "Based on the above information, is the following statement true, false, or uncertain? Stephen Curry is not a centerback.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_812", "context": "Naive cynicism was proposed by Justin Kruger and a colleague. Thomas Gilovich is a colleague of Justin Kruger. Naive cynicism is a philosophy of mind.", "question": "Based on the above information, is the following statement true, false, or uncertain? Thomas Gilovich proposed naive cynicism.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_813", "context": "Naive cynicism was proposed by Justin Kruger and a colleague. Thomas Gilovich is a colleague of Justin Kruger. Naive cynicism is a philosophy of mind.", "question": "Based on the above information, is the following statement true, false, or uncertain? Justin Kruger propose a philosophy of mind.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_814", "context": "Naive cynicism was proposed by Justin Kruger and a colleague. Thomas Gilovich is a colleague of Justin Kruger. Naive cynicism is a philosophy of mind.", "question": "Based on the above information, is the following statement true, false, or uncertain? Thomas Gilovich worked on philiophies of mind.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_815", "context": " The Turing Award has been awarded to Donald Knuth, Marvin Minsky, Richard Hamming and John McCarthy. Donald Knuth made major contributions to the analysis of algorithms. Marvin Minsky is recognized by his contributions to the field of artificial intelligence. Richard Hamming did research on numerical methods. John McCarthy had a central role in creating and shaping the field of artificial inteligence.", "question": "Based on the above information, is the following statement true, false, or uncertain? At least two people who have won the Turing Award worked in the field of artificial intelligence.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_816", "context": " The Turing Award has been awarded to Donald Knuth, Marvin Minsky, Richard Hamming and John McCarthy. Donald Knuth made major contributions to the analysis of algorithms. Marvin Minsky is recognized by his contributions to the field of artificial intelligence. Richard Hamming did research on numerical methods. John McCarthy had a central role in creating and shaping the field of artificial inteligence.", "question": "Based on the above information, is the following statement true, false, or uncertain? At least two people who worked in the field of artificial intelligence have won the Turing Award.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_817", "context": " The Turing Award has been awarded to Donald Knuth, Marvin Minsky, Richard Hamming and John McCarthy. Donald Knuth made major contributions to the analysis of algorithms. Marvin Minsky is recognized by his contributions to the field of artificial intelligence. Richard Hamming did research on numerical methods. John McCarthy had a central role in creating and shaping the field of artificial inteligence.", "question": "Based on the above information, is the following statement true, false, or uncertain? Only one people who have won the Turing Award made significant contributions to the analysis of algorithms.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_818", "context": " The Turing Award has been awarded to Donald Knuth, Marvin Minsky, Richard Hamming and John McCarthy. Donald Knuth made major contributions to the analysis of algorithms. Marvin Minsky is recognized by his contributions to the field of artificial intelligence. Richard Hamming did research on numerical methods. John McCarthy had a central role in creating and shaping the field of artificial inteligence.", "question": "Based on the above information, is the following statement true, false, or uncertain? No Turing Award winners worked in the field of numerical methods.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_819", "context": "No easy Leetcode problems have an AC rate lower than 20 percent. All Leetcode problems recommended to novices are easy. Leetcode problems either have an AC rate lower than 20 percent or are starred by more than 1 thousand users. All hard Leetcode problems are starred by more than 1 thousand users. No Leetcode problems published after 2022 are starred by more than 1 thousand users. 2Sum is not recommended to novices and hard. 4Sum is either starred by more than 1 thousand users and published after 2022, or neither starred by more than 1 thousand users nor published after 2022.", "question": "Based on the above information, is the following statement true, false, or uncertain? 2Sum is an easy Leetcode problem.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_820", "context": "No easy Leetcode problems have an AC rate lower than 20 percent. All Leetcode problems recommended to novices are easy. Leetcode problems either have an AC rate lower than 20 percent or are starred by more than 1 thousand users. All hard Leetcode problems are starred by more than 1 thousand users. No Leetcode problems published after 2022 are starred by more than 1 thousand users. 2Sum is not recommended to novices and hard. 4Sum is either starred by more than 1 thousand users and published after 2022, or neither starred by more than 1 thousand users nor published after 2022.", "question": "Based on the above information, is the following statement true, false, or uncertain? 2Sum is not an easy Leetcode problem.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_821", "context": "No easy Leetcode problems have an AC rate lower than 20 percent. All Leetcode problems recommended to novices are easy. Leetcode problems either have an AC rate lower than 20 percent or are starred by more than 1 thousand users. All hard Leetcode problems are starred by more than 1 thousand users. No Leetcode problems published after 2022 are starred by more than 1 thousand users. 2Sum is not recommended to novices and hard. 4Sum is either starred by more than 1 thousand users and published after 2022, or neither starred by more than 1 thousand users nor published after 2022.", "question": "Based on the above information, is the following statement true, false, or uncertain? 4Sum is a Leetcode problem recommended to the novice or is hard.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_822", "context": "No easy Leetcode problems have an AC rate lower than 20 percent. All Leetcode problems recommended to novices are easy. Leetcode problems either have an AC rate lower than 20 percent or are starred by more than 1 thousand users. All hard Leetcode problems are starred by more than 1 thousand users. No Leetcode problems published after 2022 are starred by more than 1 thousand users. 2Sum is not recommended to novices and hard. 4Sum is either starred by more than 1 thousand users and published after 2022, or neither starred by more than 1 thousand users nor published after 2022.", "question": "Based on the above information, is the following statement true, false, or uncertain? 4Sum is neither a 2Sum Leetcode problem recommended to the novice nor a Leetcode problem that's hard.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_823", "context": "Show Your Love is a song recorded by the South Korean boy band BtoB 4u. The lead single of the extended play Inside is Show Your Love. Show Your Love contains a hopeful message. BtoB 4u member Hyunsik wrote Show Your Love. There is a music video for Show Your Love.", "question": "Based on the above information, is the following statement true, false, or uncertain? Show your love wasn't written by a member of a boy band.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_824", "context": "Show Your Love is a song recorded by the South Korean boy band BtoB 4u. The lead single of the extended play Inside is Show Your Love. Show Your Love contains a hopeful message. BtoB 4u member Hyunsik wrote Show Your Love. There is a music video for Show Your Love.", "question": "Based on the above information, is the following statement true, false, or uncertain? A lead single of inside contains a a hopeful message.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_825", "context": "Show Your Love is a song recorded by the South Korean boy band BtoB 4u. The lead single of the extended play Inside is Show Your Love. Show Your Love contains a hopeful message. BtoB 4u member Hyunsik wrote Show Your Love. There is a music video for Show Your Love.", "question": "Based on the above information, is the following statement true, false, or uncertain? Hyunsik is Korean.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_826", "context": "All tables are round. Some furniture are tables.", "question": "Based on the above information, is the following statement true, false, or uncertain? Some furniture are round.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_827", "context": "All juvenile delinquents are maladjusted individuals. Some juvenile delinquents are products of broken homes.", "question": "Based on the above information, is the following statement true, false, or uncertain? Some maladjusted individuals are products of broken homes.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_828", "context": "Either brain reading or brain decoding. All brain decoding is extracting information from BOLD signals. No extracting information from BOLD signals is without statistical pattern analysis. Writing a novel is without statistical pattern analysis. If multivoxel (pattern) analysis is without statistical pattern analysis and a brain reading, then multivoxel (pattern) analysis is without statistical pattern analysis and brain decoding.", "question": "Based on the above information, is the following statement true, false, or uncertain? Multivoxel (pattern) analysis is a brain decoding.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_829", "context": "Either brain reading or brain decoding. All brain decoding is extracting information from BOLD signals. No extracting information from BOLD signals is without statistical pattern analysis. Writing a novel is without statistical pattern analysis. If multivoxel (pattern) analysis is without statistical pattern analysis and a brain reading, then multivoxel (pattern) analysis is without statistical pattern analysis and brain decoding.", "question": "Based on the above information, is the following statement true, false, or uncertain? Multivoxel (pattern) analysis is the writing of a novel.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_830", "context": "Either brain reading or brain decoding. All brain decoding is extracting information from BOLD signals. No extracting information from BOLD signals is without statistical pattern analysis. Writing a novel is without statistical pattern analysis. If multivoxel (pattern) analysis is without statistical pattern analysis and a brain reading, then multivoxel (pattern) analysis is without statistical pattern analysis and brain decoding.", "question": "Based on the above information, is the following statement true, false, or uncertain? Multivoxel (pattern) analysis is without statistical pattern analysis and writing a novel.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_831", "context": "Either brain reading or brain decoding. All brain decoding is extracting information from BOLD signals. No extracting information from BOLD signals is without statistical pattern analysis. Writing a novel is without statistical pattern analysis. If multivoxel (pattern) analysis is without statistical pattern analysis and a brain reading, then multivoxel (pattern) analysis is without statistical pattern analysis and brain decoding.", "question": "Based on the above information, is the following statement true, false, or uncertain? Multivoxel (pattern) analysis is without statistical pattern analysis or writing a novel.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_832", "context": "Either brain reading or brain decoding. All brain decoding is extracting information from BOLD signals. No extracting information from BOLD signals is without statistical pattern analysis. Writing a novel is without statistical pattern analysis. If multivoxel (pattern) analysis is without statistical pattern analysis and a brain reading, then multivoxel (pattern) analysis is without statistical pattern analysis and brain decoding.", "question": "Based on the above information, is the following statement true, false, or uncertain? Multivoxel (pattern) analysis is either without statistical pattern analysis or writing a novel.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_833", "context": "Either brain reading or brain decoding. All brain decoding is extracting information from BOLD signals. No extracting information from BOLD signals is without statistical pattern analysis. Writing a novel is without statistical pattern analysis. If multivoxel (pattern) analysis is without statistical pattern analysis and a brain reading, then multivoxel (pattern) analysis is without statistical pattern analysis and brain decoding.", "question": "Based on the above information, is the following statement true, false, or uncertain? If multivoxel (pattern) analysis is writing a novel, then multivoxel (pattern) analysis is neither without statistical pattern analysis nor writing a novel.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_834", "context": "If you have room for dessert, you have room for broccoli. Everyone at Luis's dinner party has room for dessert, including Luis. Mauricia does not have room for broccoli. Luis's dinner party is the first ever dinner party that Allison has attended. Gustave has room for both broccoli and asparagus. Broccoli and asparagus are both vegetables.", "question": "Based on the above information, is the following statement true, false, or uncertain? Allison has room for broccoli.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_835", "context": "If you have room for dessert, you have room for broccoli. Everyone at Luis's dinner party has room for dessert, including Luis. Mauricia does not have room for broccoli. Luis's dinner party is the first ever dinner party that Allison has attended. Gustave has room for both broccoli and asparagus. Broccoli and asparagus are both vegetables.", "question": "Based on the above information, is the following statement true, false, or uncertain? Mauricia is at Luis's dinner party.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_836", "context": "If you have room for dessert, you have room for broccoli. Everyone at Luis's dinner party has room for dessert, including Luis. Mauricia does not have room for broccoli. Luis's dinner party is the first ever dinner party that Allison has attended. Gustave has room for both broccoli and asparagus. Broccoli and asparagus are both vegetables.", "question": "Based on the above information, is the following statement true, false, or uncertain? Gustav has room for dessert.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_837", "context": "Imagine Dragons is an American pop rock band. The lead singer of Imagine Dragons is Dan. Dan is also a songwriter. All lead singers are singers. All singers are musicians. Demons is one of the most popular singles of Imagine Dragons. Some singles of Imagine Dragons have been on Billboard Hot 100.", "question": "Based on the above information, is the following statement true, false, or uncertain? Some rock band has a songwriter.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_838", "context": "Imagine Dragons is an American pop rock band. The lead singer of Imagine Dragons is Dan. Dan is also a songwriter. All lead singers are singers. All singers are musicians. Demons is one of the most popular singles of Imagine Dragons. Some singles of Imagine Dragons have been on Billboard Hot 100.", "question": "Based on the above information, is the following statement true, false, or uncertain? Dan is not a musician.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_839", "context": "Imagine Dragons is an American pop rock band. The lead singer of Imagine Dragons is Dan. Dan is also a songwriter. All lead singers are singers. All singers are musicians. Demons is one of the most popular singles of Imagine Dragons. Some singles of Imagine Dragons have been on Billboard Hot 100.", "question": "Based on the above information, is the following statement true, false, or uncertain? Demons has been on Billboard Hot 100.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_840", "context": "All bread is food. Some sandwiches are bread. All food is edible. No edible things are poisonous. Deodorant is poisonous.", "question": "Based on the above information, is the following statement true, false, or uncertain? Deodorant is a sandwich.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_841", "context": "All bread is food. Some sandwiches are bread. All food is edible. No edible things are poisonous. Deodorant is poisonous.", "question": "Based on the above information, is the following statement true, false, or uncertain? Deodorant is a sandwich and bread.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_842", "context": "All bread is food. Some sandwiches are bread. All food is edible. No edible things are poisonous. Deodorant is poisonous.", "question": "Based on the above information, is the following statement true, false, or uncertain? If deodorant is a loaf of bread, then deodorant is not a sandwich.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_843", "context": "Common utilities include water, electricity, gas, heating, sewer, trash, and recycling. Many apartment rents cover the cost of water and electricity. Susan lives in an apartment where the rent covers all utilities. The rent of the apartment where Ava lives does not cover any utility expenses. Noah lives in an apartment where the rent does not cover heating.", "question": "Based on the above information, is the following statement true, false, or uncertain? Noah needs to pay the water bill.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_844", "context": "Common utilities include water, electricity, gas, heating, sewer, trash, and recycling. Many apartment rents cover the cost of water and electricity. Susan lives in an apartment where the rent covers all utilities. The rent of the apartment where Ava lives does not cover any utility expenses. Noah lives in an apartment where the rent does not cover heating.", "question": "Based on the above information, is the following statement true, false, or uncertain? Noah and Ava both need to pay the heating bill.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_845", "context": "Common utilities include water, electricity, gas, heating, sewer, trash, and recycling. Many apartment rents cover the cost of water and electricity. Susan lives in an apartment where the rent covers all utilities. The rent of the apartment where Ava lives does not cover any utility expenses. Noah lives in an apartment where the rent does not cover heating.", "question": "Based on the above information, is the following statement true, false, or uncertain? Susan does not need to pay the water bill.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_846", "context": "All clothes are products. No products are perfect. All dresses are clothes. All skirts are dresses. If Nike is clothes, then Nike is perfect and a dress.", "question": "Based on the above information, is the following statement true, false, or uncertain? Nike is perfect.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_847", "context": "All clothes are products. No products are perfect. All dresses are clothes. All skirts are dresses. If Nike is clothes, then Nike is perfect and a dress.", "question": "Based on the above information, is the following statement true, false, or uncertain? Nike is a skirt.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_848", "context": "All clothes are products. No products are perfect. All dresses are clothes. All skirts are dresses. If Nike is clothes, then Nike is perfect and a dress.", "question": "Based on the above information, is the following statement true, false, or uncertain? Nike is not a skirt.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_849", "context": "All pets are animals. Pets can be either a dog or a cat. If a person has a pet, they care for that pet. Dogs and Cats can be naughty. Pets who are naughty are not liked as much. Charlie has a naughty pet dog named Leo.", "question": "Based on the above information, is the following statement true, false, or uncertain? Leo is an animal.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_850", "context": "All pets are animals. Pets can be either a dog or a cat. If a person has a pet, they care for that pet. Dogs and Cats can be naughty. Pets who are naughty are not liked as much. Charlie has a naughty pet dog named Leo.", "question": "Based on the above information, is the following statement true, false, or uncertain? Charlie does not like Leo and does not care for Leo.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_851", "context": "All pets are animals. Pets can be either a dog or a cat. If a person has a pet, they care for that pet. Dogs and Cats can be naughty. Pets who are naughty are not liked as much. Charlie has a naughty pet dog named Leo.", "question": "Based on the above information, is the following statement true, false, or uncertain? Dogs are always not naughty.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_852", "context": "Surprises are either fun or dreadful. All scares are surprises.", "question": "Based on the above information, is the following statement true, false, or uncertain? All scares are fun.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_853", "context": "All books written by Cixin Liu have sold more than 1 million copies. Some books that have won the Hugo Award were written by Cixin Liu. All books about the future are influenced by Isaac Asimov. The book the Three Body Problem has sold more than 1 million copies. The Three Body Problem is about the future.", "question": "Based on the above information, is the following statement true, false, or uncertain? The Three Body Problem won the Hugo Award.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_854", "context": "All books written by Cixin Liu have sold more than 1 million copies. Some books that have won the Hugo Award were written by Cixin Liu. All books about the future are influenced by Isaac Asimov. The book the Three Body Problem has sold more than 1 million copies. The Three Body Problem is about the future.", "question": "Based on the above information, is the following statement true, false, or uncertain? The Three Body Problem was influenced by Isaac Asimov.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_855", "context": "All books written by Cixin Liu have sold more than 1 million copies. Some books that have won the Hugo Award were written by Cixin Liu. All books about the future are influenced by Isaac Asimov. The book the Three Body Problem has sold more than 1 million copies. The Three Body Problem is about the future.", "question": "Based on the above information, is the following statement true, false, or uncertain? The Three Body Problem was written by Cixin Liu.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_856", "context": "Some students who major in computer science get up early. If a student gets up early, then he/she will study in the morning. All students studying in the morning are good at time management. All students good at time management are popular among students. James is not popular among students.", "question": "Based on the above information, is the following statement true, false, or uncertain? James majors in computer science.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_857", "context": "Some students who major in computer science get up early. If a student gets up early, then he/she will study in the morning. All students studying in the morning are good at time management. All students good at time management are popular among students. James is not popular among students.", "question": "Based on the above information, is the following statement true, false, or uncertain? James majors in computer science and gets up early.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_858", "context": "Some students who major in computer science get up early. If a student gets up early, then he/she will study in the morning. All students studying in the morning are good at time management. All students good at time management are popular among students. James is not popular among students.", "question": "Based on the above information, is the following statement true, false, or uncertain? If James gets up early, then he majors in computer science.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_859", "context": "There is no dog on the roof. If there is a dog on the roof something went wrong.", "question": "Based on the above information, is the following statement true, false, or uncertain? Something went wrong.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_860", "context": "Elephantopus is a genus of perennial plants in the daisy family. Elephantopus is widespread over much of Africa, southern Asia, Australia, and the Americas. Several species of Elephantopus are native to the southeastern United States. Elephantopus scaber is a traditional medicine.", "question": "Based on the above information, is the following statement true, false, or uncertain? Elephantopus is widespread over much of Australia and Southern Asia.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_861", "context": "Elephantopus is a genus of perennial plants in the daisy family. Elephantopus is widespread over much of Africa, southern Asia, Australia, and the Americas. Several species of Elephantopus are native to the southeastern United States. Elephantopus scaber is a traditional medicine.", "question": "Based on the above information, is the following statement true, false, or uncertain? No Elephantopus is native to the southeastern United States.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_862", "context": "Elephantopus is a genus of perennial plants in the daisy family. Elephantopus is widespread over much of Africa, southern Asia, Australia, and the Americas. Several species of Elephantopus are native to the southeastern United States. Elephantopus scaber is a traditional medicine.", "question": "Based on the above information, is the following statement true, false, or uncertain? Elephantopus is a traditional medicine.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_863", "context": "All Yale dormitories are located on York Street. All buildings managed by Yale Housing are dormitories. All buildings operated by Yale Housing staff are managed by Yale Housing. No buildings open to students are established after 1800. All buildings located on York Street are open to students. Harkness is either a building operated by Yale Housing staff or located on York Street.", "question": "Based on the above information, is the following statement true, false, or uncertain? Harkness is a Yale dormitory.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_864", "context": "All Yale dormitories are located on York Street. All buildings managed by Yale Housing are dormitories. All buildings operated by Yale Housing staff are managed by Yale Housing. No buildings open to students are established after 1800. All buildings located on York Street are open to students. Harkness is either a building operated by Yale Housing staff or located on York Street.", "question": "Based on the above information, is the following statement true, false, or uncertain? Harkness is not a Yale dormitory.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_865", "context": "All Yale dormitories are located on York Street. All buildings managed by Yale Housing are dormitories. All buildings operated by Yale Housing staff are managed by Yale Housing. No buildings open to students are established after 1800. All buildings located on York Street are open to students. Harkness is either a building operated by Yale Housing staff or located on York Street.", "question": "Based on the above information, is the following statement true, false, or uncertain? Harkness is established after 1800.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_866", "context": "All Yale dormitories are located on York Street. All buildings managed by Yale Housing are dormitories. All buildings operated by Yale Housing staff are managed by Yale Housing. No buildings open to students are established after 1800. All buildings located on York Street are open to students. Harkness is either a building operated by Yale Housing staff or located on York Street.", "question": "Based on the above information, is the following statement true, false, or uncertain? Harkness is established before 1800.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_867", "context": "There are no mansion houses in an urban area. All skyscrapers reside in urban areas. Every creepy haunted house is in a mansion house. Every terrifying Halloween scare comes from a creepy haunted house. The Scream is a creepy haunted house or a terrifying Halloween scare.", "question": "Based on the above information, is the following statement true, false, or uncertain? The Scream is a skyscraper.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_868", "context": "There are no mansion houses in an urban area. All skyscrapers reside in urban areas. Every creepy haunted house is in a mansion house. Every terrifying Halloween scare comes from a creepy haunted house. The Scream is a creepy haunted house or a terrifying Halloween scare.", "question": "Based on the above information, is the following statement true, false, or uncertain? The Scream is not a skyscraper.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_869", "context": "There are no mansion houses in an urban area. All skyscrapers reside in urban areas. Every creepy haunted house is in a mansion house. Every terrifying Halloween scare comes from a creepy haunted house. The Scream is a creepy haunted house or a terrifying Halloween scare.", "question": "Based on the above information, is the following statement true, false, or uncertain? The Scream is a terrifying Halloween scare.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_870", "context": "There are no mansion houses in an urban area. All skyscrapers reside in urban areas. Every creepy haunted house is in a mansion house. Every terrifying Halloween scare comes from a creepy haunted house. The Scream is a creepy haunted house or a terrifying Halloween scare.", "question": "Based on the above information, is the following statement true, false, or uncertain? The Scream is either a skyscraper or a mansion house.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_871", "context": "There are no mansion houses in an urban area. All skyscrapers reside in urban areas. Every creepy haunted house is in a mansion house. Every terrifying Halloween scare comes from a creepy haunted house. The Scream is a creepy haunted house or a terrifying Halloween scare.", "question": "Based on the above information, is the following statement true, false, or uncertain? The Scream is either a skyscraper or an urban area.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_872", "context": "There are no mansion houses in an urban area. All skyscrapers reside in urban areas. Every creepy haunted house is in a mansion house. Every terrifying Halloween scare comes from a creepy haunted house. The Scream is a creepy haunted house or a terrifying Halloween scare.", "question": "Based on the above information, is the following statement true, false, or uncertain? The Scream is either a skyscraper or a creepy haunted house.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_873", "context": "There are no mansion houses in an urban area. All skyscrapers reside in urban areas. Every creepy haunted house is in a mansion house. Every terrifying Halloween scare comes from a creepy haunted house. The Scream is a creepy haunted house or a terrifying Halloween scare.", "question": "Based on the above information, is the following statement true, false, or uncertain? If The Scream is not a mansion in an urban area, then it is either a skyscraper or an urban area.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_874", "context": "There are no mansion houses in an urban area. All skyscrapers reside in urban areas. Every creepy haunted house is in a mansion house. Every terrifying Halloween scare comes from a creepy haunted house. The Scream is a creepy haunted house or a terrifying Halloween scare.", "question": "Based on the above information, is the following statement true, false, or uncertain? If The Scream is either a skyscraper or a mansion house, then it is in an urban area.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_875", "context": "There are no mansion houses in an urban area. All skyscrapers reside in urban areas. Every creepy haunted house is in a mansion house. Every terrifying Halloween scare comes from a creepy haunted house. The Scream is a creepy haunted house or a terrifying Halloween scare.", "question": "Based on the above information, is the following statement true, false, or uncertain? If The Scream is either a skyscraper or a mansion house, then it is neither a creepy haunted house nor a terrifying Halloween scare.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_876", "context": "There are no mansion houses in an urban area. All skyscrapers reside in urban areas. Every creepy haunted house is in a mansion house. Every terrifying Halloween scare comes from a creepy haunted house. The Scream is a creepy haunted house or a terrifying Halloween scare.", "question": "Based on the above information, is the following statement true, false, or uncertain? If The Scream is either a skyscraper or a creepy haunted house, then it is not a mansion house.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_877", "context": "Phuoc Binh national park is a national park in Vietnam. Any national park in Vietnam is classified as a nature reserve. There is a national park in Vietnam classified as a UNESCO World Heritage Site. All national parks in Vietnam are either managed by the Ministry of Agriculture or by the People's Committee. Phuoc Binh is not managed by the Ministry of Agriculture.", "question": "Based on the above information, is the following statement true, false, or uncertain? There is a nature reserve in Vietnam.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_878", "context": "Phuoc Binh national park is a national park in Vietnam. Any national park in Vietnam is classified as a nature reserve. There is a national park in Vietnam classified as a UNESCO World Heritage Site. All national parks in Vietnam are either managed by the Ministry of Agriculture or by the People's Committee. Phuoc Binh is not managed by the Ministry of Agriculture.", "question": "Based on the above information, is the following statement true, false, or uncertain? Phuoc Binh is a UNESCO Heritage Site.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_879", "context": "Phuoc Binh national park is a national park in Vietnam. Any national park in Vietnam is classified as a nature reserve. There is a national park in Vietnam classified as a UNESCO World Heritage Site. All national parks in Vietnam are either managed by the Ministry of Agriculture or by the People's Committee. Phuoc Binh is not managed by the Ministry of Agriculture.", "question": "Based on the above information, is the following statement true, false, or uncertain? Phuoc Binh is managed by the People's Committee.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_880", "context": "Greyhound racing is a competitive sport where spectators bet on greyhounds. Coursing is a part of Greyhound racing. Some competitive sports where spectators bet on things are banned. Coursing involves spectators betting on a hare being pursued by greyhounds. Hares are small game. If a competitive sport involves spectators betting on small game, then it is banned.", "question": "Based on the above information, is the following statement true, false, or uncertain? No coursing is banned.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_881", "context": "Greyhound racing is a competitive sport where spectators bet on greyhounds. Coursing is a part of Greyhound racing. Some competitive sports where spectators bet on things are banned. Coursing involves spectators betting on a hare being pursued by greyhounds. Hares are small game. If a competitive sport involves spectators betting on small game, then it is banned.", "question": "Based on the above information, is the following statement true, false, or uncertain? Greyhound racing is a competitive sport.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_882", "context": "If a soccer player receives two yellow cards in one game, this player will be ejected from the rest of the game. If a soccer player receives one red card in one game, this player will be ejected from the rest of the game. Henry is a soccer player. In one game, Henry first receives one yellow card, then he receives one red card.", "question": "Based on the above information, is the following statement true, false, or uncertain? Henry will be ejected from the rest of the game.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_883", "context": "If a soccer player receives two yellow cards in one game, this player will be ejected from the rest of the game. If a soccer player receives one red card in one game, this player will be ejected from the rest of the game. Henry is a soccer player. In one game, Henry first receives one yellow card, then he receives one red card.", "question": "Based on the above information, is the following statement true, false, or uncertain? Henry will not be ejected from the rest of the game.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_884", "context": "All trees are plants. Some living things are trees.", "question": "Based on the above information, is the following statement true, false, or uncertain? Some living things are plants.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_885", "context": "Dagfinn is a given name. Notable people with the given name include Dagfinn Aarskog, Dagfinn Bakke and Dagfinn Dahl. Dagfinn Aarskog is a Norwegian physician. Dagfinn Dahl is a Norwegian barrister.", "question": "Based on the above information, is the following statement true, false, or uncertain? Dagfinn Aarskog is a notable person.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_886", "context": "Dagfinn is a given name. Notable people with the given name include Dagfinn Aarskog, Dagfinn Bakke and Dagfinn Dahl. Dagfinn Aarskog is a Norwegian physician. Dagfinn Dahl is a Norwegian barrister.", "question": "Based on the above information, is the following statement true, false, or uncertain? Dagfinn is Dagfinn Aarskog's given name.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_887", "context": "Dagfinn is a given name. Notable people with the given name include Dagfinn Aarskog, Dagfinn Bakke and Dagfinn Dahl. Dagfinn Aarskog is a Norwegian physician. Dagfinn Dahl is a Norwegian barrister.", "question": "Based on the above information, is the following statement true, false, or uncertain? Dagfinn Dahl is a Norwegian physician.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_888", "context": "If entertainment is interesting, it will be popular. All popular things are well-known.", "question": "Based on the above information, is the following statement true, false, or uncertain? If entertainment is interesting, it will be well-known.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_889", "context": "It is not true that some giant language models do not have good performance. All language models with good performance are used by some researchers. If a language model is used by some researchers, it is popular. If BERT is a giant language model, then GPT-3 is also a giant language model. BERT is a giant language model.", "question": "Based on the above information, is the following statement true, false, or uncertain? GPT-3 is popular.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_890", "context": "St Johnstone is a Scottish team. St Johnstone is part of the Scottish Premiership. If a team is part of the league, it has joined the league. St Johnstone and Minsk are different teams. For two different teams, either one team wins or the other team wins. Minsk won against St Johnstone.", "question": "Based on the above information, is the following statement true, false, or uncertain? At least one Scottish team has joined the Scottish Premiership.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_891", "context": "St Johnstone is a Scottish team. St Johnstone is part of the Scottish Premiership. If a team is part of the league, it has joined the league. St Johnstone and Minsk are different teams. For two different teams, either one team wins or the other team wins. Minsk won against St Johnstone.", "question": "Based on the above information, is the following statement true, false, or uncertain? St Johnstone won against Minsk.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_892", "context": "St Johnstone is a Scottish team. St Johnstone is part of the Scottish Premiership. If a team is part of the league, it has joined the league. St Johnstone and Minsk are different teams. For two different teams, either one team wins or the other team wins. Minsk won against St Johnstone.", "question": "Based on the above information, is the following statement true, false, or uncertain? Minsk joined the Scottish Premiership.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_893", "context": "No Boeing-737 plane is equipped with more than 300 seats. All planes in Delta are of type Boeing-737. Planes are either equipped with more than 300 seats or have a capacity of 100 passengers. All planes with a capacity of 100 passengers are scheduled for a short-distance flight. All planes with a capacity of 100 passengers are produced before 2010. Jake32 is either a Boeing-737 plane or a plane in Delta. T10 is either a Boeing-737 plane and in Delta, or neither a Boeing-737 plane nor in Delta.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jake32 was produced before 2010 and is scheduled for a short-distance flight.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_894", "context": "No Boeing-737 plane is equipped with more than 300 seats. All planes in Delta are of type Boeing-737. Planes are either equipped with more than 300 seats or have a capacity of 100 passengers. All planes with a capacity of 100 passengers are scheduled for a short-distance flight. All planes with a capacity of 100 passengers are produced before 2010. Jake32 is either a Boeing-737 plane or a plane in Delta. T10 is either a Boeing-737 plane and in Delta, or neither a Boeing-737 plane nor in Delta.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jake32 is not produced before 2010 and is not scheduled for a short-distance flight.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_895", "context": "No Boeing-737 plane is equipped with more than 300 seats. All planes in Delta are of type Boeing-737. Planes are either equipped with more than 300 seats or have a capacity of 100 passengers. All planes with a capacity of 100 passengers are scheduled for a short-distance flight. All planes with a capacity of 100 passengers are produced before 2010. Jake32 is either a Boeing-737 plane or a plane in Delta. T10 is either a Boeing-737 plane and in Delta, or neither a Boeing-737 plane nor in Delta.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jake32 is produced before 2010 or scheduled for a short-distance flight.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_896", "context": "No Boeing-737 plane is equipped with more than 300 seats. All planes in Delta are of type Boeing-737. Planes are either equipped with more than 300 seats or have a capacity of 100 passengers. All planes with a capacity of 100 passengers are scheduled for a short-distance flight. All planes with a capacity of 100 passengers are produced before 2010. Jake32 is either a Boeing-737 plane or a plane in Delta. T10 is either a Boeing-737 plane and in Delta, or neither a Boeing-737 plane nor in Delta.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jake32 is neither produced before 2010 nor scheduled for a short-distance flight.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_897", "context": "The SAT test is wholly owned and developed by the College Board. The SAT test is intended to assess student's readiness for college. The SAT was originally designed not to be aligned with high school curricula. Several adjustments were made for the version of the SAT introduced in 2016 to reflect more closely on what students learn in high school.", "question": "Based on the above information, is the following statement true, false, or uncertain? Since 2016 the SAT has been better aligned with high school curricula.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_898", "context": "The SAT test is wholly owned and developed by the College Board. The SAT test is intended to assess student's readiness for college. The SAT was originally designed not to be aligned with high school curricula. Several adjustments were made for the version of the SAT introduced in 2016 to reflect more closely on what students learn in high school.", "question": "Based on the above information, is the following statement true, false, or uncertain? The SAT test is owned by the College Board and multiple other third parties.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_899", "context": "The SAT test is wholly owned and developed by the College Board. The SAT test is intended to assess student's readiness for college. The SAT was originally designed not to be aligned with high school curricula. Several adjustments were made for the version of the SAT introduced in 2016 to reflect more closely on what students learn in high school.", "question": "Based on the above information, is the following statement true, false, or uncertain? The SAT test assesses student's math skills.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_900", "context": "Rafa Nadal was born in Mallorca. Rafa Nadal is a professional tennis player. Nadal's win ratio is higher than 80%. All players in the Big 3 are professionals who have a high win ratio.", "question": "Based on the above information, is the following statement true, false, or uncertain? Nadal was not born in Mallorca.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_901", "context": "Rafa Nadal was born in Mallorca. Rafa Nadal is a professional tennis player. Nadal's win ratio is higher than 80%. All players in the Big 3 are professionals who have a high win ratio.", "question": "Based on the above information, is the following statement true, false, or uncertain? Nadal is in the Big 3.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_902", "context": "Rafa Nadal was born in Mallorca. Rafa Nadal is a professional tennis player. Nadal's win ratio is higher than 80%. All players in the Big 3 are professionals who have a high win ratio.", "question": "Based on the above information, is the following statement true, false, or uncertain? Nadal is the greatest player of all time.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_903", "context": "No cookie is healthy. All oreos are cookies.", "question": "Based on the above information, is the following statement true, false, or uncertain? All cookies are delicious.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_904", "context": "No animals are plants. All humans are animals. All pupils are human. All flowers are plants. If Jack is a human or a flower, then Jack is a human and a flower.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jack is a pupil.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_905", "context": "No animals are plants. All humans are animals. All pupils are human. All flowers are plants. If Jack is a human or a flower, then Jack is a human and a flower.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jack is not a pupil.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_906", "context": "No animals are plants. All humans are animals. All pupils are human. All flowers are plants. If Jack is a human or a flower, then Jack is a human and a flower.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jack is a plant.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_907", "context": "No animals are plants. All humans are animals. All pupils are human. All flowers are plants. If Jack is a human or a flower, then Jack is a human and a flower.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Jack is a human, then Jack is not a pupil.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_908", "context": "No shoes are food. All slippers are shoes. A thing is either food or clothes. No wearable things are airtight. All clothes are wearable. If a watch is not airtight and clothes, then a watch is either both airtight and clothes, or neither airtight nor clothes.", "question": "Based on the above information, is the following statement true, false, or uncertain? Watch is a wearable.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_909", "context": "No shoes are food. All slippers are shoes. A thing is either food or clothes. No wearable things are airtight. All clothes are wearable. If a watch is not airtight and clothes, then a watch is either both airtight and clothes, or neither airtight nor clothes.", "question": "Based on the above information, is the following statement true, false, or uncertain? Watch is a slipper.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_910", "context": "No shoes are food. All slippers are shoes. A thing is either food or clothes. No wearable things are airtight. All clothes are wearable. If a watch is not airtight and clothes, then a watch is either both airtight and clothes, or neither airtight nor clothes.", "question": "Based on the above information, is the following statement true, false, or uncertain? Watch is neither airtight nor a slipper.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_911", "context": "An Olympian is a person who trains for an Olympic sport and goes to the Olympics. Carlos Reyes trains for an Olympic sport. Carlos Reyes went to the Olympics. Carlos Reyes is a welterweight. Heavy weights are not welterweights.", "question": "Based on the above information, is the following statement true, false, or uncertain? Carlos Reyes is an Olympian.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_912", "context": "An Olympian is a person who trains for an Olympic sport and goes to the Olympics. Carlos Reyes trains for an Olympic sport. Carlos Reyes went to the Olympics. Carlos Reyes is a welterweight. Heavy weights are not welterweights.", "question": "Based on the above information, is the following statement true, false, or uncertain? Carlos Reyes is a heavy weight.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_913", "context": "An Olympian is a person who trains for an Olympic sport and goes to the Olympics. Carlos Reyes trains for an Olympic sport. Carlos Reyes went to the Olympics. Carlos Reyes is a welterweight. Heavy weights are not welterweights.", "question": "Based on the above information, is the following statement true, false, or uncertain? Carlos Reyes won an Olympic medal.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_914", "context": "If people have a lot of decorations in their room, they cannot pack and move out of their rooms very easily. If people have high ambitions and future career goals, then they can pack and move out of their rooms very easily. If people are big fans of pop bands and singers, then they have a lot of decorations in their room. All young teenage girls who attend college are big fans of pop bands and singers. If Sam has high ambitions and future career goals, then Sam is a big fan of pop bands and singers.", "question": "Based on the above information, is the following statement true, false, or uncertain? Sam is a young teenage girl who attends college.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_915", "context": "If people have a lot of decorations in their room, they cannot pack and move out of their rooms very easily. If people have high ambitions and future career goals, then they can pack and move out of their rooms very easily. If people are big fans of pop bands and singers, then they have a lot of decorations in their room. All young teenage girls who attend college are big fans of pop bands and singers. If Sam has high ambitions and future career goals, then Sam is a big fan of pop bands and singers.", "question": "Based on the above information, is the following statement true, false, or uncertain? Sam is not a young teenage girl who attends college.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_916", "context": "If people have a lot of decorations in their room, they cannot pack and move out of their rooms very easily. If people have high ambitions and future career goals, then they can pack and move out of their rooms very easily. If people are big fans of pop bands and singers, then they have a lot of decorations in their room. All young teenage girls who attend college are big fans of pop bands and singers. If Sam has high ambitions and future career goals, then Sam is a big fan of pop bands and singers.", "question": "Based on the above information, is the following statement true, false, or uncertain? Sam is a big fan of pop bands and singers.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_917", "context": "If people have a lot of decorations in their room, they cannot pack and move out of their rooms very easily. If people have high ambitions and future career goals, then they can pack and move out of their rooms very easily. If people are big fans of pop bands and singers, then they have a lot of decorations in their room. All young teenage girls who attend college are big fans of pop bands and singers. If Sam has high ambitions and future career goals, then Sam is a big fan of pop bands and singers.", "question": "Based on the above information, is the following statement true, false, or uncertain? Sam neither has high ambitions and future career goals nor is she a young teenage girl who attends college.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_918", "context": "If people have a lot of decorations in their room, they cannot pack and move out of their rooms very easily. If people have high ambitions and future career goals, then they can pack and move out of their rooms very easily. If people are big fans of pop bands and singers, then they have a lot of decorations in their room. All young teenage girls who attend college are big fans of pop bands and singers. If Sam has high ambitions and future career goals, then Sam is a big fan of pop bands and singers.", "question": "Based on the above information, is the following statement true, false, or uncertain? Sam has high ambitions and future career goals and is a young teenage girl who attends college.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_919", "context": "If people have a lot of decorations in their room, they cannot pack and move out of their rooms very easily. If people have high ambitions and future career goals, then they can pack and move out of their rooms very easily. If people are big fans of pop bands and singers, then they have a lot of decorations in their room. All young teenage girls who attend college are big fans of pop bands and singers. If Sam has high ambitions and future career goals, then Sam is a big fan of pop bands and singers.", "question": "Based on the above information, is the following statement true, false, or uncertain? Sam has high ambitions and future career goals and is a young teenage girl who attends college.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_920", "context": "If people have a lot of decorations in their room, they cannot pack and move out of their rooms very easily. If people have high ambitions and future career goals, then they can pack and move out of their rooms very easily. If people are big fans of pop bands and singers, then they have a lot of decorations in their room. All young teenage girls who attend college are big fans of pop bands and singers. If Sam has high ambitions and future career goals, then Sam is a big fan of pop bands and singers.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Sam is a young teenage girl who attends college, then Sam either does not have high ambitions and future career goals or is a big fan of pop bands and singers.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_921", "context": "If people have a lot of decorations in their room, they cannot pack and move out of their rooms very easily. If people have high ambitions and future career goals, then they can pack and move out of their rooms very easily. If people are big fans of pop bands and singers, then they have a lot of decorations in their room. All young teenage girls who attend college are big fans of pop bands and singers. If Sam has high ambitions and future career goals, then Sam is a big fan of pop bands and singers.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Sam has high ambitions and future career goals and is a young teenage girl who attends college, then Sam either does not have high ambitions and future career goals or is not a young teenage girl who attends college.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_922", "context": "If people have a lot of decorations in their room, they cannot pack and move out of their rooms very easily. If people have high ambitions and future career goals, then they can pack and move out of their rooms very easily. If people are big fans of pop bands and singers, then they have a lot of decorations in their room. All young teenage girls who attend college are big fans of pop bands and singers. If Sam has high ambitions and future career goals, then Sam is a big fan of pop bands and singers.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Sam has high ambitions and future career goals, then Sam is a young teenage girl who attends college.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_923", "context": "A student who loves shrieking will be punished. If a person swears, then he is a student. If someone is a teacher, then Bob will talk to him. All gentlemen are in a suit. All teachers are men. There is a teacher. If someone is not a gentlemen, then he is not nice. Willy is nice. Bob loves shrieking and swearing.", "question": "Based on the above information, is the following statement true, false, or uncertain? Willy is in a suit.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_924", "context": "A student who loves shrieking will be punished. If a person swears, then he is a student. If someone is a teacher, then Bob will talk to him. All gentlemen are in a suit. All teachers are men. There is a teacher. If someone is not a gentlemen, then he is not nice. Willy is nice. Bob loves shrieking and swearing.", "question": "Based on the above information, is the following statement true, false, or uncertain? Bob will be not punished.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_925", "context": "A student who loves shrieking will be punished. If a person swears, then he is a student. If someone is a teacher, then Bob will talk to him. All gentlemen are in a suit. All teachers are men. There is a teacher. If someone is not a gentlemen, then he is not nice. Willy is nice. Bob loves shrieking and swearing.", "question": "Based on the above information, is the following statement true, false, or uncertain? There is a man that Bob will talk to.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_926", "context": "Quincy McDuffie is an American professional wide receiver in Canadian Football. People who can catch balls are good wide receivers. Quincy McDuffie can catch many footballs easily. Good wide receivers play professionally. Good wide receivers can catch with both their left and right hand. All footballs are balls.", "question": "Based on the above information, is the following statement true, false, or uncertain? Quincy McDuffie is a good wide receiver.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_927", "context": "Quincy McDuffie is an American professional wide receiver in Canadian Football. People who can catch balls are good wide receivers. Quincy McDuffie can catch many footballs easily. Good wide receivers play professionally. Good wide receivers can catch with both their left and right hand. All footballs are balls.", "question": "Based on the above information, is the following statement true, false, or uncertain? Quincy McDuffie can catch every ball.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_928", "context": "Quincy McDuffie is an American professional wide receiver in Canadian Football. People who can catch balls are good wide receivers. Quincy McDuffie can catch many footballs easily. Good wide receivers play professionally. Good wide receivers can catch with both their left and right hand. All footballs are balls.", "question": "Based on the above information, is the following statement true, false, or uncertain? Professional wide receivers are good at catching balls.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_929", "context": "Boves is a railway station located in France. The preceding station of Boves is Longueau. The preceding station of Dommartin is Boves. France is a European country. Dommartin is situated on the Paris–Lille railway. Any two contiguous stations are on the same railway. Boves is served by regional TER Hauts-de-France trains. If A is located in B and B is located in C, then A is located in C. If A precedes B and B preceds C, than A preceds C.", "question": "Based on the above information, is the following statement true, false, or uncertain? Longueau is situated on the Paris–Lille railway.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_930", "context": "Boves is a railway station located in France. The preceding station of Boves is Longueau. The preceding station of Dommartin is Boves. France is a European country. Dommartin is situated on the Paris–Lille railway. Any two contiguous stations are on the same railway. Boves is served by regional TER Hauts-de-France trains. If A is located in B and B is located in C, then A is located in C. If A precedes B and B preceds C, than A preceds C.", "question": "Based on the above information, is the following statement true, false, or uncertain? Boves is not in Europe.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_931", "context": "Boves is a railway station located in France. The preceding station of Boves is Longueau. The preceding station of Dommartin is Boves. France is a European country. Dommartin is situated on the Paris–Lille railway. Any two contiguous stations are on the same railway. Boves is served by regional TER Hauts-de-France trains. If A is located in B and B is located in C, then A is located in C. If A precedes B and B preceds C, than A preceds C.", "question": "Based on the above information, is the following statement true, false, or uncertain? Longueau is served by regional TER Hauts-de-France trains.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_932", "context": "Edwin Smith was a New Zealand Rower from Auckland. Edwin Smith was also known as Ted Smith. Edwin Smith went to Rose Road Primary School, located in Grey Lynn. Edwin Smith was a sergeant who served with the New Zealand 24th battalion in Italy and Egypt. Broadway Sheetmetals was a buisness that was ran and owned by Edwin Smith, who was a sheetmetal worker.", "question": "Based on the above information, is the following statement true, false, or uncertain? Ted Smith was a sergeant.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_933", "context": "Edwin Smith was a New Zealand Rower from Auckland. Edwin Smith was also known as Ted Smith. Edwin Smith went to Rose Road Primary School, located in Grey Lynn. Edwin Smith was a sergeant who served with the New Zealand 24th battalion in Italy and Egypt. Broadway Sheetmetals was a buisness that was ran and owned by Edwin Smith, who was a sheetmetal worker.", "question": "Based on the above information, is the following statement true, false, or uncertain? There are no rowers that own a buisness.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_934", "context": "Edwin Smith was a New Zealand Rower from Auckland. Edwin Smith was also known as Ted Smith. Edwin Smith went to Rose Road Primary School, located in Grey Lynn. Edwin Smith was a sergeant who served with the New Zealand 24th battalion in Italy and Egypt. Broadway Sheetmetals was a buisness that was ran and owned by Edwin Smith, who was a sheetmetal worker.", "question": "Based on the above information, is the following statement true, false, or uncertain? No sergeants are from Auckland.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_935", "context": "Edwin Smith was a New Zealand Rower from Auckland. Edwin Smith was also known as Ted Smith. Edwin Smith went to Rose Road Primary School, located in Grey Lynn. Edwin Smith was a sergeant who served with the New Zealand 24th battalion in Italy and Egypt. Broadway Sheetmetals was a buisness that was ran and owned by Edwin Smith, who was a sheetmetal worker.", "question": "Based on the above information, is the following statement true, false, or uncertain? No buisness owner has served in Egypt.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_936", "context": "A werewolf is a human that can turn into a wolf. A werewolf has been scratched or bitten by another werewolf. If someone has been scratched or bitten, they have been attacked.", "question": "Based on the above information, is the following statement true, false, or uncertain? All humans are werewolves.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_937", "context": "A werewolf is a human that can turn into a wolf. A werewolf has been scratched or bitten by another werewolf. If someone has been scratched or bitten, they have been attacked.", "question": "Based on the above information, is the following statement true, false, or uncertain? A werewolf is a wolf.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_938", "context": "A werewolf is a human that can turn into a wolf. A werewolf has been scratched or bitten by another werewolf. If someone has been scratched or bitten, they have been attacked.", "question": "Based on the above information, is the following statement true, false, or uncertain? A werewolf has scratched someone before.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_939", "context": "UFC Fight Night was a mixed martial arts event and was held in Sweden. At UFC Fight Night, Sadollah was scheduled to fight Musoke. Sadollah fought Akiyama at UFC Fight Night. Musoke fought Yakovlev at UFC Fight Night. Jung was injured at UFC Fight Night. Injured people did not fight at UFC Fight Night.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jung fought Sadollah.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_940", "context": "UFC Fight Night was a mixed martial arts event and was held in Sweden. At UFC Fight Night, Sadollah was scheduled to fight Musoke. Sadollah fought Akiyama at UFC Fight Night. Musoke fought Yakovlev at UFC Fight Night. Jung was injured at UFC Fight Night. Injured people did not fight at UFC Fight Night.", "question": "Based on the above information, is the following statement true, false, or uncertain? Jung did not fight at UFC Fight Night.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_941", "context": "UFC Fight Night was a mixed martial arts event and was held in Sweden. At UFC Fight Night, Sadollah was scheduled to fight Musoke. Sadollah fought Akiyama at UFC Fight Night. Musoke fought Yakovlev at UFC Fight Night. Jung was injured at UFC Fight Night. Injured people did not fight at UFC Fight Night.", "question": "Based on the above information, is the following statement true, false, or uncertain? Sadollah fought Musoke.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_942", "context": "UFC Fight Night was a mixed martial arts event and was held in Sweden. At UFC Fight Night, Sadollah was scheduled to fight Musoke. Sadollah fought Akiyama at UFC Fight Night. Musoke fought Yakovlev at UFC Fight Night. Jung was injured at UFC Fight Night. Injured people did not fight at UFC Fight Night.", "question": "Based on the above information, is the following statement true, false, or uncertain? Nelson fought Story at UFC Fight Night.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_943", "context": "All drinks are edible. All juices are drinks. All orange juice is a juice. A juice is either an orange juice or an apple juice. All apple juice is sweet. If coke is apple juice, then coke is a drink. If coke is not apple juice, then coke is not edible.", "question": "Based on the above information, is the following statement true, false, or uncertain? Coke is orange juice.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_944", "context": "All drinks are edible. All juices are drinks. All orange juice is a juice. A juice is either an orange juice or an apple juice. All apple juice is sweet. If coke is apple juice, then coke is a drink. If coke is not apple juice, then coke is not edible.", "question": "Based on the above information, is the following statement true, false, or uncertain? Coke is edible and sweet.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_945", "context": "All drinks are edible. All juices are drinks. All orange juice is a juice. A juice is either an orange juice or an apple juice. All apple juice is sweet. If coke is apple juice, then coke is a drink. If coke is not apple juice, then coke is not edible.", "question": "Based on the above information, is the following statement true, false, or uncertain? Coke is not edible and sweet.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_946", "context": "Federico Garcia Lorca was a talented Spanish poet and he supported the Popular Front. The Spanish Nationalists opposed anyone who supported the Popular Front Talented poets are popular. Spanish Nationalists killed anyone who they opposed and were popular. Daniel supported the Popular Front but was not popular.", "question": "Based on the above information, is the following statement true, false, or uncertain? Daniel was not killed by the Spanish Nationalists.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_947", "context": "Federico Garcia Lorca was a talented Spanish poet and he supported the Popular Front. The Spanish Nationalists opposed anyone who supported the Popular Front Talented poets are popular. Spanish Nationalists killed anyone who they opposed and were popular. Daniel supported the Popular Front but was not popular.", "question": "Based on the above information, is the following statement true, false, or uncertain? Lorca was killed by the Spanish Nationalists.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_948", "context": "People either drink kombucha every day or drink Coca-Cola or Pepsi products every day. If people drink Coca-Cola or Pepsi products every day, then they grew up with extremely busy parents who did not have time to pack them lunch. If people drink Coca-Cola or Pepsi products every day, then they have to visit the dentist frequently. If people grew up with extremely busy parents who did not have time to pack them lunch, then they have erratic and diverse eating habits. If people have erratic and diverse eating habits, then they do not have consistent everyday routines and like sticking to a solid schedule. Franny either both grew up with extremely busy parents who did not have time to pack her lunch and has consistent everyday routines and like sticking to a solid schedule, or she neither grew up with extremely busy parents who did not have time to pack her lunch nor has consistent everyday routines and likes sticking to a schedule.", "question": "Based on the above information, is the following statement true, false, or uncertain? Franny has to visit the dentist frequently.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_949", "context": "People either drink kombucha every day or drink Coca-Cola or Pepsi products every day. If people drink Coca-Cola or Pepsi products every day, then they grew up with extremely busy parents who did not have time to pack them lunch. If people drink Coca-Cola or Pepsi products every day, then they have to visit the dentist frequently. If people grew up with extremely busy parents who did not have time to pack them lunch, then they have erratic and diverse eating habits. If people have erratic and diverse eating habits, then they do not have consistent everyday routines and like sticking to a solid schedule. Franny either both grew up with extremely busy parents who did not have time to pack her lunch and has consistent everyday routines and like sticking to a solid schedule, or she neither grew up with extremely busy parents who did not have time to pack her lunch nor has consistent everyday routines and likes sticking to a schedule.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Franny either both grew up with extremely busy parents who did not have time to pack her lunch and drink kombucha every day or neither grew up with extremely busy parents who did not have time to pack her lunch nor drink kombucha every day, then Franny neither visits the dentist frequently nor drinks Coca Cola or Pepsi products every day.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_950", "context": "People either drink kombucha every day or drink Coca-Cola or Pepsi products every day. If people drink Coca-Cola or Pepsi products every day, then they grew up with extremely busy parents who did not have time to pack them lunch. If people drink Coca-Cola or Pepsi products every day, then they have to visit the dentist frequently. If people grew up with extremely busy parents who did not have time to pack them lunch, then they have erratic and diverse eating habits. If people have erratic and diverse eating habits, then they do not have consistent everyday routines and like sticking to a solid schedule. Franny either both grew up with extremely busy parents who did not have time to pack her lunch and has consistent everyday routines and like sticking to a solid schedule, or she neither grew up with extremely busy parents who did not have time to pack her lunch nor has consistent everyday routines and likes sticking to a schedule.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Franny either visits the dentist frequently or drinks kombucha every day, then Franny both visits the dentist frequently and drinks Coca-Cola or Pepsi products every day.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_951", "context": "If a customer subscribes to AMC A List, then he/she can watch 3 movies every week without any additional fees. Some customers go to cinemas every week. Customers who prefer TV series will not watch TV series in cinemas. James watches TV series in cinemas. James subscribes to AMC A List. Peter prefers TV series.", "question": "Based on the above information, is the following statement true, false, or uncertain? James is not able to watch 3 movies every week without any additional fees.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_952", "context": "If a customer subscribes to AMC A List, then he/she can watch 3 movies every week without any additional fees. Some customers go to cinemas every week. Customers who prefer TV series will not watch TV series in cinemas. James watches TV series in cinemas. James subscribes to AMC A List. Peter prefers TV series.", "question": "Based on the above information, is the following statement true, false, or uncertain? James goes to cinemas every week.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_953", "context": "If a customer subscribes to AMC A List, then he/she can watch 3 movies every week without any additional fees. Some customers go to cinemas every week. Customers who prefer TV series will not watch TV series in cinemas. James watches TV series in cinemas. James subscribes to AMC A List. Peter prefers TV series.", "question": "Based on the above information, is the following statement true, false, or uncertain? Peter will not watch TV series in cinemas.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_954", "context": "Bulbophyllum attenuatum is in the genus bulbophyllum. All bulbophyllum are orchids.", "question": "Based on the above information, is the following statement true, false, or uncertain? Bulbophyllum attenuatum is not an orchid.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_955", "context": "There are eight federal districts of Russia: Central, Northwestern, Southern, North Caucasian, Volga, Ural, Siberian and Far Eastern. The Central federal district has the largest population among all federal districts in Russia. Moscow is the administrative center of the Central federal district. Yekaterinburg is the administrative center of the Ural federal district. Vladivostok is the administrative center of the Far Eastern federal district. The Far Eastern federal district has the largest area among all federal districts in Russia. Some federal districts of Russia were established in 2000.", "question": "Based on the above information, is the following statement true, false, or uncertain? Vladivostok is the administrative center of the federal district with the largest area.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_956", "context": "There are eight federal districts of Russia: Central, Northwestern, Southern, North Caucasian, Volga, Ural, Siberian and Far Eastern. The Central federal district has the largest population among all federal districts in Russia. Moscow is the administrative center of the Central federal district. Yekaterinburg is the administrative center of the Ural federal district. Vladivostok is the administrative center of the Far Eastern federal district. The Far Eastern federal district has the largest area among all federal districts in Russia. Some federal districts of Russia were established in 2000.", "question": "Based on the above information, is the following statement true, false, or uncertain? Moscow is the administrative center of the federal district with the largest population.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_957", "context": "There are eight federal districts of Russia: Central, Northwestern, Southern, North Caucasian, Volga, Ural, Siberian and Far Eastern. The Central federal district has the largest population among all federal districts in Russia. Moscow is the administrative center of the Central federal district. Yekaterinburg is the administrative center of the Ural federal district. Vladivostok is the administrative center of the Far Eastern federal district. The Far Eastern federal district has the largest area among all federal districts in Russia. Some federal districts of Russia were established in 2000.", "question": "Based on the above information, is the following statement true, false, or uncertain? The Northwestern federal district was established in 2000.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_958", "context": "All cancers are malignant tumors. No malignant tumor can be treated at home. All colorectal cancer is cancer. Having a cold can be treated at home. Breast cancer is neither having a cold nor a malignant tumor (exclusive).", "question": "Based on the above information, is the following statement true, false, or uncertain? Breast cancer can be treated at home.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_959", "context": "All cancers are malignant tumors. No malignant tumor can be treated at home. All colorectal cancer is cancer. Having a cold can be treated at home. Breast cancer is neither having a cold nor a malignant tumor (exclusive).", "question": "Based on the above information, is the following statement true, false, or uncertain? Breast cancer is colorectal cancer.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_960", "context": "All cancers are malignant tumors. No malignant tumor can be treated at home. All colorectal cancer is cancer. Having a cold can be treated at home. Breast cancer is neither having a cold nor a malignant tumor (exclusive).", "question": "Based on the above information, is the following statement true, false, or uncertain? Breast cancer is not colorectal cancer.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_961", "context": "All cancers are malignant tumors. No malignant tumor can be treated at home. All colorectal cancer is cancer. Having a cold can be treated at home. Breast cancer is neither having a cold nor a malignant tumor (exclusive).", "question": "Based on the above information, is the following statement true, false, or uncertain? Breast cancer is colorectal cancer or a malignant tumor.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_962", "context": "All cancers are malignant tumors. No malignant tumor can be treated at home. All colorectal cancer is cancer. Having a cold can be treated at home. Breast cancer is neither having a cold nor a malignant tumor (exclusive).", "question": "Based on the above information, is the following statement true, false, or uncertain? Breast cancer is colorectal cancer and a cancer.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_963", "context": "All cancers are malignant tumors. No malignant tumor can be treated at home. All colorectal cancer is cancer. Having a cold can be treated at home. Breast cancer is neither having a cold nor a malignant tumor (exclusive).", "question": "Based on the above information, is the following statement true, false, or uncertain? If breast cancer is not colorectal cancer, then breast cancer is a malignant tumor.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_964", "context": "I should not worry about things outside of my control. Traffic is outside of my control.", "question": "Based on the above information, is the following statement true, false, or uncertain? I should not worry about traffic.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_965", "context": "Roversi is an Italian surname. Alba Roversi uses Roversi as a surname. Paolo Roversi uses Roversi as a surname. Roberto Roversi uses Roversi as a surname. Paolo Roversi is a photographer. A photographer is a professional or an amateur.", "question": "Based on the above information, is the following statement true, false, or uncertain? Alba Roversi uses an Italian surname.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_966", "context": "Roversi is an Italian surname. Alba Roversi uses Roversi as a surname. Paolo Roversi uses Roversi as a surname. Roberto Roversi uses Roversi as a surname. Paolo Roversi is a photographer. A photographer is a professional or an amateur.", "question": "Based on the above information, is the following statement true, false, or uncertain? There are no photographers using an Italian surname.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_967", "context": "Roversi is an Italian surname. Alba Roversi uses Roversi as a surname. Paolo Roversi uses Roversi as a surname. Roberto Roversi uses Roversi as a surname. Paolo Roversi is a photographer. A photographer is a professional or an amateur.", "question": "Based on the above information, is the following statement true, false, or uncertain? Paolo is an amateur photographer.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_968", "context": "Zaha Hadid is a British-Iraqi architect, artist and designer. Zaha Hadid was born on 31 October 1950 in Baghdad, Iraq. Hadid was a visiting professor of Architectural Design at the Yale School of Architecture. Max is an aspiring architecture student, and he plans to apply to Yale School of Architecture.", "question": "Based on the above information, is the following statement true, false, or uncertain? Hadid became a UK citizen later in her life.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_969", "context": "Zaha Hadid is a British-Iraqi architect, artist and designer. Zaha Hadid was born on 31 October 1950 in Baghdad, Iraq. Hadid was a visiting professor of Architectural Design at the Yale School of Architecture. Max is an aspiring architecture student, and he plans to apply to Yale School of Architecture.", "question": "Based on the above information, is the following statement true, false, or uncertain? Hadid did some work in interior design.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_970", "context": "Zaha Hadid is a British-Iraqi architect, artist and designer. Zaha Hadid was born on 31 October 1950 in Baghdad, Iraq. Hadid was a visiting professor of Architectural Design at the Yale School of Architecture. Max is an aspiring architecture student, and he plans to apply to Yale School of Architecture.", "question": "Based on the above information, is the following statement true, false, or uncertain? Hadid was born in 1982.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_971", "context": "Zaha Hadid is a British-Iraqi architect, artist and designer. Zaha Hadid was born on 31 October 1950 in Baghdad, Iraq. Hadid was a visiting professor of Architectural Design at the Yale School of Architecture. Max is an aspiring architecture student, and he plans to apply to Yale School of Architecture.", "question": "Based on the above information, is the following statement true, false, or uncertain? Max admires Zaha Hadid.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_972", "context": "Something is either an invasive neuroimaging technique or a noninvasive neuroimaging technique. All noninvasive neuroimaging techniques provide a spatial resolution of brains. If a technique provides a spatial resolution of brains, then it is a measurement of brain activity. All measurements of brain activity are used by neuroscience researchers. FMRI is either a measurement of brain activity or a noninvasive neuroimaging technique.", "question": "Based on the above information, is the following statement true, false, or uncertain? FMRI provides a spatial resolution of brains.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_973", "context": "Something is either an invasive neuroimaging technique or a noninvasive neuroimaging technique. All noninvasive neuroimaging techniques provide a spatial resolution of brains. If a technique provides a spatial resolution of brains, then it is a measurement of brain activity. All measurements of brain activity are used by neuroscience researchers. FMRI is either a measurement of brain activity or a noninvasive neuroimaging technique.", "question": "Based on the above information, is the following statement true, false, or uncertain? FMRI is an invasive neuroimaging technique and is used by neuroscience researchers.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_974", "context": "Something is either an invasive neuroimaging technique or a noninvasive neuroimaging technique. All noninvasive neuroimaging techniques provide a spatial resolution of brains. If a technique provides a spatial resolution of brains, then it is a measurement of brain activity. All measurements of brain activity are used by neuroscience researchers. FMRI is either a measurement of brain activity or a noninvasive neuroimaging technique.", "question": "Based on the above information, is the following statement true, false, or uncertain? FMRI is either an invasive neuroimaging technique or is used by neuroscience researchers.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_975", "context": "Something is either an invasive neuroimaging technique or a noninvasive neuroimaging technique. All noninvasive neuroimaging techniques provide a spatial resolution of brains. If a technique provides a spatial resolution of brains, then it is a measurement of brain activity. All measurements of brain activity are used by neuroscience researchers. FMRI is either a measurement of brain activity or a noninvasive neuroimaging technique.", "question": "Based on the above information, is the following statement true, false, or uncertain? If fMRI is not an invasive neuroimaging technique and used by neuroscience researchers, then fMRI is neither a noninvasive neuroimaging technique nor provides a spatial resolution of brains.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_976", "context": "Either present their work at the conference or provide a tutorial session at the conference. All who present their work at the conference will attend in person. All those providing a tutorial session at the conference are invited to join the club. All who attend the conference in person are provided with souvenirs. All invited to join the club are provided with delicious meals. All provided with delicious meals are happy to communicate with each other during the dinner. All provided with delicious meals are invited to take a photo with the audience. James does not attend the conference in person and is not provided with souvenirs.", "question": "Based on the above information, is the following statement true, false, or uncertain? James is provided with souvenirs.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_977", "context": "Either present their work at the conference or provide a tutorial session at the conference. All who present their work at the conference will attend in person. All those providing a tutorial session at the conference are invited to join the club. All who attend the conference in person are provided with souvenirs. All invited to join the club are provided with delicious meals. All provided with delicious meals are happy to communicate with each other during the dinner. All provided with delicious meals are invited to take a photo with the audience. James does not attend the conference in person and is not provided with souvenirs.", "question": "Based on the above information, is the following statement true, false, or uncertain? James is not provided with souvenirs.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_978", "context": "Either present their work at the conference or provide a tutorial session at the conference. All who present their work at the conference will attend in person. All those providing a tutorial session at the conference are invited to join the club. All who attend the conference in person are provided with souvenirs. All invited to join the club are provided with delicious meals. All provided with delicious meals are happy to communicate with each other during the dinner. All provided with delicious meals are invited to take a photo with the audience. James does not attend the conference in person and is not provided with souvenirs.", "question": "Based on the above information, is the following statement true, false, or uncertain? James is invited to take a photo with the audience and is happy to communicate with each other at the dinner.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_979", "context": "Either present their work at the conference or provide a tutorial session at the conference. All who present their work at the conference will attend in person. All those providing a tutorial session at the conference are invited to join the club. All who attend the conference in person are provided with souvenirs. All invited to join the club are provided with delicious meals. All provided with delicious meals are happy to communicate with each other during the dinner. All provided with delicious meals are invited to take a photo with the audience. James does not attend the conference in person and is not provided with souvenirs.", "question": "Based on the above information, is the following statement true, false, or uncertain? James is invited to take a photo with the audience or is happy to communicate with each other during the dinner.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_980", "context": "Either present their work at the conference or provide a tutorial session at the conference. All who present their work at the conference will attend in person. All those providing a tutorial session at the conference are invited to join the club. All who attend the conference in person are provided with souvenirs. All invited to join the club are provided with delicious meals. All provided with delicious meals are happy to communicate with each other during the dinner. All provided with delicious meals are invited to take a photo with the audience. James does not attend the conference in person and is not provided with souvenirs.", "question": "Based on the above information, is the following statement true, false, or uncertain? James is either invited to take a photo with the audience or happy to communicate with each other during the dinner.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_981", "context": "The USS Salem is a heavy cruiser built for the United States navy. The last heavy cruiser to enter service was the USS Salem. The USS Salem is a museum ship. Museum ships are open to the public. The USS Salem served in the Atlantic and Mediterranean.", "question": "Based on the above information, is the following statement true, false, or uncertain? The USS Salem is open to the public.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_982", "context": "The USS Salem is a heavy cruiser built for the United States navy. The last heavy cruiser to enter service was the USS Salem. The USS Salem is a museum ship. Museum ships are open to the public. The USS Salem served in the Atlantic and Mediterranean.", "question": "Based on the above information, is the following statement true, false, or uncertain? There is a museum ship open to the public that served in the Mediterranean.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_983", "context": "The USS Salem is a heavy cruiser built for the United States navy. The last heavy cruiser to enter service was the USS Salem. The USS Salem is a museum ship. Museum ships are open to the public. The USS Salem served in the Atlantic and Mediterranean.", "question": "Based on the above information, is the following statement true, false, or uncertain? The USS Salem was not the last heavy cruiser to enter service.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_984", "context": "TS Leda was a good passenger and cargo vessel. TS Leda was the first Norweigian vessel that was built with stabilizers. Stabilizers are mechanical devices that are only on ships that have powerful steam turbine engines. To be a good passenger and cargo vessel, ships must be quiet and good at sea. Some ships that are quiet and good at sea have powerful steam turbine engines.", "question": "Based on the above information, is the following statement true, false, or uncertain? TS Leda was quiet and good at sea.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_985", "context": "TS Leda was a good passenger and cargo vessel. TS Leda was the first Norweigian vessel that was built with stabilizers. Stabilizers are mechanical devices that are only on ships that have powerful steam turbine engines. To be a good passenger and cargo vessel, ships must be quiet and good at sea. Some ships that are quiet and good at sea have powerful steam turbine engines.", "question": "Based on the above information, is the following statement true, false, or uncertain? TS Leda had powerful steam turbine engines.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_986", "context": "TS Leda was a good passenger and cargo vessel. TS Leda was the first Norweigian vessel that was built with stabilizers. Stabilizers are mechanical devices that are only on ships that have powerful steam turbine engines. To be a good passenger and cargo vessel, ships must be quiet and good at sea. Some ships that are quiet and good at sea have powerful steam turbine engines.", "question": "Based on the above information, is the following statement true, false, or uncertain? TS Leda was not a Norweigian vessel.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_987", "context": "Rosa was born in Santiago. Santiago is the capital and largest city of Chile. Rosa is the daughter of a Catalan building contractor, Jose. Jose has a Chilean wife, Carmen. A building contractor is responsible for the day-to-day oversight of a construction site.", "question": "Based on the above information, is the following statement true, false, or uncertain? Rosa was born in the largest city of Chile.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_988", "context": "Rosa was born in Santiago. Santiago is the capital and largest city of Chile. Rosa is the daughter of a Catalan building contractor, Jose. Jose has a Chilean wife, Carmen. A building contractor is responsible for the day-to-day oversight of a construction site.", "question": "Based on the above information, is the following statement true, false, or uncertain? Neither of Rosa's parents is Chilean.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_989", "context": "Rosa was born in Santiago. Santiago is the capital and largest city of Chile. Rosa is the daughter of a Catalan building contractor, Jose. Jose has a Chilean wife, Carmen. A building contractor is responsible for the day-to-day oversight of a construction site.", "question": "Based on the above information, is the following statement true, false, or uncertain? Rosa is the daughter of someone who is responsible for the oversight of traffic.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_990", "context": "Tyga is a rapper. Rappers release rap albums. Tyga released the Well Done 3 album. Rappers are not opera singers.", "question": "Based on the above information, is the following statement true, false, or uncertain? Well Done 3 is a rap album.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_991", "context": "Tyga is a rapper. Rappers release rap albums. Tyga released the Well Done 3 album. Rappers are not opera singers.", "question": "Based on the above information, is the following statement true, false, or uncertain? Tyga is an opera singer.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_992", "context": "Tyga is a rapper. Rappers release rap albums. Tyga released the Well Done 3 album. Rappers are not opera singers.", "question": "Based on the above information, is the following statement true, false, or uncertain? Well Done 3 is worth listening.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_993", "context": "Deborah Wallace is a Scottish born actress, playwright and producer. Psyche is a play based on the life of James Miranda Barry. Homesick, Psyche and The Void are plays from Deborah Wallace. Deborah Wallace co-produced Gasland.", "question": "Based on the above information, is the following statement true, false, or uncertain? Gasland was coproduced by the same person Homesick is from.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_994", "context": "Deborah Wallace is a Scottish born actress, playwright and producer. Psyche is a play based on the life of James Miranda Barry. Homesick, Psyche and The Void are plays from Deborah Wallace. Deborah Wallace co-produced Gasland.", "question": "Based on the above information, is the following statement true, false, or uncertain? There isn't a play from Deborah Wallace that is based on the life of James Miranda Barry.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_995", "context": "Deborah Wallace is a Scottish born actress, playwright and producer. Psyche is a play based on the life of James Miranda Barry. Homesick, Psyche and The Void are plays from Deborah Wallace. Deborah Wallace co-produced Gasland.", "question": "Based on the above information, is the following statement true, false, or uncertain? Gasland is a play.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_996", "context": "If an animal needs a large territory, then it travels far. Everything that eats a lot needs a large territory. If something is a big animal, then it will eat a lot. All bears are big animals. Larry is a big animal.", "question": "Based on the above information, is the following statement true, false, or uncertain? Larry is a bear.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_997", "context": "If an animal needs a large territory, then it travels far. Everything that eats a lot needs a large territory. If something is a big animal, then it will eat a lot. All bears are big animals. Larry is a big animal.", "question": "Based on the above information, is the following statement true, false, or uncertain? Larry is neither a bear nor travels far.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_998", "context": "If an animal needs a large territory, then it travels far. Everything that eats a lot needs a large territory. If something is a big animal, then it will eat a lot. All bears are big animals. Larry is a big animal.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Larry either travels far or needs a large territory, then Larry is a bear.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_999", "context": "No criminal is kind. All person who breaks the law is a criminals. People are either kind or evil. If someone is evil, then they are ugly. If someone is evil, then they are cold-blood. If Garry is either evil and ugly or neither evil nor ugly, then Garry is not evil.", "question": "Based on the above information, is the following statement true, false, or uncertain? Garry is ugly.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "C" }, { "id": "FOLIO_train_1000", "context": "No criminal is kind. All person who breaks the law is a criminals. People are either kind or evil. If someone is evil, then they are ugly. If someone is evil, then they are cold-blood. If Garry is either evil and ugly or neither evil nor ugly, then Garry is not evil.", "question": "Based on the above information, is the following statement true, false, or uncertain? Garry is cold-blooded and breaks the law.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_1001", "context": "No criminal is kind. All person who breaks the law is a criminals. People are either kind or evil. If someone is evil, then they are ugly. If someone is evil, then they are cold-blood. If Garry is either evil and ugly or neither evil nor ugly, then Garry is not evil.", "question": "Based on the above information, is the following statement true, false, or uncertain? If Garry is evil or breaks the law, then Garry is not both a criminal and breaking the law.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "A" }, { "id": "FOLIO_train_1002", "context": "Phoneix's music is classified under the indie pop genre. Phoenix is a band from France. French bands write songs in French or in English. Aside from indie pop, pop rock and synth-pop are two other genres of music. Phoneix has no songs in French.", "question": "Based on the above information, is the following statement true, false, or uncertain? Phoenix makes pop rock music.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" }, { "id": "FOLIO_train_1003", "context": "Phoneix's music is classified under the indie pop genre. Phoenix is a band from France. French bands write songs in French or in English. Aside from indie pop, pop rock and synth-pop are two other genres of music. Phoneix has no songs in French.", "question": "Based on the above information, is the following statement true, false, or uncertain? Phoenix has songs in French.", "options": [ "A) True", "B) False", "C) Uncertain" ], "answer": "B" } ] ================================================ FILE: data/LogicalDeduction/dev.json ================================================ [ { "id": "logical_deduction_0", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a green book, a blue book, a white book, a purple book, and a yellow book. The blue book is to the right of the yellow book. The white book is to the left of the yellow book. The blue book is the second from the right. The purple book is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The green book is the second from the left.", "B) The blue book is the second from the left.", "C) The white book is the second from the left.", "D) The purple book is the second from the left.", "E) The yellow book is the second from the left." ], "answer": "D" }, { "id": "logical_deduction_1", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a convertible, a sedan, a tractor, a minivan, and a limousine. The tractor is newer than the minivan. The tractor is older than the limousine. The convertible is older than the sedan. The convertible is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The convertible is the second-newest.", "B) The sedan is the second-newest.", "C) The tractor is the second-newest.", "D) The minivan is the second-newest.", "E) The limousine is the second-newest." ], "answer": "A" }, { "id": "logical_deduction_2", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a station wagon, a sedan, a tractor, a motorcyle, and a limousine. The tractor is newer than the motorcyle. The motorcyle is newer than the sedan. The limousine is the oldest. The station wagon is the newest.", "question": "Which of the following is true?", "options": [ "A) The station wagon is the oldest.", "B) The sedan is the oldest.", "C) The tractor is the oldest.", "D) The motorcyle is the oldest.", "E) The limousine is the oldest." ], "answer": "E" }, { "id": "logical_deduction_3", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: watermelons, plums, apples, peaches, and kiwis. The apples are less expensive than the peaches. The plums are the cheapest. The kiwis are the second-cheapest. The watermelons are more expensive than the peaches.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the most expensive.", "B) The plums are the most expensive.", "C) The apples are the most expensive.", "D) The peaches are the most expensive.", "E) The kiwis are the most expensive." ], "answer": "A" }, { "id": "logical_deduction_4", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a cardinal, a crow, a falcon, a robin, and a blue jay. The robin is to the right of the cardinal. The cardinal is to the right of the blue jay. The blue jay is the second from the left. The crow is the rightmost.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the second from the left.", "B) The crow is the second from the left.", "C) The falcon is the second from the left.", "D) The robin is the second from the left.", "E) The blue jay is the second from the left." ], "answer": "E" }, { "id": "logical_deduction_5", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a convertible, a sedan, a station wagon, a bus, and a limousine. The sedan is newer than the station wagon. The limousine is the newest. The bus is the second-newest. The convertible is the second-oldest.", "question": "Which of the following is true?", "options": [ "A) The convertible is the second-oldest.", "B) The sedan is the second-oldest.", "C) The station wagon is the second-oldest.", "D) The bus is the second-oldest.", "E) The limousine is the second-oldest." ], "answer": "A" }, { "id": "logical_deduction_6", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a crow, a robin, a quail, a blue jay, and a falcon. The robin is to the left of the quail. The falcon is the third from the left. The crow is to the left of the falcon. The blue jay is the leftmost.", "question": "Which of the following is true?", "options": [ "A) The crow is the third from the left.", "B) The robin is the third from the left.", "C) The quail is the third from the left.", "D) The blue jay is the third from the left.", "E) The falcon is the third from the left." ], "answer": "E" }, { "id": "logical_deduction_7", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a cardinal, a robin, a blue jay, a quail, and a raven. The robin is to the right of the raven. The cardinal is the leftmost. The raven is to the right of the blue jay. The blue jay is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the second from the left.", "B) The robin is the second from the left.", "C) The blue jay is the second from the left.", "D) The quail is the second from the left.", "E) The raven is the second from the left." ], "answer": "D" }, { "id": "logical_deduction_8", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: an owl, a robin, a blue jay, a hawk, and a hummingbird. The owl is the second from the right. The robin is the second from the left. The robin is to the right of the blue jay. The hummingbird is to the right of the hawk.", "question": "Which of the following is true?", "options": [ "A) The owl is the rightmost.", "B) The robin is the rightmost.", "C) The blue jay is the rightmost.", "D) The hawk is the rightmost.", "E) The hummingbird is the rightmost." ], "answer": "E" }, { "id": "logical_deduction_9", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a brown book, an orange book, a red book, a purple book, and a black book. The purple book is to the left of the black book. The red book is to the right of the brown book. The orange book is the second from the left. The black book is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The brown book is the second from the right.", "B) The orange book is the second from the right.", "C) The red book is the second from the right.", "D) The purple book is the second from the right.", "E) The black book is the second from the right." ], "answer": "A" }, { "id": "logical_deduction_10", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: an owl, a robin, a blue jay, a hawk, and a hummingbird. The owl is the second from the right. The robin is the second from the left. The robin is to the right of the blue jay. The hummingbird is to the right of the hawk.", "question": "Which of the following is true?", "options": [ "A) The owl is the second from the left.", "B) The robin is the second from the left.", "C) The blue jay is the second from the left.", "D) The hawk is the second from the left.", "E) The hummingbird is the second from the left." ], "answer": "B" }, { "id": "logical_deduction_11", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a convertible, a truck, a bus, a sedan, and a motorcyle. The bus is newer than the truck. The truck is newer than the convertible. The sedan is the second-oldest. The motorcyle is newer than the bus.", "question": "Which of the following is true?", "options": [ "A) The convertible is the newest.", "B) The truck is the newest.", "C) The bus is the newest.", "D) The sedan is the newest.", "E) The motorcyle is the newest." ], "answer": "E" }, { "id": "logical_deduction_12", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Eve, Rob, Ana, Eli, and Mya. Eli finished below Mya. Eve finished first. Ana finished below Eli. Rob finished second.", "question": "Which of the following is true?", "options": [ "A) Eve finished third.", "B) Rob finished third.", "C) Ana finished third.", "D) Eli finished third.", "E) Mya finished third." ], "answer": "E" }, { "id": "logical_deduction_13", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: apples, mangoes, oranges, plums, and pears. The oranges are more expensive than the mangoes. The plums are the cheapest. The apples are less expensive than the mangoes. The pears are more expensive than the oranges.", "question": "Which of the following is true?", "options": [ "A) The apples are the cheapest.", "B) The mangoes are the cheapest.", "C) The oranges are the cheapest.", "D) The plums are the cheapest.", "E) The pears are the cheapest." ], "answer": "D" }, { "id": "logical_deduction_14", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: mangoes, kiwis, plums, pears, and watermelons. The kiwis are less expensive than the plums. The pears are the third-most expensive. The kiwis are the second-cheapest. The watermelons are the most expensive.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the third-most expensive.", "B) The kiwis are the third-most expensive.", "C) The plums are the third-most expensive.", "D) The pears are the third-most expensive.", "E) The watermelons are the third-most expensive." ], "answer": "D" }, { "id": "logical_deduction_15", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a green book, an orange book, a gray book, a yellow book, and a purple book. The green book is the rightmost. The gray book is to the right of the orange book. The purple book is to the left of the yellow book. The purple book is to the right of the gray book.", "question": "Which of the following is true?", "options": [ "A) The green book is the second from the left.", "B) The orange book is the second from the left.", "C) The gray book is the second from the left.", "D) The yellow book is the second from the left.", "E) The purple book is the second from the left." ], "answer": "C" }, { "id": "logical_deduction_16", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: watermelons, oranges, loquats, plums, and kiwis. The plums are less expensive than the kiwis. The plums are more expensive than the watermelons. The loquats are more expensive than the kiwis. The oranges are the most expensive.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the second-cheapest.", "B) The oranges are the second-cheapest.", "C) The loquats are the second-cheapest.", "D) The plums are the second-cheapest.", "E) The kiwis are the second-cheapest." ], "answer": "D" }, { "id": "logical_deduction_17", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: watermelons, apples, mangoes, pears, and cantaloupes. The watermelons are more expensive than the cantaloupes. The mangoes are less expensive than the pears. The apples are the second-cheapest. The watermelons are less expensive than the mangoes.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the cheapest.", "B) The apples are the cheapest.", "C) The mangoes are the cheapest.", "D) The pears are the cheapest.", "E) The cantaloupes are the cheapest." ], "answer": "E" }, { "id": "logical_deduction_18", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a hawk, a raven, a robin, a hummingbird, and a crow. The robin is the leftmost. The raven is the second from the left. The hawk is the second from the right. The crow is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The hawk is the second from the right.", "B) The raven is the second from the right.", "C) The robin is the second from the right.", "D) The hummingbird is the second from the right.", "E) The crow is the second from the right." ], "answer": "A" }, { "id": "logical_deduction_19", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a tractor, a station wagon, a bus, a motorcyle, and a minivan. The minivan is older than the motorcyle. The bus is the newest. The tractor is the third-newest. The station wagon is the second-oldest.", "question": "Which of the following is true?", "options": [ "A) The tractor is the newest.", "B) The station wagon is the newest.", "C) The bus is the newest.", "D) The motorcyle is the newest.", "E) The minivan is the newest." ], "answer": "C" }, { "id": "logical_deduction_20", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a blue jay, a raven, a crow, a falcon, and a quail. The crow is to the left of the quail. The falcon is the leftmost. The blue jay is to the right of the quail. The raven is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the second from the left.", "B) The raven is the second from the left.", "C) The crow is the second from the left.", "D) The falcon is the second from the left.", "E) The quail is the second from the left." ], "answer": "B" }, { "id": "logical_deduction_21", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a truck, a motorcyle, a limousine, a station wagon, and a sedan. The limousine is older than the truck. The sedan is newer than the motorcyle. The station wagon is the oldest. The limousine is newer than the sedan.", "question": "Which of the following is true?", "options": [ "A) The truck is the second-oldest.", "B) The motorcyle is the second-oldest.", "C) The limousine is the second-oldest.", "D) The station wagon is the second-oldest.", "E) The sedan is the second-oldest." ], "answer": "B" }, { "id": "logical_deduction_22", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a green book, a blue book, a brown book, a gray book, and a red book. The green book is to the left of the brown book. The gray book is to the left of the blue book. The green book is to the right of the blue book. The red book is the leftmost.", "question": "Which of the following is true?", "options": [ "A) The green book is the second from the right.", "B) The blue book is the second from the right.", "C) The brown book is the second from the right.", "D) The gray book is the second from the right.", "E) The red book is the second from the right." ], "answer": "A" }, { "id": "logical_deduction_23", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a green book, a blue book, a white book, a purple book, and a yellow book. The blue book is to the right of the yellow book. The white book is to the left of the yellow book. The blue book is the second from the right. The purple book is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The green book is the leftmost.", "B) The blue book is the leftmost.", "C) The white book is the leftmost.", "D) The purple book is the leftmost.", "E) The yellow book is the leftmost." ], "answer": "C" }, { "id": "logical_deduction_24", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a truck, a station wagon, a motorcyle, a limousine, and a hatchback. The motorcyle is the second-newest. The truck is newer than the limousine. The motorcyle is older than the station wagon. The limousine is newer than the hatchback.", "question": "Which of the following is true?", "options": [ "A) The truck is the newest.", "B) The station wagon is the newest.", "C) The motorcyle is the newest.", "D) The limousine is the newest.", "E) The hatchback is the newest." ], "answer": "B" }, { "id": "logical_deduction_25", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a blue book, a purple book, a yellow book, a black book, and a green book. The purple book is the third from the left. The yellow book is to the left of the black book. The green book is to the left of the purple book. The blue book is to the left of the green book.", "question": "Which of the following is true?", "options": [ "A) The blue book is the second from the right.", "B) The purple book is the second from the right.", "C) The yellow book is the second from the right.", "D) The black book is the second from the right.", "E) The green book is the second from the right." ], "answer": "C" }, { "id": "logical_deduction_26", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Amy, Dan, Mya, Eli, and Mel. Amy finished above Mel. Mya finished first. Amy finished below Eli. Dan finished last.", "question": "Which of the following is true?", "options": [ "A) Amy finished first.", "B) Dan finished first.", "C) Mya finished first.", "D) Eli finished first.", "E) Mel finished first." ], "answer": "C" }, { "id": "logical_deduction_27", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: an owl, a robin, a blue jay, a hawk, and a hummingbird. The owl is the second from the right. The robin is the second from the left. The robin is to the right of the blue jay. The hummingbird is to the right of the hawk.", "question": "Which of the following is true?", "options": [ "A) The owl is the leftmost.", "B) The robin is the leftmost.", "C) The blue jay is the leftmost.", "D) The hawk is the leftmost.", "E) The hummingbird is the leftmost." ], "answer": "C" }, { "id": "logical_deduction_28", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a convertible, a bus, a minivan, a truck, and a sedan. The convertible is newer than the truck. The minivan is the newest. The bus is the third-newest. The truck is newer than the sedan.", "question": "Which of the following is true?", "options": [ "A) The convertible is the second-newest.", "B) The bus is the second-newest.", "C) The minivan is the second-newest.", "D) The truck is the second-newest.", "E) The sedan is the second-newest." ], "answer": "A" }, { "id": "logical_deduction_29", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a truck, a station wagon, a motorcyle, a convertible, and a hatchback. The convertible is newer than the truck. The station wagon is newer than the hatchback. The convertible is older than the hatchback. The station wagon is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The truck is the second-newest.", "B) The station wagon is the second-newest.", "C) The motorcyle is the second-newest.", "D) The convertible is the second-newest.", "E) The hatchback is the second-newest." ], "answer": "B" }, { "id": "logical_deduction_30", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: watermelons, apples, kiwis, cantaloupes, and mangoes. The cantaloupes are the second-cheapest. The mangoes are more expensive than the watermelons. The kiwis are less expensive than the apples. The kiwis are more expensive than the mangoes.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the cheapest.", "B) The apples are the cheapest.", "C) The kiwis are the cheapest.", "D) The cantaloupes are the cheapest.", "E) The mangoes are the cheapest." ], "answer": "A" }, { "id": "logical_deduction_31", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: an owl, a cardinal, a robin, a hummingbird, and a crow. The hummingbird is to the left of the owl. The hummingbird is to the right of the cardinal. The crow is to the left of the robin. The owl is to the left of the crow.", "question": "Which of the following is true?", "options": [ "A) The owl is the leftmost.", "B) The cardinal is the leftmost.", "C) The robin is the leftmost.", "D) The hummingbird is the leftmost.", "E) The crow is the leftmost." ], "answer": "B" }, { "id": "logical_deduction_32", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Rob, Eve, Eli, Amy, and Dan. Dan finished second. Amy finished below Eve. Dan finished above Eve. Amy finished above Eli.", "question": "Which of the following is true?", "options": [ "A) Rob finished third.", "B) Eve finished third.", "C) Eli finished third.", "D) Amy finished third.", "E) Dan finished third." ], "answer": "B" }, { "id": "logical_deduction_33", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a gray book, a red book, a yellow book, a blue book, and an orange book. The gray book is to the right of the yellow book. The orange book is to the right of the red book. The blue book is the rightmost. The gray book is to the left of the red book.", "question": "Which of the following is true?", "options": [ "A) The gray book is the leftmost.", "B) The red book is the leftmost.", "C) The yellow book is the leftmost.", "D) The blue book is the leftmost.", "E) The orange book is the leftmost." ], "answer": "C" }, { "id": "logical_deduction_34", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a blue jay, a robin, a cardinal, a hawk, and a falcon. The blue jay is the rightmost. The robin is to the right of the falcon. The cardinal is to the left of the hawk. The falcon is to the right of the hawk.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the second from the right.", "B) The robin is the second from the right.", "C) The cardinal is the second from the right.", "D) The hawk is the second from the right.", "E) The falcon is the second from the right." ], "answer": "B" }, { "id": "logical_deduction_35", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a white book, an orange book, a yellow book, a blue book, and a red book. The yellow book is to the left of the white book. The red book is to the right of the blue book. The yellow book is to the right of the orange book. The blue book is to the right of the white book.", "question": "Which of the following is true?", "options": [ "A) The white book is the second from the right.", "B) The orange book is the second from the right.", "C) The yellow book is the second from the right.", "D) The blue book is the second from the right.", "E) The red book is the second from the right." ], "answer": "D" }, { "id": "logical_deduction_36", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Dan, Amy, Eve, Ana, and Mya. Dan finished above Eve. Dan finished below Mya. Amy finished third. Ana finished second-to-last.", "question": "Which of the following is true?", "options": [ "A) Dan finished last.", "B) Amy finished last.", "C) Eve finished last.", "D) Ana finished last.", "E) Mya finished last." ], "answer": "C" }, { "id": "logical_deduction_37", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Joe, Ana, Amy, Mya, and Eve. Joe finished last. Ana finished second. Mya finished second-to-last. Eve finished below Amy.", "question": "Which of the following is true?", "options": [ "A) Joe finished first.", "B) Ana finished first.", "C) Amy finished first.", "D) Mya finished first.", "E) Eve finished first." ], "answer": "C" }, { "id": "logical_deduction_38", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a sedan, a convertible, a station wagon, a bus, and a motorcyle. The sedan is the second-newest. The station wagon is newer than the convertible. The sedan is older than the motorcyle. The bus is the oldest.", "question": "Which of the following is true?", "options": [ "A) The sedan is the second-oldest.", "B) The convertible is the second-oldest.", "C) The station wagon is the second-oldest.", "D) The bus is the second-oldest.", "E) The motorcyle is the second-oldest." ], "answer": "B" }, { "id": "logical_deduction_39", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a green book, a blue book, a brown book, a gray book, and a red book. The green book is to the left of the brown book. The gray book is to the left of the blue book. The green book is to the right of the blue book. The red book is the leftmost.", "question": "Which of the following is true?", "options": [ "A) The green book is the third from the left.", "B) The blue book is the third from the left.", "C) The brown book is the third from the left.", "D) The gray book is the third from the left.", "E) The red book is the third from the left." ], "answer": "B" }, { "id": "logical_deduction_40", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: cantaloupes, kiwis, oranges, mangoes, and peaches. The kiwis are less expensive than the mangoes. The peaches are less expensive than the oranges. The oranges are the second-most expensive. The mangoes are the second-cheapest.", "question": "Which of the following is true?", "options": [ "A) The cantaloupes are the second-cheapest.", "B) The kiwis are the second-cheapest.", "C) The oranges are the second-cheapest.", "D) The mangoes are the second-cheapest.", "E) The peaches are the second-cheapest." ], "answer": "D" }, { "id": "logical_deduction_41", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a cardinal, a crow, a falcon, a robin, and a blue jay. The robin is to the right of the cardinal. The cardinal is to the right of the blue jay. The blue jay is the second from the left. The crow is the rightmost.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the leftmost.", "B) The crow is the leftmost.", "C) The falcon is the leftmost.", "D) The robin is the leftmost.", "E) The blue jay is the leftmost." ], "answer": "C" }, { "id": "logical_deduction_42", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a minivan, a limousine, a sedan, a tractor, and a hatchback. The tractor is the second-newest. The limousine is newer than the hatchback. The limousine is older than the sedan. The minivan is newer than the sedan.", "question": "Which of the following is true?", "options": [ "A) The minivan is the oldest.", "B) The limousine is the oldest.", "C) The sedan is the oldest.", "D) The tractor is the oldest.", "E) The hatchback is the oldest." ], "answer": "E" }, { "id": "logical_deduction_43", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: an owl, a crow, a raven, a robin, and a cardinal. The raven is to the right of the owl. The raven is the second from the left. The robin is to the left of the crow. The robin is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The owl is the second from the left.", "B) The crow is the second from the left.", "C) The raven is the second from the left.", "D) The robin is the second from the left.", "E) The cardinal is the second from the left." ], "answer": "C" }, { "id": "logical_deduction_44", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: pears, mangoes, kiwis, oranges, and peaches. The peaches are more expensive than the mangoes. The oranges are more expensive than the kiwis. The pears are the most expensive. The mangoes are more expensive than the oranges.", "question": "Which of the following is true?", "options": [ "A) The pears are the second-cheapest.", "B) The mangoes are the second-cheapest.", "C) The kiwis are the second-cheapest.", "D) The oranges are the second-cheapest.", "E) The peaches are the second-cheapest." ], "answer": "D" }, { "id": "logical_deduction_45", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a cardinal, a robin, a blue jay, a quail, and a raven. The robin is to the right of the raven. The cardinal is the leftmost. The raven is to the right of the blue jay. The blue jay is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the second from the right.", "B) The robin is the second from the right.", "C) The blue jay is the second from the right.", "D) The quail is the second from the right.", "E) The raven is the second from the right." ], "answer": "E" }, { "id": "logical_deduction_46", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a yellow book, a green book, a gray book, a blue book, and an orange book. The gray book is to the left of the green book. The gray book is the second from the right. The yellow book is to the right of the orange book. The blue book is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the rightmost.", "B) The green book is the rightmost.", "C) The gray book is the rightmost.", "D) The blue book is the rightmost.", "E) The orange book is the rightmost." ], "answer": "B" }, { "id": "logical_deduction_47", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a blue jay, a robin, a cardinal, a hawk, and a falcon. The blue jay is the rightmost. The robin is to the right of the falcon. The cardinal is to the left of the hawk. The falcon is to the right of the hawk.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the rightmost.", "B) The robin is the rightmost.", "C) The cardinal is the rightmost.", "D) The hawk is the rightmost.", "E) The falcon is the rightmost." ], "answer": "A" }, { "id": "logical_deduction_48", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: mangoes, kiwis, watermelons, oranges, and apples. The oranges are the cheapest. The kiwis are less expensive than the mangoes. The watermelons are more expensive than the apples. The watermelons are less expensive than the kiwis.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the most expensive.", "B) The kiwis are the most expensive.", "C) The watermelons are the most expensive.", "D) The oranges are the most expensive.", "E) The apples are the most expensive." ], "answer": "A" }, { "id": "logical_deduction_49", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: peaches, watermelons, pears, apples, and cantaloupes. The watermelons are the second-cheapest. The apples are the cheapest. The peaches are the most expensive. The pears are less expensive than the cantaloupes.", "question": "Which of the following is true?", "options": [ "A) The peaches are the most expensive.", "B) The watermelons are the most expensive.", "C) The pears are the most expensive.", "D) The apples are the most expensive.", "E) The cantaloupes are the most expensive." ], "answer": "A" }, { "id": "logical_deduction_50", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a crow, a falcon, a hawk, a robin, and a quail. The robin is to the right of the falcon. The quail is to the left of the hawk. The robin is the second from the left. The hawk is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The crow is the third from the left.", "B) The falcon is the third from the left.", "C) The hawk is the third from the left.", "D) The robin is the third from the left.", "E) The quail is the third from the left." ], "answer": "E" }, { "id": "logical_deduction_51", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a minivan, a hatchback, a bus, a convertible, and a motorcyle. The hatchback is newer than the convertible. The bus is newer than the hatchback. The bus is older than the motorcyle. The minivan is the newest.", "question": "Which of the following is true?", "options": [ "A) The minivan is the newest.", "B) The hatchback is the newest.", "C) The bus is the newest.", "D) The convertible is the newest.", "E) The motorcyle is the newest." ], "answer": "A" }, { "id": "logical_deduction_52", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a cardinal, a hawk, a hummingbird, a raven, and an owl. The raven is to the left of the hummingbird. The hawk is to the left of the owl. The cardinal is to the left of the hawk. The raven is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the leftmost.", "B) The hawk is the leftmost.", "C) The hummingbird is the leftmost.", "D) The raven is the leftmost.", "E) The owl is the leftmost." ], "answer": "A" }, { "id": "logical_deduction_53", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a black book, a brown book, a yellow book, an orange book, and a red book. The black book is to the left of the yellow book. The red book is the third from the left. The brown book is the second from the left. The yellow book is to the left of the orange book.", "question": "Which of the following is true?", "options": [ "A) The black book is the rightmost.", "B) The brown book is the rightmost.", "C) The yellow book is the rightmost.", "D) The orange book is the rightmost.", "E) The red book is the rightmost." ], "answer": "D" }, { "id": "logical_deduction_54", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: watermelons, loquats, pears, plums, and apples. The pears are the second-cheapest. The loquats are more expensive than the pears. The plums are the second-most expensive. The watermelons are the most expensive.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the cheapest.", "B) The loquats are the cheapest.", "C) The pears are the cheapest.", "D) The plums are the cheapest.", "E) The apples are the cheapest." ], "answer": "E" }, { "id": "logical_deduction_55", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a crow, a falcon, a hawk, a robin, and a quail. The robin is to the right of the falcon. The quail is to the left of the hawk. The robin is the second from the left. The hawk is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The crow is the rightmost.", "B) The falcon is the rightmost.", "C) The hawk is the rightmost.", "D) The robin is the rightmost.", "E) The quail is the rightmost." ], "answer": "A" }, { "id": "logical_deduction_56", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: mangoes, kiwis, watermelons, oranges, and apples. The oranges are the cheapest. The kiwis are less expensive than the mangoes. The watermelons are more expensive than the apples. The watermelons are less expensive than the kiwis.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the second-cheapest.", "B) The kiwis are the second-cheapest.", "C) The watermelons are the second-cheapest.", "D) The oranges are the second-cheapest.", "E) The apples are the second-cheapest." ], "answer": "E" }, { "id": "logical_deduction_57", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a hatchback, a limousine, a sedan, a bus, and a tractor. The tractor is newer than the hatchback. The bus is the second-oldest. The hatchback is newer than the sedan. The limousine is the newest.", "question": "Which of the following is true?", "options": [ "A) The hatchback is the third-newest.", "B) The limousine is the third-newest.", "C) The sedan is the third-newest.", "D) The bus is the third-newest.", "E) The tractor is the third-newest." ], "answer": "A" }, { "id": "logical_deduction_58", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a brown book, an orange book, a red book, a purple book, and a black book. The purple book is to the left of the black book. The red book is to the right of the brown book. The orange book is the second from the left. The black book is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The brown book is the second from the left.", "B) The orange book is the second from the left.", "C) The red book is the second from the left.", "D) The purple book is the second from the left.", "E) The black book is the second from the left." ], "answer": "B" }, { "id": "logical_deduction_59", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: cantaloupes, kiwis, oranges, mangoes, and peaches. The kiwis are less expensive than the mangoes. The peaches are less expensive than the oranges. The oranges are the second-most expensive. The mangoes are the second-cheapest.", "question": "Which of the following is true?", "options": [ "A) The cantaloupes are the third-most expensive.", "B) The kiwis are the third-most expensive.", "C) The oranges are the third-most expensive.", "D) The mangoes are the third-most expensive.", "E) The peaches are the third-most expensive." ], "answer": "E" }, { "id": "logical_deduction_60", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a bus, a truck, a motorcyle, a sedan, and a hatchback. The sedan is the second-oldest. The hatchback is newer than the motorcyle. The motorcyle is newer than the sedan. The hatchback is older than the truck.", "question": "Which of the following is true?", "options": [ "A) The bus is the second-oldest.", "B) The truck is the second-oldest.", "C) The motorcyle is the second-oldest.", "D) The sedan is the second-oldest.", "E) The hatchback is the second-oldest." ], "answer": "D" }, { "id": "logical_deduction_61", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a gray book, a red book, a purple book, a blue book, and a black book. The red book is to the right of the gray book. The black book is to the left of the blue book. The blue book is to the left of the gray book. The purple book is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The gray book is the second from the right.", "B) The red book is the second from the right.", "C) The purple book is the second from the right.", "D) The blue book is the second from the right.", "E) The black book is the second from the right." ], "answer": "C" }, { "id": "logical_deduction_62", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: mangoes, kiwis, plums, pears, and watermelons. The kiwis are less expensive than the plums. The pears are the third-most expensive. The kiwis are the second-cheapest. The watermelons are the most expensive.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the most expensive.", "B) The kiwis are the most expensive.", "C) The plums are the most expensive.", "D) The pears are the most expensive.", "E) The watermelons are the most expensive." ], "answer": "E" }, { "id": "logical_deduction_63", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: cantaloupes, kiwis, oranges, mangoes, and peaches. The kiwis are less expensive than the mangoes. The peaches are less expensive than the oranges. The oranges are the second-most expensive. The mangoes are the second-cheapest.", "question": "Which of the following is true?", "options": [ "A) The cantaloupes are the cheapest.", "B) The kiwis are the cheapest.", "C) The oranges are the cheapest.", "D) The mangoes are the cheapest.", "E) The peaches are the cheapest." ], "answer": "B" }, { "id": "logical_deduction_64", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a blue jay, a cardinal, a hawk, a hummingbird, and a quail. The quail is to the left of the blue jay. The cardinal is the third from the left. The quail is the second from the left. The blue jay is to the left of the hummingbird.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the third from the left.", "B) The cardinal is the third from the left.", "C) The hawk is the third from the left.", "D) The hummingbird is the third from the left.", "E) The quail is the third from the left." ], "answer": "B" }, { "id": "logical_deduction_65", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a tractor, a station wagon, a minivan, a sedan, and a hatchback. The minivan is older than the sedan. The tractor is older than the hatchback. The minivan is the third-newest. The station wagon is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The tractor is the second-newest.", "B) The station wagon is the second-newest.", "C) The minivan is the second-newest.", "D) The sedan is the second-newest.", "E) The hatchback is the second-newest." ], "answer": "B" }, { "id": "logical_deduction_66", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Joe, Eve, Mya, Rob, and Dan. Joe finished below Dan. Mya finished first. Dan finished below Rob. Eve finished above Rob.", "question": "Which of the following is true?", "options": [ "A) Joe finished last.", "B) Eve finished last.", "C) Mya finished last.", "D) Rob finished last.", "E) Dan finished last." ], "answer": "A" }, { "id": "logical_deduction_67", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a cardinal, a hawk, a hummingbird, a raven, and an owl. The raven is to the left of the hummingbird. The hawk is to the left of the owl. The cardinal is to the left of the hawk. The raven is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the third from the left.", "B) The hawk is the third from the left.", "C) The hummingbird is the third from the left.", "D) The raven is the third from the left.", "E) The owl is the third from the left." ], "answer": "E" }, { "id": "logical_deduction_68", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Mel, Dan, Amy, Joe, and Eve. Amy finished below Dan. Mel finished first. Joe finished above Dan. Eve finished last.", "question": "Which of the following is true?", "options": [ "A) Mel finished last.", "B) Dan finished last.", "C) Amy finished last.", "D) Joe finished last.", "E) Eve finished last." ], "answer": "E" }, { "id": "logical_deduction_69", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: loquats, peaches, pears, plums, and watermelons. The watermelons are the most expensive. The peaches are more expensive than the loquats. The plums are the second-cheapest. The pears are the third-most expensive.", "question": "Which of the following is true?", "options": [ "A) The loquats are the second-most expensive.", "B) The peaches are the second-most expensive.", "C) The pears are the second-most expensive.", "D) The plums are the second-most expensive.", "E) The watermelons are the second-most expensive." ], "answer": "B" }, { "id": "logical_deduction_70", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a hatchback, a limousine, a sedan, a bus, and a tractor. The tractor is newer than the hatchback. The bus is the second-oldest. The hatchback is newer than the sedan. The limousine is the newest.", "question": "Which of the following is true?", "options": [ "A) The hatchback is the oldest.", "B) The limousine is the oldest.", "C) The sedan is the oldest.", "D) The bus is the oldest.", "E) The tractor is the oldest." ], "answer": "C" }, { "id": "logical_deduction_71", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a convertible, a sedan, a tractor, a minivan, and a limousine. The tractor is newer than the minivan. The tractor is older than the limousine. The convertible is older than the sedan. The convertible is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The convertible is the third-newest.", "B) The sedan is the third-newest.", "C) The tractor is the third-newest.", "D) The minivan is the third-newest.", "E) The limousine is the third-newest." ], "answer": "E" }, { "id": "logical_deduction_72", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a hatchback, a convertible, a tractor, a truck, and a limousine. The tractor is newer than the hatchback. The limousine is the second-newest. The truck is older than the hatchback. The convertible is the second-oldest.", "question": "Which of the following is true?", "options": [ "A) The hatchback is the second-newest.", "B) The convertible is the second-newest.", "C) The tractor is the second-newest.", "D) The truck is the second-newest.", "E) The limousine is the second-newest." ], "answer": "E" }, { "id": "logical_deduction_73", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a falcon, a raven, a cardinal, a hawk, and a crow. The cardinal is the second from the right. The hawk is to the right of the falcon. The raven is the second from the left. The crow is the rightmost.", "question": "Which of the following is true?", "options": [ "A) The falcon is the second from the left.", "B) The raven is the second from the left.", "C) The cardinal is the second from the left.", "D) The hawk is the second from the left.", "E) The crow is the second from the left." ], "answer": "B" }, { "id": "logical_deduction_74", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Ana, Rob, Amy, Dan, and Joe. Rob finished below Dan. Joe finished below Ana. Joe finished above Amy. Dan finished below Amy.", "question": "Which of the following is true?", "options": [ "A) Ana finished third.", "B) Rob finished third.", "C) Amy finished third.", "D) Dan finished third.", "E) Joe finished third." ], "answer": "C" }, { "id": "logical_deduction_75", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a blue book, a red book, a brown book, a yellow book, and an orange book. The red book is to the left of the brown book. The yellow book is to the right of the orange book. The brown book is the second from the left. The yellow book is to the left of the blue book.", "question": "Which of the following is true?", "options": [ "A) The blue book is the second from the right.", "B) The red book is the second from the right.", "C) The brown book is the second from the right.", "D) The yellow book is the second from the right.", "E) The orange book is the second from the right." ], "answer": "D" }, { "id": "logical_deduction_76", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a minivan, a limousine, a sedan, a tractor, and a hatchback. The tractor is the second-newest. The limousine is newer than the hatchback. The limousine is older than the sedan. The minivan is newer than the sedan.", "question": "Which of the following is true?", "options": [ "A) The minivan is the second-oldest.", "B) The limousine is the second-oldest.", "C) The sedan is the second-oldest.", "D) The tractor is the second-oldest.", "E) The hatchback is the second-oldest." ], "answer": "B" }, { "id": "logical_deduction_77", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Rob, Amy, Eve, Mya, and Ana. Mya finished below Rob. Ana finished below Eve. Amy finished second. Eve finished below Mya.", "question": "Which of the following is true?", "options": [ "A) Rob finished second-to-last.", "B) Amy finished second-to-last.", "C) Eve finished second-to-last.", "D) Mya finished second-to-last.", "E) Ana finished second-to-last." ], "answer": "C" }, { "id": "logical_deduction_78", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a blue jay, a raven, a crow, a falcon, and a quail. The crow is to the left of the quail. The falcon is the leftmost. The blue jay is to the right of the quail. The raven is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the rightmost.", "B) The raven is the rightmost.", "C) The crow is the rightmost.", "D) The falcon is the rightmost.", "E) The quail is the rightmost." ], "answer": "A" }, { "id": "logical_deduction_79", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a cardinal, a hawk, a hummingbird, a raven, and an owl. The raven is to the left of the hummingbird. The hawk is to the left of the owl. The cardinal is to the left of the hawk. The raven is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the second from the left.", "B) The hawk is the second from the left.", "C) The hummingbird is the second from the left.", "D) The raven is the second from the left.", "E) The owl is the second from the left." ], "answer": "B" }, { "id": "logical_deduction_80", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a yellow book, a green book, a gray book, a blue book, and an orange book. The gray book is to the left of the green book. The gray book is the second from the right. The yellow book is to the right of the orange book. The blue book is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the third from the left.", "B) The green book is the third from the left.", "C) The gray book is the third from the left.", "D) The blue book is the third from the left.", "E) The orange book is the third from the left." ], "answer": "A" }, { "id": "logical_deduction_81", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a blue book, a purple book, a yellow book, a red book, and a gray book. The yellow book is to the right of the gray book. The purple book is to the left of the gray book. The red book is to the right of the blue book. The purple book is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The blue book is the leftmost.", "B) The purple book is the leftmost.", "C) The yellow book is the leftmost.", "D) The red book is the leftmost.", "E) The gray book is the leftmost." ], "answer": "A" }, { "id": "logical_deduction_82", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a blue book, a purple book, a yellow book, a red book, and a gray book. The yellow book is to the right of the gray book. The purple book is to the left of the gray book. The red book is to the right of the blue book. The purple book is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The blue book is the second from the left.", "B) The purple book is the second from the left.", "C) The yellow book is the second from the left.", "D) The red book is the second from the left.", "E) The gray book is the second from the left." ], "answer": "D" }, { "id": "logical_deduction_83", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Ada, Eli, Amy, Joe, and Mel. Ada finished above Eli. Amy finished below Mel. Ada finished second. Mel finished below Eli.", "question": "Which of the following is true?", "options": [ "A) Ada finished second.", "B) Eli finished second.", "C) Amy finished second.", "D) Joe finished second.", "E) Mel finished second." ], "answer": "A" }, { "id": "logical_deduction_84", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a tractor, a station wagon, a minivan, a sedan, and a hatchback. The minivan is older than the sedan. The tractor is older than the hatchback. The minivan is the third-newest. The station wagon is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The tractor is the third-newest.", "B) The station wagon is the third-newest.", "C) The minivan is the third-newest.", "D) The sedan is the third-newest.", "E) The hatchback is the third-newest." ], "answer": "C" }, { "id": "logical_deduction_85", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a gray book, a red book, a yellow book, a blue book, and an orange book. The gray book is to the right of the yellow book. The orange book is to the right of the red book. The blue book is the rightmost. The gray book is to the left of the red book.", "question": "Which of the following is true?", "options": [ "A) The gray book is the rightmost.", "B) The red book is the rightmost.", "C) The yellow book is the rightmost.", "D) The blue book is the rightmost.", "E) The orange book is the rightmost." ], "answer": "D" }, { "id": "logical_deduction_86", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Eve, Eli, Joe, Rob, and Mya. Rob finished above Mya. Eve finished first. Joe finished above Eli. Joe finished below Mya.", "question": "Which of the following is true?", "options": [ "A) Eve finished last.", "B) Eli finished last.", "C) Joe finished last.", "D) Rob finished last.", "E) Mya finished last." ], "answer": "B" }, { "id": "logical_deduction_87", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: loquats, pears, watermelons, kiwis, and plums. The loquats are the third-most expensive. The loquats are more expensive than the watermelons. The plums are less expensive than the watermelons. The kiwis are more expensive than the pears.", "question": "Which of the following is true?", "options": [ "A) The loquats are the second-most expensive.", "B) The pears are the second-most expensive.", "C) The watermelons are the second-most expensive.", "D) The kiwis are the second-most expensive.", "E) The plums are the second-most expensive." ], "answer": "B" }, { "id": "logical_deduction_88", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: mangoes, cantaloupes, plums, oranges, and watermelons. The oranges are more expensive than the watermelons. The watermelons are the second-cheapest. The plums are less expensive than the cantaloupes. The plums are the second-most expensive.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the second-most expensive.", "B) The cantaloupes are the second-most expensive.", "C) The plums are the second-most expensive.", "D) The oranges are the second-most expensive.", "E) The watermelons are the second-most expensive." ], "answer": "C" }, { "id": "logical_deduction_89", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a station wagon, a sedan, a tractor, a motorcyle, and a limousine. The tractor is newer than the motorcyle. The motorcyle is newer than the sedan. The limousine is the oldest. The station wagon is the newest.", "question": "Which of the following is true?", "options": [ "A) The station wagon is the second-newest.", "B) The sedan is the second-newest.", "C) The tractor is the second-newest.", "D) The motorcyle is the second-newest.", "E) The limousine is the second-newest." ], "answer": "C" }, { "id": "logical_deduction_90", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a green book, an orange book, a gray book, a yellow book, and a purple book. The green book is the rightmost. The gray book is to the right of the orange book. The purple book is to the left of the yellow book. The purple book is to the right of the gray book.", "question": "Which of the following is true?", "options": [ "A) The green book is the third from the left.", "B) The orange book is the third from the left.", "C) The gray book is the third from the left.", "D) The yellow book is the third from the left.", "E) The purple book is the third from the left." ], "answer": "E" }, { "id": "logical_deduction_91", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a tractor, a truck, a bus, a minivan, and a convertible. The bus is newer than the tractor. The convertible is older than the tractor. The truck is the second-newest. The minivan is older than the convertible.", "question": "Which of the following is true?", "options": [ "A) The tractor is the third-newest.", "B) The truck is the third-newest.", "C) The bus is the third-newest.", "D) The minivan is the third-newest.", "E) The convertible is the third-newest." ], "answer": "A" }, { "id": "logical_deduction_92", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a white book, a green book, a brown book, a gray book, and an orange book. The gray book is to the right of the orange book. The green book is the second from the right. The brown book is to the right of the white book. The brown book is to the left of the orange book.", "question": "Which of the following is true?", "options": [ "A) The white book is the second from the left.", "B) The green book is the second from the left.", "C) The brown book is the second from the left.", "D) The gray book is the second from the left.", "E) The orange book is the second from the left." ], "answer": "C" }, { "id": "logical_deduction_93", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a cardinal, a hawk, a hummingbird, a raven, and an owl. The raven is to the left of the hummingbird. The hawk is to the left of the owl. The cardinal is to the left of the hawk. The raven is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the rightmost.", "B) The hawk is the rightmost.", "C) The hummingbird is the rightmost.", "D) The raven is the rightmost.", "E) The owl is the rightmost." ], "answer": "C" }, { "id": "logical_deduction_94", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a quail, a hummingbird, a blue jay, a hawk, and a robin. The robin is the second from the left. The quail is the leftmost. The blue jay is to the left of the hummingbird. The hawk is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The quail is the leftmost.", "B) The hummingbird is the leftmost.", "C) The blue jay is the leftmost.", "D) The hawk is the leftmost.", "E) The robin is the leftmost." ], "answer": "A" }, { "id": "logical_deduction_95", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a blue jay, a cardinal, a hawk, a hummingbird, and a quail. The quail is to the left of the blue jay. The cardinal is the third from the left. The quail is the second from the left. The blue jay is to the left of the hummingbird.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the leftmost.", "B) The cardinal is the leftmost.", "C) The hawk is the leftmost.", "D) The hummingbird is the leftmost.", "E) The quail is the leftmost." ], "answer": "C" }, { "id": "logical_deduction_96", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a tractor, a truck, a bus, a minivan, and a convertible. The bus is newer than the tractor. The convertible is older than the tractor. The truck is the second-newest. The minivan is older than the convertible.", "question": "Which of the following is true?", "options": [ "A) The tractor is the oldest.", "B) The truck is the oldest.", "C) The bus is the oldest.", "D) The minivan is the oldest.", "E) The convertible is the oldest." ], "answer": "D" }, { "id": "logical_deduction_97", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a blue book, a red book, a brown book, a yellow book, and an orange book. The red book is to the left of the brown book. The yellow book is to the right of the orange book. The brown book is the second from the left. The yellow book is to the left of the blue book.", "question": "Which of the following is true?", "options": [ "A) The blue book is the third from the left.", "B) The red book is the third from the left.", "C) The brown book is the third from the left.", "D) The yellow book is the third from the left.", "E) The orange book is the third from the left." ], "answer": "E" }, { "id": "logical_deduction_98", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a yellow book, a gray book, a red book, a black book, and a white book. The gray book is to the left of the yellow book. The white book is to the left of the red book. The black book is to the right of the red book. The black book is to the left of the gray book.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the third from the left.", "B) The gray book is the third from the left.", "C) The red book is the third from the left.", "D) The black book is the third from the left.", "E) The white book is the third from the left." ], "answer": "D" }, { "id": "logical_deduction_99", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a convertible, a truck, a bus, a sedan, and a motorcyle. The bus is newer than the truck. The truck is newer than the convertible. The sedan is the second-oldest. The motorcyle is newer than the bus.", "question": "Which of the following is true?", "options": [ "A) The convertible is the third-newest.", "B) The truck is the third-newest.", "C) The bus is the third-newest.", "D) The sedan is the third-newest.", "E) The motorcyle is the third-newest." ], "answer": "B" }, { "id": "logical_deduction_100", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a truck, a hatchback, a minivan, a bus, a tractor, a station wagon, and a convertible. The station wagon is the fourth-newest. The minivan is the third-newest. The tractor is the second-oldest. The convertible is older than the station wagon. The truck is newer than the bus. The hatchback is older than the convertible.", "question": "Which of the following is true?", "options": [ "A) The truck is the second-newest.", "B) The hatchback is the second-newest.", "C) The minivan is the second-newest.", "D) The bus is the second-newest.", "E) The tractor is the second-newest.", "F) The station wagon is the second-newest.", "G) The convertible is the second-newest." ], "answer": "D" }, { "id": "logical_deduction_101", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: apples, pears, mangoes, oranges, watermelons, peaches, and cantaloupes. The pears are more expensive than the oranges. The oranges are more expensive than the cantaloupes. The peaches are less expensive than the cantaloupes. The apples are the third-cheapest. The watermelons are the second-most expensive. The mangoes are the fourth-most expensive.", "question": "Which of the following is true?", "options": [ "A) The apples are the second-cheapest.", "B) The pears are the second-cheapest.", "C) The mangoes are the second-cheapest.", "D) The oranges are the second-cheapest.", "E) The watermelons are the second-cheapest.", "F) The peaches are the second-cheapest.", "G) The cantaloupes are the second-cheapest." ], "answer": "G" }, { "id": "logical_deduction_102", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a black book, a yellow book, a white book, a gray book, a purple book, an orange book, and a green book. The green book is to the left of the gray book. The gray book is the third from the right. The white book is the rightmost. The orange book is the second from the left. The black book is to the right of the yellow book. The black book is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The black book is the fourth from the left.", "B) The yellow book is the fourth from the left.", "C) The white book is the fourth from the left.", "D) The gray book is the fourth from the left.", "E) The purple book is the fourth from the left.", "F) The orange book is the fourth from the left.", "G) The green book is the fourth from the left." ], "answer": "G" }, { "id": "logical_deduction_103", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: plums, kiwis, cantaloupes, pears, watermelons, apples, and loquats. The watermelons are more expensive than the cantaloupes. The apples are less expensive than the cantaloupes. The watermelons are the second-most expensive. The loquats are less expensive than the kiwis. The apples are more expensive than the loquats. The loquats are the third-cheapest. The plums are the cheapest.", "question": "Which of the following is true?", "options": [ "A) The plums are the third-most expensive.", "B) The kiwis are the third-most expensive.", "C) The cantaloupes are the third-most expensive.", "D) The pears are the third-most expensive.", "E) The watermelons are the third-most expensive.", "F) The apples are the third-most expensive.", "G) The loquats are the third-most expensive." ], "answer": "C" }, { "id": "logical_deduction_104", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hawk, a hummingbird, a falcon, a cardinal, an owl, a robin, and a blue jay. The hummingbird is to the left of the owl. The robin is the rightmost. The blue jay is to the left of the hawk. The blue jay is the third from the left. The falcon is the fourth from the left. The cardinal is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The hawk is the leftmost.", "B) The hummingbird is the leftmost.", "C) The falcon is the leftmost.", "D) The cardinal is the leftmost.", "E) The owl is the leftmost.", "F) The robin is the leftmost.", "G) The blue jay is the leftmost." ], "answer": "B" }, { "id": "logical_deduction_105", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a station wagon, a truck, a sedan, a limousine, a convertible, a bus, and a hatchback. The limousine is the newest. The bus is the third-newest. The bus is older than the convertible. The sedan is the third-oldest. The station wagon is older than the truck. The hatchback is the oldest.", "question": "Which of the following is true?", "options": [ "A) The station wagon is the third-oldest.", "B) The truck is the third-oldest.", "C) The sedan is the third-oldest.", "D) The limousine is the third-oldest.", "E) The convertible is the third-oldest.", "F) The bus is the third-oldest.", "G) The hatchback is the third-oldest." ], "answer": "C" }, { "id": "logical_deduction_106", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: watermelons, cantaloupes, pears, peaches, mangoes, kiwis, and oranges. The oranges are more expensive than the cantaloupes. The pears are less expensive than the kiwis. The kiwis are the fourth-most expensive. The mangoes are less expensive than the pears. The peaches are the cheapest. The cantaloupes are more expensive than the watermelons.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the fourth-most expensive.", "B) The cantaloupes are the fourth-most expensive.", "C) The pears are the fourth-most expensive.", "D) The peaches are the fourth-most expensive.", "E) The mangoes are the fourth-most expensive.", "F) The kiwis are the fourth-most expensive.", "G) The oranges are the fourth-most expensive." ], "answer": "F" }, { "id": "logical_deduction_107", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: kiwis, cantaloupes, oranges, loquats, pears, watermelons, and peaches. The loquats are less expensive than the peaches. The pears are the third-cheapest. The oranges are less expensive than the cantaloupes. The loquats are more expensive than the watermelons. The peaches are less expensive than the oranges. The kiwis are the second-most expensive.", "question": "Which of the following is true?", "options": [ "A) The kiwis are the second-cheapest.", "B) The cantaloupes are the second-cheapest.", "C) The oranges are the second-cheapest.", "D) The loquats are the second-cheapest.", "E) The pears are the second-cheapest.", "F) The watermelons are the second-cheapest.", "G) The peaches are the second-cheapest." ], "answer": "D" }, { "id": "logical_deduction_108", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: loquats, peaches, watermelons, plums, kiwis, mangoes, and pears. The pears are more expensive than the kiwis. The watermelons are less expensive than the peaches. The mangoes are the third-cheapest. The watermelons are the third-most expensive. The plums are the second-most expensive. The loquats are the second-cheapest.", "question": "Which of the following is true?", "options": [ "A) The loquats are the third-most expensive.", "B) The peaches are the third-most expensive.", "C) The watermelons are the third-most expensive.", "D) The plums are the third-most expensive.", "E) The kiwis are the third-most expensive.", "F) The mangoes are the third-most expensive.", "G) The pears are the third-most expensive." ], "answer": "C" }, { "id": "logical_deduction_109", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: mangoes, kiwis, oranges, watermelons, apples, pears, and loquats. The loquats are less expensive than the oranges. The oranges are the third-most expensive. The apples are the cheapest. The kiwis are more expensive than the pears. The mangoes are more expensive than the watermelons. The loquats are more expensive than the kiwis.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the fourth-most expensive.", "B) The kiwis are the fourth-most expensive.", "C) The oranges are the fourth-most expensive.", "D) The watermelons are the fourth-most expensive.", "E) The apples are the fourth-most expensive.", "F) The pears are the fourth-most expensive.", "G) The loquats are the fourth-most expensive." ], "answer": "G" }, { "id": "logical_deduction_110", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: cantaloupes, plums, mangoes, apples, loquats, pears, and peaches. The apples are less expensive than the cantaloupes. The apples are more expensive than the peaches. The mangoes are the fourth-most expensive. The peaches are more expensive than the plums. The pears are the third-most expensive. The loquats are the third-cheapest.", "question": "Which of the following is true?", "options": [ "A) The cantaloupes are the second-most expensive.", "B) The plums are the second-most expensive.", "C) The mangoes are the second-most expensive.", "D) The apples are the second-most expensive.", "E) The loquats are the second-most expensive.", "F) The pears are the second-most expensive.", "G) The peaches are the second-most expensive." ], "answer": "D" }, { "id": "logical_deduction_111", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a brown book, a white book, a black book, a yellow book, an orange book, a blue book, and a green book. The yellow book is the rightmost. The blue book is to the left of the orange book. The green book is to the right of the white book. The blue book is to the right of the green book. The black book is the fourth from the left. The brown book is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The brown book is the second from the right.", "B) The white book is the second from the right.", "C) The black book is the second from the right.", "D) The yellow book is the second from the right.", "E) The orange book is the second from the right.", "F) The blue book is the second from the right.", "G) The green book is the second from the right." ], "answer": "E" }, { "id": "logical_deduction_112", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a brown book, a gray book, an orange book, a green book, a black book, a purple book, and a yellow book. The purple book is the leftmost. The brown book is to the right of the yellow book. The green book is to the left of the orange book. The orange book is to the left of the gray book. The black book is the third from the left. The green book is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The brown book is the third from the right.", "B) The gray book is the third from the right.", "C) The orange book is the third from the right.", "D) The green book is the third from the right.", "E) The black book is the third from the right.", "F) The purple book is the third from the right.", "G) The yellow book is the third from the right." ], "answer": "D" }, { "id": "logical_deduction_113", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: mangoes, watermelons, peaches, kiwis, oranges, cantaloupes, and plums. The watermelons are the cheapest. The peaches are more expensive than the mangoes. The cantaloupes are the second-most expensive. The oranges are more expensive than the cantaloupes. The peaches are less expensive than the plums. The kiwis are the third-cheapest.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the cheapest.", "B) The watermelons are the cheapest.", "C) The peaches are the cheapest.", "D) The kiwis are the cheapest.", "E) The oranges are the cheapest.", "F) The cantaloupes are the cheapest.", "G) The plums are the cheapest." ], "answer": "B" }, { "id": "logical_deduction_114", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a blue jay, an owl, a falcon, a hawk, a raven, a crow, and a hummingbird. The falcon is the second from the left. The crow is the rightmost. The hummingbird is to the right of the blue jay. The hawk is to the right of the hummingbird. The blue jay is to the right of the owl. The raven is to the left of the falcon.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the second from the right.", "B) The owl is the second from the right.", "C) The falcon is the second from the right.", "D) The hawk is the second from the right.", "E) The raven is the second from the right.", "F) The crow is the second from the right.", "G) The hummingbird is the second from the right." ], "answer": "D" }, { "id": "logical_deduction_115", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a convertible, a limousine, a hatchback, a bus, a station wagon, a tractor, and a minivan. The station wagon is the fourth-newest. The hatchback is older than the bus. The hatchback is the second-newest. The minivan is newer than the limousine. The convertible is older than the limousine. The tractor is the second-oldest.", "question": "Which of the following is true?", "options": [ "A) The convertible is the third-newest.", "B) The limousine is the third-newest.", "C) The hatchback is the third-newest.", "D) The bus is the third-newest.", "E) The station wagon is the third-newest.", "F) The tractor is the third-newest.", "G) The minivan is the third-newest." ], "answer": "G" }, { "id": "logical_deduction_116", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a truck, a motorcyle, a sedan, a minivan, a station wagon, a hatchback, and a tractor. The hatchback is newer than the truck. The sedan is the third-newest. The station wagon is the newest. The motorcyle is older than the truck. The minivan is newer than the sedan. The tractor is the third-oldest.", "question": "Which of the following is true?", "options": [ "A) The truck is the fourth-newest.", "B) The motorcyle is the fourth-newest.", "C) The sedan is the fourth-newest.", "D) The minivan is the fourth-newest.", "E) The station wagon is the fourth-newest.", "F) The hatchback is the fourth-newest.", "G) The tractor is the fourth-newest." ], "answer": "F" }, { "id": "logical_deduction_117", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Dan, Eve, Mya, Amy, Rob, Ada, and Joe. Amy finished third. Joe finished last. Mya finished above Dan. Eve finished fourth. Amy finished above Rob. Ada finished third-to-last.", "question": "Which of the following is true?", "options": [ "A) Dan finished second-to-last.", "B) Eve finished second-to-last.", "C) Mya finished second-to-last.", "D) Amy finished second-to-last.", "E) Rob finished second-to-last.", "F) Ada finished second-to-last.", "G) Joe finished second-to-last." ], "answer": "E" }, { "id": "logical_deduction_118", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Eli, Ada, Amy, Ana, Eve, Mel, and Dan. Ada finished above Mel. Dan finished above Ada. Amy finished last. Ana finished third-to-last. Dan finished below Eli. Eve finished third.", "question": "Which of the following is true?", "options": [ "A) Eli finished third.", "B) Ada finished third.", "C) Amy finished third.", "D) Ana finished third.", "E) Eve finished third.", "F) Mel finished third.", "G) Dan finished third." ], "answer": "E" }, { "id": "logical_deduction_119", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a brown book, a yellow book, a black book, a white book, a green book, an orange book, and a purple book. The purple book is the rightmost. The yellow book is the leftmost. The orange book is the second from the right. The brown book is to the left of the green book. The brown book is to the right of the black book. The white book is the fourth from the left.", "question": "Which of the following is true?", "options": [ "A) The brown book is the third from the left.", "B) The yellow book is the third from the left.", "C) The black book is the third from the left.", "D) The white book is the third from the left.", "E) The green book is the third from the left.", "F) The orange book is the third from the left.", "G) The purple book is the third from the left." ], "answer": "A" }, { "id": "logical_deduction_120", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: loquats, peaches, watermelons, plums, kiwis, mangoes, and pears. The pears are more expensive than the kiwis. The watermelons are less expensive than the peaches. The mangoes are the third-cheapest. The watermelons are the third-most expensive. The plums are the second-most expensive. The loquats are the second-cheapest.", "question": "Which of the following is true?", "options": [ "A) The loquats are the fourth-most expensive.", "B) The peaches are the fourth-most expensive.", "C) The watermelons are the fourth-most expensive.", "D) The plums are the fourth-most expensive.", "E) The kiwis are the fourth-most expensive.", "F) The mangoes are the fourth-most expensive.", "G) The pears are the fourth-most expensive." ], "answer": "G" }, { "id": "logical_deduction_121", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: loquats, peaches, watermelons, plums, kiwis, mangoes, and pears. The pears are more expensive than the kiwis. The watermelons are less expensive than the peaches. The mangoes are the third-cheapest. The watermelons are the third-most expensive. The plums are the second-most expensive. The loquats are the second-cheapest.", "question": "Which of the following is true?", "options": [ "A) The loquats are the third-cheapest.", "B) The peaches are the third-cheapest.", "C) The watermelons are the third-cheapest.", "D) The plums are the third-cheapest.", "E) The kiwis are the third-cheapest.", "F) The mangoes are the third-cheapest.", "G) The pears are the third-cheapest." ], "answer": "F" }, { "id": "logical_deduction_122", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hawk, a crow, an owl, a raven, a falcon, a quail, and a hummingbird. The hummingbird is the second from the left. The raven is the fourth from the left. The raven is to the right of the hawk. The owl is to the right of the crow. The falcon is the rightmost. The hawk is to the right of the hummingbird. The quail is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The hawk is the third from the left.", "B) The crow is the third from the left.", "C) The owl is the third from the left.", "D) The raven is the third from the left.", "E) The falcon is the third from the left.", "F) The quail is the third from the left.", "G) The hummingbird is the third from the left." ], "answer": "A" }, { "id": "logical_deduction_123", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a brown book, a white book, a black book, a yellow book, an orange book, a blue book, and a green book. The yellow book is the rightmost. The blue book is to the left of the orange book. The green book is to the right of the white book. The blue book is to the right of the green book. The black book is the fourth from the left. The brown book is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The brown book is the leftmost.", "B) The white book is the leftmost.", "C) The black book is the leftmost.", "D) The yellow book is the leftmost.", "E) The orange book is the leftmost.", "F) The blue book is the leftmost.", "G) The green book is the leftmost." ], "answer": "B" }, { "id": "logical_deduction_124", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a black book, an orange book, a yellow book, a white book, a blue book, a red book, and a green book. The red book is to the right of the yellow book. The white book is the second from the right. The red book is to the left of the green book. The blue book is to the right of the black book. The black book is the third from the right. The orange book is the leftmost.", "question": "Which of the following is true?", "options": [ "A) The black book is the rightmost.", "B) The orange book is the rightmost.", "C) The yellow book is the rightmost.", "D) The white book is the rightmost.", "E) The blue book is the rightmost.", "F) The red book is the rightmost.", "G) The green book is the rightmost." ], "answer": "E" }, { "id": "logical_deduction_125", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a purple book, a brown book, a red book, a blue book, a gray book, a black book, and a green book. The brown book is to the left of the green book. The gray book is the second from the left. The black book is to the left of the gray book. The blue book is to the left of the red book. The blue book is the second from the right. The green book is to the left of the purple book.", "question": "Which of the following is true?", "options": [ "A) The purple book is the third from the left.", "B) The brown book is the third from the left.", "C) The red book is the third from the left.", "D) The blue book is the third from the left.", "E) The gray book is the third from the left.", "F) The black book is the third from the left.", "G) The green book is the third from the left." ], "answer": "B" }, { "id": "logical_deduction_126", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a bus, a motorcyle, a hatchback, a station wagon, a minivan, a truck, and a limousine. The station wagon is the fourth-newest. The motorcyle is newer than the truck. The station wagon is older than the hatchback. The minivan is newer than the hatchback. The bus is newer than the minivan. The truck is newer than the limousine.", "question": "Which of the following is true?", "options": [ "A) The bus is the second-newest.", "B) The motorcyle is the second-newest.", "C) The hatchback is the second-newest.", "D) The station wagon is the second-newest.", "E) The minivan is the second-newest.", "F) The truck is the second-newest.", "G) The limousine is the second-newest." ], "answer": "E" }, { "id": "logical_deduction_127", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a sedan, a minivan, a motorcyle, a limousine, a hatchback, a truck, and a tractor. The motorcyle is older than the tractor. The hatchback is older than the limousine. The hatchback is newer than the truck. The truck is newer than the tractor. The minivan is the second-newest. The sedan is the third-newest.", "question": "Which of the following is true?", "options": [ "A) The sedan is the fourth-newest.", "B) The minivan is the fourth-newest.", "C) The motorcyle is the fourth-newest.", "D) The limousine is the fourth-newest.", "E) The hatchback is the fourth-newest.", "F) The truck is the fourth-newest.", "G) The tractor is the fourth-newest." ], "answer": "E" }, { "id": "logical_deduction_128", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a robin, a hummingbird, a raven, a blue jay, a crow, a cardinal, and a quail. The hummingbird is to the left of the crow. The cardinal is to the right of the quail. The blue jay is the fourth from the left. The robin is the second from the left. The quail is to the right of the crow. The raven is to the left of the robin.", "question": "Which of the following is true?", "options": [ "A) The robin is the second from the left.", "B) The hummingbird is the second from the left.", "C) The raven is the second from the left.", "D) The blue jay is the second from the left.", "E) The crow is the second from the left.", "F) The cardinal is the second from the left.", "G) The quail is the second from the left." ], "answer": "A" }, { "id": "logical_deduction_129", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: kiwis, loquats, pears, peaches, mangoes, plums, and apples. The loquats are the fourth-most expensive. The peaches are less expensive than the mangoes. The apples are more expensive than the pears. The peaches are the second-most expensive. The plums are the cheapest. The pears are more expensive than the kiwis.", "question": "Which of the following is true?", "options": [ "A) The kiwis are the cheapest.", "B) The loquats are the cheapest.", "C) The pears are the cheapest.", "D) The peaches are the cheapest.", "E) The mangoes are the cheapest.", "F) The plums are the cheapest.", "G) The apples are the cheapest." ], "answer": "F" }, { "id": "logical_deduction_130", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: watermelons, cantaloupes, pears, peaches, mangoes, kiwis, and oranges. The oranges are more expensive than the cantaloupes. The pears are less expensive than the kiwis. The kiwis are the fourth-most expensive. The mangoes are less expensive than the pears. The peaches are the cheapest. The cantaloupes are more expensive than the watermelons.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the most expensive.", "B) The cantaloupes are the most expensive.", "C) The pears are the most expensive.", "D) The peaches are the most expensive.", "E) The mangoes are the most expensive.", "F) The kiwis are the most expensive.", "G) The oranges are the most expensive." ], "answer": "G" }, { "id": "logical_deduction_131", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Mel, Mya, Eve, Rob, Ada, and Dan. Rob finished first. Eve finished last. Dan finished above Ada. Mel finished above Mya. Joe finished second-to-last. Mya finished third.", "question": "Which of the following is true?", "options": [ "A) Joe finished third.", "B) Mel finished third.", "C) Mya finished third.", "D) Eve finished third.", "E) Rob finished third.", "F) Ada finished third.", "G) Dan finished third." ], "answer": "C" }, { "id": "logical_deduction_132", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a minivan, a bus, a limousine, a truck, a convertible, a tractor, and a motorcyle. The limousine is older than the minivan. The tractor is older than the limousine. The bus is the newest. The truck is the third-newest. The motorcyle is the fourth-newest. The convertible is older than the tractor.", "question": "Which of the following is true?", "options": [ "A) The minivan is the third-oldest.", "B) The bus is the third-oldest.", "C) The limousine is the third-oldest.", "D) The truck is the third-oldest.", "E) The convertible is the third-oldest.", "F) The tractor is the third-oldest.", "G) The motorcyle is the third-oldest." ], "answer": "C" }, { "id": "logical_deduction_133", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a cardinal, a blue jay, a robin, a falcon, a quail, a hummingbird, and a raven. The falcon is to the right of the quail. The robin is to the right of the hummingbird. The raven is to the left of the quail. The blue jay is the second from the left. The robin is the third from the left. The cardinal is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the fourth from the left.", "B) The blue jay is the fourth from the left.", "C) The robin is the fourth from the left.", "D) The falcon is the fourth from the left.", "E) The quail is the fourth from the left.", "F) The hummingbird is the fourth from the left.", "G) The raven is the fourth from the left." ], "answer": "G" }, { "id": "logical_deduction_134", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a limousine, a truck, a sedan, a tractor, a minivan, a motorcyle, and a hatchback. The minivan is older than the tractor. The hatchback is older than the sedan. The truck is the third-newest. The hatchback is the second-newest. The tractor is older than the limousine. The motorcyle is newer than the limousine.", "question": "Which of the following is true?", "options": [ "A) The limousine is the second-oldest.", "B) The truck is the second-oldest.", "C) The sedan is the second-oldest.", "D) The tractor is the second-oldest.", "E) The minivan is the second-oldest.", "F) The motorcyle is the second-oldest.", "G) The hatchback is the second-oldest." ], "answer": "D" }, { "id": "logical_deduction_135", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: plums, kiwis, pears, mangoes, apples, oranges, and loquats. The pears are less expensive than the oranges. The mangoes are less expensive than the kiwis. The plums are the second-most expensive. The loquats are more expensive than the apples. The kiwis are less expensive than the apples. The loquats are the fourth-most expensive.", "question": "Which of the following is true?", "options": [ "A) The plums are the most expensive.", "B) The kiwis are the most expensive.", "C) The pears are the most expensive.", "D) The mangoes are the most expensive.", "E) The apples are the most expensive.", "F) The oranges are the most expensive.", "G) The loquats are the most expensive." ], "answer": "F" }, { "id": "logical_deduction_136", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a blue jay, an owl, a falcon, a hawk, a raven, a crow, and a hummingbird. The falcon is the second from the left. The crow is the rightmost. The hummingbird is to the right of the blue jay. The hawk is to the right of the hummingbird. The blue jay is to the right of the owl. The raven is to the left of the falcon.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the leftmost.", "B) The owl is the leftmost.", "C) The falcon is the leftmost.", "D) The hawk is the leftmost.", "E) The raven is the leftmost.", "F) The crow is the leftmost.", "G) The hummingbird is the leftmost." ], "answer": "E" }, { "id": "logical_deduction_137", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: kiwis, cantaloupes, oranges, loquats, pears, watermelons, and peaches. The loquats are less expensive than the peaches. The pears are the third-cheapest. The oranges are less expensive than the cantaloupes. The loquats are more expensive than the watermelons. The peaches are less expensive than the oranges. The kiwis are the second-most expensive.", "question": "Which of the following is true?", "options": [ "A) The kiwis are the most expensive.", "B) The cantaloupes are the most expensive.", "C) The oranges are the most expensive.", "D) The loquats are the most expensive.", "E) The pears are the most expensive.", "F) The watermelons are the most expensive.", "G) The peaches are the most expensive." ], "answer": "B" }, { "id": "logical_deduction_138", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a cardinal, a blue jay, a robin, a falcon, a quail, a hummingbird, and a raven. The falcon is to the right of the quail. The robin is to the right of the hummingbird. The raven is to the left of the quail. The blue jay is the second from the left. The robin is the third from the left. The cardinal is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the second from the right.", "B) The blue jay is the second from the right.", "C) The robin is the second from the right.", "D) The falcon is the second from the right.", "E) The quail is the second from the right.", "F) The hummingbird is the second from the right.", "G) The raven is the second from the right." ], "answer": "E" }, { "id": "logical_deduction_139", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a robin, a hummingbird, a raven, a blue jay, a crow, a cardinal, and a quail. The hummingbird is to the left of the crow. The cardinal is to the right of the quail. The blue jay is the fourth from the left. The robin is the second from the left. The quail is to the right of the crow. The raven is to the left of the robin.", "question": "Which of the following is true?", "options": [ "A) The robin is the rightmost.", "B) The hummingbird is the rightmost.", "C) The raven is the rightmost.", "D) The blue jay is the rightmost.", "E) The crow is the rightmost.", "F) The cardinal is the rightmost.", "G) The quail is the rightmost." ], "answer": "F" }, { "id": "logical_deduction_140", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a limousine, a sedan, a tractor, a motorcyle, a minivan, a hatchback, and a truck. The minivan is newer than the limousine. The tractor is the second-newest. The truck is older than the sedan. The minivan is older than the truck. The hatchback is newer than the tractor. The motorcyle is the fourth-newest.", "question": "Which of the following is true?", "options": [ "A) The limousine is the newest.", "B) The sedan is the newest.", "C) The tractor is the newest.", "D) The motorcyle is the newest.", "E) The minivan is the newest.", "F) The hatchback is the newest.", "G) The truck is the newest." ], "answer": "F" }, { "id": "logical_deduction_141", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Rob, Eli, Dan, Mya, Ada, and Ana. Joe finished above Ana. Ana finished second-to-last. Mya finished fourth. Dan finished third. Ada finished second. Eli finished third-to-last.", "question": "Which of the following is true?", "options": [ "A) Joe finished last.", "B) Rob finished last.", "C) Eli finished last.", "D) Dan finished last.", "E) Mya finished last.", "F) Ada finished last.", "G) Ana finished last." ], "answer": "B" }, { "id": "logical_deduction_142", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a truck, a hatchback, a minivan, a bus, a tractor, a station wagon, and a convertible. The station wagon is the fourth-newest. The minivan is the third-newest. The tractor is the second-oldest. The convertible is older than the station wagon. The truck is newer than the bus. The hatchback is older than the convertible.", "question": "Which of the following is true?", "options": [ "A) The truck is the newest.", "B) The hatchback is the newest.", "C) The minivan is the newest.", "D) The bus is the newest.", "E) The tractor is the newest.", "F) The station wagon is the newest.", "G) The convertible is the newest." ], "answer": "A" }, { "id": "logical_deduction_143", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a quail, a raven, a hummingbird, a robin, a falcon, an owl, and a blue jay. The blue jay is to the left of the falcon. The blue jay is the second from the right. The raven is to the left of the robin. The owl is the third from the right. The hummingbird is to the left of the quail. The raven is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The quail is the leftmost.", "B) The raven is the leftmost.", "C) The hummingbird is the leftmost.", "D) The robin is the leftmost.", "E) The falcon is the leftmost.", "F) The owl is the leftmost.", "G) The blue jay is the leftmost." ], "answer": "C" }, { "id": "logical_deduction_144", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Dan, Ada, Amy, Rob, Mya, and Mel. Ada finished below Amy. Joe finished below Dan. Dan finished below Ada. Mel finished third-to-last. Amy finished third. Rob finished below Mya.", "question": "Which of the following is true?", "options": [ "A) Joe finished first.", "B) Dan finished first.", "C) Ada finished first.", "D) Amy finished first.", "E) Rob finished first.", "F) Mya finished first.", "G) Mel finished first." ], "answer": "F" }, { "id": "logical_deduction_145", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: mangoes, cantaloupes, apples, plums, loquats, watermelons, and peaches. The plums are more expensive than the mangoes. The watermelons are more expensive than the loquats. The loquats are the second-cheapest. The plums are less expensive than the peaches. The mangoes are the fourth-most expensive. The peaches are less expensive than the cantaloupes.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the cheapest.", "B) The cantaloupes are the cheapest.", "C) The apples are the cheapest.", "D) The plums are the cheapest.", "E) The loquats are the cheapest.", "F) The watermelons are the cheapest.", "G) The peaches are the cheapest." ], "answer": "C" }, { "id": "logical_deduction_146", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a falcon, a crow, a hawk, a hummingbird, a blue jay, a robin, and a raven. The blue jay is to the right of the robin. The hawk is to the left of the hummingbird. The robin is the second from the right. The falcon is the third from the left. The crow is to the right of the hummingbird. The raven is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The falcon is the rightmost.", "B) The crow is the rightmost.", "C) The hawk is the rightmost.", "D) The hummingbird is the rightmost.", "E) The blue jay is the rightmost.", "F) The robin is the rightmost.", "G) The raven is the rightmost." ], "answer": "E" }, { "id": "logical_deduction_147", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a brown book, a yellow book, a black book, a white book, a green book, an orange book, and a purple book. The purple book is the rightmost. The yellow book is the leftmost. The orange book is the second from the right. The brown book is to the left of the green book. The brown book is to the right of the black book. The white book is the fourth from the left.", "question": "Which of the following is true?", "options": [ "A) The brown book is the third from the right.", "B) The yellow book is the third from the right.", "C) The black book is the third from the right.", "D) The white book is the third from the right.", "E) The green book is the third from the right.", "F) The orange book is the third from the right.", "G) The purple book is the third from the right." ], "answer": "E" }, { "id": "logical_deduction_148", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a falcon, an owl, a quail, a raven, a hummingbird, a blue jay, and a crow. The quail is to the left of the owl. The owl is the second from the left. The crow is to the right of the falcon. The blue jay is to the right of the hummingbird. The hummingbird is to the right of the raven. The blue jay is to the left of the falcon.", "question": "Which of the following is true?", "options": [ "A) The falcon is the second from the left.", "B) The owl is the second from the left.", "C) The quail is the second from the left.", "D) The raven is the second from the left.", "E) The hummingbird is the second from the left.", "F) The blue jay is the second from the left.", "G) The crow is the second from the left." ], "answer": "B" }, { "id": "logical_deduction_149", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Mel, Mya, Eve, Rob, Ada, and Dan. Rob finished first. Eve finished last. Dan finished above Ada. Mel finished above Mya. Joe finished second-to-last. Mya finished third.", "question": "Which of the following is true?", "options": [ "A) Joe finished third-to-last.", "B) Mel finished third-to-last.", "C) Mya finished third-to-last.", "D) Eve finished third-to-last.", "E) Rob finished third-to-last.", "F) Ada finished third-to-last.", "G) Dan finished third-to-last." ], "answer": "F" }, { "id": "logical_deduction_150", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Dan, Ada, Amy, Rob, Mya, and Mel. Ada finished below Amy. Joe finished below Dan. Dan finished below Ada. Mel finished third-to-last. Amy finished third. Rob finished below Mya.", "question": "Which of the following is true?", "options": [ "A) Joe finished second.", "B) Dan finished second.", "C) Ada finished second.", "D) Amy finished second.", "E) Rob finished second.", "F) Mya finished second.", "G) Mel finished second." ], "answer": "E" }, { "id": "logical_deduction_151", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: watermelons, mangoes, kiwis, pears, cantaloupes, oranges, and peaches. The oranges are more expensive than the peaches. The cantaloupes are the fourth-most expensive. The pears are less expensive than the cantaloupes. The peaches are the second-most expensive. The mangoes are the cheapest. The kiwis are the third-cheapest.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the second-most expensive.", "B) The mangoes are the second-most expensive.", "C) The kiwis are the second-most expensive.", "D) The pears are the second-most expensive.", "E) The cantaloupes are the second-most expensive.", "F) The oranges are the second-most expensive.", "G) The peaches are the second-most expensive." ], "answer": "G" }, { "id": "logical_deduction_152", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hawk, a raven, a hummingbird, a falcon, an owl, a quail, and a cardinal. The quail is to the left of the hummingbird. The raven is to the right of the hummingbird. The cardinal is the second from the left. The owl is to the left of the cardinal. The raven is the third from the right. The falcon is the rightmost.", "question": "Which of the following is true?", "options": [ "A) The hawk is the fourth from the left.", "B) The raven is the fourth from the left.", "C) The hummingbird is the fourth from the left.", "D) The falcon is the fourth from the left.", "E) The owl is the fourth from the left.", "F) The quail is the fourth from the left.", "G) The cardinal is the fourth from the left." ], "answer": "C" }, { "id": "logical_deduction_153", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a yellow book, a red book, a gray book, a blue book, a white book, an orange book, and a purple book. The red book is the third from the right. The white book is to the right of the orange book. The purple book is the third from the left. The yellow book is to the right of the purple book. The blue book is to the right of the red book. The blue book is to the left of the gray book.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the second from the left.", "B) The red book is the second from the left.", "C) The gray book is the second from the left.", "D) The blue book is the second from the left.", "E) The white book is the second from the left.", "F) The orange book is the second from the left.", "G) The purple book is the second from the left." ], "answer": "E" }, { "id": "logical_deduction_154", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Amy, Eve, Ada, Rob, Dan, Mel, and Joe. Joe finished third. Dan finished last. Eve finished first. Mel finished below Rob. Ada finished above Joe. Rob finished third-to-last.", "question": "Which of the following is true?", "options": [ "A) Amy finished fourth.", "B) Eve finished fourth.", "C) Ada finished fourth.", "D) Rob finished fourth.", "E) Dan finished fourth.", "F) Mel finished fourth.", "G) Joe finished fourth." ], "answer": "A" }, { "id": "logical_deduction_155", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a cardinal, a crow, a hummingbird, a blue jay, an owl, a robin, and a quail. The cardinal is to the right of the crow. The quail is the third from the left. The owl is to the right of the robin. The hummingbird is to the right of the blue jay. The cardinal is the second from the left. The owl is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the leftmost.", "B) The crow is the leftmost.", "C) The hummingbird is the leftmost.", "D) The blue jay is the leftmost.", "E) The owl is the leftmost.", "F) The robin is the leftmost.", "G) The quail is the leftmost." ], "answer": "B" }, { "id": "logical_deduction_156", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: watermelons, oranges, mangoes, cantaloupes, kiwis, pears, and peaches. The pears are the second-cheapest. The peaches are more expensive than the cantaloupes. The peaches are less expensive than the mangoes. The cantaloupes are more expensive than the kiwis. The oranges are the fourth-most expensive. The watermelons are the second-most expensive.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the fourth-most expensive.", "B) The oranges are the fourth-most expensive.", "C) The mangoes are the fourth-most expensive.", "D) The cantaloupes are the fourth-most expensive.", "E) The kiwis are the fourth-most expensive.", "F) The pears are the fourth-most expensive.", "G) The peaches are the fourth-most expensive." ], "answer": "B" }, { "id": "logical_deduction_157", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a falcon, an owl, a quail, a raven, a hummingbird, a blue jay, and a crow. The quail is to the left of the owl. The owl is the second from the left. The crow is to the right of the falcon. The blue jay is to the right of the hummingbird. The hummingbird is to the right of the raven. The blue jay is to the left of the falcon.", "question": "Which of the following is true?", "options": [ "A) The falcon is the fourth from the left.", "B) The owl is the fourth from the left.", "C) The quail is the fourth from the left.", "D) The raven is the fourth from the left.", "E) The hummingbird is the fourth from the left.", "F) The blue jay is the fourth from the left.", "G) The crow is the fourth from the left." ], "answer": "E" }, { "id": "logical_deduction_158", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Dan, Eve, Mya, Amy, Rob, Ada, and Joe. Amy finished third. Joe finished last. Mya finished above Dan. Eve finished fourth. Amy finished above Rob. Ada finished third-to-last.", "question": "Which of the following is true?", "options": [ "A) Dan finished fourth.", "B) Eve finished fourth.", "C) Mya finished fourth.", "D) Amy finished fourth.", "E) Rob finished fourth.", "F) Ada finished fourth.", "G) Joe finished fourth." ], "answer": "B" }, { "id": "logical_deduction_159", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a limousine, a sedan, a tractor, a motorcyle, a minivan, a hatchback, and a truck. The minivan is newer than the limousine. The tractor is the second-newest. The truck is older than the sedan. The minivan is older than the truck. The hatchback is newer than the tractor. The motorcyle is the fourth-newest.", "question": "Which of the following is true?", "options": [ "A) The limousine is the third-oldest.", "B) The sedan is the third-oldest.", "C) The tractor is the third-oldest.", "D) The motorcyle is the third-oldest.", "E) The minivan is the third-oldest.", "F) The hatchback is the third-oldest.", "G) The truck is the third-oldest." ], "answer": "G" }, { "id": "logical_deduction_160", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hawk, a hummingbird, a falcon, a cardinal, an owl, a robin, and a blue jay. The hummingbird is to the left of the owl. The robin is the rightmost. The blue jay is to the left of the hawk. The blue jay is the third from the left. The falcon is the fourth from the left. The cardinal is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The hawk is the rightmost.", "B) The hummingbird is the rightmost.", "C) The falcon is the rightmost.", "D) The cardinal is the rightmost.", "E) The owl is the rightmost.", "F) The robin is the rightmost.", "G) The blue jay is the rightmost." ], "answer": "F" }, { "id": "logical_deduction_161", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: kiwis, cantaloupes, oranges, loquats, pears, watermelons, and peaches. The loquats are less expensive than the peaches. The pears are the third-cheapest. The oranges are less expensive than the cantaloupes. The loquats are more expensive than the watermelons. The peaches are less expensive than the oranges. The kiwis are the second-most expensive.", "question": "Which of the following is true?", "options": [ "A) The kiwis are the third-most expensive.", "B) The cantaloupes are the third-most expensive.", "C) The oranges are the third-most expensive.", "D) The loquats are the third-most expensive.", "E) The pears are the third-most expensive.", "F) The watermelons are the third-most expensive.", "G) The peaches are the third-most expensive." ], "answer": "C" }, { "id": "logical_deduction_162", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a limousine, a truck, a sedan, a tractor, a minivan, a motorcyle, and a hatchback. The minivan is older than the tractor. The hatchback is older than the sedan. The truck is the third-newest. The hatchback is the second-newest. The tractor is older than the limousine. The motorcyle is newer than the limousine.", "question": "Which of the following is true?", "options": [ "A) The limousine is the newest.", "B) The truck is the newest.", "C) The sedan is the newest.", "D) The tractor is the newest.", "E) The minivan is the newest.", "F) The motorcyle is the newest.", "G) The hatchback is the newest." ], "answer": "C" }, { "id": "logical_deduction_163", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a raven, a cardinal, a falcon, an owl, a blue jay, a quail, and a robin. The owl is the second from the right. The cardinal is the fourth from the left. The falcon is to the left of the blue jay. The quail is to the left of the falcon. The raven is the second from the left. The robin is to the left of the quail.", "question": "Which of the following is true?", "options": [ "A) The raven is the leftmost.", "B) The cardinal is the leftmost.", "C) The falcon is the leftmost.", "D) The owl is the leftmost.", "E) The blue jay is the leftmost.", "F) The quail is the leftmost.", "G) The robin is the leftmost." ], "answer": "G" }, { "id": "logical_deduction_164", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: mangoes, kiwis, oranges, watermelons, apples, pears, and loquats. The loquats are less expensive than the oranges. The oranges are the third-most expensive. The apples are the cheapest. The kiwis are more expensive than the pears. The mangoes are more expensive than the watermelons. The loquats are more expensive than the kiwis.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the most expensive.", "B) The kiwis are the most expensive.", "C) The oranges are the most expensive.", "D) The watermelons are the most expensive.", "E) The apples are the most expensive.", "F) The pears are the most expensive.", "G) The loquats are the most expensive." ], "answer": "A" }, { "id": "logical_deduction_165", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: an orange book, a red book, a brown book, a blue book, a black book, a gray book, and a white book. The white book is the leftmost. The red book is to the right of the blue book. The orange book is the second from the right. The gray book is the fourth from the left. The black book is the rightmost. The gray book is to the right of the red book.", "question": "Which of the following is true?", "options": [ "A) The orange book is the fourth from the left.", "B) The red book is the fourth from the left.", "C) The brown book is the fourth from the left.", "D) The blue book is the fourth from the left.", "E) The black book is the fourth from the left.", "F) The gray book is the fourth from the left.", "G) The white book is the fourth from the left." ], "answer": "F" }, { "id": "logical_deduction_166", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a falcon, an owl, a quail, a raven, a hummingbird, a blue jay, and a crow. The quail is to the left of the owl. The owl is the second from the left. The crow is to the right of the falcon. The blue jay is to the right of the hummingbird. The hummingbird is to the right of the raven. The blue jay is to the left of the falcon.", "question": "Which of the following is true?", "options": [ "A) The falcon is the leftmost.", "B) The owl is the leftmost.", "C) The quail is the leftmost.", "D) The raven is the leftmost.", "E) The hummingbird is the leftmost.", "F) The blue jay is the leftmost.", "G) The crow is the leftmost." ], "answer": "C" }, { "id": "logical_deduction_167", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a falcon, a crow, a hawk, a hummingbird, a blue jay, a robin, and a raven. The blue jay is to the right of the robin. The hawk is to the left of the hummingbird. The robin is the second from the right. The falcon is the third from the left. The crow is to the right of the hummingbird. The raven is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The falcon is the third from the right.", "B) The crow is the third from the right.", "C) The hawk is the third from the right.", "D) The hummingbird is the third from the right.", "E) The blue jay is the third from the right.", "F) The robin is the third from the right.", "G) The raven is the third from the right." ], "answer": "B" }, { "id": "logical_deduction_168", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Ada, Ana, Rob, Amy, Dan, Joe, and Eli. Eli finished below Amy. Ada finished third. Amy finished below Rob. Dan finished last. Rob finished second. Ana finished fourth.", "question": "Which of the following is true?", "options": [ "A) Ada finished last.", "B) Ana finished last.", "C) Rob finished last.", "D) Amy finished last.", "E) Dan finished last.", "F) Joe finished last.", "G) Eli finished last." ], "answer": "E" }, { "id": "logical_deduction_169", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Dan, Ana, Mel, Ada, Eve, and Amy. Eve finished above Amy. Dan finished second. Ada finished below Ana. Ana finished third-to-last. Mel finished last. Amy finished third.", "question": "Which of the following is true?", "options": [ "A) Joe finished second.", "B) Dan finished second.", "C) Ana finished second.", "D) Mel finished second.", "E) Ada finished second.", "F) Eve finished second.", "G) Amy finished second." ], "answer": "B" }, { "id": "logical_deduction_170", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hawk, a hummingbird, a falcon, a cardinal, an owl, a robin, and a blue jay. The hummingbird is to the left of the owl. The robin is the rightmost. The blue jay is to the left of the hawk. The blue jay is the third from the left. The falcon is the fourth from the left. The cardinal is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The hawk is the second from the right.", "B) The hummingbird is the second from the right.", "C) The falcon is the second from the right.", "D) The cardinal is the second from the right.", "E) The owl is the second from the right.", "F) The robin is the second from the right.", "G) The blue jay is the second from the right." ], "answer": "D" }, { "id": "logical_deduction_171", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Ana, Eli, Mya, Amy, Joe, Mel, and Ada. Ada finished above Mel. Ada finished third-to-last. Amy finished above Ana. Mya finished second-to-last. Joe finished above Amy. Eli finished below Ana.", "question": "Which of the following is true?", "options": [ "A) Ana finished third.", "B) Eli finished third.", "C) Mya finished third.", "D) Amy finished third.", "E) Joe finished third.", "F) Mel finished third.", "G) Ada finished third." ], "answer": "A" }, { "id": "logical_deduction_172", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a limousine, a convertible, a station wagon, a minivan, a bus, a tractor, and a truck. The minivan is the oldest. The truck is older than the station wagon. The truck is newer than the limousine. The bus is newer than the convertible. The bus is older than the tractor. The limousine is newer than the tractor.", "question": "Which of the following is true?", "options": [ "A) The limousine is the third-newest.", "B) The convertible is the third-newest.", "C) The station wagon is the third-newest.", "D) The minivan is the third-newest.", "E) The bus is the third-newest.", "F) The tractor is the third-newest.", "G) The truck is the third-newest." ], "answer": "A" }, { "id": "logical_deduction_173", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: loquats, peaches, watermelons, plums, kiwis, mangoes, and pears. The pears are more expensive than the kiwis. The watermelons are less expensive than the peaches. The mangoes are the third-cheapest. The watermelons are the third-most expensive. The plums are the second-most expensive. The loquats are the second-cheapest.", "question": "Which of the following is true?", "options": [ "A) The loquats are the second-most expensive.", "B) The peaches are the second-most expensive.", "C) The watermelons are the second-most expensive.", "D) The plums are the second-most expensive.", "E) The kiwis are the second-most expensive.", "F) The mangoes are the second-most expensive.", "G) The pears are the second-most expensive." ], "answer": "D" }, { "id": "logical_deduction_174", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: loquats, cantaloupes, watermelons, apples, oranges, pears, and mangoes. The oranges are the second-cheapest. The apples are less expensive than the pears. The mangoes are more expensive than the cantaloupes. The mangoes are the third-cheapest. The watermelons are the second-most expensive. The loquats are the third-most expensive.", "question": "Which of the following is true?", "options": [ "A) The loquats are the third-most expensive.", "B) The cantaloupes are the third-most expensive.", "C) The watermelons are the third-most expensive.", "D) The apples are the third-most expensive.", "E) The oranges are the third-most expensive.", "F) The pears are the third-most expensive.", "G) The mangoes are the third-most expensive." ], "answer": "A" }, { "id": "logical_deduction_175", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a red book, a purple book, a green book, a white book, an orange book, a blue book, and a gray book. The green book is to the left of the white book. The red book is to the left of the purple book. The red book is to the right of the orange book. The gray book is the second from the left. The purple book is to the left of the green book. The blue book is the fourth from the left.", "question": "Which of the following is true?", "options": [ "A) The red book is the second from the right.", "B) The purple book is the second from the right.", "C) The green book is the second from the right.", "D) The white book is the second from the right.", "E) The orange book is the second from the right.", "F) The blue book is the second from the right.", "G) The gray book is the second from the right." ], "answer": "C" }, { "id": "logical_deduction_176", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: plums, kiwis, pears, mangoes, apples, oranges, and loquats. The pears are less expensive than the oranges. The mangoes are less expensive than the kiwis. The plums are the second-most expensive. The loquats are more expensive than the apples. The kiwis are less expensive than the apples. The loquats are the fourth-most expensive.", "question": "Which of the following is true?", "options": [ "A) The plums are the third-cheapest.", "B) The kiwis are the third-cheapest.", "C) The pears are the third-cheapest.", "D) The mangoes are the third-cheapest.", "E) The apples are the third-cheapest.", "F) The oranges are the third-cheapest.", "G) The loquats are the third-cheapest." ], "answer": "E" }, { "id": "logical_deduction_177", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: an orange book, a green book, a red book, a gray book, a purple book, a blue book, and a brown book. The purple book is the fourth from the left. The brown book is the third from the left. The green book is to the left of the blue book. The red book is the leftmost. The gray book is the third from the right. The orange book is the rightmost.", "question": "Which of the following is true?", "options": [ "A) The orange book is the third from the right.", "B) The green book is the third from the right.", "C) The red book is the third from the right.", "D) The gray book is the third from the right.", "E) The purple book is the third from the right.", "F) The blue book is the third from the right.", "G) The brown book is the third from the right." ], "answer": "D" }, { "id": "logical_deduction_178", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Eve, Ana, Amy, Dan, Eli, Rob, and Mya. Mya finished above Eli. Eve finished below Rob. Amy finished second. Rob finished below Dan. Ana finished second-to-last. Dan finished fourth.", "question": "Which of the following is true?", "options": [ "A) Eve finished third.", "B) Ana finished third.", "C) Amy finished third.", "D) Dan finished third.", "E) Eli finished third.", "F) Rob finished third.", "G) Mya finished third." ], "answer": "E" }, { "id": "logical_deduction_179", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hawk, a raven, a hummingbird, a falcon, an owl, a quail, and a cardinal. The quail is to the left of the hummingbird. The raven is to the right of the hummingbird. The cardinal is the second from the left. The owl is to the left of the cardinal. The raven is the third from the right. The falcon is the rightmost.", "question": "Which of the following is true?", "options": [ "A) The hawk is the third from the left.", "B) The raven is the third from the left.", "C) The hummingbird is the third from the left.", "D) The falcon is the third from the left.", "E) The owl is the third from the left.", "F) The quail is the third from the left.", "G) The cardinal is the third from the left." ], "answer": "F" }, { "id": "logical_deduction_180", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a black book, an orange book, a yellow book, a white book, a blue book, a red book, and a green book. The red book is to the right of the yellow book. The white book is the second from the right. The red book is to the left of the green book. The blue book is to the right of the black book. The black book is the third from the right. The orange book is the leftmost.", "question": "Which of the following is true?", "options": [ "A) The black book is the third from the right.", "B) The orange book is the third from the right.", "C) The yellow book is the third from the right.", "D) The white book is the third from the right.", "E) The blue book is the third from the right.", "F) The red book is the third from the right.", "G) The green book is the third from the right." ], "answer": "A" }, { "id": "logical_deduction_181", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: an orange book, a red book, a brown book, a blue book, a black book, a gray book, and a white book. The white book is the leftmost. The red book is to the right of the blue book. The orange book is the second from the right. The gray book is the fourth from the left. The black book is the rightmost. The gray book is to the right of the red book.", "question": "Which of the following is true?", "options": [ "A) The orange book is the second from the left.", "B) The red book is the second from the left.", "C) The brown book is the second from the left.", "D) The blue book is the second from the left.", "E) The black book is the second from the left.", "F) The gray book is the second from the left.", "G) The white book is the second from the left." ], "answer": "D" }, { "id": "logical_deduction_182", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hawk, a hummingbird, a quail, an owl, a crow, a robin, and a cardinal. The cardinal is the second from the right. The hawk is the rightmost. The owl is to the left of the hummingbird. The robin is to the left of the quail. The owl is to the right of the crow. The robin is the fourth from the left.", "question": "Which of the following is true?", "options": [ "A) The hawk is the leftmost.", "B) The hummingbird is the leftmost.", "C) The quail is the leftmost.", "D) The owl is the leftmost.", "E) The crow is the leftmost.", "F) The robin is the leftmost.", "G) The cardinal is the leftmost." ], "answer": "E" }, { "id": "logical_deduction_183", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: apples, pears, mangoes, oranges, watermelons, peaches, and cantaloupes. The pears are more expensive than the oranges. The oranges are more expensive than the cantaloupes. The peaches are less expensive than the cantaloupes. The apples are the third-cheapest. The watermelons are the second-most expensive. The mangoes are the fourth-most expensive.", "question": "Which of the following is true?", "options": [ "A) The apples are the fourth-most expensive.", "B) The pears are the fourth-most expensive.", "C) The mangoes are the fourth-most expensive.", "D) The oranges are the fourth-most expensive.", "E) The watermelons are the fourth-most expensive.", "F) The peaches are the fourth-most expensive.", "G) The cantaloupes are the fourth-most expensive." ], "answer": "C" }, { "id": "logical_deduction_184", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Eli, Ada, Mel, Eve, Rob, and Ana. Joe finished first. Mel finished second-to-last. Rob finished above Eve. Mel finished above Eli. Rob finished below Ada. Eve finished fourth.", "question": "Which of the following is true?", "options": [ "A) Joe finished last.", "B) Eli finished last.", "C) Ada finished last.", "D) Mel finished last.", "E) Eve finished last.", "F) Rob finished last.", "G) Ana finished last." ], "answer": "B" }, { "id": "logical_deduction_185", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: plums, kiwis, cantaloupes, pears, watermelons, apples, and loquats. The watermelons are more expensive than the cantaloupes. The apples are less expensive than the cantaloupes. The watermelons are the second-most expensive. The loquats are less expensive than the kiwis. The apples are more expensive than the loquats. The loquats are the third-cheapest. The plums are the cheapest.", "question": "Which of the following is true?", "options": [ "A) The plums are the fourth-most expensive.", "B) The kiwis are the fourth-most expensive.", "C) The cantaloupes are the fourth-most expensive.", "D) The pears are the fourth-most expensive.", "E) The watermelons are the fourth-most expensive.", "F) The apples are the fourth-most expensive.", "G) The loquats are the fourth-most expensive." ], "answer": "F" }, { "id": "logical_deduction_186", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: kiwis, plums, mangoes, watermelons, pears, peaches, and oranges. The pears are the third-cheapest. The kiwis are the second-most expensive. The pears are more expensive than the plums. The oranges are less expensive than the kiwis. The mangoes are the third-most expensive. The peaches are the second-cheapest.", "question": "Which of the following is true?", "options": [ "A) The kiwis are the cheapest.", "B) The plums are the cheapest.", "C) The mangoes are the cheapest.", "D) The watermelons are the cheapest.", "E) The pears are the cheapest.", "F) The peaches are the cheapest.", "G) The oranges are the cheapest." ], "answer": "B" }, { "id": "logical_deduction_187", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Eve, Ana, Amy, Dan, Eli, Rob, and Mya. Mya finished above Eli. Eve finished below Rob. Amy finished second. Rob finished below Dan. Ana finished second-to-last. Dan finished fourth.", "question": "Which of the following is true?", "options": [ "A) Eve finished last.", "B) Ana finished last.", "C) Amy finished last.", "D) Dan finished last.", "E) Eli finished last.", "F) Rob finished last.", "G) Mya finished last." ], "answer": "A" }, { "id": "logical_deduction_188", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: mangoes, watermelons, peaches, kiwis, oranges, cantaloupes, and plums. The watermelons are the cheapest. The peaches are more expensive than the mangoes. The cantaloupes are the second-most expensive. The oranges are more expensive than the cantaloupes. The peaches are less expensive than the plums. The kiwis are the third-cheapest.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the second-cheapest.", "B) The watermelons are the second-cheapest.", "C) The peaches are the second-cheapest.", "D) The kiwis are the second-cheapest.", "E) The oranges are the second-cheapest.", "F) The cantaloupes are the second-cheapest.", "G) The plums are the second-cheapest." ], "answer": "A" }, { "id": "logical_deduction_189", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: an orange book, a green book, a red book, a gray book, a purple book, a blue book, and a brown book. The purple book is the fourth from the left. The brown book is the third from the left. The green book is to the left of the blue book. The red book is the leftmost. The gray book is the third from the right. The orange book is the rightmost.", "question": "Which of the following is true?", "options": [ "A) The orange book is the fourth from the left.", "B) The green book is the fourth from the left.", "C) The red book is the fourth from the left.", "D) The gray book is the fourth from the left.", "E) The purple book is the fourth from the left.", "F) The blue book is the fourth from the left.", "G) The brown book is the fourth from the left." ], "answer": "E" }, { "id": "logical_deduction_190", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Dan, Eve, Mya, Amy, Rob, Ada, and Joe. Amy finished third. Joe finished last. Mya finished above Dan. Eve finished fourth. Amy finished above Rob. Ada finished third-to-last.", "question": "Which of the following is true?", "options": [ "A) Dan finished third.", "B) Eve finished third.", "C) Mya finished third.", "D) Amy finished third.", "E) Rob finished third.", "F) Ada finished third.", "G) Joe finished third." ], "answer": "D" }, { "id": "logical_deduction_191", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: an orange book, a red book, a green book, a white book, a purple book, a brown book, and a yellow book. The green book is to the left of the purple book. The white book is to the right of the orange book. The green book is to the right of the brown book. The yellow book is to the right of the white book. The red book is to the right of the yellow book. The brown book is to the right of the red book.", "question": "Which of the following is true?", "options": [ "A) The orange book is the second from the left.", "B) The red book is the second from the left.", "C) The green book is the second from the left.", "D) The white book is the second from the left.", "E) The purple book is the second from the left.", "F) The brown book is the second from the left.", "G) The yellow book is the second from the left." ], "answer": "D" }, { "id": "logical_deduction_192", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a limousine, a truck, a sedan, a tractor, a minivan, a motorcyle, and a hatchback. The minivan is older than the tractor. The hatchback is older than the sedan. The truck is the third-newest. The hatchback is the second-newest. The tractor is older than the limousine. The motorcyle is newer than the limousine.", "question": "Which of the following is true?", "options": [ "A) The limousine is the fourth-newest.", "B) The truck is the fourth-newest.", "C) The sedan is the fourth-newest.", "D) The tractor is the fourth-newest.", "E) The minivan is the fourth-newest.", "F) The motorcyle is the fourth-newest.", "G) The hatchback is the fourth-newest." ], "answer": "F" }, { "id": "logical_deduction_193", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a limousine, a sedan, a tractor, a motorcyle, a minivan, a hatchback, and a truck. The minivan is newer than the limousine. The tractor is the second-newest. The truck is older than the sedan. The minivan is older than the truck. The hatchback is newer than the tractor. The motorcyle is the fourth-newest.", "question": "Which of the following is true?", "options": [ "A) The limousine is the second-newest.", "B) The sedan is the second-newest.", "C) The tractor is the second-newest.", "D) The motorcyle is the second-newest.", "E) The minivan is the second-newest.", "F) The hatchback is the second-newest.", "G) The truck is the second-newest." ], "answer": "C" }, { "id": "logical_deduction_194", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a black book, an orange book, a yellow book, a white book, a blue book, a red book, and a green book. The red book is to the right of the yellow book. The white book is the second from the right. The red book is to the left of the green book. The blue book is to the right of the black book. The black book is the third from the right. The orange book is the leftmost.", "question": "Which of the following is true?", "options": [ "A) The black book is the third from the left.", "B) The orange book is the third from the left.", "C) The yellow book is the third from the left.", "D) The white book is the third from the left.", "E) The blue book is the third from the left.", "F) The red book is the third from the left.", "G) The green book is the third from the left." ], "answer": "F" }, { "id": "logical_deduction_195", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a cardinal, a blue jay, a robin, a falcon, a quail, a hummingbird, and a raven. The falcon is to the right of the quail. The robin is to the right of the hummingbird. The raven is to the left of the quail. The blue jay is the second from the left. The robin is the third from the left. The cardinal is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the third from the right.", "B) The blue jay is the third from the right.", "C) The robin is the third from the right.", "D) The falcon is the third from the right.", "E) The quail is the third from the right.", "F) The hummingbird is the third from the right.", "G) The raven is the third from the right." ], "answer": "A" }, { "id": "logical_deduction_196", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: oranges, loquats, apples, kiwis, mangoes, plums, and peaches. The apples are the second-cheapest. The peaches are the cheapest. The plums are the fourth-most expensive. The loquats are the third-cheapest. The kiwis are more expensive than the mangoes. The oranges are less expensive than the mangoes.", "question": "Which of the following is true?", "options": [ "A) The oranges are the third-most expensive.", "B) The loquats are the third-most expensive.", "C) The apples are the third-most expensive.", "D) The kiwis are the third-most expensive.", "E) The mangoes are the third-most expensive.", "F) The plums are the third-most expensive.", "G) The peaches are the third-most expensive." ], "answer": "A" }, { "id": "logical_deduction_197", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Mel, Rob, Eli, Dan, Ana, Ada, and Mya. Ana finished last. Mya finished above Rob. Dan finished above Mya. Rob finished fourth. Eli finished second. Mel finished above Ada.", "question": "Which of the following is true?", "options": [ "A) Mel finished third.", "B) Rob finished third.", "C) Eli finished third.", "D) Dan finished third.", "E) Ana finished third.", "F) Ada finished third.", "G) Mya finished third." ], "answer": "G" }, { "id": "logical_deduction_198", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Eli, Ada, Mel, Eve, Rob, and Ana. Joe finished first. Mel finished second-to-last. Rob finished above Eve. Mel finished above Eli. Rob finished below Ada. Eve finished fourth.", "question": "Which of the following is true?", "options": [ "A) Joe finished fourth.", "B) Eli finished fourth.", "C) Ada finished fourth.", "D) Mel finished fourth.", "E) Eve finished fourth.", "F) Rob finished fourth.", "G) Ana finished fourth." ], "answer": "E" }, { "id": "logical_deduction_199", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a red book, a purple book, a green book, a white book, an orange book, a blue book, and a gray book. The green book is to the left of the white book. The red book is to the left of the purple book. The red book is to the right of the orange book. The gray book is the second from the left. The purple book is to the left of the green book. The blue book is the fourth from the left.", "question": "Which of the following is true?", "options": [ "A) The red book is the second from the left.", "B) The purple book is the second from the left.", "C) The green book is the second from the left.", "D) The white book is the second from the left.", "E) The orange book is the second from the left.", "F) The blue book is the second from the left.", "G) The gray book is the second from the left." ], "answer": "G" }, { "id": "logical_deduction_200", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Dan, Eve, Mya, Amy, Rob, Ada, and Joe. Amy finished third. Joe finished last. Mya finished above Dan. Eve finished fourth. Amy finished above Rob. Ada finished third-to-last.", "question": "Which of the following is true?", "options": [ "A) Dan finished third-to-last.", "B) Eve finished third-to-last.", "C) Mya finished third-to-last.", "D) Amy finished third-to-last.", "E) Rob finished third-to-last.", "F) Ada finished third-to-last.", "G) Joe finished third-to-last." ], "answer": "F" }, { "id": "logical_deduction_201", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a purple book, a brown book, a red book, a blue book, a gray book, a black book, and a green book. The brown book is to the left of the green book. The gray book is the second from the left. The black book is to the left of the gray book. The blue book is to the left of the red book. The blue book is the second from the right. The green book is to the left of the purple book.", "question": "Which of the following is true?", "options": [ "A) The purple book is the fourth from the left.", "B) The brown book is the fourth from the left.", "C) The red book is the fourth from the left.", "D) The blue book is the fourth from the left.", "E) The gray book is the fourth from the left.", "F) The black book is the fourth from the left.", "G) The green book is the fourth from the left." ], "answer": "G" }, { "id": "logical_deduction_202", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: watermelons, mangoes, kiwis, pears, cantaloupes, oranges, and peaches. The oranges are more expensive than the peaches. The cantaloupes are the fourth-most expensive. The pears are less expensive than the cantaloupes. The peaches are the second-most expensive. The mangoes are the cheapest. The kiwis are the third-cheapest.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the cheapest.", "B) The mangoes are the cheapest.", "C) The kiwis are the cheapest.", "D) The pears are the cheapest.", "E) The cantaloupes are the cheapest.", "F) The oranges are the cheapest.", "G) The peaches are the cheapest." ], "answer": "B" }, { "id": "logical_deduction_203", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Eli, Eve, Mel, Joe, Mya, Rob, and Ada. Ada finished above Mya. Eli finished below Joe. Eli finished above Eve. Ada finished second-to-last. Mel finished third. Rob finished fourth.", "question": "Which of the following is true?", "options": [ "A) Eli finished second.", "B) Eve finished second.", "C) Mel finished second.", "D) Joe finished second.", "E) Mya finished second.", "F) Rob finished second.", "G) Ada finished second." ], "answer": "A" }, { "id": "logical_deduction_204", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a quail, a raven, a hummingbird, a robin, a falcon, an owl, and a blue jay. The blue jay is to the left of the falcon. The blue jay is the second from the right. The raven is to the left of the robin. The owl is the third from the right. The hummingbird is to the left of the quail. The raven is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The quail is the fourth from the left.", "B) The raven is the fourth from the left.", "C) The hummingbird is the fourth from the left.", "D) The robin is the fourth from the left.", "E) The falcon is the fourth from the left.", "F) The owl is the fourth from the left.", "G) The blue jay is the fourth from the left." ], "answer": "D" }, { "id": "logical_deduction_205", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hawk, a crow, an owl, a raven, a falcon, a quail, and a hummingbird. The hummingbird is the second from the left. The raven is the fourth from the left. The raven is to the right of the hawk. The owl is to the right of the crow. The falcon is the rightmost. The hawk is to the right of the hummingbird. The quail is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The hawk is the second from the right.", "B) The crow is the second from the right.", "C) The owl is the second from the right.", "D) The raven is the second from the right.", "E) The falcon is the second from the right.", "F) The quail is the second from the right.", "G) The hummingbird is the second from the right." ], "answer": "F" }, { "id": "logical_deduction_206", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: loquats, peaches, watermelons, plums, kiwis, mangoes, and pears. The pears are more expensive than the kiwis. The watermelons are less expensive than the peaches. The mangoes are the third-cheapest. The watermelons are the third-most expensive. The plums are the second-most expensive. The loquats are the second-cheapest.", "question": "Which of the following is true?", "options": [ "A) The loquats are the cheapest.", "B) The peaches are the cheapest.", "C) The watermelons are the cheapest.", "D) The plums are the cheapest.", "E) The kiwis are the cheapest.", "F) The mangoes are the cheapest.", "G) The pears are the cheapest." ], "answer": "E" }, { "id": "logical_deduction_207", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Eli, Eve, Mel, Joe, Mya, Rob, and Ada. Ada finished above Mya. Eli finished below Joe. Eli finished above Eve. Ada finished second-to-last. Mel finished third. Rob finished fourth.", "question": "Which of the following is true?", "options": [ "A) Eli finished second-to-last.", "B) Eve finished second-to-last.", "C) Mel finished second-to-last.", "D) Joe finished second-to-last.", "E) Mya finished second-to-last.", "F) Rob finished second-to-last.", "G) Ada finished second-to-last." ], "answer": "G" }, { "id": "logical_deduction_208", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: watermelons, mangoes, kiwis, pears, cantaloupes, oranges, and peaches. The oranges are more expensive than the peaches. The cantaloupes are the fourth-most expensive. The pears are less expensive than the cantaloupes. The peaches are the second-most expensive. The mangoes are the cheapest. The kiwis are the third-cheapest.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the third-most expensive.", "B) The mangoes are the third-most expensive.", "C) The kiwis are the third-most expensive.", "D) The pears are the third-most expensive.", "E) The cantaloupes are the third-most expensive.", "F) The oranges are the third-most expensive.", "G) The peaches are the third-most expensive." ], "answer": "A" }, { "id": "logical_deduction_209", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hawk, a hummingbird, a falcon, a cardinal, an owl, a robin, and a blue jay. The hummingbird is to the left of the owl. The robin is the rightmost. The blue jay is to the left of the hawk. The blue jay is the third from the left. The falcon is the fourth from the left. The cardinal is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The hawk is the third from the left.", "B) The hummingbird is the third from the left.", "C) The falcon is the third from the left.", "D) The cardinal is the third from the left.", "E) The owl is the third from the left.", "F) The robin is the third from the left.", "G) The blue jay is the third from the left." ], "answer": "G" }, { "id": "logical_deduction_210", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a black book, a yellow book, a white book, a gray book, a purple book, an orange book, and a green book. The green book is to the left of the gray book. The gray book is the third from the right. The white book is the rightmost. The orange book is the second from the left. The black book is to the right of the yellow book. The black book is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The black book is the rightmost.", "B) The yellow book is the rightmost.", "C) The white book is the rightmost.", "D) The gray book is the rightmost.", "E) The purple book is the rightmost.", "F) The orange book is the rightmost.", "G) The green book is the rightmost." ], "answer": "C" }, { "id": "logical_deduction_211", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Mya, Eli, Ana, Amy, Mel, Dan, and Joe. Amy finished below Joe. Dan finished above Mya. Eli finished third. Ana finished first. Amy finished second-to-last. Mya finished fourth.", "question": "Which of the following is true?", "options": [ "A) Mya finished third-to-last.", "B) Eli finished third-to-last.", "C) Ana finished third-to-last.", "D) Amy finished third-to-last.", "E) Mel finished third-to-last.", "F) Dan finished third-to-last.", "G) Joe finished third-to-last." ], "answer": "G" }, { "id": "logical_deduction_212", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: oranges, plums, loquats, apples, kiwis, cantaloupes, and peaches. The loquats are less expensive than the kiwis. The plums are the cheapest. The loquats are the fourth-most expensive. The peaches are less expensive than the oranges. The peaches are more expensive than the kiwis. The apples are the second-cheapest.", "question": "Which of the following is true?", "options": [ "A) The oranges are the second-most expensive.", "B) The plums are the second-most expensive.", "C) The loquats are the second-most expensive.", "D) The apples are the second-most expensive.", "E) The kiwis are the second-most expensive.", "F) The cantaloupes are the second-most expensive.", "G) The peaches are the second-most expensive." ], "answer": "G" }, { "id": "logical_deduction_213", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a sedan, a truck, a bus, a station wagon, a tractor, a convertible, and a limousine. The truck is the oldest. The tractor is the newest. The sedan is older than the station wagon. The station wagon is the third-newest. The bus is older than the convertible. The sedan is newer than the convertible.", "question": "Which of the following is true?", "options": [ "A) The sedan is the third-oldest.", "B) The truck is the third-oldest.", "C) The bus is the third-oldest.", "D) The station wagon is the third-oldest.", "E) The tractor is the third-oldest.", "F) The convertible is the third-oldest.", "G) The limousine is the third-oldest." ], "answer": "F" }, { "id": "logical_deduction_214", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a cardinal, a crow, a hummingbird, a blue jay, an owl, a robin, and a quail. The cardinal is to the right of the crow. The quail is the third from the left. The owl is to the right of the robin. The hummingbird is to the right of the blue jay. The cardinal is the second from the left. The owl is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the second from the left.", "B) The crow is the second from the left.", "C) The hummingbird is the second from the left.", "D) The blue jay is the second from the left.", "E) The owl is the second from the left.", "F) The robin is the second from the left.", "G) The quail is the second from the left." ], "answer": "A" }, { "id": "logical_deduction_215", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a convertible, a truck, a tractor, a limousine, a motorcyle, a hatchback, and a sedan. The hatchback is the fourth-newest. The limousine is older than the motorcyle. The truck is newer than the motorcyle. The sedan is the second-newest. The tractor is newer than the convertible. The hatchback is older than the convertible.", "question": "Which of the following is true?", "options": [ "A) The convertible is the third-newest.", "B) The truck is the third-newest.", "C) The tractor is the third-newest.", "D) The limousine is the third-newest.", "E) The motorcyle is the third-newest.", "F) The hatchback is the third-newest.", "G) The sedan is the third-newest." ], "answer": "A" }, { "id": "logical_deduction_216", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: watermelons, mangoes, kiwis, pears, cantaloupes, oranges, and peaches. The oranges are more expensive than the peaches. The cantaloupes are the fourth-most expensive. The pears are less expensive than the cantaloupes. The peaches are the second-most expensive. The mangoes are the cheapest. The kiwis are the third-cheapest.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the second-cheapest.", "B) The mangoes are the second-cheapest.", "C) The kiwis are the second-cheapest.", "D) The pears are the second-cheapest.", "E) The cantaloupes are the second-cheapest.", "F) The oranges are the second-cheapest.", "G) The peaches are the second-cheapest." ], "answer": "D" }, { "id": "logical_deduction_217", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: loquats, peaches, watermelons, plums, kiwis, mangoes, and pears. The pears are more expensive than the kiwis. The watermelons are less expensive than the peaches. The mangoes are the third-cheapest. The watermelons are the third-most expensive. The plums are the second-most expensive. The loquats are the second-cheapest.", "question": "Which of the following is true?", "options": [ "A) The loquats are the most expensive.", "B) The peaches are the most expensive.", "C) The watermelons are the most expensive.", "D) The plums are the most expensive.", "E) The kiwis are the most expensive.", "F) The mangoes are the most expensive.", "G) The pears are the most expensive." ], "answer": "B" }, { "id": "logical_deduction_218", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a blue jay, an owl, a hawk, a falcon, a hummingbird, a robin, and a quail. The hummingbird is to the left of the falcon. The owl is the second from the left. The robin is to the left of the hummingbird. The quail is to the right of the falcon. The robin is to the right of the owl. The blue jay is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the leftmost.", "B) The owl is the leftmost.", "C) The hawk is the leftmost.", "D) The falcon is the leftmost.", "E) The hummingbird is the leftmost.", "F) The robin is the leftmost.", "G) The quail is the leftmost." ], "answer": "C" }, { "id": "logical_deduction_219", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: mangoes, cantaloupes, apples, plums, loquats, watermelons, and peaches. The plums are more expensive than the mangoes. The watermelons are more expensive than the loquats. The loquats are the second-cheapest. The plums are less expensive than the peaches. The mangoes are the fourth-most expensive. The peaches are less expensive than the cantaloupes.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the most expensive.", "B) The cantaloupes are the most expensive.", "C) The apples are the most expensive.", "D) The plums are the most expensive.", "E) The loquats are the most expensive.", "F) The watermelons are the most expensive.", "G) The peaches are the most expensive." ], "answer": "B" }, { "id": "logical_deduction_220", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a red book, a white book, a purple book, a black book, a gray book, an orange book, and a blue book. The red book is to the right of the white book. The gray book is to the left of the orange book. The gray book is to the right of the blue book. The red book is the second from the right. The black book is the fourth from the left. The orange book is to the left of the white book.", "question": "Which of the following is true?", "options": [ "A) The red book is the rightmost.", "B) The white book is the rightmost.", "C) The purple book is the rightmost.", "D) The black book is the rightmost.", "E) The gray book is the rightmost.", "F) The orange book is the rightmost.", "G) The blue book is the rightmost." ], "answer": "C" }, { "id": "logical_deduction_221", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: oranges, loquats, apples, kiwis, mangoes, plums, and peaches. The apples are the second-cheapest. The peaches are the cheapest. The plums are the fourth-most expensive. The loquats are the third-cheapest. The kiwis are more expensive than the mangoes. The oranges are less expensive than the mangoes.", "question": "Which of the following is true?", "options": [ "A) The oranges are the most expensive.", "B) The loquats are the most expensive.", "C) The apples are the most expensive.", "D) The kiwis are the most expensive.", "E) The mangoes are the most expensive.", "F) The plums are the most expensive.", "G) The peaches are the most expensive." ], "answer": "D" }, { "id": "logical_deduction_222", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a truck, a hatchback, a minivan, a bus, a tractor, a station wagon, and a convertible. The station wagon is the fourth-newest. The minivan is the third-newest. The tractor is the second-oldest. The convertible is older than the station wagon. The truck is newer than the bus. The hatchback is older than the convertible.", "question": "Which of the following is true?", "options": [ "A) The truck is the oldest.", "B) The hatchback is the oldest.", "C) The minivan is the oldest.", "D) The bus is the oldest.", "E) The tractor is the oldest.", "F) The station wagon is the oldest.", "G) The convertible is the oldest." ], "answer": "B" }, { "id": "logical_deduction_223", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hummingbird, a cardinal, a blue jay, an owl, a raven, a quail, and a robin. The hummingbird is to the left of the quail. The robin is to the left of the cardinal. The blue jay is the leftmost. The cardinal is the fourth from the left. The raven is the third from the right. The owl is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The hummingbird is the leftmost.", "B) The cardinal is the leftmost.", "C) The blue jay is the leftmost.", "D) The owl is the leftmost.", "E) The raven is the leftmost.", "F) The quail is the leftmost.", "G) The robin is the leftmost." ], "answer": "C" }, { "id": "logical_deduction_224", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a quail, a raven, a hummingbird, a robin, a falcon, an owl, and a blue jay. The blue jay is to the left of the falcon. The blue jay is the second from the right. The raven is to the left of the robin. The owl is the third from the right. The hummingbird is to the left of the quail. The raven is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The quail is the rightmost.", "B) The raven is the rightmost.", "C) The hummingbird is the rightmost.", "D) The robin is the rightmost.", "E) The falcon is the rightmost.", "F) The owl is the rightmost.", "G) The blue jay is the rightmost." ], "answer": "E" }, { "id": "logical_deduction_225", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a purple book, a brown book, a red book, a blue book, a gray book, a black book, and a green book. The brown book is to the left of the green book. The gray book is the second from the left. The black book is to the left of the gray book. The blue book is to the left of the red book. The blue book is the second from the right. The green book is to the left of the purple book.", "question": "Which of the following is true?", "options": [ "A) The purple book is the third from the right.", "B) The brown book is the third from the right.", "C) The red book is the third from the right.", "D) The blue book is the third from the right.", "E) The gray book is the third from the right.", "F) The black book is the third from the right.", "G) The green book is the third from the right." ], "answer": "A" }, { "id": "logical_deduction_226", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a green book, a brown book, a white book, a black book, an orange book, a purple book, and a yellow book. The purple book is to the left of the yellow book. The green book is to the left of the white book. The brown book is to the right of the yellow book. The white book is the fourth from the left. The green book is to the right of the orange book. The black book is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The green book is the third from the left.", "B) The brown book is the third from the left.", "C) The white book is the third from the left.", "D) The black book is the third from the left.", "E) The orange book is the third from the left.", "F) The purple book is the third from the left.", "G) The yellow book is the third from the left." ], "answer": "A" }, { "id": "logical_deduction_227", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a green book, a brown book, a white book, a black book, an orange book, a purple book, and a yellow book. The purple book is to the left of the yellow book. The green book is to the left of the white book. The brown book is to the right of the yellow book. The white book is the fourth from the left. The green book is to the right of the orange book. The black book is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The green book is the third from the right.", "B) The brown book is the third from the right.", "C) The white book is the third from the right.", "D) The black book is the third from the right.", "E) The orange book is the third from the right.", "F) The purple book is the third from the right.", "G) The yellow book is the third from the right." ], "answer": "F" }, { "id": "logical_deduction_228", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a convertible, a truck, a tractor, a limousine, a motorcyle, a hatchback, and a sedan. The hatchback is the fourth-newest. The limousine is older than the motorcyle. The truck is newer than the motorcyle. The sedan is the second-newest. The tractor is newer than the convertible. The hatchback is older than the convertible.", "question": "Which of the following is true?", "options": [ "A) The convertible is the second-oldest.", "B) The truck is the second-oldest.", "C) The tractor is the second-oldest.", "D) The limousine is the second-oldest.", "E) The motorcyle is the second-oldest.", "F) The hatchback is the second-oldest.", "G) The sedan is the second-oldest." ], "answer": "E" }, { "id": "logical_deduction_229", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: oranges, plums, loquats, apples, kiwis, cantaloupes, and peaches. The loquats are less expensive than the kiwis. The plums are the cheapest. The loquats are the fourth-most expensive. The peaches are less expensive than the oranges. The peaches are more expensive than the kiwis. The apples are the second-cheapest.", "question": "Which of the following is true?", "options": [ "A) The oranges are the third-most expensive.", "B) The plums are the third-most expensive.", "C) The loquats are the third-most expensive.", "D) The apples are the third-most expensive.", "E) The kiwis are the third-most expensive.", "F) The cantaloupes are the third-most expensive.", "G) The peaches are the third-most expensive." ], "answer": "E" }, { "id": "logical_deduction_230", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a purple book, a green book, a white book, a gray book, a red book, a black book, and a brown book. The gray book is to the left of the purple book. The white book is to the right of the brown book. The black book is the third from the right. The purple book is to the left of the white book. The white book is the second from the right. The gray book is the third from the left. The brown book is to the right of the green book.", "question": "Which of the following is true?", "options": [ "A) The purple book is the second from the right.", "B) The green book is the second from the right.", "C) The white book is the second from the right.", "D) The gray book is the second from the right.", "E) The red book is the second from the right.", "F) The black book is the second from the right.", "G) The brown book is the second from the right." ], "answer": "C" }, { "id": "logical_deduction_231", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a station wagon, a sedan, a bus, a motorcyle, a hatchback, a tractor, and a minivan. The sedan is the third-oldest. The tractor is newer than the motorcyle. The bus is older than the motorcyle. The bus is newer than the hatchback. The minivan is the newest. The station wagon is the oldest.", "question": "Which of the following is true?", "options": [ "A) The station wagon is the second-oldest.", "B) The sedan is the second-oldest.", "C) The bus is the second-oldest.", "D) The motorcyle is the second-oldest.", "E) The hatchback is the second-oldest.", "F) The tractor is the second-oldest.", "G) The minivan is the second-oldest." ], "answer": "E" }, { "id": "logical_deduction_232", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a red book, a purple book, a green book, a white book, an orange book, a blue book, and a gray book. The green book is to the left of the white book. The red book is to the left of the purple book. The red book is to the right of the orange book. The gray book is the second from the left. The purple book is to the left of the green book. The blue book is the fourth from the left.", "question": "Which of the following is true?", "options": [ "A) The red book is the rightmost.", "B) The purple book is the rightmost.", "C) The green book is the rightmost.", "D) The white book is the rightmost.", "E) The orange book is the rightmost.", "F) The blue book is the rightmost.", "G) The gray book is the rightmost." ], "answer": "D" }, { "id": "logical_deduction_233", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a robin, a hummingbird, a raven, a blue jay, a crow, a cardinal, and a quail. The hummingbird is to the left of the crow. The cardinal is to the right of the quail. The blue jay is the fourth from the left. The robin is the second from the left. The quail is to the right of the crow. The raven is to the left of the robin.", "question": "Which of the following is true?", "options": [ "A) The robin is the third from the left.", "B) The hummingbird is the third from the left.", "C) The raven is the third from the left.", "D) The blue jay is the third from the left.", "E) The crow is the third from the left.", "F) The cardinal is the third from the left.", "G) The quail is the third from the left." ], "answer": "B" }, { "id": "logical_deduction_234", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a cardinal, a crow, a hummingbird, a blue jay, an owl, a robin, and a quail. The cardinal is to the right of the crow. The quail is the third from the left. The owl is to the right of the robin. The hummingbird is to the right of the blue jay. The cardinal is the second from the left. The owl is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the third from the right.", "B) The crow is the third from the right.", "C) The hummingbird is the third from the right.", "D) The blue jay is the third from the right.", "E) The owl is the third from the right.", "F) The robin is the third from the right.", "G) The quail is the third from the right." ], "answer": "E" }, { "id": "logical_deduction_235", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hawk, a raven, a falcon, a crow, a hummingbird, a robin, and a cardinal. The hawk is the second from the right. The robin is to the left of the raven. The raven is to the left of the crow. The falcon is to the left of the cardinal. The hummingbird is the second from the left. The falcon is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The hawk is the second from the right.", "B) The raven is the second from the right.", "C) The falcon is the second from the right.", "D) The crow is the second from the right.", "E) The hummingbird is the second from the right.", "F) The robin is the second from the right.", "G) The cardinal is the second from the right." ], "answer": "A" }, { "id": "logical_deduction_236", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Mya, Eli, Ana, Amy, Mel, Dan, and Joe. Amy finished below Joe. Dan finished above Mya. Eli finished third. Ana finished first. Amy finished second-to-last. Mya finished fourth.", "question": "Which of the following is true?", "options": [ "A) Mya finished second.", "B) Eli finished second.", "C) Ana finished second.", "D) Amy finished second.", "E) Mel finished second.", "F) Dan finished second.", "G) Joe finished second." ], "answer": "F" }, { "id": "logical_deduction_237", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a red book, a white book, a purple book, a black book, a gray book, an orange book, and a blue book. The red book is to the right of the white book. The gray book is to the left of the orange book. The gray book is to the right of the blue book. The red book is the second from the right. The black book is the fourth from the left. The orange book is to the left of the white book.", "question": "Which of the following is true?", "options": [ "A) The red book is the third from the right.", "B) The white book is the third from the right.", "C) The purple book is the third from the right.", "D) The black book is the third from the right.", "E) The gray book is the third from the right.", "F) The orange book is the third from the right.", "G) The blue book is the third from the right." ], "answer": "B" }, { "id": "logical_deduction_238", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a brown book, a white book, a black book, a yellow book, an orange book, a blue book, and a green book. The yellow book is the rightmost. The blue book is to the left of the orange book. The green book is to the right of the white book. The blue book is to the right of the green book. The black book is the fourth from the left. The brown book is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The brown book is the third from the left.", "B) The white book is the third from the left.", "C) The black book is the third from the left.", "D) The yellow book is the third from the left.", "E) The orange book is the third from the left.", "F) The blue book is the third from the left.", "G) The green book is the third from the left." ], "answer": "F" }, { "id": "logical_deduction_239", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: cantaloupes, plums, mangoes, apples, loquats, pears, and peaches. The apples are less expensive than the cantaloupes. The apples are more expensive than the peaches. The mangoes are the fourth-most expensive. The peaches are more expensive than the plums. The pears are the third-most expensive. The loquats are the third-cheapest.", "question": "Which of the following is true?", "options": [ "A) The cantaloupes are the fourth-most expensive.", "B) The plums are the fourth-most expensive.", "C) The mangoes are the fourth-most expensive.", "D) The apples are the fourth-most expensive.", "E) The loquats are the fourth-most expensive.", "F) The pears are the fourth-most expensive.", "G) The peaches are the fourth-most expensive." ], "answer": "C" }, { "id": "logical_deduction_240", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a hummingbird, an owl, and a falcon. The falcon is to the right of the owl. The hummingbird is to the left of the owl.", "question": "Which of the following is true?", "options": [ "A) The hummingbird is the second from the left.", "B) The owl is the second from the left.", "C) The falcon is the second from the left." ], "answer": "B" }, { "id": "logical_deduction_241", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a gray book, a purple book, and a red book. The purple book is to the left of the red book. The gray book is to the left of the purple book.", "question": "Which of the following is true?", "options": [ "A) The gray book is the second from the left.", "B) The purple book is the second from the left.", "C) The red book is the second from the left." ], "answer": "B" }, { "id": "logical_deduction_242", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a minivan, a bus, and a sedan. The minivan is newer than the sedan. The minivan is older than the bus.", "question": "Which of the following is true?", "options": [ "A) The minivan is the oldest.", "B) The bus is the oldest.", "C) The sedan is the oldest." ], "answer": "C" }, { "id": "logical_deduction_243", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a red book, a gray book, and a white book. The white book is to the left of the gray book. The red book is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The red book is the rightmost.", "B) The gray book is the rightmost.", "C) The white book is the rightmost." ], "answer": "B" }, { "id": "logical_deduction_244", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a tractor, a convertible, and a minivan. The tractor is the second-newest. The minivan is newer than the convertible.", "question": "Which of the following is true?", "options": [ "A) The tractor is the oldest.", "B) The convertible is the oldest.", "C) The minivan is the oldest." ], "answer": "B" }, { "id": "logical_deduction_245", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: an orange book, a yellow book, and a blue book. The blue book is to the right of the yellow book. The orange book is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The orange book is the rightmost.", "B) The yellow book is the rightmost.", "C) The blue book is the rightmost." ], "answer": "C" }, { "id": "logical_deduction_246", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: an owl, a crow, and a cardinal. The crow is to the left of the owl. The owl is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The owl is the rightmost.", "B) The crow is the rightmost.", "C) The cardinal is the rightmost." ], "answer": "C" }, { "id": "logical_deduction_247", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a truck, a minivan, and a tractor. The truck is newer than the minivan. The minivan is newer than the tractor.", "question": "Which of the following is true?", "options": [ "A) The truck is the oldest.", "B) The minivan is the oldest.", "C) The tractor is the oldest." ], "answer": "C" }, { "id": "logical_deduction_248", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a red book, a gray book, and a white book. The white book is to the left of the gray book. The red book is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The red book is the second from the left.", "B) The gray book is the second from the left.", "C) The white book is the second from the left." ], "answer": "A" }, { "id": "logical_deduction_249", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Ana, Rob, and Joe. Joe finished above Ana. Rob finished above Joe.", "question": "Which of the following is true?", "options": [ "A) Ana finished second.", "B) Rob finished second.", "C) Joe finished second." ], "answer": "C" }, { "id": "logical_deduction_250", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a white book, a black book, and a purple book. The black book is to the left of the purple book. The purple book is to the left of the white book.", "question": "Which of the following is true?", "options": [ "A) The white book is the rightmost.", "B) The black book is the rightmost.", "C) The purple book is the rightmost." ], "answer": "A" }, { "id": "logical_deduction_251", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a purple book, a white book, and a blue book. The purple book is to the left of the blue book. The purple book is to the right of the white book.", "question": "Which of the following is true?", "options": [ "A) The purple book is the rightmost.", "B) The white book is the rightmost.", "C) The blue book is the rightmost." ], "answer": "C" }, { "id": "logical_deduction_252", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a bus, a sedan, and a truck. The truck is older than the bus. The bus is older than the sedan.", "question": "Which of the following is true?", "options": [ "A) The bus is the newest.", "B) The sedan is the newest.", "C) The truck is the newest." ], "answer": "B" }, { "id": "logical_deduction_253", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: cantaloupes, watermelons, and mangoes. The mangoes are the cheapest. The cantaloupes are the second-most expensive.", "question": "Which of the following is true?", "options": [ "A) The cantaloupes are the second-most expensive.", "B) The watermelons are the second-most expensive.", "C) The mangoes are the second-most expensive." ], "answer": "A" }, { "id": "logical_deduction_254", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Ana, Dan, and Mel. Dan finished second. Mel finished first.", "question": "Which of the following is true?", "options": [ "A) Ana finished first.", "B) Dan finished first.", "C) Mel finished first." ], "answer": "C" }, { "id": "logical_deduction_255", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a hatchback, a limousine, and a station wagon. The station wagon is older than the hatchback. The hatchback is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The hatchback is the oldest.", "B) The limousine is the oldest.", "C) The station wagon is the oldest." ], "answer": "C" }, { "id": "logical_deduction_256", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Amy, Ana, and Joe. Amy finished below Ana. Ana finished below Joe.", "question": "Which of the following is true?", "options": [ "A) Amy finished first.", "B) Ana finished first.", "C) Joe finished first." ], "answer": "C" }, { "id": "logical_deduction_257", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a yellow book, a green book, and a red book. The red book is to the left of the green book. The yellow book is to the left of the red book.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the second from the left.", "B) The green book is the second from the left.", "C) The red book is the second from the left." ], "answer": "C" }, { "id": "logical_deduction_258", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a tractor, a truck, and a minivan. The minivan is newer than the truck. The tractor is older than the truck.", "question": "Which of the following is true?", "options": [ "A) The tractor is the second-newest.", "B) The truck is the second-newest.", "C) The minivan is the second-newest." ], "answer": "B" }, { "id": "logical_deduction_259", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a cardinal, a hawk, and a hummingbird. The hummingbird is to the right of the hawk. The cardinal is to the left of the hawk.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the leftmost.", "B) The hawk is the leftmost.", "C) The hummingbird is the leftmost." ], "answer": "A" }, { "id": "logical_deduction_260", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a tractor, a station wagon, and a limousine. The tractor is newer than the limousine. The station wagon is the newest.", "question": "Which of the following is true?", "options": [ "A) The tractor is the second-newest.", "B) The station wagon is the second-newest.", "C) The limousine is the second-newest." ], "answer": "A" }, { "id": "logical_deduction_261", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a purple book, a black book, and a blue book. The purple book is to the right of the blue book. The black book is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The purple book is the second from the left.", "B) The black book is the second from the left.", "C) The blue book is the second from the left." ], "answer": "B" }, { "id": "logical_deduction_262", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Dan, Mel, and Amy. Dan finished above Amy. Amy finished above Mel.", "question": "Which of the following is true?", "options": [ "A) Dan finished first.", "B) Mel finished first.", "C) Amy finished first." ], "answer": "A" }, { "id": "logical_deduction_263", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Ana, Rob, and Joe. Joe finished above Ana. Rob finished second.", "question": "Which of the following is true?", "options": [ "A) Ana finished last.", "B) Rob finished last.", "C) Joe finished last." ], "answer": "A" }, { "id": "logical_deduction_264", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a hatchback, a limousine, and a station wagon. The station wagon is older than the hatchback. The hatchback is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The hatchback is the newest.", "B) The limousine is the newest.", "C) The station wagon is the newest." ], "answer": "B" }, { "id": "logical_deduction_265", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a brown book, a yellow book, and an orange book. The yellow book is the leftmost. The orange book is to the right of the brown book.", "question": "Which of the following is true?", "options": [ "A) The brown book is the second from the left.", "B) The yellow book is the second from the left.", "C) The orange book is the second from the left." ], "answer": "A" }, { "id": "logical_deduction_266", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a tractor, a truck, and a minivan. The minivan is newer than the truck. The tractor is older than the truck.", "question": "Which of the following is true?", "options": [ "A) The tractor is the oldest.", "B) The truck is the oldest.", "C) The minivan is the oldest." ], "answer": "A" }, { "id": "logical_deduction_267", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: kiwis, oranges, and watermelons. The oranges are more expensive than the kiwis. The oranges are less expensive than the watermelons.", "question": "Which of the following is true?", "options": [ "A) The kiwis are the cheapest.", "B) The oranges are the cheapest.", "C) The watermelons are the cheapest." ], "answer": "A" }, { "id": "logical_deduction_268", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: mangoes, watermelons, and kiwis. The watermelons are less expensive than the kiwis. The kiwis are the second-most expensive.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the cheapest.", "B) The watermelons are the cheapest.", "C) The kiwis are the cheapest." ], "answer": "B" }, { "id": "logical_deduction_269", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Mel, Ada, and Ana. Mel finished last. Ana finished second.", "question": "Which of the following is true?", "options": [ "A) Mel finished second.", "B) Ada finished second.", "C) Ana finished second." ], "answer": "C" }, { "id": "logical_deduction_270", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a crow, a falcon, and a hummingbird. The crow is to the left of the falcon. The hummingbird is to the left of the crow.", "question": "Which of the following is true?", "options": [ "A) The crow is the rightmost.", "B) The falcon is the rightmost.", "C) The hummingbird is the rightmost." ], "answer": "B" }, { "id": "logical_deduction_271", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a crow, a falcon, and a raven. The crow is to the left of the raven. The falcon is to the right of the raven.", "question": "Which of the following is true?", "options": [ "A) The crow is the second from the left.", "B) The falcon is the second from the left.", "C) The raven is the second from the left." ], "answer": "C" }, { "id": "logical_deduction_272", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: apples, peaches, and loquats. The loquats are less expensive than the apples. The peaches are more expensive than the apples.", "question": "Which of the following is true?", "options": [ "A) The apples are the second-most expensive.", "B) The peaches are the second-most expensive.", "C) The loquats are the second-most expensive." ], "answer": "A" }, { "id": "logical_deduction_273", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Ana, Rob, and Joe. Joe finished above Ana. Rob finished second.", "question": "Which of the following is true?", "options": [ "A) Ana finished first.", "B) Rob finished first.", "C) Joe finished first." ], "answer": "C" }, { "id": "logical_deduction_274", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: peaches, pears, and mangoes. The mangoes are less expensive than the pears. The peaches are the cheapest.", "question": "Which of the following is true?", "options": [ "A) The peaches are the cheapest.", "B) The pears are the cheapest.", "C) The mangoes are the cheapest." ], "answer": "A" }, { "id": "logical_deduction_275", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a blue jay, a falcon, and a raven. The falcon is to the left of the blue jay. The falcon is to the right of the raven.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the leftmost.", "B) The falcon is the leftmost.", "C) The raven is the leftmost." ], "answer": "C" }, { "id": "logical_deduction_276", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a purple book, a red book, and a yellow book. The purple book is to the right of the yellow book. The yellow book is to the right of the red book.", "question": "Which of the following is true?", "options": [ "A) The purple book is the leftmost.", "B) The red book is the leftmost.", "C) The yellow book is the leftmost." ], "answer": "B" }, { "id": "logical_deduction_277", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Eve, Amy, and Rob. Amy finished above Rob. Eve finished above Amy.", "question": "Which of the following is true?", "options": [ "A) Eve finished second.", "B) Amy finished second.", "C) Rob finished second." ], "answer": "B" }, { "id": "logical_deduction_278", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a convertible, a tractor, and a hatchback. The hatchback is older than the convertible. The tractor is the newest.", "question": "Which of the following is true?", "options": [ "A) The convertible is the second-newest.", "B) The tractor is the second-newest.", "C) The hatchback is the second-newest." ], "answer": "A" }, { "id": "logical_deduction_279", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a blue jay, a cardinal, and a quail. The cardinal is to the right of the quail. The quail is to the right of the blue jay.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the second from the left.", "B) The cardinal is the second from the left.", "C) The quail is the second from the left." ], "answer": "C" }, { "id": "logical_deduction_280", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a sedan, a minivan, and a motorcyle. The motorcyle is the second-newest. The minivan is newer than the motorcyle.", "question": "Which of the following is true?", "options": [ "A) The sedan is the second-newest.", "B) The minivan is the second-newest.", "C) The motorcyle is the second-newest." ], "answer": "C" }, { "id": "logical_deduction_281", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: mangoes, watermelons, and kiwis. The watermelons are less expensive than the kiwis. The kiwis are the second-most expensive.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the second-most expensive.", "B) The watermelons are the second-most expensive.", "C) The kiwis are the second-most expensive." ], "answer": "C" }, { "id": "logical_deduction_282", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a quail, an owl, and a hummingbird. The quail is to the left of the owl. The owl is to the left of the hummingbird.", "question": "Which of the following is true?", "options": [ "A) The quail is the rightmost.", "B) The owl is the rightmost.", "C) The hummingbird is the rightmost." ], "answer": "C" }, { "id": "logical_deduction_283", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a white book, a green book, and an orange book. The green book is to the right of the white book. The orange book is the rightmost.", "question": "Which of the following is true?", "options": [ "A) The white book is the second from the left.", "B) The green book is the second from the left.", "C) The orange book is the second from the left." ], "answer": "B" }, { "id": "logical_deduction_284", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: cantaloupes, apples, and loquats. The loquats are more expensive than the apples. The cantaloupes are less expensive than the apples.", "question": "Which of the following is true?", "options": [ "A) The cantaloupes are the most expensive.", "B) The apples are the most expensive.", "C) The loquats are the most expensive." ], "answer": "C" }, { "id": "logical_deduction_285", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a falcon, an owl, and a raven. The raven is to the left of the owl. The falcon is the leftmost.", "question": "Which of the following is true?", "options": [ "A) The falcon is the rightmost.", "B) The owl is the rightmost.", "C) The raven is the rightmost." ], "answer": "B" }, { "id": "logical_deduction_286", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a blue jay, a cardinal, and a quail. The cardinal is to the right of the quail. The quail is to the right of the blue jay.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the leftmost.", "B) The cardinal is the leftmost.", "C) The quail is the leftmost." ], "answer": "A" }, { "id": "logical_deduction_287", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a gray book, an orange book, and a brown book. The orange book is the leftmost. The gray book is to the right of the brown book.", "question": "Which of the following is true?", "options": [ "A) The gray book is the rightmost.", "B) The orange book is the rightmost.", "C) The brown book is the rightmost." ], "answer": "A" }, { "id": "logical_deduction_288", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a purple book, a white book, and a blue book. The purple book is to the left of the blue book. The purple book is to the right of the white book.", "question": "Which of the following is true?", "options": [ "A) The purple book is the leftmost.", "B) The white book is the leftmost.", "C) The blue book is the leftmost." ], "answer": "B" }, { "id": "logical_deduction_289", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a purple book, a white book, and a blue book. The purple book is to the left of the blue book. The purple book is to the right of the white book.", "question": "Which of the following is true?", "options": [ "A) The purple book is the second from the left.", "B) The white book is the second from the left.", "C) The blue book is the second from the left." ], "answer": "A" }, { "id": "logical_deduction_290", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a tractor, a convertible, and a minivan. The tractor is the second-newest. The minivan is newer than the convertible.", "question": "Which of the following is true?", "options": [ "A) The tractor is the newest.", "B) The convertible is the newest.", "C) The minivan is the newest." ], "answer": "C" }, { "id": "logical_deduction_291", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a blue book, an orange book, and a green book. The green book is the leftmost. The orange book is to the left of the blue book.", "question": "Which of the following is true?", "options": [ "A) The blue book is the rightmost.", "B) The orange book is the rightmost.", "C) The green book is the rightmost." ], "answer": "A" }, { "id": "logical_deduction_292", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: apples, pears, and loquats. The pears are more expensive than the loquats. The pears are less expensive than the apples.", "question": "Which of the following is true?", "options": [ "A) The apples are the most expensive.", "B) The pears are the most expensive.", "C) The loquats are the most expensive." ], "answer": "A" }, { "id": "logical_deduction_293", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: an orange book, a white book, and a purple book. The orange book is to the left of the white book. The purple book is the rightmost.", "question": "Which of the following is true?", "options": [ "A) The orange book is the second from the left.", "B) The white book is the second from the left.", "C) The purple book is the second from the left." ], "answer": "B" }, { "id": "logical_deduction_294", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a raven, a quail, and a crow. The quail is the leftmost. The raven is the rightmost.", "question": "Which of the following is true?", "options": [ "A) The raven is the rightmost.", "B) The quail is the rightmost.", "C) The crow is the rightmost." ], "answer": "A" }, { "id": "logical_deduction_295", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a hawk, a crow, and a raven. The raven is to the right of the hawk. The crow is the rightmost.", "question": "Which of the following is true?", "options": [ "A) The hawk is the leftmost.", "B) The crow is the leftmost.", "C) The raven is the leftmost." ], "answer": "A" }, { "id": "logical_deduction_296", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Amy, Dan, and Mel. Mel finished above Amy. Dan finished below Amy.", "question": "Which of the following is true?", "options": [ "A) Amy finished last.", "B) Dan finished last.", "C) Mel finished last." ], "answer": "B" }, { "id": "logical_deduction_297", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Amy, Eli, and Eve. Eve finished above Amy. Eli finished below Amy.", "question": "Which of the following is true?", "options": [ "A) Amy finished last.", "B) Eli finished last.", "C) Eve finished last." ], "answer": "B" }, { "id": "logical_deduction_298", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a white book, a green book, and an orange book. The green book is to the right of the white book. The orange book is the rightmost.", "question": "Which of the following is true?", "options": [ "A) The white book is the leftmost.", "B) The green book is the leftmost.", "C) The orange book is the leftmost." ], "answer": "A" }, { "id": "logical_deduction_299", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a red book, a gray book, and a white book. The white book is to the left of the gray book. The red book is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The red book is the leftmost.", "B) The gray book is the leftmost.", "C) The white book is the leftmost." ], "answer": "C" } ] ================================================ FILE: data/LogicalDeduction/train.json ================================================ [ { "id": "logical_deduction_0", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a quail, an owl, a raven, a falcon, and a robin. The owl is the leftmost. The robin is to the left of the raven. The quail is the rightmost. The raven is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The quail is the rightmost.", "B) The owl is the rightmost.", "C) The raven is the rightmost.", "D) The falcon is the rightmost.", "E) The robin is the rightmost." ], "answer": "A" }, { "id": "logical_deduction_1", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a hatchback, a bus, a convertible, a tractor, and a minivan. The tractor is older than the bus. The minivan is newer than the bus. The hatchback is the second-newest. The minivan is older than the convertible.", "question": "Which of the following is true?", "options": [ "A) The hatchback is the second-oldest.", "B) The bus is the second-oldest.", "C) The convertible is the second-oldest.", "D) The tractor is the second-oldest.", "E) The minivan is the second-oldest." ], "answer": "B" }, { "id": "logical_deduction_2", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a yellow book, a green book, a gray book, a blue book, and an orange book. The gray book is to the left of the green book. The gray book is the second from the right. The yellow book is to the right of the orange book. The blue book is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the leftmost.", "B) The green book is the leftmost.", "C) The gray book is the leftmost.", "D) The blue book is the leftmost.", "E) The orange book is the leftmost." ], "answer": "E" }, { "id": "logical_deduction_3", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a raven, an owl, a cardinal, a hummingbird, and a robin. The cardinal is the rightmost. The raven is to the left of the owl. The robin is to the right of the hummingbird. The hummingbird is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The raven is the second from the left.", "B) The owl is the second from the left.", "C) The cardinal is the second from the left.", "D) The hummingbird is the second from the left.", "E) The robin is the second from the left." ], "answer": "B" }, { "id": "logical_deduction_4", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a green book, an orange book, a gray book, a yellow book, and a purple book. The green book is the rightmost. The gray book is to the right of the orange book. The purple book is to the left of the yellow book. The purple book is to the right of the gray book.", "question": "Which of the following is true?", "options": [ "A) The green book is the second from the right.", "B) The orange book is the second from the right.", "C) The gray book is the second from the right.", "D) The yellow book is the second from the right.", "E) The purple book is the second from the right." ], "answer": "D" }, { "id": "logical_deduction_5", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a white book, a green book, a brown book, a gray book, and an orange book. The gray book is to the right of the orange book. The green book is the second from the right. The brown book is to the right of the white book. The brown book is to the left of the orange book.", "question": "Which of the following is true?", "options": [ "A) The white book is the third from the left.", "B) The green book is the third from the left.", "C) The brown book is the third from the left.", "D) The gray book is the third from the left.", "E) The orange book is the third from the left." ], "answer": "E" }, { "id": "logical_deduction_6", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a convertible, a bus, a minivan, a truck, and a sedan. The convertible is newer than the truck. The minivan is the newest. The bus is the third-newest. The truck is newer than the sedan.", "question": "Which of the following is true?", "options": [ "A) The convertible is the newest.", "B) The bus is the newest.", "C) The minivan is the newest.", "D) The truck is the newest.", "E) The sedan is the newest." ], "answer": "C" }, { "id": "logical_deduction_7", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Rob, Ada, Dan, Joe, and Mel. Ada finished above Mel. Mel finished above Dan. Joe finished below Dan. Ada finished second.", "question": "Which of the following is true?", "options": [ "A) Rob finished last.", "B) Ada finished last.", "C) Dan finished last.", "D) Joe finished last.", "E) Mel finished last." ], "answer": "D" }, { "id": "logical_deduction_8", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a white book, a green book, a brown book, a gray book, and an orange book. The gray book is to the right of the orange book. The green book is the second from the right. The brown book is to the right of the white book. The brown book is to the left of the orange book.", "question": "Which of the following is true?", "options": [ "A) The white book is the rightmost.", "B) The green book is the rightmost.", "C) The brown book is the rightmost.", "D) The gray book is the rightmost.", "E) The orange book is the rightmost." ], "answer": "D" }, { "id": "logical_deduction_9", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a convertible, a sedan, a tractor, a minivan, and a limousine. The tractor is newer than the minivan. The tractor is older than the limousine. The convertible is older than the sedan. The convertible is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The convertible is the second-oldest.", "B) The sedan is the second-oldest.", "C) The tractor is the second-oldest.", "D) The minivan is the second-oldest.", "E) The limousine is the second-oldest." ], "answer": "C" }, { "id": "logical_deduction_10", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: kiwis, pears, peaches, loquats, and apples. The loquats are more expensive than the kiwis. The pears are more expensive than the peaches. The apples are more expensive than the loquats. The apples are less expensive than the peaches.", "question": "Which of the following is true?", "options": [ "A) The kiwis are the second-cheapest.", "B) The pears are the second-cheapest.", "C) The peaches are the second-cheapest.", "D) The loquats are the second-cheapest.", "E) The apples are the second-cheapest." ], "answer": "D" }, { "id": "logical_deduction_11", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: oranges, cantaloupes, peaches, loquats, and kiwis. The peaches are more expensive than the oranges. The cantaloupes are more expensive than the peaches. The kiwis are the third-most expensive. The loquats are the second-cheapest.", "question": "Which of the following is true?", "options": [ "A) The oranges are the most expensive.", "B) The cantaloupes are the most expensive.", "C) The peaches are the most expensive.", "D) The loquats are the most expensive.", "E) The kiwis are the most expensive." ], "answer": "B" }, { "id": "logical_deduction_12", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a brown book, a yellow book, an orange book, a green book, and a gray book. The green book is to the left of the gray book. The brown book is the third from the left. The gray book is the second from the right. The yellow book is to the left of the green book.", "question": "Which of the following is true?", "options": [ "A) The brown book is the third from the left.", "B) The yellow book is the third from the left.", "C) The orange book is the third from the left.", "D) The green book is the third from the left.", "E) The gray book is the third from the left." ], "answer": "A" }, { "id": "logical_deduction_13", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Ada, Eli, Amy, Joe, and Mel. Ada finished above Eli. Amy finished below Mel. Ada finished second. Mel finished below Eli.", "question": "Which of the following is true?", "options": [ "A) Ada finished first.", "B) Eli finished first.", "C) Amy finished first.", "D) Joe finished first.", "E) Mel finished first." ], "answer": "D" }, { "id": "logical_deduction_14", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: watermelons, oranges, loquats, plums, and kiwis. The plums are less expensive than the kiwis. The plums are more expensive than the watermelons. The loquats are more expensive than the kiwis. The oranges are the most expensive.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the cheapest.", "B) The oranges are the cheapest.", "C) The loquats are the cheapest.", "D) The plums are the cheapest.", "E) The kiwis are the cheapest." ], "answer": "A" }, { "id": "logical_deduction_15", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a yellow book, a gray book, a red book, a black book, and a white book. The gray book is to the left of the yellow book. The white book is to the left of the red book. The black book is to the right of the red book. The black book is to the left of the gray book.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the rightmost.", "B) The gray book is the rightmost.", "C) The red book is the rightmost.", "D) The black book is the rightmost.", "E) The white book is the rightmost." ], "answer": "A" }, { "id": "logical_deduction_16", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a hatchback, a convertible, a tractor, a truck, and a limousine. The tractor is newer than the hatchback. The limousine is the second-newest. The truck is older than the hatchback. The convertible is the second-oldest.", "question": "Which of the following is true?", "options": [ "A) The hatchback is the second-oldest.", "B) The convertible is the second-oldest.", "C) The tractor is the second-oldest.", "D) The truck is the second-oldest.", "E) The limousine is the second-oldest." ], "answer": "B" }, { "id": "logical_deduction_17", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a quail, an owl, a raven, a falcon, and a robin. The owl is the leftmost. The robin is to the left of the raven. The quail is the rightmost. The raven is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The quail is the second from the right.", "B) The owl is the second from the right.", "C) The raven is the second from the right.", "D) The falcon is the second from the right.", "E) The robin is the second from the right." ], "answer": "D" }, { "id": "logical_deduction_18", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Mel, Dan, Amy, Joe, and Eve. Amy finished below Dan. Mel finished first. Joe finished above Dan. Eve finished last.", "question": "Which of the following is true?", "options": [ "A) Mel finished first.", "B) Dan finished first.", "C) Amy finished first.", "D) Joe finished first.", "E) Eve finished first." ], "answer": "A" }, { "id": "logical_deduction_19", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Rob, Amy, Joe, Eve, and Dan. Rob finished below Dan. Joe finished second. Joe finished above Eve. Eve finished above Dan.", "question": "Which of the following is true?", "options": [ "A) Rob finished second.", "B) Amy finished second.", "C) Joe finished second.", "D) Eve finished second.", "E) Dan finished second." ], "answer": "C" }, { "id": "logical_deduction_20", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: watermelons, apples, mangoes, pears, and cantaloupes. The watermelons are more expensive than the cantaloupes. The mangoes are less expensive than the pears. The apples are the second-cheapest. The watermelons are less expensive than the mangoes.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the second-cheapest.", "B) The apples are the second-cheapest.", "C) The mangoes are the second-cheapest.", "D) The pears are the second-cheapest.", "E) The cantaloupes are the second-cheapest." ], "answer": "B" }, { "id": "logical_deduction_21", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a truck, a station wagon, a motorcyle, a convertible, and a hatchback. The convertible is newer than the truck. The station wagon is newer than the hatchback. The convertible is older than the hatchback. The station wagon is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The truck is the newest.", "B) The station wagon is the newest.", "C) The motorcyle is the newest.", "D) The convertible is the newest.", "E) The hatchback is the newest." ], "answer": "C" }, { "id": "logical_deduction_22", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Ana, Rob, Amy, Dan, and Joe. Rob finished below Dan. Joe finished below Ana. Joe finished above Amy. Dan finished below Amy.", "question": "Which of the following is true?", "options": [ "A) Ana finished last.", "B) Rob finished last.", "C) Amy finished last.", "D) Dan finished last.", "E) Joe finished last." ], "answer": "B" }, { "id": "logical_deduction_23", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a bus, a truck, a motorcyle, a sedan, and a hatchback. The sedan is the second-oldest. The hatchback is newer than the motorcyle. The motorcyle is newer than the sedan. The hatchback is older than the truck.", "question": "Which of the following is true?", "options": [ "A) The bus is the oldest.", "B) The truck is the oldest.", "C) The motorcyle is the oldest.", "D) The sedan is the oldest.", "E) The hatchback is the oldest." ], "answer": "A" }, { "id": "logical_deduction_24", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a yellow book, a brown book, a gray book, a black book, and a purple book. The yellow book is to the right of the purple book. The black book is to the left of the purple book. The black book is the third from the left. The brown book is the leftmost.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the third from the left.", "B) The brown book is the third from the left.", "C) The gray book is the third from the left.", "D) The black book is the third from the left.", "E) The purple book is the third from the left." ], "answer": "D" }, { "id": "logical_deduction_25", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: watermelons, loquats, pears, plums, and apples. The pears are the second-cheapest. The loquats are more expensive than the pears. The plums are the second-most expensive. The watermelons are the most expensive.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the third-most expensive.", "B) The loquats are the third-most expensive.", "C) The pears are the third-most expensive.", "D) The plums are the third-most expensive.", "E) The apples are the third-most expensive." ], "answer": "B" }, { "id": "logical_deduction_26", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Amy, Mel, Rob, Joe, and Ada. Joe finished second. Joe finished below Amy. Mel finished second-to-last. Ada finished last.", "question": "Which of the following is true?", "options": [ "A) Amy finished last.", "B) Mel finished last.", "C) Rob finished last.", "D) Joe finished last.", "E) Ada finished last." ], "answer": "E" }, { "id": "logical_deduction_27", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Joe, Eve, Mya, Rob, and Dan. Joe finished below Dan. Mya finished first. Dan finished below Rob. Eve finished above Rob.", "question": "Which of the following is true?", "options": [ "A) Joe finished second-to-last.", "B) Eve finished second-to-last.", "C) Mya finished second-to-last.", "D) Rob finished second-to-last.", "E) Dan finished second-to-last." ], "answer": "E" }, { "id": "logical_deduction_28", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Amy, Mel, Rob, Joe, and Ada. Joe finished second. Joe finished below Amy. Mel finished second-to-last. Ada finished last.", "question": "Which of the following is true?", "options": [ "A) Amy finished first.", "B) Mel finished first.", "C) Rob finished first.", "D) Joe finished first.", "E) Ada finished first." ], "answer": "A" }, { "id": "logical_deduction_29", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Mel, Dan, Amy, Joe, and Eve. Amy finished below Dan. Mel finished first. Joe finished above Dan. Eve finished last.", "question": "Which of the following is true?", "options": [ "A) Mel finished second.", "B) Dan finished second.", "C) Amy finished second.", "D) Joe finished second.", "E) Eve finished second." ], "answer": "D" }, { "id": "logical_deduction_30", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a quail, a hummingbird, a blue jay, a hawk, and a robin. The robin is the second from the left. The quail is the leftmost. The blue jay is to the left of the hummingbird. The hawk is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The quail is the rightmost.", "B) The hummingbird is the rightmost.", "C) The blue jay is the rightmost.", "D) The hawk is the rightmost.", "E) The robin is the rightmost." ], "answer": "B" }, { "id": "logical_deduction_31", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a quail, an owl, a raven, a falcon, and a robin. The owl is the leftmost. The robin is to the left of the raven. The quail is the rightmost. The raven is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The quail is the third from the left.", "B) The owl is the third from the left.", "C) The raven is the third from the left.", "D) The falcon is the third from the left.", "E) The robin is the third from the left." ], "answer": "C" }, { "id": "logical_deduction_32", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Dan, Mel, Ana, Eli, and Rob. Rob finished above Mel. Mel finished second. Ana finished above Eli. Dan finished last.", "question": "Which of the following is true?", "options": [ "A) Dan finished second-to-last.", "B) Mel finished second-to-last.", "C) Ana finished second-to-last.", "D) Eli finished second-to-last.", "E) Rob finished second-to-last." ], "answer": "D" }, { "id": "logical_deduction_33", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a gray book, a red book, a yellow book, a blue book, and an orange book. The gray book is to the right of the yellow book. The orange book is to the right of the red book. The blue book is the rightmost. The gray book is to the left of the red book.", "question": "Which of the following is true?", "options": [ "A) The gray book is the second from the left.", "B) The red book is the second from the left.", "C) The yellow book is the second from the left.", "D) The blue book is the second from the left.", "E) The orange book is the second from the left." ], "answer": "A" }, { "id": "logical_deduction_34", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Eve, Eli, Joe, Rob, and Mya. Rob finished above Mya. Eve finished first. Joe finished above Eli. Joe finished below Mya.", "question": "Which of the following is true?", "options": [ "A) Eve finished second-to-last.", "B) Eli finished second-to-last.", "C) Joe finished second-to-last.", "D) Rob finished second-to-last.", "E) Mya finished second-to-last." ], "answer": "C" }, { "id": "logical_deduction_35", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a green book, a blue book, a brown book, a gray book, and a red book. The green book is to the left of the brown book. The gray book is to the left of the blue book. The green book is to the right of the blue book. The red book is the leftmost.", "question": "Which of the following is true?", "options": [ "A) The green book is the second from the left.", "B) The blue book is the second from the left.", "C) The brown book is the second from the left.", "D) The gray book is the second from the left.", "E) The red book is the second from the left." ], "answer": "D" }, { "id": "logical_deduction_36", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: pears, mangoes, kiwis, oranges, and peaches. The peaches are more expensive than the mangoes. The oranges are more expensive than the kiwis. The pears are the most expensive. The mangoes are more expensive than the oranges.", "question": "Which of the following is true?", "options": [ "A) The pears are the cheapest.", "B) The mangoes are the cheapest.", "C) The kiwis are the cheapest.", "D) The oranges are the cheapest.", "E) The peaches are the cheapest." ], "answer": "C" }, { "id": "logical_deduction_37", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a black book, a purple book, a yellow book, an orange book, and a red book. The yellow book is the rightmost. The black book is to the left of the orange book. The orange book is to the left of the purple book. The black book is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The black book is the second from the right.", "B) The purple book is the second from the right.", "C) The yellow book is the second from the right.", "D) The orange book is the second from the right.", "E) The red book is the second from the right." ], "answer": "B" }, { "id": "logical_deduction_38", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Joe, Eve, Mya, Rob, and Dan. Joe finished below Dan. Mya finished first. Dan finished below Rob. Eve finished above Rob.", "question": "Which of the following is true?", "options": [ "A) Joe finished third.", "B) Eve finished third.", "C) Mya finished third.", "D) Rob finished third.", "E) Dan finished third." ], "answer": "D" }, { "id": "logical_deduction_39", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: an owl, a cardinal, a robin, a hummingbird, and a crow. The hummingbird is to the left of the owl. The hummingbird is to the right of the cardinal. The crow is to the left of the robin. The owl is to the left of the crow.", "question": "Which of the following is true?", "options": [ "A) The owl is the second from the left.", "B) The cardinal is the second from the left.", "C) The robin is the second from the left.", "D) The hummingbird is the second from the left.", "E) The crow is the second from the left." ], "answer": "D" }, { "id": "logical_deduction_40", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a hatchback, a convertible, a tractor, a truck, and a limousine. The tractor is newer than the hatchback. The limousine is the second-newest. The truck is older than the hatchback. The convertible is the second-oldest.", "question": "Which of the following is true?", "options": [ "A) The hatchback is the oldest.", "B) The convertible is the oldest.", "C) The tractor is the oldest.", "D) The truck is the oldest.", "E) The limousine is the oldest." ], "answer": "D" }, { "id": "logical_deduction_41", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Ada, Eli, Amy, Joe, and Mel. Ada finished above Eli. Amy finished below Mel. Ada finished second. Mel finished below Eli.", "question": "Which of the following is true?", "options": [ "A) Ada finished third.", "B) Eli finished third.", "C) Amy finished third.", "D) Joe finished third.", "E) Mel finished third." ], "answer": "B" }, { "id": "logical_deduction_42", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: an owl, a cardinal, a robin, a hummingbird, and a crow. The hummingbird is to the left of the owl. The hummingbird is to the right of the cardinal. The crow is to the left of the robin. The owl is to the left of the crow.", "question": "Which of the following is true?", "options": [ "A) The owl is the rightmost.", "B) The cardinal is the rightmost.", "C) The robin is the rightmost.", "D) The hummingbird is the rightmost.", "E) The crow is the rightmost." ], "answer": "C" }, { "id": "logical_deduction_43", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: an owl, a crow, a raven, a robin, and a cardinal. The raven is to the right of the owl. The raven is the second from the left. The robin is to the left of the crow. The robin is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The owl is the third from the left.", "B) The crow is the third from the left.", "C) The raven is the third from the left.", "D) The robin is the third from the left.", "E) The cardinal is the third from the left." ], "answer": "E" }, { "id": "logical_deduction_44", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a tractor, a station wagon, a bus, a motorcyle, and a minivan. The minivan is older than the motorcyle. The bus is the newest. The tractor is the third-newest. The station wagon is the second-oldest.", "question": "Which of the following is true?", "options": [ "A) The tractor is the third-newest.", "B) The station wagon is the third-newest.", "C) The bus is the third-newest.", "D) The motorcyle is the third-newest.", "E) The minivan is the third-newest." ], "answer": "A" }, { "id": "logical_deduction_45", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a cardinal, a crow, a falcon, a robin, and a blue jay. The robin is to the right of the cardinal. The cardinal is to the right of the blue jay. The blue jay is the second from the left. The crow is the rightmost.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the rightmost.", "B) The crow is the rightmost.", "C) The falcon is the rightmost.", "D) The robin is the rightmost.", "E) The blue jay is the rightmost." ], "answer": "B" }, { "id": "logical_deduction_46", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a blue jay, a cardinal, a hawk, a hummingbird, and a quail. The quail is to the left of the blue jay. The cardinal is the third from the left. The quail is the second from the left. The blue jay is to the left of the hummingbird.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the second from the left.", "B) The cardinal is the second from the left.", "C) The hawk is the second from the left.", "D) The hummingbird is the second from the left.", "E) The quail is the second from the left." ], "answer": "E" }, { "id": "logical_deduction_47", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a convertible, a truck, a bus, a sedan, and a motorcyle. The bus is newer than the truck. The truck is newer than the convertible. The sedan is the second-oldest. The motorcyle is newer than the bus.", "question": "Which of the following is true?", "options": [ "A) The convertible is the second-newest.", "B) The truck is the second-newest.", "C) The bus is the second-newest.", "D) The sedan is the second-newest.", "E) The motorcyle is the second-newest." ], "answer": "C" }, { "id": "logical_deduction_48", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: an owl, a crow, a raven, a robin, and a cardinal. The raven is to the right of the owl. The raven is the second from the left. The robin is to the left of the crow. The robin is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The owl is the leftmost.", "B) The crow is the leftmost.", "C) The raven is the leftmost.", "D) The robin is the leftmost.", "E) The cardinal is the leftmost." ], "answer": "A" }, { "id": "logical_deduction_49", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a crow, a falcon, a hawk, a robin, and a quail. The robin is to the right of the falcon. The quail is to the left of the hawk. The robin is the second from the left. The hawk is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The crow is the leftmost.", "B) The falcon is the leftmost.", "C) The hawk is the leftmost.", "D) The robin is the leftmost.", "E) The quail is the leftmost." ], "answer": "B" }, { "id": "logical_deduction_50", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a blue book, a red book, a purple book, a gray book, and a white book. The white book is to the right of the gray book. The blue book is the leftmost. The red book is to the left of the gray book. The red book is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The blue book is the second from the right.", "B) The red book is the second from the right.", "C) The purple book is the second from the right.", "D) The gray book is the second from the right.", "E) The white book is the second from the right." ], "answer": "D" }, { "id": "logical_deduction_51", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a blue book, a purple book, a yellow book, a black book, and a green book. The purple book is the third from the left. The yellow book is to the left of the black book. The green book is to the left of the purple book. The blue book is to the left of the green book.", "question": "Which of the following is true?", "options": [ "A) The blue book is the second from the left.", "B) The purple book is the second from the left.", "C) The yellow book is the second from the left.", "D) The black book is the second from the left.", "E) The green book is the second from the left." ], "answer": "E" }, { "id": "logical_deduction_52", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: apples, loquats, cantaloupes, watermelons, and kiwis. The watermelons are more expensive than the loquats. The watermelons are less expensive than the kiwis. The loquats are more expensive than the apples. The cantaloupes are the cheapest.", "question": "Which of the following is true?", "options": [ "A) The apples are the cheapest.", "B) The loquats are the cheapest.", "C) The cantaloupes are the cheapest.", "D) The watermelons are the cheapest.", "E) The kiwis are the cheapest." ], "answer": "C" }, { "id": "logical_deduction_53", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a tractor, a station wagon, a minivan, a sedan, and a hatchback. The minivan is older than the sedan. The tractor is older than the hatchback. The minivan is the third-newest. The station wagon is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The tractor is the second-oldest.", "B) The station wagon is the second-oldest.", "C) The minivan is the second-oldest.", "D) The sedan is the second-oldest.", "E) The hatchback is the second-oldest." ], "answer": "E" }, { "id": "logical_deduction_54", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a green book, an orange book, a gray book, a yellow book, and a purple book. The green book is the rightmost. The gray book is to the right of the orange book. The purple book is to the left of the yellow book. The purple book is to the right of the gray book.", "question": "Which of the following is true?", "options": [ "A) The green book is the leftmost.", "B) The orange book is the leftmost.", "C) The gray book is the leftmost.", "D) The yellow book is the leftmost.", "E) The purple book is the leftmost." ], "answer": "B" }, { "id": "logical_deduction_55", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: an owl, a hawk, a robin, a crow, and a raven. The hawk is to the left of the owl. The raven is the second from the right. The robin is to the left of the raven. The owl is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The owl is the rightmost.", "B) The hawk is the rightmost.", "C) The robin is the rightmost.", "D) The crow is the rightmost.", "E) The raven is the rightmost." ], "answer": "D" }, { "id": "logical_deduction_56", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Amy, Dan, Mya, Eli, and Mel. Amy finished above Mel. Mya finished first. Amy finished below Eli. Dan finished last.", "question": "Which of the following is true?", "options": [ "A) Amy finished third.", "B) Dan finished third.", "C) Mya finished third.", "D) Eli finished third.", "E) Mel finished third." ], "answer": "A" }, { "id": "logical_deduction_57", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: an owl, a hummingbird, a crow, a hawk, and a robin. The hawk is to the right of the owl. The hummingbird is to the right of the hawk. The crow is the second from the right. The robin is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The owl is the second from the left.", "B) The hummingbird is the second from the left.", "C) The crow is the second from the left.", "D) The hawk is the second from the left.", "E) The robin is the second from the left." ], "answer": "E" }, { "id": "logical_deduction_58", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a robin, a quail, an owl, a crow, and a hawk. The hawk is the third from the left. The hawk is to the right of the crow. The quail is to the left of the crow. The robin is to the right of the owl.", "question": "Which of the following is true?", "options": [ "A) The robin is the leftmost.", "B) The quail is the leftmost.", "C) The owl is the leftmost.", "D) The crow is the leftmost.", "E) The hawk is the leftmost." ], "answer": "B" }, { "id": "logical_deduction_59", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a hatchback, a limousine, a sedan, a bus, and a tractor. The tractor is newer than the hatchback. The bus is the second-oldest. The hatchback is newer than the sedan. The limousine is the newest.", "question": "Which of the following is true?", "options": [ "A) The hatchback is the second-oldest.", "B) The limousine is the second-oldest.", "C) The sedan is the second-oldest.", "D) The bus is the second-oldest.", "E) The tractor is the second-oldest." ], "answer": "D" }, { "id": "logical_deduction_60", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a cardinal, a robin, a blue jay, a quail, and a raven. The robin is to the right of the raven. The cardinal is the leftmost. The raven is to the right of the blue jay. The blue jay is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the leftmost.", "B) The robin is the leftmost.", "C) The blue jay is the leftmost.", "D) The quail is the leftmost.", "E) The raven is the leftmost." ], "answer": "A" }, { "id": "logical_deduction_61", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a sedan, a convertible, a station wagon, a bus, and a motorcyle. The sedan is the second-newest. The station wagon is newer than the convertible. The sedan is older than the motorcyle. The bus is the oldest.", "question": "Which of the following is true?", "options": [ "A) The sedan is the newest.", "B) The convertible is the newest.", "C) The station wagon is the newest.", "D) The bus is the newest.", "E) The motorcyle is the newest." ], "answer": "E" }, { "id": "logical_deduction_62", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a green book, a blue book, a white book, a purple book, and a yellow book. The blue book is to the right of the yellow book. The white book is to the left of the yellow book. The blue book is the second from the right. The purple book is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The green book is the third from the left.", "B) The blue book is the third from the left.", "C) The white book is the third from the left.", "D) The purple book is the third from the left.", "E) The yellow book is the third from the left." ], "answer": "E" }, { "id": "logical_deduction_63", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a quail, an owl, a raven, a falcon, and a robin. The owl is the leftmost. The robin is to the left of the raven. The quail is the rightmost. The raven is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The quail is the leftmost.", "B) The owl is the leftmost.", "C) The raven is the leftmost.", "D) The falcon is the leftmost.", "E) The robin is the leftmost." ], "answer": "B" }, { "id": "logical_deduction_64", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a gray book, a red book, a purple book, a blue book, and a black book. The red book is to the right of the gray book. The black book is to the left of the blue book. The blue book is to the left of the gray book. The purple book is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The gray book is the rightmost.", "B) The red book is the rightmost.", "C) The purple book is the rightmost.", "D) The blue book is the rightmost.", "E) The black book is the rightmost." ], "answer": "B" }, { "id": "logical_deduction_65", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a brown book, a yellow book, an orange book, a green book, and a gray book. The green book is to the left of the gray book. The brown book is the third from the left. The gray book is the second from the right. The yellow book is to the left of the green book.", "question": "Which of the following is true?", "options": [ "A) The brown book is the second from the right.", "B) The yellow book is the second from the right.", "C) The orange book is the second from the right.", "D) The green book is the second from the right.", "E) The gray book is the second from the right." ], "answer": "E" }, { "id": "logical_deduction_66", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a tractor, a station wagon, a minivan, a sedan, and a hatchback. The minivan is older than the sedan. The tractor is older than the hatchback. The minivan is the third-newest. The station wagon is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The tractor is the oldest.", "B) The station wagon is the oldest.", "C) The minivan is the oldest.", "D) The sedan is the oldest.", "E) The hatchback is the oldest." ], "answer": "A" }, { "id": "logical_deduction_67", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: an owl, a robin, a blue jay, a hawk, and a hummingbird. The owl is the second from the right. The robin is the second from the left. The robin is to the right of the blue jay. The hummingbird is to the right of the hawk.", "question": "Which of the following is true?", "options": [ "A) The owl is the second from the right.", "B) The robin is the second from the right.", "C) The blue jay is the second from the right.", "D) The hawk is the second from the right.", "E) The hummingbird is the second from the right." ], "answer": "A" }, { "id": "logical_deduction_68", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a sedan, a convertible, a station wagon, a bus, and a motorcyle. The sedan is the second-newest. The station wagon is newer than the convertible. The sedan is older than the motorcyle. The bus is the oldest.", "question": "Which of the following is true?", "options": [ "A) The sedan is the oldest.", "B) The convertible is the oldest.", "C) The station wagon is the oldest.", "D) The bus is the oldest.", "E) The motorcyle is the oldest." ], "answer": "D" }, { "id": "logical_deduction_69", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: apples, mangoes, oranges, plums, and pears. The oranges are more expensive than the mangoes. The plums are the cheapest. The apples are less expensive than the mangoes. The pears are more expensive than the oranges.", "question": "Which of the following is true?", "options": [ "A) The apples are the second-cheapest.", "B) The mangoes are the second-cheapest.", "C) The oranges are the second-cheapest.", "D) The plums are the second-cheapest.", "E) The pears are the second-cheapest." ], "answer": "A" }, { "id": "logical_deduction_70", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a brown book, a yellow book, an orange book, a green book, and a gray book. The green book is to the left of the gray book. The brown book is the third from the left. The gray book is the second from the right. The yellow book is to the left of the green book.", "question": "Which of the following is true?", "options": [ "A) The brown book is the rightmost.", "B) The yellow book is the rightmost.", "C) The orange book is the rightmost.", "D) The green book is the rightmost.", "E) The gray book is the rightmost." ], "answer": "C" }, { "id": "logical_deduction_71", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: oranges, apples, peaches, cantaloupes, and loquats. The loquats are less expensive than the cantaloupes. The cantaloupes are less expensive than the apples. The oranges are the most expensive. The apples are the third-most expensive.", "question": "Which of the following is true?", "options": [ "A) The oranges are the second-cheapest.", "B) The apples are the second-cheapest.", "C) The peaches are the second-cheapest.", "D) The cantaloupes are the second-cheapest.", "E) The loquats are the second-cheapest." ], "answer": "D" }, { "id": "logical_deduction_72", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Amy, Eve, Mel, Mya, and Rob. Eve finished last. Rob finished above Mel. Amy finished above Rob. Mya finished third.", "question": "Which of the following is true?", "options": [ "A) Amy finished third.", "B) Eve finished third.", "C) Mel finished third.", "D) Mya finished third.", "E) Rob finished third." ], "answer": "D" }, { "id": "logical_deduction_73", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a convertible, a sedan, a station wagon, a bus, and a limousine. The sedan is newer than the station wagon. The limousine is the newest. The bus is the second-newest. The convertible is the second-oldest.", "question": "Which of the following is true?", "options": [ "A) The convertible is the newest.", "B) The sedan is the newest.", "C) The station wagon is the newest.", "D) The bus is the newest.", "E) The limousine is the newest." ], "answer": "E" }, { "id": "logical_deduction_74", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: mangoes, pears, cantaloupes, watermelons, and loquats. The mangoes are more expensive than the loquats. The cantaloupes are more expensive than the mangoes. The watermelons are more expensive than the cantaloupes. The pears are the cheapest.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the third-most expensive.", "B) The pears are the third-most expensive.", "C) The cantaloupes are the third-most expensive.", "D) The watermelons are the third-most expensive.", "E) The loquats are the third-most expensive." ], "answer": "A" }, { "id": "logical_deduction_75", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: mangoes, pears, cantaloupes, watermelons, and loquats. The mangoes are more expensive than the loquats. The cantaloupes are more expensive than the mangoes. The watermelons are more expensive than the cantaloupes. The pears are the cheapest.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the second-cheapest.", "B) The pears are the second-cheapest.", "C) The cantaloupes are the second-cheapest.", "D) The watermelons are the second-cheapest.", "E) The loquats are the second-cheapest." ], "answer": "E" }, { "id": "logical_deduction_76", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: an owl, a robin, a blue jay, a hawk, and a hummingbird. The owl is the second from the right. The robin is the second from the left. The robin is to the right of the blue jay. The hummingbird is to the right of the hawk.", "question": "Which of the following is true?", "options": [ "A) The owl is the third from the left.", "B) The robin is the third from the left.", "C) The blue jay is the third from the left.", "D) The hawk is the third from the left.", "E) The hummingbird is the third from the left." ], "answer": "D" }, { "id": "logical_deduction_77", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a convertible, a sedan, a tractor, a minivan, and a limousine. The tractor is newer than the minivan. The tractor is older than the limousine. The convertible is older than the sedan. The convertible is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The convertible is the oldest.", "B) The sedan is the oldest.", "C) The tractor is the oldest.", "D) The minivan is the oldest.", "E) The limousine is the oldest." ], "answer": "D" }, { "id": "logical_deduction_78", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Mel, Dan, Amy, Joe, and Eve. Amy finished below Dan. Mel finished first. Joe finished above Dan. Eve finished last.", "question": "Which of the following is true?", "options": [ "A) Mel finished second-to-last.", "B) Dan finished second-to-last.", "C) Amy finished second-to-last.", "D) Joe finished second-to-last.", "E) Eve finished second-to-last." ], "answer": "C" }, { "id": "logical_deduction_79", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a quail, a hummingbird, a blue jay, a hawk, and a robin. The robin is the second from the left. The quail is the leftmost. The blue jay is to the left of the hummingbird. The hawk is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The quail is the third from the left.", "B) The hummingbird is the third from the left.", "C) The blue jay is the third from the left.", "D) The hawk is the third from the left.", "E) The robin is the third from the left." ], "answer": "D" }, { "id": "logical_deduction_80", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a blue book, a red book, a brown book, a yellow book, and an orange book. The red book is to the left of the brown book. The yellow book is to the right of the orange book. The brown book is the second from the left. The yellow book is to the left of the blue book.", "question": "Which of the following is true?", "options": [ "A) The blue book is the second from the left.", "B) The red book is the second from the left.", "C) The brown book is the second from the left.", "D) The yellow book is the second from the left.", "E) The orange book is the second from the left." ], "answer": "C" }, { "id": "logical_deduction_81", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a yellow book, a brown book, a gray book, a black book, and a purple book. The yellow book is to the right of the purple book. The black book is to the left of the purple book. The black book is the third from the left. The brown book is the leftmost.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the second from the left.", "B) The brown book is the second from the left.", "C) The gray book is the second from the left.", "D) The black book is the second from the left.", "E) The purple book is the second from the left." ], "answer": "C" }, { "id": "logical_deduction_82", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: watermelons, apples, mangoes, pears, and cantaloupes. The watermelons are more expensive than the cantaloupes. The mangoes are less expensive than the pears. The apples are the second-cheapest. The watermelons are less expensive than the mangoes.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the third-most expensive.", "B) The apples are the third-most expensive.", "C) The mangoes are the third-most expensive.", "D) The pears are the third-most expensive.", "E) The cantaloupes are the third-most expensive." ], "answer": "A" }, { "id": "logical_deduction_83", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Amy, Mel, Rob, Joe, and Ada. Joe finished second. Joe finished below Amy. Mel finished second-to-last. Ada finished last.", "question": "Which of the following is true?", "options": [ "A) Amy finished second.", "B) Mel finished second.", "C) Rob finished second.", "D) Joe finished second.", "E) Ada finished second." ], "answer": "D" }, { "id": "logical_deduction_84", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a tractor, a station wagon, a bus, a motorcyle, and a minivan. The minivan is older than the motorcyle. The bus is the newest. The tractor is the third-newest. The station wagon is the second-oldest.", "question": "Which of the following is true?", "options": [ "A) The tractor is the second-newest.", "B) The station wagon is the second-newest.", "C) The bus is the second-newest.", "D) The motorcyle is the second-newest.", "E) The minivan is the second-newest." ], "answer": "D" }, { "id": "logical_deduction_85", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: apples, oranges, watermelons, pears, and mangoes. The apples are more expensive than the oranges. The oranges are more expensive than the mangoes. The apples are the third-most expensive. The pears are more expensive than the watermelons.", "question": "Which of the following is true?", "options": [ "A) The apples are the most expensive.", "B) The oranges are the most expensive.", "C) The watermelons are the most expensive.", "D) The pears are the most expensive.", "E) The mangoes are the most expensive." ], "answer": "D" }, { "id": "logical_deduction_86", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a station wagon, a sedan, a tractor, a motorcyle, and a limousine. The tractor is newer than the motorcyle. The motorcyle is newer than the sedan. The limousine is the oldest. The station wagon is the newest.", "question": "Which of the following is true?", "options": [ "A) The station wagon is the newest.", "B) The sedan is the newest.", "C) The tractor is the newest.", "D) The motorcyle is the newest.", "E) The limousine is the newest." ], "answer": "A" }, { "id": "logical_deduction_87", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a blue book, a red book, a purple book, a gray book, and a white book. The white book is to the right of the gray book. The blue book is the leftmost. The red book is to the left of the gray book. The red book is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The blue book is the rightmost.", "B) The red book is the rightmost.", "C) The purple book is the rightmost.", "D) The gray book is the rightmost.", "E) The white book is the rightmost." ], "answer": "E" }, { "id": "logical_deduction_88", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: apples, oranges, watermelons, pears, and mangoes. The apples are more expensive than the oranges. The oranges are more expensive than the mangoes. The apples are the third-most expensive. The pears are more expensive than the watermelons.", "question": "Which of the following is true?", "options": [ "A) The apples are the second-most expensive.", "B) The oranges are the second-most expensive.", "C) The watermelons are the second-most expensive.", "D) The pears are the second-most expensive.", "E) The mangoes are the second-most expensive." ], "answer": "C" }, { "id": "logical_deduction_89", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a green book, an orange book, a brown book, a yellow book, and a blue book. The orange book is to the right of the yellow book. The green book is the rightmost. The yellow book is to the right of the blue book. The orange book is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The green book is the second from the left.", "B) The orange book is the second from the left.", "C) The brown book is the second from the left.", "D) The yellow book is the second from the left.", "E) The blue book is the second from the left." ], "answer": "D" }, { "id": "logical_deduction_90", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a black book, a brown book, a yellow book, an orange book, and a red book. The black book is to the left of the yellow book. The red book is the third from the left. The brown book is the second from the left. The yellow book is to the left of the orange book.", "question": "Which of the following is true?", "options": [ "A) The black book is the third from the left.", "B) The brown book is the third from the left.", "C) The yellow book is the third from the left.", "D) The orange book is the third from the left.", "E) The red book is the third from the left." ], "answer": "E" }, { "id": "logical_deduction_91", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a cardinal, a robin, a blue jay, a quail, and a raven. The robin is to the right of the raven. The cardinal is the leftmost. The raven is to the right of the blue jay. The blue jay is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the rightmost.", "B) The robin is the rightmost.", "C) The blue jay is the rightmost.", "D) The quail is the rightmost.", "E) The raven is the rightmost." ], "answer": "B" }, { "id": "logical_deduction_92", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Dan, Ana, Eli, Mya, and Amy. Amy finished above Eli. Ana finished above Amy. Mya finished below Eli. Dan finished last.", "question": "Which of the following is true?", "options": [ "A) Dan finished third.", "B) Ana finished third.", "C) Eli finished third.", "D) Mya finished third.", "E) Amy finished third." ], "answer": "C" }, { "id": "logical_deduction_93", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Rob, Ada, Dan, Joe, and Mel. Ada finished above Mel. Mel finished above Dan. Joe finished below Dan. Ada finished second.", "question": "Which of the following is true?", "options": [ "A) Rob finished third.", "B) Ada finished third.", "C) Dan finished third.", "D) Joe finished third.", "E) Mel finished third." ], "answer": "E" }, { "id": "logical_deduction_94", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a cardinal, a robin, a blue jay, a quail, and a raven. The robin is to the right of the raven. The cardinal is the leftmost. The raven is to the right of the blue jay. The blue jay is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the third from the left.", "B) The robin is the third from the left.", "C) The blue jay is the third from the left.", "D) The quail is the third from the left.", "E) The raven is the third from the left." ], "answer": "C" }, { "id": "logical_deduction_95", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a blue book, a purple book, a yellow book, a black book, and a green book. The purple book is the third from the left. The yellow book is to the left of the black book. The green book is to the left of the purple book. The blue book is to the left of the green book.", "question": "Which of the following is true?", "options": [ "A) The blue book is the leftmost.", "B) The purple book is the leftmost.", "C) The yellow book is the leftmost.", "D) The black book is the leftmost.", "E) The green book is the leftmost." ], "answer": "A" }, { "id": "logical_deduction_96", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a falcon, a raven, a cardinal, a hawk, and a crow. The cardinal is the second from the right. The hawk is to the right of the falcon. The raven is the second from the left. The crow is the rightmost.", "question": "Which of the following is true?", "options": [ "A) The falcon is the leftmost.", "B) The raven is the leftmost.", "C) The cardinal is the leftmost.", "D) The hawk is the leftmost.", "E) The crow is the leftmost." ], "answer": "A" }, { "id": "logical_deduction_97", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: oranges, cantaloupes, peaches, loquats, and kiwis. The peaches are more expensive than the oranges. The cantaloupes are more expensive than the peaches. The kiwis are the third-most expensive. The loquats are the second-cheapest.", "question": "Which of the following is true?", "options": [ "A) The oranges are the cheapest.", "B) The cantaloupes are the cheapest.", "C) The peaches are the cheapest.", "D) The loquats are the cheapest.", "E) The kiwis are the cheapest." ], "answer": "A" }, { "id": "logical_deduction_98", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a minivan, a hatchback, a bus, a convertible, and a motorcyle. The hatchback is newer than the convertible. The bus is newer than the hatchback. The bus is older than the motorcyle. The minivan is the newest.", "question": "Which of the following is true?", "options": [ "A) The minivan is the oldest.", "B) The hatchback is the oldest.", "C) The bus is the oldest.", "D) The convertible is the oldest.", "E) The motorcyle is the oldest." ], "answer": "D" }, { "id": "logical_deduction_99", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a raven, an owl, a cardinal, a hummingbird, and a robin. The cardinal is the rightmost. The raven is to the left of the owl. The robin is to the right of the hummingbird. The hummingbird is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The raven is the leftmost.", "B) The owl is the leftmost.", "C) The cardinal is the leftmost.", "D) The hummingbird is the leftmost.", "E) The robin is the leftmost." ], "answer": "A" }, { "id": "logical_deduction_100", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Eve, Rob, Ana, Eli, and Mya. Eli finished below Mya. Eve finished first. Ana finished below Eli. Rob finished second.", "question": "Which of the following is true?", "options": [ "A) Eve finished first.", "B) Rob finished first.", "C) Ana finished first.", "D) Eli finished first.", "E) Mya finished first." ], "answer": "A" }, { "id": "logical_deduction_101", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a truck, a station wagon, a motorcyle, a limousine, and a hatchback. The motorcyle is the second-newest. The truck is newer than the limousine. The motorcyle is older than the station wagon. The limousine is newer than the hatchback.", "question": "Which of the following is true?", "options": [ "A) The truck is the third-newest.", "B) The station wagon is the third-newest.", "C) The motorcyle is the third-newest.", "D) The limousine is the third-newest.", "E) The hatchback is the third-newest." ], "answer": "A" }, { "id": "logical_deduction_102", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Joe, Ana, Amy, Mya, and Eve. Joe finished last. Ana finished second. Mya finished second-to-last. Eve finished below Amy.", "question": "Which of the following is true?", "options": [ "A) Joe finished third.", "B) Ana finished third.", "C) Amy finished third.", "D) Mya finished third.", "E) Eve finished third." ], "answer": "E" }, { "id": "logical_deduction_103", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a limousine, a sedan, a bus, a hatchback, and a motorcyle. The hatchback is older than the sedan. The hatchback is the second-oldest. The limousine is older than the bus. The bus is newer than the sedan. The bus is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The limousine is the second-oldest.", "B) The sedan is the second-oldest.", "C) The bus is the second-oldest.", "D) The hatchback is the second-oldest.", "E) The motorcyle is the second-oldest." ], "answer": "D" }, { "id": "logical_deduction_104", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a blue book, a red book, a purple book, a gray book, and a white book. The white book is to the right of the gray book. The blue book is the leftmost. The red book is to the left of the gray book. The red book is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The blue book is the leftmost.", "B) The red book is the leftmost.", "C) The purple book is the leftmost.", "D) The gray book is the leftmost.", "E) The white book is the leftmost." ], "answer": "A" }, { "id": "logical_deduction_105", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a truck, a station wagon, a motorcyle, a convertible, and a hatchback. The convertible is newer than the truck. The station wagon is newer than the hatchback. The convertible is older than the hatchback. The station wagon is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The truck is the second-oldest.", "B) The station wagon is the second-oldest.", "C) The motorcyle is the second-oldest.", "D) The convertible is the second-oldest.", "E) The hatchback is the second-oldest." ], "answer": "D" }, { "id": "logical_deduction_106", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a crow, a falcon, a hawk, a robin, and a quail. The robin is to the right of the falcon. The quail is to the left of the hawk. The robin is the second from the left. The hawk is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The crow is the second from the left.", "B) The falcon is the second from the left.", "C) The hawk is the second from the left.", "D) The robin is the second from the left.", "E) The quail is the second from the left." ], "answer": "D" }, { "id": "logical_deduction_107", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a minivan, a hatchback, a bus, a convertible, and a motorcyle. The hatchback is newer than the convertible. The bus is newer than the hatchback. The bus is older than the motorcyle. The minivan is the newest.", "question": "Which of the following is true?", "options": [ "A) The minivan is the second-oldest.", "B) The hatchback is the second-oldest.", "C) The bus is the second-oldest.", "D) The convertible is the second-oldest.", "E) The motorcyle is the second-oldest." ], "answer": "B" }, { "id": "logical_deduction_108", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: an owl, a cardinal, a robin, a hummingbird, and a crow. The hummingbird is to the left of the owl. The hummingbird is to the right of the cardinal. The crow is to the left of the robin. The owl is to the left of the crow.", "question": "Which of the following is true?", "options": [ "A) The owl is the second from the right.", "B) The cardinal is the second from the right.", "C) The robin is the second from the right.", "D) The hummingbird is the second from the right.", "E) The crow is the second from the right." ], "answer": "E" }, { "id": "logical_deduction_109", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a station wagon, a tractor, a truck, a hatchback, and a minivan. The station wagon is newer than the tractor. The truck is older than the tractor. The minivan is newer than the hatchback. The hatchback is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The station wagon is the second-oldest.", "B) The tractor is the second-oldest.", "C) The truck is the second-oldest.", "D) The hatchback is the second-oldest.", "E) The minivan is the second-oldest." ], "answer": "B" }, { "id": "logical_deduction_110", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a green book, a blue book, a white book, a purple book, and a yellow book. The blue book is to the right of the yellow book. The white book is to the left of the yellow book. The blue book is the second from the right. The purple book is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The green book is the second from the right.", "B) The blue book is the second from the right.", "C) The white book is the second from the right.", "D) The purple book is the second from the right.", "E) The yellow book is the second from the right." ], "answer": "B" }, { "id": "logical_deduction_111", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a minivan, a hatchback, a bus, a convertible, and a motorcyle. The hatchback is newer than the convertible. The bus is newer than the hatchback. The bus is older than the motorcyle. The minivan is the newest.", "question": "Which of the following is true?", "options": [ "A) The minivan is the third-newest.", "B) The hatchback is the third-newest.", "C) The bus is the third-newest.", "D) The convertible is the third-newest.", "E) The motorcyle is the third-newest." ], "answer": "C" }, { "id": "logical_deduction_112", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a black book, a purple book, a yellow book, an orange book, and a red book. The yellow book is the rightmost. The black book is to the left of the orange book. The orange book is to the left of the purple book. The black book is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The black book is the rightmost.", "B) The purple book is the rightmost.", "C) The yellow book is the rightmost.", "D) The orange book is the rightmost.", "E) The red book is the rightmost." ], "answer": "C" }, { "id": "logical_deduction_113", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a crow, a robin, a quail, a blue jay, and a falcon. The robin is to the left of the quail. The falcon is the third from the left. The crow is to the left of the falcon. The blue jay is the leftmost.", "question": "Which of the following is true?", "options": [ "A) The crow is the second from the left.", "B) The robin is the second from the left.", "C) The quail is the second from the left.", "D) The blue jay is the second from the left.", "E) The falcon is the second from the left." ], "answer": "A" }, { "id": "logical_deduction_114", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a station wagon, a sedan, a tractor, a motorcyle, and a limousine. The tractor is newer than the motorcyle. The motorcyle is newer than the sedan. The limousine is the oldest. The station wagon is the newest.", "question": "Which of the following is true?", "options": [ "A) The station wagon is the second-oldest.", "B) The sedan is the second-oldest.", "C) The tractor is the second-oldest.", "D) The motorcyle is the second-oldest.", "E) The limousine is the second-oldest." ], "answer": "B" }, { "id": "logical_deduction_115", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: loquats, peaches, pears, plums, and watermelons. The watermelons are the most expensive. The peaches are more expensive than the loquats. The plums are the second-cheapest. The pears are the third-most expensive.", "question": "Which of the following is true?", "options": [ "A) The loquats are the cheapest.", "B) The peaches are the cheapest.", "C) The pears are the cheapest.", "D) The plums are the cheapest.", "E) The watermelons are the cheapest." ], "answer": "A" }, { "id": "logical_deduction_116", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: apples, oranges, watermelons, pears, and mangoes. The apples are more expensive than the oranges. The oranges are more expensive than the mangoes. The apples are the third-most expensive. The pears are more expensive than the watermelons.", "question": "Which of the following is true?", "options": [ "A) The apples are the second-cheapest.", "B) The oranges are the second-cheapest.", "C) The watermelons are the second-cheapest.", "D) The pears are the second-cheapest.", "E) The mangoes are the second-cheapest." ], "answer": "B" }, { "id": "logical_deduction_117", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a raven, an owl, a cardinal, a hummingbird, and a robin. The cardinal is the rightmost. The raven is to the left of the owl. The robin is to the right of the hummingbird. The hummingbird is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The raven is the second from the right.", "B) The owl is the second from the right.", "C) The cardinal is the second from the right.", "D) The hummingbird is the second from the right.", "E) The robin is the second from the right." ], "answer": "E" }, { "id": "logical_deduction_118", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a white book, a gray book, a purple book, a yellow book, and a black book. The yellow book is to the left of the white book. The black book is to the left of the yellow book. The purple book is the rightmost. The white book is to the left of the gray book.", "question": "Which of the following is true?", "options": [ "A) The white book is the second from the left.", "B) The gray book is the second from the left.", "C) The purple book is the second from the left.", "D) The yellow book is the second from the left.", "E) The black book is the second from the left." ], "answer": "D" }, { "id": "logical_deduction_119", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Eve, Amy, Ada, Rob, and Joe. Amy finished second-to-last. Rob finished below Eve. Ada finished above Joe. Joe finished second.", "question": "Which of the following is true?", "options": [ "A) Eve finished last.", "B) Amy finished last.", "C) Ada finished last.", "D) Rob finished last.", "E) Joe finished last." ], "answer": "D" }, { "id": "logical_deduction_120", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a yellow book, a brown book, a gray book, a black book, and a purple book. The yellow book is to the right of the purple book. The black book is to the left of the purple book. The black book is the third from the left. The brown book is the leftmost.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the second from the right.", "B) The brown book is the second from the right.", "C) The gray book is the second from the right.", "D) The black book is the second from the right.", "E) The purple book is the second from the right." ], "answer": "E" }, { "id": "logical_deduction_121", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Joe, Mya, Eve, Amy, and Ana. Eve finished below Joe. Ana finished below Amy. Eve finished above Amy. Mya finished above Joe.", "question": "Which of the following is true?", "options": [ "A) Joe finished third.", "B) Mya finished third.", "C) Eve finished third.", "D) Amy finished third.", "E) Ana finished third." ], "answer": "C" }, { "id": "logical_deduction_122", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: loquats, peaches, pears, plums, and watermelons. The watermelons are the most expensive. The peaches are more expensive than the loquats. The plums are the second-cheapest. The pears are the third-most expensive.", "question": "Which of the following is true?", "options": [ "A) The loquats are the most expensive.", "B) The peaches are the most expensive.", "C) The pears are the most expensive.", "D) The plums are the most expensive.", "E) The watermelons are the most expensive." ], "answer": "E" }, { "id": "logical_deduction_123", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Eve, Rob, Ana, Eli, and Mya. Eli finished below Mya. Eve finished first. Ana finished below Eli. Rob finished second.", "question": "Which of the following is true?", "options": [ "A) Eve finished second-to-last.", "B) Rob finished second-to-last.", "C) Ana finished second-to-last.", "D) Eli finished second-to-last.", "E) Mya finished second-to-last." ], "answer": "D" }, { "id": "logical_deduction_124", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Dan, Ana, Eli, Mya, and Amy. Amy finished above Eli. Ana finished above Amy. Mya finished below Eli. Dan finished last.", "question": "Which of the following is true?", "options": [ "A) Dan finished second.", "B) Ana finished second.", "C) Eli finished second.", "D) Mya finished second.", "E) Amy finished second." ], "answer": "E" }, { "id": "logical_deduction_125", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: kiwis, pears, peaches, loquats, and apples. The loquats are more expensive than the kiwis. The pears are more expensive than the peaches. The apples are more expensive than the loquats. The apples are less expensive than the peaches.", "question": "Which of the following is true?", "options": [ "A) The kiwis are the second-most expensive.", "B) The pears are the second-most expensive.", "C) The peaches are the second-most expensive.", "D) The loquats are the second-most expensive.", "E) The apples are the second-most expensive." ], "answer": "C" }, { "id": "logical_deduction_126", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Amy, Eve, Mel, Mya, and Rob. Eve finished last. Rob finished above Mel. Amy finished above Rob. Mya finished third.", "question": "Which of the following is true?", "options": [ "A) Amy finished second.", "B) Eve finished second.", "C) Mel finished second.", "D) Mya finished second.", "E) Rob finished second." ], "answer": "E" }, { "id": "logical_deduction_127", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: an owl, a hawk, a robin, a crow, and a raven. The hawk is to the left of the owl. The raven is the second from the right. The robin is to the left of the raven. The owl is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The owl is the second from the right.", "B) The hawk is the second from the right.", "C) The robin is the second from the right.", "D) The crow is the second from the right.", "E) The raven is the second from the right." ], "answer": "E" }, { "id": "logical_deduction_128", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: an owl, a hummingbird, a crow, a hawk, and a robin. The hawk is to the right of the owl. The hummingbird is to the right of the hawk. The crow is the second from the right. The robin is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The owl is the third from the left.", "B) The hummingbird is the third from the left.", "C) The crow is the third from the left.", "D) The hawk is the third from the left.", "E) The robin is the third from the left." ], "answer": "D" }, { "id": "logical_deduction_129", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a truck, a station wagon, a motorcyle, a convertible, and a hatchback. The convertible is newer than the truck. The station wagon is newer than the hatchback. The convertible is older than the hatchback. The station wagon is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The truck is the oldest.", "B) The station wagon is the oldest.", "C) The motorcyle is the oldest.", "D) The convertible is the oldest.", "E) The hatchback is the oldest." ], "answer": "A" }, { "id": "logical_deduction_130", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a truck, a station wagon, a motorcyle, a convertible, and a hatchback. The convertible is newer than the truck. The station wagon is newer than the hatchback. The convertible is older than the hatchback. The station wagon is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The truck is the third-newest.", "B) The station wagon is the third-newest.", "C) The motorcyle is the third-newest.", "D) The convertible is the third-newest.", "E) The hatchback is the third-newest." ], "answer": "E" }, { "id": "logical_deduction_131", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a gray book, a red book, a purple book, a blue book, and a black book. The red book is to the right of the gray book. The black book is to the left of the blue book. The blue book is to the left of the gray book. The purple book is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The gray book is the third from the left.", "B) The red book is the third from the left.", "C) The purple book is the third from the left.", "D) The blue book is the third from the left.", "E) The black book is the third from the left." ], "answer": "A" }, { "id": "logical_deduction_132", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a blue book, a purple book, a yellow book, a red book, and a gray book. The yellow book is to the right of the gray book. The purple book is to the left of the gray book. The red book is to the right of the blue book. The purple book is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The blue book is the second from the right.", "B) The purple book is the second from the right.", "C) The yellow book is the second from the right.", "D) The red book is the second from the right.", "E) The gray book is the second from the right." ], "answer": "E" }, { "id": "logical_deduction_133", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: loquats, peaches, pears, plums, and watermelons. The watermelons are the most expensive. The peaches are more expensive than the loquats. The plums are the second-cheapest. The pears are the third-most expensive.", "question": "Which of the following is true?", "options": [ "A) The loquats are the second-cheapest.", "B) The peaches are the second-cheapest.", "C) The pears are the second-cheapest.", "D) The plums are the second-cheapest.", "E) The watermelons are the second-cheapest." ], "answer": "D" }, { "id": "logical_deduction_134", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Dan, Ana, Eli, Mya, and Amy. Amy finished above Eli. Ana finished above Amy. Mya finished below Eli. Dan finished last.", "question": "Which of the following is true?", "options": [ "A) Dan finished second-to-last.", "B) Ana finished second-to-last.", "C) Eli finished second-to-last.", "D) Mya finished second-to-last.", "E) Amy finished second-to-last." ], "answer": "D" }, { "id": "logical_deduction_135", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a black book, a brown book, a yellow book, an orange book, and a red book. The black book is to the left of the yellow book. The red book is the third from the left. The brown book is the second from the left. The yellow book is to the left of the orange book.", "question": "Which of the following is true?", "options": [ "A) The black book is the second from the left.", "B) The brown book is the second from the left.", "C) The yellow book is the second from the left.", "D) The orange book is the second from the left.", "E) The red book is the second from the left." ], "answer": "B" }, { "id": "logical_deduction_136", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Rob, Amy, Joe, Eve, and Dan. Rob finished below Dan. Joe finished second. Joe finished above Eve. Eve finished above Dan.", "question": "Which of the following is true?", "options": [ "A) Rob finished second-to-last.", "B) Amy finished second-to-last.", "C) Joe finished second-to-last.", "D) Eve finished second-to-last.", "E) Dan finished second-to-last." ], "answer": "E" }, { "id": "logical_deduction_137", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a station wagon, a tractor, a truck, a hatchback, and a minivan. The station wagon is newer than the tractor. The truck is older than the tractor. The minivan is newer than the hatchback. The hatchback is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The station wagon is the oldest.", "B) The tractor is the oldest.", "C) The truck is the oldest.", "D) The hatchback is the oldest.", "E) The minivan is the oldest." ], "answer": "C" }, { "id": "logical_deduction_138", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a limousine, a sedan, a bus, a hatchback, and a motorcyle. The hatchback is older than the sedan. The hatchback is the second-oldest. The limousine is older than the bus. The bus is newer than the sedan. The bus is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The limousine is the second-newest.", "B) The sedan is the second-newest.", "C) The bus is the second-newest.", "D) The hatchback is the second-newest.", "E) The motorcyle is the second-newest." ], "answer": "C" }, { "id": "logical_deduction_139", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: watermelons, plums, apples, peaches, and kiwis. The apples are less expensive than the peaches. The plums are the cheapest. The kiwis are the second-cheapest. The watermelons are more expensive than the peaches.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the second-most expensive.", "B) The plums are the second-most expensive.", "C) The apples are the second-most expensive.", "D) The peaches are the second-most expensive.", "E) The kiwis are the second-most expensive." ], "answer": "D" }, { "id": "logical_deduction_140", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a blue jay, a cardinal, a hawk, a hummingbird, and a quail. The quail is to the left of the blue jay. The cardinal is the third from the left. The quail is the second from the left. The blue jay is to the left of the hummingbird.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the second from the right.", "B) The cardinal is the second from the right.", "C) The hawk is the second from the right.", "D) The hummingbird is the second from the right.", "E) The quail is the second from the right." ], "answer": "A" }, { "id": "logical_deduction_141", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: mangoes, kiwis, plums, pears, and watermelons. The kiwis are less expensive than the plums. The pears are the third-most expensive. The kiwis are the second-cheapest. The watermelons are the most expensive.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the cheapest.", "B) The kiwis are the cheapest.", "C) The plums are the cheapest.", "D) The pears are the cheapest.", "E) The watermelons are the cheapest." ], "answer": "A" }, { "id": "logical_deduction_142", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a black book, a purple book, a yellow book, an orange book, and a red book. The yellow book is the rightmost. The black book is to the left of the orange book. The orange book is to the left of the purple book. The black book is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The black book is the second from the left.", "B) The purple book is the second from the left.", "C) The yellow book is the second from the left.", "D) The orange book is the second from the left.", "E) The red book is the second from the left." ], "answer": "A" }, { "id": "logical_deduction_143", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: an owl, a crow, a raven, a robin, and a cardinal. The raven is to the right of the owl. The raven is the second from the left. The robin is to the left of the crow. The robin is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The owl is the rightmost.", "B) The crow is the rightmost.", "C) The raven is the rightmost.", "D) The robin is the rightmost.", "E) The cardinal is the rightmost." ], "answer": "B" }, { "id": "logical_deduction_144", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: an owl, a hummingbird, a crow, a hawk, and a robin. The hawk is to the right of the owl. The hummingbird is to the right of the hawk. The crow is the second from the right. The robin is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The owl is the second from the right.", "B) The hummingbird is the second from the right.", "C) The crow is the second from the right.", "D) The hawk is the second from the right.", "E) The robin is the second from the right." ], "answer": "C" }, { "id": "logical_deduction_145", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a blue jay, a cardinal, a hawk, a hummingbird, and a quail. The quail is to the left of the blue jay. The cardinal is the third from the left. The quail is the second from the left. The blue jay is to the left of the hummingbird.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the rightmost.", "B) The cardinal is the rightmost.", "C) The hawk is the rightmost.", "D) The hummingbird is the rightmost.", "E) The quail is the rightmost." ], "answer": "D" }, { "id": "logical_deduction_146", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: mangoes, pears, cantaloupes, watermelons, and loquats. The mangoes are more expensive than the loquats. The cantaloupes are more expensive than the mangoes. The watermelons are more expensive than the cantaloupes. The pears are the cheapest.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the second-most expensive.", "B) The pears are the second-most expensive.", "C) The cantaloupes are the second-most expensive.", "D) The watermelons are the second-most expensive.", "E) The loquats are the second-most expensive." ], "answer": "C" }, { "id": "logical_deduction_147", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Rob, Eve, Eli, Amy, and Dan. Dan finished second. Amy finished below Eve. Dan finished above Eve. Amy finished above Eli.", "question": "Which of the following is true?", "options": [ "A) Rob finished first.", "B) Eve finished first.", "C) Eli finished first.", "D) Amy finished first.", "E) Dan finished first." ], "answer": "A" }, { "id": "logical_deduction_148", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Joe, Mya, Eve, Amy, and Ana. Eve finished below Joe. Ana finished below Amy. Eve finished above Amy. Mya finished above Joe.", "question": "Which of the following is true?", "options": [ "A) Joe finished last.", "B) Mya finished last.", "C) Eve finished last.", "D) Amy finished last.", "E) Ana finished last." ], "answer": "E" }, { "id": "logical_deduction_149", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: oranges, apples, peaches, cantaloupes, and loquats. The loquats are less expensive than the cantaloupes. The cantaloupes are less expensive than the apples. The oranges are the most expensive. The apples are the third-most expensive.", "question": "Which of the following is true?", "options": [ "A) The oranges are the second-most expensive.", "B) The apples are the second-most expensive.", "C) The peaches are the second-most expensive.", "D) The cantaloupes are the second-most expensive.", "E) The loquats are the second-most expensive." ], "answer": "C" }, { "id": "logical_deduction_150", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Rob, Ada, Dan, Joe, and Mel. Ada finished above Mel. Mel finished above Dan. Joe finished below Dan. Ada finished second.", "question": "Which of the following is true?", "options": [ "A) Rob finished second-to-last.", "B) Ada finished second-to-last.", "C) Dan finished second-to-last.", "D) Joe finished second-to-last.", "E) Mel finished second-to-last." ], "answer": "C" }, { "id": "logical_deduction_151", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a hawk, a raven, a robin, a hummingbird, and a crow. The robin is the leftmost. The raven is the second from the left. The hawk is the second from the right. The crow is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The hawk is the leftmost.", "B) The raven is the leftmost.", "C) The robin is the leftmost.", "D) The hummingbird is the leftmost.", "E) The crow is the leftmost." ], "answer": "C" }, { "id": "logical_deduction_152", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: pears, mangoes, kiwis, oranges, and peaches. The peaches are more expensive than the mangoes. The oranges are more expensive than the kiwis. The pears are the most expensive. The mangoes are more expensive than the oranges.", "question": "Which of the following is true?", "options": [ "A) The pears are the third-most expensive.", "B) The mangoes are the third-most expensive.", "C) The kiwis are the third-most expensive.", "D) The oranges are the third-most expensive.", "E) The peaches are the third-most expensive." ], "answer": "B" }, { "id": "logical_deduction_153", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Eve, Eli, Joe, Rob, and Mya. Rob finished above Mya. Eve finished first. Joe finished above Eli. Joe finished below Mya.", "question": "Which of the following is true?", "options": [ "A) Eve finished third.", "B) Eli finished third.", "C) Joe finished third.", "D) Rob finished third.", "E) Mya finished third." ], "answer": "E" }, { "id": "logical_deduction_154", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a convertible, a sedan, a station wagon, a bus, and a limousine. The sedan is newer than the station wagon. The limousine is the newest. The bus is the second-newest. The convertible is the second-oldest.", "question": "Which of the following is true?", "options": [ "A) The convertible is the second-newest.", "B) The sedan is the second-newest.", "C) The station wagon is the second-newest.", "D) The bus is the second-newest.", "E) The limousine is the second-newest." ], "answer": "D" }, { "id": "logical_deduction_155", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: oranges, apples, peaches, cantaloupes, and loquats. The loquats are less expensive than the cantaloupes. The cantaloupes are less expensive than the apples. The oranges are the most expensive. The apples are the third-most expensive.", "question": "Which of the following is true?", "options": [ "A) The oranges are the most expensive.", "B) The apples are the most expensive.", "C) The peaches are the most expensive.", "D) The cantaloupes are the most expensive.", "E) The loquats are the most expensive." ], "answer": "A" }, { "id": "logical_deduction_156", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a convertible, a bus, a minivan, a truck, and a sedan. The convertible is newer than the truck. The minivan is the newest. The bus is the third-newest. The truck is newer than the sedan.", "question": "Which of the following is true?", "options": [ "A) The convertible is the third-newest.", "B) The bus is the third-newest.", "C) The minivan is the third-newest.", "D) The truck is the third-newest.", "E) The sedan is the third-newest." ], "answer": "B" }, { "id": "logical_deduction_157", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a blue book, a purple book, a yellow book, a red book, and a gray book. The yellow book is to the right of the gray book. The purple book is to the left of the gray book. The red book is to the right of the blue book. The purple book is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The blue book is the third from the left.", "B) The purple book is the third from the left.", "C) The yellow book is the third from the left.", "D) The red book is the third from the left.", "E) The gray book is the third from the left." ], "answer": "B" }, { "id": "logical_deduction_158", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: mangoes, kiwis, plums, pears, and watermelons. The kiwis are less expensive than the plums. The pears are the third-most expensive. The kiwis are the second-cheapest. The watermelons are the most expensive.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the second-cheapest.", "B) The kiwis are the second-cheapest.", "C) The plums are the second-cheapest.", "D) The pears are the second-cheapest.", "E) The watermelons are the second-cheapest." ], "answer": "B" }, { "id": "logical_deduction_159", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a green book, a blue book, a brown book, a gray book, and a red book. The green book is to the left of the brown book. The gray book is to the left of the blue book. The green book is to the right of the blue book. The red book is the leftmost.", "question": "Which of the following is true?", "options": [ "A) The green book is the leftmost.", "B) The blue book is the leftmost.", "C) The brown book is the leftmost.", "D) The gray book is the leftmost.", "E) The red book is the leftmost." ], "answer": "E" }, { "id": "logical_deduction_160", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: an owl, a hummingbird, a crow, a hawk, and a robin. The hawk is to the right of the owl. The hummingbird is to the right of the hawk. The crow is the second from the right. The robin is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The owl is the leftmost.", "B) The hummingbird is the leftmost.", "C) The crow is the leftmost.", "D) The hawk is the leftmost.", "E) The robin is the leftmost." ], "answer": "A" }, { "id": "logical_deduction_161", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Joe, Ana, Amy, Mya, and Eve. Joe finished last. Ana finished second. Mya finished second-to-last. Eve finished below Amy.", "question": "Which of the following is true?", "options": [ "A) Joe finished second-to-last.", "B) Ana finished second-to-last.", "C) Amy finished second-to-last.", "D) Mya finished second-to-last.", "E) Eve finished second-to-last." ], "answer": "D" }, { "id": "logical_deduction_162", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Amy, Dan, Mya, Eli, and Mel. Amy finished above Mel. Mya finished first. Amy finished below Eli. Dan finished last.", "question": "Which of the following is true?", "options": [ "A) Amy finished second.", "B) Dan finished second.", "C) Mya finished second.", "D) Eli finished second.", "E) Mel finished second." ], "answer": "D" }, { "id": "logical_deduction_163", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Ana, Rob, Amy, Dan, and Joe. Rob finished below Dan. Joe finished below Ana. Joe finished above Amy. Dan finished below Amy.", "question": "Which of the following is true?", "options": [ "A) Ana finished second.", "B) Rob finished second.", "C) Amy finished second.", "D) Dan finished second.", "E) Joe finished second." ], "answer": "E" }, { "id": "logical_deduction_164", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a truck, a motorcyle, a limousine, a station wagon, and a sedan. The limousine is older than the truck. The sedan is newer than the motorcyle. The station wagon is the oldest. The limousine is newer than the sedan.", "question": "Which of the following is true?", "options": [ "A) The truck is the second-newest.", "B) The motorcyle is the second-newest.", "C) The limousine is the second-newest.", "D) The station wagon is the second-newest.", "E) The sedan is the second-newest." ], "answer": "C" }, { "id": "logical_deduction_165", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a tractor, a station wagon, a minivan, a sedan, and a hatchback. The minivan is older than the sedan. The tractor is older than the hatchback. The minivan is the third-newest. The station wagon is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The tractor is the newest.", "B) The station wagon is the newest.", "C) The minivan is the newest.", "D) The sedan is the newest.", "E) The hatchback is the newest." ], "answer": "D" }, { "id": "logical_deduction_166", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a hawk, a raven, a robin, a hummingbird, and a crow. The robin is the leftmost. The raven is the second from the left. The hawk is the second from the right. The crow is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The hawk is the rightmost.", "B) The raven is the rightmost.", "C) The robin is the rightmost.", "D) The hummingbird is the rightmost.", "E) The crow is the rightmost." ], "answer": "D" }, { "id": "logical_deduction_167", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Ana, Amy, Dan, Mya, and Eve. Ana finished below Mya. Dan finished above Amy. Mya finished second-to-last. Eve finished below Amy.", "question": "Which of the following is true?", "options": [ "A) Ana finished second-to-last.", "B) Amy finished second-to-last.", "C) Dan finished second-to-last.", "D) Mya finished second-to-last.", "E) Eve finished second-to-last." ], "answer": "D" }, { "id": "logical_deduction_168", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a bus, a truck, a motorcyle, a sedan, and a hatchback. The sedan is the second-oldest. The hatchback is newer than the motorcyle. The motorcyle is newer than the sedan. The hatchback is older than the truck.", "question": "Which of the following is true?", "options": [ "A) The bus is the third-newest.", "B) The truck is the third-newest.", "C) The motorcyle is the third-newest.", "D) The sedan is the third-newest.", "E) The hatchback is the third-newest." ], "answer": "C" }, { "id": "logical_deduction_169", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a tractor, a station wagon, a bus, a motorcyle, and a minivan. The minivan is older than the motorcyle. The bus is the newest. The tractor is the third-newest. The station wagon is the second-oldest.", "question": "Which of the following is true?", "options": [ "A) The tractor is the second-oldest.", "B) The station wagon is the second-oldest.", "C) The bus is the second-oldest.", "D) The motorcyle is the second-oldest.", "E) The minivan is the second-oldest." ], "answer": "B" }, { "id": "logical_deduction_170", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a blue jay, a robin, a cardinal, a hawk, and a falcon. The blue jay is the rightmost. The robin is to the right of the falcon. The cardinal is to the left of the hawk. The falcon is to the right of the hawk.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the leftmost.", "B) The robin is the leftmost.", "C) The cardinal is the leftmost.", "D) The hawk is the leftmost.", "E) The falcon is the leftmost." ], "answer": "C" }, { "id": "logical_deduction_171", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Ana, Amy, Dan, Mya, and Eve. Ana finished below Mya. Dan finished above Amy. Mya finished second-to-last. Eve finished below Amy.", "question": "Which of the following is true?", "options": [ "A) Ana finished second.", "B) Amy finished second.", "C) Dan finished second.", "D) Mya finished second.", "E) Eve finished second." ], "answer": "B" }, { "id": "logical_deduction_172", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: oranges, cantaloupes, peaches, loquats, and kiwis. The peaches are more expensive than the oranges. The cantaloupes are more expensive than the peaches. The kiwis are the third-most expensive. The loquats are the second-cheapest.", "question": "Which of the following is true?", "options": [ "A) The oranges are the second-cheapest.", "B) The cantaloupes are the second-cheapest.", "C) The peaches are the second-cheapest.", "D) The loquats are the second-cheapest.", "E) The kiwis are the second-cheapest." ], "answer": "D" }, { "id": "logical_deduction_173", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a blue book, a red book, a brown book, a yellow book, and an orange book. The red book is to the left of the brown book. The yellow book is to the right of the orange book. The brown book is the second from the left. The yellow book is to the left of the blue book.", "question": "Which of the following is true?", "options": [ "A) The blue book is the rightmost.", "B) The red book is the rightmost.", "C) The brown book is the rightmost.", "D) The yellow book is the rightmost.", "E) The orange book is the rightmost." ], "answer": "A" }, { "id": "logical_deduction_174", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a yellow book, a gray book, a red book, a black book, and a white book. The gray book is to the left of the yellow book. The white book is to the left of the red book. The black book is to the right of the red book. The black book is to the left of the gray book.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the leftmost.", "B) The gray book is the leftmost.", "C) The red book is the leftmost.", "D) The black book is the leftmost.", "E) The white book is the leftmost." ], "answer": "E" }, { "id": "logical_deduction_175", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a black book, a brown book, a yellow book, an orange book, and a red book. The black book is to the left of the yellow book. The red book is the third from the left. The brown book is the second from the left. The yellow book is to the left of the orange book.", "question": "Which of the following is true?", "options": [ "A) The black book is the leftmost.", "B) The brown book is the leftmost.", "C) The yellow book is the leftmost.", "D) The orange book is the leftmost.", "E) The red book is the leftmost." ], "answer": "A" }, { "id": "logical_deduction_176", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Rob, Eve, Eli, Amy, and Dan. Dan finished second. Amy finished below Eve. Dan finished above Eve. Amy finished above Eli.", "question": "Which of the following is true?", "options": [ "A) Rob finished last.", "B) Eve finished last.", "C) Eli finished last.", "D) Amy finished last.", "E) Dan finished last." ], "answer": "C" }, { "id": "logical_deduction_177", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a green book, a blue book, a white book, a purple book, and a yellow book. The blue book is to the right of the yellow book. The white book is to the left of the yellow book. The blue book is the second from the right. The purple book is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The green book is the rightmost.", "B) The blue book is the rightmost.", "C) The white book is the rightmost.", "D) The purple book is the rightmost.", "E) The yellow book is the rightmost." ], "answer": "A" }, { "id": "logical_deduction_178", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a minivan, a hatchback, a bus, a convertible, and a motorcyle. The hatchback is newer than the convertible. The bus is newer than the hatchback. The bus is older than the motorcyle. The minivan is the newest.", "question": "Which of the following is true?", "options": [ "A) The minivan is the second-newest.", "B) The hatchback is the second-newest.", "C) The bus is the second-newest.", "D) The convertible is the second-newest.", "E) The motorcyle is the second-newest." ], "answer": "E" }, { "id": "logical_deduction_179", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: watermelons, loquats, pears, plums, and apples. The pears are the second-cheapest. The loquats are more expensive than the pears. The plums are the second-most expensive. The watermelons are the most expensive.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the most expensive.", "B) The loquats are the most expensive.", "C) The pears are the most expensive.", "D) The plums are the most expensive.", "E) The apples are the most expensive." ], "answer": "A" }, { "id": "logical_deduction_180", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Rob, Amy, Eve, Mya, and Ana. Mya finished below Rob. Ana finished below Eve. Amy finished second. Eve finished below Mya.", "question": "Which of the following is true?", "options": [ "A) Rob finished third.", "B) Amy finished third.", "C) Eve finished third.", "D) Mya finished third.", "E) Ana finished third." ], "answer": "D" }, { "id": "logical_deduction_181", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: an owl, a crow, a raven, a robin, and a cardinal. The raven is to the right of the owl. The raven is the second from the left. The robin is to the left of the crow. The robin is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The owl is the second from the right.", "B) The crow is the second from the right.", "C) The raven is the second from the right.", "D) The robin is the second from the right.", "E) The cardinal is the second from the right." ], "answer": "D" }, { "id": "logical_deduction_182", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Mel, Dan, Amy, Joe, and Eve. Amy finished below Dan. Mel finished first. Joe finished above Dan. Eve finished last.", "question": "Which of the following is true?", "options": [ "A) Mel finished third.", "B) Dan finished third.", "C) Amy finished third.", "D) Joe finished third.", "E) Eve finished third." ], "answer": "B" }, { "id": "logical_deduction_183", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: watermelons, plums, apples, peaches, and kiwis. The apples are less expensive than the peaches. The plums are the cheapest. The kiwis are the second-cheapest. The watermelons are more expensive than the peaches.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the third-most expensive.", "B) The plums are the third-most expensive.", "C) The apples are the third-most expensive.", "D) The peaches are the third-most expensive.", "E) The kiwis are the third-most expensive." ], "answer": "C" }, { "id": "logical_deduction_184", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: watermelons, apples, kiwis, cantaloupes, and mangoes. The cantaloupes are the second-cheapest. The mangoes are more expensive than the watermelons. The kiwis are less expensive than the apples. The kiwis are more expensive than the mangoes.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the most expensive.", "B) The apples are the most expensive.", "C) The kiwis are the most expensive.", "D) The cantaloupes are the most expensive.", "E) The mangoes are the most expensive." ], "answer": "B" }, { "id": "logical_deduction_185", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a black book, a purple book, a yellow book, an orange book, and a red book. The yellow book is the rightmost. The black book is to the left of the orange book. The orange book is to the left of the purple book. The black book is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The black book is the third from the left.", "B) The purple book is the third from the left.", "C) The yellow book is the third from the left.", "D) The orange book is the third from the left.", "E) The red book is the third from the left." ], "answer": "D" }, { "id": "logical_deduction_186", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a blue book, a purple book, a yellow book, a black book, and a green book. The purple book is the third from the left. The yellow book is to the left of the black book. The green book is to the left of the purple book. The blue book is to the left of the green book.", "question": "Which of the following is true?", "options": [ "A) The blue book is the rightmost.", "B) The purple book is the rightmost.", "C) The yellow book is the rightmost.", "D) The black book is the rightmost.", "E) The green book is the rightmost." ], "answer": "D" }, { "id": "logical_deduction_187", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: watermelons, oranges, loquats, plums, and kiwis. The plums are less expensive than the kiwis. The plums are more expensive than the watermelons. The loquats are more expensive than the kiwis. The oranges are the most expensive.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the second-most expensive.", "B) The oranges are the second-most expensive.", "C) The loquats are the second-most expensive.", "D) The plums are the second-most expensive.", "E) The kiwis are the second-most expensive." ], "answer": "C" }, { "id": "logical_deduction_188", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a blue book, a purple book, a yellow book, a black book, and a green book. The purple book is the third from the left. The yellow book is to the left of the black book. The green book is to the left of the purple book. The blue book is to the left of the green book.", "question": "Which of the following is true?", "options": [ "A) The blue book is the third from the left.", "B) The purple book is the third from the left.", "C) The yellow book is the third from the left.", "D) The black book is the third from the left.", "E) The green book is the third from the left." ], "answer": "B" }, { "id": "logical_deduction_189", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: an owl, a hawk, a robin, a crow, and a raven. The hawk is to the left of the owl. The raven is the second from the right. The robin is to the left of the raven. The owl is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The owl is the second from the left.", "B) The hawk is the second from the left.", "C) The robin is the second from the left.", "D) The crow is the second from the left.", "E) The raven is the second from the left." ], "answer": "A" }, { "id": "logical_deduction_190", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a truck, a motorcyle, a limousine, a station wagon, and a sedan. The limousine is older than the truck. The sedan is newer than the motorcyle. The station wagon is the oldest. The limousine is newer than the sedan.", "question": "Which of the following is true?", "options": [ "A) The truck is the oldest.", "B) The motorcyle is the oldest.", "C) The limousine is the oldest.", "D) The station wagon is the oldest.", "E) The sedan is the oldest." ], "answer": "D" }, { "id": "logical_deduction_191", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Ana, Rob, Amy, Dan, and Joe. Rob finished below Dan. Joe finished below Ana. Joe finished above Amy. Dan finished below Amy.", "question": "Which of the following is true?", "options": [ "A) Ana finished second-to-last.", "B) Rob finished second-to-last.", "C) Amy finished second-to-last.", "D) Dan finished second-to-last.", "E) Joe finished second-to-last." ], "answer": "D" }, { "id": "logical_deduction_192", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a convertible, a bus, a minivan, a truck, and a sedan. The convertible is newer than the truck. The minivan is the newest. The bus is the third-newest. The truck is newer than the sedan.", "question": "Which of the following is true?", "options": [ "A) The convertible is the second-oldest.", "B) The bus is the second-oldest.", "C) The minivan is the second-oldest.", "D) The truck is the second-oldest.", "E) The sedan is the second-oldest." ], "answer": "D" }, { "id": "logical_deduction_193", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: loquats, pears, watermelons, kiwis, and plums. The loquats are the third-most expensive. The loquats are more expensive than the watermelons. The plums are less expensive than the watermelons. The kiwis are more expensive than the pears.", "question": "Which of the following is true?", "options": [ "A) The loquats are the third-most expensive.", "B) The pears are the third-most expensive.", "C) The watermelons are the third-most expensive.", "D) The kiwis are the third-most expensive.", "E) The plums are the third-most expensive." ], "answer": "A" }, { "id": "logical_deduction_194", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a robin, a quail, an owl, a crow, and a hawk. The hawk is the third from the left. The hawk is to the right of the crow. The quail is to the left of the crow. The robin is to the right of the owl.", "question": "Which of the following is true?", "options": [ "A) The robin is the rightmost.", "B) The quail is the rightmost.", "C) The owl is the rightmost.", "D) The crow is the rightmost.", "E) The hawk is the rightmost." ], "answer": "A" }, { "id": "logical_deduction_195", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Eve, Amy, Ada, Rob, and Joe. Amy finished second-to-last. Rob finished below Eve. Ada finished above Joe. Joe finished second.", "question": "Which of the following is true?", "options": [ "A) Eve finished third.", "B) Amy finished third.", "C) Ada finished third.", "D) Rob finished third.", "E) Joe finished third." ], "answer": "A" }, { "id": "logical_deduction_196", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a gray book, a red book, a yellow book, a blue book, and an orange book. The gray book is to the right of the yellow book. The orange book is to the right of the red book. The blue book is the rightmost. The gray book is to the left of the red book.", "question": "Which of the following is true?", "options": [ "A) The gray book is the third from the left.", "B) The red book is the third from the left.", "C) The yellow book is the third from the left.", "D) The blue book is the third from the left.", "E) The orange book is the third from the left." ], "answer": "B" }, { "id": "logical_deduction_197", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a white book, an orange book, a yellow book, a blue book, and a red book. The yellow book is to the left of the white book. The red book is to the right of the blue book. The yellow book is to the right of the orange book. The blue book is to the right of the white book.", "question": "Which of the following is true?", "options": [ "A) The white book is the leftmost.", "B) The orange book is the leftmost.", "C) The yellow book is the leftmost.", "D) The blue book is the leftmost.", "E) The red book is the leftmost." ], "answer": "B" }, { "id": "logical_deduction_198", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a blue jay, a robin, a cardinal, a hawk, and a falcon. The blue jay is the rightmost. The robin is to the right of the falcon. The cardinal is to the left of the hawk. The falcon is to the right of the hawk.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the third from the left.", "B) The robin is the third from the left.", "C) The cardinal is the third from the left.", "D) The hawk is the third from the left.", "E) The falcon is the third from the left." ], "answer": "E" }, { "id": "logical_deduction_199", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: watermelons, apples, kiwis, cantaloupes, and mangoes. The cantaloupes are the second-cheapest. The mangoes are more expensive than the watermelons. The kiwis are less expensive than the apples. The kiwis are more expensive than the mangoes.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the third-most expensive.", "B) The apples are the third-most expensive.", "C) The kiwis are the third-most expensive.", "D) The cantaloupes are the third-most expensive.", "E) The mangoes are the third-most expensive." ], "answer": "E" }, { "id": "logical_deduction_200", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Joe, Mya, Eve, Amy, and Ana. Eve finished below Joe. Ana finished below Amy. Eve finished above Amy. Mya finished above Joe.", "question": "Which of the following is true?", "options": [ "A) Joe finished second.", "B) Mya finished second.", "C) Eve finished second.", "D) Amy finished second.", "E) Ana finished second." ], "answer": "A" }, { "id": "logical_deduction_201", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Rob, Amy, Joe, Eve, and Dan. Rob finished below Dan. Joe finished second. Joe finished above Eve. Eve finished above Dan.", "question": "Which of the following is true?", "options": [ "A) Rob finished last.", "B) Amy finished last.", "C) Joe finished last.", "D) Eve finished last.", "E) Dan finished last." ], "answer": "A" }, { "id": "logical_deduction_202", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a hatchback, a bus, a convertible, a tractor, and a minivan. The tractor is older than the bus. The minivan is newer than the bus. The hatchback is the second-newest. The minivan is older than the convertible.", "question": "Which of the following is true?", "options": [ "A) The hatchback is the oldest.", "B) The bus is the oldest.", "C) The convertible is the oldest.", "D) The tractor is the oldest.", "E) The minivan is the oldest." ], "answer": "D" }, { "id": "logical_deduction_203", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: mangoes, cantaloupes, plums, oranges, and watermelons. The oranges are more expensive than the watermelons. The watermelons are the second-cheapest. The plums are less expensive than the cantaloupes. The plums are the second-most expensive.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the third-most expensive.", "B) The cantaloupes are the third-most expensive.", "C) The plums are the third-most expensive.", "D) The oranges are the third-most expensive.", "E) The watermelons are the third-most expensive." ], "answer": "D" }, { "id": "logical_deduction_204", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Joe, Eve, Mya, Rob, and Dan. Joe finished below Dan. Mya finished first. Dan finished below Rob. Eve finished above Rob.", "question": "Which of the following is true?", "options": [ "A) Joe finished second.", "B) Eve finished second.", "C) Mya finished second.", "D) Rob finished second.", "E) Dan finished second." ], "answer": "B" }, { "id": "logical_deduction_205", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: mangoes, cantaloupes, plums, oranges, and watermelons. The oranges are more expensive than the watermelons. The watermelons are the second-cheapest. The plums are less expensive than the cantaloupes. The plums are the second-most expensive.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the most expensive.", "B) The cantaloupes are the most expensive.", "C) The plums are the most expensive.", "D) The oranges are the most expensive.", "E) The watermelons are the most expensive." ], "answer": "B" }, { "id": "logical_deduction_206", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a cardinal, a hawk, a hummingbird, a raven, and an owl. The raven is to the left of the hummingbird. The hawk is to the left of the owl. The cardinal is to the left of the hawk. The raven is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the second from the right.", "B) The hawk is the second from the right.", "C) The hummingbird is the second from the right.", "D) The raven is the second from the right.", "E) The owl is the second from the right." ], "answer": "D" }, { "id": "logical_deduction_207", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a blue book, a purple book, a yellow book, a red book, and a gray book. The yellow book is to the right of the gray book. The purple book is to the left of the gray book. The red book is to the right of the blue book. The purple book is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The blue book is the rightmost.", "B) The purple book is the rightmost.", "C) The yellow book is the rightmost.", "D) The red book is the rightmost.", "E) The gray book is the rightmost." ], "answer": "C" }, { "id": "logical_deduction_208", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Ada, Eli, Amy, Joe, and Mel. Ada finished above Eli. Amy finished below Mel. Ada finished second. Mel finished below Eli.", "question": "Which of the following is true?", "options": [ "A) Ada finished second-to-last.", "B) Eli finished second-to-last.", "C) Amy finished second-to-last.", "D) Joe finished second-to-last.", "E) Mel finished second-to-last." ], "answer": "E" }, { "id": "logical_deduction_209", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a blue jay, a raven, a crow, a falcon, and a quail. The crow is to the left of the quail. The falcon is the leftmost. The blue jay is to the right of the quail. The raven is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the second from the right.", "B) The raven is the second from the right.", "C) The crow is the second from the right.", "D) The falcon is the second from the right.", "E) The quail is the second from the right." ], "answer": "E" }, { "id": "logical_deduction_210", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a truck, a station wagon, a motorcyle, a limousine, and a hatchback. The motorcyle is the second-newest. The truck is newer than the limousine. The motorcyle is older than the station wagon. The limousine is newer than the hatchback.", "question": "Which of the following is true?", "options": [ "A) The truck is the oldest.", "B) The station wagon is the oldest.", "C) The motorcyle is the oldest.", "D) The limousine is the oldest.", "E) The hatchback is the oldest." ], "answer": "E" }, { "id": "logical_deduction_211", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a bus, a truck, a motorcyle, a sedan, and a hatchback. The sedan is the second-oldest. The hatchback is newer than the motorcyle. The motorcyle is newer than the sedan. The hatchback is older than the truck.", "question": "Which of the following is true?", "options": [ "A) The bus is the newest.", "B) The truck is the newest.", "C) The motorcyle is the newest.", "D) The sedan is the newest.", "E) The hatchback is the newest." ], "answer": "B" }, { "id": "logical_deduction_212", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: apples, loquats, cantaloupes, watermelons, and kiwis. The watermelons are more expensive than the loquats. The watermelons are less expensive than the kiwis. The loquats are more expensive than the apples. The cantaloupes are the cheapest.", "question": "Which of the following is true?", "options": [ "A) The apples are the third-most expensive.", "B) The loquats are the third-most expensive.", "C) The cantaloupes are the third-most expensive.", "D) The watermelons are the third-most expensive.", "E) The kiwis are the third-most expensive." ], "answer": "B" }, { "id": "logical_deduction_213", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Amy, Eve, Mel, Mya, and Rob. Eve finished last. Rob finished above Mel. Amy finished above Rob. Mya finished third.", "question": "Which of the following is true?", "options": [ "A) Amy finished second-to-last.", "B) Eve finished second-to-last.", "C) Mel finished second-to-last.", "D) Mya finished second-to-last.", "E) Rob finished second-to-last." ], "answer": "C" }, { "id": "logical_deduction_214", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: peaches, watermelons, pears, apples, and cantaloupes. The watermelons are the second-cheapest. The apples are the cheapest. The peaches are the most expensive. The pears are less expensive than the cantaloupes.", "question": "Which of the following is true?", "options": [ "A) The peaches are the second-cheapest.", "B) The watermelons are the second-cheapest.", "C) The pears are the second-cheapest.", "D) The apples are the second-cheapest.", "E) The cantaloupes are the second-cheapest." ], "answer": "B" }, { "id": "logical_deduction_215", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a tractor, a truck, a bus, a minivan, and a convertible. The bus is newer than the tractor. The convertible is older than the tractor. The truck is the second-newest. The minivan is older than the convertible.", "question": "Which of the following is true?", "options": [ "A) The tractor is the second-oldest.", "B) The truck is the second-oldest.", "C) The bus is the second-oldest.", "D) The minivan is the second-oldest.", "E) The convertible is the second-oldest." ], "answer": "E" }, { "id": "logical_deduction_216", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Eve, Amy, Ada, Rob, and Joe. Amy finished second-to-last. Rob finished below Eve. Ada finished above Joe. Joe finished second.", "question": "Which of the following is true?", "options": [ "A) Eve finished second.", "B) Amy finished second.", "C) Ada finished second.", "D) Rob finished second.", "E) Joe finished second." ], "answer": "E" }, { "id": "logical_deduction_217", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: mangoes, kiwis, plums, pears, and watermelons. The kiwis are less expensive than the plums. The pears are the third-most expensive. The kiwis are the second-cheapest. The watermelons are the most expensive.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the second-most expensive.", "B) The kiwis are the second-most expensive.", "C) The plums are the second-most expensive.", "D) The pears are the second-most expensive.", "E) The watermelons are the second-most expensive." ], "answer": "C" }, { "id": "logical_deduction_218", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: apples, loquats, cantaloupes, watermelons, and kiwis. The watermelons are more expensive than the loquats. The watermelons are less expensive than the kiwis. The loquats are more expensive than the apples. The cantaloupes are the cheapest.", "question": "Which of the following is true?", "options": [ "A) The apples are the most expensive.", "B) The loquats are the most expensive.", "C) The cantaloupes are the most expensive.", "D) The watermelons are the most expensive.", "E) The kiwis are the most expensive." ], "answer": "E" }, { "id": "logical_deduction_219", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a green book, an orange book, a brown book, a yellow book, and a blue book. The orange book is to the right of the yellow book. The green book is the rightmost. The yellow book is to the right of the blue book. The orange book is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The green book is the third from the left.", "B) The orange book is the third from the left.", "C) The brown book is the third from the left.", "D) The yellow book is the third from the left.", "E) The blue book is the third from the left." ], "answer": "B" }, { "id": "logical_deduction_220", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Dan, Mel, Ana, Eli, and Rob. Rob finished above Mel. Mel finished second. Ana finished above Eli. Dan finished last.", "question": "Which of the following is true?", "options": [ "A) Dan finished first.", "B) Mel finished first.", "C) Ana finished first.", "D) Eli finished first.", "E) Rob finished first." ], "answer": "E" }, { "id": "logical_deduction_221", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: oranges, apples, peaches, cantaloupes, and loquats. The loquats are less expensive than the cantaloupes. The cantaloupes are less expensive than the apples. The oranges are the most expensive. The apples are the third-most expensive.", "question": "Which of the following is true?", "options": [ "A) The oranges are the cheapest.", "B) The apples are the cheapest.", "C) The peaches are the cheapest.", "D) The cantaloupes are the cheapest.", "E) The loquats are the cheapest." ], "answer": "E" }, { "id": "logical_deduction_222", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a blue book, a red book, a purple book, a gray book, and a white book. The white book is to the right of the gray book. The blue book is the leftmost. The red book is to the left of the gray book. The red book is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The blue book is the second from the left.", "B) The red book is the second from the left.", "C) The purple book is the second from the left.", "D) The gray book is the second from the left.", "E) The white book is the second from the left." ], "answer": "C" }, { "id": "logical_deduction_223", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a truck, a station wagon, a motorcyle, a limousine, and a hatchback. The motorcyle is the second-newest. The truck is newer than the limousine. The motorcyle is older than the station wagon. The limousine is newer than the hatchback.", "question": "Which of the following is true?", "options": [ "A) The truck is the second-newest.", "B) The station wagon is the second-newest.", "C) The motorcyle is the second-newest.", "D) The limousine is the second-newest.", "E) The hatchback is the second-newest." ], "answer": "C" }, { "id": "logical_deduction_224", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a falcon, a raven, a cardinal, a hawk, and a crow. The cardinal is the second from the right. The hawk is to the right of the falcon. The raven is the second from the left. The crow is the rightmost.", "question": "Which of the following is true?", "options": [ "A) The falcon is the second from the right.", "B) The raven is the second from the right.", "C) The cardinal is the second from the right.", "D) The hawk is the second from the right.", "E) The crow is the second from the right." ], "answer": "C" }, { "id": "logical_deduction_225", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: mangoes, kiwis, watermelons, oranges, and apples. The oranges are the cheapest. The kiwis are less expensive than the mangoes. The watermelons are more expensive than the apples. The watermelons are less expensive than the kiwis.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the second-most expensive.", "B) The kiwis are the second-most expensive.", "C) The watermelons are the second-most expensive.", "D) The oranges are the second-most expensive.", "E) The apples are the second-most expensive." ], "answer": "B" }, { "id": "logical_deduction_226", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a green book, an orange book, a brown book, a yellow book, and a blue book. The orange book is to the right of the yellow book. The green book is the rightmost. The yellow book is to the right of the blue book. The orange book is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The green book is the leftmost.", "B) The orange book is the leftmost.", "C) The brown book is the leftmost.", "D) The yellow book is the leftmost.", "E) The blue book is the leftmost." ], "answer": "E" }, { "id": "logical_deduction_227", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a minivan, a limousine, a sedan, a tractor, and a hatchback. The tractor is the second-newest. The limousine is newer than the hatchback. The limousine is older than the sedan. The minivan is newer than the sedan.", "question": "Which of the following is true?", "options": [ "A) The minivan is the third-newest.", "B) The limousine is the third-newest.", "C) The sedan is the third-newest.", "D) The tractor is the third-newest.", "E) The hatchback is the third-newest." ], "answer": "C" }, { "id": "logical_deduction_228", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a robin, an owl, a quail, a hummingbird, and a crow. The crow is to the right of the robin. The quail is the leftmost. The hummingbird is to the right of the owl. The crow is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The robin is the third from the left.", "B) The owl is the third from the left.", "C) The quail is the third from the left.", "D) The hummingbird is the third from the left.", "E) The crow is the third from the left." ], "answer": "E" }, { "id": "logical_deduction_229", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: apples, mangoes, oranges, plums, and pears. The oranges are more expensive than the mangoes. The plums are the cheapest. The apples are less expensive than the mangoes. The pears are more expensive than the oranges.", "question": "Which of the following is true?", "options": [ "A) The apples are the most expensive.", "B) The mangoes are the most expensive.", "C) The oranges are the most expensive.", "D) The plums are the most expensive.", "E) The pears are the most expensive." ], "answer": "E" }, { "id": "logical_deduction_230", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: watermelons, oranges, loquats, plums, and kiwis. The plums are less expensive than the kiwis. The plums are more expensive than the watermelons. The loquats are more expensive than the kiwis. The oranges are the most expensive.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the most expensive.", "B) The oranges are the most expensive.", "C) The loquats are the most expensive.", "D) The plums are the most expensive.", "E) The kiwis are the most expensive." ], "answer": "B" }, { "id": "logical_deduction_231", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: cantaloupes, kiwis, oranges, mangoes, and peaches. The kiwis are less expensive than the mangoes. The peaches are less expensive than the oranges. The oranges are the second-most expensive. The mangoes are the second-cheapest.", "question": "Which of the following is true?", "options": [ "A) The cantaloupes are the most expensive.", "B) The kiwis are the most expensive.", "C) The oranges are the most expensive.", "D) The mangoes are the most expensive.", "E) The peaches are the most expensive." ], "answer": "A" }, { "id": "logical_deduction_232", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Dan, Mel, Ana, Eli, and Rob. Rob finished above Mel. Mel finished second. Ana finished above Eli. Dan finished last.", "question": "Which of the following is true?", "options": [ "A) Dan finished second.", "B) Mel finished second.", "C) Ana finished second.", "D) Eli finished second.", "E) Rob finished second." ], "answer": "B" }, { "id": "logical_deduction_233", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: oranges, cantaloupes, peaches, loquats, and kiwis. The peaches are more expensive than the oranges. The cantaloupes are more expensive than the peaches. The kiwis are the third-most expensive. The loquats are the second-cheapest.", "question": "Which of the following is true?", "options": [ "A) The oranges are the second-most expensive.", "B) The cantaloupes are the second-most expensive.", "C) The peaches are the second-most expensive.", "D) The loquats are the second-most expensive.", "E) The kiwis are the second-most expensive." ], "answer": "C" }, { "id": "logical_deduction_234", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a crow, a robin, a quail, a blue jay, and a falcon. The robin is to the left of the quail. The falcon is the third from the left. The crow is to the left of the falcon. The blue jay is the leftmost.", "question": "Which of the following is true?", "options": [ "A) The crow is the leftmost.", "B) The robin is the leftmost.", "C) The quail is the leftmost.", "D) The blue jay is the leftmost.", "E) The falcon is the leftmost." ], "answer": "D" }, { "id": "logical_deduction_235", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a sedan, a convertible, a station wagon, a bus, and a motorcyle. The sedan is the second-newest. The station wagon is newer than the convertible. The sedan is older than the motorcyle. The bus is the oldest.", "question": "Which of the following is true?", "options": [ "A) The sedan is the second-newest.", "B) The convertible is the second-newest.", "C) The station wagon is the second-newest.", "D) The bus is the second-newest.", "E) The motorcyle is the second-newest." ], "answer": "A" }, { "id": "logical_deduction_236", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a brown book, a yellow book, an orange book, a green book, and a gray book. The green book is to the left of the gray book. The brown book is the third from the left. The gray book is the second from the right. The yellow book is to the left of the green book.", "question": "Which of the following is true?", "options": [ "A) The brown book is the leftmost.", "B) The yellow book is the leftmost.", "C) The orange book is the leftmost.", "D) The green book is the leftmost.", "E) The gray book is the leftmost." ], "answer": "B" }, { "id": "logical_deduction_237", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: apples, mangoes, oranges, plums, and pears. The oranges are more expensive than the mangoes. The plums are the cheapest. The apples are less expensive than the mangoes. The pears are more expensive than the oranges.", "question": "Which of the following is true?", "options": [ "A) The apples are the third-most expensive.", "B) The mangoes are the third-most expensive.", "C) The oranges are the third-most expensive.", "D) The plums are the third-most expensive.", "E) The pears are the third-most expensive." ], "answer": "B" }, { "id": "logical_deduction_238", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a robin, an owl, a quail, a hummingbird, and a crow. The crow is to the right of the robin. The quail is the leftmost. The hummingbird is to the right of the owl. The crow is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The robin is the second from the right.", "B) The owl is the second from the right.", "C) The quail is the second from the right.", "D) The hummingbird is the second from the right.", "E) The crow is the second from the right." ], "answer": "B" }, { "id": "logical_deduction_239", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Eve, Amy, Ada, Rob, and Joe. Amy finished second-to-last. Rob finished below Eve. Ada finished above Joe. Joe finished second.", "question": "Which of the following is true?", "options": [ "A) Eve finished first.", "B) Amy finished first.", "C) Ada finished first.", "D) Rob finished first.", "E) Joe finished first." ], "answer": "C" }, { "id": "logical_deduction_240", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: kiwis, pears, peaches, loquats, and apples. The loquats are more expensive than the kiwis. The pears are more expensive than the peaches. The apples are more expensive than the loquats. The apples are less expensive than the peaches.", "question": "Which of the following is true?", "options": [ "A) The kiwis are the third-most expensive.", "B) The pears are the third-most expensive.", "C) The peaches are the third-most expensive.", "D) The loquats are the third-most expensive.", "E) The apples are the third-most expensive." ], "answer": "E" }, { "id": "logical_deduction_241", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a yellow book, a green book, a gray book, a blue book, and an orange book. The gray book is to the left of the green book. The gray book is the second from the right. The yellow book is to the right of the orange book. The blue book is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the second from the right.", "B) The green book is the second from the right.", "C) The gray book is the second from the right.", "D) The blue book is the second from the right.", "E) The orange book is the second from the right." ], "answer": "C" }, { "id": "logical_deduction_242", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a falcon, a raven, a cardinal, a hawk, and a crow. The cardinal is the second from the right. The hawk is to the right of the falcon. The raven is the second from the left. The crow is the rightmost.", "question": "Which of the following is true?", "options": [ "A) The falcon is the rightmost.", "B) The raven is the rightmost.", "C) The cardinal is the rightmost.", "D) The hawk is the rightmost.", "E) The crow is the rightmost." ], "answer": "E" }, { "id": "logical_deduction_243", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Rob, Ada, Dan, Joe, and Mel. Ada finished above Mel. Mel finished above Dan. Joe finished below Dan. Ada finished second.", "question": "Which of the following is true?", "options": [ "A) Rob finished second.", "B) Ada finished second.", "C) Dan finished second.", "D) Joe finished second.", "E) Mel finished second." ], "answer": "B" }, { "id": "logical_deduction_244", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Amy, Mel, Rob, Joe, and Ada. Joe finished second. Joe finished below Amy. Mel finished second-to-last. Ada finished last.", "question": "Which of the following is true?", "options": [ "A) Amy finished third.", "B) Mel finished third.", "C) Rob finished third.", "D) Joe finished third.", "E) Ada finished third." ], "answer": "C" }, { "id": "logical_deduction_245", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Ana, Amy, Dan, Mya, and Eve. Ana finished below Mya. Dan finished above Amy. Mya finished second-to-last. Eve finished below Amy.", "question": "Which of the following is true?", "options": [ "A) Ana finished first.", "B) Amy finished first.", "C) Dan finished first.", "D) Mya finished first.", "E) Eve finished first." ], "answer": "C" }, { "id": "logical_deduction_246", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a white book, an orange book, a yellow book, a blue book, and a red book. The yellow book is to the left of the white book. The red book is to the right of the blue book. The yellow book is to the right of the orange book. The blue book is to the right of the white book.", "question": "Which of the following is true?", "options": [ "A) The white book is the third from the left.", "B) The orange book is the third from the left.", "C) The yellow book is the third from the left.", "D) The blue book is the third from the left.", "E) The red book is the third from the left." ], "answer": "A" }, { "id": "logical_deduction_247", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: watermelons, oranges, loquats, plums, and kiwis. The plums are less expensive than the kiwis. The plums are more expensive than the watermelons. The loquats are more expensive than the kiwis. The oranges are the most expensive.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the third-most expensive.", "B) The oranges are the third-most expensive.", "C) The loquats are the third-most expensive.", "D) The plums are the third-most expensive.", "E) The kiwis are the third-most expensive." ], "answer": "E" }, { "id": "logical_deduction_248", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a hawk, a raven, a robin, a hummingbird, and a crow. The robin is the leftmost. The raven is the second from the left. The hawk is the second from the right. The crow is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The hawk is the third from the left.", "B) The raven is the third from the left.", "C) The robin is the third from the left.", "D) The hummingbird is the third from the left.", "E) The crow is the third from the left." ], "answer": "E" }, { "id": "logical_deduction_249", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a hawk, a raven, a robin, a hummingbird, and a crow. The robin is the leftmost. The raven is the second from the left. The hawk is the second from the right. The crow is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The hawk is the second from the left.", "B) The raven is the second from the left.", "C) The robin is the second from the left.", "D) The hummingbird is the second from the left.", "E) The crow is the second from the left." ], "answer": "B" }, { "id": "logical_deduction_250", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Joe, Eve, Mya, Rob, and Dan. Joe finished below Dan. Mya finished first. Dan finished below Rob. Eve finished above Rob.", "question": "Which of the following is true?", "options": [ "A) Joe finished first.", "B) Eve finished first.", "C) Mya finished first.", "D) Rob finished first.", "E) Dan finished first." ], "answer": "C" }, { "id": "logical_deduction_251", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: watermelons, apples, kiwis, cantaloupes, and mangoes. The cantaloupes are the second-cheapest. The mangoes are more expensive than the watermelons. The kiwis are less expensive than the apples. The kiwis are more expensive than the mangoes.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the second-most expensive.", "B) The apples are the second-most expensive.", "C) The kiwis are the second-most expensive.", "D) The cantaloupes are the second-most expensive.", "E) The mangoes are the second-most expensive." ], "answer": "C" }, { "id": "logical_deduction_252", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: mangoes, kiwis, watermelons, oranges, and apples. The oranges are the cheapest. The kiwis are less expensive than the mangoes. The watermelons are more expensive than the apples. The watermelons are less expensive than the kiwis.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the cheapest.", "B) The kiwis are the cheapest.", "C) The watermelons are the cheapest.", "D) The oranges are the cheapest.", "E) The apples are the cheapest." ], "answer": "D" }, { "id": "logical_deduction_253", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: peaches, watermelons, pears, apples, and cantaloupes. The watermelons are the second-cheapest. The apples are the cheapest. The peaches are the most expensive. The pears are less expensive than the cantaloupes.", "question": "Which of the following is true?", "options": [ "A) The peaches are the second-most expensive.", "B) The watermelons are the second-most expensive.", "C) The pears are the second-most expensive.", "D) The apples are the second-most expensive.", "E) The cantaloupes are the second-most expensive." ], "answer": "E" }, { "id": "logical_deduction_254", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: apples, mangoes, oranges, plums, and pears. The oranges are more expensive than the mangoes. The plums are the cheapest. The apples are less expensive than the mangoes. The pears are more expensive than the oranges.", "question": "Which of the following is true?", "options": [ "A) The apples are the second-most expensive.", "B) The mangoes are the second-most expensive.", "C) The oranges are the second-most expensive.", "D) The plums are the second-most expensive.", "E) The pears are the second-most expensive." ], "answer": "C" }, { "id": "logical_deduction_255", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a crow, a robin, a quail, a blue jay, and a falcon. The robin is to the left of the quail. The falcon is the third from the left. The crow is to the left of the falcon. The blue jay is the leftmost.", "question": "Which of the following is true?", "options": [ "A) The crow is the rightmost.", "B) The robin is the rightmost.", "C) The quail is the rightmost.", "D) The blue jay is the rightmost.", "E) The falcon is the rightmost." ], "answer": "C" }, { "id": "logical_deduction_256", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Amy, Eve, Mel, Mya, and Rob. Eve finished last. Rob finished above Mel. Amy finished above Rob. Mya finished third.", "question": "Which of the following is true?", "options": [ "A) Amy finished last.", "B) Eve finished last.", "C) Mel finished last.", "D) Mya finished last.", "E) Rob finished last." ], "answer": "B" }, { "id": "logical_deduction_257", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: watermelons, apples, mangoes, pears, and cantaloupes. The watermelons are more expensive than the cantaloupes. The mangoes are less expensive than the pears. The apples are the second-cheapest. The watermelons are less expensive than the mangoes.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the most expensive.", "B) The apples are the most expensive.", "C) The mangoes are the most expensive.", "D) The pears are the most expensive.", "E) The cantaloupes are the most expensive." ], "answer": "D" }, { "id": "logical_deduction_258", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a robin, a quail, an owl, a crow, and a hawk. The hawk is the third from the left. The hawk is to the right of the crow. The quail is to the left of the crow. The robin is to the right of the owl.", "question": "Which of the following is true?", "options": [ "A) The robin is the second from the left.", "B) The quail is the second from the left.", "C) The owl is the second from the left.", "D) The crow is the second from the left.", "E) The hawk is the second from the left." ], "answer": "D" }, { "id": "logical_deduction_259", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Joe, Mya, Eve, Amy, and Ana. Eve finished below Joe. Ana finished below Amy. Eve finished above Amy. Mya finished above Joe.", "question": "Which of the following is true?", "options": [ "A) Joe finished first.", "B) Mya finished first.", "C) Eve finished first.", "D) Amy finished first.", "E) Ana finished first." ], "answer": "B" }, { "id": "logical_deduction_260", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a robin, an owl, a quail, a hummingbird, and a crow. The crow is to the right of the robin. The quail is the leftmost. The hummingbird is to the right of the owl. The crow is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The robin is the rightmost.", "B) The owl is the rightmost.", "C) The quail is the rightmost.", "D) The hummingbird is the rightmost.", "E) The crow is the rightmost." ], "answer": "D" }, { "id": "logical_deduction_261", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a hatchback, a bus, a convertible, a tractor, and a minivan. The tractor is older than the bus. The minivan is newer than the bus. The hatchback is the second-newest. The minivan is older than the convertible.", "question": "Which of the following is true?", "options": [ "A) The hatchback is the second-newest.", "B) The bus is the second-newest.", "C) The convertible is the second-newest.", "D) The tractor is the second-newest.", "E) The minivan is the second-newest." ], "answer": "A" }, { "id": "logical_deduction_262", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a white book, a gray book, a purple book, a yellow book, and a black book. The yellow book is to the left of the white book. The black book is to the left of the yellow book. The purple book is the rightmost. The white book is to the left of the gray book.", "question": "Which of the following is true?", "options": [ "A) The white book is the rightmost.", "B) The gray book is the rightmost.", "C) The purple book is the rightmost.", "D) The yellow book is the rightmost.", "E) The black book is the rightmost." ], "answer": "C" }, { "id": "logical_deduction_263", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Joe, Mya, Eve, Amy, and Ana. Eve finished below Joe. Ana finished below Amy. Eve finished above Amy. Mya finished above Joe.", "question": "Which of the following is true?", "options": [ "A) Joe finished second-to-last.", "B) Mya finished second-to-last.", "C) Eve finished second-to-last.", "D) Amy finished second-to-last.", "E) Ana finished second-to-last." ], "answer": "D" }, { "id": "logical_deduction_264", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a white book, a gray book, a purple book, a yellow book, and a black book. The yellow book is to the left of the white book. The black book is to the left of the yellow book. The purple book is the rightmost. The white book is to the left of the gray book.", "question": "Which of the following is true?", "options": [ "A) The white book is the leftmost.", "B) The gray book is the leftmost.", "C) The purple book is the leftmost.", "D) The yellow book is the leftmost.", "E) The black book is the leftmost." ], "answer": "E" }, { "id": "logical_deduction_265", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: kiwis, pears, peaches, loquats, and apples. The loquats are more expensive than the kiwis. The pears are more expensive than the peaches. The apples are more expensive than the loquats. The apples are less expensive than the peaches.", "question": "Which of the following is true?", "options": [ "A) The kiwis are the most expensive.", "B) The pears are the most expensive.", "C) The peaches are the most expensive.", "D) The loquats are the most expensive.", "E) The apples are the most expensive." ], "answer": "B" }, { "id": "logical_deduction_266", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: watermelons, loquats, pears, plums, and apples. The pears are the second-cheapest. The loquats are more expensive than the pears. The plums are the second-most expensive. The watermelons are the most expensive.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the second-most expensive.", "B) The loquats are the second-most expensive.", "C) The pears are the second-most expensive.", "D) The plums are the second-most expensive.", "E) The apples are the second-most expensive." ], "answer": "D" }, { "id": "logical_deduction_267", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a limousine, a sedan, a bus, a hatchback, and a motorcyle. The hatchback is older than the sedan. The hatchback is the second-oldest. The limousine is older than the bus. The bus is newer than the sedan. The bus is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The limousine is the oldest.", "B) The sedan is the oldest.", "C) The bus is the oldest.", "D) The hatchback is the oldest.", "E) The motorcyle is the oldest." ], "answer": "A" }, { "id": "logical_deduction_268", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a hatchback, a bus, a convertible, a tractor, and a minivan. The tractor is older than the bus. The minivan is newer than the bus. The hatchback is the second-newest. The minivan is older than the convertible.", "question": "Which of the following is true?", "options": [ "A) The hatchback is the third-newest.", "B) The bus is the third-newest.", "C) The convertible is the third-newest.", "D) The tractor is the third-newest.", "E) The minivan is the third-newest." ], "answer": "E" }, { "id": "logical_deduction_269", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a blue book, a red book, a brown book, a yellow book, and an orange book. The red book is to the left of the brown book. The yellow book is to the right of the orange book. The brown book is the second from the left. The yellow book is to the left of the blue book.", "question": "Which of the following is true?", "options": [ "A) The blue book is the leftmost.", "B) The red book is the leftmost.", "C) The brown book is the leftmost.", "D) The yellow book is the leftmost.", "E) The orange book is the leftmost." ], "answer": "B" }, { "id": "logical_deduction_270", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a crow, a falcon, a hawk, a robin, and a quail. The robin is to the right of the falcon. The quail is to the left of the hawk. The robin is the second from the left. The hawk is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The crow is the second from the right.", "B) The falcon is the second from the right.", "C) The hawk is the second from the right.", "D) The robin is the second from the right.", "E) The quail is the second from the right." ], "answer": "C" }, { "id": "logical_deduction_271", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a convertible, a sedan, a station wagon, a bus, and a limousine. The sedan is newer than the station wagon. The limousine is the newest. The bus is the second-newest. The convertible is the second-oldest.", "question": "Which of the following is true?", "options": [ "A) The convertible is the third-newest.", "B) The sedan is the third-newest.", "C) The station wagon is the third-newest.", "D) The bus is the third-newest.", "E) The limousine is the third-newest." ], "answer": "B" }, { "id": "logical_deduction_272", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a blue jay, a raven, a crow, a falcon, and a quail. The crow is to the left of the quail. The falcon is the leftmost. The blue jay is to the right of the quail. The raven is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the leftmost.", "B) The raven is the leftmost.", "C) The crow is the leftmost.", "D) The falcon is the leftmost.", "E) The quail is the leftmost." ], "answer": "D" }, { "id": "logical_deduction_273", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a truck, a station wagon, a motorcyle, a limousine, and a hatchback. The motorcyle is the second-newest. The truck is newer than the limousine. The motorcyle is older than the station wagon. The limousine is newer than the hatchback.", "question": "Which of the following is true?", "options": [ "A) The truck is the second-oldest.", "B) The station wagon is the second-oldest.", "C) The motorcyle is the second-oldest.", "D) The limousine is the second-oldest.", "E) The hatchback is the second-oldest." ], "answer": "D" }, { "id": "logical_deduction_274", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a white book, an orange book, a yellow book, a blue book, and a red book. The yellow book is to the left of the white book. The red book is to the right of the blue book. The yellow book is to the right of the orange book. The blue book is to the right of the white book.", "question": "Which of the following is true?", "options": [ "A) The white book is the second from the left.", "B) The orange book is the second from the left.", "C) The yellow book is the second from the left.", "D) The blue book is the second from the left.", "E) The red book is the second from the left." ], "answer": "C" }, { "id": "logical_deduction_275", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Eve, Rob, Ana, Eli, and Mya. Eli finished below Mya. Eve finished first. Ana finished below Eli. Rob finished second.", "question": "Which of the following is true?", "options": [ "A) Eve finished second.", "B) Rob finished second.", "C) Ana finished second.", "D) Eli finished second.", "E) Mya finished second." ], "answer": "B" }, { "id": "logical_deduction_276", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Dan, Ana, Eli, Mya, and Amy. Amy finished above Eli. Ana finished above Amy. Mya finished below Eli. Dan finished last.", "question": "Which of the following is true?", "options": [ "A) Dan finished last.", "B) Ana finished last.", "C) Eli finished last.", "D) Mya finished last.", "E) Amy finished last." ], "answer": "A" }, { "id": "logical_deduction_277", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Dan, Mel, Ana, Eli, and Rob. Rob finished above Mel. Mel finished second. Ana finished above Eli. Dan finished last.", "question": "Which of the following is true?", "options": [ "A) Dan finished last.", "B) Mel finished last.", "C) Ana finished last.", "D) Eli finished last.", "E) Rob finished last." ], "answer": "A" }, { "id": "logical_deduction_278", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a station wagon, a tractor, a truck, a hatchback, and a minivan. The station wagon is newer than the tractor. The truck is older than the tractor. The minivan is newer than the hatchback. The hatchback is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The station wagon is the third-newest.", "B) The tractor is the third-newest.", "C) The truck is the third-newest.", "D) The hatchback is the third-newest.", "E) The minivan is the third-newest." ], "answer": "A" }, { "id": "logical_deduction_279", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a hatchback, a limousine, a sedan, a bus, and a tractor. The tractor is newer than the hatchback. The bus is the second-oldest. The hatchback is newer than the sedan. The limousine is the newest.", "question": "Which of the following is true?", "options": [ "A) The hatchback is the second-newest.", "B) The limousine is the second-newest.", "C) The sedan is the second-newest.", "D) The bus is the second-newest.", "E) The tractor is the second-newest." ], "answer": "E" }, { "id": "logical_deduction_280", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a raven, an owl, a cardinal, a hummingbird, and a robin. The cardinal is the rightmost. The raven is to the left of the owl. The robin is to the right of the hummingbird. The hummingbird is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The raven is the rightmost.", "B) The owl is the rightmost.", "C) The cardinal is the rightmost.", "D) The hummingbird is the rightmost.", "E) The robin is the rightmost." ], "answer": "C" }, { "id": "logical_deduction_281", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a falcon, a raven, a cardinal, a hawk, and a crow. The cardinal is the second from the right. The hawk is to the right of the falcon. The raven is the second from the left. The crow is the rightmost.", "question": "Which of the following is true?", "options": [ "A) The falcon is the third from the left.", "B) The raven is the third from the left.", "C) The cardinal is the third from the left.", "D) The hawk is the third from the left.", "E) The crow is the third from the left." ], "answer": "D" }, { "id": "logical_deduction_282", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a station wagon, a tractor, a truck, a hatchback, and a minivan. The station wagon is newer than the tractor. The truck is older than the tractor. The minivan is newer than the hatchback. The hatchback is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The station wagon is the newest.", "B) The tractor is the newest.", "C) The truck is the newest.", "D) The hatchback is the newest.", "E) The minivan is the newest." ], "answer": "E" }, { "id": "logical_deduction_283", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a sedan, a convertible, a station wagon, a bus, and a motorcyle. The sedan is the second-newest. The station wagon is newer than the convertible. The sedan is older than the motorcyle. The bus is the oldest.", "question": "Which of the following is true?", "options": [ "A) The sedan is the third-newest.", "B) The convertible is the third-newest.", "C) The station wagon is the third-newest.", "D) The bus is the third-newest.", "E) The motorcyle is the third-newest." ], "answer": "C" }, { "id": "logical_deduction_284", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a convertible, a sedan, a station wagon, a bus, and a limousine. The sedan is newer than the station wagon. The limousine is the newest. The bus is the second-newest. The convertible is the second-oldest.", "question": "Which of the following is true?", "options": [ "A) The convertible is the oldest.", "B) The sedan is the oldest.", "C) The station wagon is the oldest.", "D) The bus is the oldest.", "E) The limousine is the oldest." ], "answer": "C" }, { "id": "logical_deduction_285", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a truck, a motorcyle, a limousine, a station wagon, and a sedan. The limousine is older than the truck. The sedan is newer than the motorcyle. The station wagon is the oldest. The limousine is newer than the sedan.", "question": "Which of the following is true?", "options": [ "A) The truck is the third-newest.", "B) The motorcyle is the third-newest.", "C) The limousine is the third-newest.", "D) The station wagon is the third-newest.", "E) The sedan is the third-newest." ], "answer": "E" }, { "id": "logical_deduction_286", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a hatchback, a convertible, a tractor, a truck, and a limousine. The tractor is newer than the hatchback. The limousine is the second-newest. The truck is older than the hatchback. The convertible is the second-oldest.", "question": "Which of the following is true?", "options": [ "A) The hatchback is the newest.", "B) The convertible is the newest.", "C) The tractor is the newest.", "D) The truck is the newest.", "E) The limousine is the newest." ], "answer": "C" }, { "id": "logical_deduction_287", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a brown book, an orange book, a red book, a purple book, and a black book. The purple book is to the left of the black book. The red book is to the right of the brown book. The orange book is the second from the left. The black book is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The brown book is the rightmost.", "B) The orange book is the rightmost.", "C) The red book is the rightmost.", "D) The purple book is the rightmost.", "E) The black book is the rightmost." ], "answer": "C" }, { "id": "logical_deduction_288", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Rob, Eve, Eli, Amy, and Dan. Dan finished second. Amy finished below Eve. Dan finished above Eve. Amy finished above Eli.", "question": "Which of the following is true?", "options": [ "A) Rob finished second.", "B) Eve finished second.", "C) Eli finished second.", "D) Amy finished second.", "E) Dan finished second." ], "answer": "E" }, { "id": "logical_deduction_289", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Eve, Amy, Ada, Rob, and Joe. Amy finished second-to-last. Rob finished below Eve. Ada finished above Joe. Joe finished second.", "question": "Which of the following is true?", "options": [ "A) Eve finished second-to-last.", "B) Amy finished second-to-last.", "C) Ada finished second-to-last.", "D) Rob finished second-to-last.", "E) Joe finished second-to-last." ], "answer": "B" }, { "id": "logical_deduction_290", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a black book, a purple book, a yellow book, an orange book, and a red book. The yellow book is the rightmost. The black book is to the left of the orange book. The orange book is to the left of the purple book. The black book is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The black book is the leftmost.", "B) The purple book is the leftmost.", "C) The yellow book is the leftmost.", "D) The orange book is the leftmost.", "E) The red book is the leftmost." ], "answer": "E" }, { "id": "logical_deduction_291", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a white book, an orange book, a yellow book, a blue book, and a red book. The yellow book is to the left of the white book. The red book is to the right of the blue book. The yellow book is to the right of the orange book. The blue book is to the right of the white book.", "question": "Which of the following is true?", "options": [ "A) The white book is the rightmost.", "B) The orange book is the rightmost.", "C) The yellow book is the rightmost.", "D) The blue book is the rightmost.", "E) The red book is the rightmost." ], "answer": "E" }, { "id": "logical_deduction_292", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Dan, Amy, Eve, Ana, and Mya. Dan finished above Eve. Dan finished below Mya. Amy finished third. Ana finished second-to-last.", "question": "Which of the following is true?", "options": [ "A) Dan finished third.", "B) Amy finished third.", "C) Eve finished third.", "D) Ana finished third.", "E) Mya finished third." ], "answer": "B" }, { "id": "logical_deduction_293", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: watermelons, apples, kiwis, cantaloupes, and mangoes. The cantaloupes are the second-cheapest. The mangoes are more expensive than the watermelons. The kiwis are less expensive than the apples. The kiwis are more expensive than the mangoes.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the second-cheapest.", "B) The apples are the second-cheapest.", "C) The kiwis are the second-cheapest.", "D) The cantaloupes are the second-cheapest.", "E) The mangoes are the second-cheapest." ], "answer": "D" }, { "id": "logical_deduction_294", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Amy, Mel, Rob, Joe, and Ada. Joe finished second. Joe finished below Amy. Mel finished second-to-last. Ada finished last.", "question": "Which of the following is true?", "options": [ "A) Amy finished second-to-last.", "B) Mel finished second-to-last.", "C) Rob finished second-to-last.", "D) Joe finished second-to-last.", "E) Ada finished second-to-last." ], "answer": "B" }, { "id": "logical_deduction_295", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a gray book, a red book, a yellow book, a blue book, and an orange book. The gray book is to the right of the yellow book. The orange book is to the right of the red book. The blue book is the rightmost. The gray book is to the left of the red book.", "question": "Which of the following is true?", "options": [ "A) The gray book is the second from the right.", "B) The red book is the second from the right.", "C) The yellow book is the second from the right.", "D) The blue book is the second from the right.", "E) The orange book is the second from the right." ], "answer": "E" }, { "id": "logical_deduction_296", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: oranges, cantaloupes, peaches, loquats, and kiwis. The peaches are more expensive than the oranges. The cantaloupes are more expensive than the peaches. The kiwis are the third-most expensive. The loquats are the second-cheapest.", "question": "Which of the following is true?", "options": [ "A) The oranges are the third-most expensive.", "B) The cantaloupes are the third-most expensive.", "C) The peaches are the third-most expensive.", "D) The loquats are the third-most expensive.", "E) The kiwis are the third-most expensive." ], "answer": "E" }, { "id": "logical_deduction_297", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a tractor, a truck, a bus, a minivan, and a convertible. The bus is newer than the tractor. The convertible is older than the tractor. The truck is the second-newest. The minivan is older than the convertible.", "question": "Which of the following is true?", "options": [ "A) The tractor is the newest.", "B) The truck is the newest.", "C) The bus is the newest.", "D) The minivan is the newest.", "E) The convertible is the newest." ], "answer": "C" }, { "id": "logical_deduction_298", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a robin, a quail, an owl, a crow, and a hawk. The hawk is the third from the left. The hawk is to the right of the crow. The quail is to the left of the crow. The robin is to the right of the owl.", "question": "Which of the following is true?", "options": [ "A) The robin is the second from the right.", "B) The quail is the second from the right.", "C) The owl is the second from the right.", "D) The crow is the second from the right.", "E) The hawk is the second from the right." ], "answer": "C" }, { "id": "logical_deduction_299", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a green book, an orange book, a brown book, a yellow book, and a blue book. The orange book is to the right of the yellow book. The green book is the rightmost. The yellow book is to the right of the blue book. The orange book is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The green book is the rightmost.", "B) The orange book is the rightmost.", "C) The brown book is the rightmost.", "D) The yellow book is the rightmost.", "E) The blue book is the rightmost." ], "answer": "A" }, { "id": "logical_deduction_300", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a robin, a quail, an owl, a crow, and a hawk. The hawk is the third from the left. The hawk is to the right of the crow. The quail is to the left of the crow. The robin is to the right of the owl.", "question": "Which of the following is true?", "options": [ "A) The robin is the third from the left.", "B) The quail is the third from the left.", "C) The owl is the third from the left.", "D) The crow is the third from the left.", "E) The hawk is the third from the left." ], "answer": "E" }, { "id": "logical_deduction_301", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a raven, an owl, a cardinal, a hummingbird, and a robin. The cardinal is the rightmost. The raven is to the left of the owl. The robin is to the right of the hummingbird. The hummingbird is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The raven is the third from the left.", "B) The owl is the third from the left.", "C) The cardinal is the third from the left.", "D) The hummingbird is the third from the left.", "E) The robin is the third from the left." ], "answer": "D" }, { "id": "logical_deduction_302", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a hatchback, a limousine, a sedan, a bus, and a tractor. The tractor is newer than the hatchback. The bus is the second-oldest. The hatchback is newer than the sedan. The limousine is the newest.", "question": "Which of the following is true?", "options": [ "A) The hatchback is the newest.", "B) The limousine is the newest.", "C) The sedan is the newest.", "D) The bus is the newest.", "E) The tractor is the newest." ], "answer": "B" }, { "id": "logical_deduction_303", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a convertible, a sedan, a tractor, a minivan, and a limousine. The tractor is newer than the minivan. The tractor is older than the limousine. The convertible is older than the sedan. The convertible is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The convertible is the newest.", "B) The sedan is the newest.", "C) The tractor is the newest.", "D) The minivan is the newest.", "E) The limousine is the newest." ], "answer": "B" }, { "id": "logical_deduction_304", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a yellow book, a brown book, a gray book, a black book, and a purple book. The yellow book is to the right of the purple book. The black book is to the left of the purple book. The black book is the third from the left. The brown book is the leftmost.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the rightmost.", "B) The brown book is the rightmost.", "C) The gray book is the rightmost.", "D) The black book is the rightmost.", "E) The purple book is the rightmost." ], "answer": "A" }, { "id": "logical_deduction_305", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Rob, Amy, Joe, Eve, and Dan. Rob finished below Dan. Joe finished second. Joe finished above Eve. Eve finished above Dan.", "question": "Which of the following is true?", "options": [ "A) Rob finished first.", "B) Amy finished first.", "C) Joe finished first.", "D) Eve finished first.", "E) Dan finished first." ], "answer": "B" }, { "id": "logical_deduction_306", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a robin, an owl, a quail, a hummingbird, and a crow. The crow is to the right of the robin. The quail is the leftmost. The hummingbird is to the right of the owl. The crow is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The robin is the leftmost.", "B) The owl is the leftmost.", "C) The quail is the leftmost.", "D) The hummingbird is the leftmost.", "E) The crow is the leftmost." ], "answer": "C" }, { "id": "logical_deduction_307", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a minivan, a limousine, a sedan, a tractor, and a hatchback. The tractor is the second-newest. The limousine is newer than the hatchback. The limousine is older than the sedan. The minivan is newer than the sedan.", "question": "Which of the following is true?", "options": [ "A) The minivan is the second-newest.", "B) The limousine is the second-newest.", "C) The sedan is the second-newest.", "D) The tractor is the second-newest.", "E) The hatchback is the second-newest." ], "answer": "D" }, { "id": "logical_deduction_308", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a gray book, a red book, a purple book, a blue book, and a black book. The red book is to the right of the gray book. The black book is to the left of the blue book. The blue book is to the left of the gray book. The purple book is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The gray book is the leftmost.", "B) The red book is the leftmost.", "C) The purple book is the leftmost.", "D) The blue book is the leftmost.", "E) The black book is the leftmost." ], "answer": "E" }, { "id": "logical_deduction_309", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Dan, Amy, Eve, Ana, and Mya. Dan finished above Eve. Dan finished below Mya. Amy finished third. Ana finished second-to-last.", "question": "Which of the following is true?", "options": [ "A) Dan finished second.", "B) Amy finished second.", "C) Eve finished second.", "D) Ana finished second.", "E) Mya finished second." ], "answer": "A" }, { "id": "logical_deduction_310", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Eve, Eli, Joe, Rob, and Mya. Rob finished above Mya. Eve finished first. Joe finished above Eli. Joe finished below Mya.", "question": "Which of the following is true?", "options": [ "A) Eve finished second.", "B) Eli finished second.", "C) Joe finished second.", "D) Rob finished second.", "E) Mya finished second." ], "answer": "D" }, { "id": "logical_deduction_311", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a brown book, an orange book, a red book, a purple book, and a black book. The purple book is to the left of the black book. The red book is to the right of the brown book. The orange book is the second from the left. The black book is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The brown book is the third from the left.", "B) The orange book is the third from the left.", "C) The red book is the third from the left.", "D) The purple book is the third from the left.", "E) The black book is the third from the left." ], "answer": "E" }, { "id": "logical_deduction_312", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a blue jay, a robin, a cardinal, a hawk, and a falcon. The blue jay is the rightmost. The robin is to the right of the falcon. The cardinal is to the left of the hawk. The falcon is to the right of the hawk.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the second from the left.", "B) The robin is the second from the left.", "C) The cardinal is the second from the left.", "D) The hawk is the second from the left.", "E) The falcon is the second from the left." ], "answer": "D" }, { "id": "logical_deduction_313", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a station wagon, a sedan, a tractor, a motorcyle, and a limousine. The tractor is newer than the motorcyle. The motorcyle is newer than the sedan. The limousine is the oldest. The station wagon is the newest.", "question": "Which of the following is true?", "options": [ "A) The station wagon is the third-newest.", "B) The sedan is the third-newest.", "C) The tractor is the third-newest.", "D) The motorcyle is the third-newest.", "E) The limousine is the third-newest." ], "answer": "D" }, { "id": "logical_deduction_314", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: watermelons, plums, apples, peaches, and kiwis. The apples are less expensive than the peaches. The plums are the cheapest. The kiwis are the second-cheapest. The watermelons are more expensive than the peaches.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the second-cheapest.", "B) The plums are the second-cheapest.", "C) The apples are the second-cheapest.", "D) The peaches are the second-cheapest.", "E) The kiwis are the second-cheapest." ], "answer": "E" }, { "id": "logical_deduction_315", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a tractor, a station wagon, a bus, a motorcyle, and a minivan. The minivan is older than the motorcyle. The bus is the newest. The tractor is the third-newest. The station wagon is the second-oldest.", "question": "Which of the following is true?", "options": [ "A) The tractor is the oldest.", "B) The station wagon is the oldest.", "C) The bus is the oldest.", "D) The motorcyle is the oldest.", "E) The minivan is the oldest." ], "answer": "E" }, { "id": "logical_deduction_316", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a convertible, a bus, a minivan, a truck, and a sedan. The convertible is newer than the truck. The minivan is the newest. The bus is the third-newest. The truck is newer than the sedan.", "question": "Which of the following is true?", "options": [ "A) The convertible is the oldest.", "B) The bus is the oldest.", "C) The minivan is the oldest.", "D) The truck is the oldest.", "E) The sedan is the oldest." ], "answer": "E" }, { "id": "logical_deduction_317", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: an owl, a cardinal, a robin, a hummingbird, and a crow. The hummingbird is to the left of the owl. The hummingbird is to the right of the cardinal. The crow is to the left of the robin. The owl is to the left of the crow.", "question": "Which of the following is true?", "options": [ "A) The owl is the third from the left.", "B) The cardinal is the third from the left.", "C) The robin is the third from the left.", "D) The hummingbird is the third from the left.", "E) The crow is the third from the left." ], "answer": "A" }, { "id": "logical_deduction_318", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a green book, an orange book, a gray book, a yellow book, and a purple book. The green book is the rightmost. The gray book is to the right of the orange book. The purple book is to the left of the yellow book. The purple book is to the right of the gray book.", "question": "Which of the following is true?", "options": [ "A) The green book is the rightmost.", "B) The orange book is the rightmost.", "C) The gray book is the rightmost.", "D) The yellow book is the rightmost.", "E) The purple book is the rightmost." ], "answer": "A" }, { "id": "logical_deduction_319", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Rob, Amy, Eve, Mya, and Ana. Mya finished below Rob. Ana finished below Eve. Amy finished second. Eve finished below Mya.", "question": "Which of the following is true?", "options": [ "A) Rob finished last.", "B) Amy finished last.", "C) Eve finished last.", "D) Mya finished last.", "E) Ana finished last." ], "answer": "E" }, { "id": "logical_deduction_320", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a brown book, a yellow book, an orange book, a green book, and a gray book. The green book is to the left of the gray book. The brown book is the third from the left. The gray book is the second from the right. The yellow book is to the left of the green book.", "question": "Which of the following is true?", "options": [ "A) The brown book is the second from the left.", "B) The yellow book is the second from the left.", "C) The orange book is the second from the left.", "D) The green book is the second from the left.", "E) The gray book is the second from the left." ], "answer": "D" }, { "id": "logical_deduction_321", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Rob, Amy, Eve, Mya, and Ana. Mya finished below Rob. Ana finished below Eve. Amy finished second. Eve finished below Mya.", "question": "Which of the following is true?", "options": [ "A) Rob finished second.", "B) Amy finished second.", "C) Eve finished second.", "D) Mya finished second.", "E) Ana finished second." ], "answer": "B" }, { "id": "logical_deduction_322", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: pears, mangoes, kiwis, oranges, and peaches. The peaches are more expensive than the mangoes. The oranges are more expensive than the kiwis. The pears are the most expensive. The mangoes are more expensive than the oranges.", "question": "Which of the following is true?", "options": [ "A) The pears are the most expensive.", "B) The mangoes are the most expensive.", "C) The kiwis are the most expensive.", "D) The oranges are the most expensive.", "E) The peaches are the most expensive." ], "answer": "A" }, { "id": "logical_deduction_323", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a gray book, a red book, a purple book, a blue book, and a black book. The red book is to the right of the gray book. The black book is to the left of the blue book. The blue book is to the left of the gray book. The purple book is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The gray book is the second from the left.", "B) The red book is the second from the left.", "C) The purple book is the second from the left.", "D) The blue book is the second from the left.", "E) The black book is the second from the left." ], "answer": "D" }, { "id": "logical_deduction_324", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: loquats, pears, watermelons, kiwis, and plums. The loquats are the third-most expensive. The loquats are more expensive than the watermelons. The plums are less expensive than the watermelons. The kiwis are more expensive than the pears.", "question": "Which of the following is true?", "options": [ "A) The loquats are the cheapest.", "B) The pears are the cheapest.", "C) The watermelons are the cheapest.", "D) The kiwis are the cheapest.", "E) The plums are the cheapest." ], "answer": "E" }, { "id": "logical_deduction_325", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a brown book, an orange book, a red book, a purple book, and a black book. The purple book is to the left of the black book. The red book is to the right of the brown book. The orange book is the second from the left. The black book is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The brown book is the leftmost.", "B) The orange book is the leftmost.", "C) The red book is the leftmost.", "D) The purple book is the leftmost.", "E) The black book is the leftmost." ], "answer": "D" }, { "id": "logical_deduction_326", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Dan, Mel, Ana, Eli, and Rob. Rob finished above Mel. Mel finished second. Ana finished above Eli. Dan finished last.", "question": "Which of the following is true?", "options": [ "A) Dan finished third.", "B) Mel finished third.", "C) Ana finished third.", "D) Eli finished third.", "E) Rob finished third." ], "answer": "C" }, { "id": "logical_deduction_327", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: pears, mangoes, kiwis, oranges, and peaches. The peaches are more expensive than the mangoes. The oranges are more expensive than the kiwis. The pears are the most expensive. The mangoes are more expensive than the oranges.", "question": "Which of the following is true?", "options": [ "A) The pears are the second-most expensive.", "B) The mangoes are the second-most expensive.", "C) The kiwis are the second-most expensive.", "D) The oranges are the second-most expensive.", "E) The peaches are the second-most expensive." ], "answer": "E" }, { "id": "logical_deduction_328", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: mangoes, cantaloupes, plums, oranges, and watermelons. The oranges are more expensive than the watermelons. The watermelons are the second-cheapest. The plums are less expensive than the cantaloupes. The plums are the second-most expensive.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the second-cheapest.", "B) The cantaloupes are the second-cheapest.", "C) The plums are the second-cheapest.", "D) The oranges are the second-cheapest.", "E) The watermelons are the second-cheapest." ], "answer": "E" }, { "id": "logical_deduction_329", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: loquats, pears, watermelons, kiwis, and plums. The loquats are the third-most expensive. The loquats are more expensive than the watermelons. The plums are less expensive than the watermelons. The kiwis are more expensive than the pears.", "question": "Which of the following is true?", "options": [ "A) The loquats are the most expensive.", "B) The pears are the most expensive.", "C) The watermelons are the most expensive.", "D) The kiwis are the most expensive.", "E) The plums are the most expensive." ], "answer": "D" }, { "id": "logical_deduction_330", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a convertible, a truck, a bus, a sedan, and a motorcyle. The bus is newer than the truck. The truck is newer than the convertible. The sedan is the second-oldest. The motorcyle is newer than the bus.", "question": "Which of the following is true?", "options": [ "A) The convertible is the second-oldest.", "B) The truck is the second-oldest.", "C) The bus is the second-oldest.", "D) The sedan is the second-oldest.", "E) The motorcyle is the second-oldest." ], "answer": "D" }, { "id": "logical_deduction_331", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: kiwis, pears, peaches, loquats, and apples. The loquats are more expensive than the kiwis. The pears are more expensive than the peaches. The apples are more expensive than the loquats. The apples are less expensive than the peaches.", "question": "Which of the following is true?", "options": [ "A) The kiwis are the cheapest.", "B) The pears are the cheapest.", "C) The peaches are the cheapest.", "D) The loquats are the cheapest.", "E) The apples are the cheapest." ], "answer": "A" }, { "id": "logical_deduction_332", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: apples, loquats, cantaloupes, watermelons, and kiwis. The watermelons are more expensive than the loquats. The watermelons are less expensive than the kiwis. The loquats are more expensive than the apples. The cantaloupes are the cheapest.", "question": "Which of the following is true?", "options": [ "A) The apples are the second-most expensive.", "B) The loquats are the second-most expensive.", "C) The cantaloupes are the second-most expensive.", "D) The watermelons are the second-most expensive.", "E) The kiwis are the second-most expensive." ], "answer": "D" }, { "id": "logical_deduction_333", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a yellow book, a gray book, a red book, a black book, and a white book. The gray book is to the left of the yellow book. The white book is to the left of the red book. The black book is to the right of the red book. The black book is to the left of the gray book.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the second from the right.", "B) The gray book is the second from the right.", "C) The red book is the second from the right.", "D) The black book is the second from the right.", "E) The white book is the second from the right." ], "answer": "B" }, { "id": "logical_deduction_334", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a yellow book, a brown book, a gray book, a black book, and a purple book. The yellow book is to the right of the purple book. The black book is to the left of the purple book. The black book is the third from the left. The brown book is the leftmost.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the leftmost.", "B) The brown book is the leftmost.", "C) The gray book is the leftmost.", "D) The black book is the leftmost.", "E) The purple book is the leftmost." ], "answer": "B" }, { "id": "logical_deduction_335", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Rob, Eve, Eli, Amy, and Dan. Dan finished second. Amy finished below Eve. Dan finished above Eve. Amy finished above Eli.", "question": "Which of the following is true?", "options": [ "A) Rob finished second-to-last.", "B) Eve finished second-to-last.", "C) Eli finished second-to-last.", "D) Amy finished second-to-last.", "E) Dan finished second-to-last." ], "answer": "D" }, { "id": "logical_deduction_336", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a quail, a hummingbird, a blue jay, a hawk, and a robin. The robin is the second from the left. The quail is the leftmost. The blue jay is to the left of the hummingbird. The hawk is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The quail is the second from the right.", "B) The hummingbird is the second from the right.", "C) The blue jay is the second from the right.", "D) The hawk is the second from the right.", "E) The robin is the second from the right." ], "answer": "C" }, { "id": "logical_deduction_337", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Dan, Amy, Eve, Ana, and Mya. Dan finished above Eve. Dan finished below Mya. Amy finished third. Ana finished second-to-last.", "question": "Which of the following is true?", "options": [ "A) Dan finished first.", "B) Amy finished first.", "C) Eve finished first.", "D) Ana finished first.", "E) Mya finished first." ], "answer": "E" }, { "id": "logical_deduction_338", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Joe, Ana, Amy, Mya, and Eve. Joe finished last. Ana finished second. Mya finished second-to-last. Eve finished below Amy.", "question": "Which of the following is true?", "options": [ "A) Joe finished last.", "B) Ana finished last.", "C) Amy finished last.", "D) Mya finished last.", "E) Eve finished last." ], "answer": "A" }, { "id": "logical_deduction_339", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: mangoes, pears, cantaloupes, watermelons, and loquats. The mangoes are more expensive than the loquats. The cantaloupes are more expensive than the mangoes. The watermelons are more expensive than the cantaloupes. The pears are the cheapest.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the most expensive.", "B) The pears are the most expensive.", "C) The cantaloupes are the most expensive.", "D) The watermelons are the most expensive.", "E) The loquats are the most expensive." ], "answer": "D" }, { "id": "logical_deduction_340", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: an owl, a hawk, a robin, a crow, and a raven. The hawk is to the left of the owl. The raven is the second from the right. The robin is to the left of the raven. The owl is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The owl is the leftmost.", "B) The hawk is the leftmost.", "C) The robin is the leftmost.", "D) The crow is the leftmost.", "E) The raven is the leftmost." ], "answer": "B" }, { "id": "logical_deduction_341", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: an owl, a hawk, a robin, a crow, and a raven. The hawk is to the left of the owl. The raven is the second from the right. The robin is to the left of the raven. The owl is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The owl is the third from the left.", "B) The hawk is the third from the left.", "C) The robin is the third from the left.", "D) The crow is the third from the left.", "E) The raven is the third from the left." ], "answer": "C" }, { "id": "logical_deduction_342", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a white book, a gray book, a purple book, a yellow book, and a black book. The yellow book is to the left of the white book. The black book is to the left of the yellow book. The purple book is the rightmost. The white book is to the left of the gray book.", "question": "Which of the following is true?", "options": [ "A) The white book is the third from the left.", "B) The gray book is the third from the left.", "C) The purple book is the third from the left.", "D) The yellow book is the third from the left.", "E) The black book is the third from the left." ], "answer": "A" }, { "id": "logical_deduction_343", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a minivan, a limousine, a sedan, a tractor, and a hatchback. The tractor is the second-newest. The limousine is newer than the hatchback. The limousine is older than the sedan. The minivan is newer than the sedan.", "question": "Which of the following is true?", "options": [ "A) The minivan is the newest.", "B) The limousine is the newest.", "C) The sedan is the newest.", "D) The tractor is the newest.", "E) The hatchback is the newest." ], "answer": "A" }, { "id": "logical_deduction_344", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: loquats, peaches, pears, plums, and watermelons. The watermelons are the most expensive. The peaches are more expensive than the loquats. The plums are the second-cheapest. The pears are the third-most expensive.", "question": "Which of the following is true?", "options": [ "A) The loquats are the third-most expensive.", "B) The peaches are the third-most expensive.", "C) The pears are the third-most expensive.", "D) The plums are the third-most expensive.", "E) The watermelons are the third-most expensive." ], "answer": "C" }, { "id": "logical_deduction_345", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: loquats, pears, watermelons, kiwis, and plums. The loquats are the third-most expensive. The loquats are more expensive than the watermelons. The plums are less expensive than the watermelons. The kiwis are more expensive than the pears.", "question": "Which of the following is true?", "options": [ "A) The loquats are the second-cheapest.", "B) The pears are the second-cheapest.", "C) The watermelons are the second-cheapest.", "D) The kiwis are the second-cheapest.", "E) The plums are the second-cheapest." ], "answer": "C" }, { "id": "logical_deduction_346", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: apples, oranges, watermelons, pears, and mangoes. The apples are more expensive than the oranges. The oranges are more expensive than the mangoes. The apples are the third-most expensive. The pears are more expensive than the watermelons.", "question": "Which of the following is true?", "options": [ "A) The apples are the cheapest.", "B) The oranges are the cheapest.", "C) The watermelons are the cheapest.", "D) The pears are the cheapest.", "E) The mangoes are the cheapest." ], "answer": "E" }, { "id": "logical_deduction_347", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a black book, a brown book, a yellow book, an orange book, and a red book. The black book is to the left of the yellow book. The red book is the third from the left. The brown book is the second from the left. The yellow book is to the left of the orange book.", "question": "Which of the following is true?", "options": [ "A) The black book is the second from the right.", "B) The brown book is the second from the right.", "C) The yellow book is the second from the right.", "D) The orange book is the second from the right.", "E) The red book is the second from the right." ], "answer": "C" }, { "id": "logical_deduction_348", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a yellow book, a gray book, a red book, a black book, and a white book. The gray book is to the left of the yellow book. The white book is to the left of the red book. The black book is to the right of the red book. The black book is to the left of the gray book.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the second from the left.", "B) The gray book is the second from the left.", "C) The red book is the second from the left.", "D) The black book is the second from the left.", "E) The white book is the second from the left." ], "answer": "C" }, { "id": "logical_deduction_349", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a green book, a blue book, a brown book, a gray book, and a red book. The green book is to the left of the brown book. The gray book is to the left of the blue book. The green book is to the right of the blue book. The red book is the leftmost.", "question": "Which of the following is true?", "options": [ "A) The green book is the rightmost.", "B) The blue book is the rightmost.", "C) The brown book is the rightmost.", "D) The gray book is the rightmost.", "E) The red book is the rightmost." ], "answer": "C" }, { "id": "logical_deduction_350", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a yellow book, a green book, a gray book, a blue book, and an orange book. The gray book is to the left of the green book. The gray book is the second from the right. The yellow book is to the right of the orange book. The blue book is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the second from the left.", "B) The green book is the second from the left.", "C) The gray book is the second from the left.", "D) The blue book is the second from the left.", "E) The orange book is the second from the left." ], "answer": "D" }, { "id": "logical_deduction_351", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Rob, Amy, Joe, Eve, and Dan. Rob finished below Dan. Joe finished second. Joe finished above Eve. Eve finished above Dan.", "question": "Which of the following is true?", "options": [ "A) Rob finished third.", "B) Amy finished third.", "C) Joe finished third.", "D) Eve finished third.", "E) Dan finished third." ], "answer": "D" }, { "id": "logical_deduction_352", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Dan, Ana, Eli, Mya, and Amy. Amy finished above Eli. Ana finished above Amy. Mya finished below Eli. Dan finished last.", "question": "Which of the following is true?", "options": [ "A) Dan finished first.", "B) Ana finished first.", "C) Eli finished first.", "D) Mya finished first.", "E) Amy finished first." ], "answer": "B" }, { "id": "logical_deduction_353", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a white book, a green book, a brown book, a gray book, and an orange book. The gray book is to the right of the orange book. The green book is the second from the right. The brown book is to the right of the white book. The brown book is to the left of the orange book.", "question": "Which of the following is true?", "options": [ "A) The white book is the leftmost.", "B) The green book is the leftmost.", "C) The brown book is the leftmost.", "D) The gray book is the leftmost.", "E) The orange book is the leftmost." ], "answer": "A" }, { "id": "logical_deduction_354", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a bus, a truck, a motorcyle, a sedan, and a hatchback. The sedan is the second-oldest. The hatchback is newer than the motorcyle. The motorcyle is newer than the sedan. The hatchback is older than the truck.", "question": "Which of the following is true?", "options": [ "A) The bus is the second-newest.", "B) The truck is the second-newest.", "C) The motorcyle is the second-newest.", "D) The sedan is the second-newest.", "E) The hatchback is the second-newest." ], "answer": "E" }, { "id": "logical_deduction_355", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: apples, oranges, watermelons, pears, and mangoes. The apples are more expensive than the oranges. The oranges are more expensive than the mangoes. The apples are the third-most expensive. The pears are more expensive than the watermelons.", "question": "Which of the following is true?", "options": [ "A) The apples are the third-most expensive.", "B) The oranges are the third-most expensive.", "C) The watermelons are the third-most expensive.", "D) The pears are the third-most expensive.", "E) The mangoes are the third-most expensive." ], "answer": "A" }, { "id": "logical_deduction_356", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Ana, Amy, Dan, Mya, and Eve. Ana finished below Mya. Dan finished above Amy. Mya finished second-to-last. Eve finished below Amy.", "question": "Which of the following is true?", "options": [ "A) Ana finished last.", "B) Amy finished last.", "C) Dan finished last.", "D) Mya finished last.", "E) Eve finished last." ], "answer": "A" }, { "id": "logical_deduction_357", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Amy, Dan, Mya, Eli, and Mel. Amy finished above Mel. Mya finished first. Amy finished below Eli. Dan finished last.", "question": "Which of the following is true?", "options": [ "A) Amy finished second-to-last.", "B) Dan finished second-to-last.", "C) Mya finished second-to-last.", "D) Eli finished second-to-last.", "E) Mel finished second-to-last." ], "answer": "E" }, { "id": "logical_deduction_358", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Ada, Eli, Amy, Joe, and Mel. Ada finished above Eli. Amy finished below Mel. Ada finished second. Mel finished below Eli.", "question": "Which of the following is true?", "options": [ "A) Ada finished last.", "B) Eli finished last.", "C) Amy finished last.", "D) Joe finished last.", "E) Mel finished last." ], "answer": "C" }, { "id": "logical_deduction_359", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Amy, Dan, Mya, Eli, and Mel. Amy finished above Mel. Mya finished first. Amy finished below Eli. Dan finished last.", "question": "Which of the following is true?", "options": [ "A) Amy finished last.", "B) Dan finished last.", "C) Mya finished last.", "D) Eli finished last.", "E) Mel finished last." ], "answer": "B" }, { "id": "logical_deduction_360", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: an owl, a hummingbird, a crow, a hawk, and a robin. The hawk is to the right of the owl. The hummingbird is to the right of the hawk. The crow is the second from the right. The robin is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The owl is the rightmost.", "B) The hummingbird is the rightmost.", "C) The crow is the rightmost.", "D) The hawk is the rightmost.", "E) The robin is the rightmost." ], "answer": "B" }, { "id": "logical_deduction_361", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Eve, Eli, Joe, Rob, and Mya. Rob finished above Mya. Eve finished first. Joe finished above Eli. Joe finished below Mya.", "question": "Which of the following is true?", "options": [ "A) Eve finished first.", "B) Eli finished first.", "C) Joe finished first.", "D) Rob finished first.", "E) Mya finished first." ], "answer": "A" }, { "id": "logical_deduction_362", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: watermelons, plums, apples, peaches, and kiwis. The apples are less expensive than the peaches. The plums are the cheapest. The kiwis are the second-cheapest. The watermelons are more expensive than the peaches.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the cheapest.", "B) The plums are the cheapest.", "C) The apples are the cheapest.", "D) The peaches are the cheapest.", "E) The kiwis are the cheapest." ], "answer": "B" }, { "id": "logical_deduction_363", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a quail, a hummingbird, a blue jay, a hawk, and a robin. The robin is the second from the left. The quail is the leftmost. The blue jay is to the left of the hummingbird. The hawk is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The quail is the second from the left.", "B) The hummingbird is the second from the left.", "C) The blue jay is the second from the left.", "D) The hawk is the second from the left.", "E) The robin is the second from the left." ], "answer": "E" }, { "id": "logical_deduction_364", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: peaches, watermelons, pears, apples, and cantaloupes. The watermelons are the second-cheapest. The apples are the cheapest. The peaches are the most expensive. The pears are less expensive than the cantaloupes.", "question": "Which of the following is true?", "options": [ "A) The peaches are the third-most expensive.", "B) The watermelons are the third-most expensive.", "C) The pears are the third-most expensive.", "D) The apples are the third-most expensive.", "E) The cantaloupes are the third-most expensive." ], "answer": "C" }, { "id": "logical_deduction_365", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: watermelons, apples, mangoes, pears, and cantaloupes. The watermelons are more expensive than the cantaloupes. The mangoes are less expensive than the pears. The apples are the second-cheapest. The watermelons are less expensive than the mangoes.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the second-most expensive.", "B) The apples are the second-most expensive.", "C) The mangoes are the second-most expensive.", "D) The pears are the second-most expensive.", "E) The cantaloupes are the second-most expensive." ], "answer": "C" }, { "id": "logical_deduction_366", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a white book, a green book, a brown book, a gray book, and an orange book. The gray book is to the right of the orange book. The green book is the second from the right. The brown book is to the right of the white book. The brown book is to the left of the orange book.", "question": "Which of the following is true?", "options": [ "A) The white book is the second from the right.", "B) The green book is the second from the right.", "C) The brown book is the second from the right.", "D) The gray book is the second from the right.", "E) The orange book is the second from the right." ], "answer": "B" }, { "id": "logical_deduction_367", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Eve, Rob, Ana, Eli, and Mya. Eli finished below Mya. Eve finished first. Ana finished below Eli. Rob finished second.", "question": "Which of the following is true?", "options": [ "A) Eve finished last.", "B) Rob finished last.", "C) Ana finished last.", "D) Eli finished last.", "E) Mya finished last." ], "answer": "C" }, { "id": "logical_deduction_368", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a convertible, a truck, a bus, a sedan, and a motorcyle. The bus is newer than the truck. The truck is newer than the convertible. The sedan is the second-oldest. The motorcyle is newer than the bus.", "question": "Which of the following is true?", "options": [ "A) The convertible is the oldest.", "B) The truck is the oldest.", "C) The bus is the oldest.", "D) The sedan is the oldest.", "E) The motorcyle is the oldest." ], "answer": "A" }, { "id": "logical_deduction_369", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Ana, Amy, Dan, Mya, and Eve. Ana finished below Mya. Dan finished above Amy. Mya finished second-to-last. Eve finished below Amy.", "question": "Which of the following is true?", "options": [ "A) Ana finished third.", "B) Amy finished third.", "C) Dan finished third.", "D) Mya finished third.", "E) Eve finished third." ], "answer": "E" }, { "id": "logical_deduction_370", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Rob, Amy, Eve, Mya, and Ana. Mya finished below Rob. Ana finished below Eve. Amy finished second. Eve finished below Mya.", "question": "Which of the following is true?", "options": [ "A) Rob finished first.", "B) Amy finished first.", "C) Eve finished first.", "D) Mya finished first.", "E) Ana finished first." ], "answer": "A" }, { "id": "logical_deduction_371", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a truck, a motorcyle, a limousine, a station wagon, and a sedan. The limousine is older than the truck. The sedan is newer than the motorcyle. The station wagon is the oldest. The limousine is newer than the sedan.", "question": "Which of the following is true?", "options": [ "A) The truck is the newest.", "B) The motorcyle is the newest.", "C) The limousine is the newest.", "D) The station wagon is the newest.", "E) The sedan is the newest." ], "answer": "A" }, { "id": "logical_deduction_372", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a tractor, a truck, a bus, a minivan, and a convertible. The bus is newer than the tractor. The convertible is older than the tractor. The truck is the second-newest. The minivan is older than the convertible.", "question": "Which of the following is true?", "options": [ "A) The tractor is the second-newest.", "B) The truck is the second-newest.", "C) The bus is the second-newest.", "D) The minivan is the second-newest.", "E) The convertible is the second-newest." ], "answer": "B" }, { "id": "logical_deduction_373", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a hatchback, a bus, a convertible, a tractor, and a minivan. The tractor is older than the bus. The minivan is newer than the bus. The hatchback is the second-newest. The minivan is older than the convertible.", "question": "Which of the following is true?", "options": [ "A) The hatchback is the newest.", "B) The bus is the newest.", "C) The convertible is the newest.", "D) The tractor is the newest.", "E) The minivan is the newest." ], "answer": "C" }, { "id": "logical_deduction_374", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a hatchback, a convertible, a tractor, a truck, and a limousine. The tractor is newer than the hatchback. The limousine is the second-newest. The truck is older than the hatchback. The convertible is the second-oldest.", "question": "Which of the following is true?", "options": [ "A) The hatchback is the third-newest.", "B) The convertible is the third-newest.", "C) The tractor is the third-newest.", "D) The truck is the third-newest.", "E) The limousine is the third-newest." ], "answer": "A" }, { "id": "logical_deduction_375", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Amy, Eve, Mel, Mya, and Rob. Eve finished last. Rob finished above Mel. Amy finished above Rob. Mya finished third.", "question": "Which of the following is true?", "options": [ "A) Amy finished first.", "B) Eve finished first.", "C) Mel finished first.", "D) Mya finished first.", "E) Rob finished first." ], "answer": "A" }, { "id": "logical_deduction_376", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a crow, a robin, a quail, a blue jay, and a falcon. The robin is to the left of the quail. The falcon is the third from the left. The crow is to the left of the falcon. The blue jay is the leftmost.", "question": "Which of the following is true?", "options": [ "A) The crow is the second from the right.", "B) The robin is the second from the right.", "C) The quail is the second from the right.", "D) The blue jay is the second from the right.", "E) The falcon is the second from the right." ], "answer": "B" }, { "id": "logical_deduction_377", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a white book, a gray book, a purple book, a yellow book, and a black book. The yellow book is to the left of the white book. The black book is to the left of the yellow book. The purple book is the rightmost. The white book is to the left of the gray book.", "question": "Which of the following is true?", "options": [ "A) The white book is the second from the right.", "B) The gray book is the second from the right.", "C) The purple book is the second from the right.", "D) The yellow book is the second from the right.", "E) The black book is the second from the right." ], "answer": "B" }, { "id": "logical_deduction_378", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a cardinal, a crow, a falcon, a robin, and a blue jay. The robin is to the right of the cardinal. The cardinal is to the right of the blue jay. The blue jay is the second from the left. The crow is the rightmost.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the third from the left.", "B) The crow is the third from the left.", "C) The falcon is the third from the left.", "D) The robin is the third from the left.", "E) The blue jay is the third from the left." ], "answer": "A" }, { "id": "logical_deduction_379", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Rob, Ada, Dan, Joe, and Mel. Ada finished above Mel. Mel finished above Dan. Joe finished below Dan. Ada finished second.", "question": "Which of the following is true?", "options": [ "A) Rob finished first.", "B) Ada finished first.", "C) Dan finished first.", "D) Joe finished first.", "E) Mel finished first." ], "answer": "A" }, { "id": "logical_deduction_380", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a quail, an owl, a raven, a falcon, and a robin. The owl is the leftmost. The robin is to the left of the raven. The quail is the rightmost. The raven is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The quail is the second from the left.", "B) The owl is the second from the left.", "C) The raven is the second from the left.", "D) The falcon is the second from the left.", "E) The robin is the second from the left." ], "answer": "E" }, { "id": "logical_deduction_381", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: mangoes, kiwis, watermelons, oranges, and apples. The oranges are the cheapest. The kiwis are less expensive than the mangoes. The watermelons are more expensive than the apples. The watermelons are less expensive than the kiwis.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the third-most expensive.", "B) The kiwis are the third-most expensive.", "C) The watermelons are the third-most expensive.", "D) The oranges are the third-most expensive.", "E) The apples are the third-most expensive." ], "answer": "C" }, { "id": "logical_deduction_382", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a blue jay, a raven, a crow, a falcon, and a quail. The crow is to the left of the quail. The falcon is the leftmost. The blue jay is to the right of the quail. The raven is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the third from the left.", "B) The raven is the third from the left.", "C) The crow is the third from the left.", "D) The falcon is the third from the left.", "E) The quail is the third from the left." ], "answer": "C" }, { "id": "logical_deduction_383", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a green book, an orange book, a brown book, a yellow book, and a blue book. The orange book is to the right of the yellow book. The green book is the rightmost. The yellow book is to the right of the blue book. The orange book is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The green book is the second from the right.", "B) The orange book is the second from the right.", "C) The brown book is the second from the right.", "D) The yellow book is the second from the right.", "E) The blue book is the second from the right." ], "answer": "C" }, { "id": "logical_deduction_384", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a robin, an owl, a quail, a hummingbird, and a crow. The crow is to the right of the robin. The quail is the leftmost. The hummingbird is to the right of the owl. The crow is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The robin is the second from the left.", "B) The owl is the second from the left.", "C) The quail is the second from the left.", "D) The hummingbird is the second from the left.", "E) The crow is the second from the left." ], "answer": "A" }, { "id": "logical_deduction_385", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a limousine, a sedan, a bus, a hatchback, and a motorcyle. The hatchback is older than the sedan. The hatchback is the second-oldest. The limousine is older than the bus. The bus is newer than the sedan. The bus is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The limousine is the newest.", "B) The sedan is the newest.", "C) The bus is the newest.", "D) The hatchback is the newest.", "E) The motorcyle is the newest." ], "answer": "E" }, { "id": "logical_deduction_386", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: oranges, apples, peaches, cantaloupes, and loquats. The loquats are less expensive than the cantaloupes. The cantaloupes are less expensive than the apples. The oranges are the most expensive. The apples are the third-most expensive.", "question": "Which of the following is true?", "options": [ "A) The oranges are the third-most expensive.", "B) The apples are the third-most expensive.", "C) The peaches are the third-most expensive.", "D) The cantaloupes are the third-most expensive.", "E) The loquats are the third-most expensive." ], "answer": "B" }, { "id": "logical_deduction_387", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Ana, Rob, Amy, Dan, and Joe. Rob finished below Dan. Joe finished below Ana. Joe finished above Amy. Dan finished below Amy.", "question": "Which of the following is true?", "options": [ "A) Ana finished first.", "B) Rob finished first.", "C) Amy finished first.", "D) Dan finished first.", "E) Joe finished first." ], "answer": "A" }, { "id": "logical_deduction_388", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a limousine, a sedan, a bus, a hatchback, and a motorcyle. The hatchback is older than the sedan. The hatchback is the second-oldest. The limousine is older than the bus. The bus is newer than the sedan. The bus is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The limousine is the third-newest.", "B) The sedan is the third-newest.", "C) The bus is the third-newest.", "D) The hatchback is the third-newest.", "E) The motorcyle is the third-newest." ], "answer": "B" }, { "id": "logical_deduction_389", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: mangoes, cantaloupes, plums, oranges, and watermelons. The oranges are more expensive than the watermelons. The watermelons are the second-cheapest. The plums are less expensive than the cantaloupes. The plums are the second-most expensive.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the cheapest.", "B) The cantaloupes are the cheapest.", "C) The plums are the cheapest.", "D) The oranges are the cheapest.", "E) The watermelons are the cheapest." ], "answer": "A" }, { "id": "logical_deduction_390", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a cardinal, a crow, a falcon, a robin, and a blue jay. The robin is to the right of the cardinal. The cardinal is to the right of the blue jay. The blue jay is the second from the left. The crow is the rightmost.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the second from the right.", "B) The crow is the second from the right.", "C) The falcon is the second from the right.", "D) The robin is the second from the right.", "E) The blue jay is the second from the right." ], "answer": "D" }, { "id": "logical_deduction_391", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: watermelons, loquats, pears, plums, and apples. The pears are the second-cheapest. The loquats are more expensive than the pears. The plums are the second-most expensive. The watermelons are the most expensive.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the second-cheapest.", "B) The loquats are the second-cheapest.", "C) The pears are the second-cheapest.", "D) The plums are the second-cheapest.", "E) The apples are the second-cheapest." ], "answer": "C" }, { "id": "logical_deduction_392", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Joe, Ana, Amy, Mya, and Eve. Joe finished last. Ana finished second. Mya finished second-to-last. Eve finished below Amy.", "question": "Which of the following is true?", "options": [ "A) Joe finished second.", "B) Ana finished second.", "C) Amy finished second.", "D) Mya finished second.", "E) Eve finished second." ], "answer": "B" }, { "id": "logical_deduction_393", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: mangoes, pears, cantaloupes, watermelons, and loquats. The mangoes are more expensive than the loquats. The cantaloupes are more expensive than the mangoes. The watermelons are more expensive than the cantaloupes. The pears are the cheapest.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the cheapest.", "B) The pears are the cheapest.", "C) The cantaloupes are the cheapest.", "D) The watermelons are the cheapest.", "E) The loquats are the cheapest." ], "answer": "B" }, { "id": "logical_deduction_394", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: peaches, watermelons, pears, apples, and cantaloupes. The watermelons are the second-cheapest. The apples are the cheapest. The peaches are the most expensive. The pears are less expensive than the cantaloupes.", "question": "Which of the following is true?", "options": [ "A) The peaches are the cheapest.", "B) The watermelons are the cheapest.", "C) The pears are the cheapest.", "D) The apples are the cheapest.", "E) The cantaloupes are the cheapest." ], "answer": "D" }, { "id": "logical_deduction_395", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: apples, loquats, cantaloupes, watermelons, and kiwis. The watermelons are more expensive than the loquats. The watermelons are less expensive than the kiwis. The loquats are more expensive than the apples. The cantaloupes are the cheapest.", "question": "Which of the following is true?", "options": [ "A) The apples are the second-cheapest.", "B) The loquats are the second-cheapest.", "C) The cantaloupes are the second-cheapest.", "D) The watermelons are the second-cheapest.", "E) The kiwis are the second-cheapest." ], "answer": "A" }, { "id": "logical_deduction_396", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were five golfers: Dan, Amy, Eve, Ana, and Mya. Dan finished above Eve. Dan finished below Mya. Amy finished third. Ana finished second-to-last.", "question": "Which of the following is true?", "options": [ "A) Dan finished second-to-last.", "B) Amy finished second-to-last.", "C) Eve finished second-to-last.", "D) Ana finished second-to-last.", "E) Mya finished second-to-last." ], "answer": "D" }, { "id": "logical_deduction_397", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are five books: a blue book, a red book, a purple book, a gray book, and a white book. The white book is to the right of the gray book. The blue book is the leftmost. The red book is to the left of the gray book. The red book is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The blue book is the third from the left.", "B) The red book is the third from the left.", "C) The purple book is the third from the left.", "D) The gray book is the third from the left.", "E) The white book is the third from the left." ], "answer": "B" }, { "id": "logical_deduction_398", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells five fruits: cantaloupes, kiwis, oranges, mangoes, and peaches. The kiwis are less expensive than the mangoes. The peaches are less expensive than the oranges. The oranges are the second-most expensive. The mangoes are the second-cheapest.", "question": "Which of the following is true?", "options": [ "A) The cantaloupes are the second-most expensive.", "B) The kiwis are the second-most expensive.", "C) The oranges are the second-most expensive.", "D) The mangoes are the second-most expensive.", "E) The peaches are the second-most expensive." ], "answer": "C" }, { "id": "logical_deduction_399", "context": "The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are five vehicles: a station wagon, a tractor, a truck, a hatchback, and a minivan. The station wagon is newer than the tractor. The truck is older than the tractor. The minivan is newer than the hatchback. The hatchback is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The station wagon is the second-newest.", "B) The tractor is the second-newest.", "C) The truck is the second-newest.", "D) The hatchback is the second-newest.", "E) The minivan is the second-newest." ], "answer": "D" }, { "id": "logical_deduction_400", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Ana, Eve, Ada, Dan, Rob, Amy, and Joe. Dan finished third. Ana finished above Ada. Amy finished last. Dan finished below Rob. Eve finished below Ada. Rob finished below Joe.", "question": "Which of the following is true?", "options": [ "A) Ana finished third.", "B) Eve finished third.", "C) Ada finished third.", "D) Dan finished third.", "E) Rob finished third.", "F) Amy finished third.", "G) Joe finished third." ], "answer": "D" }, { "id": "logical_deduction_401", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a bus, a motorcyle, a hatchback, a station wagon, a minivan, a truck, and a limousine. The station wagon is the fourth-newest. The motorcyle is newer than the truck. The station wagon is older than the hatchback. The minivan is newer than the hatchback. The bus is newer than the minivan. The truck is newer than the limousine.", "question": "Which of the following is true?", "options": [ "A) The bus is the third-oldest.", "B) The motorcyle is the third-oldest.", "C) The hatchback is the third-oldest.", "D) The station wagon is the third-oldest.", "E) The minivan is the third-oldest.", "F) The truck is the third-oldest.", "G) The limousine is the third-oldest." ], "answer": "B" }, { "id": "logical_deduction_402", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hummingbird, a cardinal, a blue jay, an owl, a raven, a quail, and a robin. The hummingbird is to the left of the quail. The robin is to the left of the cardinal. The blue jay is the leftmost. The cardinal is the fourth from the left. The raven is the third from the right. The owl is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The hummingbird is the second from the right.", "B) The cardinal is the second from the right.", "C) The blue jay is the second from the right.", "D) The owl is the second from the right.", "E) The raven is the second from the right.", "F) The quail is the second from the right.", "G) The robin is the second from the right." ], "answer": "A" }, { "id": "logical_deduction_403", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a robin, an owl, a quail, a falcon, a hummingbird, a cardinal, and a crow. The hummingbird is to the left of the falcon. The crow is to the right of the cardinal. The cardinal is the second from the right. The quail is the third from the right. The falcon is to the left of the robin. The owl is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The robin is the fourth from the left.", "B) The owl is the fourth from the left.", "C) The quail is the fourth from the left.", "D) The falcon is the fourth from the left.", "E) The hummingbird is the fourth from the left.", "F) The cardinal is the fourth from the left.", "G) The crow is the fourth from the left." ], "answer": "A" }, { "id": "logical_deduction_404", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: kiwis, plums, mangoes, watermelons, pears, peaches, and oranges. The pears are the third-cheapest. The kiwis are the second-most expensive. The pears are more expensive than the plums. The oranges are less expensive than the kiwis. The mangoes are the third-most expensive. The peaches are the second-cheapest.", "question": "Which of the following is true?", "options": [ "A) The kiwis are the second-cheapest.", "B) The plums are the second-cheapest.", "C) The mangoes are the second-cheapest.", "D) The watermelons are the second-cheapest.", "E) The pears are the second-cheapest.", "F) The peaches are the second-cheapest.", "G) The oranges are the second-cheapest." ], "answer": "F" }, { "id": "logical_deduction_405", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Eli, Eve, Mel, Joe, Mya, Rob, and Ada. Ada finished above Mya. Eli finished below Joe. Eli finished above Eve. Ada finished second-to-last. Mel finished third. Rob finished fourth.", "question": "Which of the following is true?", "options": [ "A) Eli finished third-to-last.", "B) Eve finished third-to-last.", "C) Mel finished third-to-last.", "D) Joe finished third-to-last.", "E) Mya finished third-to-last.", "F) Rob finished third-to-last.", "G) Ada finished third-to-last." ], "answer": "B" }, { "id": "logical_deduction_406", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Amy, Eve, Ada, Rob, Dan, Mel, and Joe. Joe finished third. Dan finished last. Eve finished first. Mel finished below Rob. Ada finished above Joe. Rob finished third-to-last.", "question": "Which of the following is true?", "options": [ "A) Amy finished last.", "B) Eve finished last.", "C) Ada finished last.", "D) Rob finished last.", "E) Dan finished last.", "F) Mel finished last.", "G) Joe finished last." ], "answer": "E" }, { "id": "logical_deduction_407", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: oranges, loquats, apples, kiwis, mangoes, plums, and peaches. The apples are the second-cheapest. The peaches are the cheapest. The plums are the fourth-most expensive. The loquats are the third-cheapest. The kiwis are more expensive than the mangoes. The oranges are less expensive than the mangoes.", "question": "Which of the following is true?", "options": [ "A) The oranges are the third-cheapest.", "B) The loquats are the third-cheapest.", "C) The apples are the third-cheapest.", "D) The kiwis are the third-cheapest.", "E) The mangoes are the third-cheapest.", "F) The plums are the third-cheapest.", "G) The peaches are the third-cheapest." ], "answer": "B" }, { "id": "logical_deduction_408", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a limousine, a truck, a minivan, a tractor, a hatchback, a bus, and a convertible. The convertible is the second-oldest. The tractor is the fourth-newest. The minivan is older than the truck. The truck is older than the limousine. The hatchback is the third-oldest. The bus is newer than the limousine.", "question": "Which of the following is true?", "options": [ "A) The limousine is the oldest.", "B) The truck is the oldest.", "C) The minivan is the oldest.", "D) The tractor is the oldest.", "E) The hatchback is the oldest.", "F) The bus is the oldest.", "G) The convertible is the oldest." ], "answer": "C" }, { "id": "logical_deduction_409", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a brown book, a yellow book, a black book, a white book, a green book, an orange book, and a purple book. The purple book is the rightmost. The yellow book is the leftmost. The orange book is the second from the right. The brown book is to the left of the green book. The brown book is to the right of the black book. The white book is the fourth from the left.", "question": "Which of the following is true?", "options": [ "A) The brown book is the leftmost.", "B) The yellow book is the leftmost.", "C) The black book is the leftmost.", "D) The white book is the leftmost.", "E) The green book is the leftmost.", "F) The orange book is the leftmost.", "G) The purple book is the leftmost." ], "answer": "B" }, { "id": "logical_deduction_410", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: mangoes, watermelons, peaches, kiwis, oranges, cantaloupes, and plums. The watermelons are the cheapest. The peaches are more expensive than the mangoes. The cantaloupes are the second-most expensive. The oranges are more expensive than the cantaloupes. The peaches are less expensive than the plums. The kiwis are the third-cheapest.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the third-most expensive.", "B) The watermelons are the third-most expensive.", "C) The peaches are the third-most expensive.", "D) The kiwis are the third-most expensive.", "E) The oranges are the third-most expensive.", "F) The cantaloupes are the third-most expensive.", "G) The plums are the third-most expensive." ], "answer": "G" }, { "id": "logical_deduction_411", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a brown book, a white book, a black book, a yellow book, an orange book, a blue book, and a green book. The yellow book is the rightmost. The blue book is to the left of the orange book. The green book is to the right of the white book. The blue book is to the right of the green book. The black book is the fourth from the left. The brown book is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The brown book is the fourth from the left.", "B) The white book is the fourth from the left.", "C) The black book is the fourth from the left.", "D) The yellow book is the fourth from the left.", "E) The orange book is the fourth from the left.", "F) The blue book is the fourth from the left.", "G) The green book is the fourth from the left." ], "answer": "C" }, { "id": "logical_deduction_412", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Dan, Ana, Mel, Ada, Eve, and Amy. Eve finished above Amy. Dan finished second. Ada finished below Ana. Ana finished third-to-last. Mel finished last. Amy finished third.", "question": "Which of the following is true?", "options": [ "A) Joe finished last.", "B) Dan finished last.", "C) Ana finished last.", "D) Mel finished last.", "E) Ada finished last.", "F) Eve finished last.", "G) Amy finished last." ], "answer": "D" }, { "id": "logical_deduction_413", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a raven, a hummingbird, a robin, a crow, a quail, a blue jay, and a cardinal. The hummingbird is to the left of the crow. The quail is to the right of the crow. The raven is to the left of the robin. The blue jay is the third from the right. The cardinal is the leftmost. The hummingbird is the fourth from the left.", "question": "Which of the following is true?", "options": [ "A) The raven is the third from the right.", "B) The hummingbird is the third from the right.", "C) The robin is the third from the right.", "D) The crow is the third from the right.", "E) The quail is the third from the right.", "F) The blue jay is the third from the right.", "G) The cardinal is the third from the right." ], "answer": "F" }, { "id": "logical_deduction_414", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a raven, a cardinal, a falcon, an owl, a blue jay, a quail, and a robin. The owl is the second from the right. The cardinal is the fourth from the left. The falcon is to the left of the blue jay. The quail is to the left of the falcon. The raven is the second from the left. The robin is to the left of the quail.", "question": "Which of the following is true?", "options": [ "A) The raven is the second from the left.", "B) The cardinal is the second from the left.", "C) The falcon is the second from the left.", "D) The owl is the second from the left.", "E) The blue jay is the second from the left.", "F) The quail is the second from the left.", "G) The robin is the second from the left." ], "answer": "A" }, { "id": "logical_deduction_415", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a black book, a yellow book, a white book, a gray book, a purple book, an orange book, and a green book. The green book is to the left of the gray book. The gray book is the third from the right. The white book is the rightmost. The orange book is the second from the left. The black book is to the right of the yellow book. The black book is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The black book is the second from the right.", "B) The yellow book is the second from the right.", "C) The white book is the second from the right.", "D) The gray book is the second from the right.", "E) The purple book is the second from the right.", "F) The orange book is the second from the right.", "G) The green book is the second from the right." ], "answer": "E" }, { "id": "logical_deduction_416", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: plums, kiwis, cantaloupes, pears, watermelons, apples, and loquats. The watermelons are more expensive than the cantaloupes. The apples are less expensive than the cantaloupes. The watermelons are the second-most expensive. The loquats are less expensive than the kiwis. The apples are more expensive than the loquats. The loquats are the third-cheapest. The plums are the cheapest.", "question": "Which of the following is true?", "options": [ "A) The plums are the most expensive.", "B) The kiwis are the most expensive.", "C) The cantaloupes are the most expensive.", "D) The pears are the most expensive.", "E) The watermelons are the most expensive.", "F) The apples are the most expensive.", "G) The loquats are the most expensive." ], "answer": "B" }, { "id": "logical_deduction_417", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a green book, a brown book, a white book, a black book, an orange book, a purple book, and a yellow book. The purple book is to the left of the yellow book. The green book is to the left of the white book. The brown book is to the right of the yellow book. The white book is the fourth from the left. The green book is to the right of the orange book. The black book is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The green book is the leftmost.", "B) The brown book is the leftmost.", "C) The white book is the leftmost.", "D) The black book is the leftmost.", "E) The orange book is the leftmost.", "F) The purple book is the leftmost.", "G) The yellow book is the leftmost." ], "answer": "E" }, { "id": "logical_deduction_418", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a truck, a hatchback, a minivan, a bus, a tractor, a station wagon, and a convertible. The station wagon is the fourth-newest. The minivan is the third-newest. The tractor is the second-oldest. The convertible is older than the station wagon. The truck is newer than the bus. The hatchback is older than the convertible.", "question": "Which of the following is true?", "options": [ "A) The truck is the third-oldest.", "B) The hatchback is the third-oldest.", "C) The minivan is the third-oldest.", "D) The bus is the third-oldest.", "E) The tractor is the third-oldest.", "F) The station wagon is the third-oldest.", "G) The convertible is the third-oldest." ], "answer": "G" }, { "id": "logical_deduction_419", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a black book, a yellow book, a white book, a gray book, a purple book, an orange book, and a green book. The green book is to the left of the gray book. The gray book is the third from the right. The white book is the rightmost. The orange book is the second from the left. The black book is to the right of the yellow book. The black book is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The black book is the third from the left.", "B) The yellow book is the third from the left.", "C) The white book is the third from the left.", "D) The gray book is the third from the left.", "E) The purple book is the third from the left.", "F) The orange book is the third from the left.", "G) The green book is the third from the left." ], "answer": "A" }, { "id": "logical_deduction_420", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a raven, a cardinal, a falcon, an owl, a blue jay, a quail, and a robin. The owl is the second from the right. The cardinal is the fourth from the left. The falcon is to the left of the blue jay. The quail is to the left of the falcon. The raven is the second from the left. The robin is to the left of the quail.", "question": "Which of the following is true?", "options": [ "A) The raven is the second from the right.", "B) The cardinal is the second from the right.", "C) The falcon is the second from the right.", "D) The owl is the second from the right.", "E) The blue jay is the second from the right.", "F) The quail is the second from the right.", "G) The robin is the second from the right." ], "answer": "D" }, { "id": "logical_deduction_421", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hawk, a hummingbird, a quail, an owl, a crow, a robin, and a cardinal. The cardinal is the second from the right. The hawk is the rightmost. The owl is to the left of the hummingbird. The robin is to the left of the quail. The owl is to the right of the crow. The robin is the fourth from the left.", "question": "Which of the following is true?", "options": [ "A) The hawk is the third from the right.", "B) The hummingbird is the third from the right.", "C) The quail is the third from the right.", "D) The owl is the third from the right.", "E) The crow is the third from the right.", "F) The robin is the third from the right.", "G) The cardinal is the third from the right." ], "answer": "C" }, { "id": "logical_deduction_422", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: an owl, a crow, a falcon, a cardinal, a hummingbird, a quail, and a hawk. The falcon is to the left of the crow. The quail is to the right of the cardinal. The hummingbird is to the right of the quail. The falcon is the second from the right. The hummingbird is to the left of the hawk. The owl is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The owl is the third from the left.", "B) The crow is the third from the left.", "C) The falcon is the third from the left.", "D) The cardinal is the third from the left.", "E) The hummingbird is the third from the left.", "F) The quail is the third from the left.", "G) The hawk is the third from the left." ], "answer": "A" }, { "id": "logical_deduction_423", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: watermelons, mangoes, kiwis, pears, cantaloupes, oranges, and peaches. The oranges are more expensive than the peaches. The cantaloupes are the fourth-most expensive. The pears are less expensive than the cantaloupes. The peaches are the second-most expensive. The mangoes are the cheapest. The kiwis are the third-cheapest.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the fourth-most expensive.", "B) The mangoes are the fourth-most expensive.", "C) The kiwis are the fourth-most expensive.", "D) The pears are the fourth-most expensive.", "E) The cantaloupes are the fourth-most expensive.", "F) The oranges are the fourth-most expensive.", "G) The peaches are the fourth-most expensive." ], "answer": "E" }, { "id": "logical_deduction_424", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a cardinal, a blue jay, a robin, a falcon, a quail, a hummingbird, and a raven. The falcon is to the right of the quail. The robin is to the right of the hummingbird. The raven is to the left of the quail. The blue jay is the second from the left. The robin is the third from the left. The cardinal is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the rightmost.", "B) The blue jay is the rightmost.", "C) The robin is the rightmost.", "D) The falcon is the rightmost.", "E) The quail is the rightmost.", "F) The hummingbird is the rightmost.", "G) The raven is the rightmost." ], "answer": "D" }, { "id": "logical_deduction_425", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a blue jay, an owl, a falcon, a hawk, a raven, a crow, and a hummingbird. The falcon is the second from the left. The crow is the rightmost. The hummingbird is to the right of the blue jay. The hawk is to the right of the hummingbird. The blue jay is to the right of the owl. The raven is to the left of the falcon.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the fourth from the left.", "B) The owl is the fourth from the left.", "C) The falcon is the fourth from the left.", "D) The hawk is the fourth from the left.", "E) The raven is the fourth from the left.", "F) The crow is the fourth from the left.", "G) The hummingbird is the fourth from the left." ], "answer": "A" }, { "id": "logical_deduction_426", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a sedan, a minivan, a motorcyle, a limousine, a hatchback, a truck, and a tractor. The motorcyle is older than the tractor. The hatchback is older than the limousine. The hatchback is newer than the truck. The truck is newer than the tractor. The minivan is the second-newest. The sedan is the third-newest.", "question": "Which of the following is true?", "options": [ "A) The sedan is the third-oldest.", "B) The minivan is the third-oldest.", "C) The motorcyle is the third-oldest.", "D) The limousine is the third-oldest.", "E) The hatchback is the third-oldest.", "F) The truck is the third-oldest.", "G) The tractor is the third-oldest." ], "answer": "F" }, { "id": "logical_deduction_427", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Eve, Rob, Dan, Mel, Ana, Eli, and Ada. Ada finished above Rob. Eve finished below Rob. Mel finished above Eli. Ada finished below Dan. Ana finished third. Eli finished second.", "question": "Which of the following is true?", "options": [ "A) Eve finished fourth.", "B) Rob finished fourth.", "C) Dan finished fourth.", "D) Mel finished fourth.", "E) Ana finished fourth.", "F) Eli finished fourth.", "G) Ada finished fourth." ], "answer": "C" }, { "id": "logical_deduction_428", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a limousine, a convertible, a station wagon, a minivan, a bus, a tractor, and a truck. The minivan is the oldest. The truck is older than the station wagon. The truck is newer than the limousine. The bus is newer than the convertible. The bus is older than the tractor. The limousine is newer than the tractor.", "question": "Which of the following is true?", "options": [ "A) The limousine is the second-oldest.", "B) The convertible is the second-oldest.", "C) The station wagon is the second-oldest.", "D) The minivan is the second-oldest.", "E) The bus is the second-oldest.", "F) The tractor is the second-oldest.", "G) The truck is the second-oldest." ], "answer": "B" }, { "id": "logical_deduction_429", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a blue book, a yellow book, a brown book, a gray book, a green book, a purple book, and an orange book. The blue book is to the right of the brown book. The gray book is the rightmost. The purple book is to the left of the green book. The green book is to the left of the yellow book. The brown book is the second from the left. The purple book is to the right of the blue book.", "question": "Which of the following is true?", "options": [ "A) The blue book is the third from the right.", "B) The yellow book is the third from the right.", "C) The brown book is the third from the right.", "D) The gray book is the third from the right.", "E) The green book is the third from the right.", "F) The purple book is the third from the right.", "G) The orange book is the third from the right." ], "answer": "E" }, { "id": "logical_deduction_430", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a station wagon, a limousine, a truck, a minivan, a motorcyle, a hatchback, and a bus. The motorcyle is older than the truck. The station wagon is older than the hatchback. The motorcyle is newer than the hatchback. The bus is the second-newest. The minivan is the oldest. The limousine is older than the station wagon.", "question": "Which of the following is true?", "options": [ "A) The station wagon is the newest.", "B) The limousine is the newest.", "C) The truck is the newest.", "D) The minivan is the newest.", "E) The motorcyle is the newest.", "F) The hatchback is the newest.", "G) The bus is the newest." ], "answer": "C" }, { "id": "logical_deduction_431", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Dan, Ada, Amy, Rob, Mya, and Mel. Ada finished below Amy. Joe finished below Dan. Dan finished below Ada. Mel finished third-to-last. Amy finished third. Rob finished below Mya.", "question": "Which of the following is true?", "options": [ "A) Joe finished third.", "B) Dan finished third.", "C) Ada finished third.", "D) Amy finished third.", "E) Rob finished third.", "F) Mya finished third.", "G) Mel finished third." ], "answer": "D" }, { "id": "logical_deduction_432", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Eli, Ada, Amy, Ana, Eve, Mel, and Dan. Ada finished above Mel. Dan finished above Ada. Amy finished last. Ana finished third-to-last. Dan finished below Eli. Eve finished third.", "question": "Which of the following is true?", "options": [ "A) Eli finished last.", "B) Ada finished last.", "C) Amy finished last.", "D) Ana finished last.", "E) Eve finished last.", "F) Mel finished last.", "G) Dan finished last." ], "answer": "C" }, { "id": "logical_deduction_433", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Ada, Ana, Rob, Amy, Dan, Joe, and Eli. Eli finished below Amy. Ada finished third. Amy finished below Rob. Dan finished last. Rob finished second. Ana finished fourth.", "question": "Which of the following is true?", "options": [ "A) Ada finished third.", "B) Ana finished third.", "C) Rob finished third.", "D) Amy finished third.", "E) Dan finished third.", "F) Joe finished third.", "G) Eli finished third." ], "answer": "A" }, { "id": "logical_deduction_434", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: kiwis, plums, mangoes, watermelons, pears, peaches, and oranges. The pears are the third-cheapest. The kiwis are the second-most expensive. The pears are more expensive than the plums. The oranges are less expensive than the kiwis. The mangoes are the third-most expensive. The peaches are the second-cheapest.", "question": "Which of the following is true?", "options": [ "A) The kiwis are the fourth-most expensive.", "B) The plums are the fourth-most expensive.", "C) The mangoes are the fourth-most expensive.", "D) The watermelons are the fourth-most expensive.", "E) The pears are the fourth-most expensive.", "F) The peaches are the fourth-most expensive.", "G) The oranges are the fourth-most expensive." ], "answer": "G" }, { "id": "logical_deduction_435", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a red book, a purple book, a green book, a white book, an orange book, a blue book, and a gray book. The green book is to the left of the white book. The red book is to the left of the purple book. The red book is to the right of the orange book. The gray book is the second from the left. The purple book is to the left of the green book. The blue book is the fourth from the left.", "question": "Which of the following is true?", "options": [ "A) The red book is the third from the left.", "B) The purple book is the third from the left.", "C) The green book is the third from the left.", "D) The white book is the third from the left.", "E) The orange book is the third from the left.", "F) The blue book is the third from the left.", "G) The gray book is the third from the left." ], "answer": "A" }, { "id": "logical_deduction_436", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a raven, a cardinal, a falcon, an owl, a blue jay, a quail, and a robin. The owl is the second from the right. The cardinal is the fourth from the left. The falcon is to the left of the blue jay. The quail is to the left of the falcon. The raven is the second from the left. The robin is to the left of the quail.", "question": "Which of the following is true?", "options": [ "A) The raven is the third from the left.", "B) The cardinal is the third from the left.", "C) The falcon is the third from the left.", "D) The owl is the third from the left.", "E) The blue jay is the third from the left.", "F) The quail is the third from the left.", "G) The robin is the third from the left." ], "answer": "F" }, { "id": "logical_deduction_437", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: loquats, cantaloupes, watermelons, apples, oranges, pears, and mangoes. The oranges are the second-cheapest. The apples are less expensive than the pears. The mangoes are more expensive than the cantaloupes. The mangoes are the third-cheapest. The watermelons are the second-most expensive. The loquats are the third-most expensive.", "question": "Which of the following is true?", "options": [ "A) The loquats are the second-most expensive.", "B) The cantaloupes are the second-most expensive.", "C) The watermelons are the second-most expensive.", "D) The apples are the second-most expensive.", "E) The oranges are the second-most expensive.", "F) The pears are the second-most expensive.", "G) The mangoes are the second-most expensive." ], "answer": "C" }, { "id": "logical_deduction_438", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a station wagon, a sedan, a bus, a motorcyle, a hatchback, a tractor, and a minivan. The sedan is the third-oldest. The tractor is newer than the motorcyle. The bus is older than the motorcyle. The bus is newer than the hatchback. The minivan is the newest. The station wagon is the oldest.", "question": "Which of the following is true?", "options": [ "A) The station wagon is the oldest.", "B) The sedan is the oldest.", "C) The bus is the oldest.", "D) The motorcyle is the oldest.", "E) The hatchback is the oldest.", "F) The tractor is the oldest.", "G) The minivan is the oldest." ], "answer": "A" }, { "id": "logical_deduction_439", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Ana, Eli, Mya, Amy, Joe, Mel, and Ada. Ada finished above Mel. Ada finished third-to-last. Amy finished above Ana. Mya finished second-to-last. Joe finished above Amy. Eli finished below Ana.", "question": "Which of the following is true?", "options": [ "A) Ana finished third-to-last.", "B) Eli finished third-to-last.", "C) Mya finished third-to-last.", "D) Amy finished third-to-last.", "E) Joe finished third-to-last.", "F) Mel finished third-to-last.", "G) Ada finished third-to-last." ], "answer": "G" }, { "id": "logical_deduction_440", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: apples, plums, mangoes, watermelons, oranges, kiwis, and loquats. The watermelons are less expensive than the plums. The watermelons are more expensive than the oranges. The kiwis are less expensive than the oranges. The apples are more expensive than the loquats. The plums are less expensive than the mangoes. The mangoes are the third-most expensive.", "question": "Which of the following is true?", "options": [ "A) The apples are the third-most expensive.", "B) The plums are the third-most expensive.", "C) The mangoes are the third-most expensive.", "D) The watermelons are the third-most expensive.", "E) The oranges are the third-most expensive.", "F) The kiwis are the third-most expensive.", "G) The loquats are the third-most expensive." ], "answer": "C" }, { "id": "logical_deduction_441", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a white book, a gray book, a yellow book, a purple book, a red book, a black book, and a green book. The black book is the second from the right. The red book is to the left of the green book. The red book is the second from the left. The gray book is the third from the right. The yellow book is the third from the left. The white book is the fourth from the left.", "question": "Which of the following is true?", "options": [ "A) The white book is the leftmost.", "B) The gray book is the leftmost.", "C) The yellow book is the leftmost.", "D) The purple book is the leftmost.", "E) The red book is the leftmost.", "F) The black book is the leftmost.", "G) The green book is the leftmost." ], "answer": "D" }, { "id": "logical_deduction_442", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: mangoes, kiwis, oranges, watermelons, apples, pears, and loquats. The loquats are less expensive than the oranges. The oranges are the third-most expensive. The apples are the cheapest. The kiwis are more expensive than the pears. The mangoes are more expensive than the watermelons. The loquats are more expensive than the kiwis.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the cheapest.", "B) The kiwis are the cheapest.", "C) The oranges are the cheapest.", "D) The watermelons are the cheapest.", "E) The apples are the cheapest.", "F) The pears are the cheapest.", "G) The loquats are the cheapest." ], "answer": "E" }, { "id": "logical_deduction_443", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a blue jay, a falcon, a raven, a crow, a robin, an owl, and a hummingbird. The robin is to the left of the owl. The crow is the rightmost. The hummingbird is the fourth from the left. The owl is the third from the right. The blue jay is to the left of the robin. The raven is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the rightmost.", "B) The falcon is the rightmost.", "C) The raven is the rightmost.", "D) The crow is the rightmost.", "E) The robin is the rightmost.", "F) The owl is the rightmost.", "G) The hummingbird is the rightmost." ], "answer": "D" }, { "id": "logical_deduction_444", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a motorcyle, a sedan, a station wagon, a tractor, a minivan, a bus, and a truck. The motorcyle is older than the minivan. The minivan is older than the tractor. The bus is newer than the truck. The station wagon is the third-newest. The sedan is older than the truck. The tractor is older than the sedan.", "question": "Which of the following is true?", "options": [ "A) The motorcyle is the oldest.", "B) The sedan is the oldest.", "C) The station wagon is the oldest.", "D) The tractor is the oldest.", "E) The minivan is the oldest.", "F) The bus is the oldest.", "G) The truck is the oldest." ], "answer": "A" }, { "id": "logical_deduction_445", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a yellow book, a brown book, a white book, an orange book, a black book, a blue book, and a purple book. The black book is the second from the left. The white book is to the right of the orange book. The black book is to the right of the brown book. The yellow book is the third from the right. The purple book is the third from the left. The orange book is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the leftmost.", "B) The brown book is the leftmost.", "C) The white book is the leftmost.", "D) The orange book is the leftmost.", "E) The black book is the leftmost.", "F) The blue book is the leftmost.", "G) The purple book is the leftmost." ], "answer": "B" }, { "id": "logical_deduction_446", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Mel, Rob, Eli, Dan, Ana, Ada, and Mya. Ana finished last. Mya finished above Rob. Dan finished above Mya. Rob finished fourth. Eli finished second. Mel finished above Ada.", "question": "Which of the following is true?", "options": [ "A) Mel finished first.", "B) Rob finished first.", "C) Eli finished first.", "D) Dan finished first.", "E) Ana finished first.", "F) Ada finished first.", "G) Mya finished first." ], "answer": "D" }, { "id": "logical_deduction_447", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a brown book, a green book, a black book, an orange book, a white book, a blue book, and a gray book. The brown book is the rightmost. The black book is to the right of the white book. The gray book is the third from the left. The orange book is to the right of the gray book. The orange book is to the left of the green book. The blue book is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The brown book is the second from the right.", "B) The green book is the second from the right.", "C) The black book is the second from the right.", "D) The orange book is the second from the right.", "E) The white book is the second from the right.", "F) The blue book is the second from the right.", "G) The gray book is the second from the right." ], "answer": "B" }, { "id": "logical_deduction_448", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Dan, Ana, Mel, Ada, Eve, and Amy. Eve finished above Amy. Dan finished second. Ada finished below Ana. Ana finished third-to-last. Mel finished last. Amy finished third.", "question": "Which of the following is true?", "options": [ "A) Joe finished first.", "B) Dan finished first.", "C) Ana finished first.", "D) Mel finished first.", "E) Ada finished first.", "F) Eve finished first.", "G) Amy finished first." ], "answer": "F" }, { "id": "logical_deduction_449", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: apples, plums, mangoes, watermelons, oranges, kiwis, and loquats. The watermelons are less expensive than the plums. The watermelons are more expensive than the oranges. The kiwis are less expensive than the oranges. The apples are more expensive than the loquats. The plums are less expensive than the mangoes. The mangoes are the third-most expensive.", "question": "Which of the following is true?", "options": [ "A) The apples are the cheapest.", "B) The plums are the cheapest.", "C) The mangoes are the cheapest.", "D) The watermelons are the cheapest.", "E) The oranges are the cheapest.", "F) The kiwis are the cheapest.", "G) The loquats are the cheapest." ], "answer": "F" }, { "id": "logical_deduction_450", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: mangoes, cantaloupes, apples, plums, loquats, watermelons, and peaches. The plums are more expensive than the mangoes. The watermelons are more expensive than the loquats. The loquats are the second-cheapest. The plums are less expensive than the peaches. The mangoes are the fourth-most expensive. The peaches are less expensive than the cantaloupes.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the third-cheapest.", "B) The cantaloupes are the third-cheapest.", "C) The apples are the third-cheapest.", "D) The plums are the third-cheapest.", "E) The loquats are the third-cheapest.", "F) The watermelons are the third-cheapest.", "G) The peaches are the third-cheapest." ], "answer": "F" }, { "id": "logical_deduction_451", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Ana, Eve, Ada, Dan, Rob, Amy, and Joe. Dan finished third. Ana finished above Ada. Amy finished last. Dan finished below Rob. Eve finished below Ada. Rob finished below Joe.", "question": "Which of the following is true?", "options": [ "A) Ana finished fourth.", "B) Eve finished fourth.", "C) Ada finished fourth.", "D) Dan finished fourth.", "E) Rob finished fourth.", "F) Amy finished fourth.", "G) Joe finished fourth." ], "answer": "A" }, { "id": "logical_deduction_452", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Ana, Eve, Ada, Dan, Rob, Amy, and Joe. Dan finished third. Ana finished above Ada. Amy finished last. Dan finished below Rob. Eve finished below Ada. Rob finished below Joe.", "question": "Which of the following is true?", "options": [ "A) Ana finished third-to-last.", "B) Eve finished third-to-last.", "C) Ada finished third-to-last.", "D) Dan finished third-to-last.", "E) Rob finished third-to-last.", "F) Amy finished third-to-last.", "G) Joe finished third-to-last." ], "answer": "C" }, { "id": "logical_deduction_453", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a truck, a motorcyle, a sedan, a minivan, a station wagon, a hatchback, and a tractor. The hatchback is newer than the truck. The sedan is the third-newest. The station wagon is the newest. The motorcyle is older than the truck. The minivan is newer than the sedan. The tractor is the third-oldest.", "question": "Which of the following is true?", "options": [ "A) The truck is the second-newest.", "B) The motorcyle is the second-newest.", "C) The sedan is the second-newest.", "D) The minivan is the second-newest.", "E) The station wagon is the second-newest.", "F) The hatchback is the second-newest.", "G) The tractor is the second-newest." ], "answer": "D" }, { "id": "logical_deduction_454", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Eli, Ada, Amy, Ana, Eve, Mel, and Dan. Ada finished above Mel. Dan finished above Ada. Amy finished last. Ana finished third-to-last. Dan finished below Eli. Eve finished third.", "question": "Which of the following is true?", "options": [ "A) Eli finished fourth.", "B) Ada finished fourth.", "C) Amy finished fourth.", "D) Ana finished fourth.", "E) Eve finished fourth.", "F) Mel finished fourth.", "G) Dan finished fourth." ], "answer": "B" }, { "id": "logical_deduction_455", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a raven, a hummingbird, a robin, a crow, a quail, a blue jay, and a cardinal. The hummingbird is to the left of the crow. The quail is to the right of the crow. The raven is to the left of the robin. The blue jay is the third from the right. The cardinal is the leftmost. The hummingbird is the fourth from the left.", "question": "Which of the following is true?", "options": [ "A) The raven is the rightmost.", "B) The hummingbird is the rightmost.", "C) The robin is the rightmost.", "D) The crow is the rightmost.", "E) The quail is the rightmost.", "F) The blue jay is the rightmost.", "G) The cardinal is the rightmost." ], "answer": "E" }, { "id": "logical_deduction_456", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a truck, a convertible, a bus, a station wagon, a minivan, a sedan, and a motorcyle. The bus is newer than the sedan. The motorcyle is older than the truck. The station wagon is older than the motorcyle. The sedan is newer than the convertible. The station wagon is newer than the bus. The minivan is the fourth-newest.", "question": "Which of the following is true?", "options": [ "A) The truck is the second-newest.", "B) The convertible is the second-newest.", "C) The bus is the second-newest.", "D) The station wagon is the second-newest.", "E) The minivan is the second-newest.", "F) The sedan is the second-newest.", "G) The motorcyle is the second-newest." ], "answer": "G" }, { "id": "logical_deduction_457", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a cardinal, a crow, a hummingbird, a blue jay, an owl, a robin, and a quail. The cardinal is to the right of the crow. The quail is the third from the left. The owl is to the right of the robin. The hummingbird is to the right of the blue jay. The cardinal is the second from the left. The owl is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the fourth from the left.", "B) The crow is the fourth from the left.", "C) The hummingbird is the fourth from the left.", "D) The blue jay is the fourth from the left.", "E) The owl is the fourth from the left.", "F) The robin is the fourth from the left.", "G) The quail is the fourth from the left." ], "answer": "F" }, { "id": "logical_deduction_458", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: loquats, cantaloupes, watermelons, apples, oranges, pears, and mangoes. The oranges are the second-cheapest. The apples are less expensive than the pears. The mangoes are more expensive than the cantaloupes. The mangoes are the third-cheapest. The watermelons are the second-most expensive. The loquats are the third-most expensive.", "question": "Which of the following is true?", "options": [ "A) The loquats are the fourth-most expensive.", "B) The cantaloupes are the fourth-most expensive.", "C) The watermelons are the fourth-most expensive.", "D) The apples are the fourth-most expensive.", "E) The oranges are the fourth-most expensive.", "F) The pears are the fourth-most expensive.", "G) The mangoes are the fourth-most expensive." ], "answer": "D" }, { "id": "logical_deduction_459", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a red book, a white book, a purple book, a black book, a gray book, an orange book, and a blue book. The red book is to the right of the white book. The gray book is to the left of the orange book. The gray book is to the right of the blue book. The red book is the second from the right. The black book is the fourth from the left. The orange book is to the left of the white book.", "question": "Which of the following is true?", "options": [ "A) The red book is the fourth from the left.", "B) The white book is the fourth from the left.", "C) The purple book is the fourth from the left.", "D) The black book is the fourth from the left.", "E) The gray book is the fourth from the left.", "F) The orange book is the fourth from the left.", "G) The blue book is the fourth from the left." ], "answer": "D" }, { "id": "logical_deduction_460", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Eve, Rob, Dan, Mel, Ana, Eli, and Ada. Ada finished above Rob. Eve finished below Rob. Mel finished above Eli. Ada finished below Dan. Ana finished third. Eli finished second.", "question": "Which of the following is true?", "options": [ "A) Eve finished third-to-last.", "B) Rob finished third-to-last.", "C) Dan finished third-to-last.", "D) Mel finished third-to-last.", "E) Ana finished third-to-last.", "F) Eli finished third-to-last.", "G) Ada finished third-to-last." ], "answer": "G" }, { "id": "logical_deduction_461", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a red book, a purple book, a green book, a white book, an orange book, a blue book, and a gray book. The green book is to the left of the white book. The red book is to the left of the purple book. The red book is to the right of the orange book. The gray book is the second from the left. The purple book is to the left of the green book. The blue book is the fourth from the left.", "question": "Which of the following is true?", "options": [ "A) The red book is the fourth from the left.", "B) The purple book is the fourth from the left.", "C) The green book is the fourth from the left.", "D) The white book is the fourth from the left.", "E) The orange book is the fourth from the left.", "F) The blue book is the fourth from the left.", "G) The gray book is the fourth from the left." ], "answer": "F" }, { "id": "logical_deduction_462", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a brown book, a gray book, an orange book, a green book, a black book, a purple book, and a yellow book. The purple book is the leftmost. The brown book is to the right of the yellow book. The green book is to the left of the orange book. The orange book is to the left of the gray book. The black book is the third from the left. The green book is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The brown book is the rightmost.", "B) The gray book is the rightmost.", "C) The orange book is the rightmost.", "D) The green book is the rightmost.", "E) The black book is the rightmost.", "F) The purple book is the rightmost.", "G) The yellow book is the rightmost." ], "answer": "B" }, { "id": "logical_deduction_463", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a limousine, a truck, a minivan, a tractor, a hatchback, a bus, and a convertible. The convertible is the second-oldest. The tractor is the fourth-newest. The minivan is older than the truck. The truck is older than the limousine. The hatchback is the third-oldest. The bus is newer than the limousine.", "question": "Which of the following is true?", "options": [ "A) The limousine is the second-oldest.", "B) The truck is the second-oldest.", "C) The minivan is the second-oldest.", "D) The tractor is the second-oldest.", "E) The hatchback is the second-oldest.", "F) The bus is the second-oldest.", "G) The convertible is the second-oldest." ], "answer": "G" }, { "id": "logical_deduction_464", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Dan, Ada, Amy, Rob, Mya, and Mel. Ada finished below Amy. Joe finished below Dan. Dan finished below Ada. Mel finished third-to-last. Amy finished third. Rob finished below Mya.", "question": "Which of the following is true?", "options": [ "A) Joe finished last.", "B) Dan finished last.", "C) Ada finished last.", "D) Amy finished last.", "E) Rob finished last.", "F) Mya finished last.", "G) Mel finished last." ], "answer": "A" }, { "id": "logical_deduction_465", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: watermelons, oranges, mangoes, cantaloupes, kiwis, pears, and peaches. The pears are the second-cheapest. The peaches are more expensive than the cantaloupes. The peaches are less expensive than the mangoes. The cantaloupes are more expensive than the kiwis. The oranges are the fourth-most expensive. The watermelons are the second-most expensive.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the third-most expensive.", "B) The oranges are the third-most expensive.", "C) The mangoes are the third-most expensive.", "D) The cantaloupes are the third-most expensive.", "E) The kiwis are the third-most expensive.", "F) The pears are the third-most expensive.", "G) The peaches are the third-most expensive." ], "answer": "G" }, { "id": "logical_deduction_466", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Eve, Rob, Dan, Mel, Ana, Eli, and Ada. Ada finished above Rob. Eve finished below Rob. Mel finished above Eli. Ada finished below Dan. Ana finished third. Eli finished second.", "question": "Which of the following is true?", "options": [ "A) Eve finished third.", "B) Rob finished third.", "C) Dan finished third.", "D) Mel finished third.", "E) Ana finished third.", "F) Eli finished third.", "G) Ada finished third." ], "answer": "E" }, { "id": "logical_deduction_467", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Mya, Eli, Ana, Amy, Mel, Dan, and Joe. Amy finished below Joe. Dan finished above Mya. Eli finished third. Ana finished first. Amy finished second-to-last. Mya finished fourth.", "question": "Which of the following is true?", "options": [ "A) Mya finished first.", "B) Eli finished first.", "C) Ana finished first.", "D) Amy finished first.", "E) Mel finished first.", "F) Dan finished first.", "G) Joe finished first." ], "answer": "C" }, { "id": "logical_deduction_468", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: apples, pears, mangoes, oranges, watermelons, peaches, and cantaloupes. The pears are more expensive than the oranges. The oranges are more expensive than the cantaloupes. The peaches are less expensive than the cantaloupes. The apples are the third-cheapest. The watermelons are the second-most expensive. The mangoes are the fourth-most expensive.", "question": "Which of the following is true?", "options": [ "A) The apples are the cheapest.", "B) The pears are the cheapest.", "C) The mangoes are the cheapest.", "D) The oranges are the cheapest.", "E) The watermelons are the cheapest.", "F) The peaches are the cheapest.", "G) The cantaloupes are the cheapest." ], "answer": "F" }, { "id": "logical_deduction_469", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a brown book, a gray book, an orange book, a green book, a black book, a purple book, and a yellow book. The purple book is the leftmost. The brown book is to the right of the yellow book. The green book is to the left of the orange book. The orange book is to the left of the gray book. The black book is the third from the left. The green book is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The brown book is the second from the left.", "B) The gray book is the second from the left.", "C) The orange book is the second from the left.", "D) The green book is the second from the left.", "E) The black book is the second from the left.", "F) The purple book is the second from the left.", "G) The yellow book is the second from the left." ], "answer": "G" }, { "id": "logical_deduction_470", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a blue jay, an owl, a hawk, a falcon, a hummingbird, a robin, and a quail. The hummingbird is to the left of the falcon. The owl is the second from the left. The robin is to the left of the hummingbird. The quail is to the right of the falcon. The robin is to the right of the owl. The blue jay is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the second from the left.", "B) The owl is the second from the left.", "C) The hawk is the second from the left.", "D) The falcon is the second from the left.", "E) The hummingbird is the second from the left.", "F) The robin is the second from the left.", "G) The quail is the second from the left." ], "answer": "B" }, { "id": "logical_deduction_471", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: an orange book, a red book, a brown book, a blue book, a black book, a gray book, and a white book. The white book is the leftmost. The red book is to the right of the blue book. The orange book is the second from the right. The gray book is the fourth from the left. The black book is the rightmost. The gray book is to the right of the red book.", "question": "Which of the following is true?", "options": [ "A) The orange book is the third from the right.", "B) The red book is the third from the right.", "C) The brown book is the third from the right.", "D) The blue book is the third from the right.", "E) The black book is the third from the right.", "F) The gray book is the third from the right.", "G) The white book is the third from the right." ], "answer": "C" }, { "id": "logical_deduction_472", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a limousine, a minivan, a bus, a station wagon, a tractor, a truck, and a hatchback. The truck is the oldest. The tractor is older than the minivan. The minivan is the third-newest. The limousine is the fourth-newest. The station wagon is newer than the hatchback. The bus is the second-oldest.", "question": "Which of the following is true?", "options": [ "A) The limousine is the oldest.", "B) The minivan is the oldest.", "C) The bus is the oldest.", "D) The station wagon is the oldest.", "E) The tractor is the oldest.", "F) The truck is the oldest.", "G) The hatchback is the oldest." ], "answer": "F" }, { "id": "logical_deduction_473", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: watermelons, oranges, mangoes, cantaloupes, kiwis, pears, and peaches. The pears are the second-cheapest. The peaches are more expensive than the cantaloupes. The peaches are less expensive than the mangoes. The cantaloupes are more expensive than the kiwis. The oranges are the fourth-most expensive. The watermelons are the second-most expensive.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the cheapest.", "B) The oranges are the cheapest.", "C) The mangoes are the cheapest.", "D) The cantaloupes are the cheapest.", "E) The kiwis are the cheapest.", "F) The pears are the cheapest.", "G) The peaches are the cheapest." ], "answer": "E" }, { "id": "logical_deduction_474", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a bus, a motorcyle, a hatchback, a station wagon, a minivan, a truck, and a limousine. The station wagon is the fourth-newest. The motorcyle is newer than the truck. The station wagon is older than the hatchback. The minivan is newer than the hatchback. The bus is newer than the minivan. The truck is newer than the limousine.", "question": "Which of the following is true?", "options": [ "A) The bus is the newest.", "B) The motorcyle is the newest.", "C) The hatchback is the newest.", "D) The station wagon is the newest.", "E) The minivan is the newest.", "F) The truck is the newest.", "G) The limousine is the newest." ], "answer": "A" }, { "id": "logical_deduction_475", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hawk, a crow, an owl, a raven, a falcon, a quail, and a hummingbird. The hummingbird is the second from the left. The raven is the fourth from the left. The raven is to the right of the hawk. The owl is to the right of the crow. The falcon is the rightmost. The hawk is to the right of the hummingbird. The quail is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The hawk is the third from the right.", "B) The crow is the third from the right.", "C) The owl is the third from the right.", "D) The raven is the third from the right.", "E) The falcon is the third from the right.", "F) The quail is the third from the right.", "G) The hummingbird is the third from the right." ], "answer": "C" }, { "id": "logical_deduction_476", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a brown book, a gray book, an orange book, a green book, a black book, a purple book, and a yellow book. The purple book is the leftmost. The brown book is to the right of the yellow book. The green book is to the left of the orange book. The orange book is to the left of the gray book. The black book is the third from the left. The green book is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The brown book is the fourth from the left.", "B) The gray book is the fourth from the left.", "C) The orange book is the fourth from the left.", "D) The green book is the fourth from the left.", "E) The black book is the fourth from the left.", "F) The purple book is the fourth from the left.", "G) The yellow book is the fourth from the left." ], "answer": "A" }, { "id": "logical_deduction_477", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a brown book, a yellow book, a black book, a white book, a green book, an orange book, and a purple book. The purple book is the rightmost. The yellow book is the leftmost. The orange book is the second from the right. The brown book is to the left of the green book. The brown book is to the right of the black book. The white book is the fourth from the left.", "question": "Which of the following is true?", "options": [ "A) The brown book is the rightmost.", "B) The yellow book is the rightmost.", "C) The black book is the rightmost.", "D) The white book is the rightmost.", "E) The green book is the rightmost.", "F) The orange book is the rightmost.", "G) The purple book is the rightmost." ], "answer": "G" }, { "id": "logical_deduction_478", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a blue jay, an owl, a hawk, a falcon, a hummingbird, a robin, and a quail. The hummingbird is to the left of the falcon. The owl is the second from the left. The robin is to the left of the hummingbird. The quail is to the right of the falcon. The robin is to the right of the owl. The blue jay is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the third from the right.", "B) The owl is the third from the right.", "C) The hawk is the third from the right.", "D) The falcon is the third from the right.", "E) The hummingbird is the third from the right.", "F) The robin is the third from the right.", "G) The quail is the third from the right." ], "answer": "A" }, { "id": "logical_deduction_479", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a black book, an orange book, a yellow book, a white book, a blue book, a red book, and a green book. The red book is to the right of the yellow book. The white book is the second from the right. The red book is to the left of the green book. The blue book is to the right of the black book. The black book is the third from the right. The orange book is the leftmost.", "question": "Which of the following is true?", "options": [ "A) The black book is the leftmost.", "B) The orange book is the leftmost.", "C) The yellow book is the leftmost.", "D) The white book is the leftmost.", "E) The blue book is the leftmost.", "F) The red book is the leftmost.", "G) The green book is the leftmost." ], "answer": "B" }, { "id": "logical_deduction_480", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Dan, Eve, Mya, Amy, Rob, Ada, and Joe. Amy finished third. Joe finished last. Mya finished above Dan. Eve finished fourth. Amy finished above Rob. Ada finished third-to-last.", "question": "Which of the following is true?", "options": [ "A) Dan finished second.", "B) Eve finished second.", "C) Mya finished second.", "D) Amy finished second.", "E) Rob finished second.", "F) Ada finished second.", "G) Joe finished second." ], "answer": "A" }, { "id": "logical_deduction_481", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a purple book, a green book, a white book, a gray book, a red book, a black book, and a brown book. The gray book is to the left of the purple book. The white book is to the right of the brown book. The black book is the third from the right. The purple book is to the left of the white book. The white book is the second from the right. The gray book is the third from the left. The brown book is to the right of the green book.", "question": "Which of the following is true?", "options": [ "A) The purple book is the third from the left.", "B) The green book is the third from the left.", "C) The white book is the third from the left.", "D) The gray book is the third from the left.", "E) The red book is the third from the left.", "F) The black book is the third from the left.", "G) The brown book is the third from the left." ], "answer": "D" }, { "id": "logical_deduction_482", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: apples, plums, mangoes, watermelons, oranges, kiwis, and loquats. The watermelons are less expensive than the plums. The watermelons are more expensive than the oranges. The kiwis are less expensive than the oranges. The apples are more expensive than the loquats. The plums are less expensive than the mangoes. The mangoes are the third-most expensive.", "question": "Which of the following is true?", "options": [ "A) The apples are the second-cheapest.", "B) The plums are the second-cheapest.", "C) The mangoes are the second-cheapest.", "D) The watermelons are the second-cheapest.", "E) The oranges are the second-cheapest.", "F) The kiwis are the second-cheapest.", "G) The loquats are the second-cheapest." ], "answer": "E" }, { "id": "logical_deduction_483", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a sedan, a truck, a bus, a station wagon, a tractor, a convertible, and a limousine. The truck is the oldest. The tractor is the newest. The sedan is older than the station wagon. The station wagon is the third-newest. The bus is older than the convertible. The sedan is newer than the convertible.", "question": "Which of the following is true?", "options": [ "A) The sedan is the fourth-newest.", "B) The truck is the fourth-newest.", "C) The bus is the fourth-newest.", "D) The station wagon is the fourth-newest.", "E) The tractor is the fourth-newest.", "F) The convertible is the fourth-newest.", "G) The limousine is the fourth-newest." ], "answer": "A" }, { "id": "logical_deduction_484", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Mel, Rob, Eli, Dan, Ana, Ada, and Mya. Ana finished last. Mya finished above Rob. Dan finished above Mya. Rob finished fourth. Eli finished second. Mel finished above Ada.", "question": "Which of the following is true?", "options": [ "A) Mel finished fourth.", "B) Rob finished fourth.", "C) Eli finished fourth.", "D) Dan finished fourth.", "E) Ana finished fourth.", "F) Ada finished fourth.", "G) Mya finished fourth." ], "answer": "B" }, { "id": "logical_deduction_485", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: loquats, watermelons, oranges, kiwis, apples, plums, and peaches. The plums are the cheapest. The watermelons are the third-most expensive. The apples are more expensive than the oranges. The kiwis are the most expensive. The apples are less expensive than the peaches. The loquats are the third-cheapest.", "question": "Which of the following is true?", "options": [ "A) The loquats are the second-most expensive.", "B) The watermelons are the second-most expensive.", "C) The oranges are the second-most expensive.", "D) The kiwis are the second-most expensive.", "E) The apples are the second-most expensive.", "F) The plums are the second-most expensive.", "G) The peaches are the second-most expensive." ], "answer": "G" }, { "id": "logical_deduction_486", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a bus, a motorcyle, a hatchback, a station wagon, a minivan, a truck, and a limousine. The station wagon is the fourth-newest. The motorcyle is newer than the truck. The station wagon is older than the hatchback. The minivan is newer than the hatchback. The bus is newer than the minivan. The truck is newer than the limousine.", "question": "Which of the following is true?", "options": [ "A) The bus is the fourth-newest.", "B) The motorcyle is the fourth-newest.", "C) The hatchback is the fourth-newest.", "D) The station wagon is the fourth-newest.", "E) The minivan is the fourth-newest.", "F) The truck is the fourth-newest.", "G) The limousine is the fourth-newest." ], "answer": "D" }, { "id": "logical_deduction_487", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a station wagon, a limousine, a truck, a minivan, a motorcyle, a hatchback, and a bus. The motorcyle is older than the truck. The station wagon is older than the hatchback. The motorcyle is newer than the hatchback. The bus is the second-newest. The minivan is the oldest. The limousine is older than the station wagon.", "question": "Which of the following is true?", "options": [ "A) The station wagon is the oldest.", "B) The limousine is the oldest.", "C) The truck is the oldest.", "D) The minivan is the oldest.", "E) The motorcyle is the oldest.", "F) The hatchback is the oldest.", "G) The bus is the oldest." ], "answer": "D" }, { "id": "logical_deduction_488", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: an orange book, a red book, a green book, a white book, a purple book, a brown book, and a yellow book. The green book is to the left of the purple book. The white book is to the right of the orange book. The green book is to the right of the brown book. The yellow book is to the right of the white book. The red book is to the right of the yellow book. The brown book is to the right of the red book.", "question": "Which of the following is true?", "options": [ "A) The orange book is the rightmost.", "B) The red book is the rightmost.", "C) The green book is the rightmost.", "D) The white book is the rightmost.", "E) The purple book is the rightmost.", "F) The brown book is the rightmost.", "G) The yellow book is the rightmost." ], "answer": "E" }, { "id": "logical_deduction_489", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a limousine, a minivan, a bus, a station wagon, a tractor, a truck, and a hatchback. The truck is the oldest. The tractor is older than the minivan. The minivan is the third-newest. The limousine is the fourth-newest. The station wagon is newer than the hatchback. The bus is the second-oldest.", "question": "Which of the following is true?", "options": [ "A) The limousine is the newest.", "B) The minivan is the newest.", "C) The bus is the newest.", "D) The station wagon is the newest.", "E) The tractor is the newest.", "F) The truck is the newest.", "G) The hatchback is the newest." ], "answer": "D" }, { "id": "logical_deduction_490", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Eli, Ada, Mel, Eve, Rob, and Ana. Joe finished first. Mel finished second-to-last. Rob finished above Eve. Mel finished above Eli. Rob finished below Ada. Eve finished fourth.", "question": "Which of the following is true?", "options": [ "A) Joe finished third.", "B) Eli finished third.", "C) Ada finished third.", "D) Mel finished third.", "E) Eve finished third.", "F) Rob finished third.", "G) Ana finished third." ], "answer": "F" }, { "id": "logical_deduction_491", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a cardinal, a blue jay, a robin, a falcon, a quail, a hummingbird, and a raven. The falcon is to the right of the quail. The robin is to the right of the hummingbird. The raven is to the left of the quail. The blue jay is the second from the left. The robin is the third from the left. The cardinal is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the leftmost.", "B) The blue jay is the leftmost.", "C) The robin is the leftmost.", "D) The falcon is the leftmost.", "E) The quail is the leftmost.", "F) The hummingbird is the leftmost.", "G) The raven is the leftmost." ], "answer": "F" }, { "id": "logical_deduction_492", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a brown book, a white book, a black book, a yellow book, an orange book, a blue book, and a green book. The yellow book is the rightmost. The blue book is to the left of the orange book. The green book is to the right of the white book. The blue book is to the right of the green book. The black book is the fourth from the left. The brown book is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The brown book is the rightmost.", "B) The white book is the rightmost.", "C) The black book is the rightmost.", "D) The yellow book is the rightmost.", "E) The orange book is the rightmost.", "F) The blue book is the rightmost.", "G) The green book is the rightmost." ], "answer": "D" }, { "id": "logical_deduction_493", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a green book, a brown book, a white book, a black book, an orange book, a purple book, and a yellow book. The purple book is to the left of the yellow book. The green book is to the left of the white book. The brown book is to the right of the yellow book. The white book is the fourth from the left. The green book is to the right of the orange book. The black book is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The green book is the second from the right.", "B) The brown book is the second from the right.", "C) The white book is the second from the right.", "D) The black book is the second from the right.", "E) The orange book is the second from the right.", "F) The purple book is the second from the right.", "G) The yellow book is the second from the right." ], "answer": "G" }, { "id": "logical_deduction_494", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Ada, Amy, Eli, Rob, Joe, Eve, and Ana. Rob finished second. Rob finished above Eve. Joe finished above Ada. Joe finished below Eve. Ada finished above Ana. Eli finished third-to-last.", "question": "Which of the following is true?", "options": [ "A) Ada finished second.", "B) Amy finished second.", "C) Eli finished second.", "D) Rob finished second.", "E) Joe finished second.", "F) Eve finished second.", "G) Ana finished second." ], "answer": "D" }, { "id": "logical_deduction_495", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: apples, plums, mangoes, watermelons, oranges, kiwis, and loquats. The watermelons are less expensive than the plums. The watermelons are more expensive than the oranges. The kiwis are less expensive than the oranges. The apples are more expensive than the loquats. The plums are less expensive than the mangoes. The mangoes are the third-most expensive.", "question": "Which of the following is true?", "options": [ "A) The apples are the most expensive.", "B) The plums are the most expensive.", "C) The mangoes are the most expensive.", "D) The watermelons are the most expensive.", "E) The oranges are the most expensive.", "F) The kiwis are the most expensive.", "G) The loquats are the most expensive." ], "answer": "A" }, { "id": "logical_deduction_496", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: plums, kiwis, cantaloupes, pears, watermelons, apples, and loquats. The watermelons are more expensive than the cantaloupes. The apples are less expensive than the cantaloupes. The watermelons are the second-most expensive. The loquats are less expensive than the kiwis. The apples are more expensive than the loquats. The loquats are the third-cheapest. The plums are the cheapest.", "question": "Which of the following is true?", "options": [ "A) The plums are the third-cheapest.", "B) The kiwis are the third-cheapest.", "C) The cantaloupes are the third-cheapest.", "D) The pears are the third-cheapest.", "E) The watermelons are the third-cheapest.", "F) The apples are the third-cheapest.", "G) The loquats are the third-cheapest." ], "answer": "G" }, { "id": "logical_deduction_497", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Ana, Eve, Ada, Dan, Rob, Amy, and Joe. Dan finished third. Ana finished above Ada. Amy finished last. Dan finished below Rob. Eve finished below Ada. Rob finished below Joe.", "question": "Which of the following is true?", "options": [ "A) Ana finished second.", "B) Eve finished second.", "C) Ada finished second.", "D) Dan finished second.", "E) Rob finished second.", "F) Amy finished second.", "G) Joe finished second." ], "answer": "E" }, { "id": "logical_deduction_498", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Ana, Eve, Ada, Dan, Rob, Amy, and Joe. Dan finished third. Ana finished above Ada. Amy finished last. Dan finished below Rob. Eve finished below Ada. Rob finished below Joe.", "question": "Which of the following is true?", "options": [ "A) Ana finished last.", "B) Eve finished last.", "C) Ada finished last.", "D) Dan finished last.", "E) Rob finished last.", "F) Amy finished last.", "G) Joe finished last." ], "answer": "F" }, { "id": "logical_deduction_499", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a motorcyle, a sedan, a station wagon, a tractor, a minivan, a bus, and a truck. The motorcyle is older than the minivan. The minivan is older than the tractor. The bus is newer than the truck. The station wagon is the third-newest. The sedan is older than the truck. The tractor is older than the sedan.", "question": "Which of the following is true?", "options": [ "A) The motorcyle is the third-oldest.", "B) The sedan is the third-oldest.", "C) The station wagon is the third-oldest.", "D) The tractor is the third-oldest.", "E) The minivan is the third-oldest.", "F) The bus is the third-oldest.", "G) The truck is the third-oldest." ], "answer": "D" }, { "id": "logical_deduction_500", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a limousine, a sedan, a tractor, a motorcyle, a minivan, a hatchback, and a truck. The minivan is newer than the limousine. The tractor is the second-newest. The truck is older than the sedan. The minivan is older than the truck. The hatchback is newer than the tractor. The motorcyle is the fourth-newest.", "question": "Which of the following is true?", "options": [ "A) The limousine is the oldest.", "B) The sedan is the oldest.", "C) The tractor is the oldest.", "D) The motorcyle is the oldest.", "E) The minivan is the oldest.", "F) The hatchback is the oldest.", "G) The truck is the oldest." ], "answer": "A" }, { "id": "logical_deduction_501", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a brown book, a yellow book, a black book, a white book, a green book, an orange book, and a purple book. The purple book is the rightmost. The yellow book is the leftmost. The orange book is the second from the right. The brown book is to the left of the green book. The brown book is to the right of the black book. The white book is the fourth from the left.", "question": "Which of the following is true?", "options": [ "A) The brown book is the second from the left.", "B) The yellow book is the second from the left.", "C) The black book is the second from the left.", "D) The white book is the second from the left.", "E) The green book is the second from the left.", "F) The orange book is the second from the left.", "G) The purple book is the second from the left." ], "answer": "C" }, { "id": "logical_deduction_502", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a purple book, a brown book, a red book, a blue book, a gray book, a black book, and a green book. The brown book is to the left of the green book. The gray book is the second from the left. The black book is to the left of the gray book. The blue book is to the left of the red book. The blue book is the second from the right. The green book is to the left of the purple book.", "question": "Which of the following is true?", "options": [ "A) The purple book is the second from the left.", "B) The brown book is the second from the left.", "C) The red book is the second from the left.", "D) The blue book is the second from the left.", "E) The gray book is the second from the left.", "F) The black book is the second from the left.", "G) The green book is the second from the left." ], "answer": "E" }, { "id": "logical_deduction_503", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: an orange book, a green book, a red book, a gray book, a purple book, a blue book, and a brown book. The purple book is the fourth from the left. The brown book is the third from the left. The green book is to the left of the blue book. The red book is the leftmost. The gray book is the third from the right. The orange book is the rightmost.", "question": "Which of the following is true?", "options": [ "A) The orange book is the second from the left.", "B) The green book is the second from the left.", "C) The red book is the second from the left.", "D) The gray book is the second from the left.", "E) The purple book is the second from the left.", "F) The blue book is the second from the left.", "G) The brown book is the second from the left." ], "answer": "B" }, { "id": "logical_deduction_504", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a cardinal, a blue jay, a robin, a falcon, a quail, a hummingbird, and a raven. The falcon is to the right of the quail. The robin is to the right of the hummingbird. The raven is to the left of the quail. The blue jay is the second from the left. The robin is the third from the left. The cardinal is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the third from the left.", "B) The blue jay is the third from the left.", "C) The robin is the third from the left.", "D) The falcon is the third from the left.", "E) The quail is the third from the left.", "F) The hummingbird is the third from the left.", "G) The raven is the third from the left." ], "answer": "C" }, { "id": "logical_deduction_505", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a purple book, a brown book, a red book, a blue book, a gray book, a black book, and a green book. The brown book is to the left of the green book. The gray book is the second from the left. The black book is to the left of the gray book. The blue book is to the left of the red book. The blue book is the second from the right. The green book is to the left of the purple book.", "question": "Which of the following is true?", "options": [ "A) The purple book is the second from the right.", "B) The brown book is the second from the right.", "C) The red book is the second from the right.", "D) The blue book is the second from the right.", "E) The gray book is the second from the right.", "F) The black book is the second from the right.", "G) The green book is the second from the right." ], "answer": "D" }, { "id": "logical_deduction_506", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a blue book, a yellow book, a brown book, a gray book, a green book, a purple book, and an orange book. The blue book is to the right of the brown book. The gray book is the rightmost. The purple book is to the left of the green book. The green book is to the left of the yellow book. The brown book is the second from the left. The purple book is to the right of the blue book.", "question": "Which of the following is true?", "options": [ "A) The blue book is the second from the right.", "B) The yellow book is the second from the right.", "C) The brown book is the second from the right.", "D) The gray book is the second from the right.", "E) The green book is the second from the right.", "F) The purple book is the second from the right.", "G) The orange book is the second from the right." ], "answer": "B" }, { "id": "logical_deduction_507", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a cardinal, a blue jay, a robin, a crow, a falcon, a hawk, and a raven. The hawk is the second from the right. The raven is the fourth from the left. The robin is the second from the left. The cardinal is to the left of the raven. The falcon is to the left of the robin. The crow is to the right of the blue jay.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the second from the left.", "B) The blue jay is the second from the left.", "C) The robin is the second from the left.", "D) The crow is the second from the left.", "E) The falcon is the second from the left.", "F) The hawk is the second from the left.", "G) The raven is the second from the left." ], "answer": "C" }, { "id": "logical_deduction_508", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Eli, Ada, Mel, Eve, Rob, and Ana. Joe finished first. Mel finished second-to-last. Rob finished above Eve. Mel finished above Eli. Rob finished below Ada. Eve finished fourth.", "question": "Which of the following is true?", "options": [ "A) Joe finished second.", "B) Eli finished second.", "C) Ada finished second.", "D) Mel finished second.", "E) Eve finished second.", "F) Rob finished second.", "G) Ana finished second." ], "answer": "C" }, { "id": "logical_deduction_509", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a sedan, a minivan, a motorcyle, a limousine, a hatchback, a truck, and a tractor. The motorcyle is older than the tractor. The hatchback is older than the limousine. The hatchback is newer than the truck. The truck is newer than the tractor. The minivan is the second-newest. The sedan is the third-newest.", "question": "Which of the following is true?", "options": [ "A) The sedan is the third-newest.", "B) The minivan is the third-newest.", "C) The motorcyle is the third-newest.", "D) The limousine is the third-newest.", "E) The hatchback is the third-newest.", "F) The truck is the third-newest.", "G) The tractor is the third-newest." ], "answer": "A" }, { "id": "logical_deduction_510", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: an owl, a crow, a falcon, a cardinal, a hummingbird, a quail, and a hawk. The falcon is to the left of the crow. The quail is to the right of the cardinal. The hummingbird is to the right of the quail. The falcon is the second from the right. The hummingbird is to the left of the hawk. The owl is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The owl is the fourth from the left.", "B) The crow is the fourth from the left.", "C) The falcon is the fourth from the left.", "D) The cardinal is the fourth from the left.", "E) The hummingbird is the fourth from the left.", "F) The quail is the fourth from the left.", "G) The hawk is the fourth from the left." ], "answer": "E" }, { "id": "logical_deduction_511", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a cardinal, a blue jay, a robin, a crow, a falcon, a hawk, and a raven. The hawk is the second from the right. The raven is the fourth from the left. The robin is the second from the left. The cardinal is to the left of the raven. The falcon is to the left of the robin. The crow is to the right of the blue jay.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the third from the right.", "B) The blue jay is the third from the right.", "C) The robin is the third from the right.", "D) The crow is the third from the right.", "E) The falcon is the third from the right.", "F) The hawk is the third from the right.", "G) The raven is the third from the right." ], "answer": "B" }, { "id": "logical_deduction_512", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Eve, Mel, Amy, Mya, Dan, and Rob. Amy finished above Dan. Rob finished third. Mel finished below Rob. Dan finished second-to-last. Eve finished above Amy. Mel finished above Dan. Joe finished fourth.", "question": "Which of the following is true?", "options": [ "A) Joe finished second-to-last.", "B) Eve finished second-to-last.", "C) Mel finished second-to-last.", "D) Amy finished second-to-last.", "E) Mya finished second-to-last.", "F) Dan finished second-to-last.", "G) Rob finished second-to-last." ], "answer": "F" }, { "id": "logical_deduction_513", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hawk, a hummingbird, a quail, an owl, a crow, a robin, and a cardinal. The cardinal is the second from the right. The hawk is the rightmost. The owl is to the left of the hummingbird. The robin is to the left of the quail. The owl is to the right of the crow. The robin is the fourth from the left.", "question": "Which of the following is true?", "options": [ "A) The hawk is the third from the left.", "B) The hummingbird is the third from the left.", "C) The quail is the third from the left.", "D) The owl is the third from the left.", "E) The crow is the third from the left.", "F) The robin is the third from the left.", "G) The cardinal is the third from the left." ], "answer": "B" }, { "id": "logical_deduction_514", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a yellow book, a red book, a gray book, a blue book, a white book, an orange book, and a purple book. The red book is the third from the right. The white book is to the right of the orange book. The purple book is the third from the left. The yellow book is to the right of the purple book. The blue book is to the right of the red book. The blue book is to the left of the gray book.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the third from the left.", "B) The red book is the third from the left.", "C) The gray book is the third from the left.", "D) The blue book is the third from the left.", "E) The white book is the third from the left.", "F) The orange book is the third from the left.", "G) The purple book is the third from the left." ], "answer": "G" }, { "id": "logical_deduction_515", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a white book, a gray book, a yellow book, a purple book, a red book, a black book, and a green book. The black book is the second from the right. The red book is to the left of the green book. The red book is the second from the left. The gray book is the third from the right. The yellow book is the third from the left. The white book is the fourth from the left.", "question": "Which of the following is true?", "options": [ "A) The white book is the second from the left.", "B) The gray book is the second from the left.", "C) The yellow book is the second from the left.", "D) The purple book is the second from the left.", "E) The red book is the second from the left.", "F) The black book is the second from the left.", "G) The green book is the second from the left." ], "answer": "E" }, { "id": "logical_deduction_516", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a limousine, a sedan, a tractor, a motorcyle, a minivan, a hatchback, and a truck. The minivan is newer than the limousine. The tractor is the second-newest. The truck is older than the sedan. The minivan is older than the truck. The hatchback is newer than the tractor. The motorcyle is the fourth-newest.", "question": "Which of the following is true?", "options": [ "A) The limousine is the fourth-newest.", "B) The sedan is the fourth-newest.", "C) The tractor is the fourth-newest.", "D) The motorcyle is the fourth-newest.", "E) The minivan is the fourth-newest.", "F) The hatchback is the fourth-newest.", "G) The truck is the fourth-newest." ], "answer": "D" }, { "id": "logical_deduction_517", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: watermelons, oranges, mangoes, cantaloupes, kiwis, pears, and peaches. The pears are the second-cheapest. The peaches are more expensive than the cantaloupes. The peaches are less expensive than the mangoes. The cantaloupes are more expensive than the kiwis. The oranges are the fourth-most expensive. The watermelons are the second-most expensive.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the third-cheapest.", "B) The oranges are the third-cheapest.", "C) The mangoes are the third-cheapest.", "D) The cantaloupes are the third-cheapest.", "E) The kiwis are the third-cheapest.", "F) The pears are the third-cheapest.", "G) The peaches are the third-cheapest." ], "answer": "D" }, { "id": "logical_deduction_518", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a cardinal, a blue jay, a robin, a crow, a falcon, a hawk, and a raven. The hawk is the second from the right. The raven is the fourth from the left. The robin is the second from the left. The cardinal is to the left of the raven. The falcon is to the left of the robin. The crow is to the right of the blue jay.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the fourth from the left.", "B) The blue jay is the fourth from the left.", "C) The robin is the fourth from the left.", "D) The crow is the fourth from the left.", "E) The falcon is the fourth from the left.", "F) The hawk is the fourth from the left.", "G) The raven is the fourth from the left." ], "answer": "G" }, { "id": "logical_deduction_519", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a convertible, a limousine, a hatchback, a bus, a station wagon, a tractor, and a minivan. The station wagon is the fourth-newest. The hatchback is older than the bus. The hatchback is the second-newest. The minivan is newer than the limousine. The convertible is older than the limousine. The tractor is the second-oldest.", "question": "Which of the following is true?", "options": [ "A) The convertible is the fourth-newest.", "B) The limousine is the fourth-newest.", "C) The hatchback is the fourth-newest.", "D) The bus is the fourth-newest.", "E) The station wagon is the fourth-newest.", "F) The tractor is the fourth-newest.", "G) The minivan is the fourth-newest." ], "answer": "E" }, { "id": "logical_deduction_520", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a robin, a hummingbird, a raven, a blue jay, a crow, a cardinal, and a quail. The hummingbird is to the left of the crow. The cardinal is to the right of the quail. The blue jay is the fourth from the left. The robin is the second from the left. The quail is to the right of the crow. The raven is to the left of the robin.", "question": "Which of the following is true?", "options": [ "A) The robin is the fourth from the left.", "B) The hummingbird is the fourth from the left.", "C) The raven is the fourth from the left.", "D) The blue jay is the fourth from the left.", "E) The crow is the fourth from the left.", "F) The cardinal is the fourth from the left.", "G) The quail is the fourth from the left." ], "answer": "D" }, { "id": "logical_deduction_521", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Dan, Ada, Amy, Rob, Mya, and Mel. Ada finished below Amy. Joe finished below Dan. Dan finished below Ada. Mel finished third-to-last. Amy finished third. Rob finished below Mya.", "question": "Which of the following is true?", "options": [ "A) Joe finished third-to-last.", "B) Dan finished third-to-last.", "C) Ada finished third-to-last.", "D) Amy finished third-to-last.", "E) Rob finished third-to-last.", "F) Mya finished third-to-last.", "G) Mel finished third-to-last." ], "answer": "G" }, { "id": "logical_deduction_522", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: kiwis, plums, mangoes, watermelons, pears, peaches, and oranges. The pears are the third-cheapest. The kiwis are the second-most expensive. The pears are more expensive than the plums. The oranges are less expensive than the kiwis. The mangoes are the third-most expensive. The peaches are the second-cheapest.", "question": "Which of the following is true?", "options": [ "A) The kiwis are the third-most expensive.", "B) The plums are the third-most expensive.", "C) The mangoes are the third-most expensive.", "D) The watermelons are the third-most expensive.", "E) The pears are the third-most expensive.", "F) The peaches are the third-most expensive.", "G) The oranges are the third-most expensive." ], "answer": "C" }, { "id": "logical_deduction_523", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Eli, Ada, Amy, Ana, Eve, Mel, and Dan. Ada finished above Mel. Dan finished above Ada. Amy finished last. Ana finished third-to-last. Dan finished below Eli. Eve finished third.", "question": "Which of the following is true?", "options": [ "A) Eli finished third-to-last.", "B) Ada finished third-to-last.", "C) Amy finished third-to-last.", "D) Ana finished third-to-last.", "E) Eve finished third-to-last.", "F) Mel finished third-to-last.", "G) Dan finished third-to-last." ], "answer": "D" }, { "id": "logical_deduction_524", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Eli, Ada, Mel, Eve, Rob, and Ana. Joe finished first. Mel finished second-to-last. Rob finished above Eve. Mel finished above Eli. Rob finished below Ada. Eve finished fourth.", "question": "Which of the following is true?", "options": [ "A) Joe finished first.", "B) Eli finished first.", "C) Ada finished first.", "D) Mel finished first.", "E) Eve finished first.", "F) Rob finished first.", "G) Ana finished first." ], "answer": "A" }, { "id": "logical_deduction_525", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a blue jay, an owl, a hawk, a falcon, a hummingbird, a robin, and a quail. The hummingbird is to the left of the falcon. The owl is the second from the left. The robin is to the left of the hummingbird. The quail is to the right of the falcon. The robin is to the right of the owl. The blue jay is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the rightmost.", "B) The owl is the rightmost.", "C) The hawk is the rightmost.", "D) The falcon is the rightmost.", "E) The hummingbird is the rightmost.", "F) The robin is the rightmost.", "G) The quail is the rightmost." ], "answer": "G" }, { "id": "logical_deduction_526", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Eve, Rob, Dan, Mel, Ana, Eli, and Ada. Ada finished above Rob. Eve finished below Rob. Mel finished above Eli. Ada finished below Dan. Ana finished third. Eli finished second.", "question": "Which of the following is true?", "options": [ "A) Eve finished first.", "B) Rob finished first.", "C) Dan finished first.", "D) Mel finished first.", "E) Ana finished first.", "F) Eli finished first.", "G) Ada finished first." ], "answer": "D" }, { "id": "logical_deduction_527", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a yellow book, a red book, a gray book, a blue book, a white book, an orange book, and a purple book. The red book is the third from the right. The white book is to the right of the orange book. The purple book is the third from the left. The yellow book is to the right of the purple book. The blue book is to the right of the red book. The blue book is to the left of the gray book.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the leftmost.", "B) The red book is the leftmost.", "C) The gray book is the leftmost.", "D) The blue book is the leftmost.", "E) The white book is the leftmost.", "F) The orange book is the leftmost.", "G) The purple book is the leftmost." ], "answer": "F" }, { "id": "logical_deduction_528", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a station wagon, a sedan, a bus, a motorcyle, a hatchback, a tractor, and a minivan. The sedan is the third-oldest. The tractor is newer than the motorcyle. The bus is older than the motorcyle. The bus is newer than the hatchback. The minivan is the newest. The station wagon is the oldest.", "question": "Which of the following is true?", "options": [ "A) The station wagon is the third-oldest.", "B) The sedan is the third-oldest.", "C) The bus is the third-oldest.", "D) The motorcyle is the third-oldest.", "E) The hatchback is the third-oldest.", "F) The tractor is the third-oldest.", "G) The minivan is the third-oldest." ], "answer": "B" }, { "id": "logical_deduction_529", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: kiwis, cantaloupes, oranges, loquats, pears, watermelons, and peaches. The loquats are less expensive than the peaches. The pears are the third-cheapest. The oranges are less expensive than the cantaloupes. The loquats are more expensive than the watermelons. The peaches are less expensive than the oranges. The kiwis are the second-most expensive.", "question": "Which of the following is true?", "options": [ "A) The kiwis are the second-most expensive.", "B) The cantaloupes are the second-most expensive.", "C) The oranges are the second-most expensive.", "D) The loquats are the second-most expensive.", "E) The pears are the second-most expensive.", "F) The watermelons are the second-most expensive.", "G) The peaches are the second-most expensive." ], "answer": "A" }, { "id": "logical_deduction_530", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Eve, Mya, Rob, Ana, Ada, Mel, and Joe. Eve finished third. Mya finished above Joe. Mel finished above Ada. Mya finished above Rob. Mel finished below Joe. Mya finished second. Ada finished second-to-last.", "question": "Which of the following is true?", "options": [ "A) Eve finished last.", "B) Mya finished last.", "C) Rob finished last.", "D) Ana finished last.", "E) Ada finished last.", "F) Mel finished last.", "G) Joe finished last." ], "answer": "C" }, { "id": "logical_deduction_531", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Ada, Amy, Eli, Rob, Joe, Eve, and Ana. Rob finished second. Rob finished above Eve. Joe finished above Ada. Joe finished below Eve. Ada finished above Ana. Eli finished third-to-last.", "question": "Which of the following is true?", "options": [ "A) Ada finished last.", "B) Amy finished last.", "C) Eli finished last.", "D) Rob finished last.", "E) Joe finished last.", "F) Eve finished last.", "G) Ana finished last." ], "answer": "G" }, { "id": "logical_deduction_532", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a falcon, a crow, a hawk, a hummingbird, a blue jay, a robin, and a raven. The blue jay is to the right of the robin. The hawk is to the left of the hummingbird. The robin is the second from the right. The falcon is the third from the left. The crow is to the right of the hummingbird. The raven is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The falcon is the third from the left.", "B) The crow is the third from the left.", "C) The hawk is the third from the left.", "D) The hummingbird is the third from the left.", "E) The blue jay is the third from the left.", "F) The robin is the third from the left.", "G) The raven is the third from the left." ], "answer": "A" }, { "id": "logical_deduction_533", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hummingbird, a cardinal, a blue jay, an owl, a raven, a quail, and a robin. The hummingbird is to the left of the quail. The robin is to the left of the cardinal. The blue jay is the leftmost. The cardinal is the fourth from the left. The raven is the third from the right. The owl is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The hummingbird is the fourth from the left.", "B) The cardinal is the fourth from the left.", "C) The blue jay is the fourth from the left.", "D) The owl is the fourth from the left.", "E) The raven is the fourth from the left.", "F) The quail is the fourth from the left.", "G) The robin is the fourth from the left." ], "answer": "B" }, { "id": "logical_deduction_534", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Dan, Ana, Mel, Ada, Eve, and Amy. Eve finished above Amy. Dan finished second. Ada finished below Ana. Ana finished third-to-last. Mel finished last. Amy finished third.", "question": "Which of the following is true?", "options": [ "A) Joe finished third.", "B) Dan finished third.", "C) Ana finished third.", "D) Mel finished third.", "E) Ada finished third.", "F) Eve finished third.", "G) Amy finished third." ], "answer": "G" }, { "id": "logical_deduction_535", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: loquats, watermelons, oranges, kiwis, apples, plums, and peaches. The plums are the cheapest. The watermelons are the third-most expensive. The apples are more expensive than the oranges. The kiwis are the most expensive. The apples are less expensive than the peaches. The loquats are the third-cheapest.", "question": "Which of the following is true?", "options": [ "A) The loquats are the most expensive.", "B) The watermelons are the most expensive.", "C) The oranges are the most expensive.", "D) The kiwis are the most expensive.", "E) The apples are the most expensive.", "F) The plums are the most expensive.", "G) The peaches are the most expensive." ], "answer": "D" }, { "id": "logical_deduction_536", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Ada, Amy, Eli, Rob, Joe, Eve, and Ana. Rob finished second. Rob finished above Eve. Joe finished above Ada. Joe finished below Eve. Ada finished above Ana. Eli finished third-to-last.", "question": "Which of the following is true?", "options": [ "A) Ada finished first.", "B) Amy finished first.", "C) Eli finished first.", "D) Rob finished first.", "E) Joe finished first.", "F) Eve finished first.", "G) Ana finished first." ], "answer": "B" }, { "id": "logical_deduction_537", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a yellow book, a brown book, a white book, an orange book, a black book, a blue book, and a purple book. The black book is the second from the left. The white book is to the right of the orange book. The black book is to the right of the brown book. The yellow book is the third from the right. The purple book is the third from the left. The orange book is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the second from the left.", "B) The brown book is the second from the left.", "C) The white book is the second from the left.", "D) The orange book is the second from the left.", "E) The black book is the second from the left.", "F) The blue book is the second from the left.", "G) The purple book is the second from the left." ], "answer": "E" }, { "id": "logical_deduction_538", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a blue jay, an owl, a falcon, a hawk, a raven, a crow, and a hummingbird. The falcon is the second from the left. The crow is the rightmost. The hummingbird is to the right of the blue jay. The hawk is to the right of the hummingbird. The blue jay is to the right of the owl. The raven is to the left of the falcon.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the third from the right.", "B) The owl is the third from the right.", "C) The falcon is the third from the right.", "D) The hawk is the third from the right.", "E) The raven is the third from the right.", "F) The crow is the third from the right.", "G) The hummingbird is the third from the right." ], "answer": "G" }, { "id": "logical_deduction_539", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Ana, Rob, Eve, Mel, Mya, Joe, and Eli. Joe finished second-to-last. Eli finished first. Mya finished below Joe. Mel finished second. Rob finished third-to-last. Ana finished third.", "question": "Which of the following is true?", "options": [ "A) Ana finished last.", "B) Rob finished last.", "C) Eve finished last.", "D) Mel finished last.", "E) Mya finished last.", "F) Joe finished last.", "G) Eli finished last." ], "answer": "E" }, { "id": "logical_deduction_540", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hawk, a hummingbird, a falcon, a cardinal, an owl, a robin, and a blue jay. The hummingbird is to the left of the owl. The robin is the rightmost. The blue jay is to the left of the hawk. The blue jay is the third from the left. The falcon is the fourth from the left. The cardinal is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The hawk is the second from the left.", "B) The hummingbird is the second from the left.", "C) The falcon is the second from the left.", "D) The cardinal is the second from the left.", "E) The owl is the second from the left.", "F) The robin is the second from the left.", "G) The blue jay is the second from the left." ], "answer": "E" }, { "id": "logical_deduction_541", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a yellow book, a red book, a gray book, a blue book, a white book, an orange book, and a purple book. The red book is the third from the right. The white book is to the right of the orange book. The purple book is the third from the left. The yellow book is to the right of the purple book. The blue book is to the right of the red book. The blue book is to the left of the gray book.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the rightmost.", "B) The red book is the rightmost.", "C) The gray book is the rightmost.", "D) The blue book is the rightmost.", "E) The white book is the rightmost.", "F) The orange book is the rightmost.", "G) The purple book is the rightmost." ], "answer": "C" }, { "id": "logical_deduction_542", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a falcon, a crow, a hawk, a hummingbird, a blue jay, a robin, and a raven. The blue jay is to the right of the robin. The hawk is to the left of the hummingbird. The robin is the second from the right. The falcon is the third from the left. The crow is to the right of the hummingbird. The raven is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The falcon is the fourth from the left.", "B) The crow is the fourth from the left.", "C) The hawk is the fourth from the left.", "D) The hummingbird is the fourth from the left.", "E) The blue jay is the fourth from the left.", "F) The robin is the fourth from the left.", "G) The raven is the fourth from the left." ], "answer": "D" }, { "id": "logical_deduction_543", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a blue jay, an owl, a falcon, a hawk, a raven, a crow, and a hummingbird. The falcon is the second from the left. The crow is the rightmost. The hummingbird is to the right of the blue jay. The hawk is to the right of the hummingbird. The blue jay is to the right of the owl. The raven is to the left of the falcon.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the third from the left.", "B) The owl is the third from the left.", "C) The falcon is the third from the left.", "D) The hawk is the third from the left.", "E) The raven is the third from the left.", "F) The crow is the third from the left.", "G) The hummingbird is the third from the left." ], "answer": "B" }, { "id": "logical_deduction_544", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Eli, Eve, Mel, Joe, Mya, Rob, and Ada. Ada finished above Mya. Eli finished below Joe. Eli finished above Eve. Ada finished second-to-last. Mel finished third. Rob finished fourth.", "question": "Which of the following is true?", "options": [ "A) Eli finished last.", "B) Eve finished last.", "C) Mel finished last.", "D) Joe finished last.", "E) Mya finished last.", "F) Rob finished last.", "G) Ada finished last." ], "answer": "E" }, { "id": "logical_deduction_545", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: plums, kiwis, pears, mangoes, apples, oranges, and loquats. The pears are less expensive than the oranges. The mangoes are less expensive than the kiwis. The plums are the second-most expensive. The loquats are more expensive than the apples. The kiwis are less expensive than the apples. The loquats are the fourth-most expensive.", "question": "Which of the following is true?", "options": [ "A) The plums are the second-cheapest.", "B) The kiwis are the second-cheapest.", "C) The pears are the second-cheapest.", "D) The mangoes are the second-cheapest.", "E) The apples are the second-cheapest.", "F) The oranges are the second-cheapest.", "G) The loquats are the second-cheapest." ], "answer": "B" }, { "id": "logical_deduction_546", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Eve, Ana, Amy, Dan, Eli, Rob, and Mya. Mya finished above Eli. Eve finished below Rob. Amy finished second. Rob finished below Dan. Ana finished second-to-last. Dan finished fourth.", "question": "Which of the following is true?", "options": [ "A) Eve finished fourth.", "B) Ana finished fourth.", "C) Amy finished fourth.", "D) Dan finished fourth.", "E) Eli finished fourth.", "F) Rob finished fourth.", "G) Mya finished fourth." ], "answer": "D" }, { "id": "logical_deduction_547", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a station wagon, a sedan, a bus, a motorcyle, a hatchback, a tractor, and a minivan. The sedan is the third-oldest. The tractor is newer than the motorcyle. The bus is older than the motorcyle. The bus is newer than the hatchback. The minivan is the newest. The station wagon is the oldest.", "question": "Which of the following is true?", "options": [ "A) The station wagon is the second-newest.", "B) The sedan is the second-newest.", "C) The bus is the second-newest.", "D) The motorcyle is the second-newest.", "E) The hatchback is the second-newest.", "F) The tractor is the second-newest.", "G) The minivan is the second-newest." ], "answer": "F" }, { "id": "logical_deduction_548", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: mangoes, watermelons, peaches, kiwis, oranges, cantaloupes, and plums. The watermelons are the cheapest. The peaches are more expensive than the mangoes. The cantaloupes are the second-most expensive. The oranges are more expensive than the cantaloupes. The peaches are less expensive than the plums. The kiwis are the third-cheapest.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the most expensive.", "B) The watermelons are the most expensive.", "C) The peaches are the most expensive.", "D) The kiwis are the most expensive.", "E) The oranges are the most expensive.", "F) The cantaloupes are the most expensive.", "G) The plums are the most expensive." ], "answer": "E" }, { "id": "logical_deduction_549", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a red book, a white book, a purple book, a black book, a gray book, an orange book, and a blue book. The red book is to the right of the white book. The gray book is to the left of the orange book. The gray book is to the right of the blue book. The red book is the second from the right. The black book is the fourth from the left. The orange book is to the left of the white book.", "question": "Which of the following is true?", "options": [ "A) The red book is the third from the left.", "B) The white book is the third from the left.", "C) The purple book is the third from the left.", "D) The black book is the third from the left.", "E) The gray book is the third from the left.", "F) The orange book is the third from the left.", "G) The blue book is the third from the left." ], "answer": "F" }, { "id": "logical_deduction_550", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a minivan, a bus, a limousine, a truck, a convertible, a tractor, and a motorcyle. The limousine is older than the minivan. The tractor is older than the limousine. The bus is the newest. The truck is the third-newest. The motorcyle is the fourth-newest. The convertible is older than the tractor.", "question": "Which of the following is true?", "options": [ "A) The minivan is the third-newest.", "B) The bus is the third-newest.", "C) The limousine is the third-newest.", "D) The truck is the third-newest.", "E) The convertible is the third-newest.", "F) The tractor is the third-newest.", "G) The motorcyle is the third-newest." ], "answer": "D" }, { "id": "logical_deduction_551", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a motorcyle, a sedan, a station wagon, a tractor, a minivan, a bus, and a truck. The motorcyle is older than the minivan. The minivan is older than the tractor. The bus is newer than the truck. The station wagon is the third-newest. The sedan is older than the truck. The tractor is older than the sedan.", "question": "Which of the following is true?", "options": [ "A) The motorcyle is the third-newest.", "B) The sedan is the third-newest.", "C) The station wagon is the third-newest.", "D) The tractor is the third-newest.", "E) The minivan is the third-newest.", "F) The bus is the third-newest.", "G) The truck is the third-newest." ], "answer": "C" }, { "id": "logical_deduction_552", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a truck, a hatchback, a minivan, a bus, a tractor, a station wagon, and a convertible. The station wagon is the fourth-newest. The minivan is the third-newest. The tractor is the second-oldest. The convertible is older than the station wagon. The truck is newer than the bus. The hatchback is older than the convertible.", "question": "Which of the following is true?", "options": [ "A) The truck is the third-newest.", "B) The hatchback is the third-newest.", "C) The minivan is the third-newest.", "D) The bus is the third-newest.", "E) The tractor is the third-newest.", "F) The station wagon is the third-newest.", "G) The convertible is the third-newest." ], "answer": "C" }, { "id": "logical_deduction_553", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Eli, Ada, Amy, Ana, Eve, Mel, and Dan. Ada finished above Mel. Dan finished above Ada. Amy finished last. Ana finished third-to-last. Dan finished below Eli. Eve finished third.", "question": "Which of the following is true?", "options": [ "A) Eli finished second-to-last.", "B) Ada finished second-to-last.", "C) Amy finished second-to-last.", "D) Ana finished second-to-last.", "E) Eve finished second-to-last.", "F) Mel finished second-to-last.", "G) Dan finished second-to-last." ], "answer": "F" }, { "id": "logical_deduction_554", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a black book, an orange book, a yellow book, a white book, a blue book, a red book, and a green book. The red book is to the right of the yellow book. The white book is the second from the right. The red book is to the left of the green book. The blue book is to the right of the black book. The black book is the third from the right. The orange book is the leftmost.", "question": "Which of the following is true?", "options": [ "A) The black book is the second from the left.", "B) The orange book is the second from the left.", "C) The yellow book is the second from the left.", "D) The white book is the second from the left.", "E) The blue book is the second from the left.", "F) The red book is the second from the left.", "G) The green book is the second from the left." ], "answer": "C" }, { "id": "logical_deduction_555", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a limousine, a minivan, a bus, a station wagon, a tractor, a truck, and a hatchback. The truck is the oldest. The tractor is older than the minivan. The minivan is the third-newest. The limousine is the fourth-newest. The station wagon is newer than the hatchback. The bus is the second-oldest.", "question": "Which of the following is true?", "options": [ "A) The limousine is the third-oldest.", "B) The minivan is the third-oldest.", "C) The bus is the third-oldest.", "D) The station wagon is the third-oldest.", "E) The tractor is the third-oldest.", "F) The truck is the third-oldest.", "G) The hatchback is the third-oldest." ], "answer": "E" }, { "id": "logical_deduction_556", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a quail, a raven, a hummingbird, a robin, a falcon, an owl, and a blue jay. The blue jay is to the left of the falcon. The blue jay is the second from the right. The raven is to the left of the robin. The owl is the third from the right. The hummingbird is to the left of the quail. The raven is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The quail is the third from the left.", "B) The raven is the third from the left.", "C) The hummingbird is the third from the left.", "D) The robin is the third from the left.", "E) The falcon is the third from the left.", "F) The owl is the third from the left.", "G) The blue jay is the third from the left." ], "answer": "B" }, { "id": "logical_deduction_557", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Dan, Ada, Amy, Rob, Mya, and Mel. Ada finished below Amy. Joe finished below Dan. Dan finished below Ada. Mel finished third-to-last. Amy finished third. Rob finished below Mya.", "question": "Which of the following is true?", "options": [ "A) Joe finished fourth.", "B) Dan finished fourth.", "C) Ada finished fourth.", "D) Amy finished fourth.", "E) Rob finished fourth.", "F) Mya finished fourth.", "G) Mel finished fourth." ], "answer": "C" }, { "id": "logical_deduction_558", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a blue jay, a falcon, a raven, a crow, a robin, an owl, and a hummingbird. The robin is to the left of the owl. The crow is the rightmost. The hummingbird is the fourth from the left. The owl is the third from the right. The blue jay is to the left of the robin. The raven is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the second from the right.", "B) The falcon is the second from the right.", "C) The raven is the second from the right.", "D) The crow is the second from the right.", "E) The robin is the second from the right.", "F) The owl is the second from the right.", "G) The hummingbird is the second from the right." ], "answer": "B" }, { "id": "logical_deduction_559", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a blue jay, a falcon, a raven, a crow, a robin, an owl, and a hummingbird. The robin is to the left of the owl. The crow is the rightmost. The hummingbird is the fourth from the left. The owl is the third from the right. The blue jay is to the left of the robin. The raven is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the third from the left.", "B) The falcon is the third from the left.", "C) The raven is the third from the left.", "D) The crow is the third from the left.", "E) The robin is the third from the left.", "F) The owl is the third from the left.", "G) The hummingbird is the third from the left." ], "answer": "E" }, { "id": "logical_deduction_560", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: an orange book, a green book, a gray book, a purple book, a black book, a yellow book, and a white book. The orange book is to the right of the gray book. The yellow book is the third from the right. The purple book is the second from the left. The yellow book is to the right of the orange book. The white book is the second from the right. The black book is the leftmost.", "question": "Which of the following is true?", "options": [ "A) The orange book is the leftmost.", "B) The green book is the leftmost.", "C) The gray book is the leftmost.", "D) The purple book is the leftmost.", "E) The black book is the leftmost.", "F) The yellow book is the leftmost.", "G) The white book is the leftmost." ], "answer": "E" }, { "id": "logical_deduction_561", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Eve, Mya, Rob, Ana, Ada, Mel, and Joe. Eve finished third. Mya finished above Joe. Mel finished above Ada. Mya finished above Rob. Mel finished below Joe. Mya finished second. Ada finished second-to-last.", "question": "Which of the following is true?", "options": [ "A) Eve finished third.", "B) Mya finished third.", "C) Rob finished third.", "D) Ana finished third.", "E) Ada finished third.", "F) Mel finished third.", "G) Joe finished third." ], "answer": "A" }, { "id": "logical_deduction_562", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a convertible, a limousine, a hatchback, a bus, a station wagon, a tractor, and a minivan. The station wagon is the fourth-newest. The hatchback is older than the bus. The hatchback is the second-newest. The minivan is newer than the limousine. The convertible is older than the limousine. The tractor is the second-oldest.", "question": "Which of the following is true?", "options": [ "A) The convertible is the second-oldest.", "B) The limousine is the second-oldest.", "C) The hatchback is the second-oldest.", "D) The bus is the second-oldest.", "E) The station wagon is the second-oldest.", "F) The tractor is the second-oldest.", "G) The minivan is the second-oldest." ], "answer": "F" }, { "id": "logical_deduction_563", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hawk, a raven, a hummingbird, a falcon, an owl, a quail, and a cardinal. The quail is to the left of the hummingbird. The raven is to the right of the hummingbird. The cardinal is the second from the left. The owl is to the left of the cardinal. The raven is the third from the right. The falcon is the rightmost.", "question": "Which of the following is true?", "options": [ "A) The hawk is the leftmost.", "B) The raven is the leftmost.", "C) The hummingbird is the leftmost.", "D) The falcon is the leftmost.", "E) The owl is the leftmost.", "F) The quail is the leftmost.", "G) The cardinal is the leftmost." ], "answer": "E" }, { "id": "logical_deduction_564", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a station wagon, a limousine, a truck, a minivan, a motorcyle, a hatchback, and a bus. The motorcyle is older than the truck. The station wagon is older than the hatchback. The motorcyle is newer than the hatchback. The bus is the second-newest. The minivan is the oldest. The limousine is older than the station wagon.", "question": "Which of the following is true?", "options": [ "A) The station wagon is the third-oldest.", "B) The limousine is the third-oldest.", "C) The truck is the third-oldest.", "D) The minivan is the third-oldest.", "E) The motorcyle is the third-oldest.", "F) The hatchback is the third-oldest.", "G) The bus is the third-oldest." ], "answer": "A" }, { "id": "logical_deduction_565", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Amy, Eve, Ada, Rob, Dan, Mel, and Joe. Joe finished third. Dan finished last. Eve finished first. Mel finished below Rob. Ada finished above Joe. Rob finished third-to-last.", "question": "Which of the following is true?", "options": [ "A) Amy finished first.", "B) Eve finished first.", "C) Ada finished first.", "D) Rob finished first.", "E) Dan finished first.", "F) Mel finished first.", "G) Joe finished first." ], "answer": "B" }, { "id": "logical_deduction_566", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: mangoes, kiwis, oranges, watermelons, apples, pears, and loquats. The loquats are less expensive than the oranges. The oranges are the third-most expensive. The apples are the cheapest. The kiwis are more expensive than the pears. The mangoes are more expensive than the watermelons. The loquats are more expensive than the kiwis.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the third-most expensive.", "B) The kiwis are the third-most expensive.", "C) The oranges are the third-most expensive.", "D) The watermelons are the third-most expensive.", "E) The apples are the third-most expensive.", "F) The pears are the third-most expensive.", "G) The loquats are the third-most expensive." ], "answer": "C" }, { "id": "logical_deduction_567", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Ada, Ana, Rob, Amy, Dan, Joe, and Eli. Eli finished below Amy. Ada finished third. Amy finished below Rob. Dan finished last. Rob finished second. Ana finished fourth.", "question": "Which of the following is true?", "options": [ "A) Ada finished second-to-last.", "B) Ana finished second-to-last.", "C) Rob finished second-to-last.", "D) Amy finished second-to-last.", "E) Dan finished second-to-last.", "F) Joe finished second-to-last.", "G) Eli finished second-to-last." ], "answer": "G" }, { "id": "logical_deduction_568", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: mangoes, watermelons, peaches, kiwis, oranges, cantaloupes, and plums. The watermelons are the cheapest. The peaches are more expensive than the mangoes. The cantaloupes are the second-most expensive. The oranges are more expensive than the cantaloupes. The peaches are less expensive than the plums. The kiwis are the third-cheapest.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the second-most expensive.", "B) The watermelons are the second-most expensive.", "C) The peaches are the second-most expensive.", "D) The kiwis are the second-most expensive.", "E) The oranges are the second-most expensive.", "F) The cantaloupes are the second-most expensive.", "G) The plums are the second-most expensive." ], "answer": "F" }, { "id": "logical_deduction_569", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a robin, a hummingbird, a raven, a blue jay, a crow, a cardinal, and a quail. The hummingbird is to the left of the crow. The cardinal is to the right of the quail. The blue jay is the fourth from the left. The robin is the second from the left. The quail is to the right of the crow. The raven is to the left of the robin.", "question": "Which of the following is true?", "options": [ "A) The robin is the leftmost.", "B) The hummingbird is the leftmost.", "C) The raven is the leftmost.", "D) The blue jay is the leftmost.", "E) The crow is the leftmost.", "F) The cardinal is the leftmost.", "G) The quail is the leftmost." ], "answer": "C" }, { "id": "logical_deduction_570", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a cardinal, a blue jay, a robin, a crow, a falcon, a hawk, and a raven. The hawk is the second from the right. The raven is the fourth from the left. The robin is the second from the left. The cardinal is to the left of the raven. The falcon is to the left of the robin. The crow is to the right of the blue jay.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the third from the left.", "B) The blue jay is the third from the left.", "C) The robin is the third from the left.", "D) The crow is the third from the left.", "E) The falcon is the third from the left.", "F) The hawk is the third from the left.", "G) The raven is the third from the left." ], "answer": "A" }, { "id": "logical_deduction_571", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: an orange book, a green book, a red book, a gray book, a purple book, a blue book, and a brown book. The purple book is the fourth from the left. The brown book is the third from the left. The green book is to the left of the blue book. The red book is the leftmost. The gray book is the third from the right. The orange book is the rightmost.", "question": "Which of the following is true?", "options": [ "A) The orange book is the leftmost.", "B) The green book is the leftmost.", "C) The red book is the leftmost.", "D) The gray book is the leftmost.", "E) The purple book is the leftmost.", "F) The blue book is the leftmost.", "G) The brown book is the leftmost." ], "answer": "C" }, { "id": "logical_deduction_572", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Eve, Mel, Amy, Mya, Dan, and Rob. Amy finished above Dan. Rob finished third. Mel finished below Rob. Dan finished second-to-last. Eve finished above Amy. Mel finished above Dan. Joe finished fourth.", "question": "Which of the following is true?", "options": [ "A) Joe finished fourth.", "B) Eve finished fourth.", "C) Mel finished fourth.", "D) Amy finished fourth.", "E) Mya finished fourth.", "F) Dan finished fourth.", "G) Rob finished fourth." ], "answer": "A" }, { "id": "logical_deduction_573", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Mya, Eli, Ana, Amy, Mel, Dan, and Joe. Amy finished below Joe. Dan finished above Mya. Eli finished third. Ana finished first. Amy finished second-to-last. Mya finished fourth.", "question": "Which of the following is true?", "options": [ "A) Mya finished last.", "B) Eli finished last.", "C) Ana finished last.", "D) Amy finished last.", "E) Mel finished last.", "F) Dan finished last.", "G) Joe finished last." ], "answer": "E" }, { "id": "logical_deduction_574", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: kiwis, cantaloupes, oranges, loquats, pears, watermelons, and peaches. The loquats are less expensive than the peaches. The pears are the third-cheapest. The oranges are less expensive than the cantaloupes. The loquats are more expensive than the watermelons. The peaches are less expensive than the oranges. The kiwis are the second-most expensive.", "question": "Which of the following is true?", "options": [ "A) The kiwis are the cheapest.", "B) The cantaloupes are the cheapest.", "C) The oranges are the cheapest.", "D) The loquats are the cheapest.", "E) The pears are the cheapest.", "F) The watermelons are the cheapest.", "G) The peaches are the cheapest." ], "answer": "F" }, { "id": "logical_deduction_575", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a blue jay, a falcon, a raven, a crow, a robin, an owl, and a hummingbird. The robin is to the left of the owl. The crow is the rightmost. The hummingbird is the fourth from the left. The owl is the third from the right. The blue jay is to the left of the robin. The raven is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the fourth from the left.", "B) The falcon is the fourth from the left.", "C) The raven is the fourth from the left.", "D) The crow is the fourth from the left.", "E) The robin is the fourth from the left.", "F) The owl is the fourth from the left.", "G) The hummingbird is the fourth from the left." ], "answer": "G" }, { "id": "logical_deduction_576", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a limousine, a convertible, a station wagon, a minivan, a bus, a tractor, and a truck. The minivan is the oldest. The truck is older than the station wagon. The truck is newer than the limousine. The bus is newer than the convertible. The bus is older than the tractor. The limousine is newer than the tractor.", "question": "Which of the following is true?", "options": [ "A) The limousine is the fourth-newest.", "B) The convertible is the fourth-newest.", "C) The station wagon is the fourth-newest.", "D) The minivan is the fourth-newest.", "E) The bus is the fourth-newest.", "F) The tractor is the fourth-newest.", "G) The truck is the fourth-newest." ], "answer": "F" }, { "id": "logical_deduction_577", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a robin, an owl, a quail, a falcon, a hummingbird, a cardinal, and a crow. The hummingbird is to the left of the falcon. The crow is to the right of the cardinal. The cardinal is the second from the right. The quail is the third from the right. The falcon is to the left of the robin. The owl is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The robin is the second from the right.", "B) The owl is the second from the right.", "C) The quail is the second from the right.", "D) The falcon is the second from the right.", "E) The hummingbird is the second from the right.", "F) The cardinal is the second from the right.", "G) The crow is the second from the right." ], "answer": "F" }, { "id": "logical_deduction_578", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Dan, Ana, Mel, Ada, Eve, and Amy. Eve finished above Amy. Dan finished second. Ada finished below Ana. Ana finished third-to-last. Mel finished last. Amy finished third.", "question": "Which of the following is true?", "options": [ "A) Joe finished fourth.", "B) Dan finished fourth.", "C) Ana finished fourth.", "D) Mel finished fourth.", "E) Ada finished fourth.", "F) Eve finished fourth.", "G) Amy finished fourth." ], "answer": "A" }, { "id": "logical_deduction_579", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: oranges, watermelons, peaches, pears, kiwis, cantaloupes, and plums. The kiwis are the second-cheapest. The plums are the cheapest. The cantaloupes are less expensive than the watermelons. The oranges are the most expensive. The pears are the third-cheapest. The peaches are the third-most expensive.", "question": "Which of the following is true?", "options": [ "A) The oranges are the second-most expensive.", "B) The watermelons are the second-most expensive.", "C) The peaches are the second-most expensive.", "D) The pears are the second-most expensive.", "E) The kiwis are the second-most expensive.", "F) The cantaloupes are the second-most expensive.", "G) The plums are the second-most expensive." ], "answer": "B" }, { "id": "logical_deduction_580", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: kiwis, loquats, pears, peaches, mangoes, plums, and apples. The loquats are the fourth-most expensive. The peaches are less expensive than the mangoes. The apples are more expensive than the pears. The peaches are the second-most expensive. The plums are the cheapest. The pears are more expensive than the kiwis.", "question": "Which of the following is true?", "options": [ "A) The kiwis are the third-most expensive.", "B) The loquats are the third-most expensive.", "C) The pears are the third-most expensive.", "D) The peaches are the third-most expensive.", "E) The mangoes are the third-most expensive.", "F) The plums are the third-most expensive.", "G) The apples are the third-most expensive." ], "answer": "G" }, { "id": "logical_deduction_581", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Ada, Amy, Eli, Rob, Joe, Eve, and Ana. Rob finished second. Rob finished above Eve. Joe finished above Ada. Joe finished below Eve. Ada finished above Ana. Eli finished third-to-last.", "question": "Which of the following is true?", "options": [ "A) Ada finished second-to-last.", "B) Amy finished second-to-last.", "C) Eli finished second-to-last.", "D) Rob finished second-to-last.", "E) Joe finished second-to-last.", "F) Eve finished second-to-last.", "G) Ana finished second-to-last." ], "answer": "A" }, { "id": "logical_deduction_582", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Ana, Rob, Eve, Mel, Mya, Joe, and Eli. Joe finished second-to-last. Eli finished first. Mya finished below Joe. Mel finished second. Rob finished third-to-last. Ana finished third.", "question": "Which of the following is true?", "options": [ "A) Ana finished fourth.", "B) Rob finished fourth.", "C) Eve finished fourth.", "D) Mel finished fourth.", "E) Mya finished fourth.", "F) Joe finished fourth.", "G) Eli finished fourth." ], "answer": "C" }, { "id": "logical_deduction_583", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Ada, Ana, Rob, Amy, Dan, Joe, and Eli. Eli finished below Amy. Ada finished third. Amy finished below Rob. Dan finished last. Rob finished second. Ana finished fourth.", "question": "Which of the following is true?", "options": [ "A) Ada finished fourth.", "B) Ana finished fourth.", "C) Rob finished fourth.", "D) Amy finished fourth.", "E) Dan finished fourth.", "F) Joe finished fourth.", "G) Eli finished fourth." ], "answer": "B" }, { "id": "logical_deduction_584", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: plums, kiwis, cantaloupes, pears, watermelons, apples, and loquats. The watermelons are more expensive than the cantaloupes. The apples are less expensive than the cantaloupes. The watermelons are the second-most expensive. The loquats are less expensive than the kiwis. The apples are more expensive than the loquats. The loquats are the third-cheapest. The plums are the cheapest.", "question": "Which of the following is true?", "options": [ "A) The plums are the second-cheapest.", "B) The kiwis are the second-cheapest.", "C) The cantaloupes are the second-cheapest.", "D) The pears are the second-cheapest.", "E) The watermelons are the second-cheapest.", "F) The apples are the second-cheapest.", "G) The loquats are the second-cheapest." ], "answer": "D" }, { "id": "logical_deduction_585", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: watermelons, oranges, mangoes, cantaloupes, kiwis, pears, and peaches. The pears are the second-cheapest. The peaches are more expensive than the cantaloupes. The peaches are less expensive than the mangoes. The cantaloupes are more expensive than the kiwis. The oranges are the fourth-most expensive. The watermelons are the second-most expensive.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the second-most expensive.", "B) The oranges are the second-most expensive.", "C) The mangoes are the second-most expensive.", "D) The cantaloupes are the second-most expensive.", "E) The kiwis are the second-most expensive.", "F) The pears are the second-most expensive.", "G) The peaches are the second-most expensive." ], "answer": "A" }, { "id": "logical_deduction_586", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Rob, Eli, Dan, Mya, Ada, and Ana. Joe finished above Ana. Ana finished second-to-last. Mya finished fourth. Dan finished third. Ada finished second. Eli finished third-to-last.", "question": "Which of the following is true?", "options": [ "A) Joe finished second-to-last.", "B) Rob finished second-to-last.", "C) Eli finished second-to-last.", "D) Dan finished second-to-last.", "E) Mya finished second-to-last.", "F) Ada finished second-to-last.", "G) Ana finished second-to-last." ], "answer": "G" }, { "id": "logical_deduction_587", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a convertible, a truck, a tractor, a limousine, a motorcyle, a hatchback, and a sedan. The hatchback is the fourth-newest. The limousine is older than the motorcyle. The truck is newer than the motorcyle. The sedan is the second-newest. The tractor is newer than the convertible. The hatchback is older than the convertible.", "question": "Which of the following is true?", "options": [ "A) The convertible is the third-oldest.", "B) The truck is the third-oldest.", "C) The tractor is the third-oldest.", "D) The limousine is the third-oldest.", "E) The motorcyle is the third-oldest.", "F) The hatchback is the third-oldest.", "G) The sedan is the third-oldest." ], "answer": "B" }, { "id": "logical_deduction_588", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Rob, Eli, Dan, Mya, Ada, and Ana. Joe finished above Ana. Ana finished second-to-last. Mya finished fourth. Dan finished third. Ada finished second. Eli finished third-to-last.", "question": "Which of the following is true?", "options": [ "A) Joe finished third-to-last.", "B) Rob finished third-to-last.", "C) Eli finished third-to-last.", "D) Dan finished third-to-last.", "E) Mya finished third-to-last.", "F) Ada finished third-to-last.", "G) Ana finished third-to-last." ], "answer": "C" }, { "id": "logical_deduction_589", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: an orange book, a red book, a green book, a white book, a purple book, a brown book, and a yellow book. The green book is to the left of the purple book. The white book is to the right of the orange book. The green book is to the right of the brown book. The yellow book is to the right of the white book. The red book is to the right of the yellow book. The brown book is to the right of the red book.", "question": "Which of the following is true?", "options": [ "A) The orange book is the fourth from the left.", "B) The red book is the fourth from the left.", "C) The green book is the fourth from the left.", "D) The white book is the fourth from the left.", "E) The purple book is the fourth from the left.", "F) The brown book is the fourth from the left.", "G) The yellow book is the fourth from the left." ], "answer": "B" }, { "id": "logical_deduction_590", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a limousine, a minivan, a bus, a station wagon, a tractor, a truck, and a hatchback. The truck is the oldest. The tractor is older than the minivan. The minivan is the third-newest. The limousine is the fourth-newest. The station wagon is newer than the hatchback. The bus is the second-oldest.", "question": "Which of the following is true?", "options": [ "A) The limousine is the third-newest.", "B) The minivan is the third-newest.", "C) The bus is the third-newest.", "D) The station wagon is the third-newest.", "E) The tractor is the third-newest.", "F) The truck is the third-newest.", "G) The hatchback is the third-newest." ], "answer": "B" }, { "id": "logical_deduction_591", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: loquats, watermelons, oranges, kiwis, apples, plums, and peaches. The plums are the cheapest. The watermelons are the third-most expensive. The apples are more expensive than the oranges. The kiwis are the most expensive. The apples are less expensive than the peaches. The loquats are the third-cheapest.", "question": "Which of the following is true?", "options": [ "A) The loquats are the fourth-most expensive.", "B) The watermelons are the fourth-most expensive.", "C) The oranges are the fourth-most expensive.", "D) The kiwis are the fourth-most expensive.", "E) The apples are the fourth-most expensive.", "F) The plums are the fourth-most expensive.", "G) The peaches are the fourth-most expensive." ], "answer": "E" }, { "id": "logical_deduction_592", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Rob, Eli, Dan, Mya, Ada, and Ana. Joe finished above Ana. Ana finished second-to-last. Mya finished fourth. Dan finished third. Ada finished second. Eli finished third-to-last.", "question": "Which of the following is true?", "options": [ "A) Joe finished fourth.", "B) Rob finished fourth.", "C) Eli finished fourth.", "D) Dan finished fourth.", "E) Mya finished fourth.", "F) Ada finished fourth.", "G) Ana finished fourth." ], "answer": "E" }, { "id": "logical_deduction_593", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a bus, a motorcyle, a hatchback, a station wagon, a minivan, a truck, and a limousine. The station wagon is the fourth-newest. The motorcyle is newer than the truck. The station wagon is older than the hatchback. The minivan is newer than the hatchback. The bus is newer than the minivan. The truck is newer than the limousine.", "question": "Which of the following is true?", "options": [ "A) The bus is the third-newest.", "B) The motorcyle is the third-newest.", "C) The hatchback is the third-newest.", "D) The station wagon is the third-newest.", "E) The minivan is the third-newest.", "F) The truck is the third-newest.", "G) The limousine is the third-newest." ], "answer": "C" }, { "id": "logical_deduction_594", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a quail, a raven, a hummingbird, a robin, a falcon, an owl, and a blue jay. The blue jay is to the left of the falcon. The blue jay is the second from the right. The raven is to the left of the robin. The owl is the third from the right. The hummingbird is to the left of the quail. The raven is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The quail is the second from the right.", "B) The raven is the second from the right.", "C) The hummingbird is the second from the right.", "D) The robin is the second from the right.", "E) The falcon is the second from the right.", "F) The owl is the second from the right.", "G) The blue jay is the second from the right." ], "answer": "G" }, { "id": "logical_deduction_595", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: loquats, watermelons, oranges, kiwis, apples, plums, and peaches. The plums are the cheapest. The watermelons are the third-most expensive. The apples are more expensive than the oranges. The kiwis are the most expensive. The apples are less expensive than the peaches. The loquats are the third-cheapest.", "question": "Which of the following is true?", "options": [ "A) The loquats are the second-cheapest.", "B) The watermelons are the second-cheapest.", "C) The oranges are the second-cheapest.", "D) The kiwis are the second-cheapest.", "E) The apples are the second-cheapest.", "F) The plums are the second-cheapest.", "G) The peaches are the second-cheapest." ], "answer": "C" }, { "id": "logical_deduction_596", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hawk, a raven, a hummingbird, a falcon, an owl, a quail, and a cardinal. The quail is to the left of the hummingbird. The raven is to the right of the hummingbird. The cardinal is the second from the left. The owl is to the left of the cardinal. The raven is the third from the right. The falcon is the rightmost.", "question": "Which of the following is true?", "options": [ "A) The hawk is the rightmost.", "B) The raven is the rightmost.", "C) The hummingbird is the rightmost.", "D) The falcon is the rightmost.", "E) The owl is the rightmost.", "F) The quail is the rightmost.", "G) The cardinal is the rightmost." ], "answer": "D" }, { "id": "logical_deduction_597", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a truck, a motorcyle, a sedan, a minivan, a station wagon, a hatchback, and a tractor. The hatchback is newer than the truck. The sedan is the third-newest. The station wagon is the newest. The motorcyle is older than the truck. The minivan is newer than the sedan. The tractor is the third-oldest.", "question": "Which of the following is true?", "options": [ "A) The truck is the newest.", "B) The motorcyle is the newest.", "C) The sedan is the newest.", "D) The minivan is the newest.", "E) The station wagon is the newest.", "F) The hatchback is the newest.", "G) The tractor is the newest." ], "answer": "E" }, { "id": "logical_deduction_598", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hawk, a raven, a falcon, a crow, a hummingbird, a robin, and a cardinal. The hawk is the second from the right. The robin is to the left of the raven. The raven is to the left of the crow. The falcon is to the left of the cardinal. The hummingbird is the second from the left. The falcon is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The hawk is the third from the left.", "B) The raven is the third from the left.", "C) The falcon is the third from the left.", "D) The crow is the third from the left.", "E) The hummingbird is the third from the left.", "F) The robin is the third from the left.", "G) The cardinal is the third from the left." ], "answer": "B" }, { "id": "logical_deduction_599", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a yellow book, a brown book, a white book, an orange book, a black book, a blue book, and a purple book. The black book is the second from the left. The white book is to the right of the orange book. The black book is to the right of the brown book. The yellow book is the third from the right. The purple book is the third from the left. The orange book is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the second from the right.", "B) The brown book is the second from the right.", "C) The white book is the second from the right.", "D) The orange book is the second from the right.", "E) The black book is the second from the right.", "F) The blue book is the second from the right.", "G) The purple book is the second from the right." ], "answer": "D" }, { "id": "logical_deduction_600", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a sedan, a truck, a bus, a station wagon, a tractor, a convertible, and a limousine. The truck is the oldest. The tractor is the newest. The sedan is older than the station wagon. The station wagon is the third-newest. The bus is older than the convertible. The sedan is newer than the convertible.", "question": "Which of the following is true?", "options": [ "A) The sedan is the newest.", "B) The truck is the newest.", "C) The bus is the newest.", "D) The station wagon is the newest.", "E) The tractor is the newest.", "F) The convertible is the newest.", "G) The limousine is the newest." ], "answer": "E" }, { "id": "logical_deduction_601", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a station wagon, a truck, a sedan, a limousine, a convertible, a bus, and a hatchback. The limousine is the newest. The bus is the third-newest. The bus is older than the convertible. The sedan is the third-oldest. The station wagon is older than the truck. The hatchback is the oldest.", "question": "Which of the following is true?", "options": [ "A) The station wagon is the fourth-newest.", "B) The truck is the fourth-newest.", "C) The sedan is the fourth-newest.", "D) The limousine is the fourth-newest.", "E) The convertible is the fourth-newest.", "F) The bus is the fourth-newest.", "G) The hatchback is the fourth-newest." ], "answer": "B" }, { "id": "logical_deduction_602", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a raven, a hummingbird, a robin, a crow, a quail, a blue jay, and a cardinal. The hummingbird is to the left of the crow. The quail is to the right of the crow. The raven is to the left of the robin. The blue jay is the third from the right. The cardinal is the leftmost. The hummingbird is the fourth from the left.", "question": "Which of the following is true?", "options": [ "A) The raven is the fourth from the left.", "B) The hummingbird is the fourth from the left.", "C) The robin is the fourth from the left.", "D) The crow is the fourth from the left.", "E) The quail is the fourth from the left.", "F) The blue jay is the fourth from the left.", "G) The cardinal is the fourth from the left." ], "answer": "B" }, { "id": "logical_deduction_603", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a robin, an owl, a quail, a falcon, a hummingbird, a cardinal, and a crow. The hummingbird is to the left of the falcon. The crow is to the right of the cardinal. The cardinal is the second from the right. The quail is the third from the right. The falcon is to the left of the robin. The owl is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The robin is the rightmost.", "B) The owl is the rightmost.", "C) The quail is the rightmost.", "D) The falcon is the rightmost.", "E) The hummingbird is the rightmost.", "F) The cardinal is the rightmost.", "G) The crow is the rightmost." ], "answer": "G" }, { "id": "logical_deduction_604", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a limousine, a minivan, a bus, a station wagon, a tractor, a truck, and a hatchback. The truck is the oldest. The tractor is older than the minivan. The minivan is the third-newest. The limousine is the fourth-newest. The station wagon is newer than the hatchback. The bus is the second-oldest.", "question": "Which of the following is true?", "options": [ "A) The limousine is the fourth-newest.", "B) The minivan is the fourth-newest.", "C) The bus is the fourth-newest.", "D) The station wagon is the fourth-newest.", "E) The tractor is the fourth-newest.", "F) The truck is the fourth-newest.", "G) The hatchback is the fourth-newest." ], "answer": "A" }, { "id": "logical_deduction_605", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a robin, an owl, a quail, a falcon, a hummingbird, a cardinal, and a crow. The hummingbird is to the left of the falcon. The crow is to the right of the cardinal. The cardinal is the second from the right. The quail is the third from the right. The falcon is to the left of the robin. The owl is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The robin is the third from the left.", "B) The owl is the third from the left.", "C) The quail is the third from the left.", "D) The falcon is the third from the left.", "E) The hummingbird is the third from the left.", "F) The cardinal is the third from the left.", "G) The crow is the third from the left." ], "answer": "D" }, { "id": "logical_deduction_606", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: cantaloupes, plums, mangoes, apples, loquats, pears, and peaches. The apples are less expensive than the cantaloupes. The apples are more expensive than the peaches. The mangoes are the fourth-most expensive. The peaches are more expensive than the plums. The pears are the third-most expensive. The loquats are the third-cheapest.", "question": "Which of the following is true?", "options": [ "A) The cantaloupes are the cheapest.", "B) The plums are the cheapest.", "C) The mangoes are the cheapest.", "D) The apples are the cheapest.", "E) The loquats are the cheapest.", "F) The pears are the cheapest.", "G) The peaches are the cheapest." ], "answer": "B" }, { "id": "logical_deduction_607", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: plums, kiwis, cantaloupes, pears, watermelons, apples, and loquats. The watermelons are more expensive than the cantaloupes. The apples are less expensive than the cantaloupes. The watermelons are the second-most expensive. The loquats are less expensive than the kiwis. The apples are more expensive than the loquats. The loquats are the third-cheapest. The plums are the cheapest.", "question": "Which of the following is true?", "options": [ "A) The plums are the cheapest.", "B) The kiwis are the cheapest.", "C) The cantaloupes are the cheapest.", "D) The pears are the cheapest.", "E) The watermelons are the cheapest.", "F) The apples are the cheapest.", "G) The loquats are the cheapest." ], "answer": "A" }, { "id": "logical_deduction_608", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Dan, Ana, Mel, Ada, Eve, and Amy. Eve finished above Amy. Dan finished second. Ada finished below Ana. Ana finished third-to-last. Mel finished last. Amy finished third.", "question": "Which of the following is true?", "options": [ "A) Joe finished second-to-last.", "B) Dan finished second-to-last.", "C) Ana finished second-to-last.", "D) Mel finished second-to-last.", "E) Ada finished second-to-last.", "F) Eve finished second-to-last.", "G) Amy finished second-to-last." ], "answer": "E" }, { "id": "logical_deduction_609", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Eli, Ada, Mel, Eve, Rob, and Ana. Joe finished first. Mel finished second-to-last. Rob finished above Eve. Mel finished above Eli. Rob finished below Ada. Eve finished fourth.", "question": "Which of the following is true?", "options": [ "A) Joe finished third-to-last.", "B) Eli finished third-to-last.", "C) Ada finished third-to-last.", "D) Mel finished third-to-last.", "E) Eve finished third-to-last.", "F) Rob finished third-to-last.", "G) Ana finished third-to-last." ], "answer": "G" }, { "id": "logical_deduction_610", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: plums, kiwis, pears, mangoes, apples, oranges, and loquats. The pears are less expensive than the oranges. The mangoes are less expensive than the kiwis. The plums are the second-most expensive. The loquats are more expensive than the apples. The kiwis are less expensive than the apples. The loquats are the fourth-most expensive.", "question": "Which of the following is true?", "options": [ "A) The plums are the third-most expensive.", "B) The kiwis are the third-most expensive.", "C) The pears are the third-most expensive.", "D) The mangoes are the third-most expensive.", "E) The apples are the third-most expensive.", "F) The oranges are the third-most expensive.", "G) The loquats are the third-most expensive." ], "answer": "C" }, { "id": "logical_deduction_611", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: oranges, plums, loquats, apples, kiwis, cantaloupes, and peaches. The loquats are less expensive than the kiwis. The plums are the cheapest. The loquats are the fourth-most expensive. The peaches are less expensive than the oranges. The peaches are more expensive than the kiwis. The apples are the second-cheapest.", "question": "Which of the following is true?", "options": [ "A) The oranges are the fourth-most expensive.", "B) The plums are the fourth-most expensive.", "C) The loquats are the fourth-most expensive.", "D) The apples are the fourth-most expensive.", "E) The kiwis are the fourth-most expensive.", "F) The cantaloupes are the fourth-most expensive.", "G) The peaches are the fourth-most expensive." ], "answer": "C" }, { "id": "logical_deduction_612", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Eve, Ana, Amy, Dan, Eli, Rob, and Mya. Mya finished above Eli. Eve finished below Rob. Amy finished second. Rob finished below Dan. Ana finished second-to-last. Dan finished fourth.", "question": "Which of the following is true?", "options": [ "A) Eve finished first.", "B) Ana finished first.", "C) Amy finished first.", "D) Dan finished first.", "E) Eli finished first.", "F) Rob finished first.", "G) Mya finished first." ], "answer": "G" }, { "id": "logical_deduction_613", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: watermelons, oranges, mangoes, cantaloupes, kiwis, pears, and peaches. The pears are the second-cheapest. The peaches are more expensive than the cantaloupes. The peaches are less expensive than the mangoes. The cantaloupes are more expensive than the kiwis. The oranges are the fourth-most expensive. The watermelons are the second-most expensive.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the second-cheapest.", "B) The oranges are the second-cheapest.", "C) The mangoes are the second-cheapest.", "D) The cantaloupes are the second-cheapest.", "E) The kiwis are the second-cheapest.", "F) The pears are the second-cheapest.", "G) The peaches are the second-cheapest." ], "answer": "F" }, { "id": "logical_deduction_614", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Mel, Rob, Eli, Dan, Ana, Ada, and Mya. Ana finished last. Mya finished above Rob. Dan finished above Mya. Rob finished fourth. Eli finished second. Mel finished above Ada.", "question": "Which of the following is true?", "options": [ "A) Mel finished second.", "B) Rob finished second.", "C) Eli finished second.", "D) Dan finished second.", "E) Ana finished second.", "F) Ada finished second.", "G) Mya finished second." ], "answer": "C" }, { "id": "logical_deduction_615", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a hatchback, a sedan, a station wagon, a convertible, a tractor, a bus, and a truck. The convertible is the second-newest. The station wagon is newer than the truck. The bus is newer than the hatchback. The truck is the fourth-newest. The station wagon is older than the tractor. The sedan is the oldest.", "question": "Which of the following is true?", "options": [ "A) The hatchback is the second-newest.", "B) The sedan is the second-newest.", "C) The station wagon is the second-newest.", "D) The convertible is the second-newest.", "E) The tractor is the second-newest.", "F) The bus is the second-newest.", "G) The truck is the second-newest." ], "answer": "D" }, { "id": "logical_deduction_616", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: an owl, a crow, a falcon, a cardinal, a hummingbird, a quail, and a hawk. The falcon is to the left of the crow. The quail is to the right of the cardinal. The hummingbird is to the right of the quail. The falcon is the second from the right. The hummingbird is to the left of the hawk. The owl is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The owl is the leftmost.", "B) The crow is the leftmost.", "C) The falcon is the leftmost.", "D) The cardinal is the leftmost.", "E) The hummingbird is the leftmost.", "F) The quail is the leftmost.", "G) The hawk is the leftmost." ], "answer": "D" }, { "id": "logical_deduction_617", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a sedan, a truck, a bus, a station wagon, a tractor, a convertible, and a limousine. The truck is the oldest. The tractor is the newest. The sedan is older than the station wagon. The station wagon is the third-newest. The bus is older than the convertible. The sedan is newer than the convertible.", "question": "Which of the following is true?", "options": [ "A) The sedan is the oldest.", "B) The truck is the oldest.", "C) The bus is the oldest.", "D) The station wagon is the oldest.", "E) The tractor is the oldest.", "F) The convertible is the oldest.", "G) The limousine is the oldest." ], "answer": "B" }, { "id": "logical_deduction_618", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a sedan, a minivan, a motorcyle, a limousine, a hatchback, a truck, and a tractor. The motorcyle is older than the tractor. The hatchback is older than the limousine. The hatchback is newer than the truck. The truck is newer than the tractor. The minivan is the second-newest. The sedan is the third-newest.", "question": "Which of the following is true?", "options": [ "A) The sedan is the newest.", "B) The minivan is the newest.", "C) The motorcyle is the newest.", "D) The limousine is the newest.", "E) The hatchback is the newest.", "F) The truck is the newest.", "G) The tractor is the newest." ], "answer": "D" }, { "id": "logical_deduction_619", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a hatchback, a sedan, a station wagon, a convertible, a tractor, a bus, and a truck. The convertible is the second-newest. The station wagon is newer than the truck. The bus is newer than the hatchback. The truck is the fourth-newest. The station wagon is older than the tractor. The sedan is the oldest.", "question": "Which of the following is true?", "options": [ "A) The hatchback is the second-oldest.", "B) The sedan is the second-oldest.", "C) The station wagon is the second-oldest.", "D) The convertible is the second-oldest.", "E) The tractor is the second-oldest.", "F) The bus is the second-oldest.", "G) The truck is the second-oldest." ], "answer": "A" }, { "id": "logical_deduction_620", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hawk, a crow, an owl, a raven, a falcon, a quail, and a hummingbird. The hummingbird is the second from the left. The raven is the fourth from the left. The raven is to the right of the hawk. The owl is to the right of the crow. The falcon is the rightmost. The hawk is to the right of the hummingbird. The quail is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The hawk is the second from the left.", "B) The crow is the second from the left.", "C) The owl is the second from the left.", "D) The raven is the second from the left.", "E) The falcon is the second from the left.", "F) The quail is the second from the left.", "G) The hummingbird is the second from the left." ], "answer": "G" }, { "id": "logical_deduction_621", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Eve, Mya, Rob, Ana, Ada, Mel, and Joe. Eve finished third. Mya finished above Joe. Mel finished above Ada. Mya finished above Rob. Mel finished below Joe. Mya finished second. Ada finished second-to-last.", "question": "Which of the following is true?", "options": [ "A) Eve finished second.", "B) Mya finished second.", "C) Rob finished second.", "D) Ana finished second.", "E) Ada finished second.", "F) Mel finished second.", "G) Joe finished second." ], "answer": "B" }, { "id": "logical_deduction_622", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a sedan, a minivan, a motorcyle, a limousine, a hatchback, a truck, and a tractor. The motorcyle is older than the tractor. The hatchback is older than the limousine. The hatchback is newer than the truck. The truck is newer than the tractor. The minivan is the second-newest. The sedan is the third-newest.", "question": "Which of the following is true?", "options": [ "A) The sedan is the oldest.", "B) The minivan is the oldest.", "C) The motorcyle is the oldest.", "D) The limousine is the oldest.", "E) The hatchback is the oldest.", "F) The truck is the oldest.", "G) The tractor is the oldest." ], "answer": "C" }, { "id": "logical_deduction_623", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hawk, a hummingbird, a quail, an owl, a crow, a robin, and a cardinal. The cardinal is the second from the right. The hawk is the rightmost. The owl is to the left of the hummingbird. The robin is to the left of the quail. The owl is to the right of the crow. The robin is the fourth from the left.", "question": "Which of the following is true?", "options": [ "A) The hawk is the second from the right.", "B) The hummingbird is the second from the right.", "C) The quail is the second from the right.", "D) The owl is the second from the right.", "E) The crow is the second from the right.", "F) The robin is the second from the right.", "G) The cardinal is the second from the right." ], "answer": "G" }, { "id": "logical_deduction_624", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Mya, Eli, Ana, Amy, Mel, Dan, and Joe. Amy finished below Joe. Dan finished above Mya. Eli finished third. Ana finished first. Amy finished second-to-last. Mya finished fourth.", "question": "Which of the following is true?", "options": [ "A) Mya finished second-to-last.", "B) Eli finished second-to-last.", "C) Ana finished second-to-last.", "D) Amy finished second-to-last.", "E) Mel finished second-to-last.", "F) Dan finished second-to-last.", "G) Joe finished second-to-last." ], "answer": "D" }, { "id": "logical_deduction_625", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a purple book, a green book, a white book, a gray book, a red book, a black book, and a brown book. The gray book is to the left of the purple book. The white book is to the right of the brown book. The black book is the third from the right. The purple book is to the left of the white book. The white book is the second from the right. The gray book is the third from the left. The brown book is to the right of the green book.", "question": "Which of the following is true?", "options": [ "A) The purple book is the third from the right.", "B) The green book is the third from the right.", "C) The white book is the third from the right.", "D) The gray book is the third from the right.", "E) The red book is the third from the right.", "F) The black book is the third from the right.", "G) The brown book is the third from the right." ], "answer": "F" }, { "id": "logical_deduction_626", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Mel, Mya, Eve, Rob, Ada, and Dan. Rob finished first. Eve finished last. Dan finished above Ada. Mel finished above Mya. Joe finished second-to-last. Mya finished third.", "question": "Which of the following is true?", "options": [ "A) Joe finished second.", "B) Mel finished second.", "C) Mya finished second.", "D) Eve finished second.", "E) Rob finished second.", "F) Ada finished second.", "G) Dan finished second." ], "answer": "B" }, { "id": "logical_deduction_627", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: an owl, a crow, a falcon, a cardinal, a hummingbird, a quail, and a hawk. The falcon is to the left of the crow. The quail is to the right of the cardinal. The hummingbird is to the right of the quail. The falcon is the second from the right. The hummingbird is to the left of the hawk. The owl is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The owl is the second from the right.", "B) The crow is the second from the right.", "C) The falcon is the second from the right.", "D) The cardinal is the second from the right.", "E) The hummingbird is the second from the right.", "F) The quail is the second from the right.", "G) The hawk is the second from the right." ], "answer": "C" }, { "id": "logical_deduction_628", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a limousine, a sedan, a tractor, a motorcyle, a minivan, a hatchback, and a truck. The minivan is newer than the limousine. The tractor is the second-newest. The truck is older than the sedan. The minivan is older than the truck. The hatchback is newer than the tractor. The motorcyle is the fourth-newest.", "question": "Which of the following is true?", "options": [ "A) The limousine is the second-oldest.", "B) The sedan is the second-oldest.", "C) The tractor is the second-oldest.", "D) The motorcyle is the second-oldest.", "E) The minivan is the second-oldest.", "F) The hatchback is the second-oldest.", "G) The truck is the second-oldest." ], "answer": "E" }, { "id": "logical_deduction_629", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a brown book, a gray book, an orange book, a green book, a black book, a purple book, and a yellow book. The purple book is the leftmost. The brown book is to the right of the yellow book. The green book is to the left of the orange book. The orange book is to the left of the gray book. The black book is the third from the left. The green book is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The brown book is the third from the left.", "B) The gray book is the third from the left.", "C) The orange book is the third from the left.", "D) The green book is the third from the left.", "E) The black book is the third from the left.", "F) The purple book is the third from the left.", "G) The yellow book is the third from the left." ], "answer": "E" }, { "id": "logical_deduction_630", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: oranges, loquats, apples, kiwis, mangoes, plums, and peaches. The apples are the second-cheapest. The peaches are the cheapest. The plums are the fourth-most expensive. The loquats are the third-cheapest. The kiwis are more expensive than the mangoes. The oranges are less expensive than the mangoes.", "question": "Which of the following is true?", "options": [ "A) The oranges are the fourth-most expensive.", "B) The loquats are the fourth-most expensive.", "C) The apples are the fourth-most expensive.", "D) The kiwis are the fourth-most expensive.", "E) The mangoes are the fourth-most expensive.", "F) The plums are the fourth-most expensive.", "G) The peaches are the fourth-most expensive." ], "answer": "F" }, { "id": "logical_deduction_631", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: an owl, a crow, a falcon, a cardinal, a hummingbird, a quail, and a hawk. The falcon is to the left of the crow. The quail is to the right of the cardinal. The hummingbird is to the right of the quail. The falcon is the second from the right. The hummingbird is to the left of the hawk. The owl is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The owl is the second from the left.", "B) The crow is the second from the left.", "C) The falcon is the second from the left.", "D) The cardinal is the second from the left.", "E) The hummingbird is the second from the left.", "F) The quail is the second from the left.", "G) The hawk is the second from the left." ], "answer": "F" }, { "id": "logical_deduction_632", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a black book, an orange book, a yellow book, a white book, a blue book, a red book, and a green book. The red book is to the right of the yellow book. The white book is the second from the right. The red book is to the left of the green book. The blue book is to the right of the black book. The black book is the third from the right. The orange book is the leftmost.", "question": "Which of the following is true?", "options": [ "A) The black book is the fourth from the left.", "B) The orange book is the fourth from the left.", "C) The yellow book is the fourth from the left.", "D) The white book is the fourth from the left.", "E) The blue book is the fourth from the left.", "F) The red book is the fourth from the left.", "G) The green book is the fourth from the left." ], "answer": "G" }, { "id": "logical_deduction_633", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a station wagon, a sedan, a bus, a motorcyle, a hatchback, a tractor, and a minivan. The sedan is the third-oldest. The tractor is newer than the motorcyle. The bus is older than the motorcyle. The bus is newer than the hatchback. The minivan is the newest. The station wagon is the oldest.", "question": "Which of the following is true?", "options": [ "A) The station wagon is the fourth-newest.", "B) The sedan is the fourth-newest.", "C) The bus is the fourth-newest.", "D) The motorcyle is the fourth-newest.", "E) The hatchback is the fourth-newest.", "F) The tractor is the fourth-newest.", "G) The minivan is the fourth-newest." ], "answer": "C" }, { "id": "logical_deduction_634", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a truck, a motorcyle, a sedan, a minivan, a station wagon, a hatchback, and a tractor. The hatchback is newer than the truck. The sedan is the third-newest. The station wagon is the newest. The motorcyle is older than the truck. The minivan is newer than the sedan. The tractor is the third-oldest.", "question": "Which of the following is true?", "options": [ "A) The truck is the oldest.", "B) The motorcyle is the oldest.", "C) The sedan is the oldest.", "D) The minivan is the oldest.", "E) The station wagon is the oldest.", "F) The hatchback is the oldest.", "G) The tractor is the oldest." ], "answer": "B" }, { "id": "logical_deduction_635", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Eli, Ada, Amy, Ana, Eve, Mel, and Dan. Ada finished above Mel. Dan finished above Ada. Amy finished last. Ana finished third-to-last. Dan finished below Eli. Eve finished third.", "question": "Which of the following is true?", "options": [ "A) Eli finished first.", "B) Ada finished first.", "C) Amy finished first.", "D) Ana finished first.", "E) Eve finished first.", "F) Mel finished first.", "G) Dan finished first." ], "answer": "A" }, { "id": "logical_deduction_636", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a minivan, a bus, a limousine, a truck, a convertible, a tractor, and a motorcyle. The limousine is older than the minivan. The tractor is older than the limousine. The bus is the newest. The truck is the third-newest. The motorcyle is the fourth-newest. The convertible is older than the tractor.", "question": "Which of the following is true?", "options": [ "A) The minivan is the second-oldest.", "B) The bus is the second-oldest.", "C) The limousine is the second-oldest.", "D) The truck is the second-oldest.", "E) The convertible is the second-oldest.", "F) The tractor is the second-oldest.", "G) The motorcyle is the second-oldest." ], "answer": "F" }, { "id": "logical_deduction_637", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a limousine, a truck, a sedan, a tractor, a minivan, a motorcyle, and a hatchback. The minivan is older than the tractor. The hatchback is older than the sedan. The truck is the third-newest. The hatchback is the second-newest. The tractor is older than the limousine. The motorcyle is newer than the limousine.", "question": "Which of the following is true?", "options": [ "A) The limousine is the third-oldest.", "B) The truck is the third-oldest.", "C) The sedan is the third-oldest.", "D) The tractor is the third-oldest.", "E) The minivan is the third-oldest.", "F) The motorcyle is the third-oldest.", "G) The hatchback is the third-oldest." ], "answer": "A" }, { "id": "logical_deduction_638", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a brown book, a green book, a black book, an orange book, a white book, a blue book, and a gray book. The brown book is the rightmost. The black book is to the right of the white book. The gray book is the third from the left. The orange book is to the right of the gray book. The orange book is to the left of the green book. The blue book is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The brown book is the third from the right.", "B) The green book is the third from the right.", "C) The black book is the third from the right.", "D) The orange book is the third from the right.", "E) The white book is the third from the right.", "F) The blue book is the third from the right.", "G) The gray book is the third from the right." ], "answer": "F" }, { "id": "logical_deduction_639", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a falcon, a crow, a hawk, a hummingbird, a blue jay, a robin, and a raven. The blue jay is to the right of the robin. The hawk is to the left of the hummingbird. The robin is the second from the right. The falcon is the third from the left. The crow is to the right of the hummingbird. The raven is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The falcon is the second from the right.", "B) The crow is the second from the right.", "C) The hawk is the second from the right.", "D) The hummingbird is the second from the right.", "E) The blue jay is the second from the right.", "F) The robin is the second from the right.", "G) The raven is the second from the right." ], "answer": "F" }, { "id": "logical_deduction_640", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a limousine, a convertible, a station wagon, a minivan, a bus, a tractor, and a truck. The minivan is the oldest. The truck is older than the station wagon. The truck is newer than the limousine. The bus is newer than the convertible. The bus is older than the tractor. The limousine is newer than the tractor.", "question": "Which of the following is true?", "options": [ "A) The limousine is the third-oldest.", "B) The convertible is the third-oldest.", "C) The station wagon is the third-oldest.", "D) The minivan is the third-oldest.", "E) The bus is the third-oldest.", "F) The tractor is the third-oldest.", "G) The truck is the third-oldest." ], "answer": "E" }, { "id": "logical_deduction_641", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hawk, a raven, a falcon, a crow, a hummingbird, a robin, and a cardinal. The hawk is the second from the right. The robin is to the left of the raven. The raven is to the left of the crow. The falcon is to the left of the cardinal. The hummingbird is the second from the left. The falcon is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The hawk is the rightmost.", "B) The raven is the rightmost.", "C) The falcon is the rightmost.", "D) The crow is the rightmost.", "E) The hummingbird is the rightmost.", "F) The robin is the rightmost.", "G) The cardinal is the rightmost." ], "answer": "G" }, { "id": "logical_deduction_642", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: an orange book, a red book, a green book, a white book, a purple book, a brown book, and a yellow book. The green book is to the left of the purple book. The white book is to the right of the orange book. The green book is to the right of the brown book. The yellow book is to the right of the white book. The red book is to the right of the yellow book. The brown book is to the right of the red book.", "question": "Which of the following is true?", "options": [ "A) The orange book is the third from the right.", "B) The red book is the third from the right.", "C) The green book is the third from the right.", "D) The white book is the third from the right.", "E) The purple book is the third from the right.", "F) The brown book is the third from the right.", "G) The yellow book is the third from the right." ], "answer": "F" }, { "id": "logical_deduction_643", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hawk, a hummingbird, a falcon, a cardinal, an owl, a robin, and a blue jay. The hummingbird is to the left of the owl. The robin is the rightmost. The blue jay is to the left of the hawk. The blue jay is the third from the left. The falcon is the fourth from the left. The cardinal is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The hawk is the fourth from the left.", "B) The hummingbird is the fourth from the left.", "C) The falcon is the fourth from the left.", "D) The cardinal is the fourth from the left.", "E) The owl is the fourth from the left.", "F) The robin is the fourth from the left.", "G) The blue jay is the fourth from the left." ], "answer": "C" }, { "id": "logical_deduction_644", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: watermelons, mangoes, kiwis, pears, cantaloupes, oranges, and peaches. The oranges are more expensive than the peaches. The cantaloupes are the fourth-most expensive. The pears are less expensive than the cantaloupes. The peaches are the second-most expensive. The mangoes are the cheapest. The kiwis are the third-cheapest.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the third-cheapest.", "B) The mangoes are the third-cheapest.", "C) The kiwis are the third-cheapest.", "D) The pears are the third-cheapest.", "E) The cantaloupes are the third-cheapest.", "F) The oranges are the third-cheapest.", "G) The peaches are the third-cheapest." ], "answer": "C" }, { "id": "logical_deduction_645", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Mel, Mya, Eve, Rob, Ada, and Dan. Rob finished first. Eve finished last. Dan finished above Ada. Mel finished above Mya. Joe finished second-to-last. Mya finished third.", "question": "Which of the following is true?", "options": [ "A) Joe finished second-to-last.", "B) Mel finished second-to-last.", "C) Mya finished second-to-last.", "D) Eve finished second-to-last.", "E) Rob finished second-to-last.", "F) Ada finished second-to-last.", "G) Dan finished second-to-last." ], "answer": "A" }, { "id": "logical_deduction_646", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hawk, a hummingbird, a quail, an owl, a crow, a robin, and a cardinal. The cardinal is the second from the right. The hawk is the rightmost. The owl is to the left of the hummingbird. The robin is to the left of the quail. The owl is to the right of the crow. The robin is the fourth from the left.", "question": "Which of the following is true?", "options": [ "A) The hawk is the second from the left.", "B) The hummingbird is the second from the left.", "C) The quail is the second from the left.", "D) The owl is the second from the left.", "E) The crow is the second from the left.", "F) The robin is the second from the left.", "G) The cardinal is the second from the left." ], "answer": "D" }, { "id": "logical_deduction_647", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a white book, a gray book, a yellow book, a purple book, a red book, a black book, and a green book. The black book is the second from the right. The red book is to the left of the green book. The red book is the second from the left. The gray book is the third from the right. The yellow book is the third from the left. The white book is the fourth from the left.", "question": "Which of the following is true?", "options": [ "A) The white book is the fourth from the left.", "B) The gray book is the fourth from the left.", "C) The yellow book is the fourth from the left.", "D) The purple book is the fourth from the left.", "E) The red book is the fourth from the left.", "F) The black book is the fourth from the left.", "G) The green book is the fourth from the left." ], "answer": "A" }, { "id": "logical_deduction_648", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a quail, a raven, a hummingbird, a robin, a falcon, an owl, and a blue jay. The blue jay is to the left of the falcon. The blue jay is the second from the right. The raven is to the left of the robin. The owl is the third from the right. The hummingbird is to the left of the quail. The raven is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The quail is the third from the right.", "B) The raven is the third from the right.", "C) The hummingbird is the third from the right.", "D) The robin is the third from the right.", "E) The falcon is the third from the right.", "F) The owl is the third from the right.", "G) The blue jay is the third from the right." ], "answer": "F" }, { "id": "logical_deduction_649", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a sedan, a truck, a bus, a station wagon, a tractor, a convertible, and a limousine. The truck is the oldest. The tractor is the newest. The sedan is older than the station wagon. The station wagon is the third-newest. The bus is older than the convertible. The sedan is newer than the convertible.", "question": "Which of the following is true?", "options": [ "A) The sedan is the third-newest.", "B) The truck is the third-newest.", "C) The bus is the third-newest.", "D) The station wagon is the third-newest.", "E) The tractor is the third-newest.", "F) The convertible is the third-newest.", "G) The limousine is the third-newest." ], "answer": "D" }, { "id": "logical_deduction_650", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a convertible, a truck, a tractor, a limousine, a motorcyle, a hatchback, and a sedan. The hatchback is the fourth-newest. The limousine is older than the motorcyle. The truck is newer than the motorcyle. The sedan is the second-newest. The tractor is newer than the convertible. The hatchback is older than the convertible.", "question": "Which of the following is true?", "options": [ "A) The convertible is the newest.", "B) The truck is the newest.", "C) The tractor is the newest.", "D) The limousine is the newest.", "E) The motorcyle is the newest.", "F) The hatchback is the newest.", "G) The sedan is the newest." ], "answer": "C" }, { "id": "logical_deduction_651", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Dan, Eve, Mya, Amy, Rob, Ada, and Joe. Amy finished third. Joe finished last. Mya finished above Dan. Eve finished fourth. Amy finished above Rob. Ada finished third-to-last.", "question": "Which of the following is true?", "options": [ "A) Dan finished last.", "B) Eve finished last.", "C) Mya finished last.", "D) Amy finished last.", "E) Rob finished last.", "F) Ada finished last.", "G) Joe finished last." ], "answer": "G" }, { "id": "logical_deduction_652", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a hatchback, a sedan, a station wagon, a convertible, a tractor, a bus, and a truck. The convertible is the second-newest. The station wagon is newer than the truck. The bus is newer than the hatchback. The truck is the fourth-newest. The station wagon is older than the tractor. The sedan is the oldest.", "question": "Which of the following is true?", "options": [ "A) The hatchback is the newest.", "B) The sedan is the newest.", "C) The station wagon is the newest.", "D) The convertible is the newest.", "E) The tractor is the newest.", "F) The bus is the newest.", "G) The truck is the newest." ], "answer": "E" }, { "id": "logical_deduction_653", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a raven, a hummingbird, a robin, a crow, a quail, a blue jay, and a cardinal. The hummingbird is to the left of the crow. The quail is to the right of the crow. The raven is to the left of the robin. The blue jay is the third from the right. The cardinal is the leftmost. The hummingbird is the fourth from the left.", "question": "Which of the following is true?", "options": [ "A) The raven is the leftmost.", "B) The hummingbird is the leftmost.", "C) The robin is the leftmost.", "D) The crow is the leftmost.", "E) The quail is the leftmost.", "F) The blue jay is the leftmost.", "G) The cardinal is the leftmost." ], "answer": "G" }, { "id": "logical_deduction_654", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: loquats, peaches, watermelons, plums, kiwis, mangoes, and pears. The pears are more expensive than the kiwis. The watermelons are less expensive than the peaches. The mangoes are the third-cheapest. The watermelons are the third-most expensive. The plums are the second-most expensive. The loquats are the second-cheapest.", "question": "Which of the following is true?", "options": [ "A) The loquats are the second-cheapest.", "B) The peaches are the second-cheapest.", "C) The watermelons are the second-cheapest.", "D) The plums are the second-cheapest.", "E) The kiwis are the second-cheapest.", "F) The mangoes are the second-cheapest.", "G) The pears are the second-cheapest." ], "answer": "A" }, { "id": "logical_deduction_655", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a convertible, a limousine, a hatchback, a bus, a station wagon, a tractor, and a minivan. The station wagon is the fourth-newest. The hatchback is older than the bus. The hatchback is the second-newest. The minivan is newer than the limousine. The convertible is older than the limousine. The tractor is the second-oldest.", "question": "Which of the following is true?", "options": [ "A) The convertible is the oldest.", "B) The limousine is the oldest.", "C) The hatchback is the oldest.", "D) The bus is the oldest.", "E) The station wagon is the oldest.", "F) The tractor is the oldest.", "G) The minivan is the oldest." ], "answer": "A" }, { "id": "logical_deduction_656", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a brown book, a white book, a black book, a yellow book, an orange book, a blue book, and a green book. The yellow book is the rightmost. The blue book is to the left of the orange book. The green book is to the right of the white book. The blue book is to the right of the green book. The black book is the fourth from the left. The brown book is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The brown book is the third from the right.", "B) The white book is the third from the right.", "C) The black book is the third from the right.", "D) The yellow book is the third from the right.", "E) The orange book is the third from the right.", "F) The blue book is the third from the right.", "G) The green book is the third from the right." ], "answer": "A" }, { "id": "logical_deduction_657", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a station wagon, a sedan, a bus, a motorcyle, a hatchback, a tractor, and a minivan. The sedan is the third-oldest. The tractor is newer than the motorcyle. The bus is older than the motorcyle. The bus is newer than the hatchback. The minivan is the newest. The station wagon is the oldest.", "question": "Which of the following is true?", "options": [ "A) The station wagon is the newest.", "B) The sedan is the newest.", "C) The bus is the newest.", "D) The motorcyle is the newest.", "E) The hatchback is the newest.", "F) The tractor is the newest.", "G) The minivan is the newest." ], "answer": "G" }, { "id": "logical_deduction_658", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a raven, a cardinal, a falcon, an owl, a blue jay, a quail, and a robin. The owl is the second from the right. The cardinal is the fourth from the left. The falcon is to the left of the blue jay. The quail is to the left of the falcon. The raven is the second from the left. The robin is to the left of the quail.", "question": "Which of the following is true?", "options": [ "A) The raven is the third from the right.", "B) The cardinal is the third from the right.", "C) The falcon is the third from the right.", "D) The owl is the third from the right.", "E) The blue jay is the third from the right.", "F) The quail is the third from the right.", "G) The robin is the third from the right." ], "answer": "C" }, { "id": "logical_deduction_659", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a truck, a hatchback, a minivan, a bus, a tractor, a station wagon, and a convertible. The station wagon is the fourth-newest. The minivan is the third-newest. The tractor is the second-oldest. The convertible is older than the station wagon. The truck is newer than the bus. The hatchback is older than the convertible.", "question": "Which of the following is true?", "options": [ "A) The truck is the second-oldest.", "B) The hatchback is the second-oldest.", "C) The minivan is the second-oldest.", "D) The bus is the second-oldest.", "E) The tractor is the second-oldest.", "F) The station wagon is the second-oldest.", "G) The convertible is the second-oldest." ], "answer": "E" }, { "id": "logical_deduction_660", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a red book, a purple book, a green book, a white book, an orange book, a blue book, and a gray book. The green book is to the left of the white book. The red book is to the left of the purple book. The red book is to the right of the orange book. The gray book is the second from the left. The purple book is to the left of the green book. The blue book is the fourth from the left.", "question": "Which of the following is true?", "options": [ "A) The red book is the third from the right.", "B) The purple book is the third from the right.", "C) The green book is the third from the right.", "D) The white book is the third from the right.", "E) The orange book is the third from the right.", "F) The blue book is the third from the right.", "G) The gray book is the third from the right." ], "answer": "B" }, { "id": "logical_deduction_661", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a brown book, a white book, a black book, a yellow book, an orange book, a blue book, and a green book. The yellow book is the rightmost. The blue book is to the left of the orange book. The green book is to the right of the white book. The blue book is to the right of the green book. The black book is the fourth from the left. The brown book is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The brown book is the second from the left.", "B) The white book is the second from the left.", "C) The black book is the second from the left.", "D) The yellow book is the second from the left.", "E) The orange book is the second from the left.", "F) The blue book is the second from the left.", "G) The green book is the second from the left." ], "answer": "G" }, { "id": "logical_deduction_662", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hummingbird, a cardinal, a blue jay, an owl, a raven, a quail, and a robin. The hummingbird is to the left of the quail. The robin is to the left of the cardinal. The blue jay is the leftmost. The cardinal is the fourth from the left. The raven is the third from the right. The owl is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The hummingbird is the third from the left.", "B) The cardinal is the third from the left.", "C) The blue jay is the third from the left.", "D) The owl is the third from the left.", "E) The raven is the third from the left.", "F) The quail is the third from the left.", "G) The robin is the third from the left." ], "answer": "D" }, { "id": "logical_deduction_663", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: oranges, loquats, apples, kiwis, mangoes, plums, and peaches. The apples are the second-cheapest. The peaches are the cheapest. The plums are the fourth-most expensive. The loquats are the third-cheapest. The kiwis are more expensive than the mangoes. The oranges are less expensive than the mangoes.", "question": "Which of the following is true?", "options": [ "A) The oranges are the cheapest.", "B) The loquats are the cheapest.", "C) The apples are the cheapest.", "D) The kiwis are the cheapest.", "E) The mangoes are the cheapest.", "F) The plums are the cheapest.", "G) The peaches are the cheapest." ], "answer": "G" }, { "id": "logical_deduction_664", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a cardinal, a blue jay, a robin, a crow, a falcon, a hawk, and a raven. The hawk is the second from the right. The raven is the fourth from the left. The robin is the second from the left. The cardinal is to the left of the raven. The falcon is to the left of the robin. The crow is to the right of the blue jay.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the rightmost.", "B) The blue jay is the rightmost.", "C) The robin is the rightmost.", "D) The crow is the rightmost.", "E) The falcon is the rightmost.", "F) The hawk is the rightmost.", "G) The raven is the rightmost." ], "answer": "D" }, { "id": "logical_deduction_665", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a bus, a motorcyle, a hatchback, a station wagon, a minivan, a truck, and a limousine. The station wagon is the fourth-newest. The motorcyle is newer than the truck. The station wagon is older than the hatchback. The minivan is newer than the hatchback. The bus is newer than the minivan. The truck is newer than the limousine.", "question": "Which of the following is true?", "options": [ "A) The bus is the second-oldest.", "B) The motorcyle is the second-oldest.", "C) The hatchback is the second-oldest.", "D) The station wagon is the second-oldest.", "E) The minivan is the second-oldest.", "F) The truck is the second-oldest.", "G) The limousine is the second-oldest." ], "answer": "F" }, { "id": "logical_deduction_666", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: kiwis, plums, mangoes, watermelons, pears, peaches, and oranges. The pears are the third-cheapest. The kiwis are the second-most expensive. The pears are more expensive than the plums. The oranges are less expensive than the kiwis. The mangoes are the third-most expensive. The peaches are the second-cheapest.", "question": "Which of the following is true?", "options": [ "A) The kiwis are the most expensive.", "B) The plums are the most expensive.", "C) The mangoes are the most expensive.", "D) The watermelons are the most expensive.", "E) The pears are the most expensive.", "F) The peaches are the most expensive.", "G) The oranges are the most expensive." ], "answer": "D" }, { "id": "logical_deduction_667", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a brown book, a green book, a black book, an orange book, a white book, a blue book, and a gray book. The brown book is the rightmost. The black book is to the right of the white book. The gray book is the third from the left. The orange book is to the right of the gray book. The orange book is to the left of the green book. The blue book is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The brown book is the fourth from the left.", "B) The green book is the fourth from the left.", "C) The black book is the fourth from the left.", "D) The orange book is the fourth from the left.", "E) The white book is the fourth from the left.", "F) The blue book is the fourth from the left.", "G) The gray book is the fourth from the left." ], "answer": "D" }, { "id": "logical_deduction_668", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: watermelons, cantaloupes, pears, peaches, mangoes, kiwis, and oranges. The oranges are more expensive than the cantaloupes. The pears are less expensive than the kiwis. The kiwis are the fourth-most expensive. The mangoes are less expensive than the pears. The peaches are the cheapest. The cantaloupes are more expensive than the watermelons.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the third-cheapest.", "B) The cantaloupes are the third-cheapest.", "C) The pears are the third-cheapest.", "D) The peaches are the third-cheapest.", "E) The mangoes are the third-cheapest.", "F) The kiwis are the third-cheapest.", "G) The oranges are the third-cheapest." ], "answer": "C" }, { "id": "logical_deduction_669", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a limousine, a minivan, a bus, a station wagon, a tractor, a truck, and a hatchback. The truck is the oldest. The tractor is older than the minivan. The minivan is the third-newest. The limousine is the fourth-newest. The station wagon is newer than the hatchback. The bus is the second-oldest.", "question": "Which of the following is true?", "options": [ "A) The limousine is the second-oldest.", "B) The minivan is the second-oldest.", "C) The bus is the second-oldest.", "D) The station wagon is the second-oldest.", "E) The tractor is the second-oldest.", "F) The truck is the second-oldest.", "G) The hatchback is the second-oldest." ], "answer": "C" }, { "id": "logical_deduction_670", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Eve, Mya, Rob, Ana, Ada, Mel, and Joe. Eve finished third. Mya finished above Joe. Mel finished above Ada. Mya finished above Rob. Mel finished below Joe. Mya finished second. Ada finished second-to-last.", "question": "Which of the following is true?", "options": [ "A) Eve finished second-to-last.", "B) Mya finished second-to-last.", "C) Rob finished second-to-last.", "D) Ana finished second-to-last.", "E) Ada finished second-to-last.", "F) Mel finished second-to-last.", "G) Joe finished second-to-last." ], "answer": "E" }, { "id": "logical_deduction_671", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a purple book, a brown book, a red book, a blue book, a gray book, a black book, and a green book. The brown book is to the left of the green book. The gray book is the second from the left. The black book is to the left of the gray book. The blue book is to the left of the red book. The blue book is the second from the right. The green book is to the left of the purple book.", "question": "Which of the following is true?", "options": [ "A) The purple book is the leftmost.", "B) The brown book is the leftmost.", "C) The red book is the leftmost.", "D) The blue book is the leftmost.", "E) The gray book is the leftmost.", "F) The black book is the leftmost.", "G) The green book is the leftmost." ], "answer": "F" }, { "id": "logical_deduction_672", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a brown book, a gray book, an orange book, a green book, a black book, a purple book, and a yellow book. The purple book is the leftmost. The brown book is to the right of the yellow book. The green book is to the left of the orange book. The orange book is to the left of the gray book. The black book is the third from the left. The green book is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The brown book is the second from the right.", "B) The gray book is the second from the right.", "C) The orange book is the second from the right.", "D) The green book is the second from the right.", "E) The black book is the second from the right.", "F) The purple book is the second from the right.", "G) The yellow book is the second from the right." ], "answer": "C" }, { "id": "logical_deduction_673", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a falcon, a crow, a hawk, a hummingbird, a blue jay, a robin, and a raven. The blue jay is to the right of the robin. The hawk is to the left of the hummingbird. The robin is the second from the right. The falcon is the third from the left. The crow is to the right of the hummingbird. The raven is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The falcon is the second from the left.", "B) The crow is the second from the left.", "C) The hawk is the second from the left.", "D) The hummingbird is the second from the left.", "E) The blue jay is the second from the left.", "F) The robin is the second from the left.", "G) The raven is the second from the left." ], "answer": "G" }, { "id": "logical_deduction_674", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a purple book, a green book, a white book, a gray book, a red book, a black book, and a brown book. The gray book is to the left of the purple book. The white book is to the right of the brown book. The black book is the third from the right. The purple book is to the left of the white book. The white book is the second from the right. The gray book is the third from the left. The brown book is to the right of the green book.", "question": "Which of the following is true?", "options": [ "A) The purple book is the rightmost.", "B) The green book is the rightmost.", "C) The white book is the rightmost.", "D) The gray book is the rightmost.", "E) The red book is the rightmost.", "F) The black book is the rightmost.", "G) The brown book is the rightmost." ], "answer": "E" }, { "id": "logical_deduction_675", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: an orange book, a green book, a red book, a gray book, a purple book, a blue book, and a brown book. The purple book is the fourth from the left. The brown book is the third from the left. The green book is to the left of the blue book. The red book is the leftmost. The gray book is the third from the right. The orange book is the rightmost.", "question": "Which of the following is true?", "options": [ "A) The orange book is the rightmost.", "B) The green book is the rightmost.", "C) The red book is the rightmost.", "D) The gray book is the rightmost.", "E) The purple book is the rightmost.", "F) The blue book is the rightmost.", "G) The brown book is the rightmost." ], "answer": "A" }, { "id": "logical_deduction_676", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a minivan, a bus, a limousine, a truck, a convertible, a tractor, and a motorcyle. The limousine is older than the minivan. The tractor is older than the limousine. The bus is the newest. The truck is the third-newest. The motorcyle is the fourth-newest. The convertible is older than the tractor.", "question": "Which of the following is true?", "options": [ "A) The minivan is the second-newest.", "B) The bus is the second-newest.", "C) The limousine is the second-newest.", "D) The truck is the second-newest.", "E) The convertible is the second-newest.", "F) The tractor is the second-newest.", "G) The motorcyle is the second-newest." ], "answer": "A" }, { "id": "logical_deduction_677", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: kiwis, loquats, pears, peaches, mangoes, plums, and apples. The loquats are the fourth-most expensive. The peaches are less expensive than the mangoes. The apples are more expensive than the pears. The peaches are the second-most expensive. The plums are the cheapest. The pears are more expensive than the kiwis.", "question": "Which of the following is true?", "options": [ "A) The kiwis are the second-most expensive.", "B) The loquats are the second-most expensive.", "C) The pears are the second-most expensive.", "D) The peaches are the second-most expensive.", "E) The mangoes are the second-most expensive.", "F) The plums are the second-most expensive.", "G) The apples are the second-most expensive." ], "answer": "D" }, { "id": "logical_deduction_678", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a truck, a convertible, a bus, a station wagon, a minivan, a sedan, and a motorcyle. The bus is newer than the sedan. The motorcyle is older than the truck. The station wagon is older than the motorcyle. The sedan is newer than the convertible. The station wagon is newer than the bus. The minivan is the fourth-newest.", "question": "Which of the following is true?", "options": [ "A) The truck is the second-oldest.", "B) The convertible is the second-oldest.", "C) The bus is the second-oldest.", "D) The station wagon is the second-oldest.", "E) The minivan is the second-oldest.", "F) The sedan is the second-oldest.", "G) The motorcyle is the second-oldest." ], "answer": "F" }, { "id": "logical_deduction_679", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a truck, a motorcyle, a sedan, a minivan, a station wagon, a hatchback, and a tractor. The hatchback is newer than the truck. The sedan is the third-newest. The station wagon is the newest. The motorcyle is older than the truck. The minivan is newer than the sedan. The tractor is the third-oldest.", "question": "Which of the following is true?", "options": [ "A) The truck is the third-oldest.", "B) The motorcyle is the third-oldest.", "C) The sedan is the third-oldest.", "D) The minivan is the third-oldest.", "E) The station wagon is the third-oldest.", "F) The hatchback is the third-oldest.", "G) The tractor is the third-oldest." ], "answer": "G" }, { "id": "logical_deduction_680", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a yellow book, a black book, a green book, a red book, a purple book, a white book, and a blue book. The green book is to the left of the yellow book. The red book is the rightmost. The green book is to the right of the blue book. The white book is to the left of the blue book. The yellow book is the fourth from the left. The black book is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the fourth from the left.", "B) The black book is the fourth from the left.", "C) The green book is the fourth from the left.", "D) The red book is the fourth from the left.", "E) The purple book is the fourth from the left.", "F) The white book is the fourth from the left.", "G) The blue book is the fourth from the left." ], "answer": "A" }, { "id": "logical_deduction_681", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a limousine, a truck, a minivan, a tractor, a hatchback, a bus, and a convertible. The convertible is the second-oldest. The tractor is the fourth-newest. The minivan is older than the truck. The truck is older than the limousine. The hatchback is the third-oldest. The bus is newer than the limousine.", "question": "Which of the following is true?", "options": [ "A) The limousine is the third-oldest.", "B) The truck is the third-oldest.", "C) The minivan is the third-oldest.", "D) The tractor is the third-oldest.", "E) The hatchback is the third-oldest.", "F) The bus is the third-oldest.", "G) The convertible is the third-oldest." ], "answer": "E" }, { "id": "logical_deduction_682", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a truck, a convertible, a bus, a station wagon, a minivan, a sedan, and a motorcyle. The bus is newer than the sedan. The motorcyle is older than the truck. The station wagon is older than the motorcyle. The sedan is newer than the convertible. The station wagon is newer than the bus. The minivan is the fourth-newest.", "question": "Which of the following is true?", "options": [ "A) The truck is the third-newest.", "B) The convertible is the third-newest.", "C) The bus is the third-newest.", "D) The station wagon is the third-newest.", "E) The minivan is the third-newest.", "F) The sedan is the third-newest.", "G) The motorcyle is the third-newest." ], "answer": "D" }, { "id": "logical_deduction_683", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a robin, an owl, a quail, a falcon, a hummingbird, a cardinal, and a crow. The hummingbird is to the left of the falcon. The crow is to the right of the cardinal. The cardinal is the second from the right. The quail is the third from the right. The falcon is to the left of the robin. The owl is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The robin is the second from the left.", "B) The owl is the second from the left.", "C) The quail is the second from the left.", "D) The falcon is the second from the left.", "E) The hummingbird is the second from the left.", "F) The cardinal is the second from the left.", "G) The crow is the second from the left." ], "answer": "B" }, { "id": "logical_deduction_684", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Ana, Eli, Mya, Amy, Joe, Mel, and Ada. Ada finished above Mel. Ada finished third-to-last. Amy finished above Ana. Mya finished second-to-last. Joe finished above Amy. Eli finished below Ana.", "question": "Which of the following is true?", "options": [ "A) Ana finished last.", "B) Eli finished last.", "C) Mya finished last.", "D) Amy finished last.", "E) Joe finished last.", "F) Mel finished last.", "G) Ada finished last." ], "answer": "F" }, { "id": "logical_deduction_685", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a robin, an owl, a quail, a falcon, a hummingbird, a cardinal, and a crow. The hummingbird is to the left of the falcon. The crow is to the right of the cardinal. The cardinal is the second from the right. The quail is the third from the right. The falcon is to the left of the robin. The owl is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The robin is the third from the right.", "B) The owl is the third from the right.", "C) The quail is the third from the right.", "D) The falcon is the third from the right.", "E) The hummingbird is the third from the right.", "F) The cardinal is the third from the right.", "G) The crow is the third from the right." ], "answer": "C" }, { "id": "logical_deduction_686", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hawk, a crow, an owl, a raven, a falcon, a quail, and a hummingbird. The hummingbird is the second from the left. The raven is the fourth from the left. The raven is to the right of the hawk. The owl is to the right of the crow. The falcon is the rightmost. The hawk is to the right of the hummingbird. The quail is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The hawk is the fourth from the left.", "B) The crow is the fourth from the left.", "C) The owl is the fourth from the left.", "D) The raven is the fourth from the left.", "E) The falcon is the fourth from the left.", "F) The quail is the fourth from the left.", "G) The hummingbird is the fourth from the left." ], "answer": "D" }, { "id": "logical_deduction_687", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: plums, kiwis, pears, mangoes, apples, oranges, and loquats. The pears are less expensive than the oranges. The mangoes are less expensive than the kiwis. The plums are the second-most expensive. The loquats are more expensive than the apples. The kiwis are less expensive than the apples. The loquats are the fourth-most expensive.", "question": "Which of the following is true?", "options": [ "A) The plums are the fourth-most expensive.", "B) The kiwis are the fourth-most expensive.", "C) The pears are the fourth-most expensive.", "D) The mangoes are the fourth-most expensive.", "E) The apples are the fourth-most expensive.", "F) The oranges are the fourth-most expensive.", "G) The loquats are the fourth-most expensive." ], "answer": "G" }, { "id": "logical_deduction_688", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a station wagon, a sedan, a bus, a motorcyle, a hatchback, a tractor, and a minivan. The sedan is the third-oldest. The tractor is newer than the motorcyle. The bus is older than the motorcyle. The bus is newer than the hatchback. The minivan is the newest. The station wagon is the oldest.", "question": "Which of the following is true?", "options": [ "A) The station wagon is the third-newest.", "B) The sedan is the third-newest.", "C) The bus is the third-newest.", "D) The motorcyle is the third-newest.", "E) The hatchback is the third-newest.", "F) The tractor is the third-newest.", "G) The minivan is the third-newest." ], "answer": "D" }, { "id": "logical_deduction_689", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a truck, a motorcyle, a sedan, a minivan, a station wagon, a hatchback, and a tractor. The hatchback is newer than the truck. The sedan is the third-newest. The station wagon is the newest. The motorcyle is older than the truck. The minivan is newer than the sedan. The tractor is the third-oldest.", "question": "Which of the following is true?", "options": [ "A) The truck is the second-oldest.", "B) The motorcyle is the second-oldest.", "C) The sedan is the second-oldest.", "D) The minivan is the second-oldest.", "E) The station wagon is the second-oldest.", "F) The hatchback is the second-oldest.", "G) The tractor is the second-oldest." ], "answer": "A" }, { "id": "logical_deduction_690", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: an orange book, a red book, a brown book, a blue book, a black book, a gray book, and a white book. The white book is the leftmost. The red book is to the right of the blue book. The orange book is the second from the right. The gray book is the fourth from the left. The black book is the rightmost. The gray book is to the right of the red book.", "question": "Which of the following is true?", "options": [ "A) The orange book is the second from the right.", "B) The red book is the second from the right.", "C) The brown book is the second from the right.", "D) The blue book is the second from the right.", "E) The black book is the second from the right.", "F) The gray book is the second from the right.", "G) The white book is the second from the right." ], "answer": "A" }, { "id": "logical_deduction_691", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Eve, Mya, Rob, Ana, Ada, Mel, and Joe. Eve finished third. Mya finished above Joe. Mel finished above Ada. Mya finished above Rob. Mel finished below Joe. Mya finished second. Ada finished second-to-last.", "question": "Which of the following is true?", "options": [ "A) Eve finished first.", "B) Mya finished first.", "C) Rob finished first.", "D) Ana finished first.", "E) Ada finished first.", "F) Mel finished first.", "G) Joe finished first." ], "answer": "D" }, { "id": "logical_deduction_692", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Eve, Mel, Amy, Mya, Dan, and Rob. Amy finished above Dan. Rob finished third. Mel finished below Rob. Dan finished second-to-last. Eve finished above Amy. Mel finished above Dan. Joe finished fourth.", "question": "Which of the following is true?", "options": [ "A) Joe finished third-to-last.", "B) Eve finished third-to-last.", "C) Mel finished third-to-last.", "D) Amy finished third-to-last.", "E) Mya finished third-to-last.", "F) Dan finished third-to-last.", "G) Rob finished third-to-last." ], "answer": "C" }, { "id": "logical_deduction_693", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a white book, a gray book, a yellow book, a purple book, a red book, a black book, and a green book. The black book is the second from the right. The red book is to the left of the green book. The red book is the second from the left. The gray book is the third from the right. The yellow book is the third from the left. The white book is the fourth from the left.", "question": "Which of the following is true?", "options": [ "A) The white book is the third from the right.", "B) The gray book is the third from the right.", "C) The yellow book is the third from the right.", "D) The purple book is the third from the right.", "E) The red book is the third from the right.", "F) The black book is the third from the right.", "G) The green book is the third from the right." ], "answer": "B" }, { "id": "logical_deduction_694", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a falcon, an owl, a quail, a raven, a hummingbird, a blue jay, and a crow. The quail is to the left of the owl. The owl is the second from the left. The crow is to the right of the falcon. The blue jay is to the right of the hummingbird. The hummingbird is to the right of the raven. The blue jay is to the left of the falcon.", "question": "Which of the following is true?", "options": [ "A) The falcon is the rightmost.", "B) The owl is the rightmost.", "C) The quail is the rightmost.", "D) The raven is the rightmost.", "E) The hummingbird is the rightmost.", "F) The blue jay is the rightmost.", "G) The crow is the rightmost." ], "answer": "G" }, { "id": "logical_deduction_695", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: an orange book, a red book, a brown book, a blue book, a black book, a gray book, and a white book. The white book is the leftmost. The red book is to the right of the blue book. The orange book is the second from the right. The gray book is the fourth from the left. The black book is the rightmost. The gray book is to the right of the red book.", "question": "Which of the following is true?", "options": [ "A) The orange book is the rightmost.", "B) The red book is the rightmost.", "C) The brown book is the rightmost.", "D) The blue book is the rightmost.", "E) The black book is the rightmost.", "F) The gray book is the rightmost.", "G) The white book is the rightmost." ], "answer": "E" }, { "id": "logical_deduction_696", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a limousine, a truck, a minivan, a tractor, a hatchback, a bus, and a convertible. The convertible is the second-oldest. The tractor is the fourth-newest. The minivan is older than the truck. The truck is older than the limousine. The hatchback is the third-oldest. The bus is newer than the limousine.", "question": "Which of the following is true?", "options": [ "A) The limousine is the third-newest.", "B) The truck is the third-newest.", "C) The minivan is the third-newest.", "D) The tractor is the third-newest.", "E) The hatchback is the third-newest.", "F) The bus is the third-newest.", "G) The convertible is the third-newest." ], "answer": "B" }, { "id": "logical_deduction_697", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: kiwis, loquats, pears, peaches, mangoes, plums, and apples. The loquats are the fourth-most expensive. The peaches are less expensive than the mangoes. The apples are more expensive than the pears. The peaches are the second-most expensive. The plums are the cheapest. The pears are more expensive than the kiwis.", "question": "Which of the following is true?", "options": [ "A) The kiwis are the third-cheapest.", "B) The loquats are the third-cheapest.", "C) The pears are the third-cheapest.", "D) The peaches are the third-cheapest.", "E) The mangoes are the third-cheapest.", "F) The plums are the third-cheapest.", "G) The apples are the third-cheapest." ], "answer": "C" }, { "id": "logical_deduction_698", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: kiwis, loquats, pears, peaches, mangoes, plums, and apples. The loquats are the fourth-most expensive. The peaches are less expensive than the mangoes. The apples are more expensive than the pears. The peaches are the second-most expensive. The plums are the cheapest. The pears are more expensive than the kiwis.", "question": "Which of the following is true?", "options": [ "A) The kiwis are the second-cheapest.", "B) The loquats are the second-cheapest.", "C) The pears are the second-cheapest.", "D) The peaches are the second-cheapest.", "E) The mangoes are the second-cheapest.", "F) The plums are the second-cheapest.", "G) The apples are the second-cheapest." ], "answer": "A" }, { "id": "logical_deduction_699", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Ana, Rob, Eve, Mel, Mya, Joe, and Eli. Joe finished second-to-last. Eli finished first. Mya finished below Joe. Mel finished second. Rob finished third-to-last. Ana finished third.", "question": "Which of the following is true?", "options": [ "A) Ana finished first.", "B) Rob finished first.", "C) Eve finished first.", "D) Mel finished first.", "E) Mya finished first.", "F) Joe finished first.", "G) Eli finished first." ], "answer": "G" }, { "id": "logical_deduction_700", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a quail, a raven, a hummingbird, a robin, a falcon, an owl, and a blue jay. The blue jay is to the left of the falcon. The blue jay is the second from the right. The raven is to the left of the robin. The owl is the third from the right. The hummingbird is to the left of the quail. The raven is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The quail is the second from the left.", "B) The raven is the second from the left.", "C) The hummingbird is the second from the left.", "D) The robin is the second from the left.", "E) The falcon is the second from the left.", "F) The owl is the second from the left.", "G) The blue jay is the second from the left." ], "answer": "A" }, { "id": "logical_deduction_701", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Mya, Eli, Ana, Amy, Mel, Dan, and Joe. Amy finished below Joe. Dan finished above Mya. Eli finished third. Ana finished first. Amy finished second-to-last. Mya finished fourth.", "question": "Which of the following is true?", "options": [ "A) Mya finished third.", "B) Eli finished third.", "C) Ana finished third.", "D) Amy finished third.", "E) Mel finished third.", "F) Dan finished third.", "G) Joe finished third." ], "answer": "B" }, { "id": "logical_deduction_702", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a limousine, a truck, a minivan, a tractor, a hatchback, a bus, and a convertible. The convertible is the second-oldest. The tractor is the fourth-newest. The minivan is older than the truck. The truck is older than the limousine. The hatchback is the third-oldest. The bus is newer than the limousine.", "question": "Which of the following is true?", "options": [ "A) The limousine is the second-newest.", "B) The truck is the second-newest.", "C) The minivan is the second-newest.", "D) The tractor is the second-newest.", "E) The hatchback is the second-newest.", "F) The bus is the second-newest.", "G) The convertible is the second-newest." ], "answer": "A" }, { "id": "logical_deduction_703", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: an orange book, a green book, a red book, a gray book, a purple book, a blue book, and a brown book. The purple book is the fourth from the left. The brown book is the third from the left. The green book is to the left of the blue book. The red book is the leftmost. The gray book is the third from the right. The orange book is the rightmost.", "question": "Which of the following is true?", "options": [ "A) The orange book is the second from the right.", "B) The green book is the second from the right.", "C) The red book is the second from the right.", "D) The gray book is the second from the right.", "E) The purple book is the second from the right.", "F) The blue book is the second from the right.", "G) The brown book is the second from the right." ], "answer": "F" }, { "id": "logical_deduction_704", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a brown book, a green book, a black book, an orange book, a white book, a blue book, and a gray book. The brown book is the rightmost. The black book is to the right of the white book. The gray book is the third from the left. The orange book is to the right of the gray book. The orange book is to the left of the green book. The blue book is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The brown book is the second from the left.", "B) The green book is the second from the left.", "C) The black book is the second from the left.", "D) The orange book is the second from the left.", "E) The white book is the second from the left.", "F) The blue book is the second from the left.", "G) The gray book is the second from the left." ], "answer": "C" }, { "id": "logical_deduction_705", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a brown book, a yellow book, a black book, a white book, a green book, an orange book, and a purple book. The purple book is the rightmost. The yellow book is the leftmost. The orange book is the second from the right. The brown book is to the left of the green book. The brown book is to the right of the black book. The white book is the fourth from the left.", "question": "Which of the following is true?", "options": [ "A) The brown book is the fourth from the left.", "B) The yellow book is the fourth from the left.", "C) The black book is the fourth from the left.", "D) The white book is the fourth from the left.", "E) The green book is the fourth from the left.", "F) The orange book is the fourth from the left.", "G) The purple book is the fourth from the left." ], "answer": "D" }, { "id": "logical_deduction_706", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a raven, a hummingbird, a robin, a crow, a quail, a blue jay, and a cardinal. The hummingbird is to the left of the crow. The quail is to the right of the crow. The raven is to the left of the robin. The blue jay is the third from the right. The cardinal is the leftmost. The hummingbird is the fourth from the left.", "question": "Which of the following is true?", "options": [ "A) The raven is the third from the left.", "B) The hummingbird is the third from the left.", "C) The robin is the third from the left.", "D) The crow is the third from the left.", "E) The quail is the third from the left.", "F) The blue jay is the third from the left.", "G) The cardinal is the third from the left." ], "answer": "C" }, { "id": "logical_deduction_707", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a station wagon, a limousine, a truck, a minivan, a motorcyle, a hatchback, and a bus. The motorcyle is older than the truck. The station wagon is older than the hatchback. The motorcyle is newer than the hatchback. The bus is the second-newest. The minivan is the oldest. The limousine is older than the station wagon.", "question": "Which of the following is true?", "options": [ "A) The station wagon is the second-oldest.", "B) The limousine is the second-oldest.", "C) The truck is the second-oldest.", "D) The minivan is the second-oldest.", "E) The motorcyle is the second-oldest.", "F) The hatchback is the second-oldest.", "G) The bus is the second-oldest." ], "answer": "B" }, { "id": "logical_deduction_708", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a red book, a white book, a purple book, a black book, a gray book, an orange book, and a blue book. The red book is to the right of the white book. The gray book is to the left of the orange book. The gray book is to the right of the blue book. The red book is the second from the right. The black book is the fourth from the left. The orange book is to the left of the white book.", "question": "Which of the following is true?", "options": [ "A) The red book is the second from the left.", "B) The white book is the second from the left.", "C) The purple book is the second from the left.", "D) The black book is the second from the left.", "E) The gray book is the second from the left.", "F) The orange book is the second from the left.", "G) The blue book is the second from the left." ], "answer": "E" }, { "id": "logical_deduction_709", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: apples, pears, mangoes, oranges, watermelons, peaches, and cantaloupes. The pears are more expensive than the oranges. The oranges are more expensive than the cantaloupes. The peaches are less expensive than the cantaloupes. The apples are the third-cheapest. The watermelons are the second-most expensive. The mangoes are the fourth-most expensive.", "question": "Which of the following is true?", "options": [ "A) The apples are the most expensive.", "B) The pears are the most expensive.", "C) The mangoes are the most expensive.", "D) The oranges are the most expensive.", "E) The watermelons are the most expensive.", "F) The peaches are the most expensive.", "G) The cantaloupes are the most expensive." ], "answer": "B" }, { "id": "logical_deduction_710", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Ana, Eve, Ada, Dan, Rob, Amy, and Joe. Dan finished third. Ana finished above Ada. Amy finished last. Dan finished below Rob. Eve finished below Ada. Rob finished below Joe.", "question": "Which of the following is true?", "options": [ "A) Ana finished second-to-last.", "B) Eve finished second-to-last.", "C) Ada finished second-to-last.", "D) Dan finished second-to-last.", "E) Rob finished second-to-last.", "F) Amy finished second-to-last.", "G) Joe finished second-to-last." ], "answer": "B" }, { "id": "logical_deduction_711", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a station wagon, a truck, a sedan, a limousine, a convertible, a bus, and a hatchback. The limousine is the newest. The bus is the third-newest. The bus is older than the convertible. The sedan is the third-oldest. The station wagon is older than the truck. The hatchback is the oldest.", "question": "Which of the following is true?", "options": [ "A) The station wagon is the second-oldest.", "B) The truck is the second-oldest.", "C) The sedan is the second-oldest.", "D) The limousine is the second-oldest.", "E) The convertible is the second-oldest.", "F) The bus is the second-oldest.", "G) The hatchback is the second-oldest." ], "answer": "A" }, { "id": "logical_deduction_712", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a red book, a white book, a purple book, a black book, a gray book, an orange book, and a blue book. The red book is to the right of the white book. The gray book is to the left of the orange book. The gray book is to the right of the blue book. The red book is the second from the right. The black book is the fourth from the left. The orange book is to the left of the white book.", "question": "Which of the following is true?", "options": [ "A) The red book is the second from the right.", "B) The white book is the second from the right.", "C) The purple book is the second from the right.", "D) The black book is the second from the right.", "E) The gray book is the second from the right.", "F) The orange book is the second from the right.", "G) The blue book is the second from the right." ], "answer": "A" }, { "id": "logical_deduction_713", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a motorcyle, a sedan, a station wagon, a tractor, a minivan, a bus, and a truck. The motorcyle is older than the minivan. The minivan is older than the tractor. The bus is newer than the truck. The station wagon is the third-newest. The sedan is older than the truck. The tractor is older than the sedan.", "question": "Which of the following is true?", "options": [ "A) The motorcyle is the fourth-newest.", "B) The sedan is the fourth-newest.", "C) The station wagon is the fourth-newest.", "D) The tractor is the fourth-newest.", "E) The minivan is the fourth-newest.", "F) The bus is the fourth-newest.", "G) The truck is the fourth-newest." ], "answer": "B" }, { "id": "logical_deduction_714", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: oranges, loquats, apples, kiwis, mangoes, plums, and peaches. The apples are the second-cheapest. The peaches are the cheapest. The plums are the fourth-most expensive. The loquats are the third-cheapest. The kiwis are more expensive than the mangoes. The oranges are less expensive than the mangoes.", "question": "Which of the following is true?", "options": [ "A) The oranges are the second-cheapest.", "B) The loquats are the second-cheapest.", "C) The apples are the second-cheapest.", "D) The kiwis are the second-cheapest.", "E) The mangoes are the second-cheapest.", "F) The plums are the second-cheapest.", "G) The peaches are the second-cheapest." ], "answer": "C" }, { "id": "logical_deduction_715", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a blue jay, an owl, a falcon, a hawk, a raven, a crow, and a hummingbird. The falcon is the second from the left. The crow is the rightmost. The hummingbird is to the right of the blue jay. The hawk is to the right of the hummingbird. The blue jay is to the right of the owl. The raven is to the left of the falcon.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the rightmost.", "B) The owl is the rightmost.", "C) The falcon is the rightmost.", "D) The hawk is the rightmost.", "E) The raven is the rightmost.", "F) The crow is the rightmost.", "G) The hummingbird is the rightmost." ], "answer": "F" }, { "id": "logical_deduction_716", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Dan, Ada, Amy, Rob, Mya, and Mel. Ada finished below Amy. Joe finished below Dan. Dan finished below Ada. Mel finished third-to-last. Amy finished third. Rob finished below Mya.", "question": "Which of the following is true?", "options": [ "A) Joe finished second-to-last.", "B) Dan finished second-to-last.", "C) Ada finished second-to-last.", "D) Amy finished second-to-last.", "E) Rob finished second-to-last.", "F) Mya finished second-to-last.", "G) Mel finished second-to-last." ], "answer": "B" }, { "id": "logical_deduction_717", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Mel, Mya, Eve, Rob, Ada, and Dan. Rob finished first. Eve finished last. Dan finished above Ada. Mel finished above Mya. Joe finished second-to-last. Mya finished third.", "question": "Which of the following is true?", "options": [ "A) Joe finished last.", "B) Mel finished last.", "C) Mya finished last.", "D) Eve finished last.", "E) Rob finished last.", "F) Ada finished last.", "G) Dan finished last." ], "answer": "D" }, { "id": "logical_deduction_718", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: mangoes, kiwis, oranges, watermelons, apples, pears, and loquats. The loquats are less expensive than the oranges. The oranges are the third-most expensive. The apples are the cheapest. The kiwis are more expensive than the pears. The mangoes are more expensive than the watermelons. The loquats are more expensive than the kiwis.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the second-most expensive.", "B) The kiwis are the second-most expensive.", "C) The oranges are the second-most expensive.", "D) The watermelons are the second-most expensive.", "E) The apples are the second-most expensive.", "F) The pears are the second-most expensive.", "G) The loquats are the second-most expensive." ], "answer": "D" }, { "id": "logical_deduction_719", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a yellow book, a brown book, a white book, an orange book, a black book, a blue book, and a purple book. The black book is the second from the left. The white book is to the right of the orange book. The black book is to the right of the brown book. The yellow book is the third from the right. The purple book is the third from the left. The orange book is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the third from the left.", "B) The brown book is the third from the left.", "C) The white book is the third from the left.", "D) The orange book is the third from the left.", "E) The black book is the third from the left.", "F) The blue book is the third from the left.", "G) The purple book is the third from the left." ], "answer": "G" }, { "id": "logical_deduction_720", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Eve, Rob, Dan, Mel, Ana, Eli, and Ada. Ada finished above Rob. Eve finished below Rob. Mel finished above Eli. Ada finished below Dan. Ana finished third. Eli finished second.", "question": "Which of the following is true?", "options": [ "A) Eve finished second.", "B) Rob finished second.", "C) Dan finished second.", "D) Mel finished second.", "E) Ana finished second.", "F) Eli finished second.", "G) Ada finished second." ], "answer": "F" }, { "id": "logical_deduction_721", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a robin, a hummingbird, a raven, a blue jay, a crow, a cardinal, and a quail. The hummingbird is to the left of the crow. The cardinal is to the right of the quail. The blue jay is the fourth from the left. The robin is the second from the left. The quail is to the right of the crow. The raven is to the left of the robin.", "question": "Which of the following is true?", "options": [ "A) The robin is the third from the right.", "B) The hummingbird is the third from the right.", "C) The raven is the third from the right.", "D) The blue jay is the third from the right.", "E) The crow is the third from the right.", "F) The cardinal is the third from the right.", "G) The quail is the third from the right." ], "answer": "E" }, { "id": "logical_deduction_722", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a brown book, a green book, a black book, an orange book, a white book, a blue book, and a gray book. The brown book is the rightmost. The black book is to the right of the white book. The gray book is the third from the left. The orange book is to the right of the gray book. The orange book is to the left of the green book. The blue book is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The brown book is the rightmost.", "B) The green book is the rightmost.", "C) The black book is the rightmost.", "D) The orange book is the rightmost.", "E) The white book is the rightmost.", "F) The blue book is the rightmost.", "G) The gray book is the rightmost." ], "answer": "A" }, { "id": "logical_deduction_723", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: kiwis, loquats, pears, peaches, mangoes, plums, and apples. The loquats are the fourth-most expensive. The peaches are less expensive than the mangoes. The apples are more expensive than the pears. The peaches are the second-most expensive. The plums are the cheapest. The pears are more expensive than the kiwis.", "question": "Which of the following is true?", "options": [ "A) The kiwis are the most expensive.", "B) The loquats are the most expensive.", "C) The pears are the most expensive.", "D) The peaches are the most expensive.", "E) The mangoes are the most expensive.", "F) The plums are the most expensive.", "G) The apples are the most expensive." ], "answer": "E" }, { "id": "logical_deduction_724", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a limousine, a truck, a sedan, a tractor, a minivan, a motorcyle, and a hatchback. The minivan is older than the tractor. The hatchback is older than the sedan. The truck is the third-newest. The hatchback is the second-newest. The tractor is older than the limousine. The motorcyle is newer than the limousine.", "question": "Which of the following is true?", "options": [ "A) The limousine is the third-newest.", "B) The truck is the third-newest.", "C) The sedan is the third-newest.", "D) The tractor is the third-newest.", "E) The minivan is the third-newest.", "F) The motorcyle is the third-newest.", "G) The hatchback is the third-newest." ], "answer": "B" }, { "id": "logical_deduction_725", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a yellow book, a black book, a green book, a red book, a purple book, a white book, and a blue book. The green book is to the left of the yellow book. The red book is the rightmost. The green book is to the right of the blue book. The white book is to the left of the blue book. The yellow book is the fourth from the left. The black book is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the second from the right.", "B) The black book is the second from the right.", "C) The green book is the second from the right.", "D) The red book is the second from the right.", "E) The purple book is the second from the right.", "F) The white book is the second from the right.", "G) The blue book is the second from the right." ], "answer": "B" }, { "id": "logical_deduction_726", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: mangoes, cantaloupes, apples, plums, loquats, watermelons, and peaches. The plums are more expensive than the mangoes. The watermelons are more expensive than the loquats. The loquats are the second-cheapest. The plums are less expensive than the peaches. The mangoes are the fourth-most expensive. The peaches are less expensive than the cantaloupes.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the second-most expensive.", "B) The cantaloupes are the second-most expensive.", "C) The apples are the second-most expensive.", "D) The plums are the second-most expensive.", "E) The loquats are the second-most expensive.", "F) The watermelons are the second-most expensive.", "G) The peaches are the second-most expensive." ], "answer": "G" }, { "id": "logical_deduction_727", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a minivan, a bus, a limousine, a truck, a convertible, a tractor, and a motorcyle. The limousine is older than the minivan. The tractor is older than the limousine. The bus is the newest. The truck is the third-newest. The motorcyle is the fourth-newest. The convertible is older than the tractor.", "question": "Which of the following is true?", "options": [ "A) The minivan is the fourth-newest.", "B) The bus is the fourth-newest.", "C) The limousine is the fourth-newest.", "D) The truck is the fourth-newest.", "E) The convertible is the fourth-newest.", "F) The tractor is the fourth-newest.", "G) The motorcyle is the fourth-newest." ], "answer": "G" }, { "id": "logical_deduction_728", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a brown book, a yellow book, a black book, a white book, a green book, an orange book, and a purple book. The purple book is the rightmost. The yellow book is the leftmost. The orange book is the second from the right. The brown book is to the left of the green book. The brown book is to the right of the black book. The white book is the fourth from the left.", "question": "Which of the following is true?", "options": [ "A) The brown book is the second from the right.", "B) The yellow book is the second from the right.", "C) The black book is the second from the right.", "D) The white book is the second from the right.", "E) The green book is the second from the right.", "F) The orange book is the second from the right.", "G) The purple book is the second from the right." ], "answer": "F" }, { "id": "logical_deduction_729", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a yellow book, a black book, a green book, a red book, a purple book, a white book, and a blue book. The green book is to the left of the yellow book. The red book is the rightmost. The green book is to the right of the blue book. The white book is to the left of the blue book. The yellow book is the fourth from the left. The black book is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the third from the right.", "B) The black book is the third from the right.", "C) The green book is the third from the right.", "D) The red book is the third from the right.", "E) The purple book is the third from the right.", "F) The white book is the third from the right.", "G) The blue book is the third from the right." ], "answer": "E" }, { "id": "logical_deduction_730", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Ada, Ana, Rob, Amy, Dan, Joe, and Eli. Eli finished below Amy. Ada finished third. Amy finished below Rob. Dan finished last. Rob finished second. Ana finished fourth.", "question": "Which of the following is true?", "options": [ "A) Ada finished second.", "B) Ana finished second.", "C) Rob finished second.", "D) Amy finished second.", "E) Dan finished second.", "F) Joe finished second.", "G) Eli finished second." ], "answer": "C" }, { "id": "logical_deduction_731", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Mya, Eli, Ana, Amy, Mel, Dan, and Joe. Amy finished below Joe. Dan finished above Mya. Eli finished third. Ana finished first. Amy finished second-to-last. Mya finished fourth.", "question": "Which of the following is true?", "options": [ "A) Mya finished fourth.", "B) Eli finished fourth.", "C) Ana finished fourth.", "D) Amy finished fourth.", "E) Mel finished fourth.", "F) Dan finished fourth.", "G) Joe finished fourth." ], "answer": "A" }, { "id": "logical_deduction_732", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Mel, Rob, Eli, Dan, Ana, Ada, and Mya. Ana finished last. Mya finished above Rob. Dan finished above Mya. Rob finished fourth. Eli finished second. Mel finished above Ada.", "question": "Which of the following is true?", "options": [ "A) Mel finished third-to-last.", "B) Rob finished third-to-last.", "C) Eli finished third-to-last.", "D) Dan finished third-to-last.", "E) Ana finished third-to-last.", "F) Ada finished third-to-last.", "G) Mya finished third-to-last." ], "answer": "A" }, { "id": "logical_deduction_733", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: cantaloupes, plums, mangoes, apples, loquats, pears, and peaches. The apples are less expensive than the cantaloupes. The apples are more expensive than the peaches. The mangoes are the fourth-most expensive. The peaches are more expensive than the plums. The pears are the third-most expensive. The loquats are the third-cheapest.", "question": "Which of the following is true?", "options": [ "A) The cantaloupes are the third-cheapest.", "B) The plums are the third-cheapest.", "C) The mangoes are the third-cheapest.", "D) The apples are the third-cheapest.", "E) The loquats are the third-cheapest.", "F) The pears are the third-cheapest.", "G) The peaches are the third-cheapest." ], "answer": "E" }, { "id": "logical_deduction_734", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Eve, Rob, Dan, Mel, Ana, Eli, and Ada. Ada finished above Rob. Eve finished below Rob. Mel finished above Eli. Ada finished below Dan. Ana finished third. Eli finished second.", "question": "Which of the following is true?", "options": [ "A) Eve finished second-to-last.", "B) Rob finished second-to-last.", "C) Dan finished second-to-last.", "D) Mel finished second-to-last.", "E) Ana finished second-to-last.", "F) Eli finished second-to-last.", "G) Ada finished second-to-last." ], "answer": "B" }, { "id": "logical_deduction_735", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hawk, a crow, an owl, a raven, a falcon, a quail, and a hummingbird. The hummingbird is the second from the left. The raven is the fourth from the left. The raven is to the right of the hawk. The owl is to the right of the crow. The falcon is the rightmost. The hawk is to the right of the hummingbird. The quail is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The hawk is the leftmost.", "B) The crow is the leftmost.", "C) The owl is the leftmost.", "D) The raven is the leftmost.", "E) The falcon is the leftmost.", "F) The quail is the leftmost.", "G) The hummingbird is the leftmost." ], "answer": "B" }, { "id": "logical_deduction_736", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a falcon, an owl, a quail, a raven, a hummingbird, a blue jay, and a crow. The quail is to the left of the owl. The owl is the second from the left. The crow is to the right of the falcon. The blue jay is to the right of the hummingbird. The hummingbird is to the right of the raven. The blue jay is to the left of the falcon.", "question": "Which of the following is true?", "options": [ "A) The falcon is the second from the right.", "B) The owl is the second from the right.", "C) The quail is the second from the right.", "D) The raven is the second from the right.", "E) The hummingbird is the second from the right.", "F) The blue jay is the second from the right.", "G) The crow is the second from the right." ], "answer": "A" }, { "id": "logical_deduction_737", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: apples, pears, mangoes, oranges, watermelons, peaches, and cantaloupes. The pears are more expensive than the oranges. The oranges are more expensive than the cantaloupes. The peaches are less expensive than the cantaloupes. The apples are the third-cheapest. The watermelons are the second-most expensive. The mangoes are the fourth-most expensive.", "question": "Which of the following is true?", "options": [ "A) The apples are the second-most expensive.", "B) The pears are the second-most expensive.", "C) The mangoes are the second-most expensive.", "D) The oranges are the second-most expensive.", "E) The watermelons are the second-most expensive.", "F) The peaches are the second-most expensive.", "G) The cantaloupes are the second-most expensive." ], "answer": "E" }, { "id": "logical_deduction_738", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Eli, Ada, Amy, Ana, Eve, Mel, and Dan. Ada finished above Mel. Dan finished above Ada. Amy finished last. Ana finished third-to-last. Dan finished below Eli. Eve finished third.", "question": "Which of the following is true?", "options": [ "A) Eli finished second.", "B) Ada finished second.", "C) Amy finished second.", "D) Ana finished second.", "E) Eve finished second.", "F) Mel finished second.", "G) Dan finished second." ], "answer": "G" }, { "id": "logical_deduction_739", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a robin, a hummingbird, a raven, a blue jay, a crow, a cardinal, and a quail. The hummingbird is to the left of the crow. The cardinal is to the right of the quail. The blue jay is the fourth from the left. The robin is the second from the left. The quail is to the right of the crow. The raven is to the left of the robin.", "question": "Which of the following is true?", "options": [ "A) The robin is the second from the right.", "B) The hummingbird is the second from the right.", "C) The raven is the second from the right.", "D) The blue jay is the second from the right.", "E) The crow is the second from the right.", "F) The cardinal is the second from the right.", "G) The quail is the second from the right." ], "answer": "G" }, { "id": "logical_deduction_740", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a cardinal, a blue jay, a robin, a crow, a falcon, a hawk, and a raven. The hawk is the second from the right. The raven is the fourth from the left. The robin is the second from the left. The cardinal is to the left of the raven. The falcon is to the left of the robin. The crow is to the right of the blue jay.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the leftmost.", "B) The blue jay is the leftmost.", "C) The robin is the leftmost.", "D) The crow is the leftmost.", "E) The falcon is the leftmost.", "F) The hawk is the leftmost.", "G) The raven is the leftmost." ], "answer": "E" }, { "id": "logical_deduction_741", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: an orange book, a green book, a gray book, a purple book, a black book, a yellow book, and a white book. The orange book is to the right of the gray book. The yellow book is the third from the right. The purple book is the second from the left. The yellow book is to the right of the orange book. The white book is the second from the right. The black book is the leftmost.", "question": "Which of the following is true?", "options": [ "A) The orange book is the rightmost.", "B) The green book is the rightmost.", "C) The gray book is the rightmost.", "D) The purple book is the rightmost.", "E) The black book is the rightmost.", "F) The yellow book is the rightmost.", "G) The white book is the rightmost." ], "answer": "B" }, { "id": "logical_deduction_742", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: cantaloupes, plums, mangoes, apples, loquats, pears, and peaches. The apples are less expensive than the cantaloupes. The apples are more expensive than the peaches. The mangoes are the fourth-most expensive. The peaches are more expensive than the plums. The pears are the third-most expensive. The loquats are the third-cheapest.", "question": "Which of the following is true?", "options": [ "A) The cantaloupes are the second-cheapest.", "B) The plums are the second-cheapest.", "C) The mangoes are the second-cheapest.", "D) The apples are the second-cheapest.", "E) The loquats are the second-cheapest.", "F) The pears are the second-cheapest.", "G) The peaches are the second-cheapest." ], "answer": "G" }, { "id": "logical_deduction_743", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a raven, a cardinal, a falcon, an owl, a blue jay, a quail, and a robin. The owl is the second from the right. The cardinal is the fourth from the left. The falcon is to the left of the blue jay. The quail is to the left of the falcon. The raven is the second from the left. The robin is to the left of the quail.", "question": "Which of the following is true?", "options": [ "A) The raven is the fourth from the left.", "B) The cardinal is the fourth from the left.", "C) The falcon is the fourth from the left.", "D) The owl is the fourth from the left.", "E) The blue jay is the fourth from the left.", "F) The quail is the fourth from the left.", "G) The robin is the fourth from the left." ], "answer": "B" }, { "id": "logical_deduction_744", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Ada, Ana, Rob, Amy, Dan, Joe, and Eli. Eli finished below Amy. Ada finished third. Amy finished below Rob. Dan finished last. Rob finished second. Ana finished fourth.", "question": "Which of the following is true?", "options": [ "A) Ada finished third-to-last.", "B) Ana finished third-to-last.", "C) Rob finished third-to-last.", "D) Amy finished third-to-last.", "E) Dan finished third-to-last.", "F) Joe finished third-to-last.", "G) Eli finished third-to-last." ], "answer": "D" }, { "id": "logical_deduction_745", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: mangoes, kiwis, oranges, watermelons, apples, pears, and loquats. The loquats are less expensive than the oranges. The oranges are the third-most expensive. The apples are the cheapest. The kiwis are more expensive than the pears. The mangoes are more expensive than the watermelons. The loquats are more expensive than the kiwis.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the second-cheapest.", "B) The kiwis are the second-cheapest.", "C) The oranges are the second-cheapest.", "D) The watermelons are the second-cheapest.", "E) The apples are the second-cheapest.", "F) The pears are the second-cheapest.", "G) The loquats are the second-cheapest." ], "answer": "F" }, { "id": "logical_deduction_746", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a blue jay, a falcon, a raven, a crow, a robin, an owl, and a hummingbird. The robin is to the left of the owl. The crow is the rightmost. The hummingbird is the fourth from the left. The owl is the third from the right. The blue jay is to the left of the robin. The raven is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the leftmost.", "B) The falcon is the leftmost.", "C) The raven is the leftmost.", "D) The crow is the leftmost.", "E) The robin is the leftmost.", "F) The owl is the leftmost.", "G) The hummingbird is the leftmost." ], "answer": "A" }, { "id": "logical_deduction_747", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a convertible, a truck, a tractor, a limousine, a motorcyle, a hatchback, and a sedan. The hatchback is the fourth-newest. The limousine is older than the motorcyle. The truck is newer than the motorcyle. The sedan is the second-newest. The tractor is newer than the convertible. The hatchback is older than the convertible.", "question": "Which of the following is true?", "options": [ "A) The convertible is the fourth-newest.", "B) The truck is the fourth-newest.", "C) The tractor is the fourth-newest.", "D) The limousine is the fourth-newest.", "E) The motorcyle is the fourth-newest.", "F) The hatchback is the fourth-newest.", "G) The sedan is the fourth-newest." ], "answer": "F" }, { "id": "logical_deduction_748", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a falcon, an owl, a quail, a raven, a hummingbird, a blue jay, and a crow. The quail is to the left of the owl. The owl is the second from the left. The crow is to the right of the falcon. The blue jay is to the right of the hummingbird. The hummingbird is to the right of the raven. The blue jay is to the left of the falcon.", "question": "Which of the following is true?", "options": [ "A) The falcon is the third from the left.", "B) The owl is the third from the left.", "C) The quail is the third from the left.", "D) The raven is the third from the left.", "E) The hummingbird is the third from the left.", "F) The blue jay is the third from the left.", "G) The crow is the third from the left." ], "answer": "D" }, { "id": "logical_deduction_749", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Mel, Rob, Eli, Dan, Ana, Ada, and Mya. Ana finished last. Mya finished above Rob. Dan finished above Mya. Rob finished fourth. Eli finished second. Mel finished above Ada.", "question": "Which of the following is true?", "options": [ "A) Mel finished second-to-last.", "B) Rob finished second-to-last.", "C) Eli finished second-to-last.", "D) Dan finished second-to-last.", "E) Ana finished second-to-last.", "F) Ada finished second-to-last.", "G) Mya finished second-to-last." ], "answer": "F" }, { "id": "logical_deduction_750", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a yellow book, a black book, a green book, a red book, a purple book, a white book, and a blue book. The green book is to the left of the yellow book. The red book is the rightmost. The green book is to the right of the blue book. The white book is to the left of the blue book. The yellow book is the fourth from the left. The black book is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the third from the left.", "B) The black book is the third from the left.", "C) The green book is the third from the left.", "D) The red book is the third from the left.", "E) The purple book is the third from the left.", "F) The white book is the third from the left.", "G) The blue book is the third from the left." ], "answer": "C" }, { "id": "logical_deduction_751", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Ana, Rob, Eve, Mel, Mya, Joe, and Eli. Joe finished second-to-last. Eli finished first. Mya finished below Joe. Mel finished second. Rob finished third-to-last. Ana finished third.", "question": "Which of the following is true?", "options": [ "A) Ana finished second.", "B) Rob finished second.", "C) Eve finished second.", "D) Mel finished second.", "E) Mya finished second.", "F) Joe finished second.", "G) Eli finished second." ], "answer": "D" }, { "id": "logical_deduction_752", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Ada, Amy, Eli, Rob, Joe, Eve, and Ana. Rob finished second. Rob finished above Eve. Joe finished above Ada. Joe finished below Eve. Ada finished above Ana. Eli finished third-to-last.", "question": "Which of the following is true?", "options": [ "A) Ada finished fourth.", "B) Amy finished fourth.", "C) Eli finished fourth.", "D) Rob finished fourth.", "E) Joe finished fourth.", "F) Eve finished fourth.", "G) Ana finished fourth." ], "answer": "E" }, { "id": "logical_deduction_753", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Ada, Ana, Rob, Amy, Dan, Joe, and Eli. Eli finished below Amy. Ada finished third. Amy finished below Rob. Dan finished last. Rob finished second. Ana finished fourth.", "question": "Which of the following is true?", "options": [ "A) Ada finished first.", "B) Ana finished first.", "C) Rob finished first.", "D) Amy finished first.", "E) Dan finished first.", "F) Joe finished first.", "G) Eli finished first." ], "answer": "F" }, { "id": "logical_deduction_754", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a black book, a yellow book, a white book, a gray book, a purple book, an orange book, and a green book. The green book is to the left of the gray book. The gray book is the third from the right. The white book is the rightmost. The orange book is the second from the left. The black book is to the right of the yellow book. The black book is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The black book is the third from the right.", "B) The yellow book is the third from the right.", "C) The white book is the third from the right.", "D) The gray book is the third from the right.", "E) The purple book is the third from the right.", "F) The orange book is the third from the right.", "G) The green book is the third from the right." ], "answer": "D" }, { "id": "logical_deduction_755", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a blue book, a yellow book, a brown book, a gray book, a green book, a purple book, and an orange book. The blue book is to the right of the brown book. The gray book is the rightmost. The purple book is to the left of the green book. The green book is to the left of the yellow book. The brown book is the second from the left. The purple book is to the right of the blue book.", "question": "Which of the following is true?", "options": [ "A) The blue book is the third from the left.", "B) The yellow book is the third from the left.", "C) The brown book is the third from the left.", "D) The gray book is the third from the left.", "E) The green book is the third from the left.", "F) The purple book is the third from the left.", "G) The orange book is the third from the left." ], "answer": "A" }, { "id": "logical_deduction_756", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Eli, Ada, Mel, Eve, Rob, and Ana. Joe finished first. Mel finished second-to-last. Rob finished above Eve. Mel finished above Eli. Rob finished below Ada. Eve finished fourth.", "question": "Which of the following is true?", "options": [ "A) Joe finished second-to-last.", "B) Eli finished second-to-last.", "C) Ada finished second-to-last.", "D) Mel finished second-to-last.", "E) Eve finished second-to-last.", "F) Rob finished second-to-last.", "G) Ana finished second-to-last." ], "answer": "D" }, { "id": "logical_deduction_757", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: oranges, plums, loquats, apples, kiwis, cantaloupes, and peaches. The loquats are less expensive than the kiwis. The plums are the cheapest. The loquats are the fourth-most expensive. The peaches are less expensive than the oranges. The peaches are more expensive than the kiwis. The apples are the second-cheapest.", "question": "Which of the following is true?", "options": [ "A) The oranges are the most expensive.", "B) The plums are the most expensive.", "C) The loquats are the most expensive.", "D) The apples are the most expensive.", "E) The kiwis are the most expensive.", "F) The cantaloupes are the most expensive.", "G) The peaches are the most expensive." ], "answer": "A" }, { "id": "logical_deduction_758", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: an owl, a crow, a falcon, a cardinal, a hummingbird, a quail, and a hawk. The falcon is to the left of the crow. The quail is to the right of the cardinal. The hummingbird is to the right of the quail. The falcon is the second from the right. The hummingbird is to the left of the hawk. The owl is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The owl is the rightmost.", "B) The crow is the rightmost.", "C) The falcon is the rightmost.", "D) The cardinal is the rightmost.", "E) The hummingbird is the rightmost.", "F) The quail is the rightmost.", "G) The hawk is the rightmost." ], "answer": "B" }, { "id": "logical_deduction_759", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a limousine, a sedan, a tractor, a motorcyle, a minivan, a hatchback, and a truck. The minivan is newer than the limousine. The tractor is the second-newest. The truck is older than the sedan. The minivan is older than the truck. The hatchback is newer than the tractor. The motorcyle is the fourth-newest.", "question": "Which of the following is true?", "options": [ "A) The limousine is the third-newest.", "B) The sedan is the third-newest.", "C) The tractor is the third-newest.", "D) The motorcyle is the third-newest.", "E) The minivan is the third-newest.", "F) The hatchback is the third-newest.", "G) The truck is the third-newest." ], "answer": "B" }, { "id": "logical_deduction_760", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Eli, Eve, Mel, Joe, Mya, Rob, and Ada. Ada finished above Mya. Eli finished below Joe. Eli finished above Eve. Ada finished second-to-last. Mel finished third. Rob finished fourth.", "question": "Which of the following is true?", "options": [ "A) Eli finished first.", "B) Eve finished first.", "C) Mel finished first.", "D) Joe finished first.", "E) Mya finished first.", "F) Rob finished first.", "G) Ada finished first." ], "answer": "D" }, { "id": "logical_deduction_761", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a motorcyle, a sedan, a station wagon, a tractor, a minivan, a bus, and a truck. The motorcyle is older than the minivan. The minivan is older than the tractor. The bus is newer than the truck. The station wagon is the third-newest. The sedan is older than the truck. The tractor is older than the sedan.", "question": "Which of the following is true?", "options": [ "A) The motorcyle is the second-oldest.", "B) The sedan is the second-oldest.", "C) The station wagon is the second-oldest.", "D) The tractor is the second-oldest.", "E) The minivan is the second-oldest.", "F) The bus is the second-oldest.", "G) The truck is the second-oldest." ], "answer": "E" }, { "id": "logical_deduction_762", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hawk, a hummingbird, a quail, an owl, a crow, a robin, and a cardinal. The cardinal is the second from the right. The hawk is the rightmost. The owl is to the left of the hummingbird. The robin is to the left of the quail. The owl is to the right of the crow. The robin is the fourth from the left.", "question": "Which of the following is true?", "options": [ "A) The hawk is the rightmost.", "B) The hummingbird is the rightmost.", "C) The quail is the rightmost.", "D) The owl is the rightmost.", "E) The crow is the rightmost.", "F) The robin is the rightmost.", "G) The cardinal is the rightmost." ], "answer": "A" }, { "id": "logical_deduction_763", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a station wagon, a limousine, a truck, a minivan, a motorcyle, a hatchback, and a bus. The motorcyle is older than the truck. The station wagon is older than the hatchback. The motorcyle is newer than the hatchback. The bus is the second-newest. The minivan is the oldest. The limousine is older than the station wagon.", "question": "Which of the following is true?", "options": [ "A) The station wagon is the fourth-newest.", "B) The limousine is the fourth-newest.", "C) The truck is the fourth-newest.", "D) The minivan is the fourth-newest.", "E) The motorcyle is the fourth-newest.", "F) The hatchback is the fourth-newest.", "G) The bus is the fourth-newest." ], "answer": "F" }, { "id": "logical_deduction_764", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: an orange book, a green book, a gray book, a purple book, a black book, a yellow book, and a white book. The orange book is to the right of the gray book. The yellow book is the third from the right. The purple book is the second from the left. The yellow book is to the right of the orange book. The white book is the second from the right. The black book is the leftmost.", "question": "Which of the following is true?", "options": [ "A) The orange book is the fourth from the left.", "B) The green book is the fourth from the left.", "C) The gray book is the fourth from the left.", "D) The purple book is the fourth from the left.", "E) The black book is the fourth from the left.", "F) The yellow book is the fourth from the left.", "G) The white book is the fourth from the left." ], "answer": "A" }, { "id": "logical_deduction_765", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Rob, Eli, Dan, Mya, Ada, and Ana. Joe finished above Ana. Ana finished second-to-last. Mya finished fourth. Dan finished third. Ada finished second. Eli finished third-to-last.", "question": "Which of the following is true?", "options": [ "A) Joe finished second.", "B) Rob finished second.", "C) Eli finished second.", "D) Dan finished second.", "E) Mya finished second.", "F) Ada finished second.", "G) Ana finished second." ], "answer": "F" }, { "id": "logical_deduction_766", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a minivan, a motorcyle, a limousine, a sedan, a bus, a station wagon, and a tractor. The motorcyle is newer than the station wagon. The limousine is newer than the minivan. The tractor is the second-oldest. The bus is the third-newest. The limousine is the third-oldest. The sedan is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The minivan is the third-oldest.", "B) The motorcyle is the third-oldest.", "C) The limousine is the third-oldest.", "D) The sedan is the third-oldest.", "E) The bus is the third-oldest.", "F) The station wagon is the third-oldest.", "G) The tractor is the third-oldest." ], "answer": "C" }, { "id": "logical_deduction_767", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: loquats, cantaloupes, watermelons, apples, oranges, pears, and mangoes. The oranges are the second-cheapest. The apples are less expensive than the pears. The mangoes are more expensive than the cantaloupes. The mangoes are the third-cheapest. The watermelons are the second-most expensive. The loquats are the third-most expensive.", "question": "Which of the following is true?", "options": [ "A) The loquats are the third-cheapest.", "B) The cantaloupes are the third-cheapest.", "C) The watermelons are the third-cheapest.", "D) The apples are the third-cheapest.", "E) The oranges are the third-cheapest.", "F) The pears are the third-cheapest.", "G) The mangoes are the third-cheapest." ], "answer": "G" }, { "id": "logical_deduction_768", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a brown book, a green book, a black book, an orange book, a white book, a blue book, and a gray book. The brown book is the rightmost. The black book is to the right of the white book. The gray book is the third from the left. The orange book is to the right of the gray book. The orange book is to the left of the green book. The blue book is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The brown book is the leftmost.", "B) The green book is the leftmost.", "C) The black book is the leftmost.", "D) The orange book is the leftmost.", "E) The white book is the leftmost.", "F) The blue book is the leftmost.", "G) The gray book is the leftmost." ], "answer": "E" }, { "id": "logical_deduction_769", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: mangoes, watermelons, peaches, kiwis, oranges, cantaloupes, and plums. The watermelons are the cheapest. The peaches are more expensive than the mangoes. The cantaloupes are the second-most expensive. The oranges are more expensive than the cantaloupes. The peaches are less expensive than the plums. The kiwis are the third-cheapest.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the third-cheapest.", "B) The watermelons are the third-cheapest.", "C) The peaches are the third-cheapest.", "D) The kiwis are the third-cheapest.", "E) The oranges are the third-cheapest.", "F) The cantaloupes are the third-cheapest.", "G) The plums are the third-cheapest." ], "answer": "D" }, { "id": "logical_deduction_770", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a cardinal, a blue jay, a robin, a falcon, a quail, a hummingbird, and a raven. The falcon is to the right of the quail. The robin is to the right of the hummingbird. The raven is to the left of the quail. The blue jay is the second from the left. The robin is the third from the left. The cardinal is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the second from the left.", "B) The blue jay is the second from the left.", "C) The robin is the second from the left.", "D) The falcon is the second from the left.", "E) The quail is the second from the left.", "F) The hummingbird is the second from the left.", "G) The raven is the second from the left." ], "answer": "B" }, { "id": "logical_deduction_771", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Ana, Rob, Eve, Mel, Mya, Joe, and Eli. Joe finished second-to-last. Eli finished first. Mya finished below Joe. Mel finished second. Rob finished third-to-last. Ana finished third.", "question": "Which of the following is true?", "options": [ "A) Ana finished third.", "B) Rob finished third.", "C) Eve finished third.", "D) Mel finished third.", "E) Mya finished third.", "F) Joe finished third.", "G) Eli finished third." ], "answer": "A" }, { "id": "logical_deduction_772", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Eve, Ana, Amy, Dan, Eli, Rob, and Mya. Mya finished above Eli. Eve finished below Rob. Amy finished second. Rob finished below Dan. Ana finished second-to-last. Dan finished fourth.", "question": "Which of the following is true?", "options": [ "A) Eve finished third-to-last.", "B) Ana finished third-to-last.", "C) Amy finished third-to-last.", "D) Dan finished third-to-last.", "E) Eli finished third-to-last.", "F) Rob finished third-to-last.", "G) Mya finished third-to-last." ], "answer": "F" }, { "id": "logical_deduction_773", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Eve, Mel, Amy, Mya, Dan, and Rob. Amy finished above Dan. Rob finished third. Mel finished below Rob. Dan finished second-to-last. Eve finished above Amy. Mel finished above Dan. Joe finished fourth.", "question": "Which of the following is true?", "options": [ "A) Joe finished first.", "B) Eve finished first.", "C) Mel finished first.", "D) Amy finished first.", "E) Mya finished first.", "F) Dan finished first.", "G) Rob finished first." ], "answer": "B" }, { "id": "logical_deduction_774", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: mangoes, kiwis, oranges, watermelons, apples, pears, and loquats. The loquats are less expensive than the oranges. The oranges are the third-most expensive. The apples are the cheapest. The kiwis are more expensive than the pears. The mangoes are more expensive than the watermelons. The loquats are more expensive than the kiwis.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the third-cheapest.", "B) The kiwis are the third-cheapest.", "C) The oranges are the third-cheapest.", "D) The watermelons are the third-cheapest.", "E) The apples are the third-cheapest.", "F) The pears are the third-cheapest.", "G) The loquats are the third-cheapest." ], "answer": "B" }, { "id": "logical_deduction_775", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: mangoes, cantaloupes, apples, plums, loquats, watermelons, and peaches. The plums are more expensive than the mangoes. The watermelons are more expensive than the loquats. The loquats are the second-cheapest. The plums are less expensive than the peaches. The mangoes are the fourth-most expensive. The peaches are less expensive than the cantaloupes.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the fourth-most expensive.", "B) The cantaloupes are the fourth-most expensive.", "C) The apples are the fourth-most expensive.", "D) The plums are the fourth-most expensive.", "E) The loquats are the fourth-most expensive.", "F) The watermelons are the fourth-most expensive.", "G) The peaches are the fourth-most expensive." ], "answer": "A" }, { "id": "logical_deduction_776", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Ada, Amy, Eli, Rob, Joe, Eve, and Ana. Rob finished second. Rob finished above Eve. Joe finished above Ada. Joe finished below Eve. Ada finished above Ana. Eli finished third-to-last.", "question": "Which of the following is true?", "options": [ "A) Ada finished third.", "B) Amy finished third.", "C) Eli finished third.", "D) Rob finished third.", "E) Joe finished third.", "F) Eve finished third.", "G) Ana finished third." ], "answer": "F" }, { "id": "logical_deduction_777", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a white book, a gray book, a yellow book, a purple book, a red book, a black book, and a green book. The black book is the second from the right. The red book is to the left of the green book. The red book is the second from the left. The gray book is the third from the right. The yellow book is the third from the left. The white book is the fourth from the left.", "question": "Which of the following is true?", "options": [ "A) The white book is the rightmost.", "B) The gray book is the rightmost.", "C) The yellow book is the rightmost.", "D) The purple book is the rightmost.", "E) The red book is the rightmost.", "F) The black book is the rightmost.", "G) The green book is the rightmost." ], "answer": "G" }, { "id": "logical_deduction_778", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: watermelons, cantaloupes, pears, peaches, mangoes, kiwis, and oranges. The oranges are more expensive than the cantaloupes. The pears are less expensive than the kiwis. The kiwis are the fourth-most expensive. The mangoes are less expensive than the pears. The peaches are the cheapest. The cantaloupes are more expensive than the watermelons.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the cheapest.", "B) The cantaloupes are the cheapest.", "C) The pears are the cheapest.", "D) The peaches are the cheapest.", "E) The mangoes are the cheapest.", "F) The kiwis are the cheapest.", "G) The oranges are the cheapest." ], "answer": "D" }, { "id": "logical_deduction_779", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: oranges, watermelons, peaches, pears, kiwis, cantaloupes, and plums. The kiwis are the second-cheapest. The plums are the cheapest. The cantaloupes are less expensive than the watermelons. The oranges are the most expensive. The pears are the third-cheapest. The peaches are the third-most expensive.", "question": "Which of the following is true?", "options": [ "A) The oranges are the cheapest.", "B) The watermelons are the cheapest.", "C) The peaches are the cheapest.", "D) The pears are the cheapest.", "E) The kiwis are the cheapest.", "F) The cantaloupes are the cheapest.", "G) The plums are the cheapest." ], "answer": "G" }, { "id": "logical_deduction_780", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: an orange book, a red book, a green book, a white book, a purple book, a brown book, and a yellow book. The green book is to the left of the purple book. The white book is to the right of the orange book. The green book is to the right of the brown book. The yellow book is to the right of the white book. The red book is to the right of the yellow book. The brown book is to the right of the red book.", "question": "Which of the following is true?", "options": [ "A) The orange book is the leftmost.", "B) The red book is the leftmost.", "C) The green book is the leftmost.", "D) The white book is the leftmost.", "E) The purple book is the leftmost.", "F) The brown book is the leftmost.", "G) The yellow book is the leftmost." ], "answer": "A" }, { "id": "logical_deduction_781", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Ana, Rob, Eve, Mel, Mya, Joe, and Eli. Joe finished second-to-last. Eli finished first. Mya finished below Joe. Mel finished second. Rob finished third-to-last. Ana finished third.", "question": "Which of the following is true?", "options": [ "A) Ana finished third-to-last.", "B) Rob finished third-to-last.", "C) Eve finished third-to-last.", "D) Mel finished third-to-last.", "E) Mya finished third-to-last.", "F) Joe finished third-to-last.", "G) Eli finished third-to-last." ], "answer": "B" }, { "id": "logical_deduction_782", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a yellow book, a red book, a gray book, a blue book, a white book, an orange book, and a purple book. The red book is the third from the right. The white book is to the right of the orange book. The purple book is the third from the left. The yellow book is to the right of the purple book. The blue book is to the right of the red book. The blue book is to the left of the gray book.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the second from the right.", "B) The red book is the second from the right.", "C) The gray book is the second from the right.", "D) The blue book is the second from the right.", "E) The white book is the second from the right.", "F) The orange book is the second from the right.", "G) The purple book is the second from the right." ], "answer": "D" }, { "id": "logical_deduction_783", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a limousine, a convertible, a station wagon, a minivan, a bus, a tractor, and a truck. The minivan is the oldest. The truck is older than the station wagon. The truck is newer than the limousine. The bus is newer than the convertible. The bus is older than the tractor. The limousine is newer than the tractor.", "question": "Which of the following is true?", "options": [ "A) The limousine is the oldest.", "B) The convertible is the oldest.", "C) The station wagon is the oldest.", "D) The minivan is the oldest.", "E) The bus is the oldest.", "F) The tractor is the oldest.", "G) The truck is the oldest." ], "answer": "D" }, { "id": "logical_deduction_784", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: an orange book, a green book, a gray book, a purple book, a black book, a yellow book, and a white book. The orange book is to the right of the gray book. The yellow book is the third from the right. The purple book is the second from the left. The yellow book is to the right of the orange book. The white book is the second from the right. The black book is the leftmost.", "question": "Which of the following is true?", "options": [ "A) The orange book is the second from the left.", "B) The green book is the second from the left.", "C) The gray book is the second from the left.", "D) The purple book is the second from the left.", "E) The black book is the second from the left.", "F) The yellow book is the second from the left.", "G) The white book is the second from the left." ], "answer": "D" }, { "id": "logical_deduction_785", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Eli, Eve, Mel, Joe, Mya, Rob, and Ada. Ada finished above Mya. Eli finished below Joe. Eli finished above Eve. Ada finished second-to-last. Mel finished third. Rob finished fourth.", "question": "Which of the following is true?", "options": [ "A) Eli finished third.", "B) Eve finished third.", "C) Mel finished third.", "D) Joe finished third.", "E) Mya finished third.", "F) Rob finished third.", "G) Ada finished third." ], "answer": "C" }, { "id": "logical_deduction_786", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a bus, a motorcyle, a hatchback, a station wagon, a minivan, a truck, and a limousine. The station wagon is the fourth-newest. The motorcyle is newer than the truck. The station wagon is older than the hatchback. The minivan is newer than the hatchback. The bus is newer than the minivan. The truck is newer than the limousine.", "question": "Which of the following is true?", "options": [ "A) The bus is the oldest.", "B) The motorcyle is the oldest.", "C) The hatchback is the oldest.", "D) The station wagon is the oldest.", "E) The minivan is the oldest.", "F) The truck is the oldest.", "G) The limousine is the oldest." ], "answer": "G" }, { "id": "logical_deduction_787", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Eve, Mya, Rob, Ana, Ada, Mel, and Joe. Eve finished third. Mya finished above Joe. Mel finished above Ada. Mya finished above Rob. Mel finished below Joe. Mya finished second. Ada finished second-to-last.", "question": "Which of the following is true?", "options": [ "A) Eve finished fourth.", "B) Mya finished fourth.", "C) Rob finished fourth.", "D) Ana finished fourth.", "E) Ada finished fourth.", "F) Mel finished fourth.", "G) Joe finished fourth." ], "answer": "G" }, { "id": "logical_deduction_788", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a blue book, a yellow book, a brown book, a gray book, a green book, a purple book, and an orange book. The blue book is to the right of the brown book. The gray book is the rightmost. The purple book is to the left of the green book. The green book is to the left of the yellow book. The brown book is the second from the left. The purple book is to the right of the blue book.", "question": "Which of the following is true?", "options": [ "A) The blue book is the leftmost.", "B) The yellow book is the leftmost.", "C) The brown book is the leftmost.", "D) The gray book is the leftmost.", "E) The green book is the leftmost.", "F) The purple book is the leftmost.", "G) The orange book is the leftmost." ], "answer": "G" }, { "id": "logical_deduction_789", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: plums, kiwis, pears, mangoes, apples, oranges, and loquats. The pears are less expensive than the oranges. The mangoes are less expensive than the kiwis. The plums are the second-most expensive. The loquats are more expensive than the apples. The kiwis are less expensive than the apples. The loquats are the fourth-most expensive.", "question": "Which of the following is true?", "options": [ "A) The plums are the cheapest.", "B) The kiwis are the cheapest.", "C) The pears are the cheapest.", "D) The mangoes are the cheapest.", "E) The apples are the cheapest.", "F) The oranges are the cheapest.", "G) The loquats are the cheapest." ], "answer": "D" }, { "id": "logical_deduction_790", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a blue book, a yellow book, a brown book, a gray book, a green book, a purple book, and an orange book. The blue book is to the right of the brown book. The gray book is the rightmost. The purple book is to the left of the green book. The green book is to the left of the yellow book. The brown book is the second from the left. The purple book is to the right of the blue book.", "question": "Which of the following is true?", "options": [ "A) The blue book is the rightmost.", "B) The yellow book is the rightmost.", "C) The brown book is the rightmost.", "D) The gray book is the rightmost.", "E) The green book is the rightmost.", "F) The purple book is the rightmost.", "G) The orange book is the rightmost." ], "answer": "D" }, { "id": "logical_deduction_791", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a blue jay, a falcon, a raven, a crow, a robin, an owl, and a hummingbird. The robin is to the left of the owl. The crow is the rightmost. The hummingbird is the fourth from the left. The owl is the third from the right. The blue jay is to the left of the robin. The raven is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the second from the left.", "B) The falcon is the second from the left.", "C) The raven is the second from the left.", "D) The crow is the second from the left.", "E) The robin is the second from the left.", "F) The owl is the second from the left.", "G) The hummingbird is the second from the left." ], "answer": "C" }, { "id": "logical_deduction_792", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Rob, Eli, Dan, Mya, Ada, and Ana. Joe finished above Ana. Ana finished second-to-last. Mya finished fourth. Dan finished third. Ada finished second. Eli finished third-to-last.", "question": "Which of the following is true?", "options": [ "A) Joe finished first.", "B) Rob finished first.", "C) Eli finished first.", "D) Dan finished first.", "E) Mya finished first.", "F) Ada finished first.", "G) Ana finished first." ], "answer": "A" }, { "id": "logical_deduction_793", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a convertible, a limousine, a hatchback, a bus, a station wagon, a tractor, and a minivan. The station wagon is the fourth-newest. The hatchback is older than the bus. The hatchback is the second-newest. The minivan is newer than the limousine. The convertible is older than the limousine. The tractor is the second-oldest.", "question": "Which of the following is true?", "options": [ "A) The convertible is the newest.", "B) The limousine is the newest.", "C) The hatchback is the newest.", "D) The bus is the newest.", "E) The station wagon is the newest.", "F) The tractor is the newest.", "G) The minivan is the newest." ], "answer": "D" }, { "id": "logical_deduction_794", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a truck, a convertible, a bus, a station wagon, a minivan, a sedan, and a motorcyle. The bus is newer than the sedan. The motorcyle is older than the truck. The station wagon is older than the motorcyle. The sedan is newer than the convertible. The station wagon is newer than the bus. The minivan is the fourth-newest.", "question": "Which of the following is true?", "options": [ "A) The truck is the oldest.", "B) The convertible is the oldest.", "C) The bus is the oldest.", "D) The station wagon is the oldest.", "E) The minivan is the oldest.", "F) The sedan is the oldest.", "G) The motorcyle is the oldest." ], "answer": "B" }, { "id": "logical_deduction_795", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: oranges, watermelons, peaches, pears, kiwis, cantaloupes, and plums. The kiwis are the second-cheapest. The plums are the cheapest. The cantaloupes are less expensive than the watermelons. The oranges are the most expensive. The pears are the third-cheapest. The peaches are the third-most expensive.", "question": "Which of the following is true?", "options": [ "A) The oranges are the most expensive.", "B) The watermelons are the most expensive.", "C) The peaches are the most expensive.", "D) The pears are the most expensive.", "E) The kiwis are the most expensive.", "F) The cantaloupes are the most expensive.", "G) The plums are the most expensive." ], "answer": "A" }, { "id": "logical_deduction_796", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hummingbird, a cardinal, a blue jay, an owl, a raven, a quail, and a robin. The hummingbird is to the left of the quail. The robin is to the left of the cardinal. The blue jay is the leftmost. The cardinal is the fourth from the left. The raven is the third from the right. The owl is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The hummingbird is the rightmost.", "B) The cardinal is the rightmost.", "C) The blue jay is the rightmost.", "D) The owl is the rightmost.", "E) The raven is the rightmost.", "F) The quail is the rightmost.", "G) The robin is the rightmost." ], "answer": "F" }, { "id": "logical_deduction_797", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Eve, Ana, Amy, Dan, Eli, Rob, and Mya. Mya finished above Eli. Eve finished below Rob. Amy finished second. Rob finished below Dan. Ana finished second-to-last. Dan finished fourth.", "question": "Which of the following is true?", "options": [ "A) Eve finished second-to-last.", "B) Ana finished second-to-last.", "C) Amy finished second-to-last.", "D) Dan finished second-to-last.", "E) Eli finished second-to-last.", "F) Rob finished second-to-last.", "G) Mya finished second-to-last." ], "answer": "B" }, { "id": "logical_deduction_798", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a station wagon, a truck, a sedan, a limousine, a convertible, a bus, and a hatchback. The limousine is the newest. The bus is the third-newest. The bus is older than the convertible. The sedan is the third-oldest. The station wagon is older than the truck. The hatchback is the oldest.", "question": "Which of the following is true?", "options": [ "A) The station wagon is the third-newest.", "B) The truck is the third-newest.", "C) The sedan is the third-newest.", "D) The limousine is the third-newest.", "E) The convertible is the third-newest.", "F) The bus is the third-newest.", "G) The hatchback is the third-newest." ], "answer": "F" }, { "id": "logical_deduction_799", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Mel, Mya, Eve, Rob, Ada, and Dan. Rob finished first. Eve finished last. Dan finished above Ada. Mel finished above Mya. Joe finished second-to-last. Mya finished third.", "question": "Which of the following is true?", "options": [ "A) Joe finished first.", "B) Mel finished first.", "C) Mya finished first.", "D) Eve finished first.", "E) Rob finished first.", "F) Ada finished first.", "G) Dan finished first." ], "answer": "E" }, { "id": "logical_deduction_800", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hawk, a crow, an owl, a raven, a falcon, a quail, and a hummingbird. The hummingbird is the second from the left. The raven is the fourth from the left. The raven is to the right of the hawk. The owl is to the right of the crow. The falcon is the rightmost. The hawk is to the right of the hummingbird. The quail is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The hawk is the rightmost.", "B) The crow is the rightmost.", "C) The owl is the rightmost.", "D) The raven is the rightmost.", "E) The falcon is the rightmost.", "F) The quail is the rightmost.", "G) The hummingbird is the rightmost." ], "answer": "E" }, { "id": "logical_deduction_801", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a truck, a convertible, a bus, a station wagon, a minivan, a sedan, and a motorcyle. The bus is newer than the sedan. The motorcyle is older than the truck. The station wagon is older than the motorcyle. The sedan is newer than the convertible. The station wagon is newer than the bus. The minivan is the fourth-newest.", "question": "Which of the following is true?", "options": [ "A) The truck is the newest.", "B) The convertible is the newest.", "C) The bus is the newest.", "D) The station wagon is the newest.", "E) The minivan is the newest.", "F) The sedan is the newest.", "G) The motorcyle is the newest." ], "answer": "A" }, { "id": "logical_deduction_802", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: oranges, watermelons, peaches, pears, kiwis, cantaloupes, and plums. The kiwis are the second-cheapest. The plums are the cheapest. The cantaloupes are less expensive than the watermelons. The oranges are the most expensive. The pears are the third-cheapest. The peaches are the third-most expensive.", "question": "Which of the following is true?", "options": [ "A) The oranges are the second-cheapest.", "B) The watermelons are the second-cheapest.", "C) The peaches are the second-cheapest.", "D) The pears are the second-cheapest.", "E) The kiwis are the second-cheapest.", "F) The cantaloupes are the second-cheapest.", "G) The plums are the second-cheapest." ], "answer": "E" }, { "id": "logical_deduction_803", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a falcon, an owl, a quail, a raven, a hummingbird, a blue jay, and a crow. The quail is to the left of the owl. The owl is the second from the left. The crow is to the right of the falcon. The blue jay is to the right of the hummingbird. The hummingbird is to the right of the raven. The blue jay is to the left of the falcon.", "question": "Which of the following is true?", "options": [ "A) The falcon is the third from the right.", "B) The owl is the third from the right.", "C) The quail is the third from the right.", "D) The raven is the third from the right.", "E) The hummingbird is the third from the right.", "F) The blue jay is the third from the right.", "G) The crow is the third from the right." ], "answer": "F" }, { "id": "logical_deduction_804", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Ana, Eli, Mya, Amy, Joe, Mel, and Ada. Ada finished above Mel. Ada finished third-to-last. Amy finished above Ana. Mya finished second-to-last. Joe finished above Amy. Eli finished below Ana.", "question": "Which of the following is true?", "options": [ "A) Ana finished second-to-last.", "B) Eli finished second-to-last.", "C) Mya finished second-to-last.", "D) Amy finished second-to-last.", "E) Joe finished second-to-last.", "F) Mel finished second-to-last.", "G) Ada finished second-to-last." ], "answer": "C" }, { "id": "logical_deduction_805", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: kiwis, plums, mangoes, watermelons, pears, peaches, and oranges. The pears are the third-cheapest. The kiwis are the second-most expensive. The pears are more expensive than the plums. The oranges are less expensive than the kiwis. The mangoes are the third-most expensive. The peaches are the second-cheapest.", "question": "Which of the following is true?", "options": [ "A) The kiwis are the second-most expensive.", "B) The plums are the second-most expensive.", "C) The mangoes are the second-most expensive.", "D) The watermelons are the second-most expensive.", "E) The pears are the second-most expensive.", "F) The peaches are the second-most expensive.", "G) The oranges are the second-most expensive." ], "answer": "A" }, { "id": "logical_deduction_806", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a green book, a brown book, a white book, a black book, an orange book, a purple book, and a yellow book. The purple book is to the left of the yellow book. The green book is to the left of the white book. The brown book is to the right of the yellow book. The white book is the fourth from the left. The green book is to the right of the orange book. The black book is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The green book is the second from the left.", "B) The brown book is the second from the left.", "C) The white book is the second from the left.", "D) The black book is the second from the left.", "E) The orange book is the second from the left.", "F) The purple book is the second from the left.", "G) The yellow book is the second from the left." ], "answer": "D" }, { "id": "logical_deduction_807", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a yellow book, a brown book, a white book, an orange book, a black book, a blue book, and a purple book. The black book is the second from the left. The white book is to the right of the orange book. The black book is to the right of the brown book. The yellow book is the third from the right. The purple book is the third from the left. The orange book is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the rightmost.", "B) The brown book is the rightmost.", "C) The white book is the rightmost.", "D) The orange book is the rightmost.", "E) The black book is the rightmost.", "F) The blue book is the rightmost.", "G) The purple book is the rightmost." ], "answer": "C" }, { "id": "logical_deduction_808", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: an owl, a crow, a falcon, a cardinal, a hummingbird, a quail, and a hawk. The falcon is to the left of the crow. The quail is to the right of the cardinal. The hummingbird is to the right of the quail. The falcon is the second from the right. The hummingbird is to the left of the hawk. The owl is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The owl is the third from the right.", "B) The crow is the third from the right.", "C) The falcon is the third from the right.", "D) The cardinal is the third from the right.", "E) The hummingbird is the third from the right.", "F) The quail is the third from the right.", "G) The hawk is the third from the right." ], "answer": "G" }, { "id": "logical_deduction_809", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a sedan, a truck, a bus, a station wagon, a tractor, a convertible, and a limousine. The truck is the oldest. The tractor is the newest. The sedan is older than the station wagon. The station wagon is the third-newest. The bus is older than the convertible. The sedan is newer than the convertible.", "question": "Which of the following is true?", "options": [ "A) The sedan is the second-oldest.", "B) The truck is the second-oldest.", "C) The bus is the second-oldest.", "D) The station wagon is the second-oldest.", "E) The tractor is the second-oldest.", "F) The convertible is the second-oldest.", "G) The limousine is the second-oldest." ], "answer": "C" }, { "id": "logical_deduction_810", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: an orange book, a green book, a red book, a gray book, a purple book, a blue book, and a brown book. The purple book is the fourth from the left. The brown book is the third from the left. The green book is to the left of the blue book. The red book is the leftmost. The gray book is the third from the right. The orange book is the rightmost.", "question": "Which of the following is true?", "options": [ "A) The orange book is the third from the left.", "B) The green book is the third from the left.", "C) The red book is the third from the left.", "D) The gray book is the third from the left.", "E) The purple book is the third from the left.", "F) The blue book is the third from the left.", "G) The brown book is the third from the left." ], "answer": "G" }, { "id": "logical_deduction_811", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hawk, a raven, a falcon, a crow, a hummingbird, a robin, and a cardinal. The hawk is the second from the right. The robin is to the left of the raven. The raven is to the left of the crow. The falcon is to the left of the cardinal. The hummingbird is the second from the left. The falcon is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The hawk is the third from the right.", "B) The raven is the third from the right.", "C) The falcon is the third from the right.", "D) The crow is the third from the right.", "E) The hummingbird is the third from the right.", "F) The robin is the third from the right.", "G) The cardinal is the third from the right." ], "answer": "C" }, { "id": "logical_deduction_812", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: loquats, cantaloupes, watermelons, apples, oranges, pears, and mangoes. The oranges are the second-cheapest. The apples are less expensive than the pears. The mangoes are more expensive than the cantaloupes. The mangoes are the third-cheapest. The watermelons are the second-most expensive. The loquats are the third-most expensive.", "question": "Which of the following is true?", "options": [ "A) The loquats are the most expensive.", "B) The cantaloupes are the most expensive.", "C) The watermelons are the most expensive.", "D) The apples are the most expensive.", "E) The oranges are the most expensive.", "F) The pears are the most expensive.", "G) The mangoes are the most expensive." ], "answer": "F" }, { "id": "logical_deduction_813", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Eve, Mel, Amy, Mya, Dan, and Rob. Amy finished above Dan. Rob finished third. Mel finished below Rob. Dan finished second-to-last. Eve finished above Amy. Mel finished above Dan. Joe finished fourth.", "question": "Which of the following is true?", "options": [ "A) Joe finished third.", "B) Eve finished third.", "C) Mel finished third.", "D) Amy finished third.", "E) Mya finished third.", "F) Dan finished third.", "G) Rob finished third." ], "answer": "G" }, { "id": "logical_deduction_814", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: watermelons, cantaloupes, pears, peaches, mangoes, kiwis, and oranges. The oranges are more expensive than the cantaloupes. The pears are less expensive than the kiwis. The kiwis are the fourth-most expensive. The mangoes are less expensive than the pears. The peaches are the cheapest. The cantaloupes are more expensive than the watermelons.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the second-most expensive.", "B) The cantaloupes are the second-most expensive.", "C) The pears are the second-most expensive.", "D) The peaches are the second-most expensive.", "E) The mangoes are the second-most expensive.", "F) The kiwis are the second-most expensive.", "G) The oranges are the second-most expensive." ], "answer": "B" }, { "id": "logical_deduction_815", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a station wagon, a limousine, a truck, a minivan, a motorcyle, a hatchback, and a bus. The motorcyle is older than the truck. The station wagon is older than the hatchback. The motorcyle is newer than the hatchback. The bus is the second-newest. The minivan is the oldest. The limousine is older than the station wagon.", "question": "Which of the following is true?", "options": [ "A) The station wagon is the second-newest.", "B) The limousine is the second-newest.", "C) The truck is the second-newest.", "D) The minivan is the second-newest.", "E) The motorcyle is the second-newest.", "F) The hatchback is the second-newest.", "G) The bus is the second-newest." ], "answer": "G" }, { "id": "logical_deduction_816", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Ana, Eli, Mya, Amy, Joe, Mel, and Ada. Ada finished above Mel. Ada finished third-to-last. Amy finished above Ana. Mya finished second-to-last. Joe finished above Amy. Eli finished below Ana.", "question": "Which of the following is true?", "options": [ "A) Ana finished fourth.", "B) Eli finished fourth.", "C) Mya finished fourth.", "D) Amy finished fourth.", "E) Joe finished fourth.", "F) Mel finished fourth.", "G) Ada finished fourth." ], "answer": "B" }, { "id": "logical_deduction_817", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Mel, Rob, Eli, Dan, Ana, Ada, and Mya. Ana finished last. Mya finished above Rob. Dan finished above Mya. Rob finished fourth. Eli finished second. Mel finished above Ada.", "question": "Which of the following is true?", "options": [ "A) Mel finished last.", "B) Rob finished last.", "C) Eli finished last.", "D) Dan finished last.", "E) Ana finished last.", "F) Ada finished last.", "G) Mya finished last." ], "answer": "E" }, { "id": "logical_deduction_818", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a sedan, a truck, a bus, a station wagon, a tractor, a convertible, and a limousine. The truck is the oldest. The tractor is the newest. The sedan is older than the station wagon. The station wagon is the third-newest. The bus is older than the convertible. The sedan is newer than the convertible.", "question": "Which of the following is true?", "options": [ "A) The sedan is the second-newest.", "B) The truck is the second-newest.", "C) The bus is the second-newest.", "D) The station wagon is the second-newest.", "E) The tractor is the second-newest.", "F) The convertible is the second-newest.", "G) The limousine is the second-newest." ], "answer": "G" }, { "id": "logical_deduction_819", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: oranges, watermelons, peaches, pears, kiwis, cantaloupes, and plums. The kiwis are the second-cheapest. The plums are the cheapest. The cantaloupes are less expensive than the watermelons. The oranges are the most expensive. The pears are the third-cheapest. The peaches are the third-most expensive.", "question": "Which of the following is true?", "options": [ "A) The oranges are the third-cheapest.", "B) The watermelons are the third-cheapest.", "C) The peaches are the third-cheapest.", "D) The pears are the third-cheapest.", "E) The kiwis are the third-cheapest.", "F) The cantaloupes are the third-cheapest.", "G) The plums are the third-cheapest." ], "answer": "D" }, { "id": "logical_deduction_820", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hawk, a raven, a hummingbird, a falcon, an owl, a quail, and a cardinal. The quail is to the left of the hummingbird. The raven is to the right of the hummingbird. The cardinal is the second from the left. The owl is to the left of the cardinal. The raven is the third from the right. The falcon is the rightmost.", "question": "Which of the following is true?", "options": [ "A) The hawk is the second from the left.", "B) The raven is the second from the left.", "C) The hummingbird is the second from the left.", "D) The falcon is the second from the left.", "E) The owl is the second from the left.", "F) The quail is the second from the left.", "G) The cardinal is the second from the left." ], "answer": "G" }, { "id": "logical_deduction_821", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a station wagon, a limousine, a truck, a minivan, a motorcyle, a hatchback, and a bus. The motorcyle is older than the truck. The station wagon is older than the hatchback. The motorcyle is newer than the hatchback. The bus is the second-newest. The minivan is the oldest. The limousine is older than the station wagon.", "question": "Which of the following is true?", "options": [ "A) The station wagon is the third-newest.", "B) The limousine is the third-newest.", "C) The truck is the third-newest.", "D) The minivan is the third-newest.", "E) The motorcyle is the third-newest.", "F) The hatchback is the third-newest.", "G) The bus is the third-newest." ], "answer": "E" }, { "id": "logical_deduction_822", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a hatchback, a sedan, a station wagon, a convertible, a tractor, a bus, and a truck. The convertible is the second-newest. The station wagon is newer than the truck. The bus is newer than the hatchback. The truck is the fourth-newest. The station wagon is older than the tractor. The sedan is the oldest.", "question": "Which of the following is true?", "options": [ "A) The hatchback is the oldest.", "B) The sedan is the oldest.", "C) The station wagon is the oldest.", "D) The convertible is the oldest.", "E) The tractor is the oldest.", "F) The bus is the oldest.", "G) The truck is the oldest." ], "answer": "B" }, { "id": "logical_deduction_823", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a brown book, a green book, a black book, an orange book, a white book, a blue book, and a gray book. The brown book is the rightmost. The black book is to the right of the white book. The gray book is the third from the left. The orange book is to the right of the gray book. The orange book is to the left of the green book. The blue book is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The brown book is the third from the left.", "B) The green book is the third from the left.", "C) The black book is the third from the left.", "D) The orange book is the third from the left.", "E) The white book is the third from the left.", "F) The blue book is the third from the left.", "G) The gray book is the third from the left." ], "answer": "G" }, { "id": "logical_deduction_824", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hawk, a hummingbird, a quail, an owl, a crow, a robin, and a cardinal. The cardinal is the second from the right. The hawk is the rightmost. The owl is to the left of the hummingbird. The robin is to the left of the quail. The owl is to the right of the crow. The robin is the fourth from the left.", "question": "Which of the following is true?", "options": [ "A) The hawk is the fourth from the left.", "B) The hummingbird is the fourth from the left.", "C) The quail is the fourth from the left.", "D) The owl is the fourth from the left.", "E) The crow is the fourth from the left.", "F) The robin is the fourth from the left.", "G) The cardinal is the fourth from the left." ], "answer": "F" }, { "id": "logical_deduction_825", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a black book, a yellow book, a white book, a gray book, a purple book, an orange book, and a green book. The green book is to the left of the gray book. The gray book is the third from the right. The white book is the rightmost. The orange book is the second from the left. The black book is to the right of the yellow book. The black book is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The black book is the second from the left.", "B) The yellow book is the second from the left.", "C) The white book is the second from the left.", "D) The gray book is the second from the left.", "E) The purple book is the second from the left.", "F) The orange book is the second from the left.", "G) The green book is the second from the left." ], "answer": "F" }, { "id": "logical_deduction_826", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a cardinal, a blue jay, a robin, a crow, a falcon, a hawk, and a raven. The hawk is the second from the right. The raven is the fourth from the left. The robin is the second from the left. The cardinal is to the left of the raven. The falcon is to the left of the robin. The crow is to the right of the blue jay.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the second from the right.", "B) The blue jay is the second from the right.", "C) The robin is the second from the right.", "D) The crow is the second from the right.", "E) The falcon is the second from the right.", "F) The hawk is the second from the right.", "G) The raven is the second from the right." ], "answer": "F" }, { "id": "logical_deduction_827", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a purple book, a green book, a white book, a gray book, a red book, a black book, and a brown book. The gray book is to the left of the purple book. The white book is to the right of the brown book. The black book is the third from the right. The purple book is to the left of the white book. The white book is the second from the right. The gray book is the third from the left. The brown book is to the right of the green book.", "question": "Which of the following is true?", "options": [ "A) The purple book is the leftmost.", "B) The green book is the leftmost.", "C) The white book is the leftmost.", "D) The gray book is the leftmost.", "E) The red book is the leftmost.", "F) The black book is the leftmost.", "G) The brown book is the leftmost." ], "answer": "B" }, { "id": "logical_deduction_828", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: watermelons, mangoes, kiwis, pears, cantaloupes, oranges, and peaches. The oranges are more expensive than the peaches. The cantaloupes are the fourth-most expensive. The pears are less expensive than the cantaloupes. The peaches are the second-most expensive. The mangoes are the cheapest. The kiwis are the third-cheapest.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the most expensive.", "B) The mangoes are the most expensive.", "C) The kiwis are the most expensive.", "D) The pears are the most expensive.", "E) The cantaloupes are the most expensive.", "F) The oranges are the most expensive.", "G) The peaches are the most expensive." ], "answer": "F" }, { "id": "logical_deduction_829", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a truck, a convertible, a bus, a station wagon, a minivan, a sedan, and a motorcyle. The bus is newer than the sedan. The motorcyle is older than the truck. The station wagon is older than the motorcyle. The sedan is newer than the convertible. The station wagon is newer than the bus. The minivan is the fourth-newest.", "question": "Which of the following is true?", "options": [ "A) The truck is the fourth-newest.", "B) The convertible is the fourth-newest.", "C) The bus is the fourth-newest.", "D) The station wagon is the fourth-newest.", "E) The minivan is the fourth-newest.", "F) The sedan is the fourth-newest.", "G) The motorcyle is the fourth-newest." ], "answer": "E" }, { "id": "logical_deduction_830", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a minivan, a motorcyle, a limousine, a sedan, a bus, a station wagon, and a tractor. The motorcyle is newer than the station wagon. The limousine is newer than the minivan. The tractor is the second-oldest. The bus is the third-newest. The limousine is the third-oldest. The sedan is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The minivan is the third-newest.", "B) The motorcyle is the third-newest.", "C) The limousine is the third-newest.", "D) The sedan is the third-newest.", "E) The bus is the third-newest.", "F) The station wagon is the third-newest.", "G) The tractor is the third-newest." ], "answer": "E" }, { "id": "logical_deduction_831", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a convertible, a limousine, a hatchback, a bus, a station wagon, a tractor, and a minivan. The station wagon is the fourth-newest. The hatchback is older than the bus. The hatchback is the second-newest. The minivan is newer than the limousine. The convertible is older than the limousine. The tractor is the second-oldest.", "question": "Which of the following is true?", "options": [ "A) The convertible is the second-newest.", "B) The limousine is the second-newest.", "C) The hatchback is the second-newest.", "D) The bus is the second-newest.", "E) The station wagon is the second-newest.", "F) The tractor is the second-newest.", "G) The minivan is the second-newest." ], "answer": "C" }, { "id": "logical_deduction_832", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a limousine, a truck, a sedan, a tractor, a minivan, a motorcyle, and a hatchback. The minivan is older than the tractor. The hatchback is older than the sedan. The truck is the third-newest. The hatchback is the second-newest. The tractor is older than the limousine. The motorcyle is newer than the limousine.", "question": "Which of the following is true?", "options": [ "A) The limousine is the second-newest.", "B) The truck is the second-newest.", "C) The sedan is the second-newest.", "D) The tractor is the second-newest.", "E) The minivan is the second-newest.", "F) The motorcyle is the second-newest.", "G) The hatchback is the second-newest." ], "answer": "G" }, { "id": "logical_deduction_833", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a motorcyle, a sedan, a station wagon, a tractor, a minivan, a bus, and a truck. The motorcyle is older than the minivan. The minivan is older than the tractor. The bus is newer than the truck. The station wagon is the third-newest. The sedan is older than the truck. The tractor is older than the sedan.", "question": "Which of the following is true?", "options": [ "A) The motorcyle is the second-newest.", "B) The sedan is the second-newest.", "C) The station wagon is the second-newest.", "D) The tractor is the second-newest.", "E) The minivan is the second-newest.", "F) The bus is the second-newest.", "G) The truck is the second-newest." ], "answer": "G" }, { "id": "logical_deduction_834", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a purple book, a green book, a white book, a gray book, a red book, a black book, and a brown book. The gray book is to the left of the purple book. The white book is to the right of the brown book. The black book is the third from the right. The purple book is to the left of the white book. The white book is the second from the right. The gray book is the third from the left. The brown book is to the right of the green book.", "question": "Which of the following is true?", "options": [ "A) The purple book is the second from the left.", "B) The green book is the second from the left.", "C) The white book is the second from the left.", "D) The gray book is the second from the left.", "E) The red book is the second from the left.", "F) The black book is the second from the left.", "G) The brown book is the second from the left." ], "answer": "G" }, { "id": "logical_deduction_835", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a minivan, a motorcyle, a limousine, a sedan, a bus, a station wagon, and a tractor. The motorcyle is newer than the station wagon. The limousine is newer than the minivan. The tractor is the second-oldest. The bus is the third-newest. The limousine is the third-oldest. The sedan is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The minivan is the oldest.", "B) The motorcyle is the oldest.", "C) The limousine is the oldest.", "D) The sedan is the oldest.", "E) The bus is the oldest.", "F) The station wagon is the oldest.", "G) The tractor is the oldest." ], "answer": "A" }, { "id": "logical_deduction_836", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a minivan, a bus, a limousine, a truck, a convertible, a tractor, and a motorcyle. The limousine is older than the minivan. The tractor is older than the limousine. The bus is the newest. The truck is the third-newest. The motorcyle is the fourth-newest. The convertible is older than the tractor.", "question": "Which of the following is true?", "options": [ "A) The minivan is the newest.", "B) The bus is the newest.", "C) The limousine is the newest.", "D) The truck is the newest.", "E) The convertible is the newest.", "F) The tractor is the newest.", "G) The motorcyle is the newest." ], "answer": "B" }, { "id": "logical_deduction_837", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Dan, Eve, Mya, Amy, Rob, Ada, and Joe. Amy finished third. Joe finished last. Mya finished above Dan. Eve finished fourth. Amy finished above Rob. Ada finished third-to-last.", "question": "Which of the following is true?", "options": [ "A) Dan finished first.", "B) Eve finished first.", "C) Mya finished first.", "D) Amy finished first.", "E) Rob finished first.", "F) Ada finished first.", "G) Joe finished first." ], "answer": "C" }, { "id": "logical_deduction_838", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a black book, an orange book, a yellow book, a white book, a blue book, a red book, and a green book. The red book is to the right of the yellow book. The white book is the second from the right. The red book is to the left of the green book. The blue book is to the right of the black book. The black book is the third from the right. The orange book is the leftmost.", "question": "Which of the following is true?", "options": [ "A) The black book is the second from the right.", "B) The orange book is the second from the right.", "C) The yellow book is the second from the right.", "D) The white book is the second from the right.", "E) The blue book is the second from the right.", "F) The red book is the second from the right.", "G) The green book is the second from the right." ], "answer": "D" }, { "id": "logical_deduction_839", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a truck, a hatchback, a minivan, a bus, a tractor, a station wagon, and a convertible. The station wagon is the fourth-newest. The minivan is the third-newest. The tractor is the second-oldest. The convertible is older than the station wagon. The truck is newer than the bus. The hatchback is older than the convertible.", "question": "Which of the following is true?", "options": [ "A) The truck is the fourth-newest.", "B) The hatchback is the fourth-newest.", "C) The minivan is the fourth-newest.", "D) The bus is the fourth-newest.", "E) The tractor is the fourth-newest.", "F) The station wagon is the fourth-newest.", "G) The convertible is the fourth-newest." ], "answer": "F" }, { "id": "logical_deduction_840", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a convertible, a truck, a tractor, a limousine, a motorcyle, a hatchback, and a sedan. The hatchback is the fourth-newest. The limousine is older than the motorcyle. The truck is newer than the motorcyle. The sedan is the second-newest. The tractor is newer than the convertible. The hatchback is older than the convertible.", "question": "Which of the following is true?", "options": [ "A) The convertible is the second-newest.", "B) The truck is the second-newest.", "C) The tractor is the second-newest.", "D) The limousine is the second-newest.", "E) The motorcyle is the second-newest.", "F) The hatchback is the second-newest.", "G) The sedan is the second-newest." ], "answer": "G" }, { "id": "logical_deduction_841", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a minivan, a motorcyle, a limousine, a sedan, a bus, a station wagon, and a tractor. The motorcyle is newer than the station wagon. The limousine is newer than the minivan. The tractor is the second-oldest. The bus is the third-newest. The limousine is the third-oldest. The sedan is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The minivan is the second-newest.", "B) The motorcyle is the second-newest.", "C) The limousine is the second-newest.", "D) The sedan is the second-newest.", "E) The bus is the second-newest.", "F) The station wagon is the second-newest.", "G) The tractor is the second-newest." ], "answer": "D" }, { "id": "logical_deduction_842", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Amy, Eve, Ada, Rob, Dan, Mel, and Joe. Joe finished third. Dan finished last. Eve finished first. Mel finished below Rob. Ada finished above Joe. Rob finished third-to-last.", "question": "Which of the following is true?", "options": [ "A) Amy finished third-to-last.", "B) Eve finished third-to-last.", "C) Ada finished third-to-last.", "D) Rob finished third-to-last.", "E) Dan finished third-to-last.", "F) Mel finished third-to-last.", "G) Joe finished third-to-last." ], "answer": "D" }, { "id": "logical_deduction_843", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: kiwis, cantaloupes, oranges, loquats, pears, watermelons, and peaches. The loquats are less expensive than the peaches. The pears are the third-cheapest. The oranges are less expensive than the cantaloupes. The loquats are more expensive than the watermelons. The peaches are less expensive than the oranges. The kiwis are the second-most expensive.", "question": "Which of the following is true?", "options": [ "A) The kiwis are the third-cheapest.", "B) The cantaloupes are the third-cheapest.", "C) The oranges are the third-cheapest.", "D) The loquats are the third-cheapest.", "E) The pears are the third-cheapest.", "F) The watermelons are the third-cheapest.", "G) The peaches are the third-cheapest." ], "answer": "E" }, { "id": "logical_deduction_844", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: cantaloupes, plums, mangoes, apples, loquats, pears, and peaches. The apples are less expensive than the cantaloupes. The apples are more expensive than the peaches. The mangoes are the fourth-most expensive. The peaches are more expensive than the plums. The pears are the third-most expensive. The loquats are the third-cheapest.", "question": "Which of the following is true?", "options": [ "A) The cantaloupes are the third-most expensive.", "B) The plums are the third-most expensive.", "C) The mangoes are the third-most expensive.", "D) The apples are the third-most expensive.", "E) The loquats are the third-most expensive.", "F) The pears are the third-most expensive.", "G) The peaches are the third-most expensive." ], "answer": "F" }, { "id": "logical_deduction_845", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: kiwis, cantaloupes, oranges, loquats, pears, watermelons, and peaches. The loquats are less expensive than the peaches. The pears are the third-cheapest. The oranges are less expensive than the cantaloupes. The loquats are more expensive than the watermelons. The peaches are less expensive than the oranges. The kiwis are the second-most expensive.", "question": "Which of the following is true?", "options": [ "A) The kiwis are the fourth-most expensive.", "B) The cantaloupes are the fourth-most expensive.", "C) The oranges are the fourth-most expensive.", "D) The loquats are the fourth-most expensive.", "E) The pears are the fourth-most expensive.", "F) The watermelons are the fourth-most expensive.", "G) The peaches are the fourth-most expensive." ], "answer": "G" }, { "id": "logical_deduction_846", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: apples, pears, mangoes, oranges, watermelons, peaches, and cantaloupes. The pears are more expensive than the oranges. The oranges are more expensive than the cantaloupes. The peaches are less expensive than the cantaloupes. The apples are the third-cheapest. The watermelons are the second-most expensive. The mangoes are the fourth-most expensive.", "question": "Which of the following is true?", "options": [ "A) The apples are the third-cheapest.", "B) The pears are the third-cheapest.", "C) The mangoes are the third-cheapest.", "D) The oranges are the third-cheapest.", "E) The watermelons are the third-cheapest.", "F) The peaches are the third-cheapest.", "G) The cantaloupes are the third-cheapest." ], "answer": "A" }, { "id": "logical_deduction_847", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: mangoes, watermelons, peaches, kiwis, oranges, cantaloupes, and plums. The watermelons are the cheapest. The peaches are more expensive than the mangoes. The cantaloupes are the second-most expensive. The oranges are more expensive than the cantaloupes. The peaches are less expensive than the plums. The kiwis are the third-cheapest.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the fourth-most expensive.", "B) The watermelons are the fourth-most expensive.", "C) The peaches are the fourth-most expensive.", "D) The kiwis are the fourth-most expensive.", "E) The oranges are the fourth-most expensive.", "F) The cantaloupes are the fourth-most expensive.", "G) The plums are the fourth-most expensive." ], "answer": "C" }, { "id": "logical_deduction_848", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a hatchback, a sedan, a station wagon, a convertible, a tractor, a bus, and a truck. The convertible is the second-newest. The station wagon is newer than the truck. The bus is newer than the hatchback. The truck is the fourth-newest. The station wagon is older than the tractor. The sedan is the oldest.", "question": "Which of the following is true?", "options": [ "A) The hatchback is the third-oldest.", "B) The sedan is the third-oldest.", "C) The station wagon is the third-oldest.", "D) The convertible is the third-oldest.", "E) The tractor is the third-oldest.", "F) The bus is the third-oldest.", "G) The truck is the third-oldest." ], "answer": "F" }, { "id": "logical_deduction_849", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a cardinal, a crow, a hummingbird, a blue jay, an owl, a robin, and a quail. The cardinal is to the right of the crow. The quail is the third from the left. The owl is to the right of the robin. The hummingbird is to the right of the blue jay. The cardinal is the second from the left. The owl is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the third from the left.", "B) The crow is the third from the left.", "C) The hummingbird is the third from the left.", "D) The blue jay is the third from the left.", "E) The owl is the third from the left.", "F) The robin is the third from the left.", "G) The quail is the third from the left." ], "answer": "G" }, { "id": "logical_deduction_850", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a blue book, a yellow book, a brown book, a gray book, a green book, a purple book, and an orange book. The blue book is to the right of the brown book. The gray book is the rightmost. The purple book is to the left of the green book. The green book is to the left of the yellow book. The brown book is the second from the left. The purple book is to the right of the blue book.", "question": "Which of the following is true?", "options": [ "A) The blue book is the fourth from the left.", "B) The yellow book is the fourth from the left.", "C) The brown book is the fourth from the left.", "D) The gray book is the fourth from the left.", "E) The green book is the fourth from the left.", "F) The purple book is the fourth from the left.", "G) The orange book is the fourth from the left." ], "answer": "F" }, { "id": "logical_deduction_851", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a station wagon, a truck, a sedan, a limousine, a convertible, a bus, and a hatchback. The limousine is the newest. The bus is the third-newest. The bus is older than the convertible. The sedan is the third-oldest. The station wagon is older than the truck. The hatchback is the oldest.", "question": "Which of the following is true?", "options": [ "A) The station wagon is the oldest.", "B) The truck is the oldest.", "C) The sedan is the oldest.", "D) The limousine is the oldest.", "E) The convertible is the oldest.", "F) The bus is the oldest.", "G) The hatchback is the oldest." ], "answer": "G" }, { "id": "logical_deduction_852", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a sedan, a minivan, a motorcyle, a limousine, a hatchback, a truck, and a tractor. The motorcyle is older than the tractor. The hatchback is older than the limousine. The hatchback is newer than the truck. The truck is newer than the tractor. The minivan is the second-newest. The sedan is the third-newest.", "question": "Which of the following is true?", "options": [ "A) The sedan is the second-oldest.", "B) The minivan is the second-oldest.", "C) The motorcyle is the second-oldest.", "D) The limousine is the second-oldest.", "E) The hatchback is the second-oldest.", "F) The truck is the second-oldest.", "G) The tractor is the second-oldest." ], "answer": "G" }, { "id": "logical_deduction_853", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hawk, a raven, a hummingbird, a falcon, an owl, a quail, and a cardinal. The quail is to the left of the hummingbird. The raven is to the right of the hummingbird. The cardinal is the second from the left. The owl is to the left of the cardinal. The raven is the third from the right. The falcon is the rightmost.", "question": "Which of the following is true?", "options": [ "A) The hawk is the second from the right.", "B) The raven is the second from the right.", "C) The hummingbird is the second from the right.", "D) The falcon is the second from the right.", "E) The owl is the second from the right.", "F) The quail is the second from the right.", "G) The cardinal is the second from the right." ], "answer": "A" }, { "id": "logical_deduction_854", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a minivan, a motorcyle, a limousine, a sedan, a bus, a station wagon, and a tractor. The motorcyle is newer than the station wagon. The limousine is newer than the minivan. The tractor is the second-oldest. The bus is the third-newest. The limousine is the third-oldest. The sedan is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The minivan is the second-oldest.", "B) The motorcyle is the second-oldest.", "C) The limousine is the second-oldest.", "D) The sedan is the second-oldest.", "E) The bus is the second-oldest.", "F) The station wagon is the second-oldest.", "G) The tractor is the second-oldest." ], "answer": "G" }, { "id": "logical_deduction_855", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: apples, plums, mangoes, watermelons, oranges, kiwis, and loquats. The watermelons are less expensive than the plums. The watermelons are more expensive than the oranges. The kiwis are less expensive than the oranges. The apples are more expensive than the loquats. The plums are less expensive than the mangoes. The mangoes are the third-most expensive.", "question": "Which of the following is true?", "options": [ "A) The apples are the third-cheapest.", "B) The plums are the third-cheapest.", "C) The mangoes are the third-cheapest.", "D) The watermelons are the third-cheapest.", "E) The oranges are the third-cheapest.", "F) The kiwis are the third-cheapest.", "G) The loquats are the third-cheapest." ], "answer": "D" }, { "id": "logical_deduction_856", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: mangoes, cantaloupes, apples, plums, loquats, watermelons, and peaches. The plums are more expensive than the mangoes. The watermelons are more expensive than the loquats. The loquats are the second-cheapest. The plums are less expensive than the peaches. The mangoes are the fourth-most expensive. The peaches are less expensive than the cantaloupes.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the third-most expensive.", "B) The cantaloupes are the third-most expensive.", "C) The apples are the third-most expensive.", "D) The plums are the third-most expensive.", "E) The loquats are the third-most expensive.", "F) The watermelons are the third-most expensive.", "G) The peaches are the third-most expensive." ], "answer": "D" }, { "id": "logical_deduction_857", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: kiwis, plums, mangoes, watermelons, pears, peaches, and oranges. The pears are the third-cheapest. The kiwis are the second-most expensive. The pears are more expensive than the plums. The oranges are less expensive than the kiwis. The mangoes are the third-most expensive. The peaches are the second-cheapest.", "question": "Which of the following is true?", "options": [ "A) The kiwis are the third-cheapest.", "B) The plums are the third-cheapest.", "C) The mangoes are the third-cheapest.", "D) The watermelons are the third-cheapest.", "E) The pears are the third-cheapest.", "F) The peaches are the third-cheapest.", "G) The oranges are the third-cheapest." ], "answer": "E" }, { "id": "logical_deduction_858", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a cardinal, a crow, a hummingbird, a blue jay, an owl, a robin, and a quail. The cardinal is to the right of the crow. The quail is the third from the left. The owl is to the right of the robin. The hummingbird is to the right of the blue jay. The cardinal is the second from the left. The owl is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the second from the right.", "B) The crow is the second from the right.", "C) The hummingbird is the second from the right.", "D) The blue jay is the second from the right.", "E) The owl is the second from the right.", "F) The robin is the second from the right.", "G) The quail is the second from the right." ], "answer": "D" }, { "id": "logical_deduction_859", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: oranges, plums, loquats, apples, kiwis, cantaloupes, and peaches. The loquats are less expensive than the kiwis. The plums are the cheapest. The loquats are the fourth-most expensive. The peaches are less expensive than the oranges. The peaches are more expensive than the kiwis. The apples are the second-cheapest.", "question": "Which of the following is true?", "options": [ "A) The oranges are the cheapest.", "B) The plums are the cheapest.", "C) The loquats are the cheapest.", "D) The apples are the cheapest.", "E) The kiwis are the cheapest.", "F) The cantaloupes are the cheapest.", "G) The peaches are the cheapest." ], "answer": "B" }, { "id": "logical_deduction_860", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a hatchback, a sedan, a station wagon, a convertible, a tractor, a bus, and a truck. The convertible is the second-newest. The station wagon is newer than the truck. The bus is newer than the hatchback. The truck is the fourth-newest. The station wagon is older than the tractor. The sedan is the oldest.", "question": "Which of the following is true?", "options": [ "A) The hatchback is the third-newest.", "B) The sedan is the third-newest.", "C) The station wagon is the third-newest.", "D) The convertible is the third-newest.", "E) The tractor is the third-newest.", "F) The bus is the third-newest.", "G) The truck is the third-newest." ], "answer": "C" }, { "id": "logical_deduction_861", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a red book, a purple book, a green book, a white book, an orange book, a blue book, and a gray book. The green book is to the left of the white book. The red book is to the left of the purple book. The red book is to the right of the orange book. The gray book is the second from the left. The purple book is to the left of the green book. The blue book is the fourth from the left.", "question": "Which of the following is true?", "options": [ "A) The red book is the leftmost.", "B) The purple book is the leftmost.", "C) The green book is the leftmost.", "D) The white book is the leftmost.", "E) The orange book is the leftmost.", "F) The blue book is the leftmost.", "G) The gray book is the leftmost." ], "answer": "E" }, { "id": "logical_deduction_862", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: cantaloupes, plums, mangoes, apples, loquats, pears, and peaches. The apples are less expensive than the cantaloupes. The apples are more expensive than the peaches. The mangoes are the fourth-most expensive. The peaches are more expensive than the plums. The pears are the third-most expensive. The loquats are the third-cheapest.", "question": "Which of the following is true?", "options": [ "A) The cantaloupes are the most expensive.", "B) The plums are the most expensive.", "C) The mangoes are the most expensive.", "D) The apples are the most expensive.", "E) The loquats are the most expensive.", "F) The pears are the most expensive.", "G) The peaches are the most expensive." ], "answer": "A" }, { "id": "logical_deduction_863", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a yellow book, a black book, a green book, a red book, a purple book, a white book, and a blue book. The green book is to the left of the yellow book. The red book is the rightmost. The green book is to the right of the blue book. The white book is to the left of the blue book. The yellow book is the fourth from the left. The black book is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the rightmost.", "B) The black book is the rightmost.", "C) The green book is the rightmost.", "D) The red book is the rightmost.", "E) The purple book is the rightmost.", "F) The white book is the rightmost.", "G) The blue book is the rightmost." ], "answer": "D" }, { "id": "logical_deduction_864", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a station wagon, a truck, a sedan, a limousine, a convertible, a bus, and a hatchback. The limousine is the newest. The bus is the third-newest. The bus is older than the convertible. The sedan is the third-oldest. The station wagon is older than the truck. The hatchback is the oldest.", "question": "Which of the following is true?", "options": [ "A) The station wagon is the newest.", "B) The truck is the newest.", "C) The sedan is the newest.", "D) The limousine is the newest.", "E) The convertible is the newest.", "F) The bus is the newest.", "G) The hatchback is the newest." ], "answer": "D" }, { "id": "logical_deduction_865", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Mel, Mya, Eve, Rob, Ada, and Dan. Rob finished first. Eve finished last. Dan finished above Ada. Mel finished above Mya. Joe finished second-to-last. Mya finished third.", "question": "Which of the following is true?", "options": [ "A) Joe finished fourth.", "B) Mel finished fourth.", "C) Mya finished fourth.", "D) Eve finished fourth.", "E) Rob finished fourth.", "F) Ada finished fourth.", "G) Dan finished fourth." ], "answer": "G" }, { "id": "logical_deduction_866", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a raven, a hummingbird, a robin, a crow, a quail, a blue jay, and a cardinal. The hummingbird is to the left of the crow. The quail is to the right of the crow. The raven is to the left of the robin. The blue jay is the third from the right. The cardinal is the leftmost. The hummingbird is the fourth from the left.", "question": "Which of the following is true?", "options": [ "A) The raven is the second from the right.", "B) The hummingbird is the second from the right.", "C) The robin is the second from the right.", "D) The crow is the second from the right.", "E) The quail is the second from the right.", "F) The blue jay is the second from the right.", "G) The cardinal is the second from the right." ], "answer": "D" }, { "id": "logical_deduction_867", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Ana, Eli, Mya, Amy, Joe, Mel, and Ada. Ada finished above Mel. Ada finished third-to-last. Amy finished above Ana. Mya finished second-to-last. Joe finished above Amy. Eli finished below Ana.", "question": "Which of the following is true?", "options": [ "A) Ana finished second.", "B) Eli finished second.", "C) Mya finished second.", "D) Amy finished second.", "E) Joe finished second.", "F) Mel finished second.", "G) Ada finished second." ], "answer": "D" }, { "id": "logical_deduction_868", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a blue jay, an owl, a hawk, a falcon, a hummingbird, a robin, and a quail. The hummingbird is to the left of the falcon. The owl is the second from the left. The robin is to the left of the hummingbird. The quail is to the right of the falcon. The robin is to the right of the owl. The blue jay is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the fourth from the left.", "B) The owl is the fourth from the left.", "C) The hawk is the fourth from the left.", "D) The falcon is the fourth from the left.", "E) The hummingbird is the fourth from the left.", "F) The robin is the fourth from the left.", "G) The quail is the fourth from the left." ], "answer": "E" }, { "id": "logical_deduction_869", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a green book, a brown book, a white book, a black book, an orange book, a purple book, and a yellow book. The purple book is to the left of the yellow book. The green book is to the left of the white book. The brown book is to the right of the yellow book. The white book is the fourth from the left. The green book is to the right of the orange book. The black book is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The green book is the fourth from the left.", "B) The brown book is the fourth from the left.", "C) The white book is the fourth from the left.", "D) The black book is the fourth from the left.", "E) The orange book is the fourth from the left.", "F) The purple book is the fourth from the left.", "G) The yellow book is the fourth from the left." ], "answer": "C" }, { "id": "logical_deduction_870", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a yellow book, a black book, a green book, a red book, a purple book, a white book, and a blue book. The green book is to the left of the yellow book. The red book is the rightmost. The green book is to the right of the blue book. The white book is to the left of the blue book. The yellow book is the fourth from the left. The black book is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the second from the left.", "B) The black book is the second from the left.", "C) The green book is the second from the left.", "D) The red book is the second from the left.", "E) The purple book is the second from the left.", "F) The white book is the second from the left.", "G) The blue book is the second from the left." ], "answer": "G" }, { "id": "logical_deduction_871", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Amy, Eve, Ada, Rob, Dan, Mel, and Joe. Joe finished third. Dan finished last. Eve finished first. Mel finished below Rob. Ada finished above Joe. Rob finished third-to-last.", "question": "Which of the following is true?", "options": [ "A) Amy finished second.", "B) Eve finished second.", "C) Ada finished second.", "D) Rob finished second.", "E) Dan finished second.", "F) Mel finished second.", "G) Joe finished second." ], "answer": "C" }, { "id": "logical_deduction_872", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Amy, Eve, Ada, Rob, Dan, Mel, and Joe. Joe finished third. Dan finished last. Eve finished first. Mel finished below Rob. Ada finished above Joe. Rob finished third-to-last.", "question": "Which of the following is true?", "options": [ "A) Amy finished second-to-last.", "B) Eve finished second-to-last.", "C) Ada finished second-to-last.", "D) Rob finished second-to-last.", "E) Dan finished second-to-last.", "F) Mel finished second-to-last.", "G) Joe finished second-to-last." ], "answer": "F" }, { "id": "logical_deduction_873", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: loquats, cantaloupes, watermelons, apples, oranges, pears, and mangoes. The oranges are the second-cheapest. The apples are less expensive than the pears. The mangoes are more expensive than the cantaloupes. The mangoes are the third-cheapest. The watermelons are the second-most expensive. The loquats are the third-most expensive.", "question": "Which of the following is true?", "options": [ "A) The loquats are the second-cheapest.", "B) The cantaloupes are the second-cheapest.", "C) The watermelons are the second-cheapest.", "D) The apples are the second-cheapest.", "E) The oranges are the second-cheapest.", "F) The pears are the second-cheapest.", "G) The mangoes are the second-cheapest." ], "answer": "E" }, { "id": "logical_deduction_874", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: plums, kiwis, pears, mangoes, apples, oranges, and loquats. The pears are less expensive than the oranges. The mangoes are less expensive than the kiwis. The plums are the second-most expensive. The loquats are more expensive than the apples. The kiwis are less expensive than the apples. The loquats are the fourth-most expensive.", "question": "Which of the following is true?", "options": [ "A) The plums are the second-most expensive.", "B) The kiwis are the second-most expensive.", "C) The pears are the second-most expensive.", "D) The mangoes are the second-most expensive.", "E) The apples are the second-most expensive.", "F) The oranges are the second-most expensive.", "G) The loquats are the second-most expensive." ], "answer": "A" }, { "id": "logical_deduction_875", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: plums, kiwis, cantaloupes, pears, watermelons, apples, and loquats. The watermelons are more expensive than the cantaloupes. The apples are less expensive than the cantaloupes. The watermelons are the second-most expensive. The loquats are less expensive than the kiwis. The apples are more expensive than the loquats. The loquats are the third-cheapest. The plums are the cheapest.", "question": "Which of the following is true?", "options": [ "A) The plums are the second-most expensive.", "B) The kiwis are the second-most expensive.", "C) The cantaloupes are the second-most expensive.", "D) The pears are the second-most expensive.", "E) The watermelons are the second-most expensive.", "F) The apples are the second-most expensive.", "G) The loquats are the second-most expensive." ], "answer": "E" }, { "id": "logical_deduction_876", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a station wagon, a truck, a sedan, a limousine, a convertible, a bus, and a hatchback. The limousine is the newest. The bus is the third-newest. The bus is older than the convertible. The sedan is the third-oldest. The station wagon is older than the truck. The hatchback is the oldest.", "question": "Which of the following is true?", "options": [ "A) The station wagon is the second-newest.", "B) The truck is the second-newest.", "C) The sedan is the second-newest.", "D) The limousine is the second-newest.", "E) The convertible is the second-newest.", "F) The bus is the second-newest.", "G) The hatchback is the second-newest." ], "answer": "E" }, { "id": "logical_deduction_877", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hummingbird, a cardinal, a blue jay, an owl, a raven, a quail, and a robin. The hummingbird is to the left of the quail. The robin is to the left of the cardinal. The blue jay is the leftmost. The cardinal is the fourth from the left. The raven is the third from the right. The owl is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The hummingbird is the second from the left.", "B) The cardinal is the second from the left.", "C) The blue jay is the second from the left.", "D) The owl is the second from the left.", "E) The raven is the second from the left.", "F) The quail is the second from the left.", "G) The robin is the second from the left." ], "answer": "G" }, { "id": "logical_deduction_878", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a falcon, a crow, a hawk, a hummingbird, a blue jay, a robin, and a raven. The blue jay is to the right of the robin. The hawk is to the left of the hummingbird. The robin is the second from the right. The falcon is the third from the left. The crow is to the right of the hummingbird. The raven is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The falcon is the leftmost.", "B) The crow is the leftmost.", "C) The hawk is the leftmost.", "D) The hummingbird is the leftmost.", "E) The blue jay is the leftmost.", "F) The robin is the leftmost.", "G) The raven is the leftmost." ], "answer": "C" }, { "id": "logical_deduction_879", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a truck, a convertible, a bus, a station wagon, a minivan, a sedan, and a motorcyle. The bus is newer than the sedan. The motorcyle is older than the truck. The station wagon is older than the motorcyle. The sedan is newer than the convertible. The station wagon is newer than the bus. The minivan is the fourth-newest.", "question": "Which of the following is true?", "options": [ "A) The truck is the third-oldest.", "B) The convertible is the third-oldest.", "C) The bus is the third-oldest.", "D) The station wagon is the third-oldest.", "E) The minivan is the third-oldest.", "F) The sedan is the third-oldest.", "G) The motorcyle is the third-oldest." ], "answer": "C" }, { "id": "logical_deduction_880", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a raven, a cardinal, a falcon, an owl, a blue jay, a quail, and a robin. The owl is the second from the right. The cardinal is the fourth from the left. The falcon is to the left of the blue jay. The quail is to the left of the falcon. The raven is the second from the left. The robin is to the left of the quail.", "question": "Which of the following is true?", "options": [ "A) The raven is the rightmost.", "B) The cardinal is the rightmost.", "C) The falcon is the rightmost.", "D) The owl is the rightmost.", "E) The blue jay is the rightmost.", "F) The quail is the rightmost.", "G) The robin is the rightmost." ], "answer": "E" }, { "id": "logical_deduction_881", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: loquats, cantaloupes, watermelons, apples, oranges, pears, and mangoes. The oranges are the second-cheapest. The apples are less expensive than the pears. The mangoes are more expensive than the cantaloupes. The mangoes are the third-cheapest. The watermelons are the second-most expensive. The loquats are the third-most expensive.", "question": "Which of the following is true?", "options": [ "A) The loquats are the cheapest.", "B) The cantaloupes are the cheapest.", "C) The watermelons are the cheapest.", "D) The apples are the cheapest.", "E) The oranges are the cheapest.", "F) The pears are the cheapest.", "G) The mangoes are the cheapest." ], "answer": "B" }, { "id": "logical_deduction_882", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Eve, Mel, Amy, Mya, Dan, and Rob. Amy finished above Dan. Rob finished third. Mel finished below Rob. Dan finished second-to-last. Eve finished above Amy. Mel finished above Dan. Joe finished fourth.", "question": "Which of the following is true?", "options": [ "A) Joe finished second.", "B) Eve finished second.", "C) Mel finished second.", "D) Amy finished second.", "E) Mya finished second.", "F) Dan finished second.", "G) Rob finished second." ], "answer": "D" }, { "id": "logical_deduction_883", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a yellow book, a black book, a green book, a red book, a purple book, a white book, and a blue book. The green book is to the left of the yellow book. The red book is the rightmost. The green book is to the right of the blue book. The white book is to the left of the blue book. The yellow book is the fourth from the left. The black book is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the leftmost.", "B) The black book is the leftmost.", "C) The green book is the leftmost.", "D) The red book is the leftmost.", "E) The purple book is the leftmost.", "F) The white book is the leftmost.", "G) The blue book is the leftmost." ], "answer": "F" }, { "id": "logical_deduction_884", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: apples, plums, mangoes, watermelons, oranges, kiwis, and loquats. The watermelons are less expensive than the plums. The watermelons are more expensive than the oranges. The kiwis are less expensive than the oranges. The apples are more expensive than the loquats. The plums are less expensive than the mangoes. The mangoes are the third-most expensive.", "question": "Which of the following is true?", "options": [ "A) The apples are the fourth-most expensive.", "B) The plums are the fourth-most expensive.", "C) The mangoes are the fourth-most expensive.", "D) The watermelons are the fourth-most expensive.", "E) The oranges are the fourth-most expensive.", "F) The kiwis are the fourth-most expensive.", "G) The loquats are the fourth-most expensive." ], "answer": "B" }, { "id": "logical_deduction_885", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a purple book, a brown book, a red book, a blue book, a gray book, a black book, and a green book. The brown book is to the left of the green book. The gray book is the second from the left. The black book is to the left of the gray book. The blue book is to the left of the red book. The blue book is the second from the right. The green book is to the left of the purple book.", "question": "Which of the following is true?", "options": [ "A) The purple book is the rightmost.", "B) The brown book is the rightmost.", "C) The red book is the rightmost.", "D) The blue book is the rightmost.", "E) The gray book is the rightmost.", "F) The black book is the rightmost.", "G) The green book is the rightmost." ], "answer": "C" }, { "id": "logical_deduction_886", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a blue jay, an owl, a hawk, a falcon, a hummingbird, a robin, and a quail. The hummingbird is to the left of the falcon. The owl is the second from the left. The robin is to the left of the hummingbird. The quail is to the right of the falcon. The robin is to the right of the owl. The blue jay is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the second from the right.", "B) The owl is the second from the right.", "C) The hawk is the second from the right.", "D) The falcon is the second from the right.", "E) The hummingbird is the second from the right.", "F) The robin is the second from the right.", "G) The quail is the second from the right." ], "answer": "D" }, { "id": "logical_deduction_887", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Ana, Eve, Ada, Dan, Rob, Amy, and Joe. Dan finished third. Ana finished above Ada. Amy finished last. Dan finished below Rob. Eve finished below Ada. Rob finished below Joe.", "question": "Which of the following is true?", "options": [ "A) Ana finished first.", "B) Eve finished first.", "C) Ada finished first.", "D) Dan finished first.", "E) Rob finished first.", "F) Amy finished first.", "G) Joe finished first." ], "answer": "G" }, { "id": "logical_deduction_888", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a limousine, a minivan, a bus, a station wagon, a tractor, a truck, and a hatchback. The truck is the oldest. The tractor is older than the minivan. The minivan is the third-newest. The limousine is the fourth-newest. The station wagon is newer than the hatchback. The bus is the second-oldest.", "question": "Which of the following is true?", "options": [ "A) The limousine is the second-newest.", "B) The minivan is the second-newest.", "C) The bus is the second-newest.", "D) The station wagon is the second-newest.", "E) The tractor is the second-newest.", "F) The truck is the second-newest.", "G) The hatchback is the second-newest." ], "answer": "G" }, { "id": "logical_deduction_889", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Rob, Eli, Dan, Mya, Ada, and Ana. Joe finished above Ana. Ana finished second-to-last. Mya finished fourth. Dan finished third. Ada finished second. Eli finished third-to-last.", "question": "Which of the following is true?", "options": [ "A) Joe finished third.", "B) Rob finished third.", "C) Eli finished third.", "D) Dan finished third.", "E) Mya finished third.", "F) Ada finished third.", "G) Ana finished third." ], "answer": "D" }, { "id": "logical_deduction_890", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: an orange book, a green book, a gray book, a purple book, a black book, a yellow book, and a white book. The orange book is to the right of the gray book. The yellow book is the third from the right. The purple book is the second from the left. The yellow book is to the right of the orange book. The white book is the second from the right. The black book is the leftmost.", "question": "Which of the following is true?", "options": [ "A) The orange book is the second from the right.", "B) The green book is the second from the right.", "C) The gray book is the second from the right.", "D) The purple book is the second from the right.", "E) The black book is the second from the right.", "F) The yellow book is the second from the right.", "G) The white book is the second from the right." ], "answer": "G" }, { "id": "logical_deduction_891", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hummingbird, a cardinal, a blue jay, an owl, a raven, a quail, and a robin. The hummingbird is to the left of the quail. The robin is to the left of the cardinal. The blue jay is the leftmost. The cardinal is the fourth from the left. The raven is the third from the right. The owl is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The hummingbird is the third from the right.", "B) The cardinal is the third from the right.", "C) The blue jay is the third from the right.", "D) The owl is the third from the right.", "E) The raven is the third from the right.", "F) The quail is the third from the right.", "G) The robin is the third from the right." ], "answer": "E" }, { "id": "logical_deduction_892", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Eve, Ana, Amy, Dan, Eli, Rob, and Mya. Mya finished above Eli. Eve finished below Rob. Amy finished second. Rob finished below Dan. Ana finished second-to-last. Dan finished fourth.", "question": "Which of the following is true?", "options": [ "A) Eve finished second.", "B) Ana finished second.", "C) Amy finished second.", "D) Dan finished second.", "E) Eli finished second.", "F) Rob finished second.", "G) Mya finished second." ], "answer": "C" }, { "id": "logical_deduction_893", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Ana, Rob, Eve, Mel, Mya, Joe, and Eli. Joe finished second-to-last. Eli finished first. Mya finished below Joe. Mel finished second. Rob finished third-to-last. Ana finished third.", "question": "Which of the following is true?", "options": [ "A) Ana finished second-to-last.", "B) Rob finished second-to-last.", "C) Eve finished second-to-last.", "D) Mel finished second-to-last.", "E) Mya finished second-to-last.", "F) Joe finished second-to-last.", "G) Eli finished second-to-last." ], "answer": "F" }, { "id": "logical_deduction_894", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a limousine, a truck, a minivan, a tractor, a hatchback, a bus, and a convertible. The convertible is the second-oldest. The tractor is the fourth-newest. The minivan is older than the truck. The truck is older than the limousine. The hatchback is the third-oldest. The bus is newer than the limousine.", "question": "Which of the following is true?", "options": [ "A) The limousine is the fourth-newest.", "B) The truck is the fourth-newest.", "C) The minivan is the fourth-newest.", "D) The tractor is the fourth-newest.", "E) The hatchback is the fourth-newest.", "F) The bus is the fourth-newest.", "G) The convertible is the fourth-newest." ], "answer": "D" }, { "id": "logical_deduction_895", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a truck, a motorcyle, a sedan, a minivan, a station wagon, a hatchback, and a tractor. The hatchback is newer than the truck. The sedan is the third-newest. The station wagon is the newest. The motorcyle is older than the truck. The minivan is newer than the sedan. The tractor is the third-oldest.", "question": "Which of the following is true?", "options": [ "A) The truck is the third-newest.", "B) The motorcyle is the third-newest.", "C) The sedan is the third-newest.", "D) The minivan is the third-newest.", "E) The station wagon is the third-newest.", "F) The hatchback is the third-newest.", "G) The tractor is the third-newest." ], "answer": "C" }, { "id": "logical_deduction_896", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: apples, pears, mangoes, oranges, watermelons, peaches, and cantaloupes. The pears are more expensive than the oranges. The oranges are more expensive than the cantaloupes. The peaches are less expensive than the cantaloupes. The apples are the third-cheapest. The watermelons are the second-most expensive. The mangoes are the fourth-most expensive.", "question": "Which of the following is true?", "options": [ "A) The apples are the third-most expensive.", "B) The pears are the third-most expensive.", "C) The mangoes are the third-most expensive.", "D) The oranges are the third-most expensive.", "E) The watermelons are the third-most expensive.", "F) The peaches are the third-most expensive.", "G) The cantaloupes are the third-most expensive." ], "answer": "D" }, { "id": "logical_deduction_897", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: oranges, plums, loquats, apples, kiwis, cantaloupes, and peaches. The loquats are less expensive than the kiwis. The plums are the cheapest. The loquats are the fourth-most expensive. The peaches are less expensive than the oranges. The peaches are more expensive than the kiwis. The apples are the second-cheapest.", "question": "Which of the following is true?", "options": [ "A) The oranges are the second-cheapest.", "B) The plums are the second-cheapest.", "C) The loquats are the second-cheapest.", "D) The apples are the second-cheapest.", "E) The kiwis are the second-cheapest.", "F) The cantaloupes are the second-cheapest.", "G) The peaches are the second-cheapest." ], "answer": "D" }, { "id": "logical_deduction_898", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: oranges, loquats, apples, kiwis, mangoes, plums, and peaches. The apples are the second-cheapest. The peaches are the cheapest. The plums are the fourth-most expensive. The loquats are the third-cheapest. The kiwis are more expensive than the mangoes. The oranges are less expensive than the mangoes.", "question": "Which of the following is true?", "options": [ "A) The oranges are the second-most expensive.", "B) The loquats are the second-most expensive.", "C) The apples are the second-most expensive.", "D) The kiwis are the second-most expensive.", "E) The mangoes are the second-most expensive.", "F) The plums are the second-most expensive.", "G) The peaches are the second-most expensive." ], "answer": "E" }, { "id": "logical_deduction_899", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a yellow book, a brown book, a white book, an orange book, a black book, a blue book, and a purple book. The black book is the second from the left. The white book is to the right of the orange book. The black book is to the right of the brown book. The yellow book is the third from the right. The purple book is the third from the left. The orange book is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the third from the right.", "B) The brown book is the third from the right.", "C) The white book is the third from the right.", "D) The orange book is the third from the right.", "E) The black book is the third from the right.", "F) The blue book is the third from the right.", "G) The purple book is the third from the right." ], "answer": "A" }, { "id": "logical_deduction_900", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hawk, a raven, a falcon, a crow, a hummingbird, a robin, and a cardinal. The hawk is the second from the right. The robin is to the left of the raven. The raven is to the left of the crow. The falcon is to the left of the cardinal. The hummingbird is the second from the left. The falcon is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The hawk is the fourth from the left.", "B) The raven is the fourth from the left.", "C) The falcon is the fourth from the left.", "D) The crow is the fourth from the left.", "E) The hummingbird is the fourth from the left.", "F) The robin is the fourth from the left.", "G) The cardinal is the fourth from the left." ], "answer": "D" }, { "id": "logical_deduction_901", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Eve, Mel, Amy, Mya, Dan, and Rob. Amy finished above Dan. Rob finished third. Mel finished below Rob. Dan finished second-to-last. Eve finished above Amy. Mel finished above Dan. Joe finished fourth.", "question": "Which of the following is true?", "options": [ "A) Joe finished last.", "B) Eve finished last.", "C) Mel finished last.", "D) Amy finished last.", "E) Mya finished last.", "F) Dan finished last.", "G) Rob finished last." ], "answer": "E" }, { "id": "logical_deduction_902", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: oranges, watermelons, peaches, pears, kiwis, cantaloupes, and plums. The kiwis are the second-cheapest. The plums are the cheapest. The cantaloupes are less expensive than the watermelons. The oranges are the most expensive. The pears are the third-cheapest. The peaches are the third-most expensive.", "question": "Which of the following is true?", "options": [ "A) The oranges are the third-most expensive.", "B) The watermelons are the third-most expensive.", "C) The peaches are the third-most expensive.", "D) The pears are the third-most expensive.", "E) The kiwis are the third-most expensive.", "F) The cantaloupes are the third-most expensive.", "G) The plums are the third-most expensive." ], "answer": "C" }, { "id": "logical_deduction_903", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: an orange book, a green book, a gray book, a purple book, a black book, a yellow book, and a white book. The orange book is to the right of the gray book. The yellow book is the third from the right. The purple book is the second from the left. The yellow book is to the right of the orange book. The white book is the second from the right. The black book is the leftmost.", "question": "Which of the following is true?", "options": [ "A) The orange book is the third from the left.", "B) The green book is the third from the left.", "C) The gray book is the third from the left.", "D) The purple book is the third from the left.", "E) The black book is the third from the left.", "F) The yellow book is the third from the left.", "G) The white book is the third from the left." ], "answer": "C" }, { "id": "logical_deduction_904", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a blue jay, a falcon, a raven, a crow, a robin, an owl, and a hummingbird. The robin is to the left of the owl. The crow is the rightmost. The hummingbird is the fourth from the left. The owl is the third from the right. The blue jay is to the left of the robin. The raven is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the third from the right.", "B) The falcon is the third from the right.", "C) The raven is the third from the right.", "D) The crow is the third from the right.", "E) The robin is the third from the right.", "F) The owl is the third from the right.", "G) The hummingbird is the third from the right." ], "answer": "F" }, { "id": "logical_deduction_905", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a blue book, a yellow book, a brown book, a gray book, a green book, a purple book, and an orange book. The blue book is to the right of the brown book. The gray book is the rightmost. The purple book is to the left of the green book. The green book is to the left of the yellow book. The brown book is the second from the left. The purple book is to the right of the blue book.", "question": "Which of the following is true?", "options": [ "A) The blue book is the second from the left.", "B) The yellow book is the second from the left.", "C) The brown book is the second from the left.", "D) The gray book is the second from the left.", "E) The green book is the second from the left.", "F) The purple book is the second from the left.", "G) The orange book is the second from the left." ], "answer": "C" }, { "id": "logical_deduction_906", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a motorcyle, a sedan, a station wagon, a tractor, a minivan, a bus, and a truck. The motorcyle is older than the minivan. The minivan is older than the tractor. The bus is newer than the truck. The station wagon is the third-newest. The sedan is older than the truck. The tractor is older than the sedan.", "question": "Which of the following is true?", "options": [ "A) The motorcyle is the newest.", "B) The sedan is the newest.", "C) The station wagon is the newest.", "D) The tractor is the newest.", "E) The minivan is the newest.", "F) The bus is the newest.", "G) The truck is the newest." ], "answer": "F" }, { "id": "logical_deduction_907", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a minivan, a bus, a limousine, a truck, a convertible, a tractor, and a motorcyle. The limousine is older than the minivan. The tractor is older than the limousine. The bus is the newest. The truck is the third-newest. The motorcyle is the fourth-newest. The convertible is older than the tractor.", "question": "Which of the following is true?", "options": [ "A) The minivan is the oldest.", "B) The bus is the oldest.", "C) The limousine is the oldest.", "D) The truck is the oldest.", "E) The convertible is the oldest.", "F) The tractor is the oldest.", "G) The motorcyle is the oldest." ], "answer": "E" }, { "id": "logical_deduction_908", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a white book, a gray book, a yellow book, a purple book, a red book, a black book, and a green book. The black book is the second from the right. The red book is to the left of the green book. The red book is the second from the left. The gray book is the third from the right. The yellow book is the third from the left. The white book is the fourth from the left.", "question": "Which of the following is true?", "options": [ "A) The white book is the third from the left.", "B) The gray book is the third from the left.", "C) The yellow book is the third from the left.", "D) The purple book is the third from the left.", "E) The red book is the third from the left.", "F) The black book is the third from the left.", "G) The green book is the third from the left." ], "answer": "C" }, { "id": "logical_deduction_909", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a limousine, a convertible, a station wagon, a minivan, a bus, a tractor, and a truck. The minivan is the oldest. The truck is older than the station wagon. The truck is newer than the limousine. The bus is newer than the convertible. The bus is older than the tractor. The limousine is newer than the tractor.", "question": "Which of the following is true?", "options": [ "A) The limousine is the second-newest.", "B) The convertible is the second-newest.", "C) The station wagon is the second-newest.", "D) The minivan is the second-newest.", "E) The bus is the second-newest.", "F) The tractor is the second-newest.", "G) The truck is the second-newest." ], "answer": "G" }, { "id": "logical_deduction_910", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a green book, a brown book, a white book, a black book, an orange book, a purple book, and a yellow book. The purple book is to the left of the yellow book. The green book is to the left of the white book. The brown book is to the right of the yellow book. The white book is the fourth from the left. The green book is to the right of the orange book. The black book is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The green book is the rightmost.", "B) The brown book is the rightmost.", "C) The white book is the rightmost.", "D) The black book is the rightmost.", "E) The orange book is the rightmost.", "F) The purple book is the rightmost.", "G) The yellow book is the rightmost." ], "answer": "B" }, { "id": "logical_deduction_911", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: kiwis, loquats, pears, peaches, mangoes, plums, and apples. The loquats are the fourth-most expensive. The peaches are less expensive than the mangoes. The apples are more expensive than the pears. The peaches are the second-most expensive. The plums are the cheapest. The pears are more expensive than the kiwis.", "question": "Which of the following is true?", "options": [ "A) The kiwis are the fourth-most expensive.", "B) The loquats are the fourth-most expensive.", "C) The pears are the fourth-most expensive.", "D) The peaches are the fourth-most expensive.", "E) The mangoes are the fourth-most expensive.", "F) The plums are the fourth-most expensive.", "G) The apples are the fourth-most expensive." ], "answer": "B" }, { "id": "logical_deduction_912", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a yellow book, a red book, a gray book, a blue book, a white book, an orange book, and a purple book. The red book is the third from the right. The white book is to the right of the orange book. The purple book is the third from the left. The yellow book is to the right of the purple book. The blue book is to the right of the red book. The blue book is to the left of the gray book.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the third from the right.", "B) The red book is the third from the right.", "C) The gray book is the third from the right.", "D) The blue book is the third from the right.", "E) The white book is the third from the right.", "F) The orange book is the third from the right.", "G) The purple book is the third from the right." ], "answer": "B" }, { "id": "logical_deduction_913", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: an orange book, a red book, a brown book, a blue book, a black book, a gray book, and a white book. The white book is the leftmost. The red book is to the right of the blue book. The orange book is the second from the right. The gray book is the fourth from the left. The black book is the rightmost. The gray book is to the right of the red book.", "question": "Which of the following is true?", "options": [ "A) The orange book is the third from the left.", "B) The red book is the third from the left.", "C) The brown book is the third from the left.", "D) The blue book is the third from the left.", "E) The black book is the third from the left.", "F) The gray book is the third from the left.", "G) The white book is the third from the left." ], "answer": "B" }, { "id": "logical_deduction_914", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a brown book, a gray book, an orange book, a green book, a black book, a purple book, and a yellow book. The purple book is the leftmost. The brown book is to the right of the yellow book. The green book is to the left of the orange book. The orange book is to the left of the gray book. The black book is the third from the left. The green book is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The brown book is the leftmost.", "B) The gray book is the leftmost.", "C) The orange book is the leftmost.", "D) The green book is the leftmost.", "E) The black book is the leftmost.", "F) The purple book is the leftmost.", "G) The yellow book is the leftmost." ], "answer": "F" }, { "id": "logical_deduction_915", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: loquats, watermelons, oranges, kiwis, apples, plums, and peaches. The plums are the cheapest. The watermelons are the third-most expensive. The apples are more expensive than the oranges. The kiwis are the most expensive. The apples are less expensive than the peaches. The loquats are the third-cheapest.", "question": "Which of the following is true?", "options": [ "A) The loquats are the third-most expensive.", "B) The watermelons are the third-most expensive.", "C) The oranges are the third-most expensive.", "D) The kiwis are the third-most expensive.", "E) The apples are the third-most expensive.", "F) The plums are the third-most expensive.", "G) The peaches are the third-most expensive." ], "answer": "B" }, { "id": "logical_deduction_916", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hawk, a raven, a hummingbird, a falcon, an owl, a quail, and a cardinal. The quail is to the left of the hummingbird. The raven is to the right of the hummingbird. The cardinal is the second from the left. The owl is to the left of the cardinal. The raven is the third from the right. The falcon is the rightmost.", "question": "Which of the following is true?", "options": [ "A) The hawk is the third from the right.", "B) The raven is the third from the right.", "C) The hummingbird is the third from the right.", "D) The falcon is the third from the right.", "E) The owl is the third from the right.", "F) The quail is the third from the right.", "G) The cardinal is the third from the right." ], "answer": "B" }, { "id": "logical_deduction_917", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a red book, a white book, a purple book, a black book, a gray book, an orange book, and a blue book. The red book is to the right of the white book. The gray book is to the left of the orange book. The gray book is to the right of the blue book. The red book is the second from the right. The black book is the fourth from the left. The orange book is to the left of the white book.", "question": "Which of the following is true?", "options": [ "A) The red book is the leftmost.", "B) The white book is the leftmost.", "C) The purple book is the leftmost.", "D) The black book is the leftmost.", "E) The gray book is the leftmost.", "F) The orange book is the leftmost.", "G) The blue book is the leftmost." ], "answer": "G" }, { "id": "logical_deduction_918", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Eli, Eve, Mel, Joe, Mya, Rob, and Ada. Ada finished above Mya. Eli finished below Joe. Eli finished above Eve. Ada finished second-to-last. Mel finished third. Rob finished fourth.", "question": "Which of the following is true?", "options": [ "A) Eli finished fourth.", "B) Eve finished fourth.", "C) Mel finished fourth.", "D) Joe finished fourth.", "E) Mya finished fourth.", "F) Rob finished fourth.", "G) Ada finished fourth." ], "answer": "F" }, { "id": "logical_deduction_919", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: mangoes, cantaloupes, apples, plums, loquats, watermelons, and peaches. The plums are more expensive than the mangoes. The watermelons are more expensive than the loquats. The loquats are the second-cheapest. The plums are less expensive than the peaches. The mangoes are the fourth-most expensive. The peaches are less expensive than the cantaloupes.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the second-cheapest.", "B) The cantaloupes are the second-cheapest.", "C) The apples are the second-cheapest.", "D) The plums are the second-cheapest.", "E) The loquats are the second-cheapest.", "F) The watermelons are the second-cheapest.", "G) The peaches are the second-cheapest." ], "answer": "E" }, { "id": "logical_deduction_920", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a cardinal, a crow, a hummingbird, a blue jay, an owl, a robin, and a quail. The cardinal is to the right of the crow. The quail is the third from the left. The owl is to the right of the robin. The hummingbird is to the right of the blue jay. The cardinal is the second from the left. The owl is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the rightmost.", "B) The crow is the rightmost.", "C) The hummingbird is the rightmost.", "D) The blue jay is the rightmost.", "E) The owl is the rightmost.", "F) The robin is the rightmost.", "G) The quail is the rightmost." ], "answer": "C" }, { "id": "logical_deduction_921", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a blue jay, an owl, a falcon, a hawk, a raven, a crow, and a hummingbird. The falcon is the second from the left. The crow is the rightmost. The hummingbird is to the right of the blue jay. The hawk is to the right of the hummingbird. The blue jay is to the right of the owl. The raven is to the left of the falcon.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the second from the left.", "B) The owl is the second from the left.", "C) The falcon is the second from the left.", "D) The hawk is the second from the left.", "E) The raven is the second from the left.", "F) The crow is the second from the left.", "G) The hummingbird is the second from the left." ], "answer": "C" }, { "id": "logical_deduction_922", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: an orange book, a green book, a gray book, a purple book, a black book, a yellow book, and a white book. The orange book is to the right of the gray book. The yellow book is the third from the right. The purple book is the second from the left. The yellow book is to the right of the orange book. The white book is the second from the right. The black book is the leftmost.", "question": "Which of the following is true?", "options": [ "A) The orange book is the third from the right.", "B) The green book is the third from the right.", "C) The gray book is the third from the right.", "D) The purple book is the third from the right.", "E) The black book is the third from the right.", "F) The yellow book is the third from the right.", "G) The white book is the third from the right." ], "answer": "F" }, { "id": "logical_deduction_923", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a limousine, a convertible, a station wagon, a minivan, a bus, a tractor, and a truck. The minivan is the oldest. The truck is older than the station wagon. The truck is newer than the limousine. The bus is newer than the convertible. The bus is older than the tractor. The limousine is newer than the tractor.", "question": "Which of the following is true?", "options": [ "A) The limousine is the newest.", "B) The convertible is the newest.", "C) The station wagon is the newest.", "D) The minivan is the newest.", "E) The bus is the newest.", "F) The tractor is the newest.", "G) The truck is the newest." ], "answer": "C" }, { "id": "logical_deduction_924", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a limousine, a truck, a minivan, a tractor, a hatchback, a bus, and a convertible. The convertible is the second-oldest. The tractor is the fourth-newest. The minivan is older than the truck. The truck is older than the limousine. The hatchback is the third-oldest. The bus is newer than the limousine.", "question": "Which of the following is true?", "options": [ "A) The limousine is the newest.", "B) The truck is the newest.", "C) The minivan is the newest.", "D) The tractor is the newest.", "E) The hatchback is the newest.", "F) The bus is the newest.", "G) The convertible is the newest." ], "answer": "F" }, { "id": "logical_deduction_925", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a limousine, a truck, a sedan, a tractor, a minivan, a motorcyle, and a hatchback. The minivan is older than the tractor. The hatchback is older than the sedan. The truck is the third-newest. The hatchback is the second-newest. The tractor is older than the limousine. The motorcyle is newer than the limousine.", "question": "Which of the following is true?", "options": [ "A) The limousine is the oldest.", "B) The truck is the oldest.", "C) The sedan is the oldest.", "D) The tractor is the oldest.", "E) The minivan is the oldest.", "F) The motorcyle is the oldest.", "G) The hatchback is the oldest." ], "answer": "E" }, { "id": "logical_deduction_926", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: watermelons, cantaloupes, pears, peaches, mangoes, kiwis, and oranges. The oranges are more expensive than the cantaloupes. The pears are less expensive than the kiwis. The kiwis are the fourth-most expensive. The mangoes are less expensive than the pears. The peaches are the cheapest. The cantaloupes are more expensive than the watermelons.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the third-most expensive.", "B) The cantaloupes are the third-most expensive.", "C) The pears are the third-most expensive.", "D) The peaches are the third-most expensive.", "E) The mangoes are the third-most expensive.", "F) The kiwis are the third-most expensive.", "G) The oranges are the third-most expensive." ], "answer": "A" }, { "id": "logical_deduction_927", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Ada, Amy, Eli, Rob, Joe, Eve, and Ana. Rob finished second. Rob finished above Eve. Joe finished above Ada. Joe finished below Eve. Ada finished above Ana. Eli finished third-to-last.", "question": "Which of the following is true?", "options": [ "A) Ada finished third-to-last.", "B) Amy finished third-to-last.", "C) Eli finished third-to-last.", "D) Rob finished third-to-last.", "E) Joe finished third-to-last.", "F) Eve finished third-to-last.", "G) Ana finished third-to-last." ], "answer": "C" }, { "id": "logical_deduction_928", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a blue jay, an owl, a hawk, a falcon, a hummingbird, a robin, and a quail. The hummingbird is to the left of the falcon. The owl is the second from the left. The robin is to the left of the hummingbird. The quail is to the right of the falcon. The robin is to the right of the owl. The blue jay is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the third from the left.", "B) The owl is the third from the left.", "C) The hawk is the third from the left.", "D) The falcon is the third from the left.", "E) The hummingbird is the third from the left.", "F) The robin is the third from the left.", "G) The quail is the third from the left." ], "answer": "F" }, { "id": "logical_deduction_929", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: oranges, plums, loquats, apples, kiwis, cantaloupes, and peaches. The loquats are less expensive than the kiwis. The plums are the cheapest. The loquats are the fourth-most expensive. The peaches are less expensive than the oranges. The peaches are more expensive than the kiwis. The apples are the second-cheapest.", "question": "Which of the following is true?", "options": [ "A) The oranges are the third-cheapest.", "B) The plums are the third-cheapest.", "C) The loquats are the third-cheapest.", "D) The apples are the third-cheapest.", "E) The kiwis are the third-cheapest.", "F) The cantaloupes are the third-cheapest.", "G) The peaches are the third-cheapest." ], "answer": "F" }, { "id": "logical_deduction_930", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a convertible, a truck, a tractor, a limousine, a motorcyle, a hatchback, and a sedan. The hatchback is the fourth-newest. The limousine is older than the motorcyle. The truck is newer than the motorcyle. The sedan is the second-newest. The tractor is newer than the convertible. The hatchback is older than the convertible.", "question": "Which of the following is true?", "options": [ "A) The convertible is the oldest.", "B) The truck is the oldest.", "C) The tractor is the oldest.", "D) The limousine is the oldest.", "E) The motorcyle is the oldest.", "F) The hatchback is the oldest.", "G) The sedan is the oldest." ], "answer": "D" }, { "id": "logical_deduction_931", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: oranges, watermelons, peaches, pears, kiwis, cantaloupes, and plums. The kiwis are the second-cheapest. The plums are the cheapest. The cantaloupes are less expensive than the watermelons. The oranges are the most expensive. The pears are the third-cheapest. The peaches are the third-most expensive.", "question": "Which of the following is true?", "options": [ "A) The oranges are the fourth-most expensive.", "B) The watermelons are the fourth-most expensive.", "C) The peaches are the fourth-most expensive.", "D) The pears are the fourth-most expensive.", "E) The kiwis are the fourth-most expensive.", "F) The cantaloupes are the fourth-most expensive.", "G) The plums are the fourth-most expensive." ], "answer": "F" }, { "id": "logical_deduction_932", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a raven, a hummingbird, a robin, a crow, a quail, a blue jay, and a cardinal. The hummingbird is to the left of the crow. The quail is to the right of the crow. The raven is to the left of the robin. The blue jay is the third from the right. The cardinal is the leftmost. The hummingbird is the fourth from the left.", "question": "Which of the following is true?", "options": [ "A) The raven is the second from the left.", "B) The hummingbird is the second from the left.", "C) The robin is the second from the left.", "D) The crow is the second from the left.", "E) The quail is the second from the left.", "F) The blue jay is the second from the left.", "G) The cardinal is the second from the left." ], "answer": "A" }, { "id": "logical_deduction_933", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a hatchback, a sedan, a station wagon, a convertible, a tractor, a bus, and a truck. The convertible is the second-newest. The station wagon is newer than the truck. The bus is newer than the hatchback. The truck is the fourth-newest. The station wagon is older than the tractor. The sedan is the oldest.", "question": "Which of the following is true?", "options": [ "A) The hatchback is the fourth-newest.", "B) The sedan is the fourth-newest.", "C) The station wagon is the fourth-newest.", "D) The convertible is the fourth-newest.", "E) The tractor is the fourth-newest.", "F) The bus is the fourth-newest.", "G) The truck is the fourth-newest." ], "answer": "G" }, { "id": "logical_deduction_934", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: an orange book, a red book, a green book, a white book, a purple book, a brown book, and a yellow book. The green book is to the left of the purple book. The white book is to the right of the orange book. The green book is to the right of the brown book. The yellow book is to the right of the white book. The red book is to the right of the yellow book. The brown book is to the right of the red book.", "question": "Which of the following is true?", "options": [ "A) The orange book is the second from the right.", "B) The red book is the second from the right.", "C) The green book is the second from the right.", "D) The white book is the second from the right.", "E) The purple book is the second from the right.", "F) The brown book is the second from the right.", "G) The yellow book is the second from the right." ], "answer": "C" }, { "id": "logical_deduction_935", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: an orange book, a red book, a green book, a white book, a purple book, a brown book, and a yellow book. The green book is to the left of the purple book. The white book is to the right of the orange book. The green book is to the right of the brown book. The yellow book is to the right of the white book. The red book is to the right of the yellow book. The brown book is to the right of the red book.", "question": "Which of the following is true?", "options": [ "A) The orange book is the third from the left.", "B) The red book is the third from the left.", "C) The green book is the third from the left.", "D) The white book is the third from the left.", "E) The purple book is the third from the left.", "F) The brown book is the third from the left.", "G) The yellow book is the third from the left." ], "answer": "G" }, { "id": "logical_deduction_936", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: an orange book, a red book, a brown book, a blue book, a black book, a gray book, and a white book. The white book is the leftmost. The red book is to the right of the blue book. The orange book is the second from the right. The gray book is the fourth from the left. The black book is the rightmost. The gray book is to the right of the red book.", "question": "Which of the following is true?", "options": [ "A) The orange book is the leftmost.", "B) The red book is the leftmost.", "C) The brown book is the leftmost.", "D) The blue book is the leftmost.", "E) The black book is the leftmost.", "F) The gray book is the leftmost.", "G) The white book is the leftmost." ], "answer": "G" }, { "id": "logical_deduction_937", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a minivan, a motorcyle, a limousine, a sedan, a bus, a station wagon, and a tractor. The motorcyle is newer than the station wagon. The limousine is newer than the minivan. The tractor is the second-oldest. The bus is the third-newest. The limousine is the third-oldest. The sedan is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The minivan is the newest.", "B) The motorcyle is the newest.", "C) The limousine is the newest.", "D) The sedan is the newest.", "E) The bus is the newest.", "F) The station wagon is the newest.", "G) The tractor is the newest." ], "answer": "B" }, { "id": "logical_deduction_938", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a purple book, a green book, a white book, a gray book, a red book, a black book, and a brown book. The gray book is to the left of the purple book. The white book is to the right of the brown book. The black book is the third from the right. The purple book is to the left of the white book. The white book is the second from the right. The gray book is the third from the left. The brown book is to the right of the green book.", "question": "Which of the following is true?", "options": [ "A) The purple book is the fourth from the left.", "B) The green book is the fourth from the left.", "C) The white book is the fourth from the left.", "D) The gray book is the fourth from the left.", "E) The red book is the fourth from the left.", "F) The black book is the fourth from the left.", "G) The brown book is the fourth from the left." ], "answer": "A" }, { "id": "logical_deduction_939", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: watermelons, cantaloupes, pears, peaches, mangoes, kiwis, and oranges. The oranges are more expensive than the cantaloupes. The pears are less expensive than the kiwis. The kiwis are the fourth-most expensive. The mangoes are less expensive than the pears. The peaches are the cheapest. The cantaloupes are more expensive than the watermelons.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the second-cheapest.", "B) The cantaloupes are the second-cheapest.", "C) The pears are the second-cheapest.", "D) The peaches are the second-cheapest.", "E) The mangoes are the second-cheapest.", "F) The kiwis are the second-cheapest.", "G) The oranges are the second-cheapest." ], "answer": "E" }, { "id": "logical_deduction_940", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hawk, a raven, a falcon, a crow, a hummingbird, a robin, and a cardinal. The hawk is the second from the right. The robin is to the left of the raven. The raven is to the left of the crow. The falcon is to the left of the cardinal. The hummingbird is the second from the left. The falcon is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The hawk is the second from the left.", "B) The raven is the second from the left.", "C) The falcon is the second from the left.", "D) The crow is the second from the left.", "E) The hummingbird is the second from the left.", "F) The robin is the second from the left.", "G) The cardinal is the second from the left." ], "answer": "E" }, { "id": "logical_deduction_941", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a yellow book, a red book, a gray book, a blue book, a white book, an orange book, and a purple book. The red book is the third from the right. The white book is to the right of the orange book. The purple book is the third from the left. The yellow book is to the right of the purple book. The blue book is to the right of the red book. The blue book is to the left of the gray book.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the fourth from the left.", "B) The red book is the fourth from the left.", "C) The gray book is the fourth from the left.", "D) The blue book is the fourth from the left.", "E) The white book is the fourth from the left.", "F) The orange book is the fourth from the left.", "G) The purple book is the fourth from the left." ], "answer": "A" }, { "id": "logical_deduction_942", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hawk, a raven, a falcon, a crow, a hummingbird, a robin, and a cardinal. The hawk is the second from the right. The robin is to the left of the raven. The raven is to the left of the crow. The falcon is to the left of the cardinal. The hummingbird is the second from the left. The falcon is the third from the right.", "question": "Which of the following is true?", "options": [ "A) The hawk is the leftmost.", "B) The raven is the leftmost.", "C) The falcon is the leftmost.", "D) The crow is the leftmost.", "E) The hummingbird is the leftmost.", "F) The robin is the leftmost.", "G) The cardinal is the leftmost." ], "answer": "F" }, { "id": "logical_deduction_943", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Eve, Rob, Dan, Mel, Ana, Eli, and Ada. Ada finished above Rob. Eve finished below Rob. Mel finished above Eli. Ada finished below Dan. Ana finished third. Eli finished second.", "question": "Which of the following is true?", "options": [ "A) Eve finished last.", "B) Rob finished last.", "C) Dan finished last.", "D) Mel finished last.", "E) Ana finished last.", "F) Eli finished last.", "G) Ada finished last." ], "answer": "A" }, { "id": "logical_deduction_944", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Ana, Eli, Mya, Amy, Joe, Mel, and Ada. Ada finished above Mel. Ada finished third-to-last. Amy finished above Ana. Mya finished second-to-last. Joe finished above Amy. Eli finished below Ana.", "question": "Which of the following is true?", "options": [ "A) Ana finished first.", "B) Eli finished first.", "C) Mya finished first.", "D) Amy finished first.", "E) Joe finished first.", "F) Mel finished first.", "G) Ada finished first." ], "answer": "E" }, { "id": "logical_deduction_945", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: watermelons, oranges, mangoes, cantaloupes, kiwis, pears, and peaches. The pears are the second-cheapest. The peaches are more expensive than the cantaloupes. The peaches are less expensive than the mangoes. The cantaloupes are more expensive than the kiwis. The oranges are the fourth-most expensive. The watermelons are the second-most expensive.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the most expensive.", "B) The oranges are the most expensive.", "C) The mangoes are the most expensive.", "D) The cantaloupes are the most expensive.", "E) The kiwis are the most expensive.", "F) The pears are the most expensive.", "G) The peaches are the most expensive." ], "answer": "C" }, { "id": "logical_deduction_946", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a white book, a gray book, a yellow book, a purple book, a red book, a black book, and a green book. The black book is the second from the right. The red book is to the left of the green book. The red book is the second from the left. The gray book is the third from the right. The yellow book is the third from the left. The white book is the fourth from the left.", "question": "Which of the following is true?", "options": [ "A) The white book is the second from the right.", "B) The gray book is the second from the right.", "C) The yellow book is the second from the right.", "D) The purple book is the second from the right.", "E) The red book is the second from the right.", "F) The black book is the second from the right.", "G) The green book is the second from the right." ], "answer": "F" }, { "id": "logical_deduction_947", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a minivan, a motorcyle, a limousine, a sedan, a bus, a station wagon, and a tractor. The motorcyle is newer than the station wagon. The limousine is newer than the minivan. The tractor is the second-oldest. The bus is the third-newest. The limousine is the third-oldest. The sedan is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The minivan is the fourth-newest.", "B) The motorcyle is the fourth-newest.", "C) The limousine is the fourth-newest.", "D) The sedan is the fourth-newest.", "E) The bus is the fourth-newest.", "F) The station wagon is the fourth-newest.", "G) The tractor is the fourth-newest." ], "answer": "F" }, { "id": "logical_deduction_948", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Amy, Eve, Ada, Rob, Dan, Mel, and Joe. Joe finished third. Dan finished last. Eve finished first. Mel finished below Rob. Ada finished above Joe. Rob finished third-to-last.", "question": "Which of the following is true?", "options": [ "A) Amy finished third.", "B) Eve finished third.", "C) Ada finished third.", "D) Rob finished third.", "E) Dan finished third.", "F) Mel finished third.", "G) Joe finished third." ], "answer": "G" }, { "id": "logical_deduction_949", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a black book, a yellow book, a white book, a gray book, a purple book, an orange book, and a green book. The green book is to the left of the gray book. The gray book is the third from the right. The white book is the rightmost. The orange book is the second from the left. The black book is to the right of the yellow book. The black book is the third from the left.", "question": "Which of the following is true?", "options": [ "A) The black book is the leftmost.", "B) The yellow book is the leftmost.", "C) The white book is the leftmost.", "D) The gray book is the leftmost.", "E) The purple book is the leftmost.", "F) The orange book is the leftmost.", "G) The green book is the leftmost." ], "answer": "B" }, { "id": "logical_deduction_950", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a convertible, a limousine, a hatchback, a bus, a station wagon, a tractor, and a minivan. The station wagon is the fourth-newest. The hatchback is older than the bus. The hatchback is the second-newest. The minivan is newer than the limousine. The convertible is older than the limousine. The tractor is the second-oldest.", "question": "Which of the following is true?", "options": [ "A) The convertible is the third-oldest.", "B) The limousine is the third-oldest.", "C) The hatchback is the third-oldest.", "D) The bus is the third-oldest.", "E) The station wagon is the third-oldest.", "F) The tractor is the third-oldest.", "G) The minivan is the third-oldest." ], "answer": "B" }, { "id": "logical_deduction_951", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a hawk, a hummingbird, a falcon, a cardinal, an owl, a robin, and a blue jay. The hummingbird is to the left of the owl. The robin is the rightmost. The blue jay is to the left of the hawk. The blue jay is the third from the left. The falcon is the fourth from the left. The cardinal is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The hawk is the third from the right.", "B) The hummingbird is the third from the right.", "C) The falcon is the third from the right.", "D) The cardinal is the third from the right.", "E) The owl is the third from the right.", "F) The robin is the third from the right.", "G) The blue jay is the third from the right." ], "answer": "A" }, { "id": "logical_deduction_952", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Joe, Dan, Ana, Mel, Ada, Eve, and Amy. Eve finished above Amy. Dan finished second. Ada finished below Ana. Ana finished third-to-last. Mel finished last. Amy finished third.", "question": "Which of the following is true?", "options": [ "A) Joe finished third-to-last.", "B) Dan finished third-to-last.", "C) Ana finished third-to-last.", "D) Mel finished third-to-last.", "E) Ada finished third-to-last.", "F) Eve finished third-to-last.", "G) Amy finished third-to-last." ], "answer": "C" }, { "id": "logical_deduction_953", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: apples, plums, mangoes, watermelons, oranges, kiwis, and loquats. The watermelons are less expensive than the plums. The watermelons are more expensive than the oranges. The kiwis are less expensive than the oranges. The apples are more expensive than the loquats. The plums are less expensive than the mangoes. The mangoes are the third-most expensive.", "question": "Which of the following is true?", "options": [ "A) The apples are the second-most expensive.", "B) The plums are the second-most expensive.", "C) The mangoes are the second-most expensive.", "D) The watermelons are the second-most expensive.", "E) The oranges are the second-most expensive.", "F) The kiwis are the second-most expensive.", "G) The loquats are the second-most expensive." ], "answer": "G" }, { "id": "logical_deduction_954", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: loquats, watermelons, oranges, kiwis, apples, plums, and peaches. The plums are the cheapest. The watermelons are the third-most expensive. The apples are more expensive than the oranges. The kiwis are the most expensive. The apples are less expensive than the peaches. The loquats are the third-cheapest.", "question": "Which of the following is true?", "options": [ "A) The loquats are the cheapest.", "B) The watermelons are the cheapest.", "C) The oranges are the cheapest.", "D) The kiwis are the cheapest.", "E) The apples are the cheapest.", "F) The plums are the cheapest.", "G) The peaches are the cheapest." ], "answer": "F" }, { "id": "logical_deduction_955", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells seven fruits: loquats, watermelons, oranges, kiwis, apples, plums, and peaches. The plums are the cheapest. The watermelons are the third-most expensive. The apples are more expensive than the oranges. The kiwis are the most expensive. The apples are less expensive than the peaches. The loquats are the third-cheapest.", "question": "Which of the following is true?", "options": [ "A) The loquats are the third-cheapest.", "B) The watermelons are the third-cheapest.", "C) The oranges are the third-cheapest.", "D) The kiwis are the third-cheapest.", "E) The apples are the third-cheapest.", "F) The plums are the third-cheapest.", "G) The peaches are the third-cheapest." ], "answer": "A" }, { "id": "logical_deduction_956", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were seven golfers: Eve, Mya, Rob, Ana, Ada, Mel, and Joe. Eve finished third. Mya finished above Joe. Mel finished above Ada. Mya finished above Rob. Mel finished below Joe. Mya finished second. Ada finished second-to-last.", "question": "Which of the following is true?", "options": [ "A) Eve finished third-to-last.", "B) Mya finished third-to-last.", "C) Rob finished third-to-last.", "D) Ana finished third-to-last.", "E) Ada finished third-to-last.", "F) Mel finished third-to-last.", "G) Joe finished third-to-last." ], "answer": "F" }, { "id": "logical_deduction_957", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are seven books: a yellow book, a brown book, a white book, an orange book, a black book, a blue book, and a purple book. The black book is the second from the left. The white book is to the right of the orange book. The black book is to the right of the brown book. The yellow book is the third from the right. The purple book is the third from the left. The orange book is the second from the right.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the fourth from the left.", "B) The brown book is the fourth from the left.", "C) The white book is the fourth from the left.", "D) The orange book is the fourth from the left.", "E) The black book is the fourth from the left.", "F) The blue book is the fourth from the left.", "G) The purple book is the fourth from the left." ], "answer": "F" }, { "id": "logical_deduction_958", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are seven vehicles: a sedan, a minivan, a motorcyle, a limousine, a hatchback, a truck, and a tractor. The motorcyle is older than the tractor. The hatchback is older than the limousine. The hatchback is newer than the truck. The truck is newer than the tractor. The minivan is the second-newest. The sedan is the third-newest.", "question": "Which of the following is true?", "options": [ "A) The sedan is the second-newest.", "B) The minivan is the second-newest.", "C) The motorcyle is the second-newest.", "D) The limousine is the second-newest.", "E) The hatchback is the second-newest.", "F) The truck is the second-newest.", "G) The tractor is the second-newest." ], "answer": "B" }, { "id": "logical_deduction_959", "context": "The following paragraphs each describe a set of seven objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are seven birds: a robin, an owl, a quail, a falcon, a hummingbird, a cardinal, and a crow. The hummingbird is to the left of the falcon. The crow is to the right of the cardinal. The cardinal is the second from the right. The quail is the third from the right. The falcon is to the left of the robin. The owl is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The robin is the leftmost.", "B) The owl is the leftmost.", "C) The quail is the leftmost.", "D) The falcon is the leftmost.", "E) The hummingbird is the leftmost.", "F) The cardinal is the leftmost.", "G) The crow is the leftmost." ], "answer": "E" }, { "id": "logical_deduction_960", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a blue jay, a quail, and a falcon. The falcon is to the right of the blue jay. The blue jay is to the right of the quail.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the second from the left.", "B) The quail is the second from the left.", "C) The falcon is the second from the left." ], "answer": "A" }, { "id": "logical_deduction_961", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a motorcyle, a limousine, and a convertible. The motorcyle is newer than the limousine. The convertible is newer than the motorcyle.", "question": "Which of the following is true?", "options": [ "A) The motorcyle is the oldest.", "B) The limousine is the oldest.", "C) The convertible is the oldest." ], "answer": "B" }, { "id": "logical_deduction_962", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a blue book, an orange book, and a red book. The blue book is the rightmost. The orange book is the leftmost.", "question": "Which of the following is true?", "options": [ "A) The blue book is the second from the left.", "B) The orange book is the second from the left.", "C) The red book is the second from the left." ], "answer": "C" }, { "id": "logical_deduction_963", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a robin, a blue jay, and a crow. The robin is to the right of the crow. The robin is to the left of the blue jay.", "question": "Which of the following is true?", "options": [ "A) The robin is the rightmost.", "B) The blue jay is the rightmost.", "C) The crow is the rightmost." ], "answer": "B" }, { "id": "logical_deduction_964", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a green book, a red book, and a blue book. The red book is the rightmost. The blue book is to the right of the green book.", "question": "Which of the following is true?", "options": [ "A) The green book is the rightmost.", "B) The red book is the rightmost.", "C) The blue book is the rightmost." ], "answer": "B" }, { "id": "logical_deduction_965", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: apples, peaches, and mangoes. The mangoes are less expensive than the peaches. The apples are less expensive than the mangoes.", "question": "Which of the following is true?", "options": [ "A) The apples are the second-most expensive.", "B) The peaches are the second-most expensive.", "C) The mangoes are the second-most expensive." ], "answer": "C" }, { "id": "logical_deduction_966", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a tractor, a truck, and a minivan. The minivan is newer than the truck. The tractor is older than the truck.", "question": "Which of the following is true?", "options": [ "A) The tractor is the newest.", "B) The truck is the newest.", "C) The minivan is the newest." ], "answer": "C" }, { "id": "logical_deduction_967", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Eve, Rob, and Mel. Rob finished below Mel. Mel finished below Eve.", "question": "Which of the following is true?", "options": [ "A) Eve finished first.", "B) Rob finished first.", "C) Mel finished first." ], "answer": "A" }, { "id": "logical_deduction_968", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: an orange book, a yellow book, and a blue book. The blue book is to the right of the yellow book. The orange book is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The orange book is the second from the left.", "B) The yellow book is the second from the left.", "C) The blue book is the second from the left." ], "answer": "A" }, { "id": "logical_deduction_969", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a station wagon, a minivan, and a truck. The minivan is newer than the truck. The station wagon is newer than the minivan.", "question": "Which of the following is true?", "options": [ "A) The station wagon is the newest.", "B) The minivan is the newest.", "C) The truck is the newest." ], "answer": "A" }, { "id": "logical_deduction_970", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a gray book, a purple book, and a red book. The purple book is to the left of the red book. The gray book is to the left of the purple book.", "question": "Which of the following is true?", "options": [ "A) The gray book is the leftmost.", "B) The purple book is the leftmost.", "C) The red book is the leftmost." ], "answer": "A" }, { "id": "logical_deduction_971", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: peaches, mangoes, and apples. The peaches are more expensive than the apples. The mangoes are the cheapest.", "question": "Which of the following is true?", "options": [ "A) The peaches are the second-most expensive.", "B) The mangoes are the second-most expensive.", "C) The apples are the second-most expensive." ], "answer": "C" }, { "id": "logical_deduction_972", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a blue jay, a falcon, and a hummingbird. The blue jay is to the right of the falcon. The hummingbird is to the left of the falcon.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the second from the left.", "B) The falcon is the second from the left.", "C) The hummingbird is the second from the left." ], "answer": "B" }, { "id": "logical_deduction_973", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a minivan, a bus, and a sedan. The minivan is newer than the sedan. The minivan is older than the bus.", "question": "Which of the following is true?", "options": [ "A) The minivan is the second-newest.", "B) The bus is the second-newest.", "C) The sedan is the second-newest." ], "answer": "A" }, { "id": "logical_deduction_974", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a hatchback, a convertible, and a tractor. The convertible is older than the tractor. The hatchback is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The hatchback is the second-newest.", "B) The convertible is the second-newest.", "C) The tractor is the second-newest." ], "answer": "A" }, { "id": "logical_deduction_975", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: loquats, watermelons, and cantaloupes. The watermelons are the second-most expensive. The loquats are more expensive than the cantaloupes.", "question": "Which of the following is true?", "options": [ "A) The loquats are the most expensive.", "B) The watermelons are the most expensive.", "C) The cantaloupes are the most expensive." ], "answer": "A" }, { "id": "logical_deduction_976", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: mangoes, watermelons, and kiwis. The watermelons are less expensive than the kiwis. The kiwis are the second-most expensive.", "question": "Which of the following is true?", "options": [ "A) The mangoes are the most expensive.", "B) The watermelons are the most expensive.", "C) The kiwis are the most expensive." ], "answer": "A" }, { "id": "logical_deduction_977", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a blue book, an orange book, and a red book. The blue book is the rightmost. The orange book is the leftmost.", "question": "Which of the following is true?", "options": [ "A) The blue book is the rightmost.", "B) The orange book is the rightmost.", "C) The red book is the rightmost." ], "answer": "A" }, { "id": "logical_deduction_978", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Ada, Mel, and Mya. Mya finished below Ada. Mel finished above Ada.", "question": "Which of the following is true?", "options": [ "A) Ada finished last.", "B) Mel finished last.", "C) Mya finished last." ], "answer": "C" }, { "id": "logical_deduction_979", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Mel, Ada, and Ana. Mel finished last. Ana finished second.", "question": "Which of the following is true?", "options": [ "A) Mel finished last.", "B) Ada finished last.", "C) Ana finished last." ], "answer": "A" }, { "id": "logical_deduction_980", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: plums, apples, and loquats. The loquats are the cheapest. The plums are less expensive than the apples.", "question": "Which of the following is true?", "options": [ "A) The plums are the cheapest.", "B) The apples are the cheapest.", "C) The loquats are the cheapest." ], "answer": "C" }, { "id": "logical_deduction_981", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a black book, an orange book, and a blue book. The blue book is to the right of the orange book. The orange book is to the right of the black book.", "question": "Which of the following is true?", "options": [ "A) The black book is the second from the left.", "B) The orange book is the second from the left.", "C) The blue book is the second from the left." ], "answer": "B" }, { "id": "logical_deduction_982", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a convertible, a motorcyle, and a truck. The motorcyle is newer than the convertible. The convertible is newer than the truck.", "question": "Which of the following is true?", "options": [ "A) The convertible is the oldest.", "B) The motorcyle is the oldest.", "C) The truck is the oldest." ], "answer": "C" }, { "id": "logical_deduction_983", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: apples, peaches, and mangoes. The mangoes are less expensive than the peaches. The apples are less expensive than the mangoes.", "question": "Which of the following is true?", "options": [ "A) The apples are the cheapest.", "B) The peaches are the cheapest.", "C) The mangoes are the cheapest." ], "answer": "A" }, { "id": "logical_deduction_984", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Eve, Joe, and Amy. Eve finished below Amy. Eve finished above Joe.", "question": "Which of the following is true?", "options": [ "A) Eve finished first.", "B) Joe finished first.", "C) Amy finished first." ], "answer": "C" }, { "id": "logical_deduction_985", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Eli, Mya, and Eve. Eve finished below Eli. Eve finished above Mya.", "question": "Which of the following is true?", "options": [ "A) Eli finished second.", "B) Mya finished second.", "C) Eve finished second." ], "answer": "C" }, { "id": "logical_deduction_986", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: peaches, pears, and mangoes. The mangoes are less expensive than the peaches. The mangoes are more expensive than the pears.", "question": "Which of the following is true?", "options": [ "A) The peaches are the most expensive.", "B) The pears are the most expensive.", "C) The mangoes are the most expensive." ], "answer": "A" }, { "id": "logical_deduction_987", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a hatchback, a convertible, and a tractor. The convertible is older than the tractor. The hatchback is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The hatchback is the oldest.", "B) The convertible is the oldest.", "C) The tractor is the oldest." ], "answer": "B" }, { "id": "logical_deduction_988", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a hummingbird, a blue jay, and a raven. The blue jay is to the right of the hummingbird. The raven is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The hummingbird is the rightmost.", "B) The blue jay is the rightmost.", "C) The raven is the rightmost." ], "answer": "B" }, { "id": "logical_deduction_989", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a purple book, a red book, and a yellow book. The purple book is to the right of the yellow book. The yellow book is to the right of the red book.", "question": "Which of the following is true?", "options": [ "A) The purple book is the rightmost.", "B) The red book is the rightmost.", "C) The yellow book is the rightmost." ], "answer": "A" }, { "id": "logical_deduction_990", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: watermelons, apples, and mangoes. The apples are less expensive than the mangoes. The mangoes are less expensive than the watermelons.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the second-most expensive.", "B) The apples are the second-most expensive.", "C) The mangoes are the second-most expensive." ], "answer": "C" }, { "id": "logical_deduction_991", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Amy, Dan, and Mel. Mel finished above Amy. Dan finished below Amy.", "question": "Which of the following is true?", "options": [ "A) Amy finished first.", "B) Dan finished first.", "C) Mel finished first." ], "answer": "C" }, { "id": "logical_deduction_992", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a motorcyle, a bus, and a tractor. The motorcyle is the oldest. The bus is newer than the tractor.", "question": "Which of the following is true?", "options": [ "A) The motorcyle is the second-newest.", "B) The bus is the second-newest.", "C) The tractor is the second-newest." ], "answer": "C" }, { "id": "logical_deduction_993", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a red book, a blue book, and an orange book. The red book is to the left of the orange book. The orange book is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The red book is the second from the left.", "B) The blue book is the second from the left.", "C) The orange book is the second from the left." ], "answer": "C" }, { "id": "logical_deduction_994", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a motorcyle, a minivan, and a tractor. The minivan is older than the tractor. The minivan is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The motorcyle is the newest.", "B) The minivan is the newest.", "C) The tractor is the newest." ], "answer": "C" }, { "id": "logical_deduction_995", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a bus, a sedan, and a truck. The truck is older than the bus. The bus is older than the sedan.", "question": "Which of the following is true?", "options": [ "A) The bus is the second-newest.", "B) The sedan is the second-newest.", "C) The truck is the second-newest." ], "answer": "A" }, { "id": "logical_deduction_996", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: loquats, mangoes, and apples. The mangoes are more expensive than the apples. The loquats are more expensive than the mangoes.", "question": "Which of the following is true?", "options": [ "A) The loquats are the most expensive.", "B) The mangoes are the most expensive.", "C) The apples are the most expensive." ], "answer": "A" }, { "id": "logical_deduction_997", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a blue jay, a quail, and a falcon. The falcon is to the right of the blue jay. The blue jay is to the right of the quail.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the rightmost.", "B) The quail is the rightmost.", "C) The falcon is the rightmost." ], "answer": "C" }, { "id": "logical_deduction_998", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a hawk, a crow, and a raven. The raven is to the right of the hawk. The crow is the rightmost.", "question": "Which of the following is true?", "options": [ "A) The hawk is the second from the left.", "B) The crow is the second from the left.", "C) The raven is the second from the left." ], "answer": "C" }, { "id": "logical_deduction_999", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a brown book, a yellow book, and an orange book. The yellow book is the leftmost. The orange book is to the right of the brown book.", "question": "Which of the following is true?", "options": [ "A) The brown book is the leftmost.", "B) The yellow book is the leftmost.", "C) The orange book is the leftmost." ], "answer": "B" }, { "id": "logical_deduction_1000", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: loquats, mangoes, and apples. The mangoes are more expensive than the apples. The loquats are more expensive than the mangoes.", "question": "Which of the following is true?", "options": [ "A) The loquats are the second-most expensive.", "B) The mangoes are the second-most expensive.", "C) The apples are the second-most expensive." ], "answer": "B" }, { "id": "logical_deduction_1001", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: cantaloupes, oranges, and watermelons. The oranges are the most expensive. The cantaloupes are more expensive than the watermelons.", "question": "Which of the following is true?", "options": [ "A) The cantaloupes are the cheapest.", "B) The oranges are the cheapest.", "C) The watermelons are the cheapest." ], "answer": "C" }, { "id": "logical_deduction_1002", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: apples, peaches, and loquats. The loquats are less expensive than the apples. The peaches are more expensive than the apples.", "question": "Which of the following is true?", "options": [ "A) The apples are the most expensive.", "B) The peaches are the most expensive.", "C) The loquats are the most expensive." ], "answer": "B" }, { "id": "logical_deduction_1003", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: an owl, a crow, and a cardinal. The crow is to the left of the owl. The owl is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The owl is the second from the left.", "B) The crow is the second from the left.", "C) The cardinal is the second from the left." ], "answer": "A" }, { "id": "logical_deduction_1004", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: oranges, mangoes, and plums. The plums are less expensive than the mangoes. The oranges are less expensive than the plums.", "question": "Which of the following is true?", "options": [ "A) The oranges are the second-most expensive.", "B) The mangoes are the second-most expensive.", "C) The plums are the second-most expensive." ], "answer": "C" }, { "id": "logical_deduction_1005", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a quail, an owl, and a hummingbird. The quail is to the left of the owl. The owl is to the left of the hummingbird.", "question": "Which of the following is true?", "options": [ "A) The quail is the second from the left.", "B) The owl is the second from the left.", "C) The hummingbird is the second from the left." ], "answer": "B" }, { "id": "logical_deduction_1006", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: oranges, watermelons, and pears. The oranges are the second-most expensive. The pears are more expensive than the watermelons.", "question": "Which of the following is true?", "options": [ "A) The oranges are the most expensive.", "B) The watermelons are the most expensive.", "C) The pears are the most expensive." ], "answer": "C" }, { "id": "logical_deduction_1007", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Ana, Mel, and Ada. Ada finished above Ana. Mel finished below Ana.", "question": "Which of the following is true?", "options": [ "A) Ana finished first.", "B) Mel finished first.", "C) Ada finished first." ], "answer": "C" }, { "id": "logical_deduction_1008", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a sedan, a tractor, and a bus. The sedan is older than the tractor. The bus is older than the sedan.", "question": "Which of the following is true?", "options": [ "A) The sedan is the second-newest.", "B) The tractor is the second-newest.", "C) The bus is the second-newest." ], "answer": "A" }, { "id": "logical_deduction_1009", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a green book, a brown book, and an orange book. The brown book is to the left of the orange book. The green book is to the left of the brown book.", "question": "Which of the following is true?", "options": [ "A) The green book is the second from the left.", "B) The brown book is the second from the left.", "C) The orange book is the second from the left." ], "answer": "B" }, { "id": "logical_deduction_1010", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: an orange book, a blue book, and a yellow book. The orange book is to the left of the blue book. The yellow book is to the right of the blue book.", "question": "Which of the following is true?", "options": [ "A) The orange book is the leftmost.", "B) The blue book is the leftmost.", "C) The yellow book is the leftmost." ], "answer": "A" }, { "id": "logical_deduction_1011", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: oranges, mangoes, and plums. The plums are less expensive than the mangoes. The oranges are less expensive than the plums.", "question": "Which of the following is true?", "options": [ "A) The oranges are the cheapest.", "B) The mangoes are the cheapest.", "C) The plums are the cheapest." ], "answer": "A" }, { "id": "logical_deduction_1012", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a gray book, a purple book, and a red book. The purple book is to the left of the red book. The gray book is to the left of the purple book.", "question": "Which of the following is true?", "options": [ "A) The gray book is the rightmost.", "B) The purple book is the rightmost.", "C) The red book is the rightmost." ], "answer": "C" }, { "id": "logical_deduction_1013", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a motorcyle, a minivan, and a tractor. The minivan is older than the tractor. The minivan is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The motorcyle is the oldest.", "B) The minivan is the oldest.", "C) The tractor is the oldest." ], "answer": "A" }, { "id": "logical_deduction_1014", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a blue jay, a cardinal, and a quail. The cardinal is to the right of the quail. The quail is to the right of the blue jay.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the rightmost.", "B) The cardinal is the rightmost.", "C) The quail is the rightmost." ], "answer": "B" }, { "id": "logical_deduction_1015", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Amy, Eli, and Eve. Eve finished above Amy. Eli finished below Amy.", "question": "Which of the following is true?", "options": [ "A) Amy finished second.", "B) Eli finished second.", "C) Eve finished second." ], "answer": "A" }, { "id": "logical_deduction_1016", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Joe, Dan, and Eve. Eve finished above Dan. Dan finished above Joe.", "question": "Which of the following is true?", "options": [ "A) Joe finished first.", "B) Dan finished first.", "C) Eve finished first." ], "answer": "C" }, { "id": "logical_deduction_1017", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a blue jay, a quail, and a falcon. The falcon is to the right of the blue jay. The blue jay is to the right of the quail.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the leftmost.", "B) The quail is the leftmost.", "C) The falcon is the leftmost." ], "answer": "B" }, { "id": "logical_deduction_1018", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: watermelons, apples, and mangoes. The apples are less expensive than the mangoes. The mangoes are less expensive than the watermelons.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the cheapest.", "B) The apples are the cheapest.", "C) The mangoes are the cheapest." ], "answer": "B" }, { "id": "logical_deduction_1019", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a motorcyle, a bus, and a tractor. The motorcyle is the oldest. The bus is newer than the tractor.", "question": "Which of the following is true?", "options": [ "A) The motorcyle is the newest.", "B) The bus is the newest.", "C) The tractor is the newest." ], "answer": "B" }, { "id": "logical_deduction_1020", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a motorcyle, a minivan, and a tractor. The minivan is older than the tractor. The minivan is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The motorcyle is the second-newest.", "B) The minivan is the second-newest.", "C) The tractor is the second-newest." ], "answer": "B" }, { "id": "logical_deduction_1021", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: plums, apples, and loquats. The loquats are the cheapest. The plums are less expensive than the apples.", "question": "Which of the following is true?", "options": [ "A) The plums are the most expensive.", "B) The apples are the most expensive.", "C) The loquats are the most expensive." ], "answer": "B" }, { "id": "logical_deduction_1022", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a gray book, an orange book, and a brown book. The orange book is the leftmost. The gray book is to the right of the brown book.", "question": "Which of the following is true?", "options": [ "A) The gray book is the second from the left.", "B) The orange book is the second from the left.", "C) The brown book is the second from the left." ], "answer": "C" }, { "id": "logical_deduction_1023", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: pears, plums, and kiwis. The pears are less expensive than the plums. The kiwis are less expensive than the pears.", "question": "Which of the following is true?", "options": [ "A) The pears are the second-most expensive.", "B) The plums are the second-most expensive.", "C) The kiwis are the second-most expensive." ], "answer": "A" }, { "id": "logical_deduction_1024", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a convertible, a tractor, and a hatchback. The hatchback is older than the convertible. The tractor is the newest.", "question": "Which of the following is true?", "options": [ "A) The convertible is the newest.", "B) The tractor is the newest.", "C) The hatchback is the newest." ], "answer": "B" }, { "id": "logical_deduction_1025", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a tractor, a convertible, and a minivan. The tractor is the second-newest. The minivan is newer than the convertible.", "question": "Which of the following is true?", "options": [ "A) The tractor is the second-newest.", "B) The convertible is the second-newest.", "C) The minivan is the second-newest." ], "answer": "A" }, { "id": "logical_deduction_1026", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a tractor, a station wagon, and a limousine. The tractor is newer than the limousine. The station wagon is the newest.", "question": "Which of the following is true?", "options": [ "A) The tractor is the oldest.", "B) The station wagon is the oldest.", "C) The limousine is the oldest." ], "answer": "C" }, { "id": "logical_deduction_1027", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Eli, Mya, and Eve. Eve finished below Eli. Eve finished above Mya.", "question": "Which of the following is true?", "options": [ "A) Eli finished first.", "B) Mya finished first.", "C) Eve finished first." ], "answer": "A" }, { "id": "logical_deduction_1028", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a cardinal, a hawk, and a hummingbird. The hummingbird is to the right of the hawk. The cardinal is to the left of the hawk.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the rightmost.", "B) The hawk is the rightmost.", "C) The hummingbird is the rightmost." ], "answer": "C" }, { "id": "logical_deduction_1029", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a sedan, a tractor, and a bus. The sedan is older than the tractor. The bus is older than the sedan.", "question": "Which of the following is true?", "options": [ "A) The sedan is the newest.", "B) The tractor is the newest.", "C) The bus is the newest." ], "answer": "B" }, { "id": "logical_deduction_1030", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a blue book, an orange book, and a green book. The green book is the leftmost. The orange book is to the left of the blue book.", "question": "Which of the following is true?", "options": [ "A) The blue book is the leftmost.", "B) The orange book is the leftmost.", "C) The green book is the leftmost." ], "answer": "C" }, { "id": "logical_deduction_1031", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Joe, Eve, and Amy. Amy finished above Eve. Joe finished first.", "question": "Which of the following is true?", "options": [ "A) Joe finished last.", "B) Eve finished last.", "C) Amy finished last." ], "answer": "B" }, { "id": "logical_deduction_1032", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: kiwis, loquats, and cantaloupes. The kiwis are less expensive than the loquats. The cantaloupes are less expensive than the kiwis.", "question": "Which of the following is true?", "options": [ "A) The kiwis are the most expensive.", "B) The loquats are the most expensive.", "C) The cantaloupes are the most expensive." ], "answer": "B" }, { "id": "logical_deduction_1033", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: kiwis, loquats, and cantaloupes. The kiwis are less expensive than the loquats. The cantaloupes are less expensive than the kiwis.", "question": "Which of the following is true?", "options": [ "A) The kiwis are the second-most expensive.", "B) The loquats are the second-most expensive.", "C) The cantaloupes are the second-most expensive." ], "answer": "A" }, { "id": "logical_deduction_1034", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a station wagon, a minivan, and a truck. The minivan is newer than the truck. The station wagon is newer than the minivan.", "question": "Which of the following is true?", "options": [ "A) The station wagon is the oldest.", "B) The minivan is the oldest.", "C) The truck is the oldest." ], "answer": "C" }, { "id": "logical_deduction_1035", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a white book, a black book, and a purple book. The black book is to the left of the purple book. The purple book is to the left of the white book.", "question": "Which of the following is true?", "options": [ "A) The white book is the leftmost.", "B) The black book is the leftmost.", "C) The purple book is the leftmost." ], "answer": "B" }, { "id": "logical_deduction_1036", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Eli, Mya, and Eve. Eve finished below Eli. Eve finished above Mya.", "question": "Which of the following is true?", "options": [ "A) Eli finished last.", "B) Mya finished last.", "C) Eve finished last." ], "answer": "B" }, { "id": "logical_deduction_1037", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a quail, an owl, and a hummingbird. The quail is to the left of the owl. The owl is to the left of the hummingbird.", "question": "Which of the following is true?", "options": [ "A) The quail is the leftmost.", "B) The owl is the leftmost.", "C) The hummingbird is the leftmost." ], "answer": "A" }, { "id": "logical_deduction_1038", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: apples, pears, and plums. The pears are less expensive than the plums. The pears are more expensive than the apples.", "question": "Which of the following is true?", "options": [ "A) The apples are the cheapest.", "B) The pears are the cheapest.", "C) The plums are the cheapest." ], "answer": "A" }, { "id": "logical_deduction_1039", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Ada, Mel, and Mya. Mya finished below Ada. Mel finished above Ada.", "question": "Which of the following is true?", "options": [ "A) Ada finished first.", "B) Mel finished first.", "C) Mya finished first." ], "answer": "B" }, { "id": "logical_deduction_1040", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: cantaloupes, watermelons, and mangoes. The mangoes are the cheapest. The cantaloupes are the second-most expensive.", "question": "Which of the following is true?", "options": [ "A) The cantaloupes are the cheapest.", "B) The watermelons are the cheapest.", "C) The mangoes are the cheapest." ], "answer": "C" }, { "id": "logical_deduction_1041", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Amy, Ana, and Joe. Amy finished below Ana. Ana finished below Joe.", "question": "Which of the following is true?", "options": [ "A) Amy finished second.", "B) Ana finished second.", "C) Joe finished second." ], "answer": "B" }, { "id": "logical_deduction_1042", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Ada, Mel, and Mya. Mya finished below Ada. Mel finished above Ada.", "question": "Which of the following is true?", "options": [ "A) Ada finished second.", "B) Mel finished second.", "C) Mya finished second." ], "answer": "A" }, { "id": "logical_deduction_1043", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a convertible, a motorcyle, and a truck. The motorcyle is newer than the convertible. The convertible is newer than the truck.", "question": "Which of the following is true?", "options": [ "A) The convertible is the newest.", "B) The motorcyle is the newest.", "C) The truck is the newest." ], "answer": "B" }, { "id": "logical_deduction_1044", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Ana, Dan, and Mel. Dan finished second. Mel finished first.", "question": "Which of the following is true?", "options": [ "A) Ana finished second.", "B) Dan finished second.", "C) Mel finished second." ], "answer": "B" }, { "id": "logical_deduction_1045", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a convertible, a limousine, and a bus. The limousine is older than the bus. The bus is older than the convertible.", "question": "Which of the following is true?", "options": [ "A) The convertible is the newest.", "B) The limousine is the newest.", "C) The bus is the newest." ], "answer": "A" }, { "id": "logical_deduction_1046", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a green book, a red book, and a blue book. The red book is the rightmost. The blue book is to the right of the green book.", "question": "Which of the following is true?", "options": [ "A) The green book is the second from the left.", "B) The red book is the second from the left.", "C) The blue book is the second from the left." ], "answer": "C" }, { "id": "logical_deduction_1047", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: peaches, pears, and mangoes. The mangoes are less expensive than the pears. The peaches are the cheapest.", "question": "Which of the following is true?", "options": [ "A) The peaches are the most expensive.", "B) The pears are the most expensive.", "C) The mangoes are the most expensive." ], "answer": "B" }, { "id": "logical_deduction_1048", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: loquats, watermelons, and cantaloupes. The watermelons are the second-most expensive. The loquats are more expensive than the cantaloupes.", "question": "Which of the following is true?", "options": [ "A) The loquats are the cheapest.", "B) The watermelons are the cheapest.", "C) The cantaloupes are the cheapest." ], "answer": "C" }, { "id": "logical_deduction_1049", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a robin, an owl, and a hawk. The robin is to the right of the hawk. The owl is the leftmost.", "question": "Which of the following is true?", "options": [ "A) The robin is the leftmost.", "B) The owl is the leftmost.", "C) The hawk is the leftmost." ], "answer": "B" }, { "id": "logical_deduction_1050", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Eli, Mya, and Eve. Eli finished last. Mya finished second.", "question": "Which of the following is true?", "options": [ "A) Eli finished first.", "B) Mya finished first.", "C) Eve finished first." ], "answer": "C" }, { "id": "logical_deduction_1051", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: oranges, mangoes, and plums. The plums are less expensive than the mangoes. The oranges are less expensive than the plums.", "question": "Which of the following is true?", "options": [ "A) The oranges are the most expensive.", "B) The mangoes are the most expensive.", "C) The plums are the most expensive." ], "answer": "B" }, { "id": "logical_deduction_1052", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a sedan, a tractor, and a bus. The sedan is older than the tractor. The bus is older than the sedan.", "question": "Which of the following is true?", "options": [ "A) The sedan is the oldest.", "B) The tractor is the oldest.", "C) The bus is the oldest." ], "answer": "C" }, { "id": "logical_deduction_1053", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a hummingbird, a blue jay, and a raven. The blue jay is to the right of the hummingbird. The raven is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The hummingbird is the second from the left.", "B) The blue jay is the second from the left.", "C) The raven is the second from the left." ], "answer": "C" }, { "id": "logical_deduction_1054", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: an orange book, a white book, and a purple book. The orange book is to the left of the white book. The purple book is the rightmost.", "question": "Which of the following is true?", "options": [ "A) The orange book is the leftmost.", "B) The white book is the leftmost.", "C) The purple book is the leftmost." ], "answer": "A" }, { "id": "logical_deduction_1055", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Amy, Eli, and Eve. Eve finished above Amy. Eli finished below Amy.", "question": "Which of the following is true?", "options": [ "A) Amy finished first.", "B) Eli finished first.", "C) Eve finished first." ], "answer": "C" }, { "id": "logical_deduction_1056", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a hawk, a cardinal, and a falcon. The hawk is to the left of the cardinal. The hawk is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The hawk is the second from the left.", "B) The cardinal is the second from the left.", "C) The falcon is the second from the left." ], "answer": "A" }, { "id": "logical_deduction_1057", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: cantaloupes, oranges, and watermelons. The oranges are the most expensive. The cantaloupes are more expensive than the watermelons.", "question": "Which of the following is true?", "options": [ "A) The cantaloupes are the second-most expensive.", "B) The oranges are the second-most expensive.", "C) The watermelons are the second-most expensive." ], "answer": "A" }, { "id": "logical_deduction_1058", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a robin, a blue jay, and a crow. The robin is to the right of the crow. The robin is to the left of the blue jay.", "question": "Which of the following is true?", "options": [ "A) The robin is the second from the left.", "B) The blue jay is the second from the left.", "C) The crow is the second from the left." ], "answer": "A" }, { "id": "logical_deduction_1059", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Ana, Mel, and Ada. Ada finished above Ana. Mel finished below Ana.", "question": "Which of the following is true?", "options": [ "A) Ana finished last.", "B) Mel finished last.", "C) Ada finished last." ], "answer": "B" }, { "id": "logical_deduction_1060", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a hummingbird, an owl, and a falcon. The falcon is to the right of the owl. The hummingbird is to the left of the owl.", "question": "Which of the following is true?", "options": [ "A) The hummingbird is the leftmost.", "B) The owl is the leftmost.", "C) The falcon is the leftmost." ], "answer": "A" }, { "id": "logical_deduction_1061", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a sedan, a minivan, and a motorcyle. The motorcyle is the second-newest. The minivan is newer than the motorcyle.", "question": "Which of the following is true?", "options": [ "A) The sedan is the oldest.", "B) The minivan is the oldest.", "C) The motorcyle is the oldest." ], "answer": "A" }, { "id": "logical_deduction_1062", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a convertible, a limousine, and a bus. The limousine is older than the bus. The bus is older than the convertible.", "question": "Which of the following is true?", "options": [ "A) The convertible is the oldest.", "B) The limousine is the oldest.", "C) The bus is the oldest." ], "answer": "B" }, { "id": "logical_deduction_1063", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a truck, a minivan, and a tractor. The truck is newer than the minivan. The minivan is newer than the tractor.", "question": "Which of the following is true?", "options": [ "A) The truck is the newest.", "B) The minivan is the newest.", "C) The tractor is the newest." ], "answer": "A" }, { "id": "logical_deduction_1064", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: an owl, a crow, and a cardinal. The owl is to the right of the cardinal. The cardinal is to the right of the crow.", "question": "Which of the following is true?", "options": [ "A) The owl is the rightmost.", "B) The crow is the rightmost.", "C) The cardinal is the rightmost." ], "answer": "A" }, { "id": "logical_deduction_1065", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Eve, Joe, and Amy. Eve finished below Amy. Eve finished above Joe.", "question": "Which of the following is true?", "options": [ "A) Eve finished last.", "B) Joe finished last.", "C) Amy finished last." ], "answer": "B" }, { "id": "logical_deduction_1066", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a red book, a blue book, and an orange book. The red book is to the left of the orange book. The orange book is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The red book is the leftmost.", "B) The blue book is the leftmost.", "C) The orange book is the leftmost." ], "answer": "A" }, { "id": "logical_deduction_1067", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a purple book, a black book, and a blue book. The purple book is to the right of the blue book. The black book is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The purple book is the leftmost.", "B) The black book is the leftmost.", "C) The blue book is the leftmost." ], "answer": "C" }, { "id": "logical_deduction_1068", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a raven, a quail, and a crow. The quail is the leftmost. The raven is the rightmost.", "question": "Which of the following is true?", "options": [ "A) The raven is the second from the left.", "B) The quail is the second from the left.", "C) The crow is the second from the left." ], "answer": "C" }, { "id": "logical_deduction_1069", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a robin, a raven, and a quail. The quail is to the left of the robin. The robin is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The robin is the leftmost.", "B) The raven is the leftmost.", "C) The quail is the leftmost." ], "answer": "C" }, { "id": "logical_deduction_1070", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a hummingbird, a blue jay, and a raven. The blue jay is to the right of the hummingbird. The raven is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The hummingbird is the leftmost.", "B) The blue jay is the leftmost.", "C) The raven is the leftmost." ], "answer": "A" }, { "id": "logical_deduction_1071", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Amy, Dan, and Mel. Mel finished above Amy. Dan finished below Amy.", "question": "Which of the following is true?", "options": [ "A) Amy finished second.", "B) Dan finished second.", "C) Mel finished second." ], "answer": "A" }, { "id": "logical_deduction_1072", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a station wagon, a minivan, and a truck. The minivan is newer than the truck. The station wagon is newer than the minivan.", "question": "Which of the following is true?", "options": [ "A) The station wagon is the second-newest.", "B) The minivan is the second-newest.", "C) The truck is the second-newest." ], "answer": "B" }, { "id": "logical_deduction_1073", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a motorcyle, a bus, and a tractor. The motorcyle is the oldest. The bus is newer than the tractor.", "question": "Which of the following is true?", "options": [ "A) The motorcyle is the oldest.", "B) The bus is the oldest.", "C) The tractor is the oldest." ], "answer": "A" }, { "id": "logical_deduction_1074", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Joe, Dan, and Eve. Eve finished above Dan. Dan finished above Joe.", "question": "Which of the following is true?", "options": [ "A) Joe finished second.", "B) Dan finished second.", "C) Eve finished second." ], "answer": "B" }, { "id": "logical_deduction_1075", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: apples, pears, and loquats. The pears are more expensive than the loquats. The pears are less expensive than the apples.", "question": "Which of the following is true?", "options": [ "A) The apples are the second-most expensive.", "B) The pears are the second-most expensive.", "C) The loquats are the second-most expensive." ], "answer": "B" }, { "id": "logical_deduction_1076", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a hatchback, a convertible, and a tractor. The convertible is older than the tractor. The hatchback is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The hatchback is the newest.", "B) The convertible is the newest.", "C) The tractor is the newest." ], "answer": "C" }, { "id": "logical_deduction_1077", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a blue jay, a falcon, and a hummingbird. The blue jay is to the right of the falcon. The hummingbird is to the left of the falcon.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the rightmost.", "B) The falcon is the rightmost.", "C) The hummingbird is the rightmost." ], "answer": "A" }, { "id": "logical_deduction_1078", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a minivan, a bus, and a sedan. The minivan is newer than the sedan. The minivan is older than the bus.", "question": "Which of the following is true?", "options": [ "A) The minivan is the newest.", "B) The bus is the newest.", "C) The sedan is the newest." ], "answer": "B" }, { "id": "logical_deduction_1079", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: cantaloupes, apples, and loquats. The loquats are more expensive than the apples. The cantaloupes are less expensive than the apples.", "question": "Which of the following is true?", "options": [ "A) The cantaloupes are the cheapest.", "B) The apples are the cheapest.", "C) The loquats are the cheapest." ], "answer": "A" }, { "id": "logical_deduction_1080", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Eve, Rob, and Mel. Rob finished below Mel. Mel finished below Eve.", "question": "Which of the following is true?", "options": [ "A) Eve finished last.", "B) Rob finished last.", "C) Mel finished last." ], "answer": "B" }, { "id": "logical_deduction_1081", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a white book, a black book, and a purple book. The black book is to the left of the purple book. The purple book is to the left of the white book.", "question": "Which of the following is true?", "options": [ "A) The white book is the second from the left.", "B) The black book is the second from the left.", "C) The purple book is the second from the left." ], "answer": "C" }, { "id": "logical_deduction_1082", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Eve, Rob, and Mel. Rob finished below Mel. Mel finished below Eve.", "question": "Which of the following is true?", "options": [ "A) Eve finished second.", "B) Rob finished second.", "C) Mel finished second." ], "answer": "C" }, { "id": "logical_deduction_1083", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: an owl, a crow, and a cardinal. The crow is to the left of the owl. The owl is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The owl is the leftmost.", "B) The crow is the leftmost.", "C) The cardinal is the leftmost." ], "answer": "B" }, { "id": "logical_deduction_1084", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: apples, pears, and loquats. The pears are more expensive than the loquats. The pears are less expensive than the apples.", "question": "Which of the following is true?", "options": [ "A) The apples are the cheapest.", "B) The pears are the cheapest.", "C) The loquats are the cheapest." ], "answer": "C" }, { "id": "logical_deduction_1085", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a green book, a red book, and a blue book. The red book is the rightmost. The blue book is to the right of the green book.", "question": "Which of the following is true?", "options": [ "A) The green book is the leftmost.", "B) The red book is the leftmost.", "C) The blue book is the leftmost." ], "answer": "A" }, { "id": "logical_deduction_1086", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: an orange book, a blue book, and a yellow book. The orange book is to the left of the blue book. The yellow book is to the right of the blue book.", "question": "Which of the following is true?", "options": [ "A) The orange book is the second from the left.", "B) The blue book is the second from the left.", "C) The yellow book is the second from the left." ], "answer": "B" }, { "id": "logical_deduction_1087", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a robin, a raven, and a quail. The quail is to the left of the robin. The robin is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The robin is the second from the left.", "B) The raven is the second from the left.", "C) The quail is the second from the left." ], "answer": "A" }, { "id": "logical_deduction_1088", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a crow, a falcon, and a raven. The crow is to the left of the raven. The falcon is to the right of the raven.", "question": "Which of the following is true?", "options": [ "A) The crow is the leftmost.", "B) The falcon is the leftmost.", "C) The raven is the leftmost." ], "answer": "A" }, { "id": "logical_deduction_1089", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Eli, Mya, and Eve. Eli finished last. Mya finished second.", "question": "Which of the following is true?", "options": [ "A) Eli finished second.", "B) Mya finished second.", "C) Eve finished second." ], "answer": "B" }, { "id": "logical_deduction_1090", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a convertible, a motorcyle, and a truck. The motorcyle is newer than the convertible. The convertible is newer than the truck.", "question": "Which of the following is true?", "options": [ "A) The convertible is the second-newest.", "B) The motorcyle is the second-newest.", "C) The truck is the second-newest." ], "answer": "A" }, { "id": "logical_deduction_1091", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a purple book, a red book, and a yellow book. The purple book is to the right of the yellow book. The yellow book is to the right of the red book.", "question": "Which of the following is true?", "options": [ "A) The purple book is the second from the left.", "B) The red book is the second from the left.", "C) The yellow book is the second from the left." ], "answer": "C" }, { "id": "logical_deduction_1092", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: peaches, mangoes, and apples. The peaches are more expensive than the apples. The mangoes are the cheapest.", "question": "Which of the following is true?", "options": [ "A) The peaches are the cheapest.", "B) The mangoes are the cheapest.", "C) The apples are the cheapest." ], "answer": "B" }, { "id": "logical_deduction_1093", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a blue jay, a falcon, and a raven. The falcon is to the left of the blue jay. The falcon is to the right of the raven.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the second from the left.", "B) The falcon is the second from the left.", "C) The raven is the second from the left." ], "answer": "B" }, { "id": "logical_deduction_1094", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: loquats, mangoes, and apples. The mangoes are more expensive than the apples. The loquats are more expensive than the mangoes.", "question": "Which of the following is true?", "options": [ "A) The loquats are the cheapest.", "B) The mangoes are the cheapest.", "C) The apples are the cheapest." ], "answer": "C" }, { "id": "logical_deduction_1095", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: apples, peaches, and mangoes. The mangoes are less expensive than the peaches. The apples are less expensive than the mangoes.", "question": "Which of the following is true?", "options": [ "A) The apples are the most expensive.", "B) The peaches are the most expensive.", "C) The mangoes are the most expensive." ], "answer": "B" }, { "id": "logical_deduction_1096", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: plums, apples, and loquats. The loquats are the cheapest. The plums are less expensive than the apples.", "question": "Which of the following is true?", "options": [ "A) The plums are the second-most expensive.", "B) The apples are the second-most expensive.", "C) The loquats are the second-most expensive." ], "answer": "A" }, { "id": "logical_deduction_1097", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a hummingbird, a quail, and a crow. The crow is the second from the left. The hummingbird is to the left of the crow.", "question": "Which of the following is true?", "options": [ "A) The hummingbird is the rightmost.", "B) The quail is the rightmost.", "C) The crow is the rightmost." ], "answer": "B" }, { "id": "logical_deduction_1098", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Ana, Rob, and Joe. Joe finished above Ana. Rob finished above Joe.", "question": "Which of the following is true?", "options": [ "A) Ana finished last.", "B) Rob finished last.", "C) Joe finished last." ], "answer": "A" }, { "id": "logical_deduction_1099", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a brown book, a yellow book, and an orange book. The yellow book is the leftmost. The orange book is to the right of the brown book.", "question": "Which of the following is true?", "options": [ "A) The brown book is the rightmost.", "B) The yellow book is the rightmost.", "C) The orange book is the rightmost." ], "answer": "C" }, { "id": "logical_deduction_1100", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: pears, plums, and kiwis. The pears are less expensive than the plums. The kiwis are less expensive than the pears.", "question": "Which of the following is true?", "options": [ "A) The pears are the most expensive.", "B) The plums are the most expensive.", "C) The kiwis are the most expensive." ], "answer": "B" }, { "id": "logical_deduction_1101", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: an owl, a crow, and a cardinal. The owl is to the right of the cardinal. The cardinal is to the right of the crow.", "question": "Which of the following is true?", "options": [ "A) The owl is the second from the left.", "B) The crow is the second from the left.", "C) The cardinal is the second from the left." ], "answer": "C" }, { "id": "logical_deduction_1102", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a yellow book, a brown book, and a red book. The red book is to the left of the brown book. The yellow book is to the right of the brown book.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the leftmost.", "B) The brown book is the leftmost.", "C) The red book is the leftmost." ], "answer": "C" }, { "id": "logical_deduction_1103", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Joe, Eve, and Amy. Amy finished above Eve. Joe finished first.", "question": "Which of the following is true?", "options": [ "A) Joe finished first.", "B) Eve finished first.", "C) Amy finished first." ], "answer": "A" }, { "id": "logical_deduction_1104", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a gray book, an orange book, and a brown book. The orange book is the leftmost. The gray book is to the right of the brown book.", "question": "Which of the following is true?", "options": [ "A) The gray book is the leftmost.", "B) The orange book is the leftmost.", "C) The brown book is the leftmost." ], "answer": "B" }, { "id": "logical_deduction_1105", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Amy, Ada, and Joe. Joe finished below Ada. Amy finished above Ada.", "question": "Which of the following is true?", "options": [ "A) Amy finished last.", "B) Ada finished last.", "C) Joe finished last." ], "answer": "C" }, { "id": "logical_deduction_1106", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: peaches, pears, and mangoes. The mangoes are less expensive than the peaches. The mangoes are more expensive than the pears.", "question": "Which of the following is true?", "options": [ "A) The peaches are the second-most expensive.", "B) The pears are the second-most expensive.", "C) The mangoes are the second-most expensive." ], "answer": "C" }, { "id": "logical_deduction_1107", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a black book, an orange book, and a blue book. The blue book is to the right of the orange book. The orange book is to the right of the black book.", "question": "Which of the following is true?", "options": [ "A) The black book is the leftmost.", "B) The orange book is the leftmost.", "C) The blue book is the leftmost." ], "answer": "A" }, { "id": "logical_deduction_1108", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a motorcyle, a limousine, and a convertible. The motorcyle is newer than the limousine. The convertible is newer than the motorcyle.", "question": "Which of the following is true?", "options": [ "A) The motorcyle is the second-newest.", "B) The limousine is the second-newest.", "C) The convertible is the second-newest." ], "answer": "A" }, { "id": "logical_deduction_1109", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Ana, Rob, and Joe. Joe finished above Ana. Rob finished above Joe.", "question": "Which of the following is true?", "options": [ "A) Ana finished first.", "B) Rob finished first.", "C) Joe finished first." ], "answer": "B" }, { "id": "logical_deduction_1110", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: kiwis, oranges, and watermelons. The oranges are more expensive than the kiwis. The oranges are less expensive than the watermelons.", "question": "Which of the following is true?", "options": [ "A) The kiwis are the second-most expensive.", "B) The oranges are the second-most expensive.", "C) The watermelons are the second-most expensive." ], "answer": "B" }, { "id": "logical_deduction_1111", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: an owl, a crow, and a cardinal. The owl is to the right of the cardinal. The cardinal is to the right of the crow.", "question": "Which of the following is true?", "options": [ "A) The owl is the leftmost.", "B) The crow is the leftmost.", "C) The cardinal is the leftmost." ], "answer": "B" }, { "id": "logical_deduction_1112", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a convertible, a tractor, and a hatchback. The hatchback is older than the convertible. The tractor is the newest.", "question": "Which of the following is true?", "options": [ "A) The convertible is the oldest.", "B) The tractor is the oldest.", "C) The hatchback is the oldest." ], "answer": "C" }, { "id": "logical_deduction_1113", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a robin, a blue jay, and a crow. The robin is to the right of the crow. The robin is to the left of the blue jay.", "question": "Which of the following is true?", "options": [ "A) The robin is the leftmost.", "B) The blue jay is the leftmost.", "C) The crow is the leftmost." ], "answer": "C" }, { "id": "logical_deduction_1114", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a limousine, a truck, and a minivan. The minivan is older than the truck. The limousine is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The limousine is the newest.", "B) The truck is the newest.", "C) The minivan is the newest." ], "answer": "B" }, { "id": "logical_deduction_1115", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a hatchback, a limousine, and a station wagon. The station wagon is older than the hatchback. The hatchback is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The hatchback is the second-newest.", "B) The limousine is the second-newest.", "C) The station wagon is the second-newest." ], "answer": "A" }, { "id": "logical_deduction_1116", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a yellow book, a brown book, and a red book. The red book is to the left of the brown book. The yellow book is to the right of the brown book.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the rightmost.", "B) The brown book is the rightmost.", "C) The red book is the rightmost." ], "answer": "A" }, { "id": "logical_deduction_1117", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a black book, an orange book, and a blue book. The blue book is to the right of the orange book. The orange book is to the right of the black book.", "question": "Which of the following is true?", "options": [ "A) The black book is the rightmost.", "B) The orange book is the rightmost.", "C) The blue book is the rightmost." ], "answer": "C" }, { "id": "logical_deduction_1118", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Eve, Amy, and Rob. Amy finished above Rob. Eve finished above Amy.", "question": "Which of the following is true?", "options": [ "A) Eve finished first.", "B) Amy finished first.", "C) Rob finished first." ], "answer": "A" }, { "id": "logical_deduction_1119", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a cardinal, a hawk, and a hummingbird. The hummingbird is to the right of the hawk. The cardinal is to the left of the hawk.", "question": "Which of the following is true?", "options": [ "A) The cardinal is the second from the left.", "B) The hawk is the second from the left.", "C) The hummingbird is the second from the left." ], "answer": "B" }, { "id": "logical_deduction_1120", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: oranges, watermelons, and pears. The oranges are the second-most expensive. The pears are more expensive than the watermelons.", "question": "Which of the following is true?", "options": [ "A) The oranges are the second-most expensive.", "B) The watermelons are the second-most expensive.", "C) The pears are the second-most expensive." ], "answer": "A" }, { "id": "logical_deduction_1121", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: kiwis, oranges, and watermelons. The oranges are more expensive than the kiwis. The oranges are less expensive than the watermelons.", "question": "Which of the following is true?", "options": [ "A) The kiwis are the most expensive.", "B) The oranges are the most expensive.", "C) The watermelons are the most expensive." ], "answer": "C" }, { "id": "logical_deduction_1122", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Ana, Amy, and Eli. Eli finished second. Eli finished below Amy.", "question": "Which of the following is true?", "options": [ "A) Ana finished second.", "B) Amy finished second.", "C) Eli finished second." ], "answer": "C" }, { "id": "logical_deduction_1123", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: apples, pears, and plums. The pears are less expensive than the plums. The pears are more expensive than the apples.", "question": "Which of the following is true?", "options": [ "A) The apples are the second-most expensive.", "B) The pears are the second-most expensive.", "C) The plums are the second-most expensive." ], "answer": "B" }, { "id": "logical_deduction_1124", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a hummingbird, an owl, and a falcon. The falcon is to the right of the owl. The hummingbird is to the left of the owl.", "question": "Which of the following is true?", "options": [ "A) The hummingbird is the rightmost.", "B) The owl is the rightmost.", "C) The falcon is the rightmost." ], "answer": "C" }, { "id": "logical_deduction_1125", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a sedan, a convertible, and a truck. The truck is the newest. The sedan is older than the convertible.", "question": "Which of the following is true?", "options": [ "A) The sedan is the oldest.", "B) The convertible is the oldest.", "C) The truck is the oldest." ], "answer": "A" }, { "id": "logical_deduction_1126", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Amy, Ana, and Joe. Amy finished below Ana. Ana finished below Joe.", "question": "Which of the following is true?", "options": [ "A) Amy finished last.", "B) Ana finished last.", "C) Joe finished last." ], "answer": "A" }, { "id": "logical_deduction_1127", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a crow, a falcon, and a hummingbird. The crow is to the left of the falcon. The hummingbird is to the left of the crow.", "question": "Which of the following is true?", "options": [ "A) The crow is the leftmost.", "B) The falcon is the leftmost.", "C) The hummingbird is the leftmost." ], "answer": "C" }, { "id": "logical_deduction_1128", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: pears, plums, and kiwis. The pears are less expensive than the plums. The kiwis are less expensive than the pears.", "question": "Which of the following is true?", "options": [ "A) The pears are the cheapest.", "B) The plums are the cheapest.", "C) The kiwis are the cheapest." ], "answer": "C" }, { "id": "logical_deduction_1129", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Ana, Mel, and Ada. Ada finished above Ana. Mel finished below Ana.", "question": "Which of the following is true?", "options": [ "A) Ana finished second.", "B) Mel finished second.", "C) Ada finished second." ], "answer": "A" }, { "id": "logical_deduction_1130", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a yellow book, a green book, and a red book. The red book is to the left of the green book. The yellow book is to the left of the red book.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the leftmost.", "B) The green book is the leftmost.", "C) The red book is the leftmost." ], "answer": "A" }, { "id": "logical_deduction_1131", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a yellow book, a brown book, and a red book. The red book is to the left of the brown book. The yellow book is to the right of the brown book.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the second from the left.", "B) The brown book is the second from the left.", "C) The red book is the second from the left." ], "answer": "B" }, { "id": "logical_deduction_1132", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: loquats, watermelons, and cantaloupes. The watermelons are the second-most expensive. The loquats are more expensive than the cantaloupes.", "question": "Which of the following is true?", "options": [ "A) The loquats are the second-most expensive.", "B) The watermelons are the second-most expensive.", "C) The cantaloupes are the second-most expensive." ], "answer": "B" }, { "id": "logical_deduction_1133", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a purple book, a black book, and a blue book. The purple book is to the right of the blue book. The black book is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The purple book is the rightmost.", "B) The black book is the rightmost.", "C) The blue book is the rightmost." ], "answer": "A" }, { "id": "logical_deduction_1134", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Amy, Ada, and Joe. Joe finished below Ada. Amy finished above Ada.", "question": "Which of the following is true?", "options": [ "A) Amy finished first.", "B) Ada finished first.", "C) Joe finished first." ], "answer": "A" }, { "id": "logical_deduction_1135", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Joe, Eve, and Amy. Amy finished above Eve. Joe finished first.", "question": "Which of the following is true?", "options": [ "A) Joe finished second.", "B) Eve finished second.", "C) Amy finished second." ], "answer": "C" }, { "id": "logical_deduction_1136", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a station wagon, a truck, and a motorcyle. The truck is newer than the station wagon. The motorcyle is the oldest.", "question": "Which of the following is true?", "options": [ "A) The station wagon is the second-newest.", "B) The truck is the second-newest.", "C) The motorcyle is the second-newest." ], "answer": "A" }, { "id": "logical_deduction_1137", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a convertible, a limousine, and a bus. The limousine is older than the bus. The bus is older than the convertible.", "question": "Which of the following is true?", "options": [ "A) The convertible is the second-newest.", "B) The limousine is the second-newest.", "C) The bus is the second-newest." ], "answer": "C" }, { "id": "logical_deduction_1138", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a hawk, a cardinal, and a falcon. The hawk is to the left of the cardinal. The hawk is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The hawk is the rightmost.", "B) The cardinal is the rightmost.", "C) The falcon is the rightmost." ], "answer": "B" }, { "id": "logical_deduction_1139", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a limousine, a truck, and a minivan. The minivan is older than the truck. The limousine is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The limousine is the second-newest.", "B) The truck is the second-newest.", "C) The minivan is the second-newest." ], "answer": "A" }, { "id": "logical_deduction_1140", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a bus, a sedan, and a truck. The truck is older than the bus. The bus is older than the sedan.", "question": "Which of the following is true?", "options": [ "A) The bus is the oldest.", "B) The sedan is the oldest.", "C) The truck is the oldest." ], "answer": "C" }, { "id": "logical_deduction_1141", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a crow, a falcon, and a hummingbird. The crow is to the left of the falcon. The hummingbird is to the left of the crow.", "question": "Which of the following is true?", "options": [ "A) The crow is the second from the left.", "B) The falcon is the second from the left.", "C) The hummingbird is the second from the left." ], "answer": "A" }, { "id": "logical_deduction_1142", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Ana, Dan, and Mel. Dan finished second. Mel finished first.", "question": "Which of the following is true?", "options": [ "A) Ana finished last.", "B) Dan finished last.", "C) Mel finished last." ], "answer": "A" }, { "id": "logical_deduction_1143", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a station wagon, a truck, and a motorcyle. The truck is newer than the station wagon. The motorcyle is the oldest.", "question": "Which of the following is true?", "options": [ "A) The station wagon is the oldest.", "B) The truck is the oldest.", "C) The motorcyle is the oldest." ], "answer": "C" }, { "id": "logical_deduction_1144", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Dan, Mel, and Amy. Dan finished above Amy. Amy finished above Mel.", "question": "Which of the following is true?", "options": [ "A) Dan finished last.", "B) Mel finished last.", "C) Amy finished last." ], "answer": "B" }, { "id": "logical_deduction_1145", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Eve, Amy, and Rob. Amy finished above Rob. Eve finished above Amy.", "question": "Which of the following is true?", "options": [ "A) Eve finished last.", "B) Amy finished last.", "C) Rob finished last." ], "answer": "C" }, { "id": "logical_deduction_1146", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: cantaloupes, apples, and loquats. The loquats are more expensive than the apples. The cantaloupes are less expensive than the apples.", "question": "Which of the following is true?", "options": [ "A) The cantaloupes are the second-most expensive.", "B) The apples are the second-most expensive.", "C) The loquats are the second-most expensive." ], "answer": "B" }, { "id": "logical_deduction_1147", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a red book, a blue book, and an orange book. The red book is to the left of the orange book. The orange book is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The red book is the rightmost.", "B) The blue book is the rightmost.", "C) The orange book is the rightmost." ], "answer": "B" }, { "id": "logical_deduction_1148", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a robin, an owl, and a hawk. The robin is to the right of the hawk. The owl is the leftmost.", "question": "Which of the following is true?", "options": [ "A) The robin is the second from the left.", "B) The owl is the second from the left.", "C) The hawk is the second from the left." ], "answer": "C" }, { "id": "logical_deduction_1149", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a blue book, an orange book, and a red book. The blue book is the rightmost. The orange book is the leftmost.", "question": "Which of the following is true?", "options": [ "A) The blue book is the leftmost.", "B) The orange book is the leftmost.", "C) The red book is the leftmost." ], "answer": "B" }, { "id": "logical_deduction_1150", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a falcon, an owl, and a raven. The raven is to the left of the owl. The falcon is the leftmost.", "question": "Which of the following is true?", "options": [ "A) The falcon is the leftmost.", "B) The owl is the leftmost.", "C) The raven is the leftmost." ], "answer": "A" }, { "id": "logical_deduction_1151", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Rob, Mel, and Joe. Joe finished below Mel. Rob finished below Joe.", "question": "Which of the following is true?", "options": [ "A) Rob finished last.", "B) Mel finished last.", "C) Joe finished last." ], "answer": "A" }, { "id": "logical_deduction_1152", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: watermelons, apples, and mangoes. The apples are less expensive than the mangoes. The mangoes are less expensive than the watermelons.", "question": "Which of the following is true?", "options": [ "A) The watermelons are the most expensive.", "B) The apples are the most expensive.", "C) The mangoes are the most expensive." ], "answer": "A" }, { "id": "logical_deduction_1153", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Amy, Ada, and Joe. Joe finished below Ada. Amy finished above Ada.", "question": "Which of the following is true?", "options": [ "A) Amy finished second.", "B) Ada finished second.", "C) Joe finished second." ], "answer": "B" }, { "id": "logical_deduction_1154", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Ana, Amy, and Eli. Eli finished second. Eli finished below Amy.", "question": "Which of the following is true?", "options": [ "A) Ana finished last.", "B) Amy finished last.", "C) Eli finished last." ], "answer": "A" }, { "id": "logical_deduction_1155", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a sedan, a convertible, and a truck. The truck is the newest. The sedan is older than the convertible.", "question": "Which of the following is true?", "options": [ "A) The sedan is the second-newest.", "B) The convertible is the second-newest.", "C) The truck is the second-newest." ], "answer": "B" }, { "id": "logical_deduction_1156", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a limousine, a truck, and a minivan. The minivan is older than the truck. The limousine is the second-newest.", "question": "Which of the following is true?", "options": [ "A) The limousine is the oldest.", "B) The truck is the oldest.", "C) The minivan is the oldest." ], "answer": "C" }, { "id": "logical_deduction_1157", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: cantaloupes, watermelons, and mangoes. The mangoes are the cheapest. The cantaloupes are the second-most expensive.", "question": "Which of the following is true?", "options": [ "A) The cantaloupes are the most expensive.", "B) The watermelons are the most expensive.", "C) The mangoes are the most expensive." ], "answer": "B" }, { "id": "logical_deduction_1158", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Eve, Joe, and Amy. Eve finished below Amy. Eve finished above Joe.", "question": "Which of the following is true?", "options": [ "A) Eve finished second.", "B) Joe finished second.", "C) Amy finished second." ], "answer": "A" }, { "id": "logical_deduction_1159", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a green book, a brown book, and an orange book. The brown book is to the left of the orange book. The green book is to the left of the brown book.", "question": "Which of the following is true?", "options": [ "A) The green book is the leftmost.", "B) The brown book is the leftmost.", "C) The orange book is the leftmost." ], "answer": "A" }, { "id": "logical_deduction_1160", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: peaches, pears, and mangoes. The mangoes are less expensive than the pears. The peaches are the cheapest.", "question": "Which of the following is true?", "options": [ "A) The peaches are the second-most expensive.", "B) The pears are the second-most expensive.", "C) The mangoes are the second-most expensive." ], "answer": "C" }, { "id": "logical_deduction_1161", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: apples, peaches, and loquats. The loquats are less expensive than the apples. The peaches are more expensive than the apples.", "question": "Which of the following is true?", "options": [ "A) The apples are the cheapest.", "B) The peaches are the cheapest.", "C) The loquats are the cheapest." ], "answer": "C" }, { "id": "logical_deduction_1162", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a blue jay, a falcon, and a hummingbird. The blue jay is to the right of the falcon. The hummingbird is to the left of the falcon.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the leftmost.", "B) The falcon is the leftmost.", "C) The hummingbird is the leftmost." ], "answer": "C" }, { "id": "logical_deduction_1163", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a crow, a falcon, and a raven. The crow is to the left of the raven. The falcon is to the right of the raven.", "question": "Which of the following is true?", "options": [ "A) The crow is the rightmost.", "B) The falcon is the rightmost.", "C) The raven is the rightmost." ], "answer": "B" }, { "id": "logical_deduction_1164", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: an orange book, a blue book, and a yellow book. The orange book is to the left of the blue book. The yellow book is to the right of the blue book.", "question": "Which of the following is true?", "options": [ "A) The orange book is the rightmost.", "B) The blue book is the rightmost.", "C) The yellow book is the rightmost." ], "answer": "C" }, { "id": "logical_deduction_1165", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: peaches, pears, and mangoes. The mangoes are less expensive than the peaches. The mangoes are more expensive than the pears.", "question": "Which of the following is true?", "options": [ "A) The peaches are the cheapest.", "B) The pears are the cheapest.", "C) The mangoes are the cheapest." ], "answer": "B" }, { "id": "logical_deduction_1166", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a white book, a green book, and an orange book. The green book is to the right of the white book. The orange book is the rightmost.", "question": "Which of the following is true?", "options": [ "A) The white book is the rightmost.", "B) The green book is the rightmost.", "C) The orange book is the rightmost." ], "answer": "C" }, { "id": "logical_deduction_1167", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a sedan, a convertible, and a truck. The truck is the newest. The sedan is older than the convertible.", "question": "Which of the following is true?", "options": [ "A) The sedan is the newest.", "B) The convertible is the newest.", "C) The truck is the newest." ], "answer": "C" }, { "id": "logical_deduction_1168", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a truck, a minivan, and a tractor. The truck is newer than the minivan. The minivan is newer than the tractor.", "question": "Which of the following is true?", "options": [ "A) The truck is the second-newest.", "B) The minivan is the second-newest.", "C) The tractor is the second-newest." ], "answer": "B" }, { "id": "logical_deduction_1169", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a blue jay, a falcon, and a raven. The falcon is to the left of the blue jay. The falcon is to the right of the raven.", "question": "Which of the following is true?", "options": [ "A) The blue jay is the rightmost.", "B) The falcon is the rightmost.", "C) The raven is the rightmost." ], "answer": "A" }, { "id": "logical_deduction_1170", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Ana, Rob, and Joe. Joe finished above Ana. Rob finished second.", "question": "Which of the following is true?", "options": [ "A) Ana finished second.", "B) Rob finished second.", "C) Joe finished second." ], "answer": "B" }, { "id": "logical_deduction_1171", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a green book, a brown book, and an orange book. The brown book is to the left of the orange book. The green book is to the left of the brown book.", "question": "Which of the following is true?", "options": [ "A) The green book is the rightmost.", "B) The brown book is the rightmost.", "C) The orange book is the rightmost." ], "answer": "C" }, { "id": "logical_deduction_1172", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: kiwis, loquats, and cantaloupes. The kiwis are less expensive than the loquats. The cantaloupes are less expensive than the kiwis.", "question": "Which of the following is true?", "options": [ "A) The kiwis are the cheapest.", "B) The loquats are the cheapest.", "C) The cantaloupes are the cheapest." ], "answer": "C" }, { "id": "logical_deduction_1173", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: oranges, watermelons, and pears. The oranges are the second-most expensive. The pears are more expensive than the watermelons.", "question": "Which of the following is true?", "options": [ "A) The oranges are the cheapest.", "B) The watermelons are the cheapest.", "C) The pears are the cheapest." ], "answer": "B" }, { "id": "logical_deduction_1174", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Rob, Mel, and Joe. Joe finished below Mel. Rob finished below Joe.", "question": "Which of the following is true?", "options": [ "A) Rob finished second.", "B) Mel finished second.", "C) Joe finished second." ], "answer": "C" }, { "id": "logical_deduction_1175", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a raven, a quail, and a crow. The quail is the leftmost. The raven is the rightmost.", "question": "Which of the following is true?", "options": [ "A) The raven is the leftmost.", "B) The quail is the leftmost.", "C) The crow is the leftmost." ], "answer": "B" }, { "id": "logical_deduction_1176", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: cantaloupes, oranges, and watermelons. The oranges are the most expensive. The cantaloupes are more expensive than the watermelons.", "question": "Which of the following is true?", "options": [ "A) The cantaloupes are the most expensive.", "B) The oranges are the most expensive.", "C) The watermelons are the most expensive." ], "answer": "B" }, { "id": "logical_deduction_1177", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a falcon, an owl, and a raven. The raven is to the left of the owl. The falcon is the leftmost.", "question": "Which of the following is true?", "options": [ "A) The falcon is the second from the left.", "B) The owl is the second from the left.", "C) The raven is the second from the left." ], "answer": "C" }, { "id": "logical_deduction_1178", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a tractor, a station wagon, and a limousine. The tractor is newer than the limousine. The station wagon is the newest.", "question": "Which of the following is true?", "options": [ "A) The tractor is the newest.", "B) The station wagon is the newest.", "C) The limousine is the newest." ], "answer": "B" }, { "id": "logical_deduction_1179", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a robin, a raven, and a quail. The quail is to the left of the robin. The robin is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The robin is the rightmost.", "B) The raven is the rightmost.", "C) The quail is the rightmost." ], "answer": "B" }, { "id": "logical_deduction_1180", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a station wagon, a truck, and a motorcyle. The truck is newer than the station wagon. The motorcyle is the oldest.", "question": "Which of the following is true?", "options": [ "A) The station wagon is the newest.", "B) The truck is the newest.", "C) The motorcyle is the newest." ], "answer": "B" }, { "id": "logical_deduction_1181", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Dan, Mel, and Amy. Dan finished above Amy. Amy finished above Mel.", "question": "Which of the following is true?", "options": [ "A) Dan finished second.", "B) Mel finished second.", "C) Amy finished second." ], "answer": "C" }, { "id": "logical_deduction_1182", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a blue book, an orange book, and a green book. The green book is the leftmost. The orange book is to the left of the blue book.", "question": "Which of the following is true?", "options": [ "A) The blue book is the second from the left.", "B) The orange book is the second from the left.", "C) The green book is the second from the left." ], "answer": "B" }, { "id": "logical_deduction_1183", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a motorcyle, a limousine, and a convertible. The motorcyle is newer than the limousine. The convertible is newer than the motorcyle.", "question": "Which of the following is true?", "options": [ "A) The motorcyle is the newest.", "B) The limousine is the newest.", "C) The convertible is the newest." ], "answer": "C" }, { "id": "logical_deduction_1184", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Joe, Dan, and Eve. Eve finished above Dan. Dan finished above Joe.", "question": "Which of the following is true?", "options": [ "A) Joe finished last.", "B) Dan finished last.", "C) Eve finished last." ], "answer": "A" }, { "id": "logical_deduction_1185", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: an orange book, a yellow book, and a blue book. The blue book is to the right of the yellow book. The orange book is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The orange book is the leftmost.", "B) The yellow book is the leftmost.", "C) The blue book is the leftmost." ], "answer": "B" }, { "id": "logical_deduction_1186", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Ana, Amy, and Eli. Eli finished second. Eli finished below Amy.", "question": "Which of the following is true?", "options": [ "A) Ana finished first.", "B) Amy finished first.", "C) Eli finished first." ], "answer": "B" }, { "id": "logical_deduction_1187", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: apples, pears, and plums. The pears are less expensive than the plums. The pears are more expensive than the apples.", "question": "Which of the following is true?", "options": [ "A) The apples are the most expensive.", "B) The pears are the most expensive.", "C) The plums are the most expensive." ], "answer": "C" }, { "id": "logical_deduction_1188", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Eli, Mya, and Eve. Eli finished last. Mya finished second.", "question": "Which of the following is true?", "options": [ "A) Eli finished last.", "B) Mya finished last.", "C) Eve finished last." ], "answer": "A" }, { "id": "logical_deduction_1189", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a robin, an owl, and a hawk. The robin is to the right of the hawk. The owl is the leftmost.", "question": "Which of the following is true?", "options": [ "A) The robin is the rightmost.", "B) The owl is the rightmost.", "C) The hawk is the rightmost." ], "answer": "A" }, { "id": "logical_deduction_1190", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Mel, Ada, and Ana. Mel finished last. Ana finished second.", "question": "Which of the following is true?", "options": [ "A) Mel finished first.", "B) Ada finished first.", "C) Ana finished first." ], "answer": "B" }, { "id": "logical_deduction_1191", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: an orange book, a white book, and a purple book. The orange book is to the left of the white book. The purple book is the rightmost.", "question": "Which of the following is true?", "options": [ "A) The orange book is the rightmost.", "B) The white book is the rightmost.", "C) The purple book is the rightmost." ], "answer": "C" }, { "id": "logical_deduction_1192", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a hawk, a cardinal, and a falcon. The hawk is to the left of the cardinal. The hawk is the second from the left.", "question": "Which of the following is true?", "options": [ "A) The hawk is the leftmost.", "B) The cardinal is the leftmost.", "C) The falcon is the leftmost." ], "answer": "C" }, { "id": "logical_deduction_1193", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a hummingbird, a quail, and a crow. The crow is the second from the left. The hummingbird is to the left of the crow.", "question": "Which of the following is true?", "options": [ "A) The hummingbird is the second from the left.", "B) The quail is the second from the left.", "C) The crow is the second from the left." ], "answer": "C" }, { "id": "logical_deduction_1194", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a shelf, there are three books: a yellow book, a green book, and a red book. The red book is to the left of the green book. The yellow book is to the left of the red book.", "question": "Which of the following is true?", "options": [ "A) The yellow book is the rightmost.", "B) The green book is the rightmost.", "C) The red book is the rightmost." ], "answer": "B" }, { "id": "logical_deduction_1195", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a hummingbird, a quail, and a crow. The crow is the second from the left. The hummingbird is to the left of the crow.", "question": "Which of the following is true?", "options": [ "A) The hummingbird is the leftmost.", "B) The quail is the leftmost.", "C) The crow is the leftmost." ], "answer": "A" }, { "id": "logical_deduction_1196", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a sedan, a minivan, and a motorcyle. The motorcyle is the second-newest. The minivan is newer than the motorcyle.", "question": "Which of the following is true?", "options": [ "A) The sedan is the newest.", "B) The minivan is the newest.", "C) The motorcyle is the newest." ], "answer": "B" }, { "id": "logical_deduction_1197", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn a golf tournament, there were three golfers: Rob, Mel, and Joe. Joe finished below Mel. Rob finished below Joe.", "question": "Which of the following is true?", "options": [ "A) Rob finished first.", "B) Mel finished first.", "C) Joe finished first." ], "answer": "B" }, { "id": "logical_deduction_1198", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are three birds: a hawk, a crow, and a raven. The raven is to the right of the hawk. The crow is the rightmost.", "question": "Which of the following is true?", "options": [ "A) The hawk is the rightmost.", "B) The crow is the rightmost.", "C) The raven is the rightmost." ], "answer": "B" }, { "id": "logical_deduction_1199", "context": "The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nA fruit stand sells three fruits: peaches, mangoes, and apples. The peaches are more expensive than the apples. The mangoes are the cheapest.", "question": "Which of the following is true?", "options": [ "A) The peaches are the most expensive.", "B) The mangoes are the most expensive.", "C) The apples are the most expensive." ], "answer": "A" } ] ================================================ FILE: data/ProntoQA/dev.json ================================================ [ { "id": "ProntoQA_1", "context": "Jompuses are not shy. Jompuses are yumpuses. Each yumpus is aggressive. Each yumpus is a dumpus. Dumpuses are not wooden. Dumpuses are wumpuses. Wumpuses are red. Every wumpus is an impus. Each impus is opaque. Impuses are tumpuses. Numpuses are sour. Tumpuses are not sour. Tumpuses are vumpuses. Vumpuses are earthy. Every vumpus is a zumpus. Zumpuses are small. Zumpuses are rompuses. Max is a yumpus.", "question": "Is the following statement true or false? Max is sour.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Max is a yumpus.", "Each yumpus is a dumpus.", "Max is a dumpus.", "Dumpuses are wumpuses.", "Max is a wumpus.", "Every wumpus is an impus.", "Max is an impus.", "Impuses are tumpuses.", "Max is a tumpus.", "Tumpuses are not sour.", "Max is not sour." ] }, { "id": "ProntoQA_2", "context": "Every tumpus is not angry. Tumpuses are rompuses. Every numpus is not bright. Rompuses are not luminous. Rompuses are yumpuses. Yumpuses are transparent. Yumpuses are zumpuses. Each zumpus is not bitter. Zumpuses are impuses. Impuses are red. Each impus is a dumpus. Every dumpus is happy. Each dumpus is a vumpus. Vumpuses are bright. Every vumpus is a jompus. Jompuses are large. Each jompus is a wumpus. Stella is a yumpus.", "question": "Is the following statement true or false? Stella is bright.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Stella is a yumpus.", "Yumpuses are zumpuses.", "Stella is a zumpus.", "Zumpuses are impuses.", "Stella is an impus.", "Each impus is a dumpus.", "Stella is a dumpus.", "Each dumpus is a vumpus.", "Stella is a vumpus.", "Vumpuses are bright.", "Stella is bright." ] }, { "id": "ProntoQA_3", "context": "Vumpuses are floral. Vumpuses are tumpuses. Tumpuses are brown. Each tumpus is a wumpus. Wumpuses are small. Each wumpus is a rompus. Each zumpus is metallic. Every rompus is happy. Rompuses are impuses. Each impus is amenable. Each impus is a dumpus. Every dumpus is not metallic. Dumpuses are numpuses. Each numpus is bitter. Each numpus is a jompus. Every jompus is cold. Each jompus is a yumpus. Wren is a tumpus.", "question": "Is the following statement true or false? Wren is not metallic.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Wren is a tumpus.", "Each tumpus is a wumpus.", "Wren is a wumpus.", "Each wumpus is a rompus.", "Wren is a rompus.", "Rompuses are impuses.", "Wren is an impus.", "Each impus is a dumpus.", "Wren is a dumpus.", "Every dumpus is not metallic.", "Wren is not metallic." ] }, { "id": "ProntoQA_4", "context": "Rompuses are spicy. Every rompus is an impus. Yumpuses are not small. Impuses are orange. Impuses are zumpuses. Zumpuses are not hot. Zumpuses are numpuses. Numpuses are metallic. Numpuses are wumpuses. Every wumpus is not kind. Each wumpus is a dumpus. Each dumpus is not bright. Every dumpus is a jompus. Jompuses are small. Jompuses are vumpuses. Each vumpus is not shy. Every vumpus is a tumpus. Alex is a zumpus.", "question": "Is the following statement true or false? Alex is not small.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Alex is a zumpus.", "Zumpuses are numpuses.", "Alex is a numpus.", "Numpuses are wumpuses.", "Alex is a wumpus.", "Each wumpus is a dumpus.", "Alex is a dumpus.", "Every dumpus is a jompus.", "Alex is a jompus.", "Jompuses are small.", "Alex is small." ] }, { "id": "ProntoQA_5", "context": "Rompuses are mean. Rompuses are zumpuses. Each zumpus is not happy. Each zumpus is a numpus. Each numpus is not temperate. Each numpus is a tumpus. Tumpuses are not large. Tumpuses are yumpuses. Every yumpus is earthy. Each yumpus is a jompus. Jompuses are blue. Every jompus is a wumpus. Wumpuses are not dull. Wumpuses are impuses. Each vumpus is dull. Impuses are sour. Impuses are dumpuses. Alex is a numpus.", "question": "Is the following statement true or false? Alex is not dull.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Alex is a numpus.", "Each numpus is a tumpus.", "Alex is a tumpus.", "Tumpuses are yumpuses.", "Alex is a yumpus.", "Each yumpus is a jompus.", "Alex is a jompus.", "Every jompus is a wumpus.", "Alex is a wumpus.", "Wumpuses are not dull.", "Alex is not dull." ] }, { "id": "ProntoQA_6", "context": "Every tumpus is large. Tumpuses are wumpuses. Each wumpus is not opaque. Every dumpus is not dull. Every wumpus is a rompus. Every rompus is brown. Each rompus is a vumpus. Each vumpus is temperate. Vumpuses are jompuses. Jompuses are dull. Jompuses are numpuses. Every numpus is liquid. Each numpus is an impus. Impuses are spicy. Every impus is a yumpus. Every yumpus is not nervous. Every yumpus is a zumpus. Wren is a tumpus.", "question": "Is the following statement true or false? Wren is dull.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Wren is a tumpus.", "Tumpuses are wumpuses.", "Wren is a wumpus.", "Every wumpus is a rompus.", "Wren is a rompus.", "Each rompus is a vumpus.", "Wren is a vumpus.", "Vumpuses are jompuses.", "Wren is a jompus.", "Jompuses are dull.", "Wren is dull." ] }, { "id": "ProntoQA_7", "context": "Every rompus is orange. Every rompus is an impus. Vumpuses are happy. Every impus is spicy. Every impus is a wumpus. Wumpuses are transparent. Wumpuses are numpuses. Every numpus is not kind. Numpuses are tumpuses. Each tumpus is not bright. Tumpuses are yumpuses. Every yumpus is not liquid. Yumpuses are dumpuses. Each dumpus is not happy. Dumpuses are zumpuses. Every zumpus is earthy. Each zumpus is a jompus. Stella is a wumpus.", "question": "Is the following statement true or false? Stella is happy.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Stella is a wumpus.", "Wumpuses are numpuses.", "Stella is a numpus.", "Numpuses are tumpuses.", "Stella is a tumpus.", "Tumpuses are yumpuses.", "Stella is a yumpus.", "Yumpuses are dumpuses.", "Stella is a dumpus.", "Each dumpus is not happy.", "Stella is not happy." ] }, { "id": "ProntoQA_8", "context": "Every jompus is sour. Each jompus is a rompus. Rompuses are not kind. Every rompus is a zumpus. Every zumpus is feisty. Zumpuses are tumpuses. Tumpuses are small. Tumpuses are wumpuses. Wumpuses are opaque. Wumpuses are impuses. Every yumpus is hot. Impuses are brown. Impuses are dumpuses. Dumpuses are not hot. Every dumpus is a vumpus. Each vumpus is dull. Vumpuses are numpuses. Alex is a zumpus.", "question": "Is the following statement true or false? Alex is hot.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Alex is a zumpus.", "Zumpuses are tumpuses.", "Alex is a tumpus.", "Tumpuses are wumpuses.", "Alex is a wumpus.", "Wumpuses are impuses.", "Alex is an impus.", "Impuses are dumpuses.", "Alex is a dumpus.", "Dumpuses are not hot.", "Alex is not hot." ] }, { "id": "ProntoQA_9", "context": "Every dumpus is not shy. Each dumpus is a tumpus. Rompuses are not wooden. Tumpuses are opaque. Every tumpus is a wumpus. Wumpuses are not floral. Each wumpus is an impus. Impuses are bitter. Every impus is a vumpus. Vumpuses are small. Each vumpus is a numpus. Every numpus is wooden. Each numpus is a yumpus. Each yumpus is orange. Each yumpus is a jompus. Each jompus is amenable. Every jompus is a zumpus. Wren is a tumpus.", "question": "Is the following statement true or false? Wren is wooden.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Wren is a tumpus.", "Every tumpus is a wumpus.", "Wren is a wumpus.", "Each wumpus is an impus.", "Wren is an impus.", "Every impus is a vumpus.", "Wren is a vumpus.", "Each vumpus is a numpus.", "Wren is a numpus.", "Every numpus is wooden.", "Wren is wooden." ] }, { "id": "ProntoQA_10", "context": "Every impus is earthy. Each impus is a jompus. Jompuses are small. Jompuses are rompuses. Rompuses are not amenable. Rompuses are wumpuses. Wumpuses are wooden. Wumpuses are zumpuses. Every zumpus is temperate. Every zumpus is a dumpus. Dumpuses are dull. Dumpuses are vumpuses. Every vumpus is not shy. Every yumpus is sweet. Vumpuses are numpuses. Numpuses are not sweet. Numpuses are tumpuses. Fae is a wumpus.", "question": "Is the following statement true or false? Fae is sweet.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Fae is a wumpus.", "Wumpuses are zumpuses.", "Fae is a zumpus.", "Every zumpus is a dumpus.", "Fae is a dumpus.", "Dumpuses are vumpuses.", "Fae is a vumpus.", "Vumpuses are numpuses.", "Fae is a numpus.", "Numpuses are not sweet.", "Fae is not sweet." ] }, { "id": "ProntoQA_11", "context": "Each jompus is not amenable. Wumpuses are not fruity. Every jompus is a vumpus. Every vumpus is not shy. Every vumpus is a rompus. Rompuses are not bitter. Rompuses are dumpuses. Dumpuses are opaque. Every dumpus is a yumpus. Every yumpus is orange. Yumpuses are zumpuses. Zumpuses are fruity. Each zumpus is a numpus. Numpuses are metallic. Every numpus is a tumpus. Each tumpus is large. Each tumpus is an impus. Sam is a vumpus.", "question": "Is the following statement true or false? Sam is not fruity.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sam is a vumpus.", "Every vumpus is a rompus.", "Sam is a rompus.", "Rompuses are dumpuses.", "Sam is a dumpus.", "Every dumpus is a yumpus.", "Sam is a yumpus.", "Yumpuses are zumpuses.", "Sam is a zumpus.", "Zumpuses are fruity.", "Sam is fruity." ] }, { "id": "ProntoQA_12", "context": "Each tumpus is orange. Tumpuses are numpuses. Numpuses are small. Numpuses are vumpuses. Every vumpus is sour. Vumpuses are dumpuses. Each dumpus is cold. Every dumpus is a zumpus. Each zumpus is dull. Zumpuses are yumpuses. Jompuses are floral. Every yumpus is not amenable. Each yumpus is a rompus. Every rompus is opaque. Rompuses are impuses. Impuses are not floral. Impuses are wumpuses. Fae is a dumpus.", "question": "Is the following statement true or false? Fae is not floral.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Fae is a dumpus.", "Every dumpus is a zumpus.", "Fae is a zumpus.", "Zumpuses are yumpuses.", "Fae is a yumpus.", "Each yumpus is a rompus.", "Fae is a rompus.", "Rompuses are impuses.", "Fae is an impus.", "Impuses are not floral.", "Fae is not floral." ] }, { "id": "ProntoQA_13", "context": "Each yumpus is opaque. Each yumpus is a dumpus. Vumpuses are not dull. Dumpuses are floral. Each dumpus is a zumpus. Each zumpus is hot. Every zumpus is an impus. Each impus is large. Every impus is a rompus. Rompuses are spicy. Each rompus is a numpus. Numpuses are amenable. Each numpus is a jompus. Jompuses are dull. Each jompus is a wumpus. Wumpuses are not metallic. Every wumpus is a tumpus. Max is a zumpus.", "question": "Is the following statement true or false? Max is dull.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Max is a zumpus.", "Every zumpus is an impus.", "Max is an impus.", "Every impus is a rompus.", "Max is a rompus.", "Each rompus is a numpus.", "Max is a numpus.", "Each numpus is a jompus.", "Max is a jompus.", "Jompuses are dull.", "Max is dull." ] }, { "id": "ProntoQA_14", "context": "Jompuses are large. Every jompus is a zumpus. Each zumpus is sweet. Zumpuses are numpuses. Every numpus is hot. Each tumpus is opaque. Numpuses are yumpuses. Every yumpus is brown. Each yumpus is a wumpus. Wumpuses are not opaque. Wumpuses are impuses. Fae is a jompus.", "question": "Is the following statement true or false? Fae is opaque.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Fae is a jompus.", "Every jompus is a zumpus.", "Fae is a zumpus.", "Zumpuses are numpuses.", "Fae is a numpus.", "Numpuses are yumpuses.", "Fae is a yumpus.", "Each yumpus is a wumpus.", "Fae is a wumpus.", "Wumpuses are not opaque.", "Fae is not opaque." ] }, { "id": "ProntoQA_15", "context": "Jompuses are not small. Jompuses are tumpuses. Tumpuses are not kind. Each tumpus is a vumpus. Vumpuses are metallic. Vumpuses are numpuses. Each numpus is fruity. Each numpus is a dumpus. Dumpuses are nervous. Dumpuses are rompuses. Each rompus is opaque. Every wumpus is dull. Each rompus is a zumpus. Each zumpus is hot. Every zumpus is an impus. Every impus is not dull. Each impus is a yumpus. Sam is a numpus.", "question": "Is the following statement true or false? Sam is not dull.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sam is a numpus.", "Each numpus is a dumpus.", "Sam is a dumpus.", "Dumpuses are rompuses.", "Sam is a rompus.", "Each rompus is a zumpus.", "Sam is a zumpus.", "Every zumpus is an impus.", "Sam is an impus.", "Every impus is not dull.", "Sam is not dull." ] }, { "id": "ProntoQA_16", "context": "Yumpuses are hot. Each yumpus is a rompus. Rompuses are happy. Rompuses are impuses. Each impus is not amenable. Every impus is a dumpus. Dumpuses are opaque. Dumpuses are tumpuses. Numpuses are small. Tumpuses are orange. Every tumpus is a wumpus. Wumpuses are not small. Wumpuses are vumpuses. Every vumpus is fruity. Every vumpus is a jompus. Jompuses are not dull. Every jompus is a zumpus. Sally is a rompus.", "question": "Is the following statement true or false? Sally is small.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sally is a rompus.", "Rompuses are impuses.", "Sally is an impus.", "Every impus is a dumpus.", "Sally is a dumpus.", "Dumpuses are tumpuses.", "Sally is a tumpus.", "Every tumpus is a wumpus.", "Sally is a wumpus.", "Wumpuses are not small.", "Sally is not small." ] }, { "id": "ProntoQA_17", "context": "Each numpus is not nervous. Every numpus is a wumpus. Wumpuses are liquid. Each wumpus is a jompus. Jompuses are fruity. Zumpuses are not opaque. Each jompus is a yumpus. Every yumpus is kind. Yumpuses are vumpuses. Vumpuses are opaque. Every vumpus is an impus. Impuses are not small. Impuses are rompuses. Rompuses are dull. Rompuses are tumpuses. Every tumpus is temperate. Every tumpus is a dumpus. Fae is a numpus.", "question": "Is the following statement true or false? Fae is not opaque.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Fae is a numpus.", "Every numpus is a wumpus.", "Fae is a wumpus.", "Each wumpus is a jompus.", "Fae is a jompus.", "Each jompus is a yumpus.", "Fae is a yumpus.", "Yumpuses are vumpuses.", "Fae is a vumpus.", "Vumpuses are opaque.", "Fae is opaque." ] }, { "id": "ProntoQA_18", "context": "Each dumpus is bright. Each dumpus is a rompus. Every rompus is aggressive. Every rompus is a yumpus. Yumpuses are brown. Yumpuses are vumpuses. Every impus is fruity. Every vumpus is sour. Every vumpus is a numpus. Every numpus is not temperate. Every numpus is a zumpus. Zumpuses are metallic. Zumpuses are jompuses. Each jompus is not fruity. Jompuses are tumpuses. Tumpuses are opaque. Every tumpus is a wumpus. Sam is a yumpus.", "question": "Is the following statement true or false? Sam is fruity.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sam is a yumpus.", "Yumpuses are vumpuses.", "Sam is a vumpus.", "Every vumpus is a numpus.", "Sam is a numpus.", "Every numpus is a zumpus.", "Sam is a zumpus.", "Zumpuses are jompuses.", "Sam is a jompus.", "Each jompus is not fruity.", "Sam is not fruity." ] }, { "id": "ProntoQA_19", "context": "Each numpus is not opaque. Each numpus is a wumpus. Each wumpus is feisty. Wumpuses are tumpuses. Tumpuses are fruity. Every tumpus is a dumpus. Every dumpus is wooden. Each dumpus is a yumpus. Yumpuses are blue. Each yumpus is a zumpus. Every zumpus is spicy. Zumpuses are impuses. Each impus is not kind. Impuses are rompuses. Jompuses are not dull. Every rompus is dull. Each rompus is a vumpus. Sam is a dumpus.", "question": "Is the following statement true or false? Sam is not dull.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sam is a dumpus.", "Each dumpus is a yumpus.", "Sam is a yumpus.", "Each yumpus is a zumpus.", "Sam is a zumpus.", "Zumpuses are impuses.", "Sam is an impus.", "Impuses are rompuses.", "Sam is a rompus.", "Every rompus is dull.", "Sam is dull." ] }, { "id": "ProntoQA_20", "context": "Each yumpus is not small. Each yumpus is a dumpus. Each dumpus is opaque. Every dumpus is a jompus. Each jompus is shy. Each numpus is sour. Every jompus is a tumpus. Each tumpus is brown. Each tumpus is a vumpus. Vumpuses are dull. Vumpuses are wumpuses. Every wumpus is not sour. Wumpuses are rompuses. Each rompus is not luminous. Rompuses are impuses. Stella is a dumpus.", "question": "Is the following statement true or false? Stella is sour.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Stella is a dumpus.", "Every dumpus is a jompus.", "Stella is a jompus.", "Every jompus is a tumpus.", "Stella is a tumpus.", "Each tumpus is a vumpus.", "Stella is a vumpus.", "Vumpuses are wumpuses.", "Stella is a wumpus.", "Every wumpus is not sour.", "Stella is not sour." ] }, { "id": "ProntoQA_21", "context": "Vumpuses are earthy. Vumpuses are dumpuses. Dumpuses are not wooden. Dumpuses are numpuses. Every numpus is kind. Each numpus is a rompus. Each rompus is small. Every rompus is a jompus. Every jompus is bright. Jompuses are yumpuses. Yumpuses are orange. Every yumpus is a zumpus. Zumpuses are sour. Zumpuses are impuses. Impuses are transparent. Tumpuses are not orange. Each impus is a wumpus. Max is a dumpus.", "question": "Is the following statement true or false? Max is orange.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Max is a dumpus.", "Dumpuses are numpuses.", "Max is a numpus.", "Each numpus is a rompus.", "Max is a rompus.", "Every rompus is a jompus.", "Max is a jompus.", "Jompuses are yumpuses.", "Max is a yumpus.", "Yumpuses are orange.", "Max is orange." ] }, { "id": "ProntoQA_22", "context": "Every wumpus is sour. Wumpuses are yumpuses. Each yumpus is aggressive. Every yumpus is a tumpus. Every tumpus is transparent. Tumpuses are vumpuses. Vumpuses are wooden. Each vumpus is a jompus. Each impus is not feisty. Every jompus is large. Jompuses are numpuses. Numpuses are red. Numpuses are rompuses. Every rompus is feisty. Each rompus is a zumpus. Wren is a tumpus.", "question": "Is the following statement true or false? Wren is not feisty.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Wren is a tumpus.", "Tumpuses are vumpuses.", "Wren is a vumpus.", "Each vumpus is a jompus.", "Wren is a jompus.", "Jompuses are numpuses.", "Wren is a numpus.", "Numpuses are rompuses.", "Wren is a rompus.", "Every rompus is feisty.", "Wren is feisty." ] }, { "id": "ProntoQA_23", "context": "Every zumpus is not opaque. Each zumpus is a numpus. Numpuses are brown. Numpuses are dumpuses. Each dumpus is amenable. Impuses are not bitter. Every dumpus is a vumpus. Each vumpus is not cold. Each vumpus is a tumpus. Every tumpus is wooden. Every tumpus is a rompus. Each rompus is floral. Rompuses are yumpuses. Yumpuses are bitter. Every yumpus is a wumpus. Wumpuses are not feisty. Wumpuses are jompuses. Sally is a dumpus.", "question": "Is the following statement true or false? Sally is bitter.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sally is a dumpus.", "Every dumpus is a vumpus.", "Sally is a vumpus.", "Each vumpus is a tumpus.", "Sally is a tumpus.", "Every tumpus is a rompus.", "Sally is a rompus.", "Rompuses are yumpuses.", "Sally is a yumpus.", "Yumpuses are bitter.", "Sally is bitter." ] }, { "id": "ProntoQA_24", "context": "Every numpus is floral. Numpuses are jompuses. Jompuses are not nervous. Each jompus is an impus. Every impus is brown. Every dumpus is not amenable. Each impus is a wumpus. Wumpuses are not bitter. Each wumpus is a zumpus. Every zumpus is not small. Zumpuses are vumpuses. Vumpuses are hot. Vumpuses are rompuses. Rompuses are amenable. Every rompus is a tumpus. Every tumpus is bright. Every tumpus is a yumpus. Alex is an impus.", "question": "Is the following statement true or false? Alex is amenable.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Alex is an impus.", "Each impus is a wumpus.", "Alex is a wumpus.", "Each wumpus is a zumpus.", "Alex is a zumpus.", "Zumpuses are vumpuses.", "Alex is a vumpus.", "Vumpuses are rompuses.", "Alex is a rompus.", "Rompuses are amenable.", "Alex is amenable." ] }, { "id": "ProntoQA_25", "context": "Zumpuses are dull. Every vumpus is not transparent. Vumpuses are numpuses. Numpuses are blue. Numpuses are wumpuses. Wumpuses are liquid. Each wumpus is a tumpus. Tumpuses are not spicy. Tumpuses are rompuses. Each rompus is not dull. Rompuses are yumpuses. Every yumpus is floral. Every yumpus is an impus. Impuses are hot. Each impus is a jompus. Every jompus is large. Jompuses are dumpuses. Sam is a vumpus.", "question": "Is the following statement true or false? Sam is not dull.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sam is a vumpus.", "Vumpuses are numpuses.", "Sam is a numpus.", "Numpuses are wumpuses.", "Sam is a wumpus.", "Each wumpus is a tumpus.", "Sam is a tumpus.", "Tumpuses are rompuses.", "Sam is a rompus.", "Each rompus is not dull.", "Sam is not dull." ] }, { "id": "ProntoQA_26", "context": "Each numpus is fruity. Every numpus is a tumpus. Every tumpus is dull. Every tumpus is a jompus. Every jompus is not orange. Each jompus is an impus. Each impus is not shy. Impuses are wumpuses. Wumpuses are sweet. Wumpuses are rompuses. Every rompus is not amenable. Each rompus is a zumpus. Every zumpus is large. Zumpuses are yumpuses. Every vumpus is not large. Yumpuses are transparent. Yumpuses are dumpuses. Rex is a jompus.", "question": "Is the following statement true or false? Rex is large.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Rex is a jompus.", "Each jompus is an impus.", "Rex is an impus.", "Impuses are wumpuses.", "Rex is a wumpus.", "Wumpuses are rompuses.", "Rex is a rompus.", "Each rompus is a zumpus.", "Rex is a zumpus.", "Every zumpus is large.", "Rex is large." ] }, { "id": "ProntoQA_27", "context": "Wumpuses are not sour. Each wumpus is a rompus. Rompuses are dull. Each rompus is a dumpus. Every dumpus is feisty. Jompuses are aggressive. Dumpuses are tumpuses. Tumpuses are opaque. Every tumpus is a numpus. Numpuses are hot. Numpuses are zumpuses. Zumpuses are large. Every zumpus is a vumpus. Vumpuses are blue. Every vumpus is an impus. Impuses are not aggressive. Impuses are yumpuses. Fae is a tumpus.", "question": "Is the following statement true or false? Fae is not aggressive.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Fae is a tumpus.", "Every tumpus is a numpus.", "Fae is a numpus.", "Numpuses are zumpuses.", "Fae is a zumpus.", "Every zumpus is a vumpus.", "Fae is a vumpus.", "Every vumpus is an impus.", "Fae is an impus.", "Impuses are not aggressive.", "Fae is not aggressive." ] }, { "id": "ProntoQA_28", "context": "Each impus is small. Each zumpus is not fruity. Every zumpus is a numpus. Each numpus is bitter. Numpuses are rompuses. Rompuses are kind. Rompuses are wumpuses. Every wumpus is not wooden. Wumpuses are yumpuses. Every yumpus is not temperate. Yumpuses are dumpuses. Every dumpus is dull. Dumpuses are tumpuses. Tumpuses are not small. Tumpuses are jompuses. Every jompus is nervous. Each jompus is a vumpus. Alex is a rompus.", "question": "Is the following statement true or false? Alex is small.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Alex is a rompus.", "Rompuses are wumpuses.", "Alex is a wumpus.", "Wumpuses are yumpuses.", "Alex is a yumpus.", "Yumpuses are dumpuses.", "Alex is a dumpus.", "Dumpuses are tumpuses.", "Alex is a tumpus.", "Tumpuses are not small.", "Alex is not small." ] }, { "id": "ProntoQA_29", "context": "Every jompus is liquid. Jompuses are rompuses. Every rompus is mean. Rompuses are zumpuses. Each zumpus is transparent. Zumpuses are tumpuses. Tumpuses are not earthy. Each dumpus is bright. Tumpuses are yumpuses. Yumpuses are not bright. Yumpuses are impuses. Impuses are temperate. Impuses are numpuses. Every numpus is feisty. Numpuses are wumpuses. Max is a jompus.", "question": "Is the following statement true or false? Max is bright.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Max is a jompus.", "Jompuses are rompuses.", "Max is a rompus.", "Rompuses are zumpuses.", "Max is a zumpus.", "Zumpuses are tumpuses.", "Max is a tumpus.", "Tumpuses are yumpuses.", "Max is a yumpus.", "Yumpuses are not bright.", "Max is not bright." ] }, { "id": "ProntoQA_30", "context": "Impuses are bright. Every impus is a jompus. Jompuses are mean. Every zumpus is not temperate. Each jompus is a vumpus. Vumpuses are transparent. Every vumpus is a tumpus. Every tumpus is shy. Tumpuses are numpuses. Each numpus is not blue. Every numpus is a dumpus. Dumpuses are not fruity. Each dumpus is a wumpus. Wumpuses are temperate. Wumpuses are rompuses. Rompuses are metallic. Rompuses are yumpuses. Fae is a vumpus.", "question": "Is the following statement true or false? Fae is temperate.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Fae is a vumpus.", "Every vumpus is a tumpus.", "Fae is a tumpus.", "Tumpuses are numpuses.", "Fae is a numpus.", "Every numpus is a dumpus.", "Fae is a dumpus.", "Each dumpus is a wumpus.", "Fae is a wumpus.", "Wumpuses are temperate.", "Fae is temperate." ] }, { "id": "ProntoQA_31", "context": "Each jompus is not small. Each wumpus is angry. Each jompus is a zumpus. Zumpuses are temperate. Zumpuses are tumpuses. Tumpuses are brown. Tumpuses are yumpuses. Yumpuses are wooden. Yumpuses are dumpuses. Each dumpus is not angry. Every dumpus is a numpus. Numpuses are not dull. Every numpus is a vumpus. Wren is a jompus.", "question": "Is the following statement true or false? Wren is not angry.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Wren is a jompus.", "Each jompus is a zumpus.", "Wren is a zumpus.", "Zumpuses are tumpuses.", "Wren is a tumpus.", "Tumpuses are yumpuses.", "Wren is a yumpus.", "Yumpuses are dumpuses.", "Wren is a dumpus.", "Each dumpus is not angry.", "Wren is not angry." ] }, { "id": "ProntoQA_32", "context": "Numpuses are earthy. Numpuses are vumpuses. Vumpuses are transparent. Each vumpus is a tumpus. Tumpuses are small. Tumpuses are dumpuses. Each dumpus is not aggressive. Dumpuses are wumpuses. Every wumpus is not wooden. Every wumpus is a jompus. Jompuses are not nervous. Each jompus is a zumpus. Each zumpus is temperate. Rompuses are wooden. Zumpuses are impuses. Each impus is blue. Impuses are yumpuses. Sally is a numpus.", "question": "Is the following statement true or false? Sally is not wooden.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sally is a numpus.", "Numpuses are vumpuses.", "Sally is a vumpus.", "Each vumpus is a tumpus.", "Sally is a tumpus.", "Tumpuses are dumpuses.", "Sally is a dumpus.", "Dumpuses are wumpuses.", "Sally is a wumpus.", "Every wumpus is not wooden.", "Sally is not wooden." ] }, { "id": "ProntoQA_33", "context": "Every yumpus is not temperate. Yumpuses are rompuses. Every rompus is large. Every rompus is an impus. Impuses are not blue. Impuses are tumpuses. Tumpuses are nervous. Tumpuses are wumpuses. Wumpuses are bright. Numpuses are not bright. Each wumpus is a zumpus. Every zumpus is not fruity. Zumpuses are dumpuses. Dumpuses are opaque. Dumpuses are vumpuses. Vumpuses are mean. Vumpuses are jompuses. Stella is a yumpus.", "question": "Is the following statement true or false? Stella is not bright.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Stella is a yumpus.", "Yumpuses are rompuses.", "Stella is a rompus.", "Every rompus is an impus.", "Stella is an impus.", "Impuses are tumpuses.", "Stella is a tumpus.", "Tumpuses are wumpuses.", "Stella is a wumpus.", "Wumpuses are bright.", "Stella is bright." ] }, { "id": "ProntoQA_34", "context": "Impuses are bright. Every impus is a rompus. Rompuses are floral. Each rompus is a yumpus. Every yumpus is opaque. Yumpuses are numpuses. Each numpus is red. Every numpus is a dumpus. Dumpuses are bitter. Every dumpus is a vumpus. Vumpuses are not mean. Vumpuses are tumpuses. Tumpuses are not shy. Each wumpus is shy. Tumpuses are zumpuses. Each zumpus is temperate. Zumpuses are jompuses. Sam is a yumpus.", "question": "Is the following statement true or false? Sam is shy.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sam is a yumpus.", "Yumpuses are numpuses.", "Sam is a numpus.", "Every numpus is a dumpus.", "Sam is a dumpus.", "Every dumpus is a vumpus.", "Sam is a vumpus.", "Vumpuses are tumpuses.", "Sam is a tumpus.", "Tumpuses are not shy.", "Sam is not shy." ] }, { "id": "ProntoQA_35", "context": "Each zumpus is not wooden. Every zumpus is a vumpus. Every vumpus is not sour. Every vumpus is a jompus. Every jompus is floral. Each jompus is a wumpus. Every wumpus is transparent. Wumpuses are impuses. Impuses are dull. Every impus is a yumpus. Each yumpus is feisty. Numpuses are not orange. Every yumpus is a dumpus. Dumpuses are orange. Each dumpus is a rompus. Each rompus is not aggressive. Rompuses are tumpuses. Fae is a jompus.", "question": "Is the following statement true or false? Fae is orange.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Fae is a jompus.", "Each jompus is a wumpus.", "Fae is a wumpus.", "Wumpuses are impuses.", "Fae is an impus.", "Every impus is a yumpus.", "Fae is a yumpus.", "Every yumpus is a dumpus.", "Fae is a dumpus.", "Dumpuses are orange.", "Fae is orange." ] }, { "id": "ProntoQA_36", "context": "Every jompus is bright. Every jompus is a wumpus. Each wumpus is wooden. Each wumpus is a yumpus. Yumpuses are amenable. Yumpuses are impuses. Impuses are temperate. Impuses are tumpuses. Tumpuses are shy. Every tumpus is a rompus. Rompuses are not small. Every rompus is a numpus. Numpuses are fruity. Each dumpus is not shy. Numpuses are vumpuses. Sally is a jompus.", "question": "Is the following statement true or false? Sally is shy.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sally is a jompus.", "Every jompus is a wumpus.", "Sally is a wumpus.", "Each wumpus is a yumpus.", "Sally is a yumpus.", "Yumpuses are impuses.", "Sally is an impus.", "Impuses are tumpuses.", "Sally is a tumpus.", "Tumpuses are shy.", "Sally is shy." ] }, { "id": "ProntoQA_37", "context": "Impuses are not fruity. Impuses are wumpuses. Each wumpus is not temperate. Wumpuses are dumpuses. Rompuses are not sweet. Dumpuses are kind. Dumpuses are zumpuses. Zumpuses are wooden. Zumpuses are vumpuses. Every vumpus is large. Vumpuses are yumpuses. Yumpuses are transparent. Yumpuses are numpuses. Numpuses are brown. Numpuses are tumpuses. Tumpuses are sweet. Tumpuses are jompuses. Wren is a zumpus.", "question": "Is the following statement true or false? Wren is sweet.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Wren is a zumpus.", "Zumpuses are vumpuses.", "Wren is a vumpus.", "Vumpuses are yumpuses.", "Wren is a yumpus.", "Yumpuses are numpuses.", "Wren is a numpus.", "Numpuses are tumpuses.", "Wren is a tumpus.", "Tumpuses are sweet.", "Wren is sweet." ] }, { "id": "ProntoQA_38", "context": "Vumpuses are wooden. Every vumpus is a jompus. Jompuses are earthy. Each jompus is a wumpus. Wumpuses are not transparent. Wumpuses are yumpuses. Yumpuses are not bright. Each yumpus is an impus. Every rompus is happy. Impuses are not happy. Each impus is a dumpus. Dumpuses are brown. Dumpuses are zumpuses. Zumpuses are not sour. Zumpuses are numpuses. Every numpus is not angry. Numpuses are tumpuses. Polly is a vumpus.", "question": "Is the following statement true or false? Polly is not happy.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Polly is a vumpus.", "Every vumpus is a jompus.", "Polly is a jompus.", "Each jompus is a wumpus.", "Polly is a wumpus.", "Wumpuses are yumpuses.", "Polly is a yumpus.", "Each yumpus is an impus.", "Polly is an impus.", "Impuses are not happy.", "Polly is not happy." ] }, { "id": "ProntoQA_39", "context": "Each rompus is amenable. Each rompus is an impus. Impuses are happy. Every impus is a wumpus. Wumpuses are sour. Each wumpus is a zumpus. Zumpuses are fruity. Zumpuses are tumpuses. Each tumpus is not large. Every tumpus is a vumpus. Yumpuses are not hot. Every vumpus is liquid. Every vumpus is a jompus. Jompuses are hot. Jompuses are dumpuses. Stella is a wumpus.", "question": "Is the following statement true or false? Stella is not hot.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Stella is a wumpus.", "Each wumpus is a zumpus.", "Stella is a zumpus.", "Zumpuses are tumpuses.", "Stella is a tumpus.", "Every tumpus is a vumpus.", "Stella is a vumpus.", "Every vumpus is a jompus.", "Stella is a jompus.", "Jompuses are hot.", "Stella is hot." ] }, { "id": "ProntoQA_40", "context": "Yumpuses are small. Yumpuses are vumpuses. Vumpuses are red. Vumpuses are numpuses. Numpuses are bitter. Each numpus is a wumpus. Each impus is not amenable. Every wumpus is bright. Every wumpus is a dumpus. Every dumpus is temperate. Dumpuses are rompuses. Rompuses are floral. Rompuses are tumpuses. Tumpuses are opaque. Each tumpus is a jompus. Every jompus is amenable. Every jompus is a zumpus. Sally is a wumpus.", "question": "Is the following statement true or false? Sally is amenable.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sally is a wumpus.", "Every wumpus is a dumpus.", "Sally is a dumpus.", "Dumpuses are rompuses.", "Sally is a rompus.", "Rompuses are tumpuses.", "Sally is a tumpus.", "Each tumpus is a jompus.", "Sally is a jompus.", "Every jompus is amenable.", "Sally is amenable." ] }, { "id": "ProntoQA_41", "context": "Rompuses are transparent. Every rompus is a yumpus. Yumpuses are earthy. Yumpuses are jompuses. Every jompus is not large. Each jompus is a wumpus. Each wumpus is not brown. Tumpuses are hot. Wumpuses are zumpuses. Every zumpus is dull. Zumpuses are numpuses. Numpuses are bitter. Every numpus is a dumpus. Dumpuses are not shy. Each dumpus is an impus. Impuses are not hot. Impuses are vumpuses. Max is a wumpus.", "question": "Is the following statement true or false? Max is not hot.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Max is a wumpus.", "Wumpuses are zumpuses.", "Max is a zumpus.", "Zumpuses are numpuses.", "Max is a numpus.", "Every numpus is a dumpus.", "Max is a dumpus.", "Each dumpus is an impus.", "Max is an impus.", "Impuses are not hot.", "Max is not hot." ] }, { "id": "ProntoQA_42", "context": "Tumpuses are dull. Tumpuses are jompuses. Jompuses are not sour. Each jompus is a vumpus. Vumpuses are feisty. Vumpuses are dumpuses. Dumpuses are cold. Each dumpus is a yumpus. Each yumpus is transparent. Each yumpus is a numpus. Numpuses are not amenable. Numpuses are zumpuses. Each zumpus is orange. Each zumpus is a rompus. Rompuses are earthy. Each impus is not orange. Rompuses are wumpuses. Wren is a vumpus.", "question": "Is the following statement true or false? Wren is not orange.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Wren is a vumpus.", "Vumpuses are dumpuses.", "Wren is a dumpus.", "Each dumpus is a yumpus.", "Wren is a yumpus.", "Each yumpus is a numpus.", "Wren is a numpus.", "Numpuses are zumpuses.", "Wren is a zumpus.", "Each zumpus is orange.", "Wren is orange." ] }, { "id": "ProntoQA_43", "context": "Each impus is luminous. Every impus is a zumpus. Every zumpus is shy. Every zumpus is a numpus. Numpuses are not cold. Each numpus is a tumpus. Tumpuses are large. Each tumpus is a yumpus. Each yumpus is angry. Yumpuses are vumpuses. Vumpuses are not earthy. Vumpuses are jompuses. Every jompus is not sour. Dumpuses are not angry. Jompuses are rompuses. Rompuses are not opaque. Rompuses are wumpuses. Polly is an impus.", "question": "Is the following statement true or false? Polly is angry.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Polly is an impus.", "Every impus is a zumpus.", "Polly is a zumpus.", "Every zumpus is a numpus.", "Polly is a numpus.", "Each numpus is a tumpus.", "Polly is a tumpus.", "Each tumpus is a yumpus.", "Polly is a yumpus.", "Each yumpus is angry.", "Polly is angry." ] }, { "id": "ProntoQA_44", "context": "Yumpuses are floral. Each yumpus is a vumpus. Vumpuses are not temperate. Vumpuses are jompuses. Jompuses are not dull. Impuses are not spicy. Jompuses are numpuses. Numpuses are not opaque. Each numpus is a wumpus. Every wumpus is amenable. Wumpuses are rompuses. Each rompus is not red. Rompuses are tumpuses. Tumpuses are spicy. Every tumpus is a dumpus. Dumpuses are shy. Each dumpus is a zumpus. Rex is a jompus.", "question": "Is the following statement true or false? Rex is not spicy.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Rex is a jompus.", "Jompuses are numpuses.", "Rex is a numpus.", "Each numpus is a wumpus.", "Rex is a wumpus.", "Wumpuses are rompuses.", "Rex is a rompus.", "Rompuses are tumpuses.", "Rex is a tumpus.", "Tumpuses are spicy.", "Rex is spicy." ] }, { "id": "ProntoQA_45", "context": "Dumpuses are cold. Dumpuses are numpuses. Each numpus is not bitter. Every numpus is a zumpus. Zumpuses are fruity. Zumpuses are wumpuses. Wumpuses are large. Each tumpus is not wooden. Each wumpus is an impus. Every impus is wooden. Impuses are rompuses. Fae is a dumpus.", "question": "Is the following statement true or false? Fae is wooden.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Fae is a dumpus.", "Dumpuses are numpuses.", "Fae is a numpus.", "Every numpus is a zumpus.", "Fae is a zumpus.", "Zumpuses are wumpuses.", "Fae is a wumpus.", "Each wumpus is an impus.", "Fae is an impus.", "Every impus is wooden.", "Fae is wooden." ] }, { "id": "ProntoQA_46", "context": "Each rompus is nervous. Rompuses are jompuses. Jompuses are angry. Jompuses are tumpuses. Tumpuses are earthy. Every tumpus is a numpus. Each numpus is not cold. Each numpus is an impus. Dumpuses are metallic. Impuses are dull. Each impus is a zumpus. Zumpuses are not opaque. Zumpuses are wumpuses. Every wumpus is blue. Wumpuses are vumpuses. Every vumpus is not metallic. Every vumpus is a yumpus. Sally is a numpus.", "question": "Is the following statement true or false? Sally is not metallic.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sally is a numpus.", "Each numpus is an impus.", "Sally is an impus.", "Each impus is a zumpus.", "Sally is a zumpus.", "Zumpuses are wumpuses.", "Sally is a wumpus.", "Wumpuses are vumpuses.", "Sally is a vumpus.", "Every vumpus is not metallic.", "Sally is not metallic." ] }, { "id": "ProntoQA_47", "context": "Vumpuses are fruity. Vumpuses are jompuses. Jompuses are opaque. Every jompus is a wumpus. Every wumpus is nervous. Each wumpus is an impus. Every impus is sour. Impuses are tumpuses. Every tumpus is not amenable. Each tumpus is a yumpus. Yumpuses are not metallic. Yumpuses are numpuses. Numpuses are large. Every numpus is a rompus. Dumpuses are not cold. Each rompus is cold. Each rompus is a zumpus. Max is an impus.", "question": "Is the following statement true or false? Max is not cold.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Max is an impus.", "Impuses are tumpuses.", "Max is a tumpus.", "Each tumpus is a yumpus.", "Max is a yumpus.", "Yumpuses are numpuses.", "Max is a numpus.", "Every numpus is a rompus.", "Max is a rompus.", "Each rompus is cold.", "Max is cold." ] }, { "id": "ProntoQA_48", "context": "Tumpuses are fruity. Yumpuses are nervous. Yumpuses are numpuses. Each numpus is large. Each numpus is a rompus. Each rompus is red. Rompuses are vumpuses. Vumpuses are temperate. Each vumpus is a jompus. Every jompus is spicy. Each jompus is an impus. Impuses are not metallic. Impuses are wumpuses. Each wumpus is bright. Wumpuses are zumpuses. Zumpuses are not fruity. Each zumpus is a dumpus. Sam is a vumpus.", "question": "Is the following statement true or false? Sam is not fruity.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sam is a vumpus.", "Each vumpus is a jompus.", "Sam is a jompus.", "Each jompus is an impus.", "Sam is an impus.", "Impuses are wumpuses.", "Sam is a wumpus.", "Wumpuses are zumpuses.", "Sam is a zumpus.", "Zumpuses are not fruity.", "Sam is not fruity." ] }, { "id": "ProntoQA_49", "context": "Wumpuses are dull. Wumpuses are rompuses. Every rompus is not cold. Rompuses are dumpuses. Dumpuses are feisty. Dumpuses are numpuses. Numpuses are mean. Numpuses are zumpuses. Every zumpus is not earthy. Every zumpus is a tumpus. Every tumpus is opaque. Impuses are liquid. Tumpuses are vumpuses. Every vumpus is not liquid. Vumpuses are jompuses. Each jompus is not spicy. Jompuses are yumpuses. Wren is a dumpus.", "question": "Is the following statement true or false? Wren is liquid.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Wren is a dumpus.", "Dumpuses are numpuses.", "Wren is a numpus.", "Numpuses are zumpuses.", "Wren is a zumpus.", "Every zumpus is a tumpus.", "Wren is a tumpus.", "Tumpuses are vumpuses.", "Wren is a vumpus.", "Every vumpus is not liquid.", "Wren is not liquid." ] }, { "id": "ProntoQA_50", "context": "Jompuses are not blue. Each rompus is happy. Rompuses are dumpuses. Dumpuses are not cold. Each dumpus is a wumpus. Each wumpus is liquid. Each wumpus is an impus. Each impus is kind. Every impus is a yumpus. Each yumpus is bright. Yumpuses are zumpuses. Each zumpus is sour. Each zumpus is a vumpus. Every vumpus is small. Vumpuses are tumpuses. Every tumpus is blue. Every tumpus is a numpus. Fae is an impus.", "question": "Is the following statement true or false? Fae is not blue.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Fae is an impus.", "Every impus is a yumpus.", "Fae is a yumpus.", "Yumpuses are zumpuses.", "Fae is a zumpus.", "Each zumpus is a vumpus.", "Fae is a vumpus.", "Vumpuses are tumpuses.", "Fae is a tumpus.", "Every tumpus is blue.", "Fae is blue." ] }, { "id": "ProntoQA_51", "context": "Every zumpus is small. Each zumpus is an impus. Every impus is sweet. Impuses are vumpuses. Each vumpus is not feisty. Every vumpus is a dumpus. Every dumpus is not dull. Dumpuses are rompuses. Every rompus is transparent. Rompuses are wumpuses. Each wumpus is not earthy. Wumpuses are tumpuses. Every tumpus is cold. Numpuses are not cold. Tumpuses are yumpuses. Max is a vumpus.", "question": "Is the following statement true or false? Max is not cold.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Max is a vumpus.", "Every vumpus is a dumpus.", "Max is a dumpus.", "Dumpuses are rompuses.", "Max is a rompus.", "Rompuses are wumpuses.", "Max is a wumpus.", "Wumpuses are tumpuses.", "Max is a tumpus.", "Every tumpus is cold.", "Max is cold." ] }, { "id": "ProntoQA_52", "context": "Every jompus is spicy. Every jompus is a dumpus. Each dumpus is not transparent. Each dumpus is a zumpus. Zumpuses are feisty. Zumpuses are wumpuses. Each wumpus is not dull. Every wumpus is an impus. Every vumpus is not blue. Impuses are blue. Impuses are tumpuses. Tumpuses are not floral. Each tumpus is a numpus. Polly is a jompus.", "question": "Is the following statement true or false? Polly is blue.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Polly is a jompus.", "Every jompus is a dumpus.", "Polly is a dumpus.", "Each dumpus is a zumpus.", "Polly is a zumpus.", "Zumpuses are wumpuses.", "Polly is a wumpus.", "Every wumpus is an impus.", "Polly is an impus.", "Impuses are blue.", "Polly is blue." ] }, { "id": "ProntoQA_53", "context": "Numpuses are kind. Each numpus is a wumpus. Wumpuses are not wooden. Every zumpus is not dull. Wumpuses are impuses. Impuses are not nervous. Each impus is a yumpus. Every yumpus is hot. Every yumpus is a vumpus. Every vumpus is transparent. Vumpuses are rompuses. Rompuses are not small. Rompuses are jompuses. Jompuses are dull. Jompuses are dumpuses. Each dumpus is earthy. Every dumpus is a tumpus. Fae is an impus.", "question": "Is the following statement true or false? Fae is dull.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Fae is an impus.", "Each impus is a yumpus.", "Fae is a yumpus.", "Every yumpus is a vumpus.", "Fae is a vumpus.", "Vumpuses are rompuses.", "Fae is a rompus.", "Rompuses are jompuses.", "Fae is a jompus.", "Jompuses are dull.", "Fae is dull." ] }, { "id": "ProntoQA_54", "context": "Every tumpus is not transparent. Tumpuses are jompuses. Each jompus is not large. Jompuses are vumpuses. Vumpuses are angry. Vumpuses are impuses. Yumpuses are red. Impuses are happy. Impuses are zumpuses. Zumpuses are metallic. Each zumpus is a rompus. Rompuses are dull. Rompuses are wumpuses. Every wumpus is not red. Each wumpus is a numpus. Numpuses are not sweet. Numpuses are dumpuses. Stella is a vumpus.", "question": "Is the following statement true or false? Stella is not red.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Stella is a vumpus.", "Vumpuses are impuses.", "Stella is an impus.", "Impuses are zumpuses.", "Stella is a zumpus.", "Each zumpus is a rompus.", "Stella is a rompus.", "Rompuses are wumpuses.", "Stella is a wumpus.", "Every wumpus is not red.", "Stella is not red." ] }, { "id": "ProntoQA_55", "context": "Dumpuses are dull. Dumpuses are numpuses. Numpuses are blue. Numpuses are wumpuses. Wumpuses are hot. Wumpuses are vumpuses. Vumpuses are luminous. Each vumpus is a jompus. Jompuses are mean. Jompuses are impuses. Every impus is not small. Every impus is a rompus. Rompuses are not feisty. Yumpuses are not mean. Every rompus is a zumpus. Rex is a dumpus.", "question": "Is the following statement true or false? Rex is mean.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Rex is a dumpus.", "Dumpuses are numpuses.", "Rex is a numpus.", "Numpuses are wumpuses.", "Rex is a wumpus.", "Wumpuses are vumpuses.", "Rex is a vumpus.", "Each vumpus is a jompus.", "Rex is a jompus.", "Jompuses are mean.", "Rex is mean." ] }, { "id": "ProntoQA_56", "context": "Zumpuses are bright. Every zumpus is a vumpus. Each vumpus is not kind. Each vumpus is a wumpus. Wumpuses are feisty. Wumpuses are numpuses. Each numpus is floral. Every numpus is a dumpus. Every dumpus is hot. Rompuses are liquid. Each dumpus is a tumpus. Every tumpus is not brown. Every tumpus is a jompus. Jompuses are bitter. Jompuses are impuses. Each impus is not liquid. Impuses are yumpuses. Sam is a numpus.", "question": "Is the following statement true or false? Sam is not liquid.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sam is a numpus.", "Every numpus is a dumpus.", "Sam is a dumpus.", "Each dumpus is a tumpus.", "Sam is a tumpus.", "Every tumpus is a jompus.", "Sam is a jompus.", "Jompuses are impuses.", "Sam is an impus.", "Each impus is not liquid.", "Sam is not liquid." ] }, { "id": "ProntoQA_57", "context": "Rompuses are luminous. Yumpuses are feisty. Rompuses are impuses. Each impus is not sour. Impuses are wumpuses. Wumpuses are not fruity. Wumpuses are numpuses. Every numpus is blue. Every numpus is a dumpus. Every dumpus is not feisty. Each dumpus is a tumpus. Tumpuses are kind. Every tumpus is a vumpus. Each vumpus is opaque. Vumpuses are zumpuses. Each zumpus is not large. Zumpuses are jompuses. Alex is a rompus.", "question": "Is the following statement true or false? Alex is not feisty.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Alex is a rompus.", "Rompuses are impuses.", "Alex is an impus.", "Impuses are wumpuses.", "Alex is a wumpus.", "Wumpuses are numpuses.", "Alex is a numpus.", "Every numpus is a dumpus.", "Alex is a dumpus.", "Every dumpus is not feisty.", "Alex is not feisty." ] }, { "id": "ProntoQA_58", "context": "Tumpuses are kind. Every tumpus is an impus. Impuses are not dull. Impuses are jompuses. Jompuses are not large. Jompuses are zumpuses. Every zumpus is happy. Zumpuses are wumpuses. Every dumpus is not fruity. Each wumpus is sweet. Wumpuses are yumpuses. Yumpuses are orange. Every yumpus is a numpus. Numpuses are transparent. Each numpus is a vumpus. Vumpuses are fruity. Every vumpus is a rompus. Fae is a zumpus.", "question": "Is the following statement true or false? Fae is not fruity.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Fae is a zumpus.", "Zumpuses are wumpuses.", "Fae is a wumpus.", "Wumpuses are yumpuses.", "Fae is a yumpus.", "Every yumpus is a numpus.", "Fae is a numpus.", "Each numpus is a vumpus.", "Fae is a vumpus.", "Vumpuses are fruity.", "Fae is fruity." ] }, { "id": "ProntoQA_59", "context": "Each rompus is mean. Every rompus is a wumpus. Each tumpus is nervous. Wumpuses are brown. Wumpuses are yumpuses. Every yumpus is large. Yumpuses are vumpuses. Each vumpus is dull. Vumpuses are zumpuses. Zumpuses are earthy. Every zumpus is a numpus. Numpuses are not sour. Numpuses are impuses. Impuses are transparent. Each impus is a dumpus. Dumpuses are not nervous. Dumpuses are jompuses. Max is a vumpus.", "question": "Is the following statement true or false? Max is not nervous.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Max is a vumpus.", "Vumpuses are zumpuses.", "Max is a zumpus.", "Every zumpus is a numpus.", "Max is a numpus.", "Numpuses are impuses.", "Max is an impus.", "Each impus is a dumpus.", "Max is a dumpus.", "Dumpuses are not nervous.", "Max is not nervous." ] }, { "id": "ProntoQA_60", "context": "Wumpuses are large. Each wumpus is an impus. Each impus is not hot. Impuses are numpuses. Every numpus is earthy. Zumpuses are mean. Numpuses are vumpuses. Vumpuses are liquid. Vumpuses are dumpuses. Dumpuses are not mean. Dumpuses are tumpuses. Sam is a wumpus.", "question": "Is the following statement true or false? Sam is mean.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sam is a wumpus.", "Each wumpus is an impus.", "Sam is an impus.", "Impuses are numpuses.", "Sam is a numpus.", "Numpuses are vumpuses.", "Sam is a vumpus.", "Vumpuses are dumpuses.", "Sam is a dumpus.", "Dumpuses are not mean.", "Sam is not mean." ] }, { "id": "ProntoQA_61", "context": "Rompuses are amenable. Rompuses are numpuses. Numpuses are brown. Numpuses are zumpuses. Every zumpus is bright. Vumpuses are nervous. Every zumpus is a dumpus. Every dumpus is sweet. Dumpuses are yumpuses. Every yumpus is not nervous. Yumpuses are jompuses. Jompuses are not liquid. Jompuses are impuses. Impuses are not small. Each impus is a tumpus. Tumpuses are not transparent. Tumpuses are wumpuses. Max is a rompus.", "question": "Is the following statement true or false? Max is not nervous.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Max is a rompus.", "Rompuses are numpuses.", "Max is a numpus.", "Numpuses are zumpuses.", "Max is a zumpus.", "Every zumpus is a dumpus.", "Max is a dumpus.", "Dumpuses are yumpuses.", "Max is a yumpus.", "Every yumpus is not nervous.", "Max is not nervous." ] }, { "id": "ProntoQA_62", "context": "Every zumpus is nervous. Every zumpus is a dumpus. Every dumpus is large. Dumpuses are rompuses. Every rompus is brown. Vumpuses are transparent. Each rompus is a numpus. Numpuses are not bitter. Numpuses are wumpuses. Each wumpus is floral. Every wumpus is a yumpus. Every yumpus is not transparent. Yumpuses are tumpuses. Tumpuses are not bright. Every tumpus is an impus. Wren is a dumpus.", "question": "Is the following statement true or false? Wren is not transparent.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Wren is a dumpus.", "Dumpuses are rompuses.", "Wren is a rompus.", "Each rompus is a numpus.", "Wren is a numpus.", "Numpuses are wumpuses.", "Wren is a wumpus.", "Every wumpus is a yumpus.", "Wren is a yumpus.", "Every yumpus is not transparent.", "Wren is not transparent." ] }, { "id": "ProntoQA_63", "context": "Numpuses are not mean. Each zumpus is not brown. Numpuses are rompuses. Every rompus is not cold. Rompuses are vumpuses. Vumpuses are not happy. Every vumpus is an impus. Each impus is liquid. Impuses are jompuses. Jompuses are dull. Every jompus is a tumpus. Every tumpus is spicy. Tumpuses are yumpuses. Every yumpus is fruity. Each yumpus is a wumpus. Wumpuses are brown. Wumpuses are dumpuses. Rex is an impus.", "question": "Is the following statement true or false? Rex is brown.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Rex is an impus.", "Impuses are jompuses.", "Rex is a jompus.", "Every jompus is a tumpus.", "Rex is a tumpus.", "Tumpuses are yumpuses.", "Rex is a yumpus.", "Each yumpus is a wumpus.", "Rex is a wumpus.", "Wumpuses are brown.", "Rex is brown." ] }, { "id": "ProntoQA_64", "context": "Tumpuses are bright. Tumpuses are rompuses. Rompuses are not earthy. Every rompus is a dumpus. Every dumpus is sweet. Each dumpus is a zumpus. Each zumpus is luminous. Zumpuses are impuses. Every numpus is temperate. Impuses are not temperate. Every impus is a wumpus. Every wumpus is red. Wumpuses are yumpuses. Every yumpus is kind. Every yumpus is a jompus. Every jompus is shy. Every jompus is a vumpus. Sam is a tumpus.", "question": "Is the following statement true or false? Sam is not temperate.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sam is a tumpus.", "Tumpuses are rompuses.", "Sam is a rompus.", "Every rompus is a dumpus.", "Sam is a dumpus.", "Each dumpus is a zumpus.", "Sam is a zumpus.", "Zumpuses are impuses.", "Sam is an impus.", "Impuses are not temperate.", "Sam is not temperate." ] }, { "id": "ProntoQA_65", "context": "Each rompus is spicy. Rompuses are zumpuses. Each zumpus is cold. Zumpuses are dumpuses. Every dumpus is happy. Dumpuses are vumpuses. Each vumpus is blue. Vumpuses are jompuses. Jompuses are not large. Every jompus is a wumpus. Every impus is angry. Each wumpus is not angry. Wumpuses are tumpuses. Each tumpus is dull. Every tumpus is a numpus. Numpuses are not luminous. Numpuses are yumpuses. Max is a zumpus.", "question": "Is the following statement true or false? Max is angry.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Max is a zumpus.", "Zumpuses are dumpuses.", "Max is a dumpus.", "Dumpuses are vumpuses.", "Max is a vumpus.", "Vumpuses are jompuses.", "Max is a jompus.", "Every jompus is a wumpus.", "Max is a wumpus.", "Each wumpus is not angry.", "Max is not angry." ] }, { "id": "ProntoQA_66", "context": "Impuses are not large. Each impus is a yumpus. Yumpuses are floral. Yumpuses are jompuses. Jompuses are not transparent. Each jompus is a wumpus. Every wumpus is nervous. Wumpuses are vumpuses. Rompuses are not sweet. Each vumpus is hot. Vumpuses are tumpuses. Every tumpus is mean. Tumpuses are numpuses. Numpuses are dull. Numpuses are zumpuses. Zumpuses are sweet. Zumpuses are dumpuses. Sam is a wumpus.", "question": "Is the following statement true or false? Sam is not sweet.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sam is a wumpus.", "Wumpuses are vumpuses.", "Sam is a vumpus.", "Vumpuses are tumpuses.", "Sam is a tumpus.", "Tumpuses are numpuses.", "Sam is a numpus.", "Numpuses are zumpuses.", "Sam is a zumpus.", "Zumpuses are sweet.", "Sam is sweet." ] }, { "id": "ProntoQA_67", "context": "Numpuses are not mean. Numpuses are impuses. Every impus is not fruity. Impuses are zumpuses. Each zumpus is small. Zumpuses are tumpuses. Every tumpus is transparent. Each tumpus is a jompus. Wumpuses are not orange. Each jompus is not bright. Jompuses are dumpuses. Dumpuses are orange. Each dumpus is a vumpus. Every vumpus is sweet. Vumpuses are yumpuses. Yumpuses are wooden. Every yumpus is a rompus. Sam is an impus.", "question": "Is the following statement true or false? Sam is orange.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sam is an impus.", "Impuses are zumpuses.", "Sam is a zumpus.", "Zumpuses are tumpuses.", "Sam is a tumpus.", "Each tumpus is a jompus.", "Sam is a jompus.", "Jompuses are dumpuses.", "Sam is a dumpus.", "Dumpuses are orange.", "Sam is orange." ] }, { "id": "ProntoQA_68", "context": "Rompuses are large. Every rompus is a wumpus. Every wumpus is not blue. Wumpuses are numpuses. Numpuses are cold. Numpuses are impuses. Every impus is fruity. Each impus is a jompus. Every jompus is spicy. Jompuses are zumpuses. Each vumpus is not spicy. Zumpuses are not dull. Zumpuses are yumpuses. Yumpuses are liquid. Each yumpus is a tumpus. Every tumpus is opaque. Tumpuses are dumpuses. Wren is a rompus.", "question": "Is the following statement true or false? Wren is spicy.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Wren is a rompus.", "Every rompus is a wumpus.", "Wren is a wumpus.", "Wumpuses are numpuses.", "Wren is a numpus.", "Numpuses are impuses.", "Wren is an impus.", "Each impus is a jompus.", "Wren is a jompus.", "Every jompus is spicy.", "Wren is spicy." ] }, { "id": "ProntoQA_69", "context": "Each tumpus is not blue. Tumpuses are vumpuses. Vumpuses are not transparent. Every vumpus is a rompus. Each rompus is not fruity. Rompuses are dumpuses. Every dumpus is not nervous. Each dumpus is a yumpus. Yumpuses are not liquid. Each yumpus is a jompus. Jompuses are not cold. Zumpuses are cold. Each jompus is a numpus. Numpuses are large. Numpuses are impuses. Every impus is aggressive. Each impus is a wumpus. Wren is a vumpus.", "question": "Is the following statement true or false? Wren is not cold.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Wren is a vumpus.", "Every vumpus is a rompus.", "Wren is a rompus.", "Rompuses are dumpuses.", "Wren is a dumpus.", "Each dumpus is a yumpus.", "Wren is a yumpus.", "Each yumpus is a jompus.", "Wren is a jompus.", "Jompuses are not cold.", "Wren is not cold." ] }, { "id": "ProntoQA_70", "context": "Each jompus is earthy. Jompuses are yumpuses. Yumpuses are metallic. Each yumpus is an impus. Each dumpus is not transparent. Impuses are nervous. Impuses are rompuses. Every rompus is small. Rompuses are tumpuses. Tumpuses are transparent. Tumpuses are vumpuses. Rex is a jompus.", "question": "Is the following statement true or false? Rex is not transparent.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Rex is a jompus.", "Jompuses are yumpuses.", "Rex is a yumpus.", "Each yumpus is an impus.", "Rex is an impus.", "Impuses are rompuses.", "Rex is a rompus.", "Rompuses are tumpuses.", "Rex is a tumpus.", "Tumpuses are transparent.", "Rex is transparent." ] }, { "id": "ProntoQA_71", "context": "Every rompus is cold. Each rompus is an impus. Every numpus is not dull. Each impus is large. Impuses are vumpuses. Every vumpus is mean. Vumpuses are dumpuses. Each dumpus is floral. Dumpuses are zumpuses. Zumpuses are opaque. Every zumpus is a jompus. Each jompus is dull. Each jompus is a wumpus. Every wumpus is shy. Each wumpus is a tumpus. Each tumpus is wooden. Each tumpus is a yumpus. Sally is an impus.", "question": "Is the following statement true or false? Sally is not dull.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sally is an impus.", "Impuses are vumpuses.", "Sally is a vumpus.", "Vumpuses are dumpuses.", "Sally is a dumpus.", "Dumpuses are zumpuses.", "Sally is a zumpus.", "Every zumpus is a jompus.", "Sally is a jompus.", "Each jompus is dull.", "Sally is dull." ] }, { "id": "ProntoQA_72", "context": "Tumpuses are not small. Tumpuses are yumpuses. Every yumpus is aggressive. Each yumpus is a wumpus. Every wumpus is bright. Each wumpus is a jompus. Jompuses are not liquid. Every jompus is a vumpus. Each vumpus is orange. Every vumpus is an impus. Every impus is not transparent. Each impus is a zumpus. Every zumpus is fruity. Every zumpus is a numpus. Every numpus is sour. Rompuses are not fruity. Numpuses are dumpuses. Sam is a wumpus.", "question": "Is the following statement true or false? Sam is fruity.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sam is a wumpus.", "Each wumpus is a jompus.", "Sam is a jompus.", "Every jompus is a vumpus.", "Sam is a vumpus.", "Every vumpus is an impus.", "Sam is an impus.", "Each impus is a zumpus.", "Sam is a zumpus.", "Every zumpus is fruity.", "Sam is fruity." ] }, { "id": "ProntoQA_73", "context": "Rompuses are bitter. Rompuses are yumpuses. Yumpuses are nervous. Yumpuses are jompuses. Jompuses are not blue. Dumpuses are not earthy. Every jompus is an impus. Impuses are bright. Each impus is a numpus. Numpuses are earthy. Every numpus is a vumpus. Wren is a rompus.", "question": "Is the following statement true or false? Wren is not earthy.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Wren is a rompus.", "Rompuses are yumpuses.", "Wren is a yumpus.", "Yumpuses are jompuses.", "Wren is a jompus.", "Every jompus is an impus.", "Wren is an impus.", "Each impus is a numpus.", "Wren is a numpus.", "Numpuses are earthy.", "Wren is earthy." ] }, { "id": "ProntoQA_74", "context": "Vumpuses are sour. Each vumpus is a zumpus. Every zumpus is angry. Each zumpus is a tumpus. Tumpuses are not small. Every tumpus is a yumpus. Each yumpus is not blue. Yumpuses are rompuses. Each rompus is not fruity. Wumpuses are fruity. Every rompus is a numpus. Numpuses are hot. Each numpus is an impus. Every impus is transparent. Every impus is a dumpus. Dumpuses are wooden. Every dumpus is a jompus. Sam is a vumpus.", "question": "Is the following statement true or false? Sam is not fruity.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sam is a vumpus.", "Each vumpus is a zumpus.", "Sam is a zumpus.", "Each zumpus is a tumpus.", "Sam is a tumpus.", "Every tumpus is a yumpus.", "Sam is a yumpus.", "Yumpuses are rompuses.", "Sam is a rompus.", "Each rompus is not fruity.", "Sam is not fruity." ] }, { "id": "ProntoQA_75", "context": "Jompuses are bright. Every jompus is a rompus. Rompuses are not opaque. Rompuses are vumpuses. Each vumpus is red. Each vumpus is a numpus. Every zumpus is not fruity. Every numpus is not spicy. Numpuses are impuses. Each impus is temperate. Every impus is a wumpus. Every wumpus is fruity. Wumpuses are yumpuses. Yumpuses are liquid. Yumpuses are dumpuses. Dumpuses are small. Dumpuses are tumpuses. Polly is a rompus.", "question": "Is the following statement true or false? Polly is fruity.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Polly is a rompus.", "Rompuses are vumpuses.", "Polly is a vumpus.", "Each vumpus is a numpus.", "Polly is a numpus.", "Numpuses are impuses.", "Polly is an impus.", "Every impus is a wumpus.", "Polly is a wumpus.", "Every wumpus is fruity.", "Polly is fruity." ] }, { "id": "ProntoQA_76", "context": "Zumpuses are not spicy. Each yumpus is cold. Yumpuses are impuses. Every impus is red. Impuses are jompuses. Every jompus is not feisty. Every jompus is a rompus. Rompuses are angry. Each rompus is a wumpus. Each wumpus is spicy. Wumpuses are vumpuses. Vumpuses are not small. Vumpuses are numpuses. Numpuses are earthy. Numpuses are tumpuses. Every tumpus is luminous. Tumpuses are dumpuses. Sally is a yumpus.", "question": "Is the following statement true or false? Sally is spicy.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sally is a yumpus.", "Yumpuses are impuses.", "Sally is an impus.", "Impuses are jompuses.", "Sally is a jompus.", "Every jompus is a rompus.", "Sally is a rompus.", "Each rompus is a wumpus.", "Sally is a wumpus.", "Each wumpus is spicy.", "Sally is spicy." ] }, { "id": "ProntoQA_77", "context": "Jompuses are dull. Each jompus is a rompus. Each rompus is nervous. Rompuses are dumpuses. Every dumpus is kind. Dumpuses are wumpuses. Tumpuses are not opaque. Each wumpus is bitter. Each wumpus is a zumpus. Every zumpus is fruity. Zumpuses are impuses. Impuses are wooden. Each impus is a yumpus. Every yumpus is opaque. Every yumpus is a vumpus. Every vumpus is small. Vumpuses are numpuses. Sam is a dumpus.", "question": "Is the following statement true or false? Sam is not opaque.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sam is a dumpus.", "Dumpuses are wumpuses.", "Sam is a wumpus.", "Each wumpus is a zumpus.", "Sam is a zumpus.", "Zumpuses are impuses.", "Sam is an impus.", "Each impus is a yumpus.", "Sam is a yumpus.", "Every yumpus is opaque.", "Sam is opaque." ] }, { "id": "ProntoQA_78", "context": "Each impus is not happy. Each impus is a vumpus. Each vumpus is brown. Vumpuses are dumpuses. Each jompus is not small. Dumpuses are not earthy. Every dumpus is a rompus. Each rompus is transparent. Rompuses are wumpuses. Wumpuses are kind. Wumpuses are yumpuses. Yumpuses are small. Each yumpus is a zumpus. Each zumpus is liquid. Zumpuses are tumpuses. Tumpuses are hot. Each tumpus is a numpus. Fae is a vumpus.", "question": "Is the following statement true or false? Fae is small.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Fae is a vumpus.", "Vumpuses are dumpuses.", "Fae is a dumpus.", "Every dumpus is a rompus.", "Fae is a rompus.", "Rompuses are wumpuses.", "Fae is a wumpus.", "Wumpuses are yumpuses.", "Fae is a yumpus.", "Yumpuses are small.", "Fae is small." ] }, { "id": "ProntoQA_79", "context": "Each impus is earthy. Impuses are rompuses. Rompuses are kind. Rompuses are wumpuses. Each wumpus is temperate. Each wumpus is a dumpus. Dumpuses are wooden. Each dumpus is a numpus. Each numpus is not blue. Each numpus is a yumpus. Each yumpus is large. Every yumpus is a vumpus. Vumpuses are dull. Tumpuses are blue. Vumpuses are jompuses. Each jompus is nervous. Jompuses are zumpuses. Stella is an impus.", "question": "Is the following statement true or false? Stella is blue.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Stella is an impus.", "Impuses are rompuses.", "Stella is a rompus.", "Rompuses are wumpuses.", "Stella is a wumpus.", "Each wumpus is a dumpus.", "Stella is a dumpus.", "Each dumpus is a numpus.", "Stella is a numpus.", "Each numpus is not blue.", "Stella is not blue." ] }, { "id": "ProntoQA_80", "context": "Each numpus is large. Numpuses are impuses. Impuses are not cold. Impuses are dumpuses. Every dumpus is not floral. Dumpuses are vumpuses. Every vumpus is not luminous. Every vumpus is a yumpus. Each rompus is not blue. Yumpuses are blue. Yumpuses are tumpuses. Every tumpus is happy. Each tumpus is a zumpus. Zumpuses are sour. Each zumpus is a wumpus. Wumpuses are bright. Each wumpus is a jompus. Sally is a numpus.", "question": "Is the following statement true or false? Sally is blue.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sally is a numpus.", "Numpuses are impuses.", "Sally is an impus.", "Impuses are dumpuses.", "Sally is a dumpus.", "Dumpuses are vumpuses.", "Sally is a vumpus.", "Every vumpus is a yumpus.", "Sally is a yumpus.", "Yumpuses are blue.", "Sally is blue." ] }, { "id": "ProntoQA_81", "context": "Jompuses are not dull. Every wumpus is opaque. Wumpuses are dumpuses. Every dumpus is not floral. Dumpuses are numpuses. Each numpus is not luminous. Each numpus is a vumpus. Every vumpus is large. Vumpuses are tumpuses. Every tumpus is not orange. Every tumpus is a zumpus. Zumpuses are dull. Every zumpus is an impus. Every impus is spicy. Every impus is a rompus. Rompuses are not temperate. Every rompus is a yumpus. Sam is a dumpus.", "question": "Is the following statement true or false? Sam is dull.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sam is a dumpus.", "Dumpuses are numpuses.", "Sam is a numpus.", "Each numpus is a vumpus.", "Sam is a vumpus.", "Vumpuses are tumpuses.", "Sam is a tumpus.", "Every tumpus is a zumpus.", "Sam is a zumpus.", "Zumpuses are dull.", "Sam is dull." ] }, { "id": "ProntoQA_82", "context": "Impuses are mean. Each impus is a yumpus. Yumpuses are blue. Yumpuses are wumpuses. Wumpuses are hot. Every wumpus is a numpus. Jompuses are happy. Numpuses are fruity. Numpuses are dumpuses. Every dumpus is not dull. Every dumpus is a tumpus. Tumpuses are not happy. Every tumpus is a vumpus. Vumpuses are not opaque. Every vumpus is a rompus. Rompuses are metallic. Each rompus is a zumpus. Rex is a yumpus.", "question": "Is the following statement true or false? Rex is not happy.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Rex is a yumpus.", "Yumpuses are wumpuses.", "Rex is a wumpus.", "Every wumpus is a numpus.", "Rex is a numpus.", "Numpuses are dumpuses.", "Rex is a dumpus.", "Every dumpus is a tumpus.", "Rex is a tumpus.", "Tumpuses are not happy.", "Rex is not happy." ] }, { "id": "ProntoQA_83", "context": "Tumpuses are transparent. Each impus is cold. Impuses are yumpuses. Every yumpus is sour. Yumpuses are zumpuses. Zumpuses are not amenable. Every zumpus is a numpus. Numpuses are wooden. Numpuses are rompuses. Each rompus is not transparent. Every rompus is a dumpus. Dumpuses are dull. Each dumpus is a vumpus. Vumpuses are large. Each vumpus is a wumpus. Every wumpus is floral. Each wumpus is a jompus. Wren is an impus.", "question": "Is the following statement true or false? Wren is transparent.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Wren is an impus.", "Impuses are yumpuses.", "Wren is a yumpus.", "Yumpuses are zumpuses.", "Wren is a zumpus.", "Every zumpus is a numpus.", "Wren is a numpus.", "Numpuses are rompuses.", "Wren is a rompus.", "Each rompus is not transparent.", "Wren is not transparent." ] }, { "id": "ProntoQA_84", "context": "Vumpuses are floral. Vumpuses are wumpuses. Each wumpus is not spicy. Wumpuses are zumpuses. Zumpuses are orange. Zumpuses are tumpuses. Every tumpus is dull. Every tumpus is a dumpus. Every dumpus is amenable. Every yumpus is not opaque. Dumpuses are impuses. Each impus is not feisty. Every impus is a jompus. Each jompus is opaque. Jompuses are numpuses. Rex is a zumpus.", "question": "Is the following statement true or false? Rex is not opaque.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Rex is a zumpus.", "Zumpuses are tumpuses.", "Rex is a tumpus.", "Every tumpus is a dumpus.", "Rex is a dumpus.", "Dumpuses are impuses.", "Rex is an impus.", "Every impus is a jompus.", "Rex is a jompus.", "Each jompus is opaque.", "Rex is opaque." ] }, { "id": "ProntoQA_85", "context": "Rompuses are not earthy. Every rompus is a zumpus. Zumpuses are not bitter. Every zumpus is a jompus. Each jompus is dull. Jompuses are vumpuses. Numpuses are not transparent. Every vumpus is not kind. Vumpuses are tumpuses. Tumpuses are temperate. Every tumpus is a yumpus. Yumpuses are happy. Yumpuses are dumpuses. Every dumpus is liquid. Dumpuses are wumpuses. Wumpuses are transparent. Wumpuses are impuses. Sam is a vumpus.", "question": "Is the following statement true or false? Sam is not transparent.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sam is a vumpus.", "Vumpuses are tumpuses.", "Sam is a tumpus.", "Every tumpus is a yumpus.", "Sam is a yumpus.", "Yumpuses are dumpuses.", "Sam is a dumpus.", "Dumpuses are wumpuses.", "Sam is a wumpus.", "Wumpuses are transparent.", "Sam is transparent." ] }, { "id": "ProntoQA_86", "context": "Zumpuses are luminous. Each zumpus is a tumpus. Each tumpus is not spicy. Tumpuses are vumpuses. Vumpuses are not fruity. Every vumpus is an impus. Each impus is small. Rompuses are not shy. Impuses are yumpuses. Each yumpus is temperate. Every yumpus is a jompus. Each jompus is bright. Each jompus is a wumpus. Wumpuses are amenable. Each wumpus is a dumpus. Dumpuses are shy. Dumpuses are numpuses. Stella is an impus.", "question": "Is the following statement true or false? Stella is not shy.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Stella is an impus.", "Impuses are yumpuses.", "Stella is a yumpus.", "Every yumpus is a jompus.", "Stella is a jompus.", "Each jompus is a wumpus.", "Stella is a wumpus.", "Each wumpus is a dumpus.", "Stella is a dumpus.", "Dumpuses are shy.", "Stella is shy." ] }, { "id": "ProntoQA_87", "context": "Numpuses are not fruity. Numpuses are dumpuses. Each dumpus is not orange. Dumpuses are yumpuses. Yumpuses are nervous. Yumpuses are vumpuses. Every impus is sour. Every vumpus is hot. Vumpuses are tumpuses. Each tumpus is small. Tumpuses are rompuses. Every rompus is mean. Rompuses are zumpuses. Each zumpus is not sour. Zumpuses are jompuses. Alex is a yumpus.", "question": "Is the following statement true or false? Alex is not sour.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Alex is a yumpus.", "Yumpuses are vumpuses.", "Alex is a vumpus.", "Vumpuses are tumpuses.", "Alex is a tumpus.", "Tumpuses are rompuses.", "Alex is a rompus.", "Rompuses are zumpuses.", "Alex is a zumpus.", "Each zumpus is not sour.", "Alex is not sour." ] }, { "id": "ProntoQA_88", "context": "Jompuses are spicy. Jompuses are yumpuses. Yumpuses are small. Each yumpus is a vumpus. Every impus is not liquid. Every vumpus is blue. Vumpuses are dumpuses. Every dumpus is fruity. Every dumpus is a zumpus. Each zumpus is aggressive. Every zumpus is a rompus. Rompuses are opaque. Every rompus is a wumpus. Each wumpus is liquid. Each wumpus is a tumpus. Wren is a vumpus.", "question": "Is the following statement true or false? Wren is liquid.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Wren is a vumpus.", "Vumpuses are dumpuses.", "Wren is a dumpus.", "Every dumpus is a zumpus.", "Wren is a zumpus.", "Every zumpus is a rompus.", "Wren is a rompus.", "Every rompus is a wumpus.", "Wren is a wumpus.", "Each wumpus is liquid.", "Wren is liquid." ] }, { "id": "ProntoQA_89", "context": "Tumpuses are sour. Each tumpus is a vumpus. Vumpuses are bright. Each vumpus is a numpus. Each rompus is not brown. Each numpus is liquid. Numpuses are impuses. Impuses are not small. Impuses are jompuses. Jompuses are brown. Jompuses are yumpuses. Max is a tumpus.", "question": "Is the following statement true or false? Max is not brown.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Max is a tumpus.", "Each tumpus is a vumpus.", "Max is a vumpus.", "Each vumpus is a numpus.", "Max is a numpus.", "Numpuses are impuses.", "Max is an impus.", "Impuses are jompuses.", "Max is a jompus.", "Jompuses are brown.", "Max is brown." ] }, { "id": "ProntoQA_90", "context": "Each zumpus is not nervous. Zumpuses are dumpuses. Every dumpus is sweet. Each dumpus is a vumpus. Each vumpus is not brown. Vumpuses are rompuses. Rompuses are kind. Rompuses are yumpuses. Every yumpus is large. Each yumpus is a tumpus. Tumpuses are fruity. Each tumpus is a wumpus. Every impus is metallic. Wumpuses are not metallic. Every wumpus is a numpus. Numpuses are not transparent. Every numpus is a jompus. Max is a vumpus.", "question": "Is the following statement true or false? Max is metallic.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Max is a vumpus.", "Vumpuses are rompuses.", "Max is a rompus.", "Rompuses are yumpuses.", "Max is a yumpus.", "Each yumpus is a tumpus.", "Max is a tumpus.", "Each tumpus is a wumpus.", "Max is a wumpus.", "Wumpuses are not metallic.", "Max is not metallic." ] }, { "id": "ProntoQA_91", "context": "Numpuses are spicy. Dumpuses are not small. Each numpus is a yumpus. Yumpuses are not opaque. Every yumpus is a wumpus. Wumpuses are floral. Each wumpus is a tumpus. Tumpuses are cold. Each tumpus is a vumpus. Vumpuses are not bright. Each vumpus is an impus. Impuses are nervous. Each impus is a jompus. Jompuses are mean. Jompuses are zumpuses. Zumpuses are small. Zumpuses are rompuses. Wren is a tumpus.", "question": "Is the following statement true or false? Wren is not small.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Wren is a tumpus.", "Each tumpus is a vumpus.", "Wren is a vumpus.", "Each vumpus is an impus.", "Wren is an impus.", "Each impus is a jompus.", "Wren is a jompus.", "Jompuses are zumpuses.", "Wren is a zumpus.", "Zumpuses are small.", "Wren is small." ] }, { "id": "ProntoQA_92", "context": "Wumpuses are transparent. Each wumpus is a dumpus. Dumpuses are shy. Every dumpus is a zumpus. Each zumpus is cold. Zumpuses are rompuses. Every rompus is not red. Rompuses are impuses. Each impus is metallic. Each impus is a numpus. Every numpus is fruity. Numpuses are jompuses. Tumpuses are not metallic. Jompuses are dull. Jompuses are vumpuses. Vumpuses are spicy. Every vumpus is a yumpus. Sally is a wumpus.", "question": "Is the following statement true or false? Sally is metallic.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sally is a wumpus.", "Each wumpus is a dumpus.", "Sally is a dumpus.", "Every dumpus is a zumpus.", "Sally is a zumpus.", "Zumpuses are rompuses.", "Sally is a rompus.", "Rompuses are impuses.", "Sally is an impus.", "Each impus is metallic.", "Sally is metallic." ] }, { "id": "ProntoQA_93", "context": "Every yumpus is not kind. Each yumpus is an impus. Every impus is not red. Every impus is a numpus. Numpuses are feisty. Each dumpus is not luminous. Numpuses are zumpuses. Each zumpus is cold. Zumpuses are wumpuses. Each wumpus is fruity. Every wumpus is a rompus. Every rompus is spicy. Rompuses are tumpuses. Tumpuses are luminous. Tumpuses are jompuses. Every jompus is not dull. Jompuses are vumpuses. Polly is a numpus.", "question": "Is the following statement true or false? Polly is not luminous.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Polly is a numpus.", "Numpuses are zumpuses.", "Polly is a zumpus.", "Zumpuses are wumpuses.", "Polly is a wumpus.", "Every wumpus is a rompus.", "Polly is a rompus.", "Rompuses are tumpuses.", "Polly is a tumpus.", "Tumpuses are luminous.", "Polly is luminous." ] }, { "id": "ProntoQA_94", "context": "Dumpuses are wooden. Dumpuses are rompuses. Rompuses are small. Rompuses are jompuses. Jompuses are orange. Jompuses are wumpuses. Each wumpus is earthy. Each wumpus is a zumpus. Zumpuses are angry. Zumpuses are vumpuses. Tumpuses are not angry. Vumpuses are not spicy. Each vumpus is a yumpus. Yumpuses are not hot. Every yumpus is an impus. Each impus is bright. Impuses are numpuses. Max is a dumpus.", "question": "Is the following statement true or false? Max is angry.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Max is a dumpus.", "Dumpuses are rompuses.", "Max is a rompus.", "Rompuses are jompuses.", "Max is a jompus.", "Jompuses are wumpuses.", "Max is a wumpus.", "Each wumpus is a zumpus.", "Max is a zumpus.", "Zumpuses are angry.", "Max is angry." ] }, { "id": "ProntoQA_95", "context": "Each impus is large. Impuses are jompuses. Jompuses are dull. Each jompus is a vumpus. Vumpuses are bitter. Vumpuses are dumpuses. Each dumpus is kind. Each dumpus is a rompus. Rompuses are metallic. Each rompus is a wumpus. Every wumpus is blue. Every wumpus is a zumpus. Numpuses are feisty. Zumpuses are not feisty. Every zumpus is a yumpus. Each yumpus is floral. Each yumpus is a tumpus. Stella is a vumpus.", "question": "Is the following statement true or false? Stella is feisty.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Stella is a vumpus.", "Vumpuses are dumpuses.", "Stella is a dumpus.", "Each dumpus is a rompus.", "Stella is a rompus.", "Each rompus is a wumpus.", "Stella is a wumpus.", "Every wumpus is a zumpus.", "Stella is a zumpus.", "Zumpuses are not feisty.", "Stella is not feisty." ] }, { "id": "ProntoQA_96", "context": "Each impus is sour. Each impus is a vumpus. Each vumpus is cold. Vumpuses are zumpuses. Zumpuses are not luminous. Zumpuses are numpuses. Every numpus is earthy. Every numpus is a yumpus. Yumpuses are not mean. Each tumpus is bright. Each yumpus is a rompus. Each rompus is orange. Every rompus is a dumpus. Dumpuses are not bright. Dumpuses are jompuses. Every jompus is small. Jompuses are wumpuses. Fae is a zumpus.", "question": "Is the following statement true or false? Fae is bright.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Fae is a zumpus.", "Zumpuses are numpuses.", "Fae is a numpus.", "Every numpus is a yumpus.", "Fae is a yumpus.", "Each yumpus is a rompus.", "Fae is a rompus.", "Every rompus is a dumpus.", "Fae is a dumpus.", "Dumpuses are not bright.", "Fae is not bright." ] }, { "id": "ProntoQA_97", "context": "Tumpuses are large. Every tumpus is a rompus. Rompuses are not transparent. Each rompus is a zumpus. Every zumpus is sweet. Each zumpus is a vumpus. Every vumpus is brown. Vumpuses are yumpuses. Yumpuses are not aggressive. Yumpuses are numpuses. Numpuses are dull. Each numpus is an impus. Impuses are not metallic. Each impus is a jompus. Every dumpus is not dull. Jompuses are not cold. Jompuses are wumpuses. Polly is a rompus.", "question": "Is the following statement true or false? Polly is not dull.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Polly is a rompus.", "Each rompus is a zumpus.", "Polly is a zumpus.", "Each zumpus is a vumpus.", "Polly is a vumpus.", "Vumpuses are yumpuses.", "Polly is a yumpus.", "Yumpuses are numpuses.", "Polly is a numpus.", "Numpuses are dull.", "Polly is dull." ] }, { "id": "ProntoQA_98", "context": "Vumpuses are liquid. Vumpuses are rompuses. Every rompus is fruity. Each rompus is a zumpus. Every zumpus is bright. Zumpuses are tumpuses. Each tumpus is happy. Each tumpus is a jompus. Jompuses are large. Every jompus is an impus. Impuses are cold. Impuses are dumpuses. Dumpuses are angry. Each dumpus is a yumpus. Each yumpus is not orange. Every wumpus is not angry. Yumpuses are numpuses. Rex is a zumpus.", "question": "Is the following statement true or false? Rex is not angry.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Rex is a zumpus.", "Zumpuses are tumpuses.", "Rex is a tumpus.", "Each tumpus is a jompus.", "Rex is a jompus.", "Every jompus is an impus.", "Rex is an impus.", "Impuses are dumpuses.", "Rex is a dumpus.", "Dumpuses are angry.", "Rex is angry." ] }, { "id": "ProntoQA_99", "context": "Dumpuses are cold. Dumpuses are rompuses. Each rompus is red. Rompuses are numpuses. Numpuses are dull. Each numpus is a yumpus. Yumpuses are happy. Every yumpus is a tumpus. Every tumpus is not kind. Every tumpus is a zumpus. Zumpuses are large. Every zumpus is a vumpus. Vumpuses are earthy. Every vumpus is an impus. Jompuses are not earthy. Impuses are not liquid. Impuses are wumpuses. Sam is a numpus.", "question": "Is the following statement true or false? Sam is not earthy.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sam is a numpus.", "Each numpus is a yumpus.", "Sam is a yumpus.", "Every yumpus is a tumpus.", "Sam is a tumpus.", "Every tumpus is a zumpus.", "Sam is a zumpus.", "Every zumpus is a vumpus.", "Sam is a vumpus.", "Vumpuses are earthy.", "Sam is earthy." ] }, { "id": "ProntoQA_100", "context": "Vumpuses are sour. Vumpuses are tumpuses. Tumpuses are bright. Each tumpus is a dumpus. Each dumpus is not large. Dumpuses are numpuses. Numpuses are metallic. Each numpus is a jompus. Every jompus is not angry. Jompuses are wumpuses. Wumpuses are not shy. Wumpuses are rompuses. Rompuses are not opaque. Rompuses are yumpuses. Every zumpus is not blue. Yumpuses are blue. Yumpuses are impuses. Alex is a numpus.", "question": "Is the following statement true or false? Alex is blue.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Alex is a numpus.", "Each numpus is a jompus.", "Alex is a jompus.", "Jompuses are wumpuses.", "Alex is a wumpus.", "Wumpuses are rompuses.", "Alex is a rompus.", "Rompuses are yumpuses.", "Alex is a yumpus.", "Yumpuses are blue.", "Alex is blue." ] }, { "id": "ProntoQA_101", "context": "Each zumpus is dull. Every impus is not shy. Each zumpus is a rompus. Rompuses are large. Every rompus is a wumpus. Wumpuses are metallic. Wumpuses are yumpuses. Yumpuses are fruity. Each yumpus is a vumpus. Vumpuses are shy. Vumpuses are tumpuses. Each tumpus is red. Tumpuses are jompuses. Jompuses are not bitter. Jompuses are dumpuses. Sam is a zumpus.", "question": "Is the following statement true or false? Sam is not shy.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sam is a zumpus.", "Each zumpus is a rompus.", "Sam is a rompus.", "Every rompus is a wumpus.", "Sam is a wumpus.", "Wumpuses are yumpuses.", "Sam is a yumpus.", "Each yumpus is a vumpus.", "Sam is a vumpus.", "Vumpuses are shy.", "Sam is shy." ] }, { "id": "ProntoQA_102", "context": "Each dumpus is not dull. Tumpuses are not spicy. Dumpuses are vumpuses. Vumpuses are fruity. Each vumpus is a zumpus. Each zumpus is large. Each zumpus is a wumpus. Wumpuses are blue. Wumpuses are numpuses. Each numpus is kind. Numpuses are rompuses. Rompuses are cold. Rompuses are jompuses. Jompuses are not transparent. Jompuses are yumpuses. Yumpuses are spicy. Every yumpus is an impus. Rex is a wumpus.", "question": "Is the following statement true or false? Rex is not spicy.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Rex is a wumpus.", "Wumpuses are numpuses.", "Rex is a numpus.", "Numpuses are rompuses.", "Rex is a rompus.", "Rompuses are jompuses.", "Rex is a jompus.", "Jompuses are yumpuses.", "Rex is a yumpus.", "Yumpuses are spicy.", "Rex is spicy." ] }, { "id": "ProntoQA_103", "context": "Every rompus is not liquid. Each rompus is a tumpus. Tumpuses are not opaque. Every tumpus is a jompus. Jompuses are red. Jompuses are vumpuses. Each vumpus is not angry. Dumpuses are small. Vumpuses are numpuses. Numpuses are not small. Numpuses are zumpuses. Zumpuses are shy. Zumpuses are impuses. Impuses are not bright. Every impus is a yumpus. Yumpuses are not bitter. Each yumpus is a wumpus. Sally is a rompus.", "question": "Is the following statement true or false? Sally is small.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sally is a rompus.", "Each rompus is a tumpus.", "Sally is a tumpus.", "Every tumpus is a jompus.", "Sally is a jompus.", "Jompuses are vumpuses.", "Sally is a vumpus.", "Vumpuses are numpuses.", "Sally is a numpus.", "Numpuses are not small.", "Sally is not small." ] }, { "id": "ProntoQA_104", "context": "Yumpuses are not temperate. Yumpuses are jompuses. Jompuses are floral. Every jompus is a wumpus. Wumpuses are mean. Wumpuses are impuses. Impuses are not liquid. Each impus is a vumpus. Every vumpus is red. Each vumpus is a dumpus. Every dumpus is not sour. Each dumpus is a zumpus. Each rompus is not red. Each zumpus is large. Zumpuses are numpuses. Numpuses are opaque. Numpuses are tumpuses. Stella is a yumpus.", "question": "Is the following statement true or false? Stella is red.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Stella is a yumpus.", "Yumpuses are jompuses.", "Stella is a jompus.", "Every jompus is a wumpus.", "Stella is a wumpus.", "Wumpuses are impuses.", "Stella is an impus.", "Each impus is a vumpus.", "Stella is a vumpus.", "Every vumpus is red.", "Stella is red." ] }, { "id": "ProntoQA_105", "context": "Tumpuses are wooden. Every tumpus is a yumpus. Yumpuses are spicy. Yumpuses are impuses. Impuses are feisty. Every impus is a rompus. Each rompus is large. Each rompus is a zumpus. Wumpuses are not brown. Every zumpus is not cold. Zumpuses are numpuses. Numpuses are brown. Every numpus is a vumpus. Each vumpus is not floral. Each vumpus is a jompus. Every jompus is not mean. Each jompus is a dumpus. Alex is a yumpus.", "question": "Is the following statement true or false? Alex is not brown.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Alex is a yumpus.", "Yumpuses are impuses.", "Alex is an impus.", "Every impus is a rompus.", "Alex is a rompus.", "Each rompus is a zumpus.", "Alex is a zumpus.", "Zumpuses are numpuses.", "Alex is a numpus.", "Numpuses are brown.", "Alex is brown." ] }, { "id": "ProntoQA_106", "context": "Rompuses are not dull. Rompuses are wumpuses. Each wumpus is floral. Every wumpus is a dumpus. Dumpuses are hot. Every dumpus is a vumpus. Vumpuses are not large. Vumpuses are zumpuses. Every zumpus is nervous. Zumpuses are jompuses. Jompuses are spicy. Jompuses are numpuses. Numpuses are wooden. Every numpus is an impus. Every impus is angry. Tumpuses are not angry. Each impus is a yumpus. Max is a vumpus.", "question": "Is the following statement true or false? Max is angry.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Max is a vumpus.", "Vumpuses are zumpuses.", "Max is a zumpus.", "Zumpuses are jompuses.", "Max is a jompus.", "Jompuses are numpuses.", "Max is a numpus.", "Every numpus is an impus.", "Max is an impus.", "Every impus is angry.", "Max is angry." ] }, { "id": "ProntoQA_107", "context": "Every yumpus is not opaque. Yumpuses are zumpuses. Zumpuses are nervous. Every zumpus is a tumpus. Each tumpus is not large. Tumpuses are impuses. Impuses are temperate. Impuses are numpuses. Every wumpus is bitter. Each numpus is not bitter. Numpuses are vumpuses. Every vumpus is not kind. Vumpuses are rompuses. Rompuses are brown. Rompuses are jompuses. Every jompus is wooden. Every jompus is a dumpus. Sally is a yumpus.", "question": "Is the following statement true or false? Sally is not bitter.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sally is a yumpus.", "Yumpuses are zumpuses.", "Sally is a zumpus.", "Every zumpus is a tumpus.", "Sally is a tumpus.", "Tumpuses are impuses.", "Sally is an impus.", "Impuses are numpuses.", "Sally is a numpus.", "Each numpus is not bitter.", "Sally is not bitter." ] }, { "id": "ProntoQA_108", "context": "Every zumpus is brown. Every zumpus is a dumpus. Each dumpus is not dull. Every dumpus is a yumpus. Every numpus is not hot. Each yumpus is not earthy. Yumpuses are wumpuses. Wumpuses are wooden. Every wumpus is a jompus. Each jompus is large. Every jompus is a tumpus. Each tumpus is amenable. Tumpuses are impuses. Every impus is hot. Every impus is a rompus. Rompuses are sweet. Rompuses are vumpuses. Wren is a yumpus.", "question": "Is the following statement true or false? Wren is not hot.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Wren is a yumpus.", "Yumpuses are wumpuses.", "Wren is a wumpus.", "Every wumpus is a jompus.", "Wren is a jompus.", "Every jompus is a tumpus.", "Wren is a tumpus.", "Tumpuses are impuses.", "Wren is an impus.", "Every impus is hot.", "Wren is hot." ] }, { "id": "ProntoQA_109", "context": "Wumpuses are dull. Every wumpus is a dumpus. Dumpuses are not liquid. Each numpus is large. Every dumpus is a jompus. Each jompus is not brown. Jompuses are tumpuses. Every tumpus is opaque. Each tumpus is a yumpus. Yumpuses are not large. Yumpuses are vumpuses. Vumpuses are sour. Vumpuses are rompuses. Rompuses are kind. Rompuses are zumpuses. Zumpuses are fruity. Zumpuses are impuses. Sally is a wumpus.", "question": "Is the following statement true or false? Sally is large.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sally is a wumpus.", "Every wumpus is a dumpus.", "Sally is a dumpus.", "Every dumpus is a jompus.", "Sally is a jompus.", "Jompuses are tumpuses.", "Sally is a tumpus.", "Each tumpus is a yumpus.", "Sally is a yumpus.", "Yumpuses are not large.", "Sally is not large." ] }, { "id": "ProntoQA_110", "context": "Tumpuses are temperate. Tumpuses are zumpuses. Zumpuses are large. Zumpuses are jompuses. Jompuses are not blue. Every jompus is a rompus. Each rompus is earthy. Vumpuses are not opaque. Every rompus is a yumpus. Yumpuses are happy. Yumpuses are wumpuses. Each wumpus is opaque. Each wumpus is a numpus. Sally is a zumpus.", "question": "Is the following statement true or false? Sally is not opaque.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sally is a zumpus.", "Zumpuses are jompuses.", "Sally is a jompus.", "Every jompus is a rompus.", "Sally is a rompus.", "Every rompus is a yumpus.", "Sally is a yumpus.", "Yumpuses are wumpuses.", "Sally is a wumpus.", "Each wumpus is opaque.", "Sally is opaque." ] }, { "id": "ProntoQA_111", "context": "Every impus is metallic. Impuses are jompuses. Jompuses are not sweet. Jompuses are numpuses. Each numpus is not cold. Every numpus is a tumpus. Tumpuses are not dull. Every tumpus is a dumpus. Every dumpus is red. Each wumpus is amenable. Dumpuses are vumpuses. Vumpuses are happy. Vumpuses are yumpuses. Every yumpus is fruity. Every yumpus is a rompus. Every rompus is not amenable. Rompuses are zumpuses. Sally is a tumpus.", "question": "Is the following statement true or false? Sally is amenable.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sally is a tumpus.", "Every tumpus is a dumpus.", "Sally is a dumpus.", "Dumpuses are vumpuses.", "Sally is a vumpus.", "Vumpuses are yumpuses.", "Sally is a yumpus.", "Every yumpus is a rompus.", "Sally is a rompus.", "Every rompus is not amenable.", "Sally is not amenable." ] }, { "id": "ProntoQA_112", "context": "Each rompus is not large. Every rompus is a numpus. Every numpus is fruity. Numpuses are wumpuses. Wumpuses are not metallic. Wumpuses are tumpuses. Tumpuses are cold. Dumpuses are not brown. Tumpuses are jompuses. Each jompus is sweet. Jompuses are zumpuses. Each zumpus is brown. Every zumpus is a yumpus. Max is a numpus.", "question": "Is the following statement true or false? Max is not brown.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Max is a numpus.", "Numpuses are wumpuses.", "Max is a wumpus.", "Wumpuses are tumpuses.", "Max is a tumpus.", "Tumpuses are jompuses.", "Max is a jompus.", "Jompuses are zumpuses.", "Max is a zumpus.", "Each zumpus is brown.", "Max is brown." ] }, { "id": "ProntoQA_113", "context": "Every rompus is wooden. Every zumpus is happy. Each zumpus is a jompus. Jompuses are kind. Jompuses are impuses. Impuses are spicy. Impuses are dumpuses. Each dumpus is large. Dumpuses are vumpuses. Vumpuses are not wooden. Each vumpus is a yumpus. Every yumpus is transparent. Each yumpus is a numpus. Rex is a zumpus.", "question": "Is the following statement true or false? Rex is not wooden.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Rex is a zumpus.", "Each zumpus is a jompus.", "Rex is a jompus.", "Jompuses are impuses.", "Rex is an impus.", "Impuses are dumpuses.", "Rex is a dumpus.", "Dumpuses are vumpuses.", "Rex is a vumpus.", "Vumpuses are not wooden.", "Rex is not wooden." ] }, { "id": "ProntoQA_114", "context": "Every vumpus is liquid. Every vumpus is an impus. Impuses are not aggressive. Impuses are tumpuses. Tumpuses are large. Tumpuses are yumpuses. Each yumpus is bright. Every yumpus is a wumpus. Wumpuses are opaque. Wumpuses are numpuses. Every numpus is hot. Numpuses are rompuses. Each rompus is sweet. Rompuses are dumpuses. Dumpuses are blue. Each dumpus is a jompus. Each zumpus is not sweet. Polly is a tumpus.", "question": "Is the following statement true or false? Polly is sweet.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Polly is a tumpus.", "Tumpuses are yumpuses.", "Polly is a yumpus.", "Every yumpus is a wumpus.", "Polly is a wumpus.", "Wumpuses are numpuses.", "Polly is a numpus.", "Numpuses are rompuses.", "Polly is a rompus.", "Each rompus is sweet.", "Polly is sweet." ] }, { "id": "ProntoQA_115", "context": "Zumpuses are sweet. Each zumpus is a vumpus. Vumpuses are cold. Vumpuses are jompuses. Each jompus is not blue. Jompuses are dumpuses. Every dumpus is floral. Each dumpus is a wumpus. Wumpuses are bright. Impuses are wooden. Every wumpus is a rompus. Every rompus is nervous. Every rompus is a yumpus. Yumpuses are transparent. Yumpuses are numpuses. Numpuses are not wooden. Every numpus is a tumpus. Alex is a dumpus.", "question": "Is the following statement true or false? Alex is wooden.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Alex is a dumpus.", "Each dumpus is a wumpus.", "Alex is a wumpus.", "Every wumpus is a rompus.", "Alex is a rompus.", "Every rompus is a yumpus.", "Alex is a yumpus.", "Yumpuses are numpuses.", "Alex is a numpus.", "Numpuses are not wooden.", "Alex is not wooden." ] }, { "id": "ProntoQA_116", "context": "Each numpus is not dull. Every numpus is a jompus. Jompuses are not blue. Every jompus is a vumpus. Vumpuses are not small. Each vumpus is an impus. Every impus is mean. Impuses are rompuses. Rompuses are not opaque. Rompuses are yumpuses. Yumpuses are floral. Each yumpus is a tumpus. Tumpuses are nervous. Every tumpus is a dumpus. Every wumpus is not hot. Dumpuses are hot. Each dumpus is a zumpus. Sally is an impus.", "question": "Is the following statement true or false? Sally is not hot.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sally is an impus.", "Impuses are rompuses.", "Sally is a rompus.", "Rompuses are yumpuses.", "Sally is a yumpus.", "Each yumpus is a tumpus.", "Sally is a tumpus.", "Every tumpus is a dumpus.", "Sally is a dumpus.", "Dumpuses are hot.", "Sally is hot." ] }, { "id": "ProntoQA_117", "context": "Numpuses are earthy. Numpuses are yumpuses. Impuses are not angry. Yumpuses are not shy. Yumpuses are vumpuses. Vumpuses are blue. Each vumpus is a jompus. Each jompus is metallic. Each jompus is a rompus. Every rompus is not temperate. Every rompus is a dumpus. Each dumpus is small. Every dumpus is a wumpus. Wumpuses are bitter. Wumpuses are tumpuses. Each tumpus is angry. Tumpuses are zumpuses. Alex is a jompus.", "question": "Is the following statement true or false? Alex is angry.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Alex is a jompus.", "Each jompus is a rompus.", "Alex is a rompus.", "Every rompus is a dumpus.", "Alex is a dumpus.", "Every dumpus is a wumpus.", "Alex is a wumpus.", "Wumpuses are tumpuses.", "Alex is a tumpus.", "Each tumpus is angry.", "Alex is angry." ] }, { "id": "ProntoQA_118", "context": "Each vumpus is hot. Each vumpus is a jompus. Each jompus is red. Jompuses are impuses. Every impus is not opaque. Impuses are numpuses. Every zumpus is not sweet. Numpuses are earthy. Numpuses are rompuses. Rompuses are large. Each rompus is a tumpus. Every tumpus is not bright. Each tumpus is a wumpus. Every wumpus is sweet. Every wumpus is a dumpus. Each dumpus is angry. Dumpuses are yumpuses. Sam is an impus.", "question": "Is the following statement true or false? Sam is not sweet.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sam is an impus.", "Impuses are numpuses.", "Sam is a numpus.", "Numpuses are rompuses.", "Sam is a rompus.", "Each rompus is a tumpus.", "Sam is a tumpus.", "Each tumpus is a wumpus.", "Sam is a wumpus.", "Every wumpus is sweet.", "Sam is sweet." ] }, { "id": "ProntoQA_119", "context": "Zumpuses are not bitter. Zumpuses are tumpuses. Every tumpus is luminous. Each tumpus is an impus. Each impus is orange. Impuses are vumpuses. Each vumpus is floral. Vumpuses are jompuses. Each jompus is not temperate. Every jompus is a rompus. Rompuses are transparent. Each yumpus is shy. Each rompus is a wumpus. Each wumpus is not shy. Each wumpus is a dumpus. Each dumpus is not amenable. Dumpuses are numpuses. Max is an impus.", "question": "Is the following statement true or false? Max is shy.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Max is an impus.", "Impuses are vumpuses.", "Max is a vumpus.", "Vumpuses are jompuses.", "Max is a jompus.", "Every jompus is a rompus.", "Max is a rompus.", "Each rompus is a wumpus.", "Max is a wumpus.", "Each wumpus is not shy.", "Max is not shy." ] }, { "id": "ProntoQA_120", "context": "Every impus is small. Impuses are rompuses. Each rompus is shy. Every rompus is a zumpus. Dumpuses are fruity. Zumpuses are cold. Every zumpus is a vumpus. Every vumpus is not opaque. Vumpuses are wumpuses. Each wumpus is luminous. Every wumpus is a yumpus. Yumpuses are spicy. Every yumpus is a tumpus. Tumpuses are not fruity. Tumpuses are numpuses. Every numpus is red. Numpuses are jompuses. Stella is a zumpus.", "question": "Is the following statement true or false? Stella is not fruity.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Stella is a zumpus.", "Every zumpus is a vumpus.", "Stella is a vumpus.", "Vumpuses are wumpuses.", "Stella is a wumpus.", "Every wumpus is a yumpus.", "Stella is a yumpus.", "Every yumpus is a tumpus.", "Stella is a tumpus.", "Tumpuses are not fruity.", "Stella is not fruity." ] }, { "id": "ProntoQA_121", "context": "Every dumpus is not cold. Every dumpus is a zumpus. Each zumpus is metallic. Zumpuses are rompuses. Rompuses are dull. Each rompus is a yumpus. Each yumpus is floral. Yumpuses are impuses. Impuses are not mean. Impuses are wumpuses. Wumpuses are small. Every wumpus is a jompus. Jompuses are not transparent. Each jompus is a vumpus. Every vumpus is sour. Every vumpus is a numpus. Tumpuses are mean. Max is a dumpus.", "question": "Is the following statement true or false? Max is not mean.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Max is a dumpus.", "Every dumpus is a zumpus.", "Max is a zumpus.", "Zumpuses are rompuses.", "Max is a rompus.", "Each rompus is a yumpus.", "Max is a yumpus.", "Yumpuses are impuses.", "Max is an impus.", "Impuses are not mean.", "Max is not mean." ] }, { "id": "ProntoQA_122", "context": "Rompuses are metallic. Rompuses are dumpuses. Dumpuses are blue. Every dumpus is a numpus. Every numpus is fruity. Numpuses are jompuses. Every jompus is mean. Jompuses are tumpuses. Tumpuses are not temperate. Tumpuses are impuses. Impuses are not dull. Each impus is a yumpus. Every yumpus is not transparent. Yumpuses are zumpuses. Wumpuses are transparent. Zumpuses are not sweet. Zumpuses are vumpuses. Fae is a numpus.", "question": "Is the following statement true or false? Fae is transparent.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Fae is a numpus.", "Numpuses are jompuses.", "Fae is a jompus.", "Jompuses are tumpuses.", "Fae is a tumpus.", "Tumpuses are impuses.", "Fae is an impus.", "Each impus is a yumpus.", "Fae is a yumpus.", "Every yumpus is not transparent.", "Fae is not transparent." ] }, { "id": "ProntoQA_123", "context": "Jompuses are fruity. Jompuses are tumpuses. Tumpuses are not metallic. Tumpuses are wumpuses. Every wumpus is opaque. Each rompus is not aggressive. Wumpuses are numpuses. Numpuses are nervous. Every numpus is a zumpus. Every zumpus is small. Zumpuses are yumpuses. Yumpuses are blue. Yumpuses are impuses. Impuses are not cold. Impuses are dumpuses. Each dumpus is aggressive. Each dumpus is a vumpus. Polly is a numpus.", "question": "Is the following statement true or false? Polly is aggressive.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Polly is a numpus.", "Every numpus is a zumpus.", "Polly is a zumpus.", "Zumpuses are yumpuses.", "Polly is a yumpus.", "Yumpuses are impuses.", "Polly is an impus.", "Impuses are dumpuses.", "Polly is a dumpus.", "Each dumpus is aggressive.", "Polly is aggressive." ] }, { "id": "ProntoQA_124", "context": "Each yumpus is metallic. Yumpuses are zumpuses. Zumpuses are transparent. Every zumpus is a jompus. Jompuses are floral. Every tumpus is not cold. Jompuses are numpuses. Numpuses are happy. Each numpus is a vumpus. Vumpuses are cold. Vumpuses are impuses. Impuses are not brown. Impuses are rompuses. Rompuses are not bright. Rompuses are dumpuses. Each dumpus is large. Dumpuses are wumpuses. Sam is a yumpus.", "question": "Is the following statement true or false? Sam is not cold.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sam is a yumpus.", "Yumpuses are zumpuses.", "Sam is a zumpus.", "Every zumpus is a jompus.", "Sam is a jompus.", "Jompuses are numpuses.", "Sam is a numpus.", "Each numpus is a vumpus.", "Sam is a vumpus.", "Vumpuses are cold.", "Sam is cold." ] }, { "id": "ProntoQA_125", "context": "Every zumpus is bright. Each zumpus is a yumpus. Each yumpus is not bitter. Every yumpus is a rompus. Each rompus is small. Rompuses are dumpuses. Dumpuses are brown. Each dumpus is an impus. Impuses are not feisty. Tumpuses are feisty. Every impus is a numpus. Numpuses are not wooden. Numpuses are jompuses. Each jompus is transparent. Every jompus is a vumpus. Vumpuses are not cold. Every vumpus is a wumpus. Sally is a zumpus.", "question": "Is the following statement true or false? Sally is not feisty.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sally is a zumpus.", "Each zumpus is a yumpus.", "Sally is a yumpus.", "Every yumpus is a rompus.", "Sally is a rompus.", "Rompuses are dumpuses.", "Sally is a dumpus.", "Each dumpus is an impus.", "Sally is an impus.", "Impuses are not feisty.", "Sally is not feisty." ] }, { "id": "ProntoQA_126", "context": "Impuses are not angry. Impuses are zumpuses. Zumpuses are transparent. Every zumpus is a yumpus. Yumpuses are small. Yumpuses are wumpuses. Each wumpus is sour. Wumpuses are jompuses. Each jompus is orange. Each jompus is a dumpus. Every rompus is not floral. Every dumpus is floral. Dumpuses are numpuses. Every numpus is luminous. Numpuses are vumpuses. Stella is a zumpus.", "question": "Is the following statement true or false? Stella is not floral.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Stella is a zumpus.", "Every zumpus is a yumpus.", "Stella is a yumpus.", "Yumpuses are wumpuses.", "Stella is a wumpus.", "Wumpuses are jompuses.", "Stella is a jompus.", "Each jompus is a dumpus.", "Stella is a dumpus.", "Every dumpus is floral.", "Stella is floral." ] }, { "id": "ProntoQA_127", "context": "Jompuses are kind. Jompuses are zumpuses. Every zumpus is bitter. Zumpuses are vumpuses. Vumpuses are not large. Each vumpus is a numpus. Rompuses are nervous. Each numpus is not luminous. Every numpus is a dumpus. Dumpuses are not nervous. Dumpuses are tumpuses. Tumpuses are not opaque. Every tumpus is a wumpus. Every wumpus is orange. Every wumpus is an impus. Each impus is bright. Every impus is a yumpus. Max is a jompus.", "question": "Is the following statement true or false? Max is nervous.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Max is a jompus.", "Jompuses are zumpuses.", "Max is a zumpus.", "Zumpuses are vumpuses.", "Max is a vumpus.", "Each vumpus is a numpus.", "Max is a numpus.", "Every numpus is a dumpus.", "Max is a dumpus.", "Dumpuses are not nervous.", "Max is not nervous." ] }, { "id": "ProntoQA_128", "context": "Each yumpus is fruity. Every yumpus is a dumpus. Every dumpus is dull. Each dumpus is a zumpus. Zumpuses are nervous. Every zumpus is an impus. Each impus is large. Every impus is a vumpus. Tumpuses are temperate. Vumpuses are not temperate. Each vumpus is a jompus. Every jompus is wooden. Jompuses are wumpuses. Wumpuses are not red. Every wumpus is a rompus. Rompuses are amenable. Rompuses are numpuses. Sam is a yumpus.", "question": "Is the following statement true or false? Sam is temperate.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sam is a yumpus.", "Every yumpus is a dumpus.", "Sam is a dumpus.", "Each dumpus is a zumpus.", "Sam is a zumpus.", "Every zumpus is an impus.", "Sam is an impus.", "Every impus is a vumpus.", "Sam is a vumpus.", "Vumpuses are not temperate.", "Sam is not temperate." ] }, { "id": "ProntoQA_129", "context": "Every numpus is not transparent. Numpuses are impuses. Every tumpus is sweet. Each impus is metallic. Impuses are yumpuses. Yumpuses are large. Every yumpus is a dumpus. Every dumpus is angry. Each dumpus is a vumpus. Vumpuses are not sweet. Vumpuses are jompuses. Each jompus is bright. Jompuses are rompuses. Wren is a numpus.", "question": "Is the following statement true or false? Wren is not sweet.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Wren is a numpus.", "Numpuses are impuses.", "Wren is an impus.", "Impuses are yumpuses.", "Wren is a yumpus.", "Every yumpus is a dumpus.", "Wren is a dumpus.", "Each dumpus is a vumpus.", "Wren is a vumpus.", "Vumpuses are not sweet.", "Wren is not sweet." ] }, { "id": "ProntoQA_130", "context": "Dumpuses are opaque. Every numpus is bitter. Numpuses are wumpuses. Wumpuses are blue. Wumpuses are yumpuses. Yumpuses are not temperate. Yumpuses are impuses. Impuses are feisty. Each impus is a vumpus. Vumpuses are not earthy. Each vumpus is a tumpus. Each tumpus is not opaque. Tumpuses are jompuses. Jompuses are bright. Jompuses are rompuses. Each rompus is liquid. Rompuses are zumpuses. Polly is a wumpus.", "question": "Is the following statement true or false? Polly is not opaque.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Polly is a wumpus.", "Wumpuses are yumpuses.", "Polly is a yumpus.", "Yumpuses are impuses.", "Polly is an impus.", "Each impus is a vumpus.", "Polly is a vumpus.", "Each vumpus is a tumpus.", "Polly is a tumpus.", "Each tumpus is not opaque.", "Polly is not opaque." ] }, { "id": "ProntoQA_131", "context": "Every yumpus is bitter. Each yumpus is a tumpus. Each tumpus is cold. Tumpuses are wumpuses. Each wumpus is kind. Every wumpus is a numpus. Every numpus is not brown. Every numpus is a rompus. Every rompus is wooden. Rompuses are dumpuses. Every dumpus is dull. Every dumpus is a zumpus. Zumpuses are large. Each zumpus is a vumpus. Each vumpus is opaque. Jompuses are not dull. Vumpuses are impuses. Polly is a tumpus.", "question": "Is the following statement true or false? Polly is dull.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Polly is a tumpus.", "Tumpuses are wumpuses.", "Polly is a wumpus.", "Every wumpus is a numpus.", "Polly is a numpus.", "Every numpus is a rompus.", "Polly is a rompus.", "Rompuses are dumpuses.", "Polly is a dumpus.", "Every dumpus is dull.", "Polly is dull." ] }, { "id": "ProntoQA_132", "context": "Each vumpus is transparent. Vumpuses are zumpuses. Every zumpus is not large. Zumpuses are dumpuses. Every dumpus is spicy. Each dumpus is a numpus. Each impus is blue. Numpuses are temperate. Each numpus is a tumpus. Tumpuses are not blue. Tumpuses are jompuses. Each jompus is happy. Each jompus is a yumpus. Each yumpus is not amenable. Every yumpus is a wumpus. Wumpuses are not floral. Wumpuses are rompuses. Polly is a vumpus.", "question": "Is the following statement true or false? Polly is not blue.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Polly is a vumpus.", "Vumpuses are zumpuses.", "Polly is a zumpus.", "Zumpuses are dumpuses.", "Polly is a dumpus.", "Each dumpus is a numpus.", "Polly is a numpus.", "Each numpus is a tumpus.", "Polly is a tumpus.", "Tumpuses are not blue.", "Polly is not blue." ] }, { "id": "ProntoQA_133", "context": "Each yumpus is bright. Yumpuses are zumpuses. Zumpuses are not red. Each zumpus is a rompus. Each rompus is kind. Rompuses are tumpuses. Tumpuses are luminous. Tumpuses are jompuses. Jompuses are not bitter. Jompuses are impuses. Every dumpus is bitter. Each impus is feisty. Each impus is a vumpus. Each vumpus is opaque. Vumpuses are numpuses. Wren is a yumpus.", "question": "Is the following statement true or false? Wren is not bitter.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Wren is a yumpus.", "Yumpuses are zumpuses.", "Wren is a zumpus.", "Each zumpus is a rompus.", "Wren is a rompus.", "Rompuses are tumpuses.", "Wren is a tumpus.", "Tumpuses are jompuses.", "Wren is a jompus.", "Jompuses are not bitter.", "Wren is not bitter." ] }, { "id": "ProntoQA_134", "context": "Each impus is not liquid. Impuses are rompuses. Rompuses are floral. Rompuses are vumpuses. Every vumpus is happy. Vumpuses are wumpuses. Wumpuses are blue. Each wumpus is a numpus. Each numpus is temperate. Each numpus is a tumpus. Zumpuses are not temperate. Each tumpus is not bitter. Tumpuses are jompuses. Every jompus is bright. Each jompus is a yumpus. Yumpuses are mean. Each yumpus is a dumpus. Stella is an impus.", "question": "Is the following statement true or false? Stella is temperate.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Stella is an impus.", "Impuses are rompuses.", "Stella is a rompus.", "Rompuses are vumpuses.", "Stella is a vumpus.", "Vumpuses are wumpuses.", "Stella is a wumpus.", "Each wumpus is a numpus.", "Stella is a numpus.", "Each numpus is temperate.", "Stella is temperate." ] }, { "id": "ProntoQA_135", "context": "Wumpuses are not kind. Every wumpus is a vumpus. Yumpuses are blue. Vumpuses are not transparent. Vumpuses are impuses. Every impus is not small. Every impus is a zumpus. Every zumpus is feisty. Each zumpus is a rompus. Rompuses are not bright. Rompuses are jompuses. Jompuses are hot. Jompuses are numpuses. Numpuses are not blue. Numpuses are tumpuses. Every tumpus is not liquid. Tumpuses are dumpuses. Alex is an impus.", "question": "Is the following statement true or false? Alex is not blue.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Alex is an impus.", "Every impus is a zumpus.", "Alex is a zumpus.", "Each zumpus is a rompus.", "Alex is a rompus.", "Rompuses are jompuses.", "Alex is a jompus.", "Jompuses are numpuses.", "Alex is a numpus.", "Numpuses are not blue.", "Alex is not blue." ] }, { "id": "ProntoQA_136", "context": "Zumpuses are not fruity. Every zumpus is a dumpus. Each dumpus is not bright. Dumpuses are vumpuses. Vumpuses are not transparent. Vumpuses are rompuses. Rompuses are large. Rompuses are wumpuses. Each wumpus is sour. Wumpuses are yumpuses. Yumpuses are cold. Yumpuses are tumpuses. Each tumpus is luminous. Impuses are not sour. Tumpuses are numpuses. Numpuses are not nervous. Every numpus is a jompus. Sally is a zumpus.", "question": "Is the following statement true or false? Sally is not sour.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sally is a zumpus.", "Every zumpus is a dumpus.", "Sally is a dumpus.", "Dumpuses are vumpuses.", "Sally is a vumpus.", "Vumpuses are rompuses.", "Sally is a rompus.", "Rompuses are wumpuses.", "Sally is a wumpus.", "Each wumpus is sour.", "Sally is sour." ] }, { "id": "ProntoQA_137", "context": "Each numpus is opaque. Numpuses are tumpuses. Tumpuses are hot. Tumpuses are rompuses. Each rompus is bright. Rompuses are yumpuses. Each yumpus is earthy. Every yumpus is a wumpus. Each wumpus is spicy. Each wumpus is a zumpus. Every zumpus is nervous. Every zumpus is an impus. Each impus is not liquid. Each impus is a jompus. Every jompus is not large. Jompuses are dumpuses. Each vumpus is liquid. Rex is a rompus.", "question": "Is the following statement true or false? Rex is not liquid.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Rex is a rompus.", "Rompuses are yumpuses.", "Rex is a yumpus.", "Every yumpus is a wumpus.", "Rex is a wumpus.", "Each wumpus is a zumpus.", "Rex is a zumpus.", "Every zumpus is an impus.", "Rex is an impus.", "Each impus is not liquid.", "Rex is not liquid." ] }, { "id": "ProntoQA_138", "context": "Rompuses are not angry. Every numpus is red. Each rompus is a jompus. Jompuses are not bright. Every jompus is a yumpus. Every yumpus is wooden. Each yumpus is a tumpus. Tumpuses are hot. Tumpuses are dumpuses. Each dumpus is feisty. Dumpuses are wumpuses. Wumpuses are not transparent. Every wumpus is an impus. Each impus is not red. Every impus is a vumpus. Each vumpus is not large. Vumpuses are zumpuses. Sally is a yumpus.", "question": "Is the following statement true or false? Sally is red.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sally is a yumpus.", "Each yumpus is a tumpus.", "Sally is a tumpus.", "Tumpuses are dumpuses.", "Sally is a dumpus.", "Dumpuses are wumpuses.", "Sally is a wumpus.", "Every wumpus is an impus.", "Sally is an impus.", "Each impus is not red.", "Sally is not red." ] }, { "id": "ProntoQA_139", "context": "Every zumpus is not hot. Each zumpus is a dumpus. Every dumpus is not floral. Each dumpus is a yumpus. Every yumpus is aggressive. Yumpuses are wumpuses. Every wumpus is not red. Every wumpus is a vumpus. Vumpuses are bright. Vumpuses are jompuses. Every jompus is not small. Jompuses are tumpuses. Each tumpus is shy. Every tumpus is a numpus. Rompuses are small. Each numpus is metallic. Numpuses are impuses. Sam is a dumpus.", "question": "Is the following statement true or false? Sam is not small.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sam is a dumpus.", "Each dumpus is a yumpus.", "Sam is a yumpus.", "Yumpuses are wumpuses.", "Sam is a wumpus.", "Every wumpus is a vumpus.", "Sam is a vumpus.", "Vumpuses are jompuses.", "Sam is a jompus.", "Every jompus is not small.", "Sam is not small." ] }, { "id": "ProntoQA_140", "context": "Each dumpus is large. Every dumpus is a wumpus. Wumpuses are cold. Every wumpus is a tumpus. Impuses are sour. Tumpuses are fruity. Every tumpus is a rompus. Every rompus is not nervous. Every rompus is a zumpus. Zumpuses are not sour. Zumpuses are jompuses. Jompuses are not luminous. Jompuses are yumpuses. Each yumpus is not dull. Every yumpus is a numpus. Each numpus is not opaque. Every numpus is a vumpus. Stella is a dumpus.", "question": "Is the following statement true or false? Stella is sour.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Stella is a dumpus.", "Every dumpus is a wumpus.", "Stella is a wumpus.", "Every wumpus is a tumpus.", "Stella is a tumpus.", "Every tumpus is a rompus.", "Stella is a rompus.", "Every rompus is a zumpus.", "Stella is a zumpus.", "Zumpuses are not sour.", "Stella is not sour." ] }, { "id": "ProntoQA_141", "context": "Every jompus is transparent. Every jompus is a wumpus. Wumpuses are red. Wumpuses are yumpuses. Zumpuses are bright. Yumpuses are shy. Every yumpus is a tumpus. Tumpuses are kind. Each tumpus is a numpus. Numpuses are not bright. Numpuses are impuses. Every impus is sweet. Impuses are dumpuses. Each dumpus is earthy. Each dumpus is a vumpus. Vumpuses are hot. Vumpuses are rompuses. Alex is a jompus.", "question": "Is the following statement true or false? Alex is bright.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Alex is a jompus.", "Every jompus is a wumpus.", "Alex is a wumpus.", "Wumpuses are yumpuses.", "Alex is a yumpus.", "Every yumpus is a tumpus.", "Alex is a tumpus.", "Each tumpus is a numpus.", "Alex is a numpus.", "Numpuses are not bright.", "Alex is not bright." ] }, { "id": "ProntoQA_142", "context": "Every zumpus is metallic. Each zumpus is a wumpus. Wumpuses are not floral. Every wumpus is a numpus. Numpuses are happy. Each numpus is an impus. Impuses are kind. Every impus is a rompus. Every rompus is large. Vumpuses are opaque. Each rompus is a jompus. Each jompus is cold. Jompuses are dumpuses. Each dumpus is not opaque. Dumpuses are yumpuses. Yumpuses are spicy. Each yumpus is a tumpus. Stella is a numpus.", "question": "Is the following statement true or false? Stella is opaque.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Stella is a numpus.", "Each numpus is an impus.", "Stella is an impus.", "Every impus is a rompus.", "Stella is a rompus.", "Each rompus is a jompus.", "Stella is a jompus.", "Jompuses are dumpuses.", "Stella is a dumpus.", "Each dumpus is not opaque.", "Stella is not opaque." ] }, { "id": "ProntoQA_143", "context": "Every rompus is not brown. Rompuses are numpuses. Every numpus is mean. Numpuses are jompuses. Jompuses are fruity. Jompuses are vumpuses. Each vumpus is not feisty. Each vumpus is a wumpus. Yumpuses are transparent. Wumpuses are liquid. Wumpuses are zumpuses. Zumpuses are not small. Zumpuses are impuses. Impuses are temperate. Impuses are dumpuses. Dumpuses are not transparent. Dumpuses are tumpuses. Max is a vumpus.", "question": "Is the following statement true or false? Max is transparent.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Max is a vumpus.", "Each vumpus is a wumpus.", "Max is a wumpus.", "Wumpuses are zumpuses.", "Max is a zumpus.", "Zumpuses are impuses.", "Max is an impus.", "Impuses are dumpuses.", "Max is a dumpus.", "Dumpuses are not transparent.", "Max is not transparent." ] }, { "id": "ProntoQA_144", "context": "Each impus is not large. Jompuses are fruity. Every jompus is a tumpus. Tumpuses are bitter. Tumpuses are numpuses. Every numpus is nervous. Every numpus is a vumpus. Vumpuses are not angry. Every vumpus is a dumpus. Dumpuses are large. Every dumpus is a wumpus. Wumpuses are not transparent. Every wumpus is a rompus. Each rompus is not dull. Rompuses are zumpuses. Zumpuses are wooden. Each zumpus is a yumpus. Wren is a jompus.", "question": "Is the following statement true or false? Wren is not large.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Wren is a jompus.", "Every jompus is a tumpus.", "Wren is a tumpus.", "Tumpuses are numpuses.", "Wren is a numpus.", "Every numpus is a vumpus.", "Wren is a vumpus.", "Every vumpus is a dumpus.", "Wren is a dumpus.", "Dumpuses are large.", "Wren is large." ] }, { "id": "ProntoQA_145", "context": "Every wumpus is cold. Each wumpus is a numpus. Each numpus is large. Numpuses are dumpuses. Every dumpus is not orange. Each dumpus is a yumpus. Each yumpus is not earthy. Every yumpus is a tumpus. Every tumpus is kind. Tumpuses are impuses. Every impus is bright. Impuses are rompuses. Rompuses are luminous. Rompuses are zumpuses. Every zumpus is sour. Every jompus is not luminous. Each zumpus is a vumpus. Stella is a dumpus.", "question": "Is the following statement true or false? Stella is luminous.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Stella is a dumpus.", "Each dumpus is a yumpus.", "Stella is a yumpus.", "Every yumpus is a tumpus.", "Stella is a tumpus.", "Tumpuses are impuses.", "Stella is an impus.", "Impuses are rompuses.", "Stella is a rompus.", "Rompuses are luminous.", "Stella is luminous." ] }, { "id": "ProntoQA_146", "context": "Each wumpus is happy. Every wumpus is a jompus. Jompuses are earthy. Each jompus is a zumpus. Zumpuses are opaque. Zumpuses are impuses. Impuses are luminous. Every impus is a yumpus. Each yumpus is not angry. Each tumpus is not bright. Yumpuses are numpuses. Each numpus is brown. Numpuses are dumpuses. Each dumpus is bright. Each dumpus is a rompus. Every rompus is not large. Rompuses are vumpuses. Fae is a zumpus.", "question": "Is the following statement true or false? Fae is not bright.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Fae is a zumpus.", "Zumpuses are impuses.", "Fae is an impus.", "Every impus is a yumpus.", "Fae is a yumpus.", "Yumpuses are numpuses.", "Fae is a numpus.", "Numpuses are dumpuses.", "Fae is a dumpus.", "Each dumpus is bright.", "Fae is bright." ] }, { "id": "ProntoQA_147", "context": "Every rompus is opaque. Each rompus is a wumpus. Wumpuses are temperate. Wumpuses are vumpuses. Every vumpus is not bright. Vumpuses are numpuses. Every numpus is small. Numpuses are yumpuses. Every yumpus is not kind. Yumpuses are zumpuses. Every zumpus is red. Zumpuses are impuses. Every impus is not wooden. Every jompus is kind. Impuses are dumpuses. Each dumpus is not sour. Every dumpus is a tumpus. Polly is a rompus.", "question": "Is the following statement true or false? Polly is not kind.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Polly is a rompus.", "Each rompus is a wumpus.", "Polly is a wumpus.", "Wumpuses are vumpuses.", "Polly is a vumpus.", "Vumpuses are numpuses.", "Polly is a numpus.", "Numpuses are yumpuses.", "Polly is a yumpus.", "Every yumpus is not kind.", "Polly is not kind." ] }, { "id": "ProntoQA_148", "context": "Jompuses are not temperate. Jompuses are impuses. Each impus is not sour. Impuses are wumpuses. Every vumpus is dull. Wumpuses are mean. Wumpuses are yumpuses. Yumpuses are fruity. Every yumpus is a numpus. Numpuses are opaque. Each numpus is a dumpus. Dumpuses are feisty. Every dumpus is a rompus. Rompuses are metallic. Rompuses are zumpuses. Every zumpus is not dull. Zumpuses are tumpuses. Fae is a yumpus.", "question": "Is the following statement true or false? Fae is not dull.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Fae is a yumpus.", "Every yumpus is a numpus.", "Fae is a numpus.", "Each numpus is a dumpus.", "Fae is a dumpus.", "Every dumpus is a rompus.", "Fae is a rompus.", "Rompuses are zumpuses.", "Fae is a zumpus.", "Every zumpus is not dull.", "Fae is not dull." ] }, { "id": "ProntoQA_149", "context": "Tumpuses are shy. Each tumpus is a jompus. Dumpuses are not transparent. Every jompus is bright. Every jompus is a zumpus. Zumpuses are large. Each zumpus is an impus. Every impus is liquid. Every impus is a wumpus. Wumpuses are brown. Each wumpus is a vumpus. Vumpuses are not bitter. Each vumpus is a rompus. Rompuses are transparent. Every rompus is a numpus. Numpuses are cold. Every numpus is a yumpus. Stella is a zumpus.", "question": "Is the following statement true or false? Stella is transparent.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Stella is a zumpus.", "Each zumpus is an impus.", "Stella is an impus.", "Every impus is a wumpus.", "Stella is a wumpus.", "Each wumpus is a vumpus.", "Stella is a vumpus.", "Each vumpus is a rompus.", "Stella is a rompus.", "Rompuses are transparent.", "Stella is transparent." ] }, { "id": "ProntoQA_150", "context": "Each impus is transparent. Impuses are jompuses. Each jompus is spicy. Jompuses are wumpuses. Wumpuses are orange. Every rompus is not small. Wumpuses are yumpuses. Each yumpus is not earthy. Yumpuses are zumpuses. Zumpuses are amenable. Every zumpus is a dumpus. Dumpuses are small. Every dumpus is a tumpus. Tumpuses are not feisty. Each tumpus is a vumpus. Vumpuses are not dull. Each vumpus is a numpus. Alex is a jompus.", "question": "Is the following statement true or false? Alex is small.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Alex is a jompus.", "Jompuses are wumpuses.", "Alex is a wumpus.", "Wumpuses are yumpuses.", "Alex is a yumpus.", "Yumpuses are zumpuses.", "Alex is a zumpus.", "Every zumpus is a dumpus.", "Alex is a dumpus.", "Dumpuses are small.", "Alex is small." ] }, { "id": "ProntoQA_151", "context": "Each zumpus is sour. Each zumpus is a dumpus. Every dumpus is temperate. Dumpuses are numpuses. Each rompus is shy. Every numpus is not wooden. Each numpus is a wumpus. Wumpuses are amenable. Wumpuses are vumpuses. Each vumpus is not shy. Vumpuses are jompuses. Every jompus is dull. Jompuses are yumpuses. Each yumpus is small. Yumpuses are tumpuses. Every tumpus is brown. Each tumpus is an impus. Sally is a zumpus.", "question": "Is the following statement true or false? Sally is shy.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sally is a zumpus.", "Each zumpus is a dumpus.", "Sally is a dumpus.", "Dumpuses are numpuses.", "Sally is a numpus.", "Each numpus is a wumpus.", "Sally is a wumpus.", "Wumpuses are vumpuses.", "Sally is a vumpus.", "Each vumpus is not shy.", "Sally is not shy." ] }, { "id": "ProntoQA_152", "context": "Every jompus is bright. Every jompus is a vumpus. Vumpuses are floral. Every vumpus is a yumpus. Every yumpus is not temperate. Each yumpus is a numpus. Every numpus is sweet. Each numpus is a zumpus. Zumpuses are mean. Zumpuses are rompuses. Each rompus is not feisty. Every impus is not transparent. Each rompus is a wumpus. Wumpuses are transparent. Each wumpus is a dumpus. Dumpuses are large. Each dumpus is a tumpus. Wren is a yumpus.", "question": "Is the following statement true or false? Wren is transparent.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Wren is a yumpus.", "Each yumpus is a numpus.", "Wren is a numpus.", "Each numpus is a zumpus.", "Wren is a zumpus.", "Zumpuses are rompuses.", "Wren is a rompus.", "Each rompus is a wumpus.", "Wren is a wumpus.", "Wumpuses are transparent.", "Wren is transparent." ] }, { "id": "ProntoQA_153", "context": "Each jompus is brown. Yumpuses are dull. Every jompus is a wumpus. Wumpuses are hot. Every wumpus is a dumpus. Each dumpus is not luminous. Each dumpus is a rompus. Every rompus is sweet. Every rompus is a numpus. Each numpus is not dull. Numpuses are zumpuses. Zumpuses are not floral. Zumpuses are impuses. Sally is a jompus.", "question": "Is the following statement true or false? Sally is not dull.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sally is a jompus.", "Every jompus is a wumpus.", "Sally is a wumpus.", "Every wumpus is a dumpus.", "Sally is a dumpus.", "Each dumpus is a rompus.", "Sally is a rompus.", "Every rompus is a numpus.", "Sally is a numpus.", "Each numpus is not dull.", "Sally is not dull." ] }, { "id": "ProntoQA_154", "context": "Wumpuses are not opaque. Wumpuses are yumpuses. Yumpuses are fruity. Every yumpus is a jompus. Each jompus is kind. Each jompus is a zumpus. Each zumpus is sweet. Every rompus is brown. Each zumpus is an impus. Every impus is hot. Impuses are numpuses. Numpuses are not brown. Numpuses are dumpuses. Every dumpus is not bright. Dumpuses are vumpuses. Vumpuses are happy. Vumpuses are tumpuses. Sam is a yumpus.", "question": "Is the following statement true or false? Sam is not brown.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sam is a yumpus.", "Every yumpus is a jompus.", "Sam is a jompus.", "Each jompus is a zumpus.", "Sam is a zumpus.", "Each zumpus is an impus.", "Sam is an impus.", "Impuses are numpuses.", "Sam is a numpus.", "Numpuses are not brown.", "Sam is not brown." ] }, { "id": "ProntoQA_155", "context": "Rompuses are brown. Rompuses are wumpuses. Wumpuses are mean. Wumpuses are yumpuses. Every yumpus is liquid. Yumpuses are zumpuses. Every zumpus is hot. Every zumpus is an impus. Every impus is large. Impuses are vumpuses. Vumpuses are not bitter. Vumpuses are numpuses. Tumpuses are not large. Numpuses are dull. Numpuses are jompuses. Every jompus is shy. Every jompus is a dumpus. Sam is a rompus.", "question": "Is the following statement true or false? Sam is not large.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sam is a rompus.", "Rompuses are wumpuses.", "Sam is a wumpus.", "Wumpuses are yumpuses.", "Sam is a yumpus.", "Yumpuses are zumpuses.", "Sam is a zumpus.", "Every zumpus is an impus.", "Sam is an impus.", "Every impus is large.", "Sam is large." ] }, { "id": "ProntoQA_156", "context": "Each impus is bright. Each impus is a rompus. Each rompus is not bitter. Each rompus is a yumpus. Each yumpus is not shy. Every yumpus is a wumpus. Wumpuses are red. Every wumpus is a jompus. Jompuses are transparent. Each jompus is a numpus. Each tumpus is small. Each numpus is not mean. Numpuses are dumpuses. Every dumpus is not small. Dumpuses are vumpuses. Vumpuses are hot. Each vumpus is a zumpus. Wren is a yumpus.", "question": "Is the following statement true or false? Wren is not small.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Wren is a yumpus.", "Every yumpus is a wumpus.", "Wren is a wumpus.", "Every wumpus is a jompus.", "Wren is a jompus.", "Each jompus is a numpus.", "Wren is a numpus.", "Numpuses are dumpuses.", "Wren is a dumpus.", "Every dumpus is not small.", "Wren is not small." ] }, { "id": "ProntoQA_157", "context": "Numpuses are cold. Numpuses are zumpuses. Zumpuses are large. Every zumpus is a vumpus. Each vumpus is not bright. Vumpuses are yumpuses. Each jompus is not happy. Every yumpus is sweet. Yumpuses are wumpuses. Every wumpus is not red. Wumpuses are rompuses. Rompuses are not angry. Every rompus is an impus. Every impus is not opaque. Impuses are tumpuses. Every tumpus is happy. Tumpuses are dumpuses. Polly is a yumpus.", "question": "Is the following statement true or false? Polly is not happy.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Polly is a yumpus.", "Yumpuses are wumpuses.", "Polly is a wumpus.", "Wumpuses are rompuses.", "Polly is a rompus.", "Every rompus is an impus.", "Polly is an impus.", "Impuses are tumpuses.", "Polly is a tumpus.", "Every tumpus is happy.", "Polly is happy." ] }, { "id": "ProntoQA_158", "context": "Yumpuses are not earthy. Yumpuses are wumpuses. Every wumpus is not feisty. Wumpuses are dumpuses. Every zumpus is not spicy. Dumpuses are hot. Each dumpus is a tumpus. Each tumpus is not brown. Each tumpus is a rompus. Rompuses are transparent. Rompuses are numpuses. Numpuses are amenable. Every numpus is an impus. Impuses are spicy. Every impus is a jompus. Jompuses are large. Jompuses are vumpuses. Sam is a dumpus.", "question": "Is the following statement true or false? Sam is not spicy.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sam is a dumpus.", "Each dumpus is a tumpus.", "Sam is a tumpus.", "Each tumpus is a rompus.", "Sam is a rompus.", "Rompuses are numpuses.", "Sam is a numpus.", "Every numpus is an impus.", "Sam is an impus.", "Impuses are spicy.", "Sam is spicy." ] }, { "id": "ProntoQA_159", "context": "Each impus is blue. Impuses are dumpuses. Each dumpus is liquid. Dumpuses are rompuses. Rompuses are not spicy. Rompuses are yumpuses. Each yumpus is feisty. Each yumpus is a numpus. Tumpuses are earthy. Each numpus is kind. Every numpus is a wumpus. Wumpuses are not earthy. Each wumpus is a vumpus. Each vumpus is dull. Each vumpus is a zumpus. Every zumpus is cold. Zumpuses are jompuses. Alex is a dumpus.", "question": "Is the following statement true or false? Alex is not earthy.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Alex is a dumpus.", "Dumpuses are rompuses.", "Alex is a rompus.", "Rompuses are yumpuses.", "Alex is a yumpus.", "Each yumpus is a numpus.", "Alex is a numpus.", "Every numpus is a wumpus.", "Alex is a wumpus.", "Wumpuses are not earthy.", "Alex is not earthy." ] }, { "id": "ProntoQA_160", "context": "Each rompus is small. Every rompus is a numpus. Each numpus is dull. Numpuses are yumpuses. Yumpuses are earthy. Yumpuses are impuses. Each impus is sour. Every impus is a wumpus. Wumpuses are liquid. Wumpuses are tumpuses. Each tumpus is not brown. Every tumpus is a zumpus. Every zumpus is nervous. Dumpuses are not nervous. Every zumpus is a jompus. Jompuses are aggressive. Jompuses are vumpuses. Wren is a yumpus.", "question": "Is the following statement true or false? Wren is not nervous.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Wren is a yumpus.", "Yumpuses are impuses.", "Wren is an impus.", "Every impus is a wumpus.", "Wren is a wumpus.", "Wumpuses are tumpuses.", "Wren is a tumpus.", "Every tumpus is a zumpus.", "Wren is a zumpus.", "Every zumpus is nervous.", "Wren is nervous." ] }, { "id": "ProntoQA_161", "context": "Every wumpus is opaque. Yumpuses are not red. Every wumpus is a vumpus. Every vumpus is spicy. Vumpuses are tumpuses. Tumpuses are not cold. Tumpuses are dumpuses. Dumpuses are bright. Dumpuses are numpuses. Numpuses are nervous. Numpuses are rompuses. Every rompus is not large. Each rompus is a jompus. Jompuses are metallic. Jompuses are impuses. Impuses are red. Impuses are zumpuses. Max is a dumpus.", "question": "Is the following statement true or false? Max is red.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Max is a dumpus.", "Dumpuses are numpuses.", "Max is a numpus.", "Numpuses are rompuses.", "Max is a rompus.", "Each rompus is a jompus.", "Max is a jompus.", "Jompuses are impuses.", "Max is an impus.", "Impuses are red.", "Max is red." ] }, { "id": "ProntoQA_162", "context": "Dumpuses are not earthy. Each dumpus is a yumpus. Yumpuses are transparent. Each rompus is not mean. Yumpuses are vumpuses. Vumpuses are not brown. Vumpuses are numpuses. Numpuses are not temperate. Every numpus is a zumpus. Each zumpus is bitter. Zumpuses are tumpuses. Tumpuses are shy. Tumpuses are impuses. Impuses are wooden. Each impus is a wumpus. Each wumpus is mean. Every wumpus is a jompus. Wren is a numpus.", "question": "Is the following statement true or false? Wren is not mean.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Wren is a numpus.", "Every numpus is a zumpus.", "Wren is a zumpus.", "Zumpuses are tumpuses.", "Wren is a tumpus.", "Tumpuses are impuses.", "Wren is an impus.", "Each impus is a wumpus.", "Wren is a wumpus.", "Each wumpus is mean.", "Wren is mean." ] }, { "id": "ProntoQA_163", "context": "Numpuses are dull. Numpuses are jompuses. Each jompus is not hot. Each jompus is a vumpus. Every vumpus is sour. Each vumpus is an impus. Impuses are not transparent. Impuses are dumpuses. Yumpuses are not metallic. Dumpuses are not blue. Dumpuses are wumpuses. Wumpuses are amenable. Wumpuses are tumpuses. Tumpuses are small. Tumpuses are zumpuses. Each zumpus is metallic. Each zumpus is a rompus. Stella is an impus.", "question": "Is the following statement true or false? Stella is metallic.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Stella is an impus.", "Impuses are dumpuses.", "Stella is a dumpus.", "Dumpuses are wumpuses.", "Stella is a wumpus.", "Wumpuses are tumpuses.", "Stella is a tumpus.", "Tumpuses are zumpuses.", "Stella is a zumpus.", "Each zumpus is metallic.", "Stella is metallic." ] }, { "id": "ProntoQA_164", "context": "Dumpuses are metallic. Every dumpus is a rompus. Every rompus is earthy. Every rompus is a wumpus. Every wumpus is aggressive. Wumpuses are yumpuses. Every yumpus is nervous. Yumpuses are zumpuses. Each zumpus is cold. Every tumpus is sweet. Zumpuses are vumpuses. Vumpuses are not sweet. Vumpuses are numpuses. Every numpus is dull. Every numpus is a jompus. Each jompus is small. Every jompus is an impus. Stella is a rompus.", "question": "Is the following statement true or false? Stella is not sweet.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Stella is a rompus.", "Every rompus is a wumpus.", "Stella is a wumpus.", "Wumpuses are yumpuses.", "Stella is a yumpus.", "Yumpuses are zumpuses.", "Stella is a zumpus.", "Zumpuses are vumpuses.", "Stella is a vumpus.", "Vumpuses are not sweet.", "Stella is not sweet." ] }, { "id": "ProntoQA_165", "context": "Each jompus is not wooden. Each jompus is a rompus. Each rompus is floral. Each rompus is a zumpus. Zumpuses are not cold. Each zumpus is a numpus. Numpuses are amenable. Numpuses are vumpuses. Vumpuses are not opaque. Tumpuses are feisty. Each vumpus is an impus. Every impus is not bright. Impuses are dumpuses. Dumpuses are brown. Every dumpus is a wumpus. Wumpuses are not feisty. Wumpuses are yumpuses. Fae is a numpus.", "question": "Is the following statement true or false? Fae is not feisty.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Fae is a numpus.", "Numpuses are vumpuses.", "Fae is a vumpus.", "Each vumpus is an impus.", "Fae is an impus.", "Impuses are dumpuses.", "Fae is a dumpus.", "Every dumpus is a wumpus.", "Fae is a wumpus.", "Wumpuses are not feisty.", "Fae is not feisty." ] }, { "id": "ProntoQA_166", "context": "Every dumpus is not luminous. Dumpuses are impuses. Every impus is not amenable. Each impus is a zumpus. Every zumpus is red. Zumpuses are wumpuses. Wumpuses are not opaque. Numpuses are sour. Each wumpus is a jompus. Each jompus is small. Every jompus is a tumpus. Tumpuses are cold. Each tumpus is a yumpus. Every yumpus is not sour. Yumpuses are vumpuses. Each vumpus is not floral. Each vumpus is a rompus. Polly is a zumpus.", "question": "Is the following statement true or false? Polly is not sour.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Polly is a zumpus.", "Zumpuses are wumpuses.", "Polly is a wumpus.", "Each wumpus is a jompus.", "Polly is a jompus.", "Every jompus is a tumpus.", "Polly is a tumpus.", "Each tumpus is a yumpus.", "Polly is a yumpus.", "Every yumpus is not sour.", "Polly is not sour." ] }, { "id": "ProntoQA_167", "context": "Each tumpus is not feisty. Each tumpus is a wumpus. Wumpuses are small. Every wumpus is a yumpus. Every yumpus is aggressive. Each yumpus is a zumpus. Every zumpus is opaque. Zumpuses are numpuses. Numpuses are not orange. Numpuses are jompuses. Jompuses are not bright. Each jompus is a dumpus. Each dumpus is floral. Each dumpus is a vumpus. Every vumpus is liquid. Each impus is bright. Each vumpus is a rompus. Stella is a wumpus.", "question": "Is the following statement true or false? Stella is not bright.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Stella is a wumpus.", "Every wumpus is a yumpus.", "Stella is a yumpus.", "Each yumpus is a zumpus.", "Stella is a zumpus.", "Zumpuses are numpuses.", "Stella is a numpus.", "Numpuses are jompuses.", "Stella is a jompus.", "Jompuses are not bright.", "Stella is not bright." ] }, { "id": "ProntoQA_168", "context": "Vumpuses are wooden. Every vumpus is a wumpus. Wumpuses are not brown. Every wumpus is a dumpus. Every dumpus is not large. Dumpuses are numpuses. Each numpus is bright. Every numpus is an impus. Impuses are not floral. Each impus is a zumpus. Every zumpus is sweet. Every jompus is floral. Zumpuses are tumpuses. Each tumpus is nervous. Every tumpus is a rompus. Rompuses are not hot. Each rompus is a yumpus. Wren is a vumpus.", "question": "Is the following statement true or false? Wren is floral.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Wren is a vumpus.", "Every vumpus is a wumpus.", "Wren is a wumpus.", "Every wumpus is a dumpus.", "Wren is a dumpus.", "Dumpuses are numpuses.", "Wren is a numpus.", "Every numpus is an impus.", "Wren is an impus.", "Impuses are not floral.", "Wren is not floral." ] }, { "id": "ProntoQA_169", "context": "Each impus is not bitter. Impuses are dumpuses. Dumpuses are opaque. Each wumpus is fruity. Each dumpus is a zumpus. Zumpuses are not large. Zumpuses are tumpuses. Each tumpus is bright. Tumpuses are vumpuses. Each vumpus is liquid. Each vumpus is a rompus. Every rompus is not fruity. Rompuses are yumpuses. Yumpuses are temperate. Each yumpus is a numpus. Sam is a dumpus.", "question": "Is the following statement true or false? Sam is fruity.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sam is a dumpus.", "Each dumpus is a zumpus.", "Sam is a zumpus.", "Zumpuses are tumpuses.", "Sam is a tumpus.", "Tumpuses are vumpuses.", "Sam is a vumpus.", "Each vumpus is a rompus.", "Sam is a rompus.", "Every rompus is not fruity.", "Sam is not fruity." ] }, { "id": "ProntoQA_170", "context": "Tumpuses are not metallic. Tumpuses are zumpuses. Zumpuses are fruity. Zumpuses are impuses. Each impus is not dull. Each impus is a jompus. Jompuses are aggressive. Jompuses are wumpuses. Wumpuses are brown. Rompuses are not brown. Wumpuses are numpuses. Max is a tumpus.", "question": "Is the following statement true or false? Max is not brown.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Max is a tumpus.", "Tumpuses are zumpuses.", "Max is a zumpus.", "Zumpuses are impuses.", "Max is an impus.", "Each impus is a jompus.", "Max is a jompus.", "Jompuses are wumpuses.", "Max is a wumpus.", "Wumpuses are brown.", "Max is brown." ] }, { "id": "ProntoQA_171", "context": "Yumpuses are dull. Every yumpus is an impus. Impuses are aggressive. Impuses are wumpuses. Wumpuses are opaque. Every wumpus is a jompus. Jompuses are small. Each jompus is a dumpus. Each numpus is metallic. Every dumpus is not metallic. Dumpuses are rompuses. Every rompus is not feisty. Rompuses are tumpuses. Every tumpus is cold. Every tumpus is a zumpus. Zumpuses are earthy. Each zumpus is a vumpus. Polly is a yumpus.", "question": "Is the following statement true or false? Polly is not metallic.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Polly is a yumpus.", "Every yumpus is an impus.", "Polly is an impus.", "Impuses are wumpuses.", "Polly is a wumpus.", "Every wumpus is a jompus.", "Polly is a jompus.", "Each jompus is a dumpus.", "Polly is a dumpus.", "Every dumpus is not metallic.", "Polly is not metallic." ] }, { "id": "ProntoQA_172", "context": "Each zumpus is not temperate. Every zumpus is a vumpus. Vumpuses are large. Each vumpus is a dumpus. Every dumpus is feisty. Tumpuses are not opaque. Dumpuses are wumpuses. Every wumpus is floral. Wumpuses are rompuses. Rompuses are opaque. Rompuses are numpuses. Rex is a zumpus.", "question": "Is the following statement true or false? Rex is not opaque.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Rex is a zumpus.", "Every zumpus is a vumpus.", "Rex is a vumpus.", "Each vumpus is a dumpus.", "Rex is a dumpus.", "Dumpuses are wumpuses.", "Rex is a wumpus.", "Wumpuses are rompuses.", "Rex is a rompus.", "Rompuses are opaque.", "Rex is opaque." ] }, { "id": "ProntoQA_173", "context": "Each dumpus is fruity. Each dumpus is a tumpus. Each tumpus is not orange. Every tumpus is a vumpus. Each vumpus is not liquid. Every impus is not cold. Vumpuses are rompuses. Rompuses are feisty. Rompuses are yumpuses. Each yumpus is not bright. Every yumpus is a jompus. Every jompus is cold. Every jompus is a wumpus. Wumpuses are amenable. Wumpuses are zumpuses. Every zumpus is not transparent. Each zumpus is a numpus. Sally is a tumpus.", "question": "Is the following statement true or false? Sally is not cold.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sally is a tumpus.", "Every tumpus is a vumpus.", "Sally is a vumpus.", "Vumpuses are rompuses.", "Sally is a rompus.", "Rompuses are yumpuses.", "Sally is a yumpus.", "Every yumpus is a jompus.", "Sally is a jompus.", "Every jompus is cold.", "Sally is cold." ] }, { "id": "ProntoQA_174", "context": "Impuses are not temperate. Wumpuses are kind. Each impus is a numpus. Numpuses are orange. Numpuses are dumpuses. Each dumpus is liquid. Every dumpus is a zumpus. Zumpuses are earthy. Zumpuses are vumpuses. Vumpuses are transparent. Vumpuses are tumpuses. Each tumpus is small. Every tumpus is a jompus. Each jompus is not kind. Jompuses are yumpuses. Yumpuses are feisty. Every yumpus is a rompus. Polly is a dumpus.", "question": "Is the following statement true or false? Polly is kind.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Polly is a dumpus.", "Every dumpus is a zumpus.", "Polly is a zumpus.", "Zumpuses are vumpuses.", "Polly is a vumpus.", "Vumpuses are tumpuses.", "Polly is a tumpus.", "Every tumpus is a jompus.", "Polly is a jompus.", "Each jompus is not kind.", "Polly is not kind." ] }, { "id": "ProntoQA_175", "context": "Each rompus is wooden. Each rompus is a zumpus. Zumpuses are amenable. Zumpuses are impuses. Impuses are cold. Each impus is a jompus. Every jompus is not floral. Jompuses are yumpuses. Each tumpus is nervous. Every yumpus is not large. Yumpuses are dumpuses. Each dumpus is not nervous. Each dumpus is a vumpus. Stella is a zumpus.", "question": "Is the following statement true or false? Stella is nervous.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Stella is a zumpus.", "Zumpuses are impuses.", "Stella is an impus.", "Each impus is a jompus.", "Stella is a jompus.", "Jompuses are yumpuses.", "Stella is a yumpus.", "Yumpuses are dumpuses.", "Stella is a dumpus.", "Each dumpus is not nervous.", "Stella is not nervous." ] }, { "id": "ProntoQA_176", "context": "Every wumpus is not luminous. Each dumpus is spicy. Wumpuses are tumpuses. Each tumpus is bright. Every tumpus is a vumpus. Vumpuses are blue. Vumpuses are numpuses. Numpuses are kind. Numpuses are zumpuses. Every zumpus is not earthy. Zumpuses are jompuses. Jompuses are not spicy. Each jompus is an impus. Each impus is feisty. Every impus is a yumpus. Every yumpus is temperate. Yumpuses are rompuses. Sally is a tumpus.", "question": "Is the following statement true or false? Sally is not spicy.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sally is a tumpus.", "Every tumpus is a vumpus.", "Sally is a vumpus.", "Vumpuses are numpuses.", "Sally is a numpus.", "Numpuses are zumpuses.", "Sally is a zumpus.", "Zumpuses are jompuses.", "Sally is a jompus.", "Jompuses are not spicy.", "Sally is not spicy." ] }, { "id": "ProntoQA_177", "context": "Impuses are bitter. Tumpuses are not bright. Every impus is a wumpus. Each wumpus is not transparent. Wumpuses are dumpuses. Dumpuses are small. Each dumpus is a rompus. Each rompus is feisty. Each rompus is a numpus. Numpuses are bright. Numpuses are zumpuses. Rex is an impus.", "question": "Is the following statement true or false? Rex is bright.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Rex is an impus.", "Every impus is a wumpus.", "Rex is a wumpus.", "Wumpuses are dumpuses.", "Rex is a dumpus.", "Each dumpus is a rompus.", "Rex is a rompus.", "Each rompus is a numpus.", "Rex is a numpus.", "Numpuses are bright.", "Rex is bright." ] }, { "id": "ProntoQA_178", "context": "Impuses are not temperate. Every impus is a rompus. Rompuses are happy. Rompuses are jompuses. Every jompus is not small. Every jompus is a zumpus. Every numpus is metallic. Zumpuses are not amenable. Each zumpus is a wumpus. Wumpuses are sour. Wumpuses are dumpuses. Each dumpus is not bright. Dumpuses are vumpuses. Every vumpus is transparent. Each vumpus is a yumpus. Yumpuses are not metallic. Each yumpus is a tumpus. Polly is a zumpus.", "question": "Is the following statement true or false? Polly is metallic.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Polly is a zumpus.", "Each zumpus is a wumpus.", "Polly is a wumpus.", "Wumpuses are dumpuses.", "Polly is a dumpus.", "Dumpuses are vumpuses.", "Polly is a vumpus.", "Each vumpus is a yumpus.", "Polly is a yumpus.", "Yumpuses are not metallic.", "Polly is not metallic." ] }, { "id": "ProntoQA_179", "context": "Every rompus is sour. Rompuses are impuses. Yumpuses are opaque. Impuses are feisty. Each impus is a zumpus. Every zumpus is orange. Zumpuses are vumpuses. Vumpuses are not large. Vumpuses are wumpuses. Wumpuses are not opaque. Each wumpus is a numpus. Numpuses are metallic. Numpuses are dumpuses. Wren is a rompus.", "question": "Is the following statement true or false? Wren is not opaque.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Wren is a rompus.", "Rompuses are impuses.", "Wren is an impus.", "Each impus is a zumpus.", "Wren is a zumpus.", "Zumpuses are vumpuses.", "Wren is a vumpus.", "Vumpuses are wumpuses.", "Wren is a wumpus.", "Wumpuses are not opaque.", "Wren is not opaque." ] }, { "id": "ProntoQA_180", "context": "Impuses are not floral. Every impus is a jompus. Jompuses are sweet. Jompuses are numpuses. Numpuses are not shy. Numpuses are rompuses. Rompuses are mean. Every rompus is a dumpus. Every dumpus is not transparent. Dumpuses are yumpuses. Yumpuses are luminous. Each yumpus is a wumpus. Wumpuses are not orange. Vumpuses are not luminous. Every wumpus is a zumpus. Max is a jompus.", "question": "Is the following statement true or false? Max is not luminous.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Max is a jompus.", "Jompuses are numpuses.", "Max is a numpus.", "Numpuses are rompuses.", "Max is a rompus.", "Every rompus is a dumpus.", "Max is a dumpus.", "Dumpuses are yumpuses.", "Max is a yumpus.", "Yumpuses are luminous.", "Max is luminous." ] }, { "id": "ProntoQA_181", "context": "Every numpus is not small. Numpuses are impuses. Impuses are sour. Every impus is a wumpus. Wumpuses are red. Every wumpus is a rompus. Every rompus is fruity. Each tumpus is not kind. Every rompus is a yumpus. Yumpuses are not hot. Each yumpus is a jompus. Jompuses are not opaque. Every jompus is a vumpus. Each vumpus is happy. Vumpuses are zumpuses. Zumpuses are kind. Zumpuses are dumpuses. Rex is a rompus.", "question": "Is the following statement true or false? Rex is not kind.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Rex is a rompus.", "Every rompus is a yumpus.", "Rex is a yumpus.", "Each yumpus is a jompus.", "Rex is a jompus.", "Every jompus is a vumpus.", "Rex is a vumpus.", "Vumpuses are zumpuses.", "Rex is a zumpus.", "Zumpuses are kind.", "Rex is kind." ] }, { "id": "ProntoQA_182", "context": "Tumpuses are fruity. Tumpuses are dumpuses. Each dumpus is liquid. Each dumpus is a numpus. Numpuses are sour. Numpuses are jompuses. Jompuses are not cold. Jompuses are wumpuses. Wumpuses are brown. Wumpuses are vumpuses. Vumpuses are happy. Each vumpus is a yumpus. Each yumpus is large. Each yumpus is a rompus. Rompuses are not mean. Every rompus is a zumpus. Each impus is not large. Sam is a numpus.", "question": "Is the following statement true or false? Sam is large.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sam is a numpus.", "Numpuses are jompuses.", "Sam is a jompus.", "Jompuses are wumpuses.", "Sam is a wumpus.", "Wumpuses are vumpuses.", "Sam is a vumpus.", "Each vumpus is a yumpus.", "Sam is a yumpus.", "Each yumpus is large.", "Sam is large." ] }, { "id": "ProntoQA_183", "context": "Impuses are not metallic. Impuses are yumpuses. Yumpuses are bright. Every yumpus is a jompus. Wumpuses are opaque. Every jompus is not large. Jompuses are tumpuses. Each tumpus is not earthy. Tumpuses are vumpuses. Every vumpus is bitter. Vumpuses are numpuses. Each numpus is not opaque. Every numpus is a dumpus. Every dumpus is kind. Dumpuses are rompuses. Rompuses are brown. Rompuses are zumpuses. Fae is a yumpus.", "question": "Is the following statement true or false? Fae is opaque.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Fae is a yumpus.", "Every yumpus is a jompus.", "Fae is a jompus.", "Jompuses are tumpuses.", "Fae is a tumpus.", "Tumpuses are vumpuses.", "Fae is a vumpus.", "Vumpuses are numpuses.", "Fae is a numpus.", "Each numpus is not opaque.", "Fae is not opaque." ] }, { "id": "ProntoQA_184", "context": "Each impus is small. Every impus is a vumpus. Each vumpus is fruity. Vumpuses are zumpuses. Each zumpus is transparent. Every zumpus is a dumpus. Dumpuses are wooden. Dumpuses are wumpuses. Every wumpus is dull. Yumpuses are not angry. Wumpuses are tumpuses. Tumpuses are angry. Each tumpus is a numpus. Every numpus is not hot. Every numpus is a rompus. Every rompus is nervous. Each rompus is a jompus. Sam is a vumpus.", "question": "Is the following statement true or false? Sam is not angry.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sam is a vumpus.", "Vumpuses are zumpuses.", "Sam is a zumpus.", "Every zumpus is a dumpus.", "Sam is a dumpus.", "Dumpuses are wumpuses.", "Sam is a wumpus.", "Wumpuses are tumpuses.", "Sam is a tumpus.", "Tumpuses are angry.", "Sam is angry." ] }, { "id": "ProntoQA_185", "context": "Tumpuses are bright. Tumpuses are yumpuses. Yumpuses are sweet. Yumpuses are wumpuses. Wumpuses are not transparent. Wumpuses are vumpuses. Each vumpus is angry. Vumpuses are rompuses. Rompuses are happy. Every rompus is a zumpus. Zumpuses are brown. Zumpuses are numpuses. Numpuses are not large. Impuses are not happy. Numpuses are jompuses. Jompuses are earthy. Jompuses are dumpuses. Polly is a tumpus.", "question": "Is the following statement true or false? Polly is not happy.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Polly is a tumpus.", "Tumpuses are yumpuses.", "Polly is a yumpus.", "Yumpuses are wumpuses.", "Polly is a wumpus.", "Wumpuses are vumpuses.", "Polly is a vumpus.", "Vumpuses are rompuses.", "Polly is a rompus.", "Rompuses are happy.", "Polly is happy." ] }, { "id": "ProntoQA_186", "context": "Numpuses are not small. Numpuses are yumpuses. Each yumpus is opaque. Each yumpus is a dumpus. Each vumpus is fruity. Every dumpus is not temperate. Dumpuses are wumpuses. Wumpuses are spicy. Each wumpus is an impus. Every impus is luminous. Impuses are jompuses. Each jompus is brown. Every jompus is a rompus. Rompuses are nervous. Rompuses are zumpuses. Zumpuses are not fruity. Each zumpus is a tumpus. Sally is a wumpus.", "question": "Is the following statement true or false? Sally is fruity.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sally is a wumpus.", "Each wumpus is an impus.", "Sally is an impus.", "Impuses are jompuses.", "Sally is a jompus.", "Every jompus is a rompus.", "Sally is a rompus.", "Rompuses are zumpuses.", "Sally is a zumpus.", "Zumpuses are not fruity.", "Sally is not fruity." ] }, { "id": "ProntoQA_187", "context": "Each zumpus is liquid. Dumpuses are not bitter. Each zumpus is a yumpus. Each yumpus is cold. Yumpuses are rompuses. Each rompus is nervous. Rompuses are tumpuses. Each tumpus is blue. Every tumpus is a jompus. Jompuses are transparent. Jompuses are impuses. Impuses are not floral. Impuses are vumpuses. Each vumpus is bitter. Every vumpus is a wumpus. Each wumpus is aggressive. Each wumpus is a numpus. Sam is a rompus.", "question": "Is the following statement true or false? Sam is bitter.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sam is a rompus.", "Rompuses are tumpuses.", "Sam is a tumpus.", "Every tumpus is a jompus.", "Sam is a jompus.", "Jompuses are impuses.", "Sam is an impus.", "Impuses are vumpuses.", "Sam is a vumpus.", "Each vumpus is bitter.", "Sam is bitter." ] }, { "id": "ProntoQA_188", "context": "Every impus is bright. Every impus is a jompus. Every jompus is not opaque. Every jompus is a tumpus. Every tumpus is small. Tumpuses are vumpuses. Each vumpus is happy. Each vumpus is a yumpus. Each yumpus is not cold. Each yumpus is a numpus. Each wumpus is cold. Numpuses are blue. Numpuses are rompuses. Rompuses are not sour. Every rompus is a dumpus. Dumpuses are fruity. Dumpuses are zumpuses. Stella is an impus.", "question": "Is the following statement true or false? Stella is not cold.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Stella is an impus.", "Every impus is a jompus.", "Stella is a jompus.", "Every jompus is a tumpus.", "Stella is a tumpus.", "Tumpuses are vumpuses.", "Stella is a vumpus.", "Each vumpus is a yumpus.", "Stella is a yumpus.", "Each yumpus is not cold.", "Stella is not cold." ] }, { "id": "ProntoQA_189", "context": "Each impus is nervous. Impuses are wumpuses. Wumpuses are wooden. Wumpuses are tumpuses. Zumpuses are dull. Each tumpus is not transparent. Each tumpus is a rompus. Rompuses are sweet. Each rompus is a vumpus. Each vumpus is not dull. Vumpuses are jompuses. Wren is an impus.", "question": "Is the following statement true or false? Wren is dull.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Wren is an impus.", "Impuses are wumpuses.", "Wren is a wumpus.", "Wumpuses are tumpuses.", "Wren is a tumpus.", "Each tumpus is a rompus.", "Wren is a rompus.", "Each rompus is a vumpus.", "Wren is a vumpus.", "Each vumpus is not dull.", "Wren is not dull." ] }, { "id": "ProntoQA_190", "context": "Yumpuses are not bitter. Yumpuses are jompuses. Every jompus is not brown. Each jompus is an impus. Impuses are temperate. Each impus is a wumpus. Wumpuses are not transparent. Each wumpus is a numpus. Numpuses are not nervous. Every numpus is a dumpus. Dumpuses are not small. Every dumpus is a tumpus. Tumpuses are wooden. Each tumpus is a rompus. Every rompus is earthy. Each rompus is a vumpus. Every zumpus is nervous. Max is a yumpus.", "question": "Is the following statement true or false? Max is nervous.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Max is a yumpus.", "Yumpuses are jompuses.", "Max is a jompus.", "Each jompus is an impus.", "Max is an impus.", "Each impus is a wumpus.", "Max is a wumpus.", "Each wumpus is a numpus.", "Max is a numpus.", "Numpuses are not nervous.", "Max is not nervous." ] }, { "id": "ProntoQA_191", "context": "Every dumpus is spicy. Dumpuses are yumpuses. Each yumpus is liquid. Yumpuses are rompuses. Rompuses are small. Rompuses are zumpuses. Zumpuses are fruity. Each zumpus is a vumpus. Vumpuses are not happy. Every vumpus is an impus. Impuses are not hot. Every impus is a numpus. Each numpus is angry. Numpuses are jompuses. Jompuses are not opaque. Wumpuses are happy. Jompuses are tumpuses. Fae is a dumpus.", "question": "Is the following statement true or false? Fae is happy.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Fae is a dumpus.", "Dumpuses are yumpuses.", "Fae is a yumpus.", "Yumpuses are rompuses.", "Fae is a rompus.", "Rompuses are zumpuses.", "Fae is a zumpus.", "Each zumpus is a vumpus.", "Fae is a vumpus.", "Vumpuses are not happy.", "Fae is not happy." ] }, { "id": "ProntoQA_192", "context": "Numpuses are not wooden. Numpuses are wumpuses. Wumpuses are small. Wumpuses are rompuses. Rompuses are not floral. Rompuses are vumpuses. Each vumpus is blue. Jompuses are not dull. Each vumpus is a yumpus. Each yumpus is dull. Yumpuses are zumpuses. Sam is a numpus.", "question": "Is the following statement true or false? Sam is not dull.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sam is a numpus.", "Numpuses are wumpuses.", "Sam is a wumpus.", "Wumpuses are rompuses.", "Sam is a rompus.", "Rompuses are vumpuses.", "Sam is a vumpus.", "Each vumpus is a yumpus.", "Sam is a yumpus.", "Each yumpus is dull.", "Sam is dull." ] }, { "id": "ProntoQA_193", "context": "Every numpus is not kind. Every numpus is a jompus. Jompuses are nervous. Jompuses are zumpuses. Zumpuses are large. Zumpuses are vumpuses. Vumpuses are fruity. Wumpuses are not red. Vumpuses are rompuses. Rompuses are not wooden. Each rompus is an impus. Every impus is dull. Each impus is a dumpus. Every dumpus is sweet. Every dumpus is a yumpus. Every yumpus is red. Each yumpus is a tumpus. Wren is a vumpus.", "question": "Is the following statement true or false? Wren is not red.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Wren is a vumpus.", "Vumpuses are rompuses.", "Wren is a rompus.", "Each rompus is an impus.", "Wren is an impus.", "Each impus is a dumpus.", "Wren is a dumpus.", "Every dumpus is a yumpus.", "Wren is a yumpus.", "Every yumpus is red.", "Wren is red." ] }, { "id": "ProntoQA_194", "context": "Rompuses are small. Each rompus is a zumpus. Every zumpus is not bright. Zumpuses are vumpuses. Every vumpus is cold. Vumpuses are impuses. Impuses are not opaque. Every impus is a jompus. Jompuses are earthy. Each jompus is a yumpus. Yumpuses are spicy. Yumpuses are numpuses. Numpuses are liquid. Numpuses are dumpuses. Each dumpus is not angry. Every dumpus is a tumpus. Every wumpus is not earthy. Max is a rompus.", "question": "Is the following statement true or false? Max is not earthy.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Max is a rompus.", "Each rompus is a zumpus.", "Max is a zumpus.", "Zumpuses are vumpuses.", "Max is a vumpus.", "Vumpuses are impuses.", "Max is an impus.", "Every impus is a jompus.", "Max is a jompus.", "Jompuses are earthy.", "Max is earthy." ] }, { "id": "ProntoQA_195", "context": "Every rompus is not transparent. Rompuses are jompuses. Every jompus is luminous. Jompuses are numpuses. Every numpus is hot. Numpuses are vumpuses. Vumpuses are bright. Each vumpus is a yumpus. Every yumpus is not fruity. Zumpuses are not spicy. Yumpuses are wumpuses. Wumpuses are small. Wumpuses are impuses. Every impus is spicy. Impuses are dumpuses. Dumpuses are not kind. Dumpuses are tumpuses. Fae is a numpus.", "question": "Is the following statement true or false? Fae is not spicy.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Fae is a numpus.", "Numpuses are vumpuses.", "Fae is a vumpus.", "Each vumpus is a yumpus.", "Fae is a yumpus.", "Yumpuses are wumpuses.", "Fae is a wumpus.", "Wumpuses are impuses.", "Fae is an impus.", "Every impus is spicy.", "Fae is spicy." ] }, { "id": "ProntoQA_196", "context": "Vumpuses are not hot. Vumpuses are zumpuses. Each zumpus is opaque. Zumpuses are tumpuses. Tumpuses are not small. Each tumpus is a yumpus. Numpuses are not feisty. Yumpuses are sour. Yumpuses are jompuses. Jompuses are not orange. Jompuses are rompuses. Every rompus is feisty. Each rompus is a wumpus. Every wumpus is mean. Wumpuses are dumpuses. Dumpuses are not dull. Dumpuses are impuses. Fae is a zumpus.", "question": "Is the following statement true or false? Fae is not feisty.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Fae is a zumpus.", "Zumpuses are tumpuses.", "Fae is a tumpus.", "Each tumpus is a yumpus.", "Fae is a yumpus.", "Yumpuses are jompuses.", "Fae is a jompus.", "Jompuses are rompuses.", "Fae is a rompus.", "Every rompus is feisty.", "Fae is feisty." ] }, { "id": "ProntoQA_197", "context": "Jompuses are kind. Every vumpus is feisty. Vumpuses are zumpuses. Every zumpus is temperate. Every zumpus is a rompus. Rompuses are small. Each rompus is a dumpus. Every dumpus is earthy. Every dumpus is a numpus. Numpuses are liquid. Numpuses are wumpuses. Wumpuses are dull. Each wumpus is a tumpus. Every tumpus is red. Every tumpus is an impus. Each impus is not kind. Each impus is a yumpus. Alex is a dumpus.", "question": "Is the following statement true or false? Alex is kind.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Alex is a dumpus.", "Every dumpus is a numpus.", "Alex is a numpus.", "Numpuses are wumpuses.", "Alex is a wumpus.", "Each wumpus is a tumpus.", "Alex is a tumpus.", "Every tumpus is an impus.", "Alex is an impus.", "Each impus is not kind.", "Alex is not kind." ] }, { "id": "ProntoQA_198", "context": "Each jompus is floral. Jompuses are vumpuses. Vumpuses are feisty. Each vumpus is a tumpus. Each tumpus is not amenable. Every tumpus is a numpus. Each numpus is temperate. Each numpus is a wumpus. Every wumpus is not small. Every wumpus is an impus. Impuses are not spicy. Yumpuses are small. Every impus is a rompus. Each rompus is transparent. Rompuses are dumpuses. Each dumpus is brown. Dumpuses are zumpuses. Wren is a jompus.", "question": "Is the following statement true or false? Wren is small.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Wren is a jompus.", "Jompuses are vumpuses.", "Wren is a vumpus.", "Each vumpus is a tumpus.", "Wren is a tumpus.", "Every tumpus is a numpus.", "Wren is a numpus.", "Each numpus is a wumpus.", "Wren is a wumpus.", "Every wumpus is not small.", "Wren is not small." ] }, { "id": "ProntoQA_199", "context": "Zumpuses are not large. Every zumpus is a wumpus. Wumpuses are not orange. Every wumpus is a jompus. Jompuses are earthy. Every jompus is a rompus. Every rompus is metallic. Rompuses are dumpuses. Every dumpus is mean. Dumpuses are numpuses. Each numpus is sweet. Numpuses are impuses. Each impus is temperate. Impuses are yumpuses. Tumpuses are opaque. Each yumpus is not opaque. Yumpuses are vumpuses. Alex is a rompus.", "question": "Is the following statement true or false? Alex is opaque.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Alex is a rompus.", "Rompuses are dumpuses.", "Alex is a dumpus.", "Dumpuses are numpuses.", "Alex is a numpus.", "Numpuses are impuses.", "Alex is an impus.", "Impuses are yumpuses.", "Alex is a yumpus.", "Each yumpus is not opaque.", "Alex is not opaque." ] }, { "id": "ProntoQA_200", "context": "Zumpuses are orange. Zumpuses are wumpuses. Each wumpus is temperate. Wumpuses are yumpuses. Each yumpus is fruity. Yumpuses are numpuses. Numpuses are small. Numpuses are vumpuses. Jompuses are transparent. Each vumpus is not transparent. Vumpuses are rompuses. Rex is a zumpus.", "question": "Is the following statement true or false? Rex is not transparent.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Rex is a zumpus.", "Zumpuses are wumpuses.", "Rex is a wumpus.", "Wumpuses are yumpuses.", "Rex is a yumpus.", "Yumpuses are numpuses.", "Rex is a numpus.", "Numpuses are vumpuses.", "Rex is a vumpus.", "Each vumpus is not transparent.", "Rex is not transparent." ] }, { "id": "ProntoQA_201", "context": "Every vumpus is large. Vumpuses are yumpuses. Each yumpus is happy. Every yumpus is a zumpus. Every zumpus is blue. Zumpuses are impuses. Each tumpus is not wooden. Every impus is floral. Impuses are dumpuses. Dumpuses are not bright. Dumpuses are jompuses. Each jompus is not bitter. Each jompus is a wumpus. Wumpuses are not opaque. Each wumpus is a rompus. Every rompus is wooden. Every rompus is a numpus. Sally is an impus.", "question": "Is the following statement true or false? Sally is not wooden.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sally is an impus.", "Impuses are dumpuses.", "Sally is a dumpus.", "Dumpuses are jompuses.", "Sally is a jompus.", "Each jompus is a wumpus.", "Sally is a wumpus.", "Each wumpus is a rompus.", "Sally is a rompus.", "Every rompus is wooden.", "Sally is wooden." ] }, { "id": "ProntoQA_202", "context": "Tumpuses are temperate. Tumpuses are impuses. Every impus is orange. Impuses are yumpuses. Each yumpus is shy. Yumpuses are zumpuses. Zumpuses are bright. Every zumpus is a rompus. Every numpus is opaque. Rompuses are small. Every rompus is a dumpus. Dumpuses are not floral. Each dumpus is a wumpus. Each wumpus is aggressive. Wumpuses are vumpuses. Each vumpus is not opaque. Every vumpus is a jompus. Wren is a zumpus.", "question": "Is the following statement true or false? Wren is opaque.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Wren is a zumpus.", "Every zumpus is a rompus.", "Wren is a rompus.", "Every rompus is a dumpus.", "Wren is a dumpus.", "Each dumpus is a wumpus.", "Wren is a wumpus.", "Wumpuses are vumpuses.", "Wren is a vumpus.", "Each vumpus is not opaque.", "Wren is not opaque." ] }, { "id": "ProntoQA_203", "context": "Each tumpus is liquid. Tumpuses are yumpuses. Yumpuses are not temperate. Yumpuses are vumpuses. Vumpuses are angry. Vumpuses are zumpuses. Zumpuses are red. Zumpuses are rompuses. Each rompus is shy. Rompuses are dumpuses. Every dumpus is not small. Dumpuses are numpuses. Every numpus is not spicy. Numpuses are impuses. Every jompus is not shy. Impuses are not earthy. Each impus is a wumpus. Alex is a tumpus.", "question": "Is the following statement true or false? Alex is shy.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Alex is a tumpus.", "Tumpuses are yumpuses.", "Alex is a yumpus.", "Yumpuses are vumpuses.", "Alex is a vumpus.", "Vumpuses are zumpuses.", "Alex is a zumpus.", "Zumpuses are rompuses.", "Alex is a rompus.", "Each rompus is shy.", "Alex is shy." ] }, { "id": "ProntoQA_204", "context": "Jompuses are red. Jompuses are wumpuses. Each wumpus is not dull. Every wumpus is a yumpus. Every yumpus is hot. Every yumpus is an impus. Dumpuses are not feisty. Each impus is spicy. Every impus is a rompus. Every rompus is feisty. Rompuses are tumpuses. Sam is a jompus.", "question": "Is the following statement true or false? Sam is not feisty.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sam is a jompus.", "Jompuses are wumpuses.", "Sam is a wumpus.", "Every wumpus is a yumpus.", "Sam is a yumpus.", "Every yumpus is an impus.", "Sam is an impus.", "Every impus is a rompus.", "Sam is a rompus.", "Every rompus is feisty.", "Sam is feisty." ] }, { "id": "ProntoQA_205", "context": "Impuses are hot. Impuses are rompuses. Rompuses are small. Rompuses are jompuses. Jompuses are dull. Every jompus is a zumpus. Zumpuses are not kind. Every zumpus is a numpus. Numpuses are nervous. Numpuses are vumpuses. Vumpuses are not fruity. Every vumpus is a dumpus. Wumpuses are fruity. Each dumpus is not wooden. Each dumpus is a tumpus. Tumpuses are not blue. Every tumpus is a yumpus. Stella is a rompus.", "question": "Is the following statement true or false? Stella is fruity.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Stella is a rompus.", "Rompuses are jompuses.", "Stella is a jompus.", "Every jompus is a zumpus.", "Stella is a zumpus.", "Every zumpus is a numpus.", "Stella is a numpus.", "Numpuses are vumpuses.", "Stella is a vumpus.", "Vumpuses are not fruity.", "Stella is not fruity." ] }, { "id": "ProntoQA_206", "context": "Every wumpus is wooden. Every wumpus is a numpus. Every numpus is sour. Numpuses are impuses. Impuses are not opaque. Every impus is a jompus. Each jompus is cold. Jompuses are vumpuses. Every vumpus is blue. Each vumpus is a rompus. Rompuses are angry. Every rompus is a yumpus. Yumpuses are fruity. Dumpuses are not fruity. Every yumpus is a zumpus. Every zumpus is happy. Each zumpus is a tumpus. Polly is an impus.", "question": "Is the following statement true or false? Polly is fruity.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Polly is an impus.", "Every impus is a jompus.", "Polly is a jompus.", "Jompuses are vumpuses.", "Polly is a vumpus.", "Each vumpus is a rompus.", "Polly is a rompus.", "Every rompus is a yumpus.", "Polly is a yumpus.", "Yumpuses are fruity.", "Polly is fruity." ] }, { "id": "ProntoQA_207", "context": "Numpuses are transparent. Numpuses are yumpuses. Yumpuses are red. Each yumpus is a jompus. Jompuses are small. Each jompus is a vumpus. Each vumpus is metallic. Every vumpus is a dumpus. Dumpuses are floral. Each dumpus is a rompus. Every rompus is angry. Rompuses are tumpuses. Impuses are not floral. Sally is a numpus.", "question": "Is the following statement true or false? Sally is not floral.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sally is a numpus.", "Numpuses are yumpuses.", "Sally is a yumpus.", "Each yumpus is a jompus.", "Sally is a jompus.", "Each jompus is a vumpus.", "Sally is a vumpus.", "Every vumpus is a dumpus.", "Sally is a dumpus.", "Dumpuses are floral.", "Sally is floral." ] }, { "id": "ProntoQA_208", "context": "Impuses are not fruity. Impuses are vumpuses. Each vumpus is cold. Wumpuses are not orange. Vumpuses are numpuses. Every numpus is wooden. Numpuses are rompuses. Rompuses are opaque. Rompuses are yumpuses. Each yumpus is sour. Yumpuses are zumpuses. Every zumpus is not small. Zumpuses are tumpuses. Each tumpus is nervous. Every tumpus is a jompus. Jompuses are orange. Every jompus is a dumpus. Max is a rompus.", "question": "Is the following statement true or false? Max is not orange.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Max is a rompus.", "Rompuses are yumpuses.", "Max is a yumpus.", "Yumpuses are zumpuses.", "Max is a zumpus.", "Zumpuses are tumpuses.", "Max is a tumpus.", "Every tumpus is a jompus.", "Max is a jompus.", "Jompuses are orange.", "Max is orange." ] }, { "id": "ProntoQA_209", "context": "Each tumpus is sweet. Every tumpus is a wumpus. Wumpuses are not transparent. Each wumpus is a dumpus. Every numpus is not earthy. Dumpuses are blue. Dumpuses are impuses. Impuses are not large. Impuses are yumpuses. Each yumpus is angry. Every yumpus is a rompus. Rompuses are not metallic. Every rompus is a zumpus. Each zumpus is earthy. Zumpuses are vumpuses. Polly is a dumpus.", "question": "Is the following statement true or false? Polly is earthy.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Polly is a dumpus.", "Dumpuses are impuses.", "Polly is an impus.", "Impuses are yumpuses.", "Polly is a yumpus.", "Every yumpus is a rompus.", "Polly is a rompus.", "Every rompus is a zumpus.", "Polly is a zumpus.", "Each zumpus is earthy.", "Polly is earthy." ] }, { "id": "ProntoQA_210", "context": "Zumpuses are wooden. Zumpuses are yumpuses. Each dumpus is not hot. Yumpuses are sour. Every yumpus is a tumpus. Tumpuses are not opaque. Every tumpus is a wumpus. Every wumpus is fruity. Each wumpus is a vumpus. Vumpuses are happy. Each vumpus is a rompus. Rompuses are hot. Every rompus is an impus. Every impus is kind. Every impus is a numpus. Numpuses are not orange. Each numpus is a jompus. Fae is a yumpus.", "question": "Is the following statement true or false? Fae is not hot.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Fae is a yumpus.", "Every yumpus is a tumpus.", "Fae is a tumpus.", "Every tumpus is a wumpus.", "Fae is a wumpus.", "Each wumpus is a vumpus.", "Fae is a vumpus.", "Each vumpus is a rompus.", "Fae is a rompus.", "Rompuses are hot.", "Fae is hot." ] }, { "id": "ProntoQA_211", "context": "Each zumpus is earthy. Every rompus is not spicy. Rompuses are wumpuses. Each wumpus is not happy. Wumpuses are tumpuses. Tumpuses are liquid. Every tumpus is a dumpus. Each dumpus is large. Each dumpus is an impus. Impuses are not earthy. Impuses are vumpuses. Each vumpus is aggressive. Every vumpus is a yumpus. Each yumpus is brown. Yumpuses are jompuses. Each jompus is bright. Each jompus is a numpus. Alex is a rompus.", "question": "Is the following statement true or false? Alex is not earthy.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Alex is a rompus.", "Rompuses are wumpuses.", "Alex is a wumpus.", "Wumpuses are tumpuses.", "Alex is a tumpus.", "Every tumpus is a dumpus.", "Alex is a dumpus.", "Each dumpus is an impus.", "Alex is an impus.", "Impuses are not earthy.", "Alex is not earthy." ] }, { "id": "ProntoQA_212", "context": "Every tumpus is red. Each tumpus is a wumpus. Every wumpus is sweet. Wumpuses are vumpuses. Vumpuses are small. Every vumpus is a jompus. Every jompus is not aggressive. Zumpuses are temperate. Each jompus is a dumpus. Each dumpus is bright. Every dumpus is a numpus. Numpuses are not temperate. Numpuses are rompuses. Each rompus is not luminous. Every rompus is a yumpus. Yumpuses are opaque. Every yumpus is an impus. Stella is a wumpus.", "question": "Is the following statement true or false? Stella is not temperate.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Stella is a wumpus.", "Wumpuses are vumpuses.", "Stella is a vumpus.", "Every vumpus is a jompus.", "Stella is a jompus.", "Each jompus is a dumpus.", "Stella is a dumpus.", "Every dumpus is a numpus.", "Stella is a numpus.", "Numpuses are not temperate.", "Stella is not temperate." ] }, { "id": "ProntoQA_213", "context": "Jompuses are not bright. Jompuses are vumpuses. Vumpuses are bitter. Every vumpus is a tumpus. Tumpuses are hot. Tumpuses are impuses. Each impus is not brown. Every impus is a numpus. Every yumpus is wooden. Numpuses are large. Numpuses are rompuses. Rompuses are not opaque. Every rompus is a wumpus. Wumpuses are aggressive. Wumpuses are dumpuses. Each dumpus is not wooden. Each dumpus is a zumpus. Rex is an impus.", "question": "Is the following statement true or false? Rex is not wooden.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Rex is an impus.", "Every impus is a numpus.", "Rex is a numpus.", "Numpuses are rompuses.", "Rex is a rompus.", "Every rompus is a wumpus.", "Rex is a wumpus.", "Wumpuses are dumpuses.", "Rex is a dumpus.", "Each dumpus is not wooden.", "Rex is not wooden." ] }, { "id": "ProntoQA_214", "context": "Every vumpus is not blue. Every vumpus is a zumpus. Zumpuses are floral. Every zumpus is a wumpus. Each wumpus is cold. Every impus is not nervous. Wumpuses are yumpuses. Yumpuses are transparent. Yumpuses are numpuses. Numpuses are nervous. Numpuses are tumpuses. Tumpuses are small. Each tumpus is a jompus. Jompuses are sweet. Jompuses are rompuses. Every rompus is not amenable. Rompuses are dumpuses. Sally is a vumpus.", "question": "Is the following statement true or false? Sally is nervous.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sally is a vumpus.", "Every vumpus is a zumpus.", "Sally is a zumpus.", "Every zumpus is a wumpus.", "Sally is a wumpus.", "Wumpuses are yumpuses.", "Sally is a yumpus.", "Yumpuses are numpuses.", "Sally is a numpus.", "Numpuses are nervous.", "Sally is nervous." ] }, { "id": "ProntoQA_215", "context": "Every wumpus is brown. Wumpuses are rompuses. Each rompus is dull. Rompuses are dumpuses. Dumpuses are transparent. Dumpuses are vumpuses. Each vumpus is small. Vumpuses are tumpuses. Yumpuses are not earthy. Tumpuses are earthy. Every tumpus is a zumpus. Each zumpus is not temperate. Each zumpus is a numpus. Each numpus is kind. Every numpus is an impus. Max is a wumpus.", "question": "Is the following statement true or false? Max is not earthy.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Max is a wumpus.", "Wumpuses are rompuses.", "Max is a rompus.", "Rompuses are dumpuses.", "Max is a dumpus.", "Dumpuses are vumpuses.", "Max is a vumpus.", "Vumpuses are tumpuses.", "Max is a tumpus.", "Tumpuses are earthy.", "Max is earthy." ] }, { "id": "ProntoQA_216", "context": "Impuses are dull. Impuses are rompuses. Vumpuses are not aggressive. Rompuses are not spicy. Each rompus is a dumpus. Dumpuses are nervous. Dumpuses are wumpuses. Wumpuses are not opaque. Every wumpus is a jompus. Jompuses are floral. Every jompus is a numpus. Numpuses are small. Each numpus is a zumpus. Each zumpus is blue. Zumpuses are tumpuses. Every tumpus is aggressive. Every tumpus is a yumpus. Max is a wumpus.", "question": "Is the following statement true or false? Max is aggressive.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Max is a wumpus.", "Every wumpus is a jompus.", "Max is a jompus.", "Every jompus is a numpus.", "Max is a numpus.", "Each numpus is a zumpus.", "Max is a zumpus.", "Zumpuses are tumpuses.", "Max is a tumpus.", "Every tumpus is aggressive.", "Max is aggressive." ] }, { "id": "ProntoQA_217", "context": "Numpuses are kind. Each numpus is a yumpus. Each yumpus is not opaque. Yumpuses are jompuses. Each vumpus is metallic. Jompuses are not temperate. Jompuses are wumpuses. Each wumpus is sour. Wumpuses are tumpuses. Tumpuses are not metallic. Every tumpus is a rompus. Each rompus is not brown. Rompuses are impuses. Each impus is not dull. Each impus is a zumpus. Zumpuses are not feisty. Zumpuses are dumpuses. Sally is a numpus.", "question": "Is the following statement true or false? Sally is not metallic.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sally is a numpus.", "Each numpus is a yumpus.", "Sally is a yumpus.", "Yumpuses are jompuses.", "Sally is a jompus.", "Jompuses are wumpuses.", "Sally is a wumpus.", "Wumpuses are tumpuses.", "Sally is a tumpus.", "Tumpuses are not metallic.", "Sally is not metallic." ] }, { "id": "ProntoQA_218", "context": "Every vumpus is not sour. Vumpuses are rompuses. Every rompus is not happy. Rompuses are jompuses. Each jompus is not temperate. Numpuses are not transparent. Jompuses are tumpuses. Tumpuses are liquid. Tumpuses are yumpuses. Each yumpus is transparent. Yumpuses are dumpuses. Dumpuses are orange. Dumpuses are wumpuses. Wumpuses are floral. Every wumpus is a zumpus. Fae is a vumpus.", "question": "Is the following statement true or false? Fae is transparent.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Fae is a vumpus.", "Vumpuses are rompuses.", "Fae is a rompus.", "Rompuses are jompuses.", "Fae is a jompus.", "Jompuses are tumpuses.", "Fae is a tumpus.", "Tumpuses are yumpuses.", "Fae is a yumpus.", "Each yumpus is transparent.", "Fae is transparent." ] }, { "id": "ProntoQA_219", "context": "Zumpuses are hot. Every zumpus is a tumpus. Every tumpus is dull. Each tumpus is a dumpus. Every dumpus is small. Dumpuses are vumpuses. Vumpuses are not nervous. Yumpuses are not transparent. Every vumpus is an impus. Every impus is not red. Impuses are rompuses. Rompuses are not floral. Rompuses are wumpuses. Each wumpus is transparent. Every wumpus is a jompus. Jompuses are not spicy. Each jompus is a numpus. Wren is a dumpus.", "question": "Is the following statement true or false? Wren is transparent.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Wren is a dumpus.", "Dumpuses are vumpuses.", "Wren is a vumpus.", "Every vumpus is an impus.", "Wren is an impus.", "Impuses are rompuses.", "Wren is a rompus.", "Rompuses are wumpuses.", "Wren is a wumpus.", "Each wumpus is transparent.", "Wren is transparent." ] }, { "id": "ProntoQA_220", "context": "Zumpuses are shy. Zumpuses are yumpuses. Dumpuses are not luminous. Yumpuses are not earthy. Every yumpus is a numpus. Numpuses are not aggressive. Each numpus is a tumpus. Tumpuses are transparent. Each tumpus is a wumpus. Every wumpus is not sour. Each wumpus is an impus. Each impus is not hot. Each impus is a jompus. Every jompus is not small. Each jompus is a vumpus. Vumpuses are luminous. Vumpuses are rompuses. Stella is a tumpus.", "question": "Is the following statement true or false? Stella is not luminous.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Stella is a tumpus.", "Each tumpus is a wumpus.", "Stella is a wumpus.", "Each wumpus is an impus.", "Stella is an impus.", "Each impus is a jompus.", "Stella is a jompus.", "Each jompus is a vumpus.", "Stella is a vumpus.", "Vumpuses are luminous.", "Stella is luminous." ] }, { "id": "ProntoQA_221", "context": "Every vumpus is feisty. Vumpuses are numpuses. Numpuses are not spicy. Numpuses are yumpuses. Yumpuses are large. Each yumpus is a zumpus. Tumpuses are fruity. Each zumpus is hot. Each zumpus is a wumpus. Every wumpus is transparent. Wumpuses are rompuses. Rompuses are brown. Rompuses are dumpuses. Every dumpus is kind. Each dumpus is an impus. Impuses are not fruity. Each impus is a jompus. Stella is a zumpus.", "question": "Is the following statement true or false? Stella is fruity.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Stella is a zumpus.", "Each zumpus is a wumpus.", "Stella is a wumpus.", "Wumpuses are rompuses.", "Stella is a rompus.", "Rompuses are dumpuses.", "Stella is a dumpus.", "Each dumpus is an impus.", "Stella is an impus.", "Impuses are not fruity.", "Stella is not fruity." ] }, { "id": "ProntoQA_222", "context": "Yumpuses are nervous. Each yumpus is a wumpus. Each wumpus is not earthy. Wumpuses are impuses. Zumpuses are metallic. Each impus is hot. Impuses are dumpuses. Dumpuses are small. Dumpuses are jompuses. Jompuses are sweet. Each jompus is a vumpus. Vumpuses are not metallic. Vumpuses are tumpuses. Each tumpus is red. Tumpuses are rompuses. Rompuses are bright. Rompuses are numpuses. Stella is a wumpus.", "question": "Is the following statement true or false? Stella is not metallic.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Stella is a wumpus.", "Wumpuses are impuses.", "Stella is an impus.", "Impuses are dumpuses.", "Stella is a dumpus.", "Dumpuses are jompuses.", "Stella is a jompus.", "Each jompus is a vumpus.", "Stella is a vumpus.", "Vumpuses are not metallic.", "Stella is not metallic." ] }, { "id": "ProntoQA_223", "context": "Dumpuses are bright. Dumpuses are vumpuses. Vumpuses are bitter. Vumpuses are zumpuses. Zumpuses are not floral. Zumpuses are impuses. Impuses are small. Impuses are numpuses. Wumpuses are not luminous. Each numpus is orange. Numpuses are jompuses. Every jompus is cold. Jompuses are rompuses. Rompuses are nervous. Rompuses are yumpuses. Every yumpus is luminous. Yumpuses are tumpuses. Polly is an impus.", "question": "Is the following statement true or false? Polly is not luminous.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Polly is an impus.", "Impuses are numpuses.", "Polly is a numpus.", "Numpuses are jompuses.", "Polly is a jompus.", "Jompuses are rompuses.", "Polly is a rompus.", "Rompuses are yumpuses.", "Polly is a yumpus.", "Every yumpus is luminous.", "Polly is luminous." ] }, { "id": "ProntoQA_224", "context": "Each jompus is nervous. Every jompus is a vumpus. Each vumpus is not brown. Each vumpus is a zumpus. Zumpuses are dull. Zumpuses are dumpuses. Dumpuses are fruity. Every dumpus is a wumpus. Wumpuses are luminous. Wumpuses are impuses. Impuses are kind. Every impus is a rompus. Yumpuses are cold. Each rompus is not cold. Every rompus is a tumpus. Tumpuses are not bitter. Tumpuses are numpuses. Sally is a zumpus.", "question": "Is the following statement true or false? Sally is cold.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sally is a zumpus.", "Zumpuses are dumpuses.", "Sally is a dumpus.", "Every dumpus is a wumpus.", "Sally is a wumpus.", "Wumpuses are impuses.", "Sally is an impus.", "Every impus is a rompus.", "Sally is a rompus.", "Each rompus is not cold.", "Sally is not cold." ] }, { "id": "ProntoQA_225", "context": "Every tumpus is not amenable. Tumpuses are impuses. Every impus is feisty. Every impus is a dumpus. Every dumpus is cold. Every dumpus is a wumpus. Wumpuses are sweet. Every wumpus is a vumpus. Yumpuses are not large. Every vumpus is large. Vumpuses are numpuses. Numpuses are bright. Numpuses are rompuses. Each rompus is blue. Each rompus is a jompus. Each jompus is luminous. Jompuses are zumpuses. Sam is a tumpus.", "question": "Is the following statement true or false? Sam is large.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sam is a tumpus.", "Tumpuses are impuses.", "Sam is an impus.", "Every impus is a dumpus.", "Sam is a dumpus.", "Every dumpus is a wumpus.", "Sam is a wumpus.", "Every wumpus is a vumpus.", "Sam is a vumpus.", "Every vumpus is large.", "Sam is large." ] }, { "id": "ProntoQA_226", "context": "Dumpuses are metallic. Impuses are not shy. Impuses are rompuses. Rompuses are not fruity. Each rompus is a jompus. Jompuses are large. Jompuses are numpuses. Numpuses are not blue. Numpuses are vumpuses. Each vumpus is not metallic. Vumpuses are wumpuses. Every wumpus is sweet. Wumpuses are zumpuses. Zumpuses are not opaque. Every zumpus is a tumpus. Every tumpus is not kind. Tumpuses are yumpuses. Stella is an impus.", "question": "Is the following statement true or false? Stella is metallic.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Stella is an impus.", "Impuses are rompuses.", "Stella is a rompus.", "Each rompus is a jompus.", "Stella is a jompus.", "Jompuses are numpuses.", "Stella is a numpus.", "Numpuses are vumpuses.", "Stella is a vumpus.", "Each vumpus is not metallic.", "Stella is not metallic." ] }, { "id": "ProntoQA_227", "context": "Numpuses are opaque. Every numpus is a rompus. Every rompus is aggressive. Rompuses are tumpuses. Each tumpus is not floral. Tumpuses are yumpuses. Every yumpus is bright. Yumpuses are wumpuses. Wumpuses are temperate. Each wumpus is a dumpus. Each dumpus is wooden. Vumpuses are not nervous. Dumpuses are impuses. Every impus is nervous. Each impus is a jompus. Every jompus is large. Each jompus is a zumpus. Sam is a tumpus.", "question": "Is the following statement true or false? Sam is not nervous.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sam is a tumpus.", "Tumpuses are yumpuses.", "Sam is a yumpus.", "Yumpuses are wumpuses.", "Sam is a wumpus.", "Each wumpus is a dumpus.", "Sam is a dumpus.", "Dumpuses are impuses.", "Sam is an impus.", "Every impus is nervous.", "Sam is nervous." ] }, { "id": "ProntoQA_228", "context": "Each zumpus is bitter. Every zumpus is a vumpus. Every vumpus is not angry. Every vumpus is an impus. Numpuses are not transparent. Every impus is hot. Every impus is a rompus. Every rompus is not liquid. Each rompus is a dumpus. Every dumpus is feisty. Each dumpus is a yumpus. Each yumpus is transparent. Yumpuses are jompuses. Every jompus is floral. Each jompus is a tumpus. Each tumpus is bright. Tumpuses are wumpuses. Alex is a vumpus.", "question": "Is the following statement true or false? Alex is not transparent.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Alex is a vumpus.", "Every vumpus is an impus.", "Alex is an impus.", "Every impus is a rompus.", "Alex is a rompus.", "Each rompus is a dumpus.", "Alex is a dumpus.", "Each dumpus is a yumpus.", "Alex is a yumpus.", "Each yumpus is transparent.", "Alex is transparent." ] }, { "id": "ProntoQA_229", "context": "Every wumpus is not aggressive. Every wumpus is a rompus. Tumpuses are cold. Every rompus is large. Rompuses are yumpuses. Yumpuses are not sour. Yumpuses are impuses. Every impus is not opaque. Each impus is a dumpus. Every dumpus is not cold. Each dumpus is a jompus. Jompuses are not red. Jompuses are zumpuses. Each zumpus is not bright. Each zumpus is a vumpus. Vumpuses are not wooden. Every vumpus is a numpus. Alex is a wumpus.", "question": "Is the following statement true or false? Alex is not cold.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Alex is a wumpus.", "Every wumpus is a rompus.", "Alex is a rompus.", "Rompuses are yumpuses.", "Alex is a yumpus.", "Yumpuses are impuses.", "Alex is an impus.", "Each impus is a dumpus.", "Alex is a dumpus.", "Every dumpus is not cold.", "Alex is not cold." ] }, { "id": "ProntoQA_230", "context": "Every tumpus is not kind. Every impus is liquid. Impuses are dumpuses. Each dumpus is shy. Dumpuses are zumpuses. Every zumpus is orange. Each zumpus is a numpus. Each numpus is not bright. Numpuses are vumpuses. Vumpuses are spicy. Vumpuses are rompuses. Each rompus is cold. Rompuses are wumpuses. Wumpuses are kind. Each wumpus is a jompus. Jompuses are small. Every jompus is a yumpus. Rex is a zumpus.", "question": "Is the following statement true or false? Rex is kind.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Rex is a zumpus.", "Each zumpus is a numpus.", "Rex is a numpus.", "Numpuses are vumpuses.", "Rex is a vumpus.", "Vumpuses are rompuses.", "Rex is a rompus.", "Rompuses are wumpuses.", "Rex is a wumpus.", "Wumpuses are kind.", "Rex is kind." ] }, { "id": "ProntoQA_231", "context": "Vumpuses are wooden. Each vumpus is a dumpus. Dumpuses are not large. Each dumpus is a yumpus. Every yumpus is bitter. Yumpuses are rompuses. Each rompus is not transparent. Each rompus is a tumpus. Each tumpus is not nervous. Every tumpus is a wumpus. Each wumpus is dull. Wumpuses are jompuses. Each jompus is angry. Every jompus is a zumpus. Each numpus is not dull. Every zumpus is not fruity. Each zumpus is an impus. Sam is a dumpus.", "question": "Is the following statement true or false? Sam is not dull.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sam is a dumpus.", "Each dumpus is a yumpus.", "Sam is a yumpus.", "Yumpuses are rompuses.", "Sam is a rompus.", "Each rompus is a tumpus.", "Sam is a tumpus.", "Every tumpus is a wumpus.", "Sam is a wumpus.", "Each wumpus is dull.", "Sam is dull." ] }, { "id": "ProntoQA_232", "context": "Yumpuses are not large. Every yumpus is a tumpus. Every tumpus is nervous. Every tumpus is a jompus. Every jompus is temperate. Jompuses are vumpuses. Each vumpus is brown. Each dumpus is not opaque. Each vumpus is an impus. Impuses are bright. Every impus is a zumpus. Zumpuses are opaque. Every zumpus is a numpus. Numpuses are metallic. Every numpus is a rompus. Each rompus is not angry. Rompuses are wumpuses. Max is a tumpus.", "question": "Is the following statement true or false? Max is not opaque.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Max is a tumpus.", "Every tumpus is a jompus.", "Max is a jompus.", "Jompuses are vumpuses.", "Max is a vumpus.", "Each vumpus is an impus.", "Max is an impus.", "Every impus is a zumpus.", "Max is a zumpus.", "Zumpuses are opaque.", "Max is opaque." ] }, { "id": "ProntoQA_233", "context": "Wumpuses are opaque. Every wumpus is an impus. Dumpuses are large. Impuses are red. Impuses are numpuses. Each numpus is temperate. Every numpus is a tumpus. Each tumpus is floral. Each tumpus is a rompus. Each rompus is not large. Every rompus is a jompus. Rex is a wumpus.", "question": "Is the following statement true or false? Rex is not large.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Rex is a wumpus.", "Every wumpus is an impus.", "Rex is an impus.", "Impuses are numpuses.", "Rex is a numpus.", "Every numpus is a tumpus.", "Rex is a tumpus.", "Each tumpus is a rompus.", "Rex is a rompus.", "Each rompus is not large.", "Rex is not large." ] }, { "id": "ProntoQA_234", "context": "Every impus is transparent. Impuses are tumpuses. Each tumpus is angry. Tumpuses are dumpuses. Every dumpus is not orange. Each dumpus is a jompus. Jompuses are feisty. Jompuses are numpuses. Every numpus is not earthy. Every rompus is earthy. Each numpus is a vumpus. Every vumpus is temperate. Vumpuses are wumpuses. Every wumpus is small. Every wumpus is a yumpus. Every yumpus is not metallic. Every yumpus is a zumpus. Stella is an impus.", "question": "Is the following statement true or false? Stella is not earthy.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Stella is an impus.", "Impuses are tumpuses.", "Stella is a tumpus.", "Tumpuses are dumpuses.", "Stella is a dumpus.", "Each dumpus is a jompus.", "Stella is a jompus.", "Jompuses are numpuses.", "Stella is a numpus.", "Every numpus is not earthy.", "Stella is not earthy." ] }, { "id": "ProntoQA_235", "context": "Each tumpus is temperate. Each tumpus is a dumpus. Every dumpus is opaque. Every dumpus is a vumpus. Vumpuses are brown. Vumpuses are yumpuses. Every jompus is not happy. Yumpuses are dull. Yumpuses are wumpuses. Each wumpus is happy. Wumpuses are numpuses. Numpuses are earthy. Numpuses are zumpuses. Zumpuses are not bitter. Zumpuses are impuses. Stella is a tumpus.", "question": "Is the following statement true or false? Stella is not happy.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Stella is a tumpus.", "Each tumpus is a dumpus.", "Stella is a dumpus.", "Every dumpus is a vumpus.", "Stella is a vumpus.", "Vumpuses are yumpuses.", "Stella is a yumpus.", "Yumpuses are wumpuses.", "Stella is a wumpus.", "Each wumpus is happy.", "Stella is happy." ] }, { "id": "ProntoQA_236", "context": "Yumpuses are not orange. Jompuses are liquid. Each jompus is a vumpus. Vumpuses are sour. Vumpuses are rompuses. Each rompus is earthy. Every rompus is an impus. Impuses are not opaque. Every impus is a numpus. Numpuses are not small. Each numpus is a tumpus. Every tumpus is orange. Every tumpus is a dumpus. Dumpuses are not amenable. Every dumpus is a zumpus. Zumpuses are temperate. Zumpuses are wumpuses. Fae is a vumpus.", "question": "Is the following statement true or false? Fae is orange.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Fae is a vumpus.", "Vumpuses are rompuses.", "Fae is a rompus.", "Every rompus is an impus.", "Fae is an impus.", "Every impus is a numpus.", "Fae is a numpus.", "Each numpus is a tumpus.", "Fae is a tumpus.", "Every tumpus is orange.", "Fae is orange." ] }, { "id": "ProntoQA_237", "context": "Impuses are dull. Impuses are dumpuses. Dumpuses are not small. Dumpuses are numpuses. Numpuses are not happy. Each numpus is a tumpus. Every rompus is cold. Tumpuses are kind. Every tumpus is a jompus. Jompuses are not earthy. Jompuses are yumpuses. Yumpuses are blue. Yumpuses are wumpuses. Each wumpus is transparent. Wumpuses are vumpuses. Every vumpus is not cold. Vumpuses are zumpuses. Sally is a tumpus.", "question": "Is the following statement true or false? Sally is cold.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sally is a tumpus.", "Every tumpus is a jompus.", "Sally is a jompus.", "Jompuses are yumpuses.", "Sally is a yumpus.", "Yumpuses are wumpuses.", "Sally is a wumpus.", "Wumpuses are vumpuses.", "Sally is a vumpus.", "Every vumpus is not cold.", "Sally is not cold." ] }, { "id": "ProntoQA_238", "context": "Wumpuses are spicy. Tumpuses are not small. Every wumpus is a dumpus. Every dumpus is not floral. Each dumpus is a rompus. Rompuses are angry. Every rompus is a vumpus. Vumpuses are happy. Vumpuses are zumpuses. Zumpuses are metallic. Zumpuses are impuses. Every impus is not orange. Impuses are numpuses. Every numpus is small. Numpuses are jompuses. Jompuses are cold. Jompuses are yumpuses. Polly is a rompus.", "question": "Is the following statement true or false? Polly is small.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Polly is a rompus.", "Every rompus is a vumpus.", "Polly is a vumpus.", "Vumpuses are zumpuses.", "Polly is a zumpus.", "Zumpuses are impuses.", "Polly is an impus.", "Impuses are numpuses.", "Polly is a numpus.", "Every numpus is small.", "Polly is small." ] }, { "id": "ProntoQA_239", "context": "Tumpuses are fruity. Tumpuses are jompuses. Jompuses are not hot. Every impus is not spicy. Jompuses are yumpuses. Every yumpus is not luminous. Each yumpus is a dumpus. Dumpuses are not shy. Dumpuses are rompuses. Each rompus is spicy. Rompuses are vumpuses. Vumpuses are orange. Every vumpus is a zumpus. Every zumpus is dull. Each zumpus is a numpus. Each numpus is opaque. Numpuses are wumpuses. Alex is a tumpus.", "question": "Is the following statement true or false? Alex is not spicy.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Alex is a tumpus.", "Tumpuses are jompuses.", "Alex is a jompus.", "Jompuses are yumpuses.", "Alex is a yumpus.", "Each yumpus is a dumpus.", "Alex is a dumpus.", "Dumpuses are rompuses.", "Alex is a rompus.", "Each rompus is spicy.", "Alex is spicy." ] }, { "id": "ProntoQA_240", "context": "Wumpuses are feisty. Every wumpus is a yumpus. Yumpuses are kind. Every yumpus is a jompus. Jompuses are liquid. Each jompus is an impus. Each impus is transparent. Impuses are tumpuses. Tumpuses are not dull. Tumpuses are numpuses. Numpuses are temperate. Numpuses are vumpuses. Each zumpus is not spicy. Every vumpus is blue. Each vumpus is a dumpus. Each dumpus is spicy. Every dumpus is a rompus. Alex is an impus.", "question": "Is the following statement true or false? Alex is spicy.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Alex is an impus.", "Impuses are tumpuses.", "Alex is a tumpus.", "Tumpuses are numpuses.", "Alex is a numpus.", "Numpuses are vumpuses.", "Alex is a vumpus.", "Each vumpus is a dumpus.", "Alex is a dumpus.", "Each dumpus is spicy.", "Alex is spicy." ] }, { "id": "ProntoQA_241", "context": "Each dumpus is spicy. Every dumpus is a jompus. Each jompus is large. Jompuses are impuses. Impuses are transparent. Impuses are wumpuses. Wumpuses are liquid. Wumpuses are tumpuses. Each tumpus is orange. Tumpuses are yumpuses. Yumpuses are nervous. Each yumpus is a vumpus. Vumpuses are not temperate. Each vumpus is a numpus. Zumpuses are not orange. Each numpus is kind. Every numpus is a rompus. Sally is a dumpus.", "question": "Is the following statement true or false? Sally is not orange.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sally is a dumpus.", "Every dumpus is a jompus.", "Sally is a jompus.", "Jompuses are impuses.", "Sally is an impus.", "Impuses are wumpuses.", "Sally is a wumpus.", "Wumpuses are tumpuses.", "Sally is a tumpus.", "Each tumpus is orange.", "Sally is orange." ] }, { "id": "ProntoQA_242", "context": "Zumpuses are large. Every zumpus is a numpus. Every numpus is luminous. Numpuses are wumpuses. Each wumpus is floral. Each wumpus is a yumpus. Yumpuses are spicy. Yumpuses are impuses. Impuses are transparent. Every impus is a rompus. Dumpuses are blue. Rompuses are not blue. Every rompus is a tumpus. Tumpuses are nervous. Tumpuses are jompuses. Jompuses are not dull. Each jompus is a vumpus. Wren is a numpus.", "question": "Is the following statement true or false? Wren is not blue.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Wren is a numpus.", "Numpuses are wumpuses.", "Wren is a wumpus.", "Each wumpus is a yumpus.", "Wren is a yumpus.", "Yumpuses are impuses.", "Wren is an impus.", "Every impus is a rompus.", "Wren is a rompus.", "Rompuses are not blue.", "Wren is not blue." ] }, { "id": "ProntoQA_243", "context": "Tumpuses are bright. Every tumpus is a jompus. Jompuses are mean. Jompuses are yumpuses. Every yumpus is transparent. Every yumpus is a zumpus. Zumpuses are red. Each zumpus is a vumpus. Every vumpus is not luminous. Each vumpus is a rompus. Each rompus is not feisty. Rompuses are impuses. Every impus is temperate. Every impus is a wumpus. Each wumpus is not fruity. Every wumpus is a numpus. Dumpuses are feisty. Max is a jompus.", "question": "Is the following statement true or false? Max is feisty.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Max is a jompus.", "Jompuses are yumpuses.", "Max is a yumpus.", "Every yumpus is a zumpus.", "Max is a zumpus.", "Each zumpus is a vumpus.", "Max is a vumpus.", "Each vumpus is a rompus.", "Max is a rompus.", "Each rompus is not feisty.", "Max is not feisty." ] }, { "id": "ProntoQA_244", "context": "Rompuses are shy. Each rompus is a jompus. Jompuses are sour. Jompuses are yumpuses. Every yumpus is blue. Yumpuses are impuses. Impuses are not fruity. Every impus is a vumpus. Every tumpus is transparent. Each vumpus is luminous. Each vumpus is a zumpus. Zumpuses are not transparent. Every zumpus is a dumpus. Every dumpus is temperate. Dumpuses are wumpuses. Wumpuses are not dull. Each wumpus is a numpus. Wren is a jompus.", "question": "Is the following statement true or false? Wren is not transparent.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Wren is a jompus.", "Jompuses are yumpuses.", "Wren is a yumpus.", "Yumpuses are impuses.", "Wren is an impus.", "Every impus is a vumpus.", "Wren is a vumpus.", "Each vumpus is a zumpus.", "Wren is a zumpus.", "Zumpuses are not transparent.", "Wren is not transparent." ] }, { "id": "ProntoQA_245", "context": "Every tumpus is not liquid. Tumpuses are impuses. Every impus is blue. Every impus is a zumpus. Zumpuses are opaque. Vumpuses are not large. Every zumpus is a numpus. Numpuses are hot. Each numpus is a yumpus. Yumpuses are sour. Yumpuses are jompuses. Every jompus is dull. Jompuses are rompuses. Rompuses are large. Each rompus is a wumpus. Each wumpus is fruity. Each wumpus is a dumpus. Rex is a zumpus.", "question": "Is the following statement true or false? Rex is large.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Rex is a zumpus.", "Every zumpus is a numpus.", "Rex is a numpus.", "Each numpus is a yumpus.", "Rex is a yumpus.", "Yumpuses are jompuses.", "Rex is a jompus.", "Jompuses are rompuses.", "Rex is a rompus.", "Rompuses are large.", "Rex is large." ] }, { "id": "ProntoQA_246", "context": "Each dumpus is opaque. Each dumpus is a vumpus. Vumpuses are not dull. Every vumpus is an impus. Impuses are not hot. Every impus is a wumpus. Each wumpus is spicy. Wumpuses are zumpuses. Each zumpus is floral. Zumpuses are numpuses. Each numpus is not red. Each rompus is red. Every numpus is a yumpus. Yumpuses are wooden. Yumpuses are jompuses. Each jompus is feisty. Each jompus is a tumpus. Sam is a vumpus.", "question": "Is the following statement true or false? Sam is not red.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sam is a vumpus.", "Every vumpus is an impus.", "Sam is an impus.", "Every impus is a wumpus.", "Sam is a wumpus.", "Wumpuses are zumpuses.", "Sam is a zumpus.", "Zumpuses are numpuses.", "Sam is a numpus.", "Each numpus is not red.", "Sam is not red." ] }, { "id": "ProntoQA_247", "context": "Rompuses are earthy. Rompuses are yumpuses. Yumpuses are transparent. Each yumpus is a jompus. Jompuses are not sour. Zumpuses are not brown. Jompuses are dumpuses. Dumpuses are not temperate. Each dumpus is a numpus. Every numpus is brown. Numpuses are wumpuses. Each wumpus is large. Wumpuses are tumpuses. Sam is a rompus.", "question": "Is the following statement true or false? Sam is brown.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sam is a rompus.", "Rompuses are yumpuses.", "Sam is a yumpus.", "Each yumpus is a jompus.", "Sam is a jompus.", "Jompuses are dumpuses.", "Sam is a dumpus.", "Each dumpus is a numpus.", "Sam is a numpus.", "Every numpus is brown.", "Sam is brown." ] }, { "id": "ProntoQA_248", "context": "Vumpuses are fruity. Vumpuses are rompuses. Rompuses are not dull. Each rompus is a wumpus. Each wumpus is not orange. Each wumpus is a zumpus. Every zumpus is cold. Zumpuses are tumpuses. Tumpuses are transparent. Each tumpus is a dumpus. Every dumpus is shy. Each dumpus is a numpus. Every jompus is not sour. Each numpus is sour. Numpuses are yumpuses. Each yumpus is not large. Yumpuses are impuses. Polly is a wumpus.", "question": "Is the following statement true or false? Polly is sour.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Polly is a wumpus.", "Each wumpus is a zumpus.", "Polly is a zumpus.", "Zumpuses are tumpuses.", "Polly is a tumpus.", "Each tumpus is a dumpus.", "Polly is a dumpus.", "Each dumpus is a numpus.", "Polly is a numpus.", "Each numpus is sour.", "Polly is sour." ] }, { "id": "ProntoQA_249", "context": "Numpuses are not dull. Numpuses are yumpuses. Every yumpus is earthy. Every yumpus is a jompus. Jompuses are orange. Jompuses are dumpuses. Dumpuses are not liquid. Dumpuses are wumpuses. Wumpuses are transparent. Wumpuses are vumpuses. Each vumpus is not happy. Every vumpus is an impus. Every impus is not small. Impuses are zumpuses. Each zumpus is angry. Each zumpus is a rompus. Tumpuses are small. Stella is a jompus.", "question": "Is the following statement true or false? Stella is small.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Stella is a jompus.", "Jompuses are dumpuses.", "Stella is a dumpus.", "Dumpuses are wumpuses.", "Stella is a wumpus.", "Wumpuses are vumpuses.", "Stella is a vumpus.", "Every vumpus is an impus.", "Stella is an impus.", "Every impus is not small.", "Stella is not small." ] }, { "id": "ProntoQA_250", "context": "Every yumpus is mean. Every yumpus is an impus. Impuses are cold. Each impus is a tumpus. Each tumpus is nervous. Tumpuses are jompuses. Jompuses are earthy. Jompuses are dumpuses. Every vumpus is not wooden. Each dumpus is wooden. Every dumpus is a rompus. Rompuses are large. Each rompus is a numpus. Every numpus is dull. Numpuses are wumpuses. Each wumpus is not sour. Wumpuses are zumpuses. Stella is a yumpus.", "question": "Is the following statement true or false? Stella is wooden.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Stella is a yumpus.", "Every yumpus is an impus.", "Stella is an impus.", "Each impus is a tumpus.", "Stella is a tumpus.", "Tumpuses are jompuses.", "Stella is a jompus.", "Jompuses are dumpuses.", "Stella is a dumpus.", "Each dumpus is wooden.", "Stella is wooden." ] }, { "id": "ProntoQA_251", "context": "Every tumpus is not hot. Tumpuses are vumpuses. Every vumpus is not bright. Every zumpus is kind. Every vumpus is an impus. Every impus is earthy. Every impus is a dumpus. Each dumpus is bitter. Dumpuses are yumpuses. Yumpuses are red. Every yumpus is a numpus. Each numpus is not nervous. Numpuses are wumpuses. Wumpuses are not kind. Wumpuses are rompuses. Each rompus is not small. Rompuses are jompuses. Sam is an impus.", "question": "Is the following statement true or false? Sam is kind.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sam is an impus.", "Every impus is a dumpus.", "Sam is a dumpus.", "Dumpuses are yumpuses.", "Sam is a yumpus.", "Every yumpus is a numpus.", "Sam is a numpus.", "Numpuses are wumpuses.", "Sam is a wumpus.", "Wumpuses are not kind.", "Sam is not kind." ] }, { "id": "ProntoQA_252", "context": "Each dumpus is large. Jompuses are not blue. Each dumpus is a zumpus. Each zumpus is earthy. Each zumpus is a numpus. Every numpus is bitter. Each numpus is a wumpus. Each wumpus is opaque. Every wumpus is a rompus. Rompuses are blue. Rompuses are yumpuses. Yumpuses are not cold. Yumpuses are vumpuses. Each vumpus is angry. Each vumpus is an impus. Every impus is luminous. Impuses are tumpuses. Alex is a dumpus.", "question": "Is the following statement true or false? Alex is blue.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Alex is a dumpus.", "Each dumpus is a zumpus.", "Alex is a zumpus.", "Each zumpus is a numpus.", "Alex is a numpus.", "Each numpus is a wumpus.", "Alex is a wumpus.", "Every wumpus is a rompus.", "Alex is a rompus.", "Rompuses are blue.", "Alex is blue." ] }, { "id": "ProntoQA_253", "context": "Vumpuses are red. Vumpuses are jompuses. Each jompus is aggressive. Jompuses are tumpuses. Each tumpus is not sweet. Tumpuses are rompuses. Rompuses are not floral. Rompuses are zumpuses. Each zumpus is not large. Zumpuses are yumpuses. Every yumpus is transparent. Yumpuses are dumpuses. Dumpuses are metallic. Impuses are large. Dumpuses are numpuses. Every numpus is cold. Every numpus is a wumpus. Fae is a vumpus.", "question": "Is the following statement true or false? Fae is not large.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Fae is a vumpus.", "Vumpuses are jompuses.", "Fae is a jompus.", "Jompuses are tumpuses.", "Fae is a tumpus.", "Tumpuses are rompuses.", "Fae is a rompus.", "Rompuses are zumpuses.", "Fae is a zumpus.", "Each zumpus is not large.", "Fae is not large." ] }, { "id": "ProntoQA_254", "context": "Tumpuses are floral. Every tumpus is a numpus. Each numpus is not transparent. Each numpus is a zumpus. Each zumpus is temperate. Zumpuses are impuses. Impuses are aggressive. Every impus is a yumpus. Each rompus is bright. Yumpuses are not brown. Yumpuses are vumpuses. Each vumpus is sour. Each vumpus is a wumpus. Wumpuses are not bright. Wumpuses are dumpuses. Dumpuses are large. Every dumpus is a jompus. Max is a zumpus.", "question": "Is the following statement true or false? Max is bright.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Max is a zumpus.", "Zumpuses are impuses.", "Max is an impus.", "Every impus is a yumpus.", "Max is a yumpus.", "Yumpuses are vumpuses.", "Max is a vumpus.", "Each vumpus is a wumpus.", "Max is a wumpus.", "Wumpuses are not bright.", "Max is not bright." ] }, { "id": "ProntoQA_255", "context": "Every impus is kind. Each impus is a wumpus. Each wumpus is not nervous. Wumpuses are yumpuses. Yumpuses are not large. Every yumpus is a rompus. Each rompus is opaque. Each rompus is a jompus. Jompuses are bright. Each jompus is a tumpus. Every tumpus is bitter. Tumpuses are numpuses. Numpuses are not fruity. Each numpus is a vumpus. Zumpuses are not bitter. Vumpuses are wooden. Each vumpus is a dumpus. Max is a wumpus.", "question": "Is the following statement true or false? Max is not bitter.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Max is a wumpus.", "Wumpuses are yumpuses.", "Max is a yumpus.", "Every yumpus is a rompus.", "Max is a rompus.", "Each rompus is a jompus.", "Max is a jompus.", "Each jompus is a tumpus.", "Max is a tumpus.", "Every tumpus is bitter.", "Max is bitter." ] }, { "id": "ProntoQA_256", "context": "Tumpuses are transparent. Yumpuses are not small. Every tumpus is a numpus. Numpuses are brown. Numpuses are jompuses. Jompuses are angry. Every jompus is a zumpus. Zumpuses are bright. Zumpuses are vumpuses. Every vumpus is spicy. Vumpuses are impuses. Impuses are happy. Every impus is a dumpus. Each dumpus is liquid. Each dumpus is a rompus. Rompuses are small. Rompuses are wumpuses. Sam is a zumpus.", "question": "Is the following statement true or false? Sam is not small.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sam is a zumpus.", "Zumpuses are vumpuses.", "Sam is a vumpus.", "Vumpuses are impuses.", "Sam is an impus.", "Every impus is a dumpus.", "Sam is a dumpus.", "Each dumpus is a rompus.", "Sam is a rompus.", "Rompuses are small.", "Sam is small." ] }, { "id": "ProntoQA_257", "context": "Every jompus is floral. Jompuses are tumpuses. Every tumpus is orange. Every tumpus is a dumpus. Dumpuses are temperate. Each dumpus is an impus. Every impus is not small. Impuses are numpuses. Numpuses are not feisty. Numpuses are wumpuses. Every yumpus is not kind. Wumpuses are kind. Every wumpus is a zumpus. Zumpuses are sour. Zumpuses are vumpuses. Vumpuses are transparent. Every vumpus is a rompus. Max is a tumpus.", "question": "Is the following statement true or false? Max is kind.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Max is a tumpus.", "Every tumpus is a dumpus.", "Max is a dumpus.", "Each dumpus is an impus.", "Max is an impus.", "Impuses are numpuses.", "Max is a numpus.", "Numpuses are wumpuses.", "Max is a wumpus.", "Wumpuses are kind.", "Max is kind." ] }, { "id": "ProntoQA_258", "context": "Wumpuses are orange. Wumpuses are numpuses. Each numpus is cold. Numpuses are yumpuses. Yumpuses are not mean. Each yumpus is a jompus. Jompuses are luminous. Jompuses are impuses. Each impus is nervous. Every impus is a dumpus. Each dumpus is transparent. Every dumpus is a zumpus. Zumpuses are dull. Each tumpus is not dull. Zumpuses are rompuses. Rompuses are not bitter. Rompuses are vumpuses. Wren is a yumpus.", "question": "Is the following statement true or false? Wren is not dull.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Wren is a yumpus.", "Each yumpus is a jompus.", "Wren is a jompus.", "Jompuses are impuses.", "Wren is an impus.", "Every impus is a dumpus.", "Wren is a dumpus.", "Every dumpus is a zumpus.", "Wren is a zumpus.", "Zumpuses are dull.", "Wren is dull." ] }, { "id": "ProntoQA_259", "context": "Yumpuses are fruity. Yumpuses are wumpuses. Wumpuses are large. Every wumpus is a dumpus. Dumpuses are temperate. Dumpuses are rompuses. Every rompus is feisty. Rompuses are numpuses. Numpuses are not sweet. Every numpus is a vumpus. Vumpuses are bright. Each vumpus is a tumpus. Tumpuses are opaque. Every tumpus is an impus. Every impus is not blue. Each impus is a zumpus. Each jompus is sweet. Sally is a yumpus.", "question": "Is the following statement true or false? Sally is sweet.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sally is a yumpus.", "Yumpuses are wumpuses.", "Sally is a wumpus.", "Every wumpus is a dumpus.", "Sally is a dumpus.", "Dumpuses are rompuses.", "Sally is a rompus.", "Rompuses are numpuses.", "Sally is a numpus.", "Numpuses are not sweet.", "Sally is not sweet." ] }, { "id": "ProntoQA_260", "context": "Each impus is not orange. Each impus is a zumpus. Every zumpus is not happy. Every zumpus is a vumpus. Vumpuses are not opaque. Every vumpus is a yumpus. Yumpuses are temperate. Each yumpus is a wumpus. Each wumpus is floral. Wumpuses are jompuses. Every jompus is large. Rompuses are wooden. Each jompus is a tumpus. Each tumpus is not wooden. Every tumpus is a numpus. Each numpus is not dull. Every numpus is a dumpus. Max is a vumpus.", "question": "Is the following statement true or false? Max is not wooden.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Max is a vumpus.", "Every vumpus is a yumpus.", "Max is a yumpus.", "Each yumpus is a wumpus.", "Max is a wumpus.", "Wumpuses are jompuses.", "Max is a jompus.", "Each jompus is a tumpus.", "Max is a tumpus.", "Each tumpus is not wooden.", "Max is not wooden." ] }, { "id": "ProntoQA_261", "context": "Each tumpus is mean. Each tumpus is a yumpus. Yumpuses are small. Yumpuses are dumpuses. Zumpuses are fruity. Dumpuses are dull. Every dumpus is an impus. Impuses are transparent. Every impus is a wumpus. Every wumpus is not fruity. Every wumpus is a jompus. Alex is a tumpus.", "question": "Is the following statement true or false? Alex is not fruity.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Alex is a tumpus.", "Each tumpus is a yumpus.", "Alex is a yumpus.", "Yumpuses are dumpuses.", "Alex is a dumpus.", "Every dumpus is an impus.", "Alex is an impus.", "Every impus is a wumpus.", "Alex is a wumpus.", "Every wumpus is not fruity.", "Alex is not fruity." ] }, { "id": "ProntoQA_262", "context": "Every vumpus is large. Each vumpus is a dumpus. Every dumpus is amenable. Every dumpus is a zumpus. Zumpuses are fruity. Zumpuses are rompuses. Each rompus is not luminous. Each rompus is a tumpus. Each tumpus is cold. Tumpuses are numpuses. Numpuses are dull. Numpuses are jompuses. Every jompus is sour. Jompuses are impuses. Yumpuses are not cold. Impuses are opaque. Each impus is a wumpus. Sam is a vumpus.", "question": "Is the following statement true or false? Sam is cold.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sam is a vumpus.", "Each vumpus is a dumpus.", "Sam is a dumpus.", "Every dumpus is a zumpus.", "Sam is a zumpus.", "Zumpuses are rompuses.", "Sam is a rompus.", "Each rompus is a tumpus.", "Sam is a tumpus.", "Each tumpus is cold.", "Sam is cold." ] }, { "id": "ProntoQA_263", "context": "Each impus is bright. Impuses are tumpuses. Tumpuses are small. Each tumpus is a dumpus. Dumpuses are temperate. Every dumpus is a zumpus. Every zumpus is amenable. Each zumpus is a rompus. Every rompus is orange. Every rompus is a jompus. Wumpuses are floral. Jompuses are luminous. Every jompus is a vumpus. Each vumpus is not floral. Vumpuses are yumpuses. Yumpuses are spicy. Every yumpus is a numpus. Sally is a dumpus.", "question": "Is the following statement true or false? Sally is floral.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sally is a dumpus.", "Every dumpus is a zumpus.", "Sally is a zumpus.", "Each zumpus is a rompus.", "Sally is a rompus.", "Every rompus is a jompus.", "Sally is a jompus.", "Every jompus is a vumpus.", "Sally is a vumpus.", "Each vumpus is not floral.", "Sally is not floral." ] }, { "id": "ProntoQA_264", "context": "Vumpuses are floral. Vumpuses are wumpuses. Each wumpus is brown. Wumpuses are zumpuses. Each zumpus is not liquid. Every zumpus is an impus. Impuses are not kind. Each impus is a tumpus. Every tumpus is transparent. Every tumpus is a numpus. Numpuses are feisty. Each numpus is a yumpus. Yumpuses are sweet. Yumpuses are rompuses. Rompuses are not bright. Rompuses are dumpuses. Jompuses are bright. Max is an impus.", "question": "Is the following statement true or false? Max is not bright.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Max is an impus.", "Each impus is a tumpus.", "Max is a tumpus.", "Every tumpus is a numpus.", "Max is a numpus.", "Each numpus is a yumpus.", "Max is a yumpus.", "Yumpuses are rompuses.", "Max is a rompus.", "Rompuses are not bright.", "Max is not bright." ] }, { "id": "ProntoQA_265", "context": "Wumpuses are liquid. Each wumpus is a dumpus. Each dumpus is small. Each dumpus is a rompus. Rompuses are transparent. Every rompus is a tumpus. Tumpuses are bitter. Each tumpus is a numpus. Zumpuses are not fruity. Numpuses are fruity. Each numpus is a vumpus. Each vumpus is hot. Vumpuses are yumpuses. Yumpuses are not shy. Yumpuses are impuses. Impuses are not bright. Impuses are jompuses. Sally is a wumpus.", "question": "Is the following statement true or false? Sally is not fruity.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sally is a wumpus.", "Each wumpus is a dumpus.", "Sally is a dumpus.", "Each dumpus is a rompus.", "Sally is a rompus.", "Every rompus is a tumpus.", "Sally is a tumpus.", "Each tumpus is a numpus.", "Sally is a numpus.", "Numpuses are fruity.", "Sally is fruity." ] }, { "id": "ProntoQA_266", "context": "Every wumpus is amenable. Every wumpus is a tumpus. Tumpuses are luminous. Tumpuses are yumpuses. Every yumpus is large. Every yumpus is a numpus. Every numpus is sweet. Every numpus is a vumpus. Vumpuses are happy. Each vumpus is a dumpus. Jompuses are not temperate. Each dumpus is floral. Dumpuses are rompuses. Each rompus is temperate. Rompuses are zumpuses. Every zumpus is dull. Zumpuses are impuses. Rex is a yumpus.", "question": "Is the following statement true or false? Rex is temperate.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Rex is a yumpus.", "Every yumpus is a numpus.", "Rex is a numpus.", "Every numpus is a vumpus.", "Rex is a vumpus.", "Each vumpus is a dumpus.", "Rex is a dumpus.", "Dumpuses are rompuses.", "Rex is a rompus.", "Each rompus is temperate.", "Rex is temperate." ] }, { "id": "ProntoQA_267", "context": "Vumpuses are not angry. Vumpuses are wumpuses. Wumpuses are nervous. Every wumpus is a dumpus. Dumpuses are red. Every dumpus is a jompus. Jompuses are not hot. Every jompus is a numpus. Numpuses are not small. Every numpus is a zumpus. Zumpuses are opaque. Zumpuses are tumpuses. Tumpuses are not earthy. Every tumpus is a rompus. Each rompus is bright. Each impus is not opaque. Rompuses are yumpuses. Polly is a wumpus.", "question": "Is the following statement true or false? Polly is not opaque.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Polly is a wumpus.", "Every wumpus is a dumpus.", "Polly is a dumpus.", "Every dumpus is a jompus.", "Polly is a jompus.", "Every jompus is a numpus.", "Polly is a numpus.", "Every numpus is a zumpus.", "Polly is a zumpus.", "Zumpuses are opaque.", "Polly is opaque." ] }, { "id": "ProntoQA_268", "context": "Yumpuses are not liquid. Each yumpus is a numpus. Numpuses are not floral. Each numpus is an impus. Every impus is not bitter. Impuses are dumpuses. Dumpuses are dull. Dumpuses are jompuses. Jompuses are not shy. Jompuses are zumpuses. Each zumpus is not orange. Every zumpus is a tumpus. Tumpuses are small. Each tumpus is a wumpus. Vumpuses are not cold. Wumpuses are cold. Each wumpus is a rompus. Alex is a dumpus.", "question": "Is the following statement true or false? Alex is not cold.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Alex is a dumpus.", "Dumpuses are jompuses.", "Alex is a jompus.", "Jompuses are zumpuses.", "Alex is a zumpus.", "Every zumpus is a tumpus.", "Alex is a tumpus.", "Each tumpus is a wumpus.", "Alex is a wumpus.", "Wumpuses are cold.", "Alex is cold." ] }, { "id": "ProntoQA_269", "context": "Impuses are not fruity. Impuses are yumpuses. Each yumpus is dull. Every jompus is opaque. Each yumpus is a zumpus. Each zumpus is spicy. Every zumpus is a tumpus. Each tumpus is small. Each tumpus is a vumpus. Vumpuses are not feisty. Vumpuses are numpuses. Numpuses are not opaque. Numpuses are rompuses. Max is a yumpus.", "question": "Is the following statement true or false? Max is opaque.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Max is a yumpus.", "Each yumpus is a zumpus.", "Max is a zumpus.", "Every zumpus is a tumpus.", "Max is a tumpus.", "Each tumpus is a vumpus.", "Max is a vumpus.", "Vumpuses are numpuses.", "Max is a numpus.", "Numpuses are not opaque.", "Max is not opaque." ] }, { "id": "ProntoQA_270", "context": "Tumpuses are not wooden. Tumpuses are vumpuses. Every vumpus is not cold. Vumpuses are zumpuses. Zumpuses are sour. Zumpuses are numpuses. Each numpus is opaque. Every numpus is a dumpus. Dumpuses are feisty. Every yumpus is not bright. Every dumpus is a wumpus. Wumpuses are bright. Each wumpus is an impus. Every impus is red. Every impus is a rompus. Every rompus is small. Rompuses are jompuses. Wren is a vumpus.", "question": "Is the following statement true or false? Wren is not bright.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Wren is a vumpus.", "Vumpuses are zumpuses.", "Wren is a zumpus.", "Zumpuses are numpuses.", "Wren is a numpus.", "Every numpus is a dumpus.", "Wren is a dumpus.", "Every dumpus is a wumpus.", "Wren is a wumpus.", "Wumpuses are bright.", "Wren is bright." ] }, { "id": "ProntoQA_271", "context": "Each rompus is small. Each jompus is angry. Each jompus is a tumpus. Each tumpus is not nervous. Every tumpus is a wumpus. Wumpuses are bright. Wumpuses are numpuses. Numpuses are temperate. Numpuses are vumpuses. Every vumpus is not small. Vumpuses are dumpuses. Sally is a jompus.", "question": "Is the following statement true or false? Sally is not small.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sally is a jompus.", "Each jompus is a tumpus.", "Sally is a tumpus.", "Every tumpus is a wumpus.", "Sally is a wumpus.", "Wumpuses are numpuses.", "Sally is a numpus.", "Numpuses are vumpuses.", "Sally is a vumpus.", "Every vumpus is not small.", "Sally is not small." ] }, { "id": "ProntoQA_272", "context": "Jompuses are feisty. Each jompus is an impus. Impuses are kind. Every impus is a zumpus. Zumpuses are bitter. Rompuses are not cold. Zumpuses are tumpuses. Every tumpus is orange. Every tumpus is a wumpus. Every wumpus is transparent. Wumpuses are numpuses. Each numpus is dull. Numpuses are yumpuses. Every yumpus is cold. Yumpuses are vumpuses. Vumpuses are fruity. Each vumpus is a dumpus. Alex is a zumpus.", "question": "Is the following statement true or false? Alex is cold.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Alex is a zumpus.", "Zumpuses are tumpuses.", "Alex is a tumpus.", "Every tumpus is a wumpus.", "Alex is a wumpus.", "Wumpuses are numpuses.", "Alex is a numpus.", "Numpuses are yumpuses.", "Alex is a yumpus.", "Every yumpus is cold.", "Alex is cold." ] }, { "id": "ProntoQA_273", "context": "Dumpuses are hot. Each dumpus is a yumpus. Every yumpus is happy. Each yumpus is a vumpus. Every vumpus is not transparent. Every vumpus is a jompus. Jompuses are small. Jompuses are zumpuses. Every numpus is not luminous. Each zumpus is not spicy. Each zumpus is a wumpus. Wumpuses are not amenable. Wumpuses are tumpuses. Every tumpus is dull. Each tumpus is an impus. Every impus is luminous. Impuses are rompuses. Alex is a jompus.", "question": "Is the following statement true or false? Alex is luminous.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Alex is a jompus.", "Jompuses are zumpuses.", "Alex is a zumpus.", "Each zumpus is a wumpus.", "Alex is a wumpus.", "Wumpuses are tumpuses.", "Alex is a tumpus.", "Each tumpus is an impus.", "Alex is an impus.", "Every impus is luminous.", "Alex is luminous." ] }, { "id": "ProntoQA_274", "context": "Vumpuses are earthy. Vumpuses are yumpuses. Yumpuses are temperate. Every yumpus is a tumpus. Each tumpus is kind. Tumpuses are jompuses. Jompuses are dull. Every jompus is a zumpus. Zumpuses are not transparent. Rompuses are metallic. Zumpuses are dumpuses. Every dumpus is not metallic. Dumpuses are numpuses. Each numpus is feisty. Numpuses are wumpuses. Wumpuses are sour. Wumpuses are impuses. Sam is a yumpus.", "question": "Is the following statement true or false? Sam is not metallic.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sam is a yumpus.", "Every yumpus is a tumpus.", "Sam is a tumpus.", "Tumpuses are jompuses.", "Sam is a jompus.", "Every jompus is a zumpus.", "Sam is a zumpus.", "Zumpuses are dumpuses.", "Sam is a dumpus.", "Every dumpus is not metallic.", "Sam is not metallic." ] }, { "id": "ProntoQA_275", "context": "Zumpuses are not red. Each zumpus is a tumpus. Each tumpus is sour. Every dumpus is aggressive. Each tumpus is a wumpus. Each wumpus is bright. Each wumpus is an impus. Impuses are luminous. Every impus is a rompus. Rompuses are not aggressive. Each rompus is a numpus. Numpuses are small. Numpuses are jompuses. Each jompus is floral. Every jompus is a yumpus. Each yumpus is transparent. Yumpuses are vumpuses. Max is a zumpus.", "question": "Is the following statement true or false? Max is not aggressive.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Max is a zumpus.", "Each zumpus is a tumpus.", "Max is a tumpus.", "Each tumpus is a wumpus.", "Max is a wumpus.", "Each wumpus is an impus.", "Max is an impus.", "Every impus is a rompus.", "Max is a rompus.", "Rompuses are not aggressive.", "Max is not aggressive." ] }, { "id": "ProntoQA_276", "context": "Dumpuses are opaque. Dumpuses are vumpuses. Vumpuses are not bright. Vumpuses are tumpuses. Each tumpus is not hot. Tumpuses are zumpuses. Zumpuses are wooden. Every zumpus is a wumpus. Yumpuses are not nervous. Every wumpus is nervous. Each wumpus is a numpus. Numpuses are aggressive. Each numpus is an impus. Every impus is sour. Impuses are rompuses. Every rompus is floral. Every rompus is a jompus. Sally is a dumpus.", "question": "Is the following statement true or false? Sally is not nervous.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sally is a dumpus.", "Dumpuses are vumpuses.", "Sally is a vumpus.", "Vumpuses are tumpuses.", "Sally is a tumpus.", "Tumpuses are zumpuses.", "Sally is a zumpus.", "Every zumpus is a wumpus.", "Sally is a wumpus.", "Every wumpus is nervous.", "Sally is nervous." ] }, { "id": "ProntoQA_277", "context": "Rompuses are transparent. Each rompus is a numpus. Every numpus is bitter. Numpuses are tumpuses. Tumpuses are small. Tumpuses are zumpuses. Zumpuses are mean. Zumpuses are yumpuses. Yumpuses are liquid. Each yumpus is a dumpus. Every dumpus is fruity. Dumpuses are vumpuses. Impuses are temperate. Each vumpus is brown. Every vumpus is a jompus. Jompuses are not temperate. Jompuses are wumpuses. Rex is a zumpus.", "question": "Is the following statement true or false? Rex is not temperate.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Rex is a zumpus.", "Zumpuses are yumpuses.", "Rex is a yumpus.", "Each yumpus is a dumpus.", "Rex is a dumpus.", "Dumpuses are vumpuses.", "Rex is a vumpus.", "Every vumpus is a jompus.", "Rex is a jompus.", "Jompuses are not temperate.", "Rex is not temperate." ] }, { "id": "ProntoQA_278", "context": "Every zumpus is happy. Zumpuses are impuses. Impuses are temperate. Each impus is a rompus. Every rompus is luminous. Rompuses are yumpuses. Every yumpus is not small. Yumpuses are dumpuses. Each dumpus is blue. Each dumpus is a numpus. Each numpus is not earthy. Every numpus is a jompus. Jompuses are not kind. Each jompus is a wumpus. Tumpuses are not dull. Wumpuses are dull. Each wumpus is a vumpus. Sally is a yumpus.", "question": "Is the following statement true or false? Sally is not dull.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sally is a yumpus.", "Yumpuses are dumpuses.", "Sally is a dumpus.", "Each dumpus is a numpus.", "Sally is a numpus.", "Every numpus is a jompus.", "Sally is a jompus.", "Each jompus is a wumpus.", "Sally is a wumpus.", "Wumpuses are dull.", "Sally is dull." ] }, { "id": "ProntoQA_279", "context": "Every tumpus is transparent. Tumpuses are rompuses. Every rompus is fruity. Each vumpus is feisty. Each rompus is a jompus. Jompuses are hot. Jompuses are yumpuses. Every yumpus is dull. Yumpuses are dumpuses. Dumpuses are not feisty. Dumpuses are numpuses. Numpuses are brown. Numpuses are zumpuses. Each zumpus is small. Every zumpus is a wumpus. Every wumpus is not angry. Each wumpus is an impus. Wren is a tumpus.", "question": "Is the following statement true or false? Wren is not feisty.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Wren is a tumpus.", "Tumpuses are rompuses.", "Wren is a rompus.", "Each rompus is a jompus.", "Wren is a jompus.", "Jompuses are yumpuses.", "Wren is a yumpus.", "Yumpuses are dumpuses.", "Wren is a dumpus.", "Dumpuses are not feisty.", "Wren is not feisty." ] }, { "id": "ProntoQA_280", "context": "Every zumpus is not amenable. Each zumpus is a yumpus. Each yumpus is liquid. Every yumpus is an impus. Every impus is not brown. Every impus is a numpus. Numpuses are small. Numpuses are vumpuses. Vumpuses are not temperate. Vumpuses are jompuses. Jompuses are dull. Every tumpus is sweet. Jompuses are dumpuses. Dumpuses are happy. Each dumpus is a wumpus. Wumpuses are not sweet. Wumpuses are rompuses. Alex is a numpus.", "question": "Is the following statement true or false? Alex is sweet.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Alex is a numpus.", "Numpuses are vumpuses.", "Alex is a vumpus.", "Vumpuses are jompuses.", "Alex is a jompus.", "Jompuses are dumpuses.", "Alex is a dumpus.", "Each dumpus is a wumpus.", "Alex is a wumpus.", "Wumpuses are not sweet.", "Alex is not sweet." ] }, { "id": "ProntoQA_281", "context": "Zumpuses are not amenable. Each zumpus is a wumpus. Every wumpus is spicy. Each wumpus is a rompus. Every yumpus is not luminous. Each rompus is nervous. Each rompus is a tumpus. Every tumpus is not small. Every tumpus is a dumpus. Every dumpus is not hot. Dumpuses are jompuses. Every jompus is luminous. Every jompus is a vumpus. Every vumpus is floral. Each vumpus is a numpus. Stella is a wumpus.", "question": "Is the following statement true or false? Stella is luminous.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Stella is a wumpus.", "Each wumpus is a rompus.", "Stella is a rompus.", "Each rompus is a tumpus.", "Stella is a tumpus.", "Every tumpus is a dumpus.", "Stella is a dumpus.", "Dumpuses are jompuses.", "Stella is a jompus.", "Every jompus is luminous.", "Stella is luminous." ] }, { "id": "ProntoQA_282", "context": "Every dumpus is earthy. Each dumpus is a zumpus. Zumpuses are happy. Zumpuses are jompuses. Impuses are not luminous. Every jompus is brown. Each jompus is a tumpus. Every tumpus is dull. Tumpuses are rompuses. Each rompus is hot. Rompuses are numpuses. Numpuses are not transparent. Numpuses are yumpuses. Each yumpus is luminous. Yumpuses are vumpuses. Each vumpus is small. Every vumpus is a wumpus. Stella is a jompus.", "question": "Is the following statement true or false? Stella is luminous.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Stella is a jompus.", "Each jompus is a tumpus.", "Stella is a tumpus.", "Tumpuses are rompuses.", "Stella is a rompus.", "Rompuses are numpuses.", "Stella is a numpus.", "Numpuses are yumpuses.", "Stella is a yumpus.", "Each yumpus is luminous.", "Stella is luminous." ] }, { "id": "ProntoQA_283", "context": "Wumpuses are opaque. Vumpuses are not large. Every wumpus is a rompus. Rompuses are bright. Every rompus is a numpus. Numpuses are not luminous. Every numpus is a tumpus. Every tumpus is aggressive. Tumpuses are impuses. Impuses are large. Every impus is a jompus. Jompuses are not sour. Jompuses are yumpuses. Polly is a wumpus.", "question": "Is the following statement true or false? Polly is large.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Polly is a wumpus.", "Every wumpus is a rompus.", "Polly is a rompus.", "Every rompus is a numpus.", "Polly is a numpus.", "Every numpus is a tumpus.", "Polly is a tumpus.", "Tumpuses are impuses.", "Polly is an impus.", "Impuses are large.", "Polly is large." ] }, { "id": "ProntoQA_284", "context": "Numpuses are transparent. Numpuses are jompuses. Every jompus is floral. Every jompus is a rompus. Wumpuses are not happy. Each rompus is dull. Rompuses are impuses. Each impus is red. Each impus is a vumpus. Vumpuses are not small. Vumpuses are dumpuses. Each dumpus is happy. Dumpuses are yumpuses. Rex is a jompus.", "question": "Is the following statement true or false? Rex is happy.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Rex is a jompus.", "Every jompus is a rompus.", "Rex is a rompus.", "Rompuses are impuses.", "Rex is an impus.", "Each impus is a vumpus.", "Rex is a vumpus.", "Vumpuses are dumpuses.", "Rex is a dumpus.", "Each dumpus is happy.", "Rex is happy." ] }, { "id": "ProntoQA_285", "context": "Yumpuses are bright. Yumpuses are rompuses. Rompuses are not shy. Rompuses are dumpuses. Each dumpus is not orange. Every impus is not cold. Each dumpus is a tumpus. Tumpuses are large. Tumpuses are zumpuses. Every zumpus is kind. Every zumpus is a wumpus. Wumpuses are cold. Wumpuses are numpuses. Numpuses are wooden. Numpuses are vumpuses. Vumpuses are not sour. Vumpuses are jompuses. Stella is a rompus.", "question": "Is the following statement true or false? Stella is cold.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Stella is a rompus.", "Rompuses are dumpuses.", "Stella is a dumpus.", "Each dumpus is a tumpus.", "Stella is a tumpus.", "Tumpuses are zumpuses.", "Stella is a zumpus.", "Every zumpus is a wumpus.", "Stella is a wumpus.", "Wumpuses are cold.", "Stella is cold." ] }, { "id": "ProntoQA_286", "context": "Impuses are not sweet. Each impus is a numpus. Numpuses are large. Numpuses are wumpuses. Wumpuses are dull. Every wumpus is a dumpus. Dumpuses are temperate. Tumpuses are not floral. Each dumpus is a jompus. Every jompus is floral. Jompuses are yumpuses. Every yumpus is not nervous. Each yumpus is a rompus. Rompuses are liquid. Rompuses are zumpuses. Zumpuses are not opaque. Zumpuses are vumpuses. Max is an impus.", "question": "Is the following statement true or false? Max is floral.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Max is an impus.", "Each impus is a numpus.", "Max is a numpus.", "Numpuses are wumpuses.", "Max is a wumpus.", "Every wumpus is a dumpus.", "Max is a dumpus.", "Each dumpus is a jompus.", "Max is a jompus.", "Every jompus is floral.", "Max is floral." ] }, { "id": "ProntoQA_287", "context": "Every jompus is not wooden. Jompuses are dumpuses. Each dumpus is not temperate. Dumpuses are tumpuses. Each tumpus is not shy. Tumpuses are rompuses. Every rompus is earthy. Rompuses are impuses. Every impus is blue. Every impus is a zumpus. Every zumpus is sour. Every wumpus is not bright. Zumpuses are yumpuses. Yumpuses are bright. Each yumpus is a numpus. Each numpus is not transparent. Numpuses are vumpuses. Rex is a tumpus.", "question": "Is the following statement true or false? Rex is bright.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Rex is a tumpus.", "Tumpuses are rompuses.", "Rex is a rompus.", "Rompuses are impuses.", "Rex is an impus.", "Every impus is a zumpus.", "Rex is a zumpus.", "Zumpuses are yumpuses.", "Rex is a yumpus.", "Yumpuses are bright.", "Rex is bright." ] }, { "id": "ProntoQA_288", "context": "Numpuses are not small. Rompuses are opaque. Every numpus is a dumpus. Every dumpus is hot. Dumpuses are jompuses. Each jompus is not nervous. Jompuses are wumpuses. Every wumpus is luminous. Wumpuses are tumpuses. Tumpuses are floral. Tumpuses are vumpuses. Vumpuses are bright. Each vumpus is an impus. Impuses are brown. Impuses are zumpuses. Zumpuses are not opaque. Zumpuses are yumpuses. Fae is a wumpus.", "question": "Is the following statement true or false? Fae is opaque.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Fae is a wumpus.", "Wumpuses are tumpuses.", "Fae is a tumpus.", "Tumpuses are vumpuses.", "Fae is a vumpus.", "Each vumpus is an impus.", "Fae is an impus.", "Impuses are zumpuses.", "Fae is a zumpus.", "Zumpuses are not opaque.", "Fae is not opaque." ] }, { "id": "ProntoQA_289", "context": "Each yumpus is transparent. Yumpuses are zumpuses. Each zumpus is not dull. Every zumpus is a jompus. Every jompus is hot. Each jompus is a dumpus. Each dumpus is not large. Every impus is amenable. Dumpuses are numpuses. Numpuses are not amenable. Every numpus is a vumpus. Each vumpus is sour. Vumpuses are wumpuses. Every wumpus is not shy. Wumpuses are tumpuses. Tumpuses are not liquid. Each tumpus is a rompus. Polly is a yumpus.", "question": "Is the following statement true or false? Polly is amenable.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Polly is a yumpus.", "Yumpuses are zumpuses.", "Polly is a zumpus.", "Every zumpus is a jompus.", "Polly is a jompus.", "Each jompus is a dumpus.", "Polly is a dumpus.", "Dumpuses are numpuses.", "Polly is a numpus.", "Numpuses are not amenable.", "Polly is not amenable." ] }, { "id": "ProntoQA_290", "context": "Each wumpus is happy. Wumpuses are numpuses. Every numpus is not brown. Numpuses are tumpuses. Rompuses are not sweet. Each tumpus is amenable. Every tumpus is a jompus. Jompuses are earthy. Every jompus is a yumpus. Each yumpus is sweet. Each yumpus is a vumpus. Vumpuses are dull. Every vumpus is a zumpus. Every zumpus is hot. Every zumpus is a dumpus. Every dumpus is luminous. Dumpuses are impuses. Rex is a wumpus.", "question": "Is the following statement true or false? Rex is sweet.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Rex is a wumpus.", "Wumpuses are numpuses.", "Rex is a numpus.", "Numpuses are tumpuses.", "Rex is a tumpus.", "Every tumpus is a jompus.", "Rex is a jompus.", "Every jompus is a yumpus.", "Rex is a yumpus.", "Each yumpus is sweet.", "Rex is sweet." ] }, { "id": "ProntoQA_291", "context": "Dumpuses are dull. Each dumpus is an impus. Every impus is large. Every numpus is not luminous. Every impus is a tumpus. Tumpuses are feisty. Each tumpus is a rompus. Rompuses are not cold. Rompuses are jompuses. Each jompus is sweet. Jompuses are yumpuses. Every yumpus is not angry. Every yumpus is a vumpus. Vumpuses are luminous. Every vumpus is a zumpus. Every zumpus is red. Zumpuses are wumpuses. Stella is a tumpus.", "question": "Is the following statement true or false? Stella is not luminous.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Stella is a tumpus.", "Each tumpus is a rompus.", "Stella is a rompus.", "Rompuses are jompuses.", "Stella is a jompus.", "Jompuses are yumpuses.", "Stella is a yumpus.", "Every yumpus is a vumpus.", "Stella is a vumpus.", "Vumpuses are luminous.", "Stella is luminous." ] }, { "id": "ProntoQA_292", "context": "Zumpuses are not feisty. Every zumpus is a tumpus. Tumpuses are cold. Tumpuses are wumpuses. Each wumpus is not orange. Wumpuses are numpuses. Every numpus is not earthy. Every numpus is a vumpus. Dumpuses are not transparent. Every vumpus is transparent. Vumpuses are yumpuses. Fae is a zumpus.", "question": "Is the following statement true or false? Fae is transparent.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Fae is a zumpus.", "Every zumpus is a tumpus.", "Fae is a tumpus.", "Tumpuses are wumpuses.", "Fae is a wumpus.", "Wumpuses are numpuses.", "Fae is a numpus.", "Every numpus is a vumpus.", "Fae is a vumpus.", "Every vumpus is transparent.", "Fae is transparent." ] }, { "id": "ProntoQA_293", "context": "Each rompus is brown. Rompuses are dumpuses. Dumpuses are opaque. Each dumpus is a tumpus. Every tumpus is not mean. Each numpus is luminous. Every tumpus is a jompus. Every jompus is floral. Jompuses are impuses. Each impus is hot. Impuses are wumpuses. Every wumpus is dull. Wumpuses are yumpuses. Yumpuses are large. Yumpuses are vumpuses. Vumpuses are not luminous. Each vumpus is a zumpus. Sally is a jompus.", "question": "Is the following statement true or false? Sally is not luminous.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sally is a jompus.", "Jompuses are impuses.", "Sally is an impus.", "Impuses are wumpuses.", "Sally is a wumpus.", "Wumpuses are yumpuses.", "Sally is a yumpus.", "Yumpuses are vumpuses.", "Sally is a vumpus.", "Vumpuses are not luminous.", "Sally is not luminous." ] }, { "id": "ProntoQA_294", "context": "Each vumpus is not brown. Vumpuses are dumpuses. Dumpuses are not small. Dumpuses are impuses. Each impus is bright. Impuses are numpuses. Each numpus is amenable. Each numpus is a rompus. Every rompus is earthy. Each jompus is not luminous. Rompuses are yumpuses. Yumpuses are shy. Yumpuses are tumpuses. Tumpuses are cold. Each tumpus is a wumpus. Each wumpus is luminous. Wumpuses are zumpuses. Polly is a numpus.", "question": "Is the following statement true or false? Polly is luminous.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Polly is a numpus.", "Each numpus is a rompus.", "Polly is a rompus.", "Rompuses are yumpuses.", "Polly is a yumpus.", "Yumpuses are tumpuses.", "Polly is a tumpus.", "Each tumpus is a wumpus.", "Polly is a wumpus.", "Each wumpus is luminous.", "Polly is luminous." ] }, { "id": "ProntoQA_295", "context": "Yumpuses are not liquid. Every tumpus is not kind. Each tumpus is a zumpus. Each zumpus is feisty. Each zumpus is an impus. Each impus is large. Impuses are rompuses. Each rompus is not opaque. Every rompus is a jompus. Every jompus is liquid. Every jompus is a wumpus. Every wumpus is bright. Each wumpus is a numpus. Each numpus is not fruity. Numpuses are vumpuses. Sally is a tumpus.", "question": "Is the following statement true or false? Sally is liquid.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sally is a tumpus.", "Each tumpus is a zumpus.", "Sally is a zumpus.", "Each zumpus is an impus.", "Sally is an impus.", "Impuses are rompuses.", "Sally is a rompus.", "Every rompus is a jompus.", "Sally is a jompus.", "Every jompus is liquid.", "Sally is liquid." ] }, { "id": "ProntoQA_296", "context": "Every numpus is mean. Each numpus is a jompus. Jompuses are bright. Jompuses are vumpuses. Vumpuses are floral. Every vumpus is a yumpus. Yumpuses are not spicy. Each yumpus is a zumpus. Each zumpus is small. Zumpuses are rompuses. Rompuses are not happy. Rompuses are wumpuses. Each dumpus is not small. Each wumpus is red. Wumpuses are tumpuses. Tumpuses are not metallic. Tumpuses are impuses. Wren is a numpus.", "question": "Is the following statement true or false? Wren is small.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Wren is a numpus.", "Each numpus is a jompus.", "Wren is a jompus.", "Jompuses are vumpuses.", "Wren is a vumpus.", "Every vumpus is a yumpus.", "Wren is a yumpus.", "Each yumpus is a zumpus.", "Wren is a zumpus.", "Each zumpus is small.", "Wren is small." ] }, { "id": "ProntoQA_297", "context": "Wumpuses are transparent. Wumpuses are vumpuses. Vumpuses are mean. Vumpuses are dumpuses. Every dumpus is brown. Each dumpus is an impus. Impuses are not wooden. Rompuses are not sour. Each impus is a tumpus. Tumpuses are large. Every tumpus is a yumpus. Every yumpus is sour. Yumpuses are numpuses. Numpuses are nervous. Every numpus is a zumpus. Zumpuses are dull. Every zumpus is a jompus. Sam is a vumpus.", "question": "Is the following statement true or false? Sam is sour.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sam is a vumpus.", "Vumpuses are dumpuses.", "Sam is a dumpus.", "Each dumpus is an impus.", "Sam is an impus.", "Each impus is a tumpus.", "Sam is a tumpus.", "Every tumpus is a yumpus.", "Sam is a yumpus.", "Every yumpus is sour.", "Sam is sour." ] }, { "id": "ProntoQA_298", "context": "Yumpuses are cold. Every yumpus is a dumpus. Every dumpus is brown. Dumpuses are zumpuses. Each zumpus is opaque. Zumpuses are tumpuses. Tumpuses are sweet. Tumpuses are numpuses. Numpuses are not floral. Each rompus is happy. Each numpus is a vumpus. Every vumpus is aggressive. Each vumpus is a jompus. Jompuses are not happy. Jompuses are impuses. Impuses are not wooden. Impuses are wumpuses. Sally is a zumpus.", "question": "Is the following statement true or false? Sally is not happy.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sally is a zumpus.", "Zumpuses are tumpuses.", "Sally is a tumpus.", "Tumpuses are numpuses.", "Sally is a numpus.", "Each numpus is a vumpus.", "Sally is a vumpus.", "Each vumpus is a jompus.", "Sally is a jompus.", "Jompuses are not happy.", "Sally is not happy." ] }, { "id": "ProntoQA_299", "context": "Every zumpus is luminous. Each zumpus is a numpus. Every numpus is not small. Numpuses are impuses. Every impus is bright. Impuses are vumpuses. Every vumpus is angry. Vumpuses are jompuses. Jompuses are not transparent. Jompuses are dumpuses. Dumpuses are cold. Each dumpus is a wumpus. Wumpuses are orange. Each yumpus is not cold. Every wumpus is a tumpus. Tumpuses are spicy. Tumpuses are rompuses. Polly is a numpus.", "question": "Is the following statement true or false? Polly is cold.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Polly is a numpus.", "Numpuses are impuses.", "Polly is an impus.", "Impuses are vumpuses.", "Polly is a vumpus.", "Vumpuses are jompuses.", "Polly is a jompus.", "Jompuses are dumpuses.", "Polly is a dumpus.", "Dumpuses are cold.", "Polly is cold." ] }, { "id": "ProntoQA_300", "context": "Each tumpus is dull. Every tumpus is a vumpus. Vumpuses are not shy. Every vumpus is a numpus. Numpuses are not small. Each numpus is a wumpus. Each wumpus is blue. Every wumpus is a yumpus. Yumpuses are not mean. Every yumpus is a rompus. Rompuses are transparent. Rompuses are dumpuses. Every dumpus is fruity. Dumpuses are zumpuses. Zumpuses are not temperate. Impuses are temperate. Zumpuses are jompuses. Sam is a wumpus.", "question": "Is the following statement true or false? Sam is temperate.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sam is a wumpus.", "Every wumpus is a yumpus.", "Sam is a yumpus.", "Every yumpus is a rompus.", "Sam is a rompus.", "Rompuses are dumpuses.", "Sam is a dumpus.", "Dumpuses are zumpuses.", "Sam is a zumpus.", "Zumpuses are not temperate.", "Sam is not temperate." ] }, { "id": "ProntoQA_301", "context": "Each zumpus is bitter. Zumpuses are vumpuses. Every jompus is not small. Every vumpus is orange. Vumpuses are tumpuses. Tumpuses are amenable. Each tumpus is a numpus. Numpuses are shy. Numpuses are yumpuses. Yumpuses are small. Yumpuses are wumpuses. Max is a zumpus.", "question": "Is the following statement true or false? Max is small.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Max is a zumpus.", "Zumpuses are vumpuses.", "Max is a vumpus.", "Vumpuses are tumpuses.", "Max is a tumpus.", "Each tumpus is a numpus.", "Max is a numpus.", "Numpuses are yumpuses.", "Max is a yumpus.", "Yumpuses are small.", "Max is small." ] }, { "id": "ProntoQA_302", "context": "Zumpuses are orange. Every zumpus is a wumpus. Every wumpus is metallic. Wumpuses are rompuses. Rompuses are hot. Each rompus is a dumpus. Dumpuses are floral. Dumpuses are numpuses. Numpuses are bright. Every numpus is an impus. Every impus is feisty. Every impus is a vumpus. Each vumpus is transparent. Vumpuses are yumpuses. Jompuses are large. Every yumpus is not large. Every yumpus is a tumpus. Alex is a dumpus.", "question": "Is the following statement true or false? Alex is not large.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Alex is a dumpus.", "Dumpuses are numpuses.", "Alex is a numpus.", "Every numpus is an impus.", "Alex is an impus.", "Every impus is a vumpus.", "Alex is a vumpus.", "Vumpuses are yumpuses.", "Alex is a yumpus.", "Every yumpus is not large.", "Alex is not large." ] }, { "id": "ProntoQA_303", "context": "Wumpuses are wooden. Wumpuses are dumpuses. Dumpuses are brown. Dumpuses are numpuses. Numpuses are opaque. Numpuses are vumpuses. Each vumpus is sour. Vumpuses are yumpuses. Yumpuses are small. Every yumpus is a rompus. Each rompus is earthy. Rompuses are impuses. Each impus is not cold. Zumpuses are cold. Every impus is a jompus. Alex is a numpus.", "question": "Is the following statement true or false? Alex is cold.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Alex is a numpus.", "Numpuses are vumpuses.", "Alex is a vumpus.", "Vumpuses are yumpuses.", "Alex is a yumpus.", "Every yumpus is a rompus.", "Alex is a rompus.", "Rompuses are impuses.", "Alex is an impus.", "Each impus is not cold.", "Alex is not cold." ] }, { "id": "ProntoQA_304", "context": "Wumpuses are amenable. Every numpus is sweet. Each numpus is a jompus. Each jompus is not hot. Jompuses are vumpuses. Vumpuses are red. Each vumpus is a zumpus. Each zumpus is opaque. Each zumpus is an impus. Every impus is not metallic. Every impus is a yumpus. Every yumpus is large. Every yumpus is a tumpus. Tumpuses are not amenable. Tumpuses are dumpuses. Dumpuses are shy. Dumpuses are rompuses. Polly is a vumpus.", "question": "Is the following statement true or false? Polly is not amenable.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Polly is a vumpus.", "Each vumpus is a zumpus.", "Polly is a zumpus.", "Each zumpus is an impus.", "Polly is an impus.", "Every impus is a yumpus.", "Polly is a yumpus.", "Every yumpus is a tumpus.", "Polly is a tumpus.", "Tumpuses are not amenable.", "Polly is not amenable." ] }, { "id": "ProntoQA_305", "context": "Every jompus is not earthy. Each rompus is transparent. Rompuses are impuses. Every impus is feisty. Every impus is a tumpus. Every tumpus is amenable. Tumpuses are vumpuses. Vumpuses are metallic. Each vumpus is a numpus. Each numpus is earthy. Every numpus is a zumpus. Alex is a rompus.", "question": "Is the following statement true or false? Alex is earthy.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Alex is a rompus.", "Rompuses are impuses.", "Alex is an impus.", "Every impus is a tumpus.", "Alex is a tumpus.", "Tumpuses are vumpuses.", "Alex is a vumpus.", "Each vumpus is a numpus.", "Alex is a numpus.", "Each numpus is earthy.", "Alex is earthy." ] }, { "id": "ProntoQA_306", "context": "Impuses are hot. Impuses are tumpuses. Each dumpus is not aggressive. Every tumpus is blue. Tumpuses are vumpuses. Every vumpus is large. Vumpuses are wumpuses. Wumpuses are sour. Every wumpus is a yumpus. Each yumpus is opaque. Each yumpus is a numpus. Numpuses are floral. Numpuses are zumpuses. Zumpuses are not bright. Each zumpus is a rompus. Each rompus is aggressive. Every rompus is a jompus. Max is a wumpus.", "question": "Is the following statement true or false? Max is aggressive.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Max is a wumpus.", "Every wumpus is a yumpus.", "Max is a yumpus.", "Each yumpus is a numpus.", "Max is a numpus.", "Numpuses are zumpuses.", "Max is a zumpus.", "Each zumpus is a rompus.", "Max is a rompus.", "Each rompus is aggressive.", "Max is aggressive." ] }, { "id": "ProntoQA_307", "context": "Vumpuses are not opaque. Vumpuses are jompuses. Each jompus is large. Jompuses are yumpuses. Every yumpus is not fruity. Each yumpus is a dumpus. Dumpuses are dull. Dumpuses are zumpuses. Each zumpus is not angry. Each zumpus is an impus. Impuses are metallic. Each impus is a tumpus. Every wumpus is not hot. Each tumpus is hot. Tumpuses are rompuses. Rompuses are not nervous. Rompuses are numpuses. Stella is a yumpus.", "question": "Is the following statement true or false? Stella is not hot.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Stella is a yumpus.", "Each yumpus is a dumpus.", "Stella is a dumpus.", "Dumpuses are zumpuses.", "Stella is a zumpus.", "Each zumpus is an impus.", "Stella is an impus.", "Each impus is a tumpus.", "Stella is a tumpus.", "Each tumpus is hot.", "Stella is hot." ] }, { "id": "ProntoQA_308", "context": "Wumpuses are not liquid. Every wumpus is a zumpus. Every zumpus is not floral. Each zumpus is an impus. Impuses are bright. Each impus is a numpus. Every numpus is mean. Numpuses are jompuses. Jompuses are not orange. Each jompus is a yumpus. Each yumpus is cold. Every yumpus is a vumpus. Vumpuses are small. Vumpuses are dumpuses. Each dumpus is not transparent. Each tumpus is orange. Dumpuses are rompuses. Alex is a wumpus.", "question": "Is the following statement true or false? Alex is not orange.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Alex is a wumpus.", "Every wumpus is a zumpus.", "Alex is a zumpus.", "Each zumpus is an impus.", "Alex is an impus.", "Each impus is a numpus.", "Alex is a numpus.", "Numpuses are jompuses.", "Alex is a jompus.", "Jompuses are not orange.", "Alex is not orange." ] }, { "id": "ProntoQA_309", "context": "Zumpuses are cold. Each zumpus is a wumpus. Each wumpus is dull. Each wumpus is a vumpus. Every vumpus is kind. Each vumpus is a dumpus. Every dumpus is earthy. Dumpuses are yumpuses. Every yumpus is nervous. Each yumpus is a numpus. Each numpus is opaque. Every numpus is a tumpus. Jompuses are not large. Tumpuses are sweet. Tumpuses are rompuses. Each rompus is large. Rompuses are impuses. Wren is a dumpus.", "question": "Is the following statement true or false? Wren is not large.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Wren is a dumpus.", "Dumpuses are yumpuses.", "Wren is a yumpus.", "Each yumpus is a numpus.", "Wren is a numpus.", "Every numpus is a tumpus.", "Wren is a tumpus.", "Tumpuses are rompuses.", "Wren is a rompus.", "Each rompus is large.", "Wren is large." ] }, { "id": "ProntoQA_310", "context": "Each zumpus is not angry. Zumpuses are rompuses. Each rompus is not hot. Rompuses are dumpuses. Dumpuses are happy. Dumpuses are yumpuses. Every yumpus is opaque. Each wumpus is not liquid. Yumpuses are tumpuses. Tumpuses are liquid. Tumpuses are jompuses. Sam is a zumpus.", "question": "Is the following statement true or false? Sam is liquid.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sam is a zumpus.", "Zumpuses are rompuses.", "Sam is a rompus.", "Rompuses are dumpuses.", "Sam is a dumpus.", "Dumpuses are yumpuses.", "Sam is a yumpus.", "Yumpuses are tumpuses.", "Sam is a tumpus.", "Tumpuses are liquid.", "Sam is liquid." ] }, { "id": "ProntoQA_311", "context": "Rompuses are not cold. Rompuses are tumpuses. Tumpuses are red. Every tumpus is a zumpus. Zumpuses are not angry. Every jompus is small. Zumpuses are vumpuses. Each vumpus is not opaque. Vumpuses are yumpuses. Every yumpus is dull. Every yumpus is a numpus. Each numpus is not earthy. Every numpus is a wumpus. Wumpuses are nervous. Wumpuses are dumpuses. Each dumpus is not small. Every dumpus is an impus. Polly is a vumpus.", "question": "Is the following statement true or false? Polly is not small.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Polly is a vumpus.", "Vumpuses are yumpuses.", "Polly is a yumpus.", "Every yumpus is a numpus.", "Polly is a numpus.", "Every numpus is a wumpus.", "Polly is a wumpus.", "Wumpuses are dumpuses.", "Polly is a dumpus.", "Each dumpus is not small.", "Polly is not small." ] }, { "id": "ProntoQA_312", "context": "Every wumpus is not small. Wumpuses are dumpuses. Every dumpus is not dull. Jompuses are aggressive. Dumpuses are impuses. Every impus is not nervous. Each impus is a zumpus. Every zumpus is luminous. Zumpuses are rompuses. Rompuses are not orange. Rompuses are tumpuses. Tumpuses are not cold. Each tumpus is a yumpus. Yumpuses are not aggressive. Every yumpus is a numpus. Numpuses are spicy. Every numpus is a vumpus. Max is an impus.", "question": "Is the following statement true or false? Max is not aggressive.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Max is an impus.", "Each impus is a zumpus.", "Max is a zumpus.", "Zumpuses are rompuses.", "Max is a rompus.", "Rompuses are tumpuses.", "Max is a tumpus.", "Each tumpus is a yumpus.", "Max is a yumpus.", "Yumpuses are not aggressive.", "Max is not aggressive." ] }, { "id": "ProntoQA_313", "context": "Tumpuses are not transparent. Each tumpus is a yumpus. Yumpuses are aggressive. Each yumpus is a jompus. Each jompus is liquid. Jompuses are numpuses. Every numpus is not sweet. Each numpus is a dumpus. Dumpuses are temperate. Each dumpus is a wumpus. Wumpuses are not large. Each wumpus is a zumpus. Impuses are not temperate. Every zumpus is not red. Zumpuses are rompuses. Rompuses are not shy. Rompuses are vumpuses. Stella is a tumpus.", "question": "Is the following statement true or false? Stella is temperate.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Stella is a tumpus.", "Each tumpus is a yumpus.", "Stella is a yumpus.", "Each yumpus is a jompus.", "Stella is a jompus.", "Jompuses are numpuses.", "Stella is a numpus.", "Each numpus is a dumpus.", "Stella is a dumpus.", "Dumpuses are temperate.", "Stella is temperate." ] }, { "id": "ProntoQA_314", "context": "Impuses are shy. Impuses are jompuses. Each jompus is red. Jompuses are rompuses. Each rompus is not hot. Rompuses are yumpuses. Each yumpus is bitter. Yumpuses are dumpuses. Dumpuses are large. Every dumpus is a numpus. Numpuses are not opaque. Each numpus is a vumpus. Vumpuses are not fruity. Vumpuses are tumpuses. Tumpuses are aggressive. Tumpuses are wumpuses. Zumpuses are opaque. Sally is a jompus.", "question": "Is the following statement true or false? Sally is not opaque.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sally is a jompus.", "Jompuses are rompuses.", "Sally is a rompus.", "Rompuses are yumpuses.", "Sally is a yumpus.", "Yumpuses are dumpuses.", "Sally is a dumpus.", "Every dumpus is a numpus.", "Sally is a numpus.", "Numpuses are not opaque.", "Sally is not opaque." ] }, { "id": "ProntoQA_315", "context": "Wumpuses are feisty. Wumpuses are yumpuses. Each yumpus is transparent. Yumpuses are tumpuses. Tumpuses are orange. Each tumpus is an impus. Impuses are cold. Every numpus is metallic. Impuses are rompuses. Every rompus is earthy. Rompuses are dumpuses. Dumpuses are not bright. Dumpuses are jompuses. Jompuses are small. Jompuses are zumpuses. Zumpuses are not metallic. Zumpuses are vumpuses. Fae is an impus.", "question": "Is the following statement true or false? Fae is not metallic.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Fae is an impus.", "Impuses are rompuses.", "Fae is a rompus.", "Rompuses are dumpuses.", "Fae is a dumpus.", "Dumpuses are jompuses.", "Fae is a jompus.", "Jompuses are zumpuses.", "Fae is a zumpus.", "Zumpuses are not metallic.", "Fae is not metallic." ] }, { "id": "ProntoQA_316", "context": "Tumpuses are not sweet. Numpuses are not dull. Tumpuses are jompuses. Each jompus is not aggressive. Every jompus is a rompus. Rompuses are opaque. Every rompus is a yumpus. Each yumpus is not happy. Yumpuses are dumpuses. Each dumpus is red. Each dumpus is an impus. Impuses are dull. Every impus is a zumpus. Zumpuses are cold. Zumpuses are vumpuses. Every vumpus is fruity. Each vumpus is a wumpus. Alex is a jompus.", "question": "Is the following statement true or false? Alex is not dull.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Alex is a jompus.", "Every jompus is a rompus.", "Alex is a rompus.", "Every rompus is a yumpus.", "Alex is a yumpus.", "Yumpuses are dumpuses.", "Alex is a dumpus.", "Each dumpus is an impus.", "Alex is an impus.", "Impuses are dull.", "Alex is dull." ] }, { "id": "ProntoQA_317", "context": "Each jompus is fruity. Jompuses are wumpuses. Each tumpus is red. Every wumpus is small. Wumpuses are zumpuses. Zumpuses are shy. Zumpuses are rompuses. Rompuses are sour. Every rompus is a numpus. Every numpus is opaque. Numpuses are impuses. Every impus is aggressive. Impuses are vumpuses. Each vumpus is not red. Each vumpus is a yumpus. Every yumpus is not liquid. Yumpuses are dumpuses. Stella is a zumpus.", "question": "Is the following statement true or false? Stella is not red.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Stella is a zumpus.", "Zumpuses are rompuses.", "Stella is a rompus.", "Every rompus is a numpus.", "Stella is a numpus.", "Numpuses are impuses.", "Stella is an impus.", "Impuses are vumpuses.", "Stella is a vumpus.", "Each vumpus is not red.", "Stella is not red." ] }, { "id": "ProntoQA_318", "context": "Each impus is not temperate. Impuses are rompuses. Rompuses are kind. Rompuses are zumpuses. Each zumpus is metallic. Zumpuses are yumpuses. Each yumpus is not small. Each yumpus is a tumpus. Every tumpus is earthy. Every tumpus is a vumpus. Each vumpus is spicy. Every jompus is not spicy. Every vumpus is a numpus. Numpuses are shy. Numpuses are wumpuses. Every wumpus is not orange. Wumpuses are dumpuses. Max is a rompus.", "question": "Is the following statement true or false? Max is spicy.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Max is a rompus.", "Rompuses are zumpuses.", "Max is a zumpus.", "Zumpuses are yumpuses.", "Max is a yumpus.", "Each yumpus is a tumpus.", "Max is a tumpus.", "Every tumpus is a vumpus.", "Max is a vumpus.", "Each vumpus is spicy.", "Max is spicy." ] }, { "id": "ProntoQA_319", "context": "Each numpus is not orange. Numpuses are dumpuses. Wumpuses are temperate. Dumpuses are small. Dumpuses are vumpuses. Vumpuses are not kind. Vumpuses are jompuses. Jompuses are earthy. Jompuses are impuses. Every impus is not bright. Impuses are zumpuses. Zumpuses are not nervous. Zumpuses are rompuses. Rompuses are transparent. Every rompus is a tumpus. Each tumpus is not temperate. Tumpuses are yumpuses. Wren is a jompus.", "question": "Is the following statement true or false? Wren is not temperate.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Wren is a jompus.", "Jompuses are impuses.", "Wren is an impus.", "Impuses are zumpuses.", "Wren is a zumpus.", "Zumpuses are rompuses.", "Wren is a rompus.", "Every rompus is a tumpus.", "Wren is a tumpus.", "Each tumpus is not temperate.", "Wren is not temperate." ] }, { "id": "ProntoQA_320", "context": "Jompuses are floral. Jompuses are zumpuses. Each zumpus is bitter. Each zumpus is a numpus. Each numpus is bright. Each numpus is a yumpus. Each yumpus is metallic. Each yumpus is an impus. Impuses are shy. Each impus is a rompus. Rompuses are not cold. Each rompus is a wumpus. Wumpuses are brown. Each wumpus is a dumpus. Dumpuses are kind. Tumpuses are not shy. Each dumpus is a vumpus. Sam is a jompus.", "question": "Is the following statement true or false? Sam is not shy.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sam is a jompus.", "Jompuses are zumpuses.", "Sam is a zumpus.", "Each zumpus is a numpus.", "Sam is a numpus.", "Each numpus is a yumpus.", "Sam is a yumpus.", "Each yumpus is an impus.", "Sam is an impus.", "Impuses are shy.", "Sam is shy." ] }, { "id": "ProntoQA_321", "context": "Rompuses are large. Rompuses are wumpuses. Tumpuses are temperate. Wumpuses are shy. Every wumpus is a numpus. Each numpus is earthy. Numpuses are impuses. Impuses are dull. Impuses are vumpuses. Each vumpus is metallic. Vumpuses are dumpuses. Each dumpus is sweet. Every dumpus is a yumpus. Each yumpus is amenable. Each yumpus is a jompus. Each jompus is not temperate. Each jompus is a zumpus. Sally is an impus.", "question": "Is the following statement true or false? Sally is not temperate.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sally is an impus.", "Impuses are vumpuses.", "Sally is a vumpus.", "Vumpuses are dumpuses.", "Sally is a dumpus.", "Every dumpus is a yumpus.", "Sally is a yumpus.", "Each yumpus is a jompus.", "Sally is a jompus.", "Each jompus is not temperate.", "Sally is not temperate." ] }, { "id": "ProntoQA_322", "context": "Every tumpus is not floral. Tumpuses are rompuses. Rompuses are spicy. Rompuses are numpuses. Numpuses are not hot. Every numpus is a jompus. Every jompus is not blue. Every jompus is an impus. Each impus is dull. Impuses are wumpuses. Each wumpus is opaque. Every vumpus is not opaque. Each wumpus is a zumpus. Zumpuses are not amenable. Every zumpus is a dumpus. Each dumpus is shy. Dumpuses are yumpuses. Alex is a rompus.", "question": "Is the following statement true or false? Alex is not opaque.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Alex is a rompus.", "Rompuses are numpuses.", "Alex is a numpus.", "Every numpus is a jompus.", "Alex is a jompus.", "Every jompus is an impus.", "Alex is an impus.", "Impuses are wumpuses.", "Alex is a wumpus.", "Each wumpus is opaque.", "Alex is opaque." ] }, { "id": "ProntoQA_323", "context": "Dumpuses are shy. Dumpuses are impuses. Impuses are fruity. Each numpus is not amenable. Every impus is a tumpus. Tumpuses are bright. Tumpuses are wumpuses. Every wumpus is brown. Wumpuses are yumpuses. Yumpuses are amenable. Yumpuses are vumpuses. Wren is a dumpus.", "question": "Is the following statement true or false? Wren is not amenable.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Wren is a dumpus.", "Dumpuses are impuses.", "Wren is an impus.", "Every impus is a tumpus.", "Wren is a tumpus.", "Tumpuses are wumpuses.", "Wren is a wumpus.", "Wumpuses are yumpuses.", "Wren is a yumpus.", "Yumpuses are amenable.", "Wren is amenable." ] }, { "id": "ProntoQA_324", "context": "Each zumpus is liquid. Wumpuses are red. Every zumpus is a yumpus. Every yumpus is kind. Yumpuses are rompuses. Rompuses are temperate. Rompuses are dumpuses. Dumpuses are sour. Each dumpus is a tumpus. Each tumpus is bright. Each tumpus is a jompus. Jompuses are not red. Jompuses are impuses. Each impus is large. Impuses are vumpuses. Each vumpus is floral. Vumpuses are numpuses. Alex is a yumpus.", "question": "Is the following statement true or false? Alex is not red.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Alex is a yumpus.", "Yumpuses are rompuses.", "Alex is a rompus.", "Rompuses are dumpuses.", "Alex is a dumpus.", "Each dumpus is a tumpus.", "Alex is a tumpus.", "Each tumpus is a jompus.", "Alex is a jompus.", "Jompuses are not red.", "Alex is not red." ] }, { "id": "ProntoQA_325", "context": "Wumpuses are not mean. Wumpuses are rompuses. Each numpus is wooden. Rompuses are sour. Rompuses are yumpuses. Every yumpus is not opaque. Yumpuses are dumpuses. Dumpuses are temperate. Dumpuses are zumpuses. Every zumpus is not brown. Every zumpus is a tumpus. Tumpuses are not earthy. Tumpuses are impuses. Impuses are not wooden. Impuses are jompuses. Jompuses are not happy. Jompuses are vumpuses. Wren is a yumpus.", "question": "Is the following statement true or false? Wren is not wooden.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Wren is a yumpus.", "Yumpuses are dumpuses.", "Wren is a dumpus.", "Dumpuses are zumpuses.", "Wren is a zumpus.", "Every zumpus is a tumpus.", "Wren is a tumpus.", "Tumpuses are impuses.", "Wren is an impus.", "Impuses are not wooden.", "Wren is not wooden." ] }, { "id": "ProntoQA_326", "context": "Every vumpus is not fruity. Vumpuses are yumpuses. Yumpuses are not orange. Yumpuses are jompuses. Wumpuses are not transparent. Jompuses are wooden. Jompuses are impuses. Impuses are happy. Every impus is a zumpus. Zumpuses are transparent. Zumpuses are dumpuses. Each dumpus is bright. Every dumpus is a rompus. Every rompus is sour. Rompuses are numpuses. Numpuses are hot. Numpuses are tumpuses. Alex is a vumpus.", "question": "Is the following statement true or false? Alex is transparent.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Alex is a vumpus.", "Vumpuses are yumpuses.", "Alex is a yumpus.", "Yumpuses are jompuses.", "Alex is a jompus.", "Jompuses are impuses.", "Alex is an impus.", "Every impus is a zumpus.", "Alex is a zumpus.", "Zumpuses are transparent.", "Alex is transparent." ] }, { "id": "ProntoQA_327", "context": "Each yumpus is not blue. Yumpuses are rompuses. Rompuses are not large. Every rompus is a wumpus. Each wumpus is not mean. Impuses are happy. Each wumpus is a vumpus. Each vumpus is opaque. Vumpuses are jompuses. Jompuses are earthy. Jompuses are dumpuses. Each dumpus is cold. Each dumpus is a zumpus. Zumpuses are not happy. Each zumpus is a tumpus. Each tumpus is bright. Each tumpus is a numpus. Rex is a wumpus.", "question": "Is the following statement true or false? Rex is not happy.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Rex is a wumpus.", "Each wumpus is a vumpus.", "Rex is a vumpus.", "Vumpuses are jompuses.", "Rex is a jompus.", "Jompuses are dumpuses.", "Rex is a dumpus.", "Each dumpus is a zumpus.", "Rex is a zumpus.", "Zumpuses are not happy.", "Rex is not happy." ] }, { "id": "ProntoQA_328", "context": "Wumpuses are large. Wumpuses are numpuses. Every numpus is metallic. Numpuses are yumpuses. Every yumpus is bright. Every yumpus is a jompus. Jompuses are not bitter. Jompuses are zumpuses. Every zumpus is transparent. Zumpuses are rompuses. Each rompus is earthy. Rompuses are impuses. Each impus is kind. Every impus is a dumpus. Dumpuses are not hot. Dumpuses are vumpuses. Each tumpus is not transparent. Wren is a wumpus.", "question": "Is the following statement true or false? Wren is transparent.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Wren is a wumpus.", "Wumpuses are numpuses.", "Wren is a numpus.", "Numpuses are yumpuses.", "Wren is a yumpus.", "Every yumpus is a jompus.", "Wren is a jompus.", "Jompuses are zumpuses.", "Wren is a zumpus.", "Every zumpus is transparent.", "Wren is transparent." ] }, { "id": "ProntoQA_329", "context": "Each tumpus is opaque. Each tumpus is a dumpus. Each dumpus is earthy. Dumpuses are zumpuses. Zumpuses are aggressive. Zumpuses are impuses. Each impus is luminous. Impuses are numpuses. Each numpus is not brown. Every numpus is a jompus. Every jompus is bitter. Jompuses are wumpuses. Every rompus is not bitter. Wumpuses are large. Wumpuses are vumpuses. Every vumpus is not happy. Every vumpus is a yumpus. Polly is a dumpus.", "question": "Is the following statement true or false? Polly is not bitter.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Polly is a dumpus.", "Dumpuses are zumpuses.", "Polly is a zumpus.", "Zumpuses are impuses.", "Polly is an impus.", "Impuses are numpuses.", "Polly is a numpus.", "Every numpus is a jompus.", "Polly is a jompus.", "Every jompus is bitter.", "Polly is bitter." ] }, { "id": "ProntoQA_330", "context": "Numpuses are bright. Each numpus is a dumpus. Dumpuses are liquid. Every dumpus is a zumpus. Zumpuses are not small. Every zumpus is a jompus. Each jompus is nervous. Each yumpus is earthy. Jompuses are vumpuses. Vumpuses are not earthy. Each vumpus is an impus. Impuses are not sweet. Impuses are rompuses. Every rompus is amenable. Rompuses are tumpuses. Tumpuses are opaque. Tumpuses are wumpuses. Rex is a numpus.", "question": "Is the following statement true or false? Rex is not earthy.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Rex is a numpus.", "Each numpus is a dumpus.", "Rex is a dumpus.", "Every dumpus is a zumpus.", "Rex is a zumpus.", "Every zumpus is a jompus.", "Rex is a jompus.", "Jompuses are vumpuses.", "Rex is a vumpus.", "Vumpuses are not earthy.", "Rex is not earthy." ] }, { "id": "ProntoQA_331", "context": "Each vumpus is not bright. Each vumpus is a numpus. Wumpuses are small. Each numpus is not opaque. Numpuses are rompuses. Rompuses are not sweet. Rompuses are yumpuses. Each yumpus is liquid. Each yumpus is a jompus. Each jompus is shy. Each jompus is a zumpus. Zumpuses are not brown. Zumpuses are impuses. Impuses are not fruity. Impuses are dumpuses. Dumpuses are not small. Every dumpus is a tumpus. Sam is a yumpus.", "question": "Is the following statement true or false? Sam is small.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sam is a yumpus.", "Each yumpus is a jompus.", "Sam is a jompus.", "Each jompus is a zumpus.", "Sam is a zumpus.", "Zumpuses are impuses.", "Sam is an impus.", "Impuses are dumpuses.", "Sam is a dumpus.", "Dumpuses are not small.", "Sam is not small." ] }, { "id": "ProntoQA_332", "context": "Each tumpus is luminous. Each tumpus is a rompus. Rompuses are not small. Rompuses are dumpuses. Each dumpus is fruity. Every dumpus is a numpus. Numpuses are red. Numpuses are vumpuses. Each vumpus is dull. Each vumpus is an impus. Impuses are bitter. Each impus is a wumpus. Each wumpus is not kind. Each jompus is kind. Wumpuses are yumpuses. Yumpuses are happy. Yumpuses are zumpuses. Max is a dumpus.", "question": "Is the following statement true or false? Max is not kind.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Max is a dumpus.", "Every dumpus is a numpus.", "Max is a numpus.", "Numpuses are vumpuses.", "Max is a vumpus.", "Each vumpus is an impus.", "Max is an impus.", "Each impus is a wumpus.", "Max is a wumpus.", "Each wumpus is not kind.", "Max is not kind." ] }, { "id": "ProntoQA_333", "context": "Dumpuses are transparent. Dumpuses are impuses. Impuses are not brown. Every impus is a rompus. Rompuses are floral. Rompuses are yumpuses. Yumpuses are happy. Yumpuses are jompuses. Every jompus is not temperate. Jompuses are numpuses. Every numpus is dull. Each numpus is a wumpus. Every wumpus is large. Wumpuses are tumpuses. Each tumpus is kind. Vumpuses are temperate. Each tumpus is a zumpus. Stella is a dumpus.", "question": "Is the following statement true or false? Stella is not temperate.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Stella is a dumpus.", "Dumpuses are impuses.", "Stella is an impus.", "Every impus is a rompus.", "Stella is a rompus.", "Rompuses are yumpuses.", "Stella is a yumpus.", "Yumpuses are jompuses.", "Stella is a jompus.", "Every jompus is not temperate.", "Stella is not temperate." ] }, { "id": "ProntoQA_334", "context": "Dumpuses are spicy. Dumpuses are zumpuses. Each zumpus is feisty. Every zumpus is a tumpus. Tumpuses are bright. Each tumpus is a wumpus. Every wumpus is not orange. Wumpuses are impuses. Numpuses are not transparent. Every impus is aggressive. Each impus is a jompus. Jompuses are fruity. Jompuses are rompuses. Rompuses are small. Rompuses are yumpuses. Yumpuses are transparent. Every yumpus is a vumpus. Sally is a wumpus.", "question": "Is the following statement true or false? Sally is transparent.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sally is a wumpus.", "Wumpuses are impuses.", "Sally is an impus.", "Each impus is a jompus.", "Sally is a jompus.", "Jompuses are rompuses.", "Sally is a rompus.", "Rompuses are yumpuses.", "Sally is a yumpus.", "Yumpuses are transparent.", "Sally is transparent." ] }, { "id": "ProntoQA_335", "context": "Dumpuses are not hot. Every dumpus is an impus. Every impus is fruity. Every impus is a jompus. Jompuses are brown. Each jompus is a wumpus. Each wumpus is nervous. Each wumpus is a numpus. Each numpus is opaque. Numpuses are yumpuses. Each rompus is large. Yumpuses are bitter. Yumpuses are vumpuses. Each vumpus is wooden. Vumpuses are tumpuses. Each tumpus is not large. Every tumpus is a zumpus. Polly is a wumpus.", "question": "Is the following statement true or false? Polly is not large.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Polly is a wumpus.", "Each wumpus is a numpus.", "Polly is a numpus.", "Numpuses are yumpuses.", "Polly is a yumpus.", "Yumpuses are vumpuses.", "Polly is a vumpus.", "Vumpuses are tumpuses.", "Polly is a tumpus.", "Each tumpus is not large.", "Polly is not large." ] }, { "id": "ProntoQA_336", "context": "Every rompus is temperate. Rompuses are zumpuses. Zumpuses are shy. Each zumpus is a wumpus. Wumpuses are bright. Numpuses are opaque. Wumpuses are impuses. Each impus is not large. Impuses are jompuses. Jompuses are kind. Each jompus is a tumpus. Tumpuses are not opaque. Every tumpus is a dumpus. Max is a zumpus.", "question": "Is the following statement true or false? Max is opaque.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Max is a zumpus.", "Each zumpus is a wumpus.", "Max is a wumpus.", "Wumpuses are impuses.", "Max is an impus.", "Impuses are jompuses.", "Max is a jompus.", "Each jompus is a tumpus.", "Max is a tumpus.", "Tumpuses are not opaque.", "Max is not opaque." ] }, { "id": "ProntoQA_337", "context": "Dumpuses are small. Every dumpus is a vumpus. Each wumpus is spicy. Every vumpus is mean. Each vumpus is a yumpus. Every yumpus is fruity. Yumpuses are numpuses. Numpuses are transparent. Numpuses are jompuses. Each jompus is not spicy. Jompuses are impuses. Polly is a dumpus.", "question": "Is the following statement true or false? Polly is spicy.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Polly is a dumpus.", "Every dumpus is a vumpus.", "Polly is a vumpus.", "Each vumpus is a yumpus.", "Polly is a yumpus.", "Yumpuses are numpuses.", "Polly is a numpus.", "Numpuses are jompuses.", "Polly is a jompus.", "Each jompus is not spicy.", "Polly is not spicy." ] }, { "id": "ProntoQA_338", "context": "Each jompus is temperate. Jompuses are zumpuses. Zumpuses are dull. Zumpuses are vumpuses. Every vumpus is not kind. Vumpuses are rompuses. Rompuses are brown. Rompuses are tumpuses. Tumpuses are fruity. Tumpuses are wumpuses. Wumpuses are not large. Each wumpus is a yumpus. Yumpuses are wooden. Yumpuses are dumpuses. Dumpuses are spicy. Each dumpus is an impus. Each numpus is not fruity. Stella is a jompus.", "question": "Is the following statement true or false? Stella is not fruity.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Stella is a jompus.", "Jompuses are zumpuses.", "Stella is a zumpus.", "Zumpuses are vumpuses.", "Stella is a vumpus.", "Vumpuses are rompuses.", "Stella is a rompus.", "Rompuses are tumpuses.", "Stella is a tumpus.", "Tumpuses are fruity.", "Stella is fruity." ] }, { "id": "ProntoQA_339", "context": "Yumpuses are sweet. Every yumpus is a jompus. Jompuses are brown. Jompuses are wumpuses. Wumpuses are bright. Wumpuses are numpuses. Each numpus is kind. Numpuses are impuses. Each impus is nervous. Impuses are zumpuses. Each zumpus is cold. Zumpuses are vumpuses. Vumpuses are liquid. Every rompus is not transparent. Vumpuses are tumpuses. Tumpuses are transparent. Tumpuses are dumpuses. Max is a numpus.", "question": "Is the following statement true or false? Max is transparent.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Max is a numpus.", "Numpuses are impuses.", "Max is an impus.", "Impuses are zumpuses.", "Max is a zumpus.", "Zumpuses are vumpuses.", "Max is a vumpus.", "Vumpuses are tumpuses.", "Max is a tumpus.", "Tumpuses are transparent.", "Max is transparent." ] }, { "id": "ProntoQA_340", "context": "Rompuses are brown. Rompuses are zumpuses. Zumpuses are temperate. Zumpuses are dumpuses. Dumpuses are angry. Dumpuses are yumpuses. Every yumpus is small. Yumpuses are numpuses. Numpuses are opaque. Numpuses are vumpuses. Vumpuses are bitter. Vumpuses are jompuses. Jompuses are feisty. Each jompus is an impus. Impuses are luminous. Every tumpus is not feisty. Each impus is a wumpus. Wren is a dumpus.", "question": "Is the following statement true or false? Wren is feisty.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Wren is a dumpus.", "Dumpuses are yumpuses.", "Wren is a yumpus.", "Yumpuses are numpuses.", "Wren is a numpus.", "Numpuses are vumpuses.", "Wren is a vumpus.", "Vumpuses are jompuses.", "Wren is a jompus.", "Jompuses are feisty.", "Wren is feisty." ] }, { "id": "ProntoQA_341", "context": "Vumpuses are blue. Vumpuses are numpuses. Each numpus is small. Every numpus is a tumpus. Tumpuses are dull. Tumpuses are impuses. Every rompus is not temperate. Every impus is sour. Impuses are jompuses. Jompuses are temperate. Jompuses are wumpuses. Wumpuses are angry. Wumpuses are yumpuses. Every yumpus is shy. Every yumpus is a zumpus. Zumpuses are liquid. Zumpuses are dumpuses. Polly is a vumpus.", "question": "Is the following statement true or false? Polly is not temperate.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Polly is a vumpus.", "Vumpuses are numpuses.", "Polly is a numpus.", "Every numpus is a tumpus.", "Polly is a tumpus.", "Tumpuses are impuses.", "Polly is an impus.", "Impuses are jompuses.", "Polly is a jompus.", "Jompuses are temperate.", "Polly is temperate." ] }, { "id": "ProntoQA_342", "context": "Impuses are shy. Each impus is a rompus. Every rompus is fruity. Every rompus is a yumpus. Every yumpus is brown. Yumpuses are numpuses. Numpuses are liquid. Each numpus is a tumpus. Each tumpus is angry. Every tumpus is a dumpus. Dumpuses are not temperate. Each dumpus is a vumpus. Vumpuses are bright. Vumpuses are zumpuses. Zumpuses are not large. Every jompus is temperate. Each zumpus is a wumpus. Polly is a rompus.", "question": "Is the following statement true or false? Polly is temperate.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Polly is a rompus.", "Every rompus is a yumpus.", "Polly is a yumpus.", "Yumpuses are numpuses.", "Polly is a numpus.", "Each numpus is a tumpus.", "Polly is a tumpus.", "Every tumpus is a dumpus.", "Polly is a dumpus.", "Dumpuses are not temperate.", "Polly is not temperate." ] }, { "id": "ProntoQA_343", "context": "Rompuses are amenable. Every rompus is a tumpus. Tumpuses are not cold. Each tumpus is a zumpus. Zumpuses are nervous. Each zumpus is a numpus. Each numpus is opaque. Numpuses are yumpuses. Each yumpus is sour. Yumpuses are jompuses. Jompuses are luminous. Every jompus is a vumpus. Each wumpus is not sour. Polly is a rompus.", "question": "Is the following statement true or false? Polly is not sour.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Polly is a rompus.", "Every rompus is a tumpus.", "Polly is a tumpus.", "Each tumpus is a zumpus.", "Polly is a zumpus.", "Each zumpus is a numpus.", "Polly is a numpus.", "Numpuses are yumpuses.", "Polly is a yumpus.", "Each yumpus is sour.", "Polly is sour." ] }, { "id": "ProntoQA_344", "context": "Vumpuses are bitter. Every vumpus is a wumpus. Wumpuses are orange. Each wumpus is a yumpus. Each yumpus is large. Tumpuses are temperate. Yumpuses are numpuses. Numpuses are not dull. Numpuses are zumpuses. Each zumpus is not temperate. Zumpuses are impuses. Stella is a vumpus.", "question": "Is the following statement true or false? Stella is temperate.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Stella is a vumpus.", "Every vumpus is a wumpus.", "Stella is a wumpus.", "Each wumpus is a yumpus.", "Stella is a yumpus.", "Yumpuses are numpuses.", "Stella is a numpus.", "Numpuses are zumpuses.", "Stella is a zumpus.", "Each zumpus is not temperate.", "Stella is not temperate." ] }, { "id": "ProntoQA_345", "context": "Every zumpus is not feisty. Each zumpus is a dumpus. Every dumpus is angry. Vumpuses are not small. Dumpuses are wumpuses. Each wumpus is not dull. Each wumpus is a numpus. Numpuses are fruity. Numpuses are impuses. Impuses are small. Each impus is a rompus. Every rompus is not opaque. Each rompus is a tumpus. Each tumpus is metallic. Tumpuses are yumpuses. Each yumpus is red. Yumpuses are jompuses. Rex is a zumpus.", "question": "Is the following statement true or false? Rex is not small.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Rex is a zumpus.", "Each zumpus is a dumpus.", "Rex is a dumpus.", "Dumpuses are wumpuses.", "Rex is a wumpus.", "Each wumpus is a numpus.", "Rex is a numpus.", "Numpuses are impuses.", "Rex is an impus.", "Impuses are small.", "Rex is small." ] }, { "id": "ProntoQA_346", "context": "Every wumpus is fruity. Wumpuses are jompuses. Jompuses are not transparent. Each jompus is a vumpus. Every vumpus is cold. Each vumpus is a yumpus. Numpuses are not bright. Yumpuses are angry. Yumpuses are zumpuses. Zumpuses are brown. Zumpuses are impuses. Each impus is not wooden. Impuses are rompuses. Each rompus is large. Every rompus is a dumpus. Dumpuses are bright. Each dumpus is a tumpus. Sam is a yumpus.", "question": "Is the following statement true or false? Sam is not bright.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sam is a yumpus.", "Yumpuses are zumpuses.", "Sam is a zumpus.", "Zumpuses are impuses.", "Sam is an impus.", "Impuses are rompuses.", "Sam is a rompus.", "Every rompus is a dumpus.", "Sam is a dumpus.", "Dumpuses are bright.", "Sam is bright." ] }, { "id": "ProntoQA_347", "context": "Every tumpus is bright. Yumpuses are not earthy. Tumpuses are jompuses. Each jompus is opaque. Jompuses are impuses. Every impus is aggressive. Impuses are zumpuses. Each zumpus is not large. Zumpuses are wumpuses. Wumpuses are liquid. Each wumpus is a vumpus. Each vumpus is feisty. Vumpuses are dumpuses. Each dumpus is earthy. Each dumpus is a rompus. Each rompus is spicy. Rompuses are numpuses. Sally is an impus.", "question": "Is the following statement true or false? Sally is not earthy.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sally is an impus.", "Impuses are zumpuses.", "Sally is a zumpus.", "Zumpuses are wumpuses.", "Sally is a wumpus.", "Each wumpus is a vumpus.", "Sally is a vumpus.", "Vumpuses are dumpuses.", "Sally is a dumpus.", "Each dumpus is earthy.", "Sally is earthy." ] }, { "id": "ProntoQA_348", "context": "Yumpuses are large. Yumpuses are rompuses. Rompuses are orange. Each rompus is a wumpus. Each wumpus is happy. Wumpuses are zumpuses. Zumpuses are not angry. Zumpuses are impuses. Impuses are earthy. Each impus is a jompus. Jompuses are luminous. Each jompus is a dumpus. Every dumpus is bright. Dumpuses are numpuses. Vumpuses are not luminous. Every numpus is not hot. Every numpus is a tumpus. Fae is a rompus.", "question": "Is the following statement true or false? Fae is luminous.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Fae is a rompus.", "Each rompus is a wumpus.", "Fae is a wumpus.", "Wumpuses are zumpuses.", "Fae is a zumpus.", "Zumpuses are impuses.", "Fae is an impus.", "Each impus is a jompus.", "Fae is a jompus.", "Jompuses are luminous.", "Fae is luminous." ] }, { "id": "ProntoQA_349", "context": "Each vumpus is spicy. Every vumpus is a dumpus. Each dumpus is blue. Every dumpus is a yumpus. Each yumpus is floral. Yumpuses are tumpuses. Tumpuses are small. Tumpuses are rompuses. Rompuses are not mean. Rompuses are jompuses. Every numpus is mean. Alex is a vumpus.", "question": "Is the following statement true or false? Alex is not mean.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Alex is a vumpus.", "Every vumpus is a dumpus.", "Alex is a dumpus.", "Every dumpus is a yumpus.", "Alex is a yumpus.", "Yumpuses are tumpuses.", "Alex is a tumpus.", "Tumpuses are rompuses.", "Alex is a rompus.", "Rompuses are not mean.", "Alex is not mean." ] }, { "id": "ProntoQA_350", "context": "Numpuses are not shy. Every numpus is a wumpus. Wumpuses are not large. Each wumpus is an impus. Impuses are not metallic. Zumpuses are not sour. Every impus is a rompus. Rompuses are dull. Each rompus is a vumpus. Vumpuses are aggressive. Vumpuses are jompuses. Every jompus is red. Jompuses are tumpuses. Every tumpus is fruity. Tumpuses are dumpuses. Dumpuses are sour. Dumpuses are yumpuses. Alex is a rompus.", "question": "Is the following statement true or false? Alex is not sour.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Alex is a rompus.", "Each rompus is a vumpus.", "Alex is a vumpus.", "Vumpuses are jompuses.", "Alex is a jompus.", "Jompuses are tumpuses.", "Alex is a tumpus.", "Tumpuses are dumpuses.", "Alex is a dumpus.", "Dumpuses are sour.", "Alex is sour." ] }, { "id": "ProntoQA_351", "context": "Zumpuses are dull. Each zumpus is a wumpus. Wumpuses are shy. Every wumpus is a rompus. Rompuses are large. Rompuses are vumpuses. Vumpuses are red. Each tumpus is fruity. Vumpuses are dumpuses. Every dumpus is not fruity. Every dumpus is a numpus. Numpuses are spicy. Each numpus is a yumpus. Yumpuses are mean. Every yumpus is a jompus. Every jompus is opaque. Each jompus is an impus. Stella is a zumpus.", "question": "Is the following statement true or false? Stella is not fruity.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Stella is a zumpus.", "Each zumpus is a wumpus.", "Stella is a wumpus.", "Every wumpus is a rompus.", "Stella is a rompus.", "Rompuses are vumpuses.", "Stella is a vumpus.", "Vumpuses are dumpuses.", "Stella is a dumpus.", "Every dumpus is not fruity.", "Stella is not fruity." ] }, { "id": "ProntoQA_352", "context": "Each dumpus is not blue. Dumpuses are jompuses. Jompuses are not earthy. Jompuses are impuses. Every impus is not aggressive. Impuses are vumpuses. Every vumpus is metallic. Wumpuses are not opaque. Vumpuses are rompuses. Each rompus is not feisty. Every rompus is a yumpus. Every yumpus is opaque. Yumpuses are numpuses. Numpuses are small. Numpuses are tumpuses. Every tumpus is spicy. Tumpuses are zumpuses. Wren is a jompus.", "question": "Is the following statement true or false? Wren is not opaque.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Wren is a jompus.", "Jompuses are impuses.", "Wren is an impus.", "Impuses are vumpuses.", "Wren is a vumpus.", "Vumpuses are rompuses.", "Wren is a rompus.", "Every rompus is a yumpus.", "Wren is a yumpus.", "Every yumpus is opaque.", "Wren is opaque." ] }, { "id": "ProntoQA_353", "context": "Dumpuses are earthy. Each dumpus is a tumpus. Every tumpus is sour. Tumpuses are numpuses. Each impus is hot. Numpuses are happy. Every numpus is a rompus. Every rompus is not transparent. Every rompus is a zumpus. Zumpuses are not hot. Each zumpus is a vumpus. Vumpuses are not dull. Each vumpus is a jompus. Every jompus is not aggressive. Each jompus is a wumpus. Wumpuses are luminous. Wumpuses are yumpuses. Wren is a dumpus.", "question": "Is the following statement true or false? Wren is not hot.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Wren is a dumpus.", "Each dumpus is a tumpus.", "Wren is a tumpus.", "Tumpuses are numpuses.", "Wren is a numpus.", "Every numpus is a rompus.", "Wren is a rompus.", "Every rompus is a zumpus.", "Wren is a zumpus.", "Zumpuses are not hot.", "Wren is not hot." ] }, { "id": "ProntoQA_354", "context": "Vumpuses are feisty. Vumpuses are jompuses. Each jompus is not blue. Every jompus is a zumpus. Zumpuses are mean. Every zumpus is an impus. Impuses are sweet. Every impus is a numpus. Numpuses are earthy. Every numpus is a wumpus. Each wumpus is cold. Wumpuses are dumpuses. Dumpuses are bright. Every dumpus is a rompus. Rompuses are not small. Rompuses are tumpuses. Every yumpus is not bright. Fae is a zumpus.", "question": "Is the following statement true or false? Fae is not bright.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Fae is a zumpus.", "Every zumpus is an impus.", "Fae is an impus.", "Every impus is a numpus.", "Fae is a numpus.", "Every numpus is a wumpus.", "Fae is a wumpus.", "Wumpuses are dumpuses.", "Fae is a dumpus.", "Dumpuses are bright.", "Fae is bright." ] }, { "id": "ProntoQA_355", "context": "Impuses are not happy. Each impus is a dumpus. Every dumpus is small. Each dumpus is a vumpus. Vumpuses are not dull. Every vumpus is a rompus. Each rompus is not sweet. Rompuses are tumpuses. Tumpuses are transparent. Tumpuses are jompuses. Every jompus is brown. Each zumpus is not brown. Jompuses are wumpuses. Wumpuses are angry. Wumpuses are yumpuses. Every yumpus is not temperate. Each yumpus is a numpus. Rex is a dumpus.", "question": "Is the following statement true or false? Rex is not brown.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Rex is a dumpus.", "Each dumpus is a vumpus.", "Rex is a vumpus.", "Every vumpus is a rompus.", "Rex is a rompus.", "Rompuses are tumpuses.", "Rex is a tumpus.", "Tumpuses are jompuses.", "Rex is a jompus.", "Every jompus is brown.", "Rex is brown." ] }, { "id": "ProntoQA_356", "context": "Every numpus is not floral. Numpuses are tumpuses. Tumpuses are orange. Tumpuses are rompuses. Every rompus is bright. Each rompus is a dumpus. Every dumpus is metallic. Dumpuses are jompuses. Every jompus is cold. Jompuses are zumpuses. Each zumpus is feisty. Zumpuses are impuses. Each impus is spicy. Every impus is a wumpus. Every wumpus is kind. Yumpuses are not kind. Wumpuses are vumpuses. Rex is a dumpus.", "question": "Is the following statement true or false? Rex is kind.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Rex is a dumpus.", "Dumpuses are jompuses.", "Rex is a jompus.", "Jompuses are zumpuses.", "Rex is a zumpus.", "Zumpuses are impuses.", "Rex is an impus.", "Every impus is a wumpus.", "Rex is a wumpus.", "Every wumpus is kind.", "Rex is kind." ] }, { "id": "ProntoQA_357", "context": "Each vumpus is not hot. Vumpuses are rompuses. Every rompus is opaque. Every rompus is a zumpus. Every zumpus is dull. Zumpuses are yumpuses. Yumpuses are sour. Every yumpus is a tumpus. Impuses are not blue. Tumpuses are metallic. Tumpuses are jompuses. Jompuses are not fruity. Jompuses are wumpuses. Wumpuses are blue. Every wumpus is a numpus. Each numpus is mean. Every numpus is a dumpus. Stella is a zumpus.", "question": "Is the following statement true or false? Stella is blue.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Stella is a zumpus.", "Zumpuses are yumpuses.", "Stella is a yumpus.", "Every yumpus is a tumpus.", "Stella is a tumpus.", "Tumpuses are jompuses.", "Stella is a jompus.", "Jompuses are wumpuses.", "Stella is a wumpus.", "Wumpuses are blue.", "Stella is blue." ] }, { "id": "ProntoQA_358", "context": "Impuses are dull. Each impus is a vumpus. Every vumpus is sour. Vumpuses are wumpuses. Every wumpus is blue. Wumpuses are tumpuses. Tumpuses are opaque. Every tumpus is a rompus. Rompuses are cold. Every rompus is a jompus. Jompuses are not happy. Each jompus is a numpus. Dumpuses are not wooden. Numpuses are fruity. Numpuses are yumpuses. Yumpuses are wooden. Every yumpus is a zumpus. Max is a tumpus.", "question": "Is the following statement true or false? Max is wooden.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Max is a tumpus.", "Every tumpus is a rompus.", "Max is a rompus.", "Every rompus is a jompus.", "Max is a jompus.", "Each jompus is a numpus.", "Max is a numpus.", "Numpuses are yumpuses.", "Max is a yumpus.", "Yumpuses are wooden.", "Max is wooden." ] }, { "id": "ProntoQA_359", "context": "Vumpuses are not wooden. Rompuses are kind. Rompuses are tumpuses. Tumpuses are not nervous. Tumpuses are impuses. Impuses are not cold. Each impus is a dumpus. Each dumpus is bright. Dumpuses are zumpuses. Zumpuses are transparent. Zumpuses are numpuses. Numpuses are large. Numpuses are jompuses. Each jompus is wooden. Each jompus is a wumpus. Each wumpus is not bitter. Each wumpus is a yumpus. Max is an impus.", "question": "Is the following statement true or false? Max is wooden.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Max is an impus.", "Each impus is a dumpus.", "Max is a dumpus.", "Dumpuses are zumpuses.", "Max is a zumpus.", "Zumpuses are numpuses.", "Max is a numpus.", "Numpuses are jompuses.", "Max is a jompus.", "Each jompus is wooden.", "Max is wooden." ] }, { "id": "ProntoQA_360", "context": "Rompuses are not kind. Every rompus is a dumpus. Every dumpus is metallic. Every dumpus is an impus. Every impus is shy. Each wumpus is temperate. Each impus is a vumpus. Vumpuses are small. Each vumpus is a jompus. Jompuses are dull. Jompuses are numpuses. Every numpus is opaque. Each numpus is a tumpus. Each tumpus is orange. Tumpuses are yumpuses. Yumpuses are not temperate. Each yumpus is a zumpus. Sally is a vumpus.", "question": "Is the following statement true or false? Sally is temperate.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sally is a vumpus.", "Each vumpus is a jompus.", "Sally is a jompus.", "Jompuses are numpuses.", "Sally is a numpus.", "Each numpus is a tumpus.", "Sally is a tumpus.", "Tumpuses are yumpuses.", "Sally is a yumpus.", "Yumpuses are not temperate.", "Sally is not temperate." ] }, { "id": "ProntoQA_361", "context": "Every impus is dull. Each impus is a zumpus. Each zumpus is temperate. Zumpuses are jompuses. Jompuses are happy. Jompuses are yumpuses. Each yumpus is not earthy. Every yumpus is a numpus. Each numpus is not transparent. Every numpus is a dumpus. Rompuses are transparent. Dumpuses are blue. Dumpuses are vumpuses. Vumpuses are not sour. Every vumpus is a tumpus. Tumpuses are amenable. Every tumpus is a wumpus. Rex is an impus.", "question": "Is the following statement true or false? Rex is transparent.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Rex is an impus.", "Each impus is a zumpus.", "Rex is a zumpus.", "Zumpuses are jompuses.", "Rex is a jompus.", "Jompuses are yumpuses.", "Rex is a yumpus.", "Every yumpus is a numpus.", "Rex is a numpus.", "Each numpus is not transparent.", "Rex is not transparent." ] }, { "id": "ProntoQA_362", "context": "Every wumpus is fruity. Each wumpus is a tumpus. Each tumpus is sour. Tumpuses are dumpuses. Dumpuses are not nervous. Each dumpus is a numpus. Numpuses are angry. Every numpus is a vumpus. Vumpuses are bright. Each vumpus is a rompus. Rompuses are not wooden. Every rompus is a yumpus. Every yumpus is opaque. Every zumpus is blue. Each yumpus is a jompus. Jompuses are not blue. Jompuses are impuses. Sally is a numpus.", "question": "Is the following statement true or false? Sally is not blue.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sally is a numpus.", "Every numpus is a vumpus.", "Sally is a vumpus.", "Each vumpus is a rompus.", "Sally is a rompus.", "Every rompus is a yumpus.", "Sally is a yumpus.", "Each yumpus is a jompus.", "Sally is a jompus.", "Jompuses are not blue.", "Sally is not blue." ] }, { "id": "ProntoQA_363", "context": "Each impus is sweet. Each impus is a dumpus. Dumpuses are small. Every dumpus is a numpus. Every numpus is mean. Every numpus is a rompus. Each rompus is red. Rompuses are tumpuses. Every tumpus is dull. Tumpuses are jompuses. Every wumpus is not dull. Each jompus is not opaque. Jompuses are vumpuses. Each vumpus is earthy. Vumpuses are zumpuses. Zumpuses are wooden. Zumpuses are yumpuses. Polly is an impus.", "question": "Is the following statement true or false? Polly is not dull.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Polly is an impus.", "Each impus is a dumpus.", "Polly is a dumpus.", "Every dumpus is a numpus.", "Polly is a numpus.", "Every numpus is a rompus.", "Polly is a rompus.", "Rompuses are tumpuses.", "Polly is a tumpus.", "Every tumpus is dull.", "Polly is dull." ] }, { "id": "ProntoQA_364", "context": "Impuses are opaque. Each impus is a dumpus. Every dumpus is not small. Dumpuses are jompuses. Jompuses are temperate. Jompuses are numpuses. Each numpus is not dull. Every numpus is a yumpus. Rompuses are not kind. Every yumpus is orange. Every yumpus is a tumpus. Each tumpus is kind. Tumpuses are zumpuses. Zumpuses are floral. Each zumpus is a vumpus. Vumpuses are not sweet. Vumpuses are wumpuses. Stella is a dumpus.", "question": "Is the following statement true or false? Stella is not kind.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Stella is a dumpus.", "Dumpuses are jompuses.", "Stella is a jompus.", "Jompuses are numpuses.", "Stella is a numpus.", "Every numpus is a yumpus.", "Stella is a yumpus.", "Every yumpus is a tumpus.", "Stella is a tumpus.", "Each tumpus is kind.", "Stella is kind." ] }, { "id": "ProntoQA_365", "context": "Yumpuses are transparent. Vumpuses are not happy. Vumpuses are zumpuses. Zumpuses are sweet. Every zumpus is a numpus. Numpuses are not hot. Numpuses are rompuses. Each rompus is blue. Rompuses are jompuses. Every jompus is bright. Jompuses are impuses. Impuses are luminous. Impuses are wumpuses. Each wumpus is not aggressive. Wumpuses are dumpuses. Each dumpus is not transparent. Dumpuses are tumpuses. Sally is a rompus.", "question": "Is the following statement true or false? Sally is not transparent.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sally is a rompus.", "Rompuses are jompuses.", "Sally is a jompus.", "Jompuses are impuses.", "Sally is an impus.", "Impuses are wumpuses.", "Sally is a wumpus.", "Wumpuses are dumpuses.", "Sally is a dumpus.", "Each dumpus is not transparent.", "Sally is not transparent." ] }, { "id": "ProntoQA_366", "context": "Vumpuses are not wooden. Each vumpus is a numpus. Each impus is floral. Numpuses are opaque. Numpuses are wumpuses. Wumpuses are small. Each wumpus is a jompus. Jompuses are red. Jompuses are zumpuses. Zumpuses are not sweet. Every zumpus is a yumpus. Each yumpus is not floral. Every yumpus is a tumpus. Polly is a numpus.", "question": "Is the following statement true or false? Polly is floral.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Polly is a numpus.", "Numpuses are wumpuses.", "Polly is a wumpus.", "Each wumpus is a jompus.", "Polly is a jompus.", "Jompuses are zumpuses.", "Polly is a zumpus.", "Every zumpus is a yumpus.", "Polly is a yumpus.", "Each yumpus is not floral.", "Polly is not floral." ] }, { "id": "ProntoQA_367", "context": "Dumpuses are small. Dumpuses are vumpuses. Vumpuses are opaque. Vumpuses are wumpuses. Every wumpus is liquid. Each wumpus is a zumpus. Zumpuses are not happy. Each zumpus is an impus. Each impus is not earthy. Impuses are tumpuses. Each tumpus is not spicy. Each jompus is hot. Tumpuses are rompuses. Each rompus is not dull. Every rompus is a numpus. Every numpus is not hot. Numpuses are yumpuses. Polly is a zumpus.", "question": "Is the following statement true or false? Polly is hot.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Polly is a zumpus.", "Each zumpus is an impus.", "Polly is an impus.", "Impuses are tumpuses.", "Polly is a tumpus.", "Tumpuses are rompuses.", "Polly is a rompus.", "Every rompus is a numpus.", "Polly is a numpus.", "Every numpus is not hot.", "Polly is not hot." ] }, { "id": "ProntoQA_368", "context": "Tumpuses are large. Tumpuses are impuses. Each impus is not earthy. Each impus is a dumpus. Yumpuses are blue. Dumpuses are metallic. Every dumpus is a rompus. Each rompus is feisty. Every rompus is a jompus. Every jompus is not blue. Jompuses are zumpuses. Fae is a tumpus.", "question": "Is the following statement true or false? Fae is not blue.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Fae is a tumpus.", "Tumpuses are impuses.", "Fae is an impus.", "Each impus is a dumpus.", "Fae is a dumpus.", "Every dumpus is a rompus.", "Fae is a rompus.", "Every rompus is a jompus.", "Fae is a jompus.", "Every jompus is not blue.", "Fae is not blue." ] }, { "id": "ProntoQA_369", "context": "Each numpus is transparent. Each vumpus is not brown. Every numpus is a wumpus. Each wumpus is not bright. Every wumpus is a tumpus. Each tumpus is bitter. Each tumpus is a rompus. Rompuses are temperate. Every rompus is an impus. Each impus is brown. Each impus is a yumpus. Rex is a numpus.", "question": "Is the following statement true or false? Rex is brown.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Rex is a numpus.", "Every numpus is a wumpus.", "Rex is a wumpus.", "Every wumpus is a tumpus.", "Rex is a tumpus.", "Each tumpus is a rompus.", "Rex is a rompus.", "Every rompus is an impus.", "Rex is an impus.", "Each impus is brown.", "Rex is brown." ] }, { "id": "ProntoQA_370", "context": "Wumpuses are not blue. Every wumpus is a jompus. Jompuses are temperate. Jompuses are zumpuses. Each zumpus is not small. Every zumpus is an impus. Every numpus is earthy. Impuses are not aggressive. Each impus is a yumpus. Each yumpus is not earthy. Every yumpus is a rompus. Every rompus is sweet. Rompuses are tumpuses. Each tumpus is not shy. Tumpuses are vumpuses. Each vumpus is not transparent. Vumpuses are dumpuses. Max is a wumpus.", "question": "Is the following statement true or false? Max is not earthy.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Max is a wumpus.", "Every wumpus is a jompus.", "Max is a jompus.", "Jompuses are zumpuses.", "Max is a zumpus.", "Every zumpus is an impus.", "Max is an impus.", "Each impus is a yumpus.", "Max is a yumpus.", "Each yumpus is not earthy.", "Max is not earthy." ] }, { "id": "ProntoQA_371", "context": "Each tumpus is not happy. Each tumpus is a zumpus. Each zumpus is red. Each zumpus is a rompus. Vumpuses are not dull. Rompuses are floral. Rompuses are impuses. Impuses are not sour. Every impus is a numpus. Numpuses are hot. Numpuses are wumpuses. Every wumpus is dull. Wumpuses are jompuses. Sam is a zumpus.", "question": "Is the following statement true or false? Sam is not dull.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sam is a zumpus.", "Each zumpus is a rompus.", "Sam is a rompus.", "Rompuses are impuses.", "Sam is an impus.", "Every impus is a numpus.", "Sam is a numpus.", "Numpuses are wumpuses.", "Sam is a wumpus.", "Every wumpus is dull.", "Sam is dull." ] }, { "id": "ProntoQA_372", "context": "Each wumpus is not large. Wumpuses are impuses. Every impus is opaque. Impuses are numpuses. Every numpus is bright. Numpuses are rompuses. Rompuses are cold. Each tumpus is kind. Rompuses are zumpuses. Each zumpus is not kind. Every zumpus is a yumpus. Rex is a wumpus.", "question": "Is the following statement true or false? Rex is kind.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Rex is a wumpus.", "Wumpuses are impuses.", "Rex is an impus.", "Impuses are numpuses.", "Rex is a numpus.", "Numpuses are rompuses.", "Rex is a rompus.", "Rompuses are zumpuses.", "Rex is a zumpus.", "Each zumpus is not kind.", "Rex is not kind." ] }, { "id": "ProntoQA_373", "context": "Every zumpus is metallic. Every zumpus is a jompus. Every jompus is bitter. Jompuses are tumpuses. Every tumpus is mean. Tumpuses are rompuses. Rompuses are not cold. Each rompus is a vumpus. Each wumpus is not dull. Every vumpus is dull. Every vumpus is a numpus. Every numpus is not fruity. Numpuses are dumpuses. Each dumpus is small. Each dumpus is a yumpus. Yumpuses are red. Each yumpus is an impus. Sam is a zumpus.", "question": "Is the following statement true or false? Sam is dull.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sam is a zumpus.", "Every zumpus is a jompus.", "Sam is a jompus.", "Jompuses are tumpuses.", "Sam is a tumpus.", "Tumpuses are rompuses.", "Sam is a rompus.", "Each rompus is a vumpus.", "Sam is a vumpus.", "Every vumpus is dull.", "Sam is dull." ] }, { "id": "ProntoQA_374", "context": "Yumpuses are feisty. Every yumpus is a zumpus. Zumpuses are brown. Each zumpus is a rompus. Each rompus is not bitter. Rompuses are numpuses. Each numpus is not metallic. Numpuses are wumpuses. Wumpuses are large. Wumpuses are vumpuses. Vumpuses are aggressive. Vumpuses are jompuses. Every jompus is dull. Jompuses are impuses. Impuses are not temperate. Each impus is a tumpus. Dumpuses are not aggressive. Fae is a zumpus.", "question": "Is the following statement true or false? Fae is aggressive.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Fae is a zumpus.", "Each zumpus is a rompus.", "Fae is a rompus.", "Rompuses are numpuses.", "Fae is a numpus.", "Numpuses are wumpuses.", "Fae is a wumpus.", "Wumpuses are vumpuses.", "Fae is a vumpus.", "Vumpuses are aggressive.", "Fae is aggressive." ] }, { "id": "ProntoQA_375", "context": "Each dumpus is not small. Dumpuses are wumpuses. Impuses are not metallic. Wumpuses are happy. Each wumpus is a zumpus. Zumpuses are brown. Zumpuses are rompuses. Rompuses are sour. Every rompus is a tumpus. Each tumpus is metallic. Tumpuses are numpuses. Each numpus is transparent. Numpuses are vumpuses. Each vumpus is not bright. Every vumpus is a yumpus. Every yumpus is not aggressive. Yumpuses are jompuses. Fae is a dumpus.", "question": "Is the following statement true or false? Fae is metallic.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Fae is a dumpus.", "Dumpuses are wumpuses.", "Fae is a wumpus.", "Each wumpus is a zumpus.", "Fae is a zumpus.", "Zumpuses are rompuses.", "Fae is a rompus.", "Every rompus is a tumpus.", "Fae is a tumpus.", "Each tumpus is metallic.", "Fae is metallic." ] }, { "id": "ProntoQA_376", "context": "Every zumpus is not metallic. Each zumpus is a rompus. Every rompus is fruity. Every rompus is a yumpus. Yumpuses are large. Each yumpus is a numpus. Numpuses are aggressive. Each numpus is a jompus. Each jompus is temperate. Jompuses are vumpuses. Vumpuses are transparent. Each vumpus is a dumpus. Tumpuses are not transparent. Each dumpus is not dull. Each dumpus is an impus. Each impus is not bitter. Impuses are wumpuses. Wren is a rompus.", "question": "Is the following statement true or false? Wren is transparent.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Wren is a rompus.", "Every rompus is a yumpus.", "Wren is a yumpus.", "Each yumpus is a numpus.", "Wren is a numpus.", "Each numpus is a jompus.", "Wren is a jompus.", "Jompuses are vumpuses.", "Wren is a vumpus.", "Vumpuses are transparent.", "Wren is transparent." ] }, { "id": "ProntoQA_377", "context": "Each zumpus is metallic. Zumpuses are tumpuses. Every tumpus is not earthy. Tumpuses are rompuses. Rompuses are hot. Rompuses are impuses. Every impus is orange. Impuses are dumpuses. Dumpuses are dull. Dumpuses are vumpuses. Vumpuses are not opaque. Each vumpus is a numpus. Each jompus is not dull. Every numpus is kind. Numpuses are yumpuses. Yumpuses are not small. Every yumpus is a wumpus. Sam is a zumpus.", "question": "Is the following statement true or false? Sam is not dull.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sam is a zumpus.", "Zumpuses are tumpuses.", "Sam is a tumpus.", "Tumpuses are rompuses.", "Sam is a rompus.", "Rompuses are impuses.", "Sam is an impus.", "Impuses are dumpuses.", "Sam is a dumpus.", "Dumpuses are dull.", "Sam is dull." ] }, { "id": "ProntoQA_378", "context": "Dumpuses are nervous. Each dumpus is a vumpus. Every impus is transparent. Every vumpus is cold. Each vumpus is a zumpus. Each zumpus is not mean. Zumpuses are yumpuses. Yumpuses are bright. Yumpuses are tumpuses. Every tumpus is not fruity. Each tumpus is a jompus. Every jompus is not wooden. Jompuses are wumpuses. Each wumpus is not transparent. Wumpuses are numpuses. Numpuses are not blue. Numpuses are rompuses. Max is a zumpus.", "question": "Is the following statement true or false? Max is transparent.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Max is a zumpus.", "Zumpuses are yumpuses.", "Max is a yumpus.", "Yumpuses are tumpuses.", "Max is a tumpus.", "Each tumpus is a jompus.", "Max is a jompus.", "Jompuses are wumpuses.", "Max is a wumpus.", "Each wumpus is not transparent.", "Max is not transparent." ] }, { "id": "ProntoQA_379", "context": "Every impus is not transparent. Every impus is a yumpus. Each yumpus is floral. Every yumpus is a tumpus. Every tumpus is shy. Tumpuses are zumpuses. Zumpuses are metallic. Zumpuses are dumpuses. Dumpuses are not sour. Every dumpus is a rompus. Rompuses are not large. Rompuses are vumpuses. Wumpuses are sour. Vumpuses are dull. Every vumpus is a numpus. Wren is an impus.", "question": "Is the following statement true or false? Wren is not sour.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Wren is an impus.", "Every impus is a yumpus.", "Wren is a yumpus.", "Every yumpus is a tumpus.", "Wren is a tumpus.", "Tumpuses are zumpuses.", "Wren is a zumpus.", "Zumpuses are dumpuses.", "Wren is a dumpus.", "Dumpuses are not sour.", "Wren is not sour." ] }, { "id": "ProntoQA_380", "context": "Every dumpus is large. Wumpuses are happy. Each dumpus is an impus. Impuses are opaque. Impuses are jompuses. Every jompus is fruity. Each jompus is a zumpus. Zumpuses are orange. Each zumpus is a vumpus. Vumpuses are bright. Each vumpus is a tumpus. Each tumpus is not sweet. Tumpuses are rompuses. Each rompus is metallic. Rompuses are yumpuses. Yumpuses are not happy. Yumpuses are numpuses. Polly is a zumpus.", "question": "Is the following statement true or false? Polly is not happy.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Polly is a zumpus.", "Each zumpus is a vumpus.", "Polly is a vumpus.", "Each vumpus is a tumpus.", "Polly is a tumpus.", "Tumpuses are rompuses.", "Polly is a rompus.", "Rompuses are yumpuses.", "Polly is a yumpus.", "Yumpuses are not happy.", "Polly is not happy." ] }, { "id": "ProntoQA_381", "context": "Numpuses are dull. Every numpus is a zumpus. Every zumpus is wooden. Zumpuses are wumpuses. Every wumpus is spicy. Wumpuses are dumpuses. Every dumpus is earthy. Vumpuses are not feisty. Each dumpus is a yumpus. Yumpuses are large. Yumpuses are tumpuses. Tumpuses are feisty. Each tumpus is a rompus. Rompuses are blue. Each rompus is an impus. Sally is a zumpus.", "question": "Is the following statement true or false? Sally is feisty.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sally is a zumpus.", "Zumpuses are wumpuses.", "Sally is a wumpus.", "Wumpuses are dumpuses.", "Sally is a dumpus.", "Each dumpus is a yumpus.", "Sally is a yumpus.", "Yumpuses are tumpuses.", "Sally is a tumpus.", "Tumpuses are feisty.", "Sally is feisty." ] }, { "id": "ProntoQA_382", "context": "Each jompus is fruity. Each jompus is a vumpus. Each vumpus is opaque. Vumpuses are wumpuses. Every wumpus is bitter. Wumpuses are rompuses. Rompuses are not happy. Every rompus is a zumpus. Zumpuses are temperate. Zumpuses are numpuses. Each numpus is not bright. Dumpuses are not temperate. Numpuses are tumpuses. Every tumpus is large. Each tumpus is an impus. Every impus is metallic. Impuses are yumpuses. Polly is a jompus.", "question": "Is the following statement true or false? Polly is not temperate.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Polly is a jompus.", "Each jompus is a vumpus.", "Polly is a vumpus.", "Vumpuses are wumpuses.", "Polly is a wumpus.", "Wumpuses are rompuses.", "Polly is a rompus.", "Every rompus is a zumpus.", "Polly is a zumpus.", "Zumpuses are temperate.", "Polly is temperate." ] }, { "id": "ProntoQA_383", "context": "Every wumpus is small. Wumpuses are tumpuses. Tumpuses are not fruity. Every zumpus is not brown. Tumpuses are impuses. Every impus is luminous. Each impus is a jompus. Jompuses are not sweet. Jompuses are yumpuses. Every yumpus is feisty. Yumpuses are dumpuses. Each dumpus is angry. Every dumpus is a rompus. Each rompus is opaque. Rompuses are numpuses. Each numpus is brown. Numpuses are vumpuses. Sam is a jompus.", "question": "Is the following statement true or false? Sam is brown.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sam is a jompus.", "Jompuses are yumpuses.", "Sam is a yumpus.", "Yumpuses are dumpuses.", "Sam is a dumpus.", "Every dumpus is a rompus.", "Sam is a rompus.", "Rompuses are numpuses.", "Sam is a numpus.", "Each numpus is brown.", "Sam is brown." ] }, { "id": "ProntoQA_384", "context": "Vumpuses are transparent. Vumpuses are dumpuses. Dumpuses are temperate. Each dumpus is a rompus. Each rompus is happy. Every rompus is a jompus. Each jompus is dull. Jompuses are yumpuses. Yumpuses are not sweet. Yumpuses are zumpuses. Each zumpus is not kind. Every zumpus is a numpus. Each wumpus is kind. Each numpus is wooden. Numpuses are tumpuses. Each tumpus is brown. Each tumpus is an impus. Fae is a dumpus.", "question": "Is the following statement true or false? Fae is not kind.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Fae is a dumpus.", "Each dumpus is a rompus.", "Fae is a rompus.", "Every rompus is a jompus.", "Fae is a jompus.", "Jompuses are yumpuses.", "Fae is a yumpus.", "Yumpuses are zumpuses.", "Fae is a zumpus.", "Each zumpus is not kind.", "Fae is not kind." ] }, { "id": "ProntoQA_385", "context": "Yumpuses are large. Yumpuses are numpuses. Numpuses are opaque. Each numpus is a zumpus. Vumpuses are not fruity. Zumpuses are happy. Zumpuses are impuses. Impuses are temperate. Impuses are jompuses. Each jompus is bright. Jompuses are wumpuses. Wumpuses are fruity. Wumpuses are rompuses. Rompuses are not spicy. Rompuses are dumpuses. Every dumpus is not amenable. Dumpuses are tumpuses. Wren is a numpus.", "question": "Is the following statement true or false? Wren is fruity.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Wren is a numpus.", "Each numpus is a zumpus.", "Wren is a zumpus.", "Zumpuses are impuses.", "Wren is an impus.", "Impuses are jompuses.", "Wren is a jompus.", "Jompuses are wumpuses.", "Wren is a wumpus.", "Wumpuses are fruity.", "Wren is fruity." ] }, { "id": "ProntoQA_386", "context": "Rompuses are sour. Rompuses are jompuses. Jompuses are large. Jompuses are dumpuses. Each dumpus is not orange. Each yumpus is floral. Dumpuses are wumpuses. Every wumpus is kind. Every wumpus is a tumpus. Every tumpus is not floral. Tumpuses are numpuses. Every numpus is not feisty. Numpuses are zumpuses. Zumpuses are liquid. Zumpuses are impuses. Wren is a rompus.", "question": "Is the following statement true or false? Wren is floral.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Wren is a rompus.", "Rompuses are jompuses.", "Wren is a jompus.", "Jompuses are dumpuses.", "Wren is a dumpus.", "Dumpuses are wumpuses.", "Wren is a wumpus.", "Every wumpus is a tumpus.", "Wren is a tumpus.", "Every tumpus is not floral.", "Wren is not floral." ] }, { "id": "ProntoQA_387", "context": "Jompuses are bright. Jompuses are yumpuses. Each yumpus is luminous. Yumpuses are impuses. Every impus is not hot. Each impus is a vumpus. Vumpuses are feisty. Each vumpus is a dumpus. Each dumpus is opaque. Each dumpus is a zumpus. Every zumpus is fruity. Zumpuses are tumpuses. Each tumpus is sweet. Tumpuses are numpuses. Each rompus is not red. Numpuses are red. Each numpus is a wumpus. Polly is a vumpus.", "question": "Is the following statement true or false? Polly is red.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Polly is a vumpus.", "Each vumpus is a dumpus.", "Polly is a dumpus.", "Each dumpus is a zumpus.", "Polly is a zumpus.", "Zumpuses are tumpuses.", "Polly is a tumpus.", "Tumpuses are numpuses.", "Polly is a numpus.", "Numpuses are red.", "Polly is red." ] }, { "id": "ProntoQA_388", "context": "Wumpuses are fruity. Wumpuses are yumpuses. Yumpuses are bright. Every yumpus is a jompus. Jompuses are not large. Each jompus is a zumpus. Every zumpus is transparent. Zumpuses are numpuses. Numpuses are not luminous. Every dumpus is luminous. Numpuses are impuses. Each impus is feisty. Every impus is a tumpus. Every tumpus is blue. Every tumpus is a vumpus. Vumpuses are bitter. Vumpuses are rompuses. Rex is a wumpus.", "question": "Is the following statement true or false? Rex is not luminous.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Rex is a wumpus.", "Wumpuses are yumpuses.", "Rex is a yumpus.", "Every yumpus is a jompus.", "Rex is a jompus.", "Each jompus is a zumpus.", "Rex is a zumpus.", "Zumpuses are numpuses.", "Rex is a numpus.", "Numpuses are not luminous.", "Rex is not luminous." ] }, { "id": "ProntoQA_389", "context": "Jompuses are not brown. Each jompus is a tumpus. Tumpuses are not bitter. Tumpuses are numpuses. Every numpus is not transparent. Every wumpus is cold. Each numpus is a zumpus. Every zumpus is kind. Every zumpus is a dumpus. Every dumpus is not cold. Each dumpus is a rompus. Each rompus is not large. Every rompus is a yumpus. Every yumpus is fruity. Yumpuses are vumpuses. Every vumpus is bright. Every vumpus is an impus. Sally is a jompus.", "question": "Is the following statement true or false? Sally is not cold.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sally is a jompus.", "Each jompus is a tumpus.", "Sally is a tumpus.", "Tumpuses are numpuses.", "Sally is a numpus.", "Each numpus is a zumpus.", "Sally is a zumpus.", "Every zumpus is a dumpus.", "Sally is a dumpus.", "Every dumpus is not cold.", "Sally is not cold." ] }, { "id": "ProntoQA_390", "context": "Each zumpus is not red. Zumpuses are rompuses. Rompuses are happy. Every rompus is a numpus. Each numpus is not sweet. Numpuses are yumpuses. Every yumpus is not small. Yumpuses are tumpuses. Tumpuses are not cold. Tumpuses are vumpuses. Vumpuses are not transparent. Vumpuses are impuses. Each impus is not fruity. Impuses are wumpuses. Each jompus is fruity. Wumpuses are not dull. Each wumpus is a dumpus. Max is a numpus.", "question": "Is the following statement true or false? Max is fruity.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Max is a numpus.", "Numpuses are yumpuses.", "Max is a yumpus.", "Yumpuses are tumpuses.", "Max is a tumpus.", "Tumpuses are vumpuses.", "Max is a vumpus.", "Vumpuses are impuses.", "Max is an impus.", "Each impus is not fruity.", "Max is not fruity." ] }, { "id": "ProntoQA_391", "context": "Yumpuses are not brown. Tumpuses are transparent. Tumpuses are jompuses. Jompuses are kind. Jompuses are rompuses. Every rompus is dull. Each rompus is a vumpus. Vumpuses are liquid. Every vumpus is a dumpus. Each dumpus is cold. Dumpuses are impuses. Impuses are brown. Impuses are numpuses. Every numpus is not nervous. Each numpus is a zumpus. Zumpuses are bitter. Zumpuses are wumpuses. Stella is a jompus.", "question": "Is the following statement true or false? Stella is brown.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Stella is a jompus.", "Jompuses are rompuses.", "Stella is a rompus.", "Each rompus is a vumpus.", "Stella is a vumpus.", "Every vumpus is a dumpus.", "Stella is a dumpus.", "Dumpuses are impuses.", "Stella is an impus.", "Impuses are brown.", "Stella is brown." ] }, { "id": "ProntoQA_392", "context": "Each rompus is not metallic. Rompuses are jompuses. Jompuses are angry. Each jompus is a wumpus. Each wumpus is hot. Yumpuses are not blue. Each wumpus is a numpus. Every numpus is not dull. Every numpus is an impus. Every impus is not transparent. Each impus is a zumpus. Every zumpus is not happy. Zumpuses are dumpuses. Every dumpus is fruity. Dumpuses are vumpuses. Vumpuses are blue. Vumpuses are tumpuses. Stella is a numpus.", "question": "Is the following statement true or false? Stella is blue.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Stella is a numpus.", "Every numpus is an impus.", "Stella is an impus.", "Each impus is a zumpus.", "Stella is a zumpus.", "Zumpuses are dumpuses.", "Stella is a dumpus.", "Dumpuses are vumpuses.", "Stella is a vumpus.", "Vumpuses are blue.", "Stella is blue." ] }, { "id": "ProntoQA_393", "context": "Every rompus is not earthy. Each rompus is an impus. Each impus is not liquid. Impuses are jompuses. Each jompus is red. Each jompus is a vumpus. Vumpuses are mean. Every vumpus is a yumpus. Yumpuses are sweet. Each yumpus is a dumpus. Dumpuses are hot. Each dumpus is a tumpus. Each numpus is not dull. Each tumpus is large. Every tumpus is a zumpus. Each zumpus is dull. Each zumpus is a wumpus. Fae is a vumpus.", "question": "Is the following statement true or false? Fae is not dull.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Fae is a vumpus.", "Every vumpus is a yumpus.", "Fae is a yumpus.", "Each yumpus is a dumpus.", "Fae is a dumpus.", "Each dumpus is a tumpus.", "Fae is a tumpus.", "Every tumpus is a zumpus.", "Fae is a zumpus.", "Each zumpus is dull.", "Fae is dull." ] }, { "id": "ProntoQA_394", "context": "Each rompus is luminous. Rompuses are dumpuses. Each dumpus is fruity. Dumpuses are tumpuses. Every tumpus is sweet. Tumpuses are impuses. Every impus is brown. Each impus is a numpus. Numpuses are cold. Numpuses are jompuses. Every jompus is nervous. Each jompus is a vumpus. Vumpuses are not dull. Yumpuses are dull. Vumpuses are wumpuses. Each wumpus is not amenable. Wumpuses are zumpuses. Fae is a tumpus.", "question": "Is the following statement true or false? Fae is not dull.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Fae is a tumpus.", "Tumpuses are impuses.", "Fae is an impus.", "Each impus is a numpus.", "Fae is a numpus.", "Numpuses are jompuses.", "Fae is a jompus.", "Each jompus is a vumpus.", "Fae is a vumpus.", "Vumpuses are not dull.", "Fae is not dull." ] }, { "id": "ProntoQA_395", "context": "Every jompus is not opaque. Jompuses are tumpuses. Tumpuses are not dull. Tumpuses are yumpuses. Every yumpus is sweet. Each impus is brown. Yumpuses are rompuses. Rompuses are not small. Each rompus is a dumpus. Every dumpus is metallic. Dumpuses are vumpuses. Vumpuses are fruity. Each vumpus is a numpus. Each numpus is not brown. Every numpus is a wumpus. Each wumpus is mean. Each wumpus is a zumpus. Wren is a yumpus.", "question": "Is the following statement true or false? Wren is brown.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Wren is a yumpus.", "Yumpuses are rompuses.", "Wren is a rompus.", "Each rompus is a dumpus.", "Wren is a dumpus.", "Dumpuses are vumpuses.", "Wren is a vumpus.", "Each vumpus is a numpus.", "Wren is a numpus.", "Each numpus is not brown.", "Wren is not brown." ] }, { "id": "ProntoQA_396", "context": "Every rompus is small. Each rompus is a wumpus. Each wumpus is fruity. Each wumpus is a dumpus. Dumpuses are opaque. Each dumpus is a jompus. Jompuses are temperate. Jompuses are vumpuses. Vumpuses are liquid. Vumpuses are numpuses. Numpuses are not bitter. Impuses are not happy. Each numpus is a tumpus. Tumpuses are happy. Tumpuses are zumpuses. Sally is a dumpus.", "question": "Is the following statement true or false? Sally is happy.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sally is a dumpus.", "Each dumpus is a jompus.", "Sally is a jompus.", "Jompuses are vumpuses.", "Sally is a vumpus.", "Vumpuses are numpuses.", "Sally is a numpus.", "Each numpus is a tumpus.", "Sally is a tumpus.", "Tumpuses are happy.", "Sally is happy." ] }, { "id": "ProntoQA_397", "context": "Tumpuses are large. Tumpuses are yumpuses. Every yumpus is dull. Yumpuses are zumpuses. Each zumpus is opaque. Zumpuses are jompuses. Jompuses are wooden. Each jompus is a rompus. Rompuses are amenable. Rompuses are wumpuses. Vumpuses are fruity. Every wumpus is not fruity. Wumpuses are dumpuses. Every dumpus is cold. Every dumpus is an impus. Each impus is not spicy. Each impus is a numpus. Stella is a yumpus.", "question": "Is the following statement true or false? Stella is fruity.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Stella is a yumpus.", "Yumpuses are zumpuses.", "Stella is a zumpus.", "Zumpuses are jompuses.", "Stella is a jompus.", "Each jompus is a rompus.", "Stella is a rompus.", "Rompuses are wumpuses.", "Stella is a wumpus.", "Every wumpus is not fruity.", "Stella is not fruity." ] }, { "id": "ProntoQA_398", "context": "Each numpus is not spicy. Numpuses are jompuses. Every jompus is amenable. Jompuses are dumpuses. Each dumpus is blue. Yumpuses are opaque. Every dumpus is a vumpus. Each vumpus is cold. Every vumpus is a wumpus. Wumpuses are small. Each wumpus is a tumpus. Each tumpus is nervous. Every tumpus is an impus. Every impus is not dull. Each impus is a rompus. Rompuses are not opaque. Each rompus is a zumpus. Wren is a vumpus.", "question": "Is the following statement true or false? Wren is opaque.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Wren is a vumpus.", "Every vumpus is a wumpus.", "Wren is a wumpus.", "Each wumpus is a tumpus.", "Wren is a tumpus.", "Every tumpus is an impus.", "Wren is an impus.", "Each impus is a rompus.", "Wren is a rompus.", "Rompuses are not opaque.", "Wren is not opaque." ] }, { "id": "ProntoQA_399", "context": "Each wumpus is cold. Every wumpus is a jompus. Each jompus is not orange. Every jompus is a numpus. Numpuses are nervous. Every numpus is a vumpus. Each vumpus is amenable. Each vumpus is a dumpus. Each dumpus is not opaque. Dumpuses are yumpuses. Yumpuses are luminous. Every yumpus is a zumpus. Tumpuses are opaque. Each zumpus is earthy. Zumpuses are rompuses. Rompuses are not large. Rompuses are impuses. Polly is a wumpus.", "question": "Is the following statement true or false? Polly is not opaque.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Polly is a wumpus.", "Every wumpus is a jompus.", "Polly is a jompus.", "Every jompus is a numpus.", "Polly is a numpus.", "Every numpus is a vumpus.", "Polly is a vumpus.", "Each vumpus is a dumpus.", "Polly is a dumpus.", "Each dumpus is not opaque.", "Polly is not opaque." ] }, { "id": "ProntoQA_400", "context": "Every vumpus is large. Every zumpus is happy. Vumpuses are rompuses. Rompuses are spicy. Rompuses are wumpuses. Wumpuses are mean. Each wumpus is a yumpus. Yumpuses are not brown. Yumpuses are jompuses. Each jompus is not cold. Each jompus is a numpus. Numpuses are not happy. Each numpus is a tumpus. Every tumpus is not earthy. Tumpuses are impuses. Each impus is dull. Impuses are dumpuses. Wren is a rompus.", "question": "Is the following statement true or false? Wren is not happy.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Wren is a rompus.", "Rompuses are wumpuses.", "Wren is a wumpus.", "Each wumpus is a yumpus.", "Wren is a yumpus.", "Yumpuses are jompuses.", "Wren is a jompus.", "Each jompus is a numpus.", "Wren is a numpus.", "Numpuses are not happy.", "Wren is not happy." ] }, { "id": "ProntoQA_401", "context": "Rompuses are temperate. Each rompus is a wumpus. Wumpuses are not small. Wumpuses are impuses. Each impus is not blue. Every zumpus is liquid. Impuses are numpuses. Each numpus is not transparent. Every numpus is a yumpus. Yumpuses are shy. Yumpuses are jompuses. Jompuses are not liquid. Every jompus is a dumpus. Dumpuses are spicy. Every dumpus is a tumpus. Sally is a wumpus.", "question": "Is the following statement true or false? Sally is not liquid.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sally is a wumpus.", "Wumpuses are impuses.", "Sally is an impus.", "Impuses are numpuses.", "Sally is a numpus.", "Every numpus is a yumpus.", "Sally is a yumpus.", "Yumpuses are jompuses.", "Sally is a jompus.", "Jompuses are not liquid.", "Sally is not liquid." ] }, { "id": "ProntoQA_402", "context": "Each wumpus is angry. Zumpuses are not bright. Each zumpus is a jompus. Jompuses are large. Jompuses are yumpuses. Yumpuses are liquid. Yumpuses are impuses. Each impus is hot. Each impus is a vumpus. Vumpuses are orange. Each vumpus is a rompus. Every rompus is not spicy. Each rompus is a numpus. Numpuses are not angry. Every numpus is a tumpus. Each tumpus is not shy. Tumpuses are dumpuses. Stella is a yumpus.", "question": "Is the following statement true or false? Stella is not angry.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Stella is a yumpus.", "Yumpuses are impuses.", "Stella is an impus.", "Each impus is a vumpus.", "Stella is a vumpus.", "Each vumpus is a rompus.", "Stella is a rompus.", "Each rompus is a numpus.", "Stella is a numpus.", "Numpuses are not angry.", "Stella is not angry." ] }, { "id": "ProntoQA_403", "context": "Each vumpus is sour. Vumpuses are wumpuses. Wumpuses are opaque. Wumpuses are yumpuses. Yumpuses are angry. Each yumpus is a tumpus. Tumpuses are earthy. Tumpuses are rompuses. Each rompus is not wooden. Every rompus is a zumpus. Zumpuses are not bright. Every zumpus is a jompus. Each jompus is blue. Each jompus is an impus. Every dumpus is wooden. Every impus is not large. Every impus is a numpus. Alex is a vumpus.", "question": "Is the following statement true or false? Alex is wooden.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Alex is a vumpus.", "Vumpuses are wumpuses.", "Alex is a wumpus.", "Wumpuses are yumpuses.", "Alex is a yumpus.", "Each yumpus is a tumpus.", "Alex is a tumpus.", "Tumpuses are rompuses.", "Alex is a rompus.", "Each rompus is not wooden.", "Alex is not wooden." ] }, { "id": "ProntoQA_404", "context": "Each yumpus is not orange. Yumpuses are tumpuses. Tumpuses are cold. Every tumpus is an impus. Each impus is spicy. Impuses are dumpuses. Every jompus is not happy. Dumpuses are not small. Dumpuses are wumpuses. Wumpuses are earthy. Wumpuses are vumpuses. Vumpuses are transparent. Each vumpus is a zumpus. Each zumpus is happy. Zumpuses are rompuses. Fae is an impus.", "question": "Is the following statement true or false? Fae is not happy.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Fae is an impus.", "Impuses are dumpuses.", "Fae is a dumpus.", "Dumpuses are wumpuses.", "Fae is a wumpus.", "Wumpuses are vumpuses.", "Fae is a vumpus.", "Each vumpus is a zumpus.", "Fae is a zumpus.", "Each zumpus is happy.", "Fae is happy." ] }, { "id": "ProntoQA_405", "context": "Each wumpus is wooden. Each wumpus is a tumpus. Every tumpus is feisty. Tumpuses are impuses. Impuses are orange. Each impus is a yumpus. Each yumpus is not bitter. Yumpuses are rompuses. Each rompus is not dull. Each rompus is a jompus. Each jompus is not floral. Jompuses are numpuses. Every numpus is kind. Numpuses are dumpuses. Dumpuses are transparent. Each zumpus is dull. Every dumpus is a vumpus. Wren is a wumpus.", "question": "Is the following statement true or false? Wren is not dull.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Wren is a wumpus.", "Each wumpus is a tumpus.", "Wren is a tumpus.", "Tumpuses are impuses.", "Wren is an impus.", "Each impus is a yumpus.", "Wren is a yumpus.", "Yumpuses are rompuses.", "Wren is a rompus.", "Each rompus is not dull.", "Wren is not dull." ] }, { "id": "ProntoQA_406", "context": "Every impus is dull. Each impus is a tumpus. Tumpuses are feisty. Each tumpus is a yumpus. Yumpuses are luminous. Every yumpus is a zumpus. Each zumpus is brown. Zumpuses are rompuses. Rompuses are cold. Every rompus is a numpus. Every dumpus is not cold. Each numpus is transparent. Every numpus is a jompus. Every jompus is earthy. Jompuses are vumpuses. Every vumpus is aggressive. Each vumpus is a wumpus. Sally is an impus.", "question": "Is the following statement true or false? Sally is cold.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sally is an impus.", "Each impus is a tumpus.", "Sally is a tumpus.", "Each tumpus is a yumpus.", "Sally is a yumpus.", "Every yumpus is a zumpus.", "Sally is a zumpus.", "Zumpuses are rompuses.", "Sally is a rompus.", "Rompuses are cold.", "Sally is cold." ] }, { "id": "ProntoQA_407", "context": "Each impus is earthy. Zumpuses are happy. Impuses are yumpuses. Each yumpus is transparent. Yumpuses are vumpuses. Every vumpus is not spicy. Every vumpus is a numpus. Numpuses are large. Every numpus is a rompus. Each rompus is not hot. Every rompus is a dumpus. Every dumpus is not happy. Every dumpus is a wumpus. Wumpuses are not red. Each wumpus is a jompus. Jompuses are kind. Every jompus is a tumpus. Max is a yumpus.", "question": "Is the following statement true or false? Max is not happy.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Max is a yumpus.", "Yumpuses are vumpuses.", "Max is a vumpus.", "Every vumpus is a numpus.", "Max is a numpus.", "Every numpus is a rompus.", "Max is a rompus.", "Every rompus is a dumpus.", "Max is a dumpus.", "Every dumpus is not happy.", "Max is not happy." ] }, { "id": "ProntoQA_408", "context": "Every yumpus is happy. Each yumpus is a jompus. Each jompus is sour. Each jompus is a rompus. Rompuses are large. Each wumpus is mean. Every rompus is a zumpus. Zumpuses are opaque. Zumpuses are impuses. Impuses are blue. Impuses are vumpuses. Vumpuses are not mean. Vumpuses are tumpuses. Tumpuses are wooden. Each tumpus is a numpus. Numpuses are not bright. Every numpus is a dumpus. Sally is a jompus.", "question": "Is the following statement true or false? Sally is mean.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sally is a jompus.", "Each jompus is a rompus.", "Sally is a rompus.", "Every rompus is a zumpus.", "Sally is a zumpus.", "Zumpuses are impuses.", "Sally is an impus.", "Impuses are vumpuses.", "Sally is a vumpus.", "Vumpuses are not mean.", "Sally is not mean." ] }, { "id": "ProntoQA_409", "context": "Every rompus is bright. Rompuses are zumpuses. Zumpuses are not blue. Zumpuses are jompuses. Jompuses are not opaque. Jompuses are numpuses. Numpuses are small. Numpuses are yumpuses. Each yumpus is feisty. Each yumpus is a wumpus. Every dumpus is not cold. Wumpuses are cold. Wumpuses are vumpuses. Stella is a zumpus.", "question": "Is the following statement true or false? Stella is cold.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Stella is a zumpus.", "Zumpuses are jompuses.", "Stella is a jompus.", "Jompuses are numpuses.", "Stella is a numpus.", "Numpuses are yumpuses.", "Stella is a yumpus.", "Each yumpus is a wumpus.", "Stella is a wumpus.", "Wumpuses are cold.", "Stella is cold." ] }, { "id": "ProntoQA_410", "context": "Every vumpus is transparent. Each vumpus is a tumpus. Every tumpus is not cold. Tumpuses are rompuses. Each rompus is not amenable. Rompuses are jompuses. Every jompus is not large. Jompuses are impuses. Impuses are metallic. Impuses are zumpuses. Zumpuses are sweet. Each zumpus is a dumpus. Every dumpus is orange. Numpuses are not sweet. Dumpuses are yumpuses. Sam is a tumpus.", "question": "Is the following statement true or false? Sam is not sweet.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sam is a tumpus.", "Tumpuses are rompuses.", "Sam is a rompus.", "Rompuses are jompuses.", "Sam is a jompus.", "Jompuses are impuses.", "Sam is an impus.", "Impuses are zumpuses.", "Sam is a zumpus.", "Zumpuses are sweet.", "Sam is sweet." ] }, { "id": "ProntoQA_411", "context": "Each rompus is kind. Rompuses are wumpuses. Every wumpus is large. Numpuses are not bright. Every wumpus is an impus. Each impus is spicy. Each impus is a vumpus. Each vumpus is liquid. Every vumpus is a yumpus. Yumpuses are not floral. Each yumpus is a jompus. Jompuses are bright. Jompuses are dumpuses. Dumpuses are transparent. Each dumpus is a zumpus. Every zumpus is cold. Zumpuses are tumpuses. Stella is a wumpus.", "question": "Is the following statement true or false? Stella is bright.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Stella is a wumpus.", "Every wumpus is an impus.", "Stella is an impus.", "Each impus is a vumpus.", "Stella is a vumpus.", "Every vumpus is a yumpus.", "Stella is a yumpus.", "Each yumpus is a jompus.", "Stella is a jompus.", "Jompuses are bright.", "Stella is bright." ] }, { "id": "ProntoQA_412", "context": "Each vumpus is transparent. Every vumpus is an impus. Each impus is red. Every impus is a zumpus. Zumpuses are mean. Every zumpus is a numpus. Each numpus is not hot. Numpuses are tumpuses. Each tumpus is not happy. Each jompus is happy. Tumpuses are rompuses. Max is a vumpus.", "question": "Is the following statement true or false? Max is happy.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Max is a vumpus.", "Every vumpus is an impus.", "Max is an impus.", "Every impus is a zumpus.", "Max is a zumpus.", "Every zumpus is a numpus.", "Max is a numpus.", "Numpuses are tumpuses.", "Max is a tumpus.", "Each tumpus is not happy.", "Max is not happy." ] }, { "id": "ProntoQA_413", "context": "Wumpuses are dull. Wumpuses are vumpuses. Every vumpus is metallic. Vumpuses are rompuses. Every rompus is not aggressive. Every rompus is a tumpus. Tumpuses are nervous. Every tumpus is a dumpus. Each dumpus is spicy. Every dumpus is a yumpus. Yumpuses are transparent. Every yumpus is a numpus. Each numpus is not small. Each numpus is a zumpus. Every zumpus is not brown. Each zumpus is an impus. Jompuses are small. Rex is a rompus.", "question": "Is the following statement true or false? Rex is small.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Rex is a rompus.", "Every rompus is a tumpus.", "Rex is a tumpus.", "Every tumpus is a dumpus.", "Rex is a dumpus.", "Every dumpus is a yumpus.", "Rex is a yumpus.", "Every yumpus is a numpus.", "Rex is a numpus.", "Each numpus is not small.", "Rex is not small." ] }, { "id": "ProntoQA_414", "context": "Every wumpus is red. Wumpuses are tumpuses. Every rompus is not dull. Each tumpus is not sour. Tumpuses are jompuses. Jompuses are temperate. Jompuses are yumpuses. Each yumpus is nervous. Yumpuses are dumpuses. Dumpuses are not opaque. Dumpuses are impuses. Each impus is dull. Every impus is a vumpus. Every vumpus is earthy. Vumpuses are numpuses. Every numpus is large. Numpuses are zumpuses. Sally is a tumpus.", "question": "Is the following statement true or false? Sally is not dull.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sally is a tumpus.", "Tumpuses are jompuses.", "Sally is a jompus.", "Jompuses are yumpuses.", "Sally is a yumpus.", "Yumpuses are dumpuses.", "Sally is a dumpus.", "Dumpuses are impuses.", "Sally is an impus.", "Each impus is dull.", "Sally is dull." ] }, { "id": "ProntoQA_415", "context": "Every yumpus is feisty. Yumpuses are numpuses. Every numpus is not mean. Numpuses are tumpuses. Tumpuses are fruity. Tumpuses are rompuses. Each rompus is cold. Every rompus is a zumpus. Every zumpus is not dull. Zumpuses are impuses. Impuses are metallic. Every impus is a jompus. Wumpuses are red. Jompuses are small. Jompuses are vumpuses. Vumpuses are not red. Vumpuses are dumpuses. Alex is a rompus.", "question": "Is the following statement true or false? Alex is red.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Alex is a rompus.", "Every rompus is a zumpus.", "Alex is a zumpus.", "Zumpuses are impuses.", "Alex is an impus.", "Every impus is a jompus.", "Alex is a jompus.", "Jompuses are vumpuses.", "Alex is a vumpus.", "Vumpuses are not red.", "Alex is not red." ] }, { "id": "ProntoQA_416", "context": "Zumpuses are hot. Zumpuses are wumpuses. Wumpuses are fruity. Wumpuses are numpuses. Numpuses are not wooden. Numpuses are jompuses. Each jompus is not large. Jompuses are tumpuses. Tumpuses are opaque. Tumpuses are yumpuses. Each rompus is not opaque. Yumpuses are bitter. Yumpuses are dumpuses. Polly is a zumpus.", "question": "Is the following statement true or false? Polly is not opaque.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Polly is a zumpus.", "Zumpuses are wumpuses.", "Polly is a wumpus.", "Wumpuses are numpuses.", "Polly is a numpus.", "Numpuses are jompuses.", "Polly is a jompus.", "Jompuses are tumpuses.", "Polly is a tumpus.", "Tumpuses are opaque.", "Polly is opaque." ] }, { "id": "ProntoQA_417", "context": "Every tumpus is orange. Tumpuses are vumpuses. Each vumpus is not small. Vumpuses are wumpuses. Wumpuses are transparent. Wumpuses are zumpuses. Each zumpus is dull. Every zumpus is a jompus. Every rompus is metallic. Each jompus is floral. Every jompus is a yumpus. Yumpuses are not metallic. Yumpuses are dumpuses. Each dumpus is not cold. Each dumpus is a numpus. Numpuses are shy. Numpuses are impuses. Polly is a vumpus.", "question": "Is the following statement true or false? Polly is not metallic.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Polly is a vumpus.", "Vumpuses are wumpuses.", "Polly is a wumpus.", "Wumpuses are zumpuses.", "Polly is a zumpus.", "Every zumpus is a jompus.", "Polly is a jompus.", "Every jompus is a yumpus.", "Polly is a yumpus.", "Yumpuses are not metallic.", "Polly is not metallic." ] }, { "id": "ProntoQA_418", "context": "Tumpuses are large. Every tumpus is a jompus. Each jompus is transparent. Every jompus is a wumpus. Each wumpus is not metallic. Every wumpus is a numpus. Numpuses are aggressive. Numpuses are dumpuses. Every rompus is not red. Dumpuses are red. Dumpuses are impuses. Impuses are bright. Each impus is a vumpus. Each vumpus is earthy. Vumpuses are yumpuses. Each yumpus is sweet. Each yumpus is a zumpus. Alex is a tumpus.", "question": "Is the following statement true or false? Alex is not red.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Alex is a tumpus.", "Every tumpus is a jompus.", "Alex is a jompus.", "Every jompus is a wumpus.", "Alex is a wumpus.", "Every wumpus is a numpus.", "Alex is a numpus.", "Numpuses are dumpuses.", "Alex is a dumpus.", "Dumpuses are red.", "Alex is red." ] }, { "id": "ProntoQA_419", "context": "Each dumpus is not orange. Every dumpus is a tumpus. Tumpuses are floral. Tumpuses are rompuses. Rompuses are luminous. Each rompus is a yumpus. Each vumpus is small. Yumpuses are not cold. Each yumpus is a zumpus. Every zumpus is opaque. Zumpuses are jompuses. Jompuses are nervous. Each jompus is an impus. Impuses are not small. Each impus is a wumpus. Each wumpus is angry. Wumpuses are numpuses. Wren is a rompus.", "question": "Is the following statement true or false? Wren is not small.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Wren is a rompus.", "Each rompus is a yumpus.", "Wren is a yumpus.", "Each yumpus is a zumpus.", "Wren is a zumpus.", "Zumpuses are jompuses.", "Wren is a jompus.", "Each jompus is an impus.", "Wren is an impus.", "Impuses are not small.", "Wren is not small." ] }, { "id": "ProntoQA_420", "context": "Every impus is bright. Every impus is a dumpus. Dumpuses are happy. Dumpuses are yumpuses. Every yumpus is not sour. Yumpuses are numpuses. Every numpus is mean. Numpuses are tumpuses. Every tumpus is hot. Tumpuses are wumpuses. Wumpuses are metallic. Every wumpus is a jompus. Rompuses are not opaque. Each jompus is opaque. Jompuses are zumpuses. Each zumpus is blue. Zumpuses are vumpuses. Rex is a yumpus.", "question": "Is the following statement true or false? Rex is not opaque.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Rex is a yumpus.", "Yumpuses are numpuses.", "Rex is a numpus.", "Numpuses are tumpuses.", "Rex is a tumpus.", "Tumpuses are wumpuses.", "Rex is a wumpus.", "Every wumpus is a jompus.", "Rex is a jompus.", "Each jompus is opaque.", "Rex is opaque." ] }, { "id": "ProntoQA_421", "context": "Every numpus is not transparent. Every numpus is a wumpus. Every wumpus is not hot. Every wumpus is an impus. Each impus is liquid. Impuses are tumpuses. Tumpuses are brown. Tumpuses are jompuses. Jompuses are not spicy. Jompuses are dumpuses. Dumpuses are kind. Dumpuses are rompuses. Each rompus is not floral. Every rompus is a yumpus. Yumpuses are not nervous. Each zumpus is nervous. Each yumpus is a vumpus. Alex is a tumpus.", "question": "Is the following statement true or false? Alex is nervous.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Alex is a tumpus.", "Tumpuses are jompuses.", "Alex is a jompus.", "Jompuses are dumpuses.", "Alex is a dumpus.", "Dumpuses are rompuses.", "Alex is a rompus.", "Every rompus is a yumpus.", "Alex is a yumpus.", "Yumpuses are not nervous.", "Alex is not nervous." ] }, { "id": "ProntoQA_422", "context": "Every wumpus is small. Wumpuses are yumpuses. Yumpuses are spicy. Every yumpus is a jompus. Jompuses are hot. Jompuses are tumpuses. Tumpuses are transparent. Impuses are not happy. Tumpuses are rompuses. Every rompus is kind. Each rompus is a numpus. Numpuses are earthy. Each numpus is a zumpus. Zumpuses are wooden. Zumpuses are dumpuses. Dumpuses are happy. Dumpuses are vumpuses. Fae is a tumpus.", "question": "Is the following statement true or false? Fae is not happy.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Fae is a tumpus.", "Tumpuses are rompuses.", "Fae is a rompus.", "Each rompus is a numpus.", "Fae is a numpus.", "Each numpus is a zumpus.", "Fae is a zumpus.", "Zumpuses are dumpuses.", "Fae is a dumpus.", "Dumpuses are happy.", "Fae is happy." ] }, { "id": "ProntoQA_423", "context": "Each rompus is not cold. Rompuses are wumpuses. Zumpuses are not transparent. Wumpuses are orange. Every wumpus is a yumpus. Each yumpus is not fruity. Yumpuses are numpuses. Numpuses are sour. Numpuses are jompuses. Each jompus is transparent. Jompuses are tumpuses. Tumpuses are liquid. Every tumpus is a dumpus. Dumpuses are angry. Dumpuses are vumpuses. Vumpuses are shy. Vumpuses are impuses. Wren is a rompus.", "question": "Is the following statement true or false? Wren is not transparent.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Wren is a rompus.", "Rompuses are wumpuses.", "Wren is a wumpus.", "Every wumpus is a yumpus.", "Wren is a yumpus.", "Yumpuses are numpuses.", "Wren is a numpus.", "Numpuses are jompuses.", "Wren is a jompus.", "Each jompus is transparent.", "Wren is transparent." ] }, { "id": "ProntoQA_424", "context": "Vumpuses are not nervous. Every vumpus is a jompus. Each jompus is fruity. Jompuses are rompuses. Each rompus is wooden. Each rompus is an impus. Wumpuses are mean. Impuses are transparent. Each impus is a numpus. Numpuses are not orange. Every numpus is a zumpus. Zumpuses are cold. Zumpuses are yumpuses. Each yumpus is not mean. Every yumpus is a tumpus. Polly is a rompus.", "question": "Is the following statement true or false? Polly is not mean.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Polly is a rompus.", "Each rompus is an impus.", "Polly is an impus.", "Each impus is a numpus.", "Polly is a numpus.", "Every numpus is a zumpus.", "Polly is a zumpus.", "Zumpuses are yumpuses.", "Polly is a yumpus.", "Each yumpus is not mean.", "Polly is not mean." ] }, { "id": "ProntoQA_425", "context": "Impuses are shy. Impuses are rompuses. Each rompus is temperate. Rompuses are vumpuses. Vumpuses are dull. Every vumpus is a wumpus. Each wumpus is not fruity. Every wumpus is a zumpus. Each zumpus is not wooden. Every zumpus is a yumpus. Each yumpus is red. Every tumpus is not opaque. Every yumpus is a numpus. Each numpus is opaque. Every numpus is a jompus. Jompuses are small. Every jompus is a dumpus. Wren is a vumpus.", "question": "Is the following statement true or false? Wren is not opaque.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Wren is a vumpus.", "Every vumpus is a wumpus.", "Wren is a wumpus.", "Every wumpus is a zumpus.", "Wren is a zumpus.", "Every zumpus is a yumpus.", "Wren is a yumpus.", "Every yumpus is a numpus.", "Wren is a numpus.", "Each numpus is opaque.", "Wren is opaque." ] }, { "id": "ProntoQA_426", "context": "Vumpuses are not bitter. Every vumpus is a rompus. Every rompus is temperate. Rompuses are zumpuses. Each zumpus is not large. Each zumpus is a jompus. Each jompus is not bright. Jompuses are tumpuses. Each tumpus is orange. Tumpuses are yumpuses. Yumpuses are feisty. Every yumpus is a wumpus. Wumpuses are transparent. Each wumpus is an impus. Every impus is not floral. Numpuses are floral. Impuses are dumpuses. Wren is a jompus.", "question": "Is the following statement true or false? Wren is floral.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Wren is a jompus.", "Jompuses are tumpuses.", "Wren is a tumpus.", "Tumpuses are yumpuses.", "Wren is a yumpus.", "Every yumpus is a wumpus.", "Wren is a wumpus.", "Each wumpus is an impus.", "Wren is an impus.", "Every impus is not floral.", "Wren is not floral." ] }, { "id": "ProntoQA_427", "context": "Jompuses are bright. Jompuses are vumpuses. Each vumpus is cold. Vumpuses are dumpuses. Dumpuses are mean. Dumpuses are rompuses. Each rompus is spicy. Rompuses are impuses. Impuses are not earthy. Every impus is a yumpus. Each numpus is not small. Yumpuses are not metallic. Yumpuses are tumpuses. Tumpuses are small. Tumpuses are zumpuses. Zumpuses are opaque. Zumpuses are wumpuses. Alex is a dumpus.", "question": "Is the following statement true or false? Alex is small.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Alex is a dumpus.", "Dumpuses are rompuses.", "Alex is a rompus.", "Rompuses are impuses.", "Alex is an impus.", "Every impus is a yumpus.", "Alex is a yumpus.", "Yumpuses are tumpuses.", "Alex is a tumpus.", "Tumpuses are small.", "Alex is small." ] }, { "id": "ProntoQA_428", "context": "Jompuses are feisty. Yumpuses are sour. Each yumpus is a rompus. Every rompus is dull. Every rompus is a wumpus. Every wumpus is small. Wumpuses are numpuses. Every numpus is metallic. Numpuses are tumpuses. Each tumpus is not feisty. Tumpuses are zumpuses. Zumpuses are fruity. Every zumpus is a vumpus. Vumpuses are angry. Vumpuses are dumpuses. Each dumpus is cold. Dumpuses are impuses. Rex is a yumpus.", "question": "Is the following statement true or false? Rex is not feisty.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Rex is a yumpus.", "Each yumpus is a rompus.", "Rex is a rompus.", "Every rompus is a wumpus.", "Rex is a wumpus.", "Wumpuses are numpuses.", "Rex is a numpus.", "Numpuses are tumpuses.", "Rex is a tumpus.", "Each tumpus is not feisty.", "Rex is not feisty." ] }, { "id": "ProntoQA_429", "context": "Every tumpus is earthy. Each tumpus is a jompus. Every jompus is spicy. Jompuses are impuses. Impuses are red. Each impus is a rompus. Numpuses are not shy. Every rompus is not amenable. Rompuses are zumpuses. Zumpuses are cold. Zumpuses are vumpuses. Vumpuses are metallic. Vumpuses are wumpuses. Wumpuses are shy. Wumpuses are yumpuses. Yumpuses are small. Yumpuses are dumpuses. Wren is an impus.", "question": "Is the following statement true or false? Wren is not shy.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Wren is an impus.", "Each impus is a rompus.", "Wren is a rompus.", "Rompuses are zumpuses.", "Wren is a zumpus.", "Zumpuses are vumpuses.", "Wren is a vumpus.", "Vumpuses are wumpuses.", "Wren is a wumpus.", "Wumpuses are shy.", "Wren is shy." ] }, { "id": "ProntoQA_430", "context": "Zumpuses are transparent. Every zumpus is a tumpus. Each vumpus is shy. Tumpuses are red. Tumpuses are numpuses. Each numpus is floral. Each numpus is a yumpus. Yumpuses are not bright. Yumpuses are jompuses. Jompuses are mean. Jompuses are rompuses. Each rompus is not shy. Each rompus is an impus. Impuses are small. Impuses are wumpuses. Wumpuses are luminous. Wumpuses are dumpuses. Wren is a tumpus.", "question": "Is the following statement true or false? Wren is not shy.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Wren is a tumpus.", "Tumpuses are numpuses.", "Wren is a numpus.", "Each numpus is a yumpus.", "Wren is a yumpus.", "Yumpuses are jompuses.", "Wren is a jompus.", "Jompuses are rompuses.", "Wren is a rompus.", "Each rompus is not shy.", "Wren is not shy." ] }, { "id": "ProntoQA_431", "context": "Impuses are transparent. Each impus is a jompus. Jompuses are not spicy. Jompuses are zumpuses. Every zumpus is hot. Each zumpus is a dumpus. Every dumpus is floral. Dumpuses are wumpuses. Wumpuses are liquid. Wumpuses are numpuses. Numpuses are not nervous. Each vumpus is not large. Every numpus is a rompus. Rompuses are large. Rompuses are yumpuses. Each yumpus is dull. Yumpuses are tumpuses. Rex is a zumpus.", "question": "Is the following statement true or false? Rex is large.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Rex is a zumpus.", "Each zumpus is a dumpus.", "Rex is a dumpus.", "Dumpuses are wumpuses.", "Rex is a wumpus.", "Wumpuses are numpuses.", "Rex is a numpus.", "Every numpus is a rompus.", "Rex is a rompus.", "Rompuses are large.", "Rex is large." ] }, { "id": "ProntoQA_432", "context": "Yumpuses are hot. Yumpuses are dumpuses. Each dumpus is not dull. Each wumpus is not red. Dumpuses are impuses. Each impus is large. Impuses are tumpuses. Every tumpus is amenable. Tumpuses are vumpuses. Vumpuses are red. Every vumpus is a jompus. Every jompus is happy. Every jompus is a numpus. Sally is a yumpus.", "question": "Is the following statement true or false? Sally is not red.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sally is a yumpus.", "Yumpuses are dumpuses.", "Sally is a dumpus.", "Dumpuses are impuses.", "Sally is an impus.", "Impuses are tumpuses.", "Sally is a tumpus.", "Tumpuses are vumpuses.", "Sally is a vumpus.", "Vumpuses are red.", "Sally is red." ] }, { "id": "ProntoQA_433", "context": "Yumpuses are floral. Yumpuses are dumpuses. Dumpuses are sweet. Every dumpus is a jompus. Each jompus is luminous. Jompuses are tumpuses. Tumpuses are blue. Every tumpus is a wumpus. Every wumpus is hot. Wumpuses are zumpuses. Every zumpus is large. Numpuses are not hot. Zumpuses are vumpuses. Vumpuses are not opaque. Every vumpus is a rompus. Each rompus is bright. Every rompus is an impus. Wren is a yumpus.", "question": "Is the following statement true or false? Wren is not hot.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Wren is a yumpus.", "Yumpuses are dumpuses.", "Wren is a dumpus.", "Every dumpus is a jompus.", "Wren is a jompus.", "Jompuses are tumpuses.", "Wren is a tumpus.", "Every tumpus is a wumpus.", "Wren is a wumpus.", "Every wumpus is hot.", "Wren is hot." ] }, { "id": "ProntoQA_434", "context": "Jompuses are earthy. Jompuses are wumpuses. Wumpuses are not liquid. Wumpuses are yumpuses. Every yumpus is orange. Impuses are not small. Each yumpus is a dumpus. Dumpuses are transparent. Dumpuses are tumpuses. Tumpuses are small. Each tumpus is a numpus. Every numpus is not bright. Numpuses are rompuses. Every rompus is angry. Rompuses are vumpuses. Vumpuses are nervous. Every vumpus is a zumpus. Max is a jompus.", "question": "Is the following statement true or false? Max is small.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Max is a jompus.", "Jompuses are wumpuses.", "Max is a wumpus.", "Wumpuses are yumpuses.", "Max is a yumpus.", "Each yumpus is a dumpus.", "Max is a dumpus.", "Dumpuses are tumpuses.", "Max is a tumpus.", "Tumpuses are small.", "Max is small." ] }, { "id": "ProntoQA_435", "context": "Every impus is happy. Each impus is a yumpus. Every yumpus is not floral. Wumpuses are opaque. Yumpuses are tumpuses. Each tumpus is liquid. Every tumpus is a jompus. Jompuses are not cold. Jompuses are dumpuses. Each dumpus is mean. Every dumpus is a rompus. Rompuses are not opaque. Every rompus is a zumpus. Every zumpus is dull. Zumpuses are numpuses. Numpuses are small. Numpuses are vumpuses. Rex is a yumpus.", "question": "Is the following statement true or false? Rex is not opaque.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Rex is a yumpus.", "Yumpuses are tumpuses.", "Rex is a tumpus.", "Every tumpus is a jompus.", "Rex is a jompus.", "Jompuses are dumpuses.", "Rex is a dumpus.", "Every dumpus is a rompus.", "Rex is a rompus.", "Rompuses are not opaque.", "Rex is not opaque." ] }, { "id": "ProntoQA_436", "context": "Every impus is not wooden. Impuses are rompuses. Rompuses are dull. Rompuses are jompuses. Every jompus is hot. Jompuses are vumpuses. Vumpuses are brown. Vumpuses are dumpuses. Each dumpus is not small. Dumpuses are yumpuses. Tumpuses are not floral. Every yumpus is floral. Each yumpus is a zumpus. Zumpuses are not happy. Every zumpus is a wumpus. Every wumpus is not mean. Wumpuses are numpuses. Max is a rompus.", "question": "Is the following statement true or false? Max is floral.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Max is a rompus.", "Rompuses are jompuses.", "Max is a jompus.", "Jompuses are vumpuses.", "Max is a vumpus.", "Vumpuses are dumpuses.", "Max is a dumpus.", "Dumpuses are yumpuses.", "Max is a yumpus.", "Every yumpus is floral.", "Max is floral." ] }, { "id": "ProntoQA_437", "context": "Every tumpus is cold. Tumpuses are impuses. Impuses are bright. Impuses are yumpuses. Yumpuses are spicy. Every rompus is earthy. Each yumpus is a wumpus. Wumpuses are small. Wumpuses are jompuses. Jompuses are orange. Jompuses are vumpuses. Each vumpus is not earthy. Each vumpus is a dumpus. Fae is an impus.", "question": "Is the following statement true or false? Fae is earthy.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Fae is an impus.", "Impuses are yumpuses.", "Fae is a yumpus.", "Each yumpus is a wumpus.", "Fae is a wumpus.", "Wumpuses are jompuses.", "Fae is a jompus.", "Jompuses are vumpuses.", "Fae is a vumpus.", "Each vumpus is not earthy.", "Fae is not earthy." ] }, { "id": "ProntoQA_438", "context": "Zumpuses are cold. Every tumpus is small. Zumpuses are wumpuses. Wumpuses are orange. Wumpuses are dumpuses. Every dumpus is not sweet. Each dumpus is a vumpus. Each vumpus is liquid. Every vumpus is a numpus. Numpuses are floral. Numpuses are rompuses. Each rompus is happy. Rompuses are impuses. Impuses are not small. Impuses are yumpuses. Yumpuses are not dull. Yumpuses are jompuses. Sam is a dumpus.", "question": "Is the following statement true or false? Sam is small.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sam is a dumpus.", "Each dumpus is a vumpus.", "Sam is a vumpus.", "Every vumpus is a numpus.", "Sam is a numpus.", "Numpuses are rompuses.", "Sam is a rompus.", "Rompuses are impuses.", "Sam is an impus.", "Impuses are not small.", "Sam is not small." ] }, { "id": "ProntoQA_439", "context": "Each tumpus is orange. Rompuses are not temperate. Rompuses are wumpuses. Wumpuses are fruity. Every wumpus is a yumpus. Yumpuses are happy. Yumpuses are vumpuses. Each vumpus is transparent. Each vumpus is a zumpus. Every zumpus is amenable. Every zumpus is a numpus. Every numpus is not orange. Numpuses are dumpuses. Each dumpus is metallic. Every dumpus is a jompus. Sally is a wumpus.", "question": "Is the following statement true or false? Sally is not orange.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sally is a wumpus.", "Every wumpus is a yumpus.", "Sally is a yumpus.", "Yumpuses are vumpuses.", "Sally is a vumpus.", "Each vumpus is a zumpus.", "Sally is a zumpus.", "Every zumpus is a numpus.", "Sally is a numpus.", "Every numpus is not orange.", "Sally is not orange." ] }, { "id": "ProntoQA_440", "context": "Rompuses are fruity. Rompuses are wumpuses. Wumpuses are dull. Wumpuses are impuses. Every impus is wooden. Every impus is a vumpus. Every vumpus is not mean. Every vumpus is a jompus. Every jompus is large. Every jompus is a tumpus. Tumpuses are cold. Tumpuses are numpuses. Each numpus is not transparent. Every numpus is a yumpus. Yumpuses are nervous. Each yumpus is a dumpus. Every zumpus is not cold. Stella is a wumpus.", "question": "Is the following statement true or false? Stella is cold.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Stella is a wumpus.", "Wumpuses are impuses.", "Stella is an impus.", "Every impus is a vumpus.", "Stella is a vumpus.", "Every vumpus is a jompus.", "Stella is a jompus.", "Every jompus is a tumpus.", "Stella is a tumpus.", "Tumpuses are cold.", "Stella is cold." ] }, { "id": "ProntoQA_441", "context": "Numpuses are aggressive. Yumpuses are small. Every numpus is an impus. Impuses are shy. Impuses are wumpuses. Wumpuses are red. Wumpuses are rompuses. Each rompus is earthy. Every rompus is a dumpus. Each dumpus is transparent. Dumpuses are vumpuses. Every vumpus is not small. Each vumpus is a tumpus. Tumpuses are metallic. Each tumpus is a zumpus. Zumpuses are dull. Each zumpus is a jompus. Fae is an impus.", "question": "Is the following statement true or false? Fae is small.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Fae is an impus.", "Impuses are wumpuses.", "Fae is a wumpus.", "Wumpuses are rompuses.", "Fae is a rompus.", "Every rompus is a dumpus.", "Fae is a dumpus.", "Dumpuses are vumpuses.", "Fae is a vumpus.", "Every vumpus is not small.", "Fae is not small." ] }, { "id": "ProntoQA_442", "context": "Each numpus is bright. Numpuses are yumpuses. Yumpuses are not kind. Each yumpus is an impus. Every impus is not luminous. Each impus is a vumpus. Each vumpus is transparent. Vumpuses are tumpuses. Tumpuses are not floral. Tumpuses are rompuses. Rompuses are not large. Rompuses are zumpuses. Wumpuses are large. Each zumpus is not cold. Zumpuses are dumpuses. Dumpuses are not shy. Every dumpus is a jompus. Alex is a yumpus.", "question": "Is the following statement true or false? Alex is not large.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Alex is a yumpus.", "Each yumpus is an impus.", "Alex is an impus.", "Each impus is a vumpus.", "Alex is a vumpus.", "Vumpuses are tumpuses.", "Alex is a tumpus.", "Tumpuses are rompuses.", "Alex is a rompus.", "Rompuses are not large.", "Alex is not large." ] }, { "id": "ProntoQA_443", "context": "Numpuses are not metallic. Each yumpus is hot. Yumpuses are dumpuses. Dumpuses are not bright. Every dumpus is a rompus. Every rompus is spicy. Every rompus is a vumpus. Every vumpus is not fruity. Vumpuses are tumpuses. Tumpuses are large. Every tumpus is a wumpus. Every wumpus is not amenable. Every wumpus is a zumpus. Zumpuses are metallic. Every zumpus is an impus. Each impus is not transparent. Every impus is a jompus. Max is a rompus.", "question": "Is the following statement true or false? Max is not metallic.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Max is a rompus.", "Every rompus is a vumpus.", "Max is a vumpus.", "Vumpuses are tumpuses.", "Max is a tumpus.", "Every tumpus is a wumpus.", "Max is a wumpus.", "Every wumpus is a zumpus.", "Max is a zumpus.", "Zumpuses are metallic.", "Max is metallic." ] }, { "id": "ProntoQA_444", "context": "Every numpus is bright. Numpuses are zumpuses. Each zumpus is not fruity. Each zumpus is a yumpus. Each yumpus is bitter. Yumpuses are wumpuses. Every wumpus is feisty. Every wumpus is a dumpus. Each dumpus is angry. Each jompus is large. Each dumpus is a vumpus. Every vumpus is not temperate. Vumpuses are tumpuses. Tumpuses are transparent. Each tumpus is an impus. Each impus is not large. Impuses are rompuses. Alex is a wumpus.", "question": "Is the following statement true or false? Alex is not large.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Alex is a wumpus.", "Every wumpus is a dumpus.", "Alex is a dumpus.", "Each dumpus is a vumpus.", "Alex is a vumpus.", "Vumpuses are tumpuses.", "Alex is a tumpus.", "Each tumpus is an impus.", "Alex is an impus.", "Each impus is not large.", "Alex is not large." ] }, { "id": "ProntoQA_445", "context": "Yumpuses are transparent. Each yumpus is an impus. Every impus is not bright. Each impus is a zumpus. Zumpuses are not large. Zumpuses are jompuses. Every jompus is floral. Rompuses are not sour. Each jompus is a wumpus. Wumpuses are brown. Wumpuses are dumpuses. Every dumpus is not cold. Every dumpus is a vumpus. Every vumpus is not liquid. Vumpuses are numpuses. Each numpus is sour. Every numpus is a tumpus. Stella is a jompus.", "question": "Is the following statement true or false? Stella is sour.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Stella is a jompus.", "Each jompus is a wumpus.", "Stella is a wumpus.", "Wumpuses are dumpuses.", "Stella is a dumpus.", "Every dumpus is a vumpus.", "Stella is a vumpus.", "Vumpuses are numpuses.", "Stella is a numpus.", "Each numpus is sour.", "Stella is sour." ] }, { "id": "ProntoQA_446", "context": "Yumpuses are not temperate. Yumpuses are dumpuses. Dumpuses are shy. Each dumpus is a numpus. Every numpus is floral. Numpuses are jompuses. Jompuses are not amenable. Each jompus is a zumpus. Wumpuses are transparent. Zumpuses are not transparent. Zumpuses are impuses. Impuses are brown. Impuses are vumpuses. Each vumpus is not sour. Each vumpus is a tumpus. Tumpuses are wooden. Every tumpus is a rompus. Alex is a yumpus.", "question": "Is the following statement true or false? Alex is transparent.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Alex is a yumpus.", "Yumpuses are dumpuses.", "Alex is a dumpus.", "Each dumpus is a numpus.", "Alex is a numpus.", "Numpuses are jompuses.", "Alex is a jompus.", "Each jompus is a zumpus.", "Alex is a zumpus.", "Zumpuses are not transparent.", "Alex is not transparent." ] }, { "id": "ProntoQA_447", "context": "Each tumpus is blue. Each tumpus is an impus. Each impus is not sour. Each impus is a wumpus. Wumpuses are feisty. Every wumpus is a yumpus. Every yumpus is hot. Yumpuses are jompuses. Every jompus is not mean. Every jompus is a vumpus. Vumpuses are luminous. Every vumpus is a dumpus. Every zumpus is mean. Sally is a tumpus.", "question": "Is the following statement true or false? Sally is mean.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sally is a tumpus.", "Each tumpus is an impus.", "Sally is an impus.", "Each impus is a wumpus.", "Sally is a wumpus.", "Every wumpus is a yumpus.", "Sally is a yumpus.", "Yumpuses are jompuses.", "Sally is a jompus.", "Every jompus is not mean.", "Sally is not mean." ] }, { "id": "ProntoQA_448", "context": "Vumpuses are feisty. Vumpuses are tumpuses. Tumpuses are not large. Tumpuses are zumpuses. Zumpuses are not luminous. Zumpuses are jompuses. Every jompus is not dull. Jompuses are yumpuses. Every yumpus is not earthy. Yumpuses are wumpuses. Rompuses are not red. Wumpuses are transparent. Wumpuses are numpuses. Each numpus is not aggressive. Numpuses are impuses. Every impus is red. Impuses are dumpuses. Wren is a jompus.", "question": "Is the following statement true or false? Wren is not red.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Wren is a jompus.", "Jompuses are yumpuses.", "Wren is a yumpus.", "Yumpuses are wumpuses.", "Wren is a wumpus.", "Wumpuses are numpuses.", "Wren is a numpus.", "Numpuses are impuses.", "Wren is an impus.", "Every impus is red.", "Wren is red." ] }, { "id": "ProntoQA_449", "context": "Impuses are not angry. Every impus is a vumpus. Each vumpus is not happy. Each vumpus is a yumpus. Every jompus is metallic. Each yumpus is transparent. Every yumpus is a numpus. Each numpus is small. Numpuses are zumpuses. Every zumpus is sweet. Zumpuses are rompuses. Each rompus is orange. Every rompus is a tumpus. Every tumpus is cold. Tumpuses are wumpuses. Wumpuses are not metallic. Each wumpus is a dumpus. Max is a numpus.", "question": "Is the following statement true or false? Max is metallic.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Max is a numpus.", "Numpuses are zumpuses.", "Max is a zumpus.", "Zumpuses are rompuses.", "Max is a rompus.", "Every rompus is a tumpus.", "Max is a tumpus.", "Tumpuses are wumpuses.", "Max is a wumpus.", "Wumpuses are not metallic.", "Max is not metallic." ] }, { "id": "ProntoQA_450", "context": "Each vumpus is not bitter. Vumpuses are yumpuses. Yumpuses are floral. Yumpuses are jompuses. Jompuses are not dull. Every jompus is a tumpus. Each tumpus is happy. Each tumpus is a rompus. Rompuses are liquid. Rompuses are wumpuses. Every wumpus is mean. Wumpuses are zumpuses. Zumpuses are large. Zumpuses are dumpuses. Each dumpus is transparent. Every numpus is not transparent. Every dumpus is an impus. Stella is a tumpus.", "question": "Is the following statement true or false? Stella is not transparent.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Stella is a tumpus.", "Each tumpus is a rompus.", "Stella is a rompus.", "Rompuses are wumpuses.", "Stella is a wumpus.", "Wumpuses are zumpuses.", "Stella is a zumpus.", "Zumpuses are dumpuses.", "Stella is a dumpus.", "Each dumpus is transparent.", "Stella is transparent." ] }, { "id": "ProntoQA_451", "context": "Yumpuses are not dull. Vumpuses are angry. Each yumpus is a wumpus. Wumpuses are nervous. Each wumpus is a dumpus. Each dumpus is not opaque. Dumpuses are tumpuses. Tumpuses are cold. Each tumpus is an impus. Impuses are floral. Every impus is a zumpus. Every zumpus is wooden. Zumpuses are rompuses. Each rompus is not angry. Rompuses are numpuses. Numpuses are large. Numpuses are jompuses. Wren is a dumpus.", "question": "Is the following statement true or false? Wren is angry.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Wren is a dumpus.", "Dumpuses are tumpuses.", "Wren is a tumpus.", "Each tumpus is an impus.", "Wren is an impus.", "Every impus is a zumpus.", "Wren is a zumpus.", "Zumpuses are rompuses.", "Wren is a rompus.", "Each rompus is not angry.", "Wren is not angry." ] }, { "id": "ProntoQA_452", "context": "Wumpuses are not wooden. Each wumpus is a tumpus. Each tumpus is sour. Every tumpus is a vumpus. Vumpuses are large. Vumpuses are rompuses. Every rompus is transparent. Rompuses are zumpuses. Zumpuses are not nervous. Jompuses are red. Zumpuses are dumpuses. Dumpuses are bright. Dumpuses are yumpuses. Every yumpus is not red. Each yumpus is a numpus. Numpuses are not mean. Every numpus is an impus. Max is a vumpus.", "question": "Is the following statement true or false? Max is red.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Max is a vumpus.", "Vumpuses are rompuses.", "Max is a rompus.", "Rompuses are zumpuses.", "Max is a zumpus.", "Zumpuses are dumpuses.", "Max is a dumpus.", "Dumpuses are yumpuses.", "Max is a yumpus.", "Every yumpus is not red.", "Max is not red." ] }, { "id": "ProntoQA_453", "context": "Rompuses are opaque. Each rompus is a dumpus. Dumpuses are shy. Dumpuses are numpuses. Numpuses are not sour. Every numpus is an impus. Each impus is mean. Impuses are zumpuses. Each tumpus is brown. Zumpuses are not brown. Zumpuses are jompuses. Jompuses are hot. Jompuses are wumpuses. Every wumpus is earthy. Every wumpus is a vumpus. Every vumpus is dull. Every vumpus is a yumpus. Wren is a rompus.", "question": "Is the following statement true or false? Wren is not brown.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Wren is a rompus.", "Each rompus is a dumpus.", "Wren is a dumpus.", "Dumpuses are numpuses.", "Wren is a numpus.", "Every numpus is an impus.", "Wren is an impus.", "Impuses are zumpuses.", "Wren is a zumpus.", "Zumpuses are not brown.", "Wren is not brown." ] }, { "id": "ProntoQA_454", "context": "Each dumpus is not floral. Every yumpus is not cold. Every yumpus is a vumpus. Vumpuses are bright. Every vumpus is a zumpus. Every zumpus is not shy. Zumpuses are numpuses. Every numpus is not angry. Every numpus is a jompus. Each jompus is wooden. Each jompus is a wumpus. Wumpuses are floral. Every wumpus is a rompus. Rompuses are spicy. Each rompus is an impus. Impuses are not opaque. Every impus is a tumpus. Sally is a vumpus.", "question": "Is the following statement true or false? Sally is floral.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sally is a vumpus.", "Every vumpus is a zumpus.", "Sally is a zumpus.", "Zumpuses are numpuses.", "Sally is a numpus.", "Every numpus is a jompus.", "Sally is a jompus.", "Each jompus is a wumpus.", "Sally is a wumpus.", "Wumpuses are floral.", "Sally is floral." ] }, { "id": "ProntoQA_455", "context": "Every rompus is not blue. Each rompus is a jompus. Jompuses are dull. Jompuses are yumpuses. Every yumpus is amenable. Every dumpus is feisty. Every yumpus is a zumpus. Zumpuses are floral. Each zumpus is a tumpus. Tumpuses are large. Tumpuses are vumpuses. Vumpuses are not feisty. Each vumpus is an impus. Every impus is transparent. Every impus is a wumpus. Each wumpus is not luminous. Every wumpus is a numpus. Polly is a jompus.", "question": "Is the following statement true or false? Polly is feisty.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Polly is a jompus.", "Jompuses are yumpuses.", "Polly is a yumpus.", "Every yumpus is a zumpus.", "Polly is a zumpus.", "Each zumpus is a tumpus.", "Polly is a tumpus.", "Tumpuses are vumpuses.", "Polly is a vumpus.", "Vumpuses are not feisty.", "Polly is not feisty." ] }, { "id": "ProntoQA_456", "context": "Vumpuses are mean. Vumpuses are impuses. Impuses are not opaque. Every impus is a jompus. Jompuses are brown. Every jompus is a yumpus. Each yumpus is nervous. Each yumpus is a zumpus. Zumpuses are bitter. Zumpuses are rompuses. Dumpuses are not earthy. Rompuses are earthy. Rompuses are numpuses. Numpuses are hot. Each numpus is a wumpus. Wumpuses are bright. Every wumpus is a tumpus. Fae is an impus.", "question": "Is the following statement true or false? Fae is not earthy.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Fae is an impus.", "Every impus is a jompus.", "Fae is a jompus.", "Every jompus is a yumpus.", "Fae is a yumpus.", "Each yumpus is a zumpus.", "Fae is a zumpus.", "Zumpuses are rompuses.", "Fae is a rompus.", "Rompuses are earthy.", "Fae is earthy." ] }, { "id": "ProntoQA_457", "context": "Impuses are happy. Impuses are vumpuses. Each vumpus is opaque. Vumpuses are rompuses. Every rompus is floral. Every rompus is a wumpus. Yumpuses are not large. Every wumpus is bitter. Every wumpus is a numpus. Numpuses are not cold. Numpuses are dumpuses. Every dumpus is bright. Dumpuses are jompuses. Each jompus is not red. Jompuses are zumpuses. Zumpuses are large. Every zumpus is a tumpus. Stella is a wumpus.", "question": "Is the following statement true or false? Stella is not large.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Stella is a wumpus.", "Every wumpus is a numpus.", "Stella is a numpus.", "Numpuses are dumpuses.", "Stella is a dumpus.", "Dumpuses are jompuses.", "Stella is a jompus.", "Jompuses are zumpuses.", "Stella is a zumpus.", "Zumpuses are large.", "Stella is large." ] }, { "id": "ProntoQA_458", "context": "Tumpuses are bright. Tumpuses are jompuses. Rompuses are not transparent. Every jompus is not angry. Each jompus is a wumpus. Wumpuses are not shy. Every wumpus is an impus. Impuses are small. Impuses are vumpuses. Every vumpus is brown. Vumpuses are dumpuses. Dumpuses are transparent. Dumpuses are yumpuses. Yumpuses are sour. Every yumpus is a numpus. Numpuses are liquid. Every numpus is a zumpus. Rex is a jompus.", "question": "Is the following statement true or false? Rex is not transparent.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Rex is a jompus.", "Each jompus is a wumpus.", "Rex is a wumpus.", "Every wumpus is an impus.", "Rex is an impus.", "Impuses are vumpuses.", "Rex is a vumpus.", "Vumpuses are dumpuses.", "Rex is a dumpus.", "Dumpuses are transparent.", "Rex is transparent." ] }, { "id": "ProntoQA_459", "context": "Each tumpus is cold. Every tumpus is a vumpus. Vumpuses are luminous. Every vumpus is a yumpus. Yumpuses are happy. Yumpuses are jompuses. Every jompus is kind. Every rompus is not earthy. Jompuses are zumpuses. Each zumpus is not spicy. Each zumpus is a wumpus. Each wumpus is earthy. Wumpuses are numpuses. Every numpus is opaque. Numpuses are impuses. Every impus is dull. Every impus is a dumpus. Max is a vumpus.", "question": "Is the following statement true or false? Max is earthy.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Max is a vumpus.", "Every vumpus is a yumpus.", "Max is a yumpus.", "Yumpuses are jompuses.", "Max is a jompus.", "Jompuses are zumpuses.", "Max is a zumpus.", "Each zumpus is a wumpus.", "Max is a wumpus.", "Each wumpus is earthy.", "Max is earthy." ] }, { "id": "ProntoQA_460", "context": "Each jompus is liquid. Dumpuses are bright. Dumpuses are impuses. Each impus is opaque. Impuses are yumpuses. Every yumpus is fruity. Each yumpus is a vumpus. Vumpuses are not orange. Every vumpus is a tumpus. Every tumpus is not liquid. Tumpuses are wumpuses. Each wumpus is small. Each wumpus is a numpus. Numpuses are feisty. Every numpus is a zumpus. Each zumpus is spicy. Zumpuses are rompuses. Sam is a dumpus.", "question": "Is the following statement true or false? Sam is not liquid.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sam is a dumpus.", "Dumpuses are impuses.", "Sam is an impus.", "Impuses are yumpuses.", "Sam is a yumpus.", "Each yumpus is a vumpus.", "Sam is a vumpus.", "Every vumpus is a tumpus.", "Sam is a tumpus.", "Every tumpus is not liquid.", "Sam is not liquid." ] }, { "id": "ProntoQA_461", "context": "Each zumpus is not earthy. Each zumpus is a vumpus. Vumpuses are not hot. Vumpuses are yumpuses. Yumpuses are metallic. Yumpuses are wumpuses. Every wumpus is bright. Each wumpus is a dumpus. Each dumpus is spicy. Each dumpus is an impus. Every impus is opaque. Every tumpus is not opaque. Every impus is a numpus. Numpuses are not kind. Numpuses are rompuses. Each rompus is not nervous. Rompuses are jompuses. Rex is a vumpus.", "question": "Is the following statement true or false? Rex is opaque.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Rex is a vumpus.", "Vumpuses are yumpuses.", "Rex is a yumpus.", "Yumpuses are wumpuses.", "Rex is a wumpus.", "Each wumpus is a dumpus.", "Rex is a dumpus.", "Each dumpus is an impus.", "Rex is an impus.", "Every impus is opaque.", "Rex is opaque." ] }, { "id": "ProntoQA_462", "context": "Rompuses are fruity. Every rompus is a tumpus. Every tumpus is metallic. Tumpuses are wumpuses. Wumpuses are mean. Wumpuses are jompuses. Each jompus is not brown. Every dumpus is opaque. Jompuses are vumpuses. Vumpuses are not opaque. Each vumpus is a numpus. Every numpus is nervous. Every numpus is a yumpus. Yumpuses are temperate. Each yumpus is an impus. Each impus is sour. Each impus is a zumpus. Sally is a rompus.", "question": "Is the following statement true or false? Sally is not opaque.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sally is a rompus.", "Every rompus is a tumpus.", "Sally is a tumpus.", "Tumpuses are wumpuses.", "Sally is a wumpus.", "Wumpuses are jompuses.", "Sally is a jompus.", "Jompuses are vumpuses.", "Sally is a vumpus.", "Vumpuses are not opaque.", "Sally is not opaque." ] }, { "id": "ProntoQA_463", "context": "Jompuses are hot. Jompuses are rompuses. Each rompus is not transparent. Rompuses are dumpuses. Tumpuses are brown. Dumpuses are liquid. Dumpuses are wumpuses. Wumpuses are floral. Each wumpus is a vumpus. Each vumpus is spicy. Vumpuses are zumpuses. Each zumpus is not brown. Every zumpus is a yumpus. Stella is a rompus.", "question": "Is the following statement true or false? Stella is brown.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Stella is a rompus.", "Rompuses are dumpuses.", "Stella is a dumpus.", "Dumpuses are wumpuses.", "Stella is a wumpus.", "Each wumpus is a vumpus.", "Stella is a vumpus.", "Vumpuses are zumpuses.", "Stella is a zumpus.", "Each zumpus is not brown.", "Stella is not brown." ] }, { "id": "ProntoQA_464", "context": "Tumpuses are luminous. Tumpuses are jompuses. Each jompus is floral. Each jompus is a dumpus. Dumpuses are large. Dumpuses are zumpuses. Zumpuses are dull. Wumpuses are cold. Every zumpus is a yumpus. Each yumpus is not cold. Each yumpus is a vumpus. Each vumpus is not brown. Vumpuses are rompuses. Every rompus is transparent. Rompuses are impuses. Every impus is not nervous. Impuses are numpuses. Alex is a tumpus.", "question": "Is the following statement true or false? Alex is cold.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Alex is a tumpus.", "Tumpuses are jompuses.", "Alex is a jompus.", "Each jompus is a dumpus.", "Alex is a dumpus.", "Dumpuses are zumpuses.", "Alex is a zumpus.", "Every zumpus is a yumpus.", "Alex is a yumpus.", "Each yumpus is not cold.", "Alex is not cold." ] }, { "id": "ProntoQA_465", "context": "Wumpuses are not liquid. Wumpuses are yumpuses. Each yumpus is opaque. Each yumpus is a jompus. Every jompus is bright. Every jompus is an impus. Impuses are not hot. Impuses are rompuses. Rompuses are nervous. Rompuses are numpuses. Numpuses are sour. Numpuses are vumpuses. Vumpuses are blue. Dumpuses are not sour. Vumpuses are zumpuses. Each zumpus is large. Each zumpus is a tumpus. Rex is a yumpus.", "question": "Is the following statement true or false? Rex is not sour.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Rex is a yumpus.", "Each yumpus is a jompus.", "Rex is a jompus.", "Every jompus is an impus.", "Rex is an impus.", "Impuses are rompuses.", "Rex is a rompus.", "Rompuses are numpuses.", "Rex is a numpus.", "Numpuses are sour.", "Rex is sour." ] }, { "id": "ProntoQA_466", "context": "Zumpuses are angry. Impuses are shy. Impuses are vumpuses. Vumpuses are metallic. Vumpuses are tumpuses. Tumpuses are earthy. Every tumpus is a yumpus. Yumpuses are large. Yumpuses are numpuses. Numpuses are not angry. Every numpus is a jompus. Every jompus is not spicy. Every jompus is a wumpus. Each wumpus is transparent. Wumpuses are dumpuses. Dumpuses are brown. Each dumpus is a rompus. Max is an impus.", "question": "Is the following statement true or false? Max is angry.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Max is an impus.", "Impuses are vumpuses.", "Max is a vumpus.", "Vumpuses are tumpuses.", "Max is a tumpus.", "Every tumpus is a yumpus.", "Max is a yumpus.", "Yumpuses are numpuses.", "Max is a numpus.", "Numpuses are not angry.", "Max is not angry." ] }, { "id": "ProntoQA_467", "context": "Every rompus is transparent. Each rompus is a dumpus. Each dumpus is not dull. Dumpuses are vumpuses. Each vumpus is hot. Vumpuses are jompuses. Every jompus is not metallic. Jompuses are impuses. Impuses are floral. Every impus is a numpus. Zumpuses are not blue. Numpuses are feisty. Numpuses are yumpuses. Yumpuses are spicy. Yumpuses are wumpuses. Every wumpus is blue. Wumpuses are tumpuses. Alex is a jompus.", "question": "Is the following statement true or false? Alex is not blue.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Alex is a jompus.", "Jompuses are impuses.", "Alex is an impus.", "Every impus is a numpus.", "Alex is a numpus.", "Numpuses are yumpuses.", "Alex is a yumpus.", "Yumpuses are wumpuses.", "Alex is a wumpus.", "Every wumpus is blue.", "Alex is blue." ] }, { "id": "ProntoQA_468", "context": "Tumpuses are fruity. Each tumpus is a yumpus. Yumpuses are cold. Every yumpus is a zumpus. Zumpuses are spicy. Every zumpus is a rompus. Each rompus is not opaque. Rompuses are impuses. Impuses are kind. Impuses are vumpuses. Each jompus is not kind. Vumpuses are not feisty. Vumpuses are dumpuses. Dumpuses are not liquid. Dumpuses are wumpuses. Each wumpus is not large. Each wumpus is a numpus. Polly is a tumpus.", "question": "Is the following statement true or false? Polly is not kind.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Polly is a tumpus.", "Each tumpus is a yumpus.", "Polly is a yumpus.", "Every yumpus is a zumpus.", "Polly is a zumpus.", "Every zumpus is a rompus.", "Polly is a rompus.", "Rompuses are impuses.", "Polly is an impus.", "Impuses are kind.", "Polly is kind." ] }, { "id": "ProntoQA_469", "context": "Every wumpus is not dull. Each wumpus is a tumpus. Tumpuses are hot. Tumpuses are yumpuses. Yumpuses are red. Yumpuses are rompuses. Each rompus is spicy. Every vumpus is mean. Rompuses are dumpuses. Each dumpus is large. Dumpuses are impuses. Impuses are not mean. Each impus is a jompus. Each jompus is transparent. Every jompus is a numpus. Numpuses are not liquid. Numpuses are zumpuses. Polly is a tumpus.", "question": "Is the following statement true or false? Polly is not mean.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Polly is a tumpus.", "Tumpuses are yumpuses.", "Polly is a yumpus.", "Yumpuses are rompuses.", "Polly is a rompus.", "Rompuses are dumpuses.", "Polly is a dumpus.", "Dumpuses are impuses.", "Polly is an impus.", "Impuses are not mean.", "Polly is not mean." ] }, { "id": "ProntoQA_470", "context": "Each jompus is earthy. Every jompus is a zumpus. Each zumpus is liquid. Zumpuses are wumpuses. Every wumpus is not mean. Wumpuses are vumpuses. Each vumpus is transparent. Every vumpus is a yumpus. Every yumpus is small. Yumpuses are rompuses. Dumpuses are not small. Every rompus is not bright. Each rompus is a tumpus. Tumpuses are orange. Each tumpus is a numpus. Every numpus is hot. Numpuses are impuses. Alex is a jompus.", "question": "Is the following statement true or false? Alex is not small.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Alex is a jompus.", "Every jompus is a zumpus.", "Alex is a zumpus.", "Zumpuses are wumpuses.", "Alex is a wumpus.", "Wumpuses are vumpuses.", "Alex is a vumpus.", "Every vumpus is a yumpus.", "Alex is a yumpus.", "Every yumpus is small.", "Alex is small." ] }, { "id": "ProntoQA_471", "context": "Vumpuses are not bright. Each dumpus is metallic. Each dumpus is a wumpus. Wumpuses are spicy. Wumpuses are impuses. Impuses are red. Each impus is a numpus. Numpuses are opaque. Each numpus is a rompus. Each rompus is bright. Rompuses are zumpuses. Zumpuses are large. Zumpuses are yumpuses. Each yumpus is aggressive. Yumpuses are tumpuses. Tumpuses are not shy. Every tumpus is a jompus. Sam is a dumpus.", "question": "Is the following statement true or false? Sam is bright.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sam is a dumpus.", "Each dumpus is a wumpus.", "Sam is a wumpus.", "Wumpuses are impuses.", "Sam is an impus.", "Each impus is a numpus.", "Sam is a numpus.", "Each numpus is a rompus.", "Sam is a rompus.", "Each rompus is bright.", "Sam is bright." ] }, { "id": "ProntoQA_472", "context": "Numpuses are not luminous. Every numpus is a jompus. Every jompus is brown. Jompuses are vumpuses. Each vumpus is cold. Every vumpus is a tumpus. Tumpuses are mean. Tumpuses are zumpuses. Every zumpus is opaque. Each zumpus is a wumpus. Every wumpus is not small. Every yumpus is not sour. Every wumpus is an impus. Every impus is sour. Every impus is a rompus. Every rompus is happy. Rompuses are dumpuses. Wren is a vumpus.", "question": "Is the following statement true or false? Wren is not sour.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Wren is a vumpus.", "Every vumpus is a tumpus.", "Wren is a tumpus.", "Tumpuses are zumpuses.", "Wren is a zumpus.", "Each zumpus is a wumpus.", "Wren is a wumpus.", "Every wumpus is an impus.", "Wren is an impus.", "Every impus is sour.", "Wren is sour." ] }, { "id": "ProntoQA_473", "context": "Dumpuses are aggressive. Each dumpus is a zumpus. Zumpuses are small. Zumpuses are yumpuses. Yumpuses are bitter. Every yumpus is a rompus. Each rompus is not blue. Each rompus is a numpus. Each impus is liquid. Numpuses are not happy. Each numpus is a wumpus. Wumpuses are not liquid. Wumpuses are vumpuses. Vumpuses are bright. Vumpuses are tumpuses. Each tumpus is floral. Tumpuses are jompuses. Max is a zumpus.", "question": "Is the following statement true or false? Max is not liquid.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Max is a zumpus.", "Zumpuses are yumpuses.", "Max is a yumpus.", "Every yumpus is a rompus.", "Max is a rompus.", "Each rompus is a numpus.", "Max is a numpus.", "Each numpus is a wumpus.", "Max is a wumpus.", "Wumpuses are not liquid.", "Max is not liquid." ] }, { "id": "ProntoQA_474", "context": "Each zumpus is mean. Jompuses are not feisty. Jompuses are impuses. Impuses are not orange. Impuses are numpuses. Each numpus is not luminous. Numpuses are tumpuses. Tumpuses are not earthy. Tumpuses are rompuses. Rompuses are not small. Rompuses are yumpuses. Each yumpus is hot. Yumpuses are vumpuses. Each vumpus is bitter. Vumpuses are wumpuses. Every wumpus is not mean. Wumpuses are dumpuses. Sally is a tumpus.", "question": "Is the following statement true or false? Sally is mean.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sally is a tumpus.", "Tumpuses are rompuses.", "Sally is a rompus.", "Rompuses are yumpuses.", "Sally is a yumpus.", "Yumpuses are vumpuses.", "Sally is a vumpus.", "Vumpuses are wumpuses.", "Sally is a wumpus.", "Every wumpus is not mean.", "Sally is not mean." ] }, { "id": "ProntoQA_475", "context": "Each jompus is red. Each jompus is a dumpus. Every dumpus is amenable. Every dumpus is a tumpus. Tumpuses are not nervous. Each tumpus is a numpus. Every numpus is temperate. Every numpus is a vumpus. Each vumpus is not floral. Every vumpus is an impus. Impuses are bright. Impuses are wumpuses. Wumpuses are wooden. Rompuses are not bright. Each wumpus is a zumpus. Zumpuses are spicy. Every zumpus is a yumpus. Polly is a dumpus.", "question": "Is the following statement true or false? Polly is not bright.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Polly is a dumpus.", "Every dumpus is a tumpus.", "Polly is a tumpus.", "Each tumpus is a numpus.", "Polly is a numpus.", "Every numpus is a vumpus.", "Polly is a vumpus.", "Every vumpus is an impus.", "Polly is an impus.", "Impuses are bright.", "Polly is bright." ] }, { "id": "ProntoQA_476", "context": "Each wumpus is not amenable. Yumpuses are transparent. Each yumpus is a rompus. Each rompus is luminous. Rompuses are impuses. Impuses are not fruity. Each impus is a vumpus. Vumpuses are bitter. Vumpuses are jompuses. Jompuses are amenable. Every jompus is a zumpus. Zumpuses are not shy. Zumpuses are numpuses. Every numpus is cold. Every numpus is a dumpus. Every dumpus is small. Each dumpus is a tumpus. Wren is a yumpus.", "question": "Is the following statement true or false? Wren is amenable.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Wren is a yumpus.", "Each yumpus is a rompus.", "Wren is a rompus.", "Rompuses are impuses.", "Wren is an impus.", "Each impus is a vumpus.", "Wren is a vumpus.", "Vumpuses are jompuses.", "Wren is a jompus.", "Jompuses are amenable.", "Wren is amenable." ] }, { "id": "ProntoQA_477", "context": "Dumpuses are fruity. Dumpuses are vumpuses. Vumpuses are not happy. Every vumpus is a yumpus. Yumpuses are not bitter. Yumpuses are jompuses. Every jompus is not aggressive. Each jompus is a tumpus. Zumpuses are bright. Tumpuses are luminous. Every tumpus is a rompus. Rompuses are hot. Every rompus is a wumpus. Each wumpus is small. Every wumpus is a numpus. Every numpus is not bright. Each numpus is an impus. Fae is a jompus.", "question": "Is the following statement true or false? Fae is not bright.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Fae is a jompus.", "Each jompus is a tumpus.", "Fae is a tumpus.", "Every tumpus is a rompus.", "Fae is a rompus.", "Every rompus is a wumpus.", "Fae is a wumpus.", "Every wumpus is a numpus.", "Fae is a numpus.", "Every numpus is not bright.", "Fae is not bright." ] }, { "id": "ProntoQA_478", "context": "Wumpuses are spicy. Wumpuses are yumpuses. Yumpuses are aggressive. Numpuses are small. Every yumpus is a tumpus. Tumpuses are hot. Every tumpus is an impus. Impuses are not metallic. Impuses are rompuses. Every rompus is not small. Every rompus is a dumpus. Dumpuses are not floral. Every dumpus is a zumpus. Each zumpus is not bright. Each zumpus is a vumpus. Vumpuses are shy. Each vumpus is a jompus. Polly is a wumpus.", "question": "Is the following statement true or false? Polly is small.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Polly is a wumpus.", "Wumpuses are yumpuses.", "Polly is a yumpus.", "Every yumpus is a tumpus.", "Polly is a tumpus.", "Every tumpus is an impus.", "Polly is an impus.", "Impuses are rompuses.", "Polly is a rompus.", "Every rompus is not small.", "Polly is not small." ] }, { "id": "ProntoQA_479", "context": "Wumpuses are not bitter. Every impus is not blue. Impuses are rompuses. Every rompus is temperate. Each rompus is a zumpus. Every zumpus is not small. Zumpuses are yumpuses. Yumpuses are not wooden. Yumpuses are tumpuses. Every tumpus is happy. Tumpuses are numpuses. Numpuses are transparent. Numpuses are dumpuses. Every dumpus is bitter. Each dumpus is a jompus. Jompuses are not amenable. Each jompus is a vumpus. Sally is a zumpus.", "question": "Is the following statement true or false? Sally is not bitter.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sally is a zumpus.", "Zumpuses are yumpuses.", "Sally is a yumpus.", "Yumpuses are tumpuses.", "Sally is a tumpus.", "Tumpuses are numpuses.", "Sally is a numpus.", "Numpuses are dumpuses.", "Sally is a dumpus.", "Every dumpus is bitter.", "Sally is bitter." ] }, { "id": "ProntoQA_480", "context": "Rompuses are not temperate. Each rompus is a jompus. Jompuses are nervous. Jompuses are tumpuses. Tumpuses are small. Tumpuses are impuses. Every impus is orange. Every impus is a vumpus. Vumpuses are not dull. Vumpuses are yumpuses. Every yumpus is luminous. Each wumpus is dull. Yumpuses are dumpuses. Dumpuses are transparent. Dumpuses are zumpuses. Each zumpus is angry. Each zumpus is a numpus. Stella is a rompus.", "question": "Is the following statement true or false? Stella is not dull.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Stella is a rompus.", "Each rompus is a jompus.", "Stella is a jompus.", "Jompuses are tumpuses.", "Stella is a tumpus.", "Tumpuses are impuses.", "Stella is an impus.", "Every impus is a vumpus.", "Stella is a vumpus.", "Vumpuses are not dull.", "Stella is not dull." ] }, { "id": "ProntoQA_481", "context": "Each tumpus is sweet. Each tumpus is a wumpus. Wumpuses are not orange. Wumpuses are dumpuses. Every dumpus is not temperate. Dumpuses are jompuses. Every jompus is kind. Every jompus is a numpus. Numpuses are liquid. Numpuses are zumpuses. Each zumpus is large. Each zumpus is a vumpus. Every vumpus is happy. Each impus is not happy. Every vumpus is a yumpus. Yumpuses are transparent. Yumpuses are rompuses. Polly is a dumpus.", "question": "Is the following statement true or false? Polly is happy.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Polly is a dumpus.", "Dumpuses are jompuses.", "Polly is a jompus.", "Every jompus is a numpus.", "Polly is a numpus.", "Numpuses are zumpuses.", "Polly is a zumpus.", "Each zumpus is a vumpus.", "Polly is a vumpus.", "Every vumpus is happy.", "Polly is happy." ] }, { "id": "ProntoQA_482", "context": "Zumpuses are angry. Zumpuses are jompuses. Every jompus is not happy. Each jompus is a tumpus. Tumpuses are not earthy. Tumpuses are wumpuses. Each wumpus is blue. Every wumpus is a rompus. Rompuses are not transparent. Every rompus is a numpus. Every numpus is sweet. Numpuses are yumpuses. Yumpuses are not large. Every yumpus is a vumpus. Every impus is temperate. Every vumpus is not temperate. Each vumpus is a dumpus. Rex is a wumpus.", "question": "Is the following statement true or false? Rex is temperate.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Rex is a wumpus.", "Every wumpus is a rompus.", "Rex is a rompus.", "Every rompus is a numpus.", "Rex is a numpus.", "Numpuses are yumpuses.", "Rex is a yumpus.", "Every yumpus is a vumpus.", "Rex is a vumpus.", "Every vumpus is not temperate.", "Rex is not temperate." ] }, { "id": "ProntoQA_483", "context": "Each numpus is not transparent. Every numpus is a jompus. Jompuses are not shy. Each jompus is a zumpus. Zumpuses are not small. Zumpuses are dumpuses. Every dumpus is bitter. Each dumpus is a vumpus. Each vumpus is not amenable. Each vumpus is a wumpus. Each wumpus is not temperate. Wumpuses are tumpuses. Every impus is not red. Every tumpus is red. Tumpuses are rompuses. Rompuses are wooden. Rompuses are yumpuses. Sally is a zumpus.", "question": "Is the following statement true or false? Sally is not red.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Sally is a zumpus.", "Zumpuses are dumpuses.", "Sally is a dumpus.", "Each dumpus is a vumpus.", "Sally is a vumpus.", "Each vumpus is a wumpus.", "Sally is a wumpus.", "Wumpuses are tumpuses.", "Sally is a tumpus.", "Every tumpus is red.", "Sally is red." ] }, { "id": "ProntoQA_484", "context": "Every tumpus is fruity. Tumpuses are yumpuses. Yumpuses are not transparent. Yumpuses are rompuses. Every rompus is sour. Rompuses are numpuses. Every jompus is orange. Every numpus is dull. Every numpus is a dumpus. Every dumpus is not metallic. Dumpuses are vumpuses. Every vumpus is not orange. Every vumpus is a wumpus. Each wumpus is large. Wumpuses are zumpuses. Each zumpus is not temperate. Every zumpus is an impus. Fae is a yumpus.", "question": "Is the following statement true or false? Fae is not orange.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Fae is a yumpus.", "Yumpuses are rompuses.", "Fae is a rompus.", "Rompuses are numpuses.", "Fae is a numpus.", "Every numpus is a dumpus.", "Fae is a dumpus.", "Dumpuses are vumpuses.", "Fae is a vumpus.", "Every vumpus is not orange.", "Fae is not orange." ] }, { "id": "ProntoQA_485", "context": "Tumpuses are not bright. Each tumpus is a jompus. Every jompus is hot. Each jompus is a numpus. Each numpus is not kind. Every numpus is an impus. Impuses are blue. Impuses are zumpuses. Every zumpus is small. Zumpuses are wumpuses. Wumpuses are luminous. Wumpuses are yumpuses. Every yumpus is shy. Each dumpus is not luminous. Every yumpus is a rompus. Stella is a jompus.", "question": "Is the following statement true or false? Stella is not luminous.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Stella is a jompus.", "Each jompus is a numpus.", "Stella is a numpus.", "Every numpus is an impus.", "Stella is an impus.", "Impuses are zumpuses.", "Stella is a zumpus.", "Zumpuses are wumpuses.", "Stella is a wumpus.", "Wumpuses are luminous.", "Stella is luminous." ] }, { "id": "ProntoQA_486", "context": "Impuses are not blue. Every impus is a numpus. Numpuses are bitter. Numpuses are yumpuses. Yumpuses are not temperate. Each yumpus is a jompus. Rompuses are not opaque. Every jompus is metallic. Every jompus is a tumpus. Tumpuses are opaque. Every tumpus is a dumpus. Every dumpus is nervous. Dumpuses are zumpuses. Zumpuses are amenable. Zumpuses are wumpuses. Every wumpus is not fruity. Every wumpus is a vumpus. Sam is an impus.", "question": "Is the following statement true or false? Sam is opaque.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sam is an impus.", "Every impus is a numpus.", "Sam is a numpus.", "Numpuses are yumpuses.", "Sam is a yumpus.", "Each yumpus is a jompus.", "Sam is a jompus.", "Every jompus is a tumpus.", "Sam is a tumpus.", "Tumpuses are opaque.", "Sam is opaque." ] }, { "id": "ProntoQA_487", "context": "Wumpuses are aggressive. Wumpuses are jompuses. Each jompus is earthy. Jompuses are tumpuses. Each tumpus is bitter. Each tumpus is a vumpus. Vumpuses are large. Vumpuses are impuses. Impuses are bright. Each zumpus is not bright. Every impus is a rompus. Each rompus is feisty. Each rompus is a yumpus. Yumpuses are opaque. Each yumpus is a numpus. Each numpus is not wooden. Numpuses are dumpuses. Rex is a wumpus.", "question": "Is the following statement true or false? Rex is bright.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Rex is a wumpus.", "Wumpuses are jompuses.", "Rex is a jompus.", "Jompuses are tumpuses.", "Rex is a tumpus.", "Each tumpus is a vumpus.", "Rex is a vumpus.", "Vumpuses are impuses.", "Rex is an impus.", "Impuses are bright.", "Rex is bright." ] }, { "id": "ProntoQA_488", "context": "Tumpuses are wooden. Every tumpus is a yumpus. Yumpuses are sweet. Each yumpus is a dumpus. Dumpuses are dull. Dumpuses are rompuses. Rompuses are kind. Rompuses are jompuses. Jompuses are hot. Each numpus is not hot. Each jompus is a vumpus. Each vumpus is opaque. Every vumpus is a wumpus. Wumpuses are nervous. Every wumpus is a zumpus. Zumpuses are not brown. Each zumpus is an impus. Alex is a tumpus.", "question": "Is the following statement true or false? Alex is hot.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Alex is a tumpus.", "Every tumpus is a yumpus.", "Alex is a yumpus.", "Each yumpus is a dumpus.", "Alex is a dumpus.", "Dumpuses are rompuses.", "Alex is a rompus.", "Rompuses are jompuses.", "Alex is a jompus.", "Jompuses are hot.", "Alex is hot." ] }, { "id": "ProntoQA_489", "context": "Every zumpus is nervous. Zumpuses are vumpuses. Vumpuses are orange. Every vumpus is a tumpus. Tumpuses are kind. Every tumpus is a dumpus. Dumpuses are bitter. Each dumpus is a wumpus. Each wumpus is liquid. Wumpuses are yumpuses. Yumpuses are not bright. Every yumpus is a numpus. Each numpus is transparent. Numpuses are jompuses. Every jompus is not cold. Impuses are cold. Every jompus is a rompus. Rex is a dumpus.", "question": "Is the following statement true or false? Rex is cold.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Rex is a dumpus.", "Each dumpus is a wumpus.", "Rex is a wumpus.", "Wumpuses are yumpuses.", "Rex is a yumpus.", "Every yumpus is a numpus.", "Rex is a numpus.", "Numpuses are jompuses.", "Rex is a jompus.", "Every jompus is not cold.", "Rex is not cold." ] }, { "id": "ProntoQA_490", "context": "Each wumpus is red. Each wumpus is an impus. Impuses are not transparent. Every impus is a jompus. Every jompus is happy. Jompuses are vumpuses. Vumpuses are bitter. Vumpuses are rompuses. Each rompus is mean. Rompuses are zumpuses. Zumpuses are small. Every zumpus is a tumpus. Each tumpus is not earthy. Dumpuses are bright. Every tumpus is a yumpus. Yumpuses are not bright. Each yumpus is a numpus. Max is a vumpus.", "question": "Is the following statement true or false? Max is bright.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Max is a vumpus.", "Vumpuses are rompuses.", "Max is a rompus.", "Rompuses are zumpuses.", "Max is a zumpus.", "Every zumpus is a tumpus.", "Max is a tumpus.", "Every tumpus is a yumpus.", "Max is a yumpus.", "Yumpuses are not bright.", "Max is not bright." ] }, { "id": "ProntoQA_491", "context": "Each tumpus is wooden. Every tumpus is an impus. Numpuses are cold. Every impus is kind. Each impus is a jompus. Each jompus is feisty. Every jompus is a yumpus. Yumpuses are not red. Each yumpus is a rompus. Rompuses are large. Rompuses are vumpuses. Each vumpus is bright. Vumpuses are wumpuses. Wumpuses are not cold. Wumpuses are dumpuses. Dumpuses are opaque. Dumpuses are zumpuses. Stella is a jompus.", "question": "Is the following statement true or false? Stella is cold.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Stella is a jompus.", "Every jompus is a yumpus.", "Stella is a yumpus.", "Each yumpus is a rompus.", "Stella is a rompus.", "Rompuses are vumpuses.", "Stella is a vumpus.", "Vumpuses are wumpuses.", "Stella is a wumpus.", "Wumpuses are not cold.", "Stella is not cold." ] }, { "id": "ProntoQA_492", "context": "Every jompus is kind. Jompuses are wumpuses. Each wumpus is dull. Every wumpus is a vumpus. Every vumpus is not nervous. Vumpuses are zumpuses. Zumpuses are not sour. Each zumpus is a yumpus. Every yumpus is wooden. Each yumpus is an impus. Impuses are not orange. Every impus is a tumpus. Each tumpus is cold. Dumpuses are orange. Tumpuses are rompuses. Rompuses are transparent. Rompuses are numpuses. Rex is a wumpus.", "question": "Is the following statement true or false? Rex is not orange.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Rex is a wumpus.", "Every wumpus is a vumpus.", "Rex is a vumpus.", "Vumpuses are zumpuses.", "Rex is a zumpus.", "Each zumpus is a yumpus.", "Rex is a yumpus.", "Each yumpus is an impus.", "Rex is an impus.", "Impuses are not orange.", "Rex is not orange." ] }, { "id": "ProntoQA_493", "context": "Numpuses are angry. Every wumpus is not floral. Wumpuses are dumpuses. Dumpuses are feisty. Each dumpus is a zumpus. Each zumpus is not wooden. Each zumpus is an impus. Every impus is transparent. Impuses are vumpuses. Vumpuses are orange. Vumpuses are jompuses. Each jompus is not angry. Each jompus is a tumpus. Tumpuses are not spicy. Tumpuses are rompuses. Alex is a dumpus.", "question": "Is the following statement true or false? Alex is not angry.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Alex is a dumpus.", "Each dumpus is a zumpus.", "Alex is a zumpus.", "Each zumpus is an impus.", "Alex is an impus.", "Impuses are vumpuses.", "Alex is a vumpus.", "Vumpuses are jompuses.", "Alex is a jompus.", "Each jompus is not angry.", "Alex is not angry." ] }, { "id": "ProntoQA_494", "context": "Every vumpus is spicy. Each vumpus is a jompus. Every jompus is wooden. Jompuses are yumpuses. Yumpuses are dull. Every yumpus is an impus. Impuses are not transparent. Impuses are zumpuses. Zumpuses are not fruity. Every zumpus is a rompus. Each wumpus is fruity. Rompuses are not small. Rompuses are numpuses. Rex is a vumpus.", "question": "Is the following statement true or false? Rex is not fruity.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Rex is a vumpus.", "Each vumpus is a jompus.", "Rex is a jompus.", "Jompuses are yumpuses.", "Rex is a yumpus.", "Every yumpus is an impus.", "Rex is an impus.", "Impuses are zumpuses.", "Rex is a zumpus.", "Zumpuses are not fruity.", "Rex is not fruity." ] }, { "id": "ProntoQA_495", "context": "Each wumpus is nervous. Each wumpus is a vumpus. Vumpuses are not liquid. Vumpuses are tumpuses. Every tumpus is hot. Tumpuses are zumpuses. Every zumpus is sour. Each zumpus is a jompus. Jompuses are not floral. Every jompus is an impus. Every numpus is not orange. Impuses are orange. Each impus is a yumpus. Yumpuses are not opaque. Each yumpus is a rompus. Every rompus is small. Every rompus is a dumpus. Sam is a vumpus.", "question": "Is the following statement true or false? Sam is orange.", "options": [ "A) True", "B) False" ], "answer": "A", "explanation": [ "Sam is a vumpus.", "Vumpuses are tumpuses.", "Sam is a tumpus.", "Tumpuses are zumpuses.", "Sam is a zumpus.", "Each zumpus is a jompus.", "Sam is a jompus.", "Every jompus is an impus.", "Sam is an impus.", "Impuses are orange.", "Sam is orange." ] }, { "id": "ProntoQA_496", "context": "Each zumpus is not metallic. Every zumpus is a jompus. Rompuses are not aggressive. Jompuses are not red. Each jompus is a wumpus. Every wumpus is not nervous. Each wumpus is a tumpus. Tumpuses are transparent. Tumpuses are vumpuses. Every vumpus is cold. Each vumpus is a dumpus. Every dumpus is not dull. Each dumpus is a yumpus. Yumpuses are spicy. Yumpuses are numpuses. Numpuses are aggressive. Every numpus is an impus. Alex is a tumpus.", "question": "Is the following statement true or false? Alex is not aggressive.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Alex is a tumpus.", "Tumpuses are vumpuses.", "Alex is a vumpus.", "Each vumpus is a dumpus.", "Alex is a dumpus.", "Each dumpus is a yumpus.", "Alex is a yumpus.", "Yumpuses are numpuses.", "Alex is a numpus.", "Numpuses are aggressive.", "Alex is aggressive." ] }, { "id": "ProntoQA_497", "context": "Yumpuses are metallic. Yumpuses are wumpuses. Every wumpus is nervous. Every wumpus is a zumpus. Every zumpus is not sour. Zumpuses are numpuses. Each numpus is kind. Numpuses are rompuses. Rompuses are small. Every rompus is an impus. Every impus is not opaque. Impuses are dumpuses. Jompuses are not small. Dumpuses are not dull. Each dumpus is a vumpus. Each vumpus is orange. Each vumpus is a tumpus. Stella is a yumpus.", "question": "Is the following statement true or false? Stella is not small.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Stella is a yumpus.", "Yumpuses are wumpuses.", "Stella is a wumpus.", "Every wumpus is a zumpus.", "Stella is a zumpus.", "Zumpuses are numpuses.", "Stella is a numpus.", "Numpuses are rompuses.", "Stella is a rompus.", "Rompuses are small.", "Stella is small." ] }, { "id": "ProntoQA_498", "context": "Jompuses are earthy. Every jompus is a dumpus. Dumpuses are liquid. Each vumpus is not sweet. Each dumpus is a wumpus. Wumpuses are transparent. Every wumpus is a numpus. Each numpus is aggressive. Each numpus is a zumpus. Zumpuses are brown. Zumpuses are tumpuses. Tumpuses are sweet. Tumpuses are rompuses. Every rompus is not dull. Every rompus is a yumpus. Yumpuses are temperate. Yumpuses are impuses. Rex is a dumpus.", "question": "Is the following statement true or false? Rex is not sweet.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Rex is a dumpus.", "Each dumpus is a wumpus.", "Rex is a wumpus.", "Every wumpus is a numpus.", "Rex is a numpus.", "Each numpus is a zumpus.", "Rex is a zumpus.", "Zumpuses are tumpuses.", "Rex is a tumpus.", "Tumpuses are sweet.", "Rex is sweet." ] }, { "id": "ProntoQA_499", "context": "Every wumpus is brown. Every wumpus is a dumpus. Every dumpus is dull. Dumpuses are yumpuses. Yumpuses are not metallic. Every yumpus is a tumpus. Tumpuses are sour. Tumpuses are numpuses. Every numpus is opaque. Each numpus is an impus. Each impus is small. Every impus is a jompus. Each zumpus is not small. Fae is a dumpus.", "question": "Is the following statement true or false? Fae is not small.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Fae is a dumpus.", "Dumpuses are yumpuses.", "Fae is a yumpus.", "Every yumpus is a tumpus.", "Fae is a tumpus.", "Tumpuses are numpuses.", "Fae is a numpus.", "Each numpus is an impus.", "Fae is an impus.", "Each impus is small.", "Fae is small." ] }, { "id": "ProntoQA_500", "context": "Every zumpus is aggressive. Zumpuses are yumpuses. Wumpuses are not small. Each yumpus is not luminous. Every yumpus is a jompus. Jompuses are orange. Jompuses are numpuses. Each numpus is earthy. Each numpus is a rompus. Rompuses are not sweet. Each rompus is a vumpus. Every vumpus is bright. Each vumpus is a dumpus. Each dumpus is small. Dumpuses are tumpuses. Every tumpus is cold. Every tumpus is an impus. Polly is a jompus.", "question": "Is the following statement true or false? Polly is not small.", "options": [ "A) True", "B) False" ], "answer": "B", "explanation": [ "Polly is a jompus.", "Jompuses are numpuses.", "Polly is a numpus.", "Each numpus is a rompus.", "Polly is a rompus.", "Each rompus is a vumpus.", "Polly is a vumpus.", "Each vumpus is a dumpus.", "Polly is a dumpus.", "Each dumpus is small.", "Polly is small." ] } ] ================================================ FILE: data/ProofWriter/dev.json ================================================ [ { "id": "ProofWriter_AttNoneg-OWA-D5-1041_Q1", "context": "Bob is cold. Bob is quiet. Bob is red. Bob is smart. Charlie is kind. Charlie is quiet. Charlie is red. Charlie is rough. Dave is cold. Dave is kind. Dave is smart. Fiona is quiet. If something is quiet and cold then it is smart. Red, cold things are round. If something is kind and rough then it is red. All quiet things are rough. Cold, smart things are red. If something is rough then it is cold. All red things are rough. If Dave is smart and Dave is kind then Dave is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-81_Q11", "context": "The cat eats the squirrel. The cat sees the squirrel. The cow eats the squirrel. The cow sees the cat. The rabbit is round. The rabbit sees the cat. The squirrel eats the rabbit. The squirrel is cold. The squirrel needs the rabbit. The squirrel sees the cat. If someone sees the cat and they are not green then they see the cow. If the rabbit is kind and the rabbit sees the squirrel then the squirrel needs the rabbit. Rough people are cold. If someone sees the rabbit then they are not round. If someone sees the squirrel and they are not green then they need the squirrel. If someone eats the cow then they see the rabbit. If someone eats the squirrel then they are rough. If someone is cold then they eat the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1284_Q8", "context": "Anne is furry. Anne is nice. Anne is smart. Bob is young. Erin is nice. Harry is smart. Harry is young. Young things are furry. Nice, furry things are green. All green things are nice. Nice, green things are big. All green things are smart. If something is big and young then it is round. All green things are big. If Harry is young then Harry is furry. Furry, smart things are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-585_Q19", "context": "Anne is round. Bob is red. Bob is smart. Erin is furry. Erin is red. Erin is rough. Erin is smart. Fiona is big. Fiona is furry. Fiona is smart. All smart things are furry. All furry things are red. All round things are rough. If Bob is white then Bob is furry. All red, rough things are big. All rough things are smart. If Fiona is furry then Fiona is red. If Bob is round and Bob is big then Bob is furry. If Fiona is red and Fiona is white then Fiona is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-949_Q8", "context": "The bear is green. The bear likes the cat. The bear likes the dog. The bear visits the dog. The cat is young. The cat sees the bear. The cat sees the dog. The cat visits the bear. The cat visits the mouse. The dog is round. The dog likes the bear. The dog likes the mouse. The dog visits the mouse. The mouse is big. The mouse is cold. The mouse is round. If something visits the mouse and the mouse visits the dog then it is cold. If something likes the cat then it visits the dog. If something is cold then it likes the cat. If something is green then it sees the dog. If something likes the mouse then it sees the cat. If something is green and cold then it likes the cat. If something is big and it visits the bear then the bear is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-508_Q2", "context": "The bald eagle is big. The bald eagle is cold. The bald eagle is young. The cat is not kind. The cow is red. The cow likes the bald eagle. The squirrel visits the bald eagle. If something likes the cow then the cow likes the squirrel. All big things are cold. If the squirrel is red then the squirrel is young. If something likes the squirrel then the squirrel is red. If something is young then it likes the cow. If the squirrel likes the cat and the cow does not chase the squirrel then the cat likes the cow. If something visits the squirrel and the squirrel is big then it does not like the squirrel. If something is big then it visits the cow. If something visits the squirrel and it is not red then the squirrel does not visit the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-270_Q8", "context": "Charlie is green. Dave is quiet. Dave is red. Dave is not white. Erin is not big. Erin is not cold. Erin is green. Harry is big. Harry is cold. Harry is green. If someone is red then they are not white. If Charlie is quiet then Charlie is blue. If someone is quiet and red then they are blue. All white people are cold. All green people are quiet. All blue, green people are red. If someone is red and not white then they are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-487_Q19", "context": "The cat chases the lion. The cat is rough. The cat is young. The cat needs the lion. The cat needs the rabbit. The dog is green. The dog is young. The dog likes the cat. The lion is blue. The lion is green. The rabbit chases the lion. The rabbit is blue. The rabbit is rough. The rabbit likes the dog. The rabbit needs the dog. The rabbit needs the lion. If someone chases the lion then they are round. If the lion needs the rabbit and the rabbit chases the dog then the lion likes the dog. If someone is round and they chase the lion then they need the cat. If someone needs the cat and they chase the dog then they like the rabbit. If someone chases the lion and the lion is blue then the lion is round. If someone chases the rabbit then they are rough. If someone is rough and they like the rabbit then the rabbit is young. If the rabbit chases the cat and the cat needs the lion then the rabbit is young. If someone is round and they need the cat then they chase the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not like the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-971_Q5", "context": "Charlie is green. Charlie is kind. Erin is blue. Erin is kind. Fiona is green. Gary is blue. Gary is furry. Gary is green. Gary is kind. Gary is round. If someone is round and kind then they are green. All green, round people are blue. Round people are big. If someone is kind then they are furry. All blue people are kind. If someone is green then they are big. If Erin is cold and Erin is green then Erin is blue. Cold, blue people are kind. All green, big people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-804_Q16", "context": "Anne is kind. Charlie is not big. Charlie is not green. Charlie is white. Erin is big. Erin is green. Erin is white. Fiona is green. Fiona is kind. Fiona is quiet. Fiona is red. Fiona is white. If Erin is big and Erin is red then Erin is kind. All rough things are green. If something is kind then it is green. Quiet, green things are big. If something is rough and green then it is red. If something is green then it is rough. If Erin is red then Erin is green. All red, rough things are quiet. If something is quiet and not red then it is not white.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-572_Q18", "context": "Charlie is green. Charlie is kind. Charlie is nice. Charlie is rough. Erin is kind. Erin is nice. Erin is quiet. Fiona is quiet. Fiona is rough. Harry is smart. All rough, green people are quiet. If someone is green and rough then they are nice. All kind, smart people are green. If Erin is green and Erin is blue then Erin is quiet. All quiet people are smart. All kind people are green. If someone is smart then they are kind. All rough, nice people are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-285_Q16", "context": "Bob is big. Bob is cold. Bob is furry. Bob is smart. Fiona is cold. Fiona is not green. Fiona is white. Gary is smart. Harry is big. Harry is cold. Harry is smart. All green people are furry. If Gary is furry and Gary is not smart then Gary is white. Smart people are green. If Bob is not green and Bob is not white then Bob is furry. Big people are cold. If someone is smart and furry then they are big. If someone is white and not cold then they are not blue. All cold people are not blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-686_Q18", "context": "The bald eagle chases the squirrel. The bald eagle is blue. The bald eagle likes the cow. The bald eagle likes the lion. The cow chases the lion. The cow is green. The cow likes the bald eagle. The cow likes the lion. The lion likes the cow. The squirrel chases the bald eagle. The squirrel is big. The squirrel is green. The squirrel is red. The squirrel sees the bald eagle. If someone is red and they chase the bald eagle then the bald eagle is green. If someone likes the bald eagle then they like the lion. If someone is green then they see the lion. If the cow is blue then the cow likes the squirrel. If the bald eagle sees the lion then the lion sees the squirrel. If someone sees the squirrel then they are green. If someone likes the bald eagle then the bald eagle is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle chases the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-735_Q9", "context": "Bob is big. Bob is nice. Bob is smart. Charlie is nice. Dave is nice. Erin is big. Erin is blue. Erin is furry. Erin is quiet. Erin is round. Erin is smart. All nice things are big. All furry things are blue. Blue, furry things are quiet. If something is round and nice then it is blue. If Bob is round then Bob is blue. Big, quiet things are furry. If something is blue and furry then it is smart. If Charlie is nice and Charlie is big then Charlie is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-966_Q7", "context": "The bald eagle eats the cow. The bald eagle is young. The cow is nice. The cow sees the bald eagle. The dog eats the bald eagle. The tiger eats the cow. The tiger needs the bald eagle. If something is green and it eats the cow then it does not see the bald eagle. If something eats the tiger then the tiger is young. If something is red then it eats the tiger. If something sees the bald eagle then it eats the cow. If something is green and it needs the dog then it needs the bald eagle. If something sees the tiger then it needs the bald eagle. If something is red then it eats the bald eagle. If something is young then it is red. If something eats the dog and it is red then the dog is young.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-145_Q9", "context": "Anne is kind. Anne is quiet. Anne is smart. Bob is kind. Bob is nice. Bob is smart. Fiona is not nice. Fiona is red. Gary is nice. Gary is white. If Bob is kind then Bob is smart. If something is kind and nice then it is smart. If something is nice and red then it is smart. If something is quiet and not nice then it is smart. All green things are kind. If Anne is quiet and Anne is white then Anne is kind. If Fiona is not nice then Fiona is green. All smart, kind things are white. If something is kind and green then it is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-401_Q15", "context": "Anne is cold. Anne is kind. Charlie is blue. Charlie is round. Dave is blue. Fiona is not green. Fiona is kind. If Charlie is cold then Charlie is quiet. If Charlie is big then Charlie is not green. If Anne is kind then Anne is big. All big people are blue. Blue people are quiet. If Dave is kind then Dave is cold. If someone is round then they are green. Quiet people are round. If someone is kind and not blue then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-352_Q8", "context": "Charlie is furry. Charlie is green. Charlie is white. Dave is blue. Dave is cold. Gary is cold. Gary is rough. Harry is blue. Harry is furry. Harry is rough. Harry is white. Nice, cold people are green. Rough people are green. Green people are blue. If someone is blue then they are nice. Furry, green people are rough. Green, nice people are furry. White people are nice. Cold people are blue. All rough, nice people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-842_Q7", "context": "Anne is big. Anne is cold. Anne is young. Dave is round. Dave is white. Erin is cold. Erin is white. Erin is young. Gary is cold. Gary is young. If something is big then it is cold. Round things are big. Furry, round things are big. All cold things are furry. If Erin is round then Erin is young. All furry, big things are young. White things are round. If Gary is cold then Gary is white. All white, young things are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-296_Q13", "context": "Anne is green. Charlie is big. Charlie is quiet. Charlie is round. Erin is green. Erin is kind. Erin is nice. Erin is quiet. Fiona is blue. Fiona is kind. Fiona is quiet. If something is kind then it is nice. If something is round and quiet then it is blue. If Charlie is kind then Charlie is big. All big, blue things are kind. Nice things are quiet. All green things are big. Quiet things are kind. Big things are kind. If Anne is green then Anne is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-203_Q21", "context": "Charlie is cold. Charlie is young. Dave is cold. Erin is white. Fiona is nice. Fiona is white. Fiona is young. All blue things are white. If something is nice and blue then it is white. All young, blue things are not green. If something is white then it is nice. If something is nice then it is round. If Charlie is round then Charlie is white. All blue things are young. If something is cold and green then it is young. Round things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1119_Q6", "context": "Anne is blue. Anne is cold. Anne is kind. Anne is quiet. Bob is blue. Bob is kind. Bob is nice. Bob is not quiet. Dave is not furry. Dave is green. Dave is quiet. Fiona is cold. All cold people are blue. Green, nice people are kind. All blue people are kind. Kind, cold people are nice. If someone is nice then they are green. Cold, green people are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-177_Q5", "context": "Anne is furry. Anne is smart. Bob is kind. Bob is nice. Charlie is big. Charlie is green. Charlie is nice. Charlie is young. Gary is furry. Gary is kind. Gary is nice. Gary is young. If something is young then it is nice. If Anne is green then Anne is big. Smart things are nice. All smart, kind things are green. Young, big things are kind. Kind, smart things are furry. If something is nice and big then it is young. All nice things are kind. If Anne is young and Anne is big then Anne is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-315_Q16", "context": "Bob is blue. Bob is cold. Bob is green. Dave is blue. Dave is cold. Dave is green. Dave is kind. Dave is smart. Dave is white. Erin is smart. Fiona is blue. Blue people are smart. If Fiona is green and Fiona is blue then Fiona is big. Smart people are cold. If Bob is kind and Bob is blue then Bob is not green. If someone is blue then they are white. Green people are white. All big people are kind. If someone is cold then they are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-29_Q21", "context": "The bald eagle is big. The bald eagle is red. The bald eagle sees the tiger. The bald eagle visits the bear. The bear needs the bald eagle. The bear sees the bald eagle. The bear does not see the tiger. The rabbit is big. The rabbit needs the bald eagle. The rabbit needs the bear. The rabbit visits the tiger. The tiger needs the bald eagle. The tiger needs the rabbit. The tiger visits the bear. If something is big then it needs the tiger. If something needs the tiger and it sees the bald eagle then the tiger is big. If something needs the tiger and it visits the bear then the tiger needs the rabbit. If the bald eagle visits the bear and the bald eagle needs the tiger then the bear needs the tiger. If something needs the tiger then it is red. If the bear sees the rabbit then the rabbit sees the tiger. If something is blue then it visits the bear. If something is blue and it needs the tiger then it does not visit the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not visit the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-891_Q9", "context": "Bob is green. Bob is kind. Charlie is green. Charlie is not smart. Erin is not young. Fiona is nice. Fiona is young. Green, smart things are quiet. If something is kind then it is green. Smart things are young. Young things are kind. Quiet things are furry. All quiet, nice things are furry. Nice, green things are smart. If Bob is kind and Bob is not green then Bob is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-992_Q8", "context": "The bear is nice. The bear likes the cat. The bear sees the dog. The cat eats the bear. The cat is cold. The cat sees the bear. The dog eats the bear. The dog eats the lion. The dog is blue. The dog sees the cat. The lion eats the cat. The lion is cold. The lion likes the bear. The lion likes the cat. If someone is big then they eat the dog. If someone is cold then they are nice. If someone is blue and they see the bear then they see the dog. If someone eats the dog then the dog is nice. If someone is blue and they see the dog then they are big. If someone eats the bear and they are nice then they are blue. If someone eats the bear and they see the dog then the dog is big.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not see the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-242_Q23", "context": "The bald eagle chases the cow. The bald eagle is not kind. The bald eagle is round. The bear chases the tiger. The cow is red. The cow is round. The tiger sees the cow. If someone is young and they see the bald eagle then they see the bear. If someone chases the bear then the bear is young. If someone chases the tiger then they are rough. If someone chases the tiger then the tiger eats the bear. If the tiger is round and the tiger is kind then the tiger chases the bear. If someone is young then they see the bald eagle. If someone chases the cow then they chase the bear. If someone sees the bear then the bear chases the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not eat the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-70_Q11", "context": "The bald eagle chases the rabbit. The bald eagle chases the tiger. The lion needs the rabbit. The rabbit does not chase the lion. The rabbit needs the bald eagle. The rabbit needs the lion. The tiger visits the rabbit. If something chases the rabbit then it is big. If something needs the tiger then it is big. If something needs the lion and it visits the rabbit then it chases the lion. If something is big then it chases the lion. If something chases the tiger then the tiger needs the rabbit. If something visits the tiger then the tiger is not green. If something chases the lion then the lion chases the rabbit. If something chases the tiger then it visits the bald eagle. If something chases the rabbit and it does not visit the lion then the lion does not need the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion chases the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-165_Q13", "context": "Anne is furry. Anne is nice. Anne is rough. Anne is white. Erin is furry. Erin is rough. Erin is white. Fiona is big. Fiona is nice. Fiona is round. Harry is nice. Harry is rough. All furry things are white. If Harry is red then Harry is round. All round, red things are furry. If Harry is rough then Harry is round. Nice, red things are big. Round, red things are white. All nice, white things are red. If something is round then it is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1330_Q11", "context": "Bob is red. Bob is young. Charlie is big. Charlie is green. Charlie is red. Charlie is rough. Charlie is young. Dave is big. Harry is rough. Harry is round. Harry is young. All rough, white things are young. All big things are round. All white, red things are rough. All round things are green. All big things are white. If Harry is round then Harry is big. All rough, young things are red. If something is young then it is green. All green things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-115_Q19", "context": "The bald eagle is blue. The bald eagle is red. The bald eagle likes the lion. The bald eagle needs the bear. The bald eagle needs the dog. The bear is not blue. The bear is nice. The bear needs the dog. The dog chases the bald eagle. The dog is red. The dog does not need the bear. The lion does not like the bear. If something likes the lion and it is not red then it chases the lion. If something is red and it needs the bald eagle then the bald eagle needs the lion. If something is round then it does not like the dog. If the bald eagle needs the dog then the dog is round. If something likes the dog then it likes the bald eagle. If something chases the lion and the lion likes the dog then the dog does not like the lion. If the bear likes the lion then the lion likes the dog. If something likes the bear then the bear likes the lion. If something is round then it likes the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not need the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-747_Q6", "context": "The bear eats the tiger. The bear is not red. The bear likes the squirrel. The bear visits the squirrel. The mouse eats the tiger. The mouse is red. The mouse is rough. The mouse likes the bear. The mouse does not like the tiger. The squirrel likes the bear. The tiger eats the mouse. If the mouse likes the bear and the bear likes the mouse then the mouse is not kind. If someone visits the mouse then they like the squirrel. If someone is green then they visit the bear. If someone likes the bear and the bear visits the tiger then they visit the bear. If someone eats the bear and they do not like the tiger then they are green. If someone visits the mouse then the mouse eats the bear. If someone is red and they eat the tiger then the tiger visits the mouse. If someone visits the bear then they are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not like the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-56_Q2", "context": "Dave is red. Erin is quiet. Fiona is white. Harry is big. Harry is not green. Harry is quiet. Harry is red. Quiet, red people are smart. If someone is quiet then they are smart. If Dave is red then Dave is big. If Dave is smart and Dave is white then Dave is big. If Fiona is white and Fiona is red then Fiona is rough. If someone is white then they are quiet. Rough people are green. All smart people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-144_Q7", "context": "The bald eagle is big. The bald eagle is not green. The bald eagle likes the bear. The bald eagle likes the squirrel. The bear chases the lion. The bear is green. The bear visits the bald eagle. The bear visits the squirrel. The lion is not green. The lion likes the bear. The lion visits the squirrel. The squirrel chases the bald eagle. The squirrel is cold. The squirrel visits the bald eagle. If someone is cold then they are not young. All big people are not green. If the lion is big and the lion is green then the lion chases the bald eagle. If someone chases the bald eagle then they like the bear. If someone is round and they visit the bald eagle then the bald eagle likes the squirrel. If someone visits the lion then they like the bald eagle. If the lion visits the squirrel and the squirrel chases the bear then the bear chases the bald eagle. If someone visits the lion then they are cold. If someone likes the bear then they chase the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear chases the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-459_Q14", "context": "Bob is not cold. Bob is furry. Bob is round. Charlie is big. Charlie is furry. Charlie is quiet. Charlie is red. Charlie is not white. Erin is big. Gary is big. Gary is quiet. If someone is red and cold then they are furry. All furry people are round. If Charlie is furry then Charlie is round. Big people are red. Round people are quiet. If someone is red then they are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-780_Q5", "context": "Anne is big. Anne is blue. Anne is kind. Anne is nice. Charlie is big. Charlie is blue. Charlie is nice. Dave is blue. Dave is cold. Dave is nice. Harry is blue. If Charlie is cold then Charlie is nice. If Harry is kind and Harry is nice then Harry is quiet. All blue things are cold. If something is quiet then it is kind. All kind things are big. Cold things are nice. If Harry is nice and Harry is big then Harry is kind. If something is nice then it is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1258_Q18", "context": "Dave is blue. Erin is red. Erin is round. Erin is smart. Erin is white. Fiona is rough. Fiona is round. Harry is red. Harry is rough. Harry is smart. All smart, round people are blue. If Fiona is round then Fiona is red. If someone is red then they are young. If Harry is young and Harry is round then Harry is rough. If someone is young and smart then they are blue. White people are smart. Young people are round. If someone is young then they are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-173_Q11", "context": "The bald eagle eats the cow. The bald eagle is blue. The cat visits the bald eagle. The cat visits the rabbit. The cow is blue. The cow sees the rabbit. The rabbit eats the bald eagle. The rabbit is cold. The rabbit sees the cow. The rabbit visits the cat. If something visits the cow and it sees the cow then it visits the bald eagle. If something is nice then it is big. If something visits the bald eagle then it is nice. If something is cold and it visits the cow then the cow sees the cat. If something is round and it eats the bald eagle then it sees the bald eagle. If something visits the cat then it visits the rabbit. If something visits the rabbit and it sees the cow then it visits the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-413_Q22", "context": "The bear is green. The bear is kind. The mouse needs the bear. The mouse visits the bear. The mouse visits the squirrel. The mouse visits the tiger. The squirrel chases the bear. The squirrel is cold. The squirrel is nice. The tiger is green. The tiger needs the bear. If something needs the mouse then it is kind. If the mouse is young then the mouse needs the bear. If something chases the bear then it needs the tiger. If something needs the squirrel and it visits the mouse then the mouse needs the squirrel. If something visits the squirrel then it needs the mouse. If something chases the squirrel and the squirrel is nice then it is young. If something visits the mouse and the mouse is green then it needs the tiger. If something is kind and it visits the tiger then the tiger visits the squirrel. If the bear needs the squirrel and the bear visits the tiger then the bear chases the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel chases the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-977_Q22", "context": "The cat is young. The cat visits the mouse. The cow is cold. The cow likes the lion. The lion is cold. The lion likes the cat. The lion needs the mouse. The lion visits the mouse. The mouse is cold. The mouse is red. The mouse is young. The mouse likes the cat. The mouse needs the cat. The mouse needs the cow. If something needs the cat and the cat is red then it is blue. Blue things are red. If something likes the mouse and the mouse likes the cat then the cat is blue. If something is cold and red then it likes the mouse. If something needs the cow and it is cold then it is young. If something is nice then it visits the lion. If something needs the lion then it likes the cat. If something visits the cat and it likes the lion then the cat is blue. If something is cold and blue then it needs the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse needs the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-127_Q1", "context": "The bear is blue. The bear is green. The bear is red. The bear sees the rabbit. The cow is blue. The cow needs the tiger. The cow visits the rabbit. The rabbit is cold. The rabbit is nice. The rabbit needs the cow. The rabbit sees the cow. The rabbit sees the tiger. The tiger needs the bear. The tiger needs the rabbit. The tiger visits the bear. The tiger visits the cow. If something is green then it visits the tiger. If something sees the bear and it is cold then the bear is green. If the cow needs the rabbit and the rabbit needs the cow then the rabbit is red. If something is green then it needs the cow. If something visits the tiger then the tiger is red. If something needs the tiger and the tiger sees the cow then the cow needs the bear. If something sees the bear and it needs the bear then it sees the cow. If something visits the rabbit then the rabbit needs the tiger. If something needs the bear and the bear visits the tiger then it sees the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow visits the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-613_Q12", "context": "Anne is blue. Anne is nice. Anne is quiet. Anne is rough. Fiona is big. Fiona is blue. Fiona is quiet. Gary is blue. Gary is quiet. Gary is rough. Gary is white. Harry is white. All big people are rough. All blue, nice people are big. If someone is rough then they are green. All nice people are big. Green people are blue. Rough, white people are nice. White people are nice. Green people are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-908_Q13", "context": "Anne is quiet. Anne is red. Bob is kind. Bob is nice. Bob is quiet. Bob is not red. Bob is round. Charlie is big. Charlie is kind. Fiona is quiet. All round things are nice. All kind, red things are rough. If something is big then it is quiet. If something is rough then it is round. If Charlie is nice and Charlie is big then Charlie is not kind. If something is red then it is kind. If something is round and nice then it is not big.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-40_Q24", "context": "The bald eagle is big. The bald eagle likes the cat. The bald eagle sees the squirrel. The cat chases the squirrel. The cat sees the squirrel. The squirrel likes the cat. The squirrel does not like the tiger. The tiger is big. The tiger is not young. The tiger sees the squirrel. If the tiger likes the bald eagle then the bald eagle sees the squirrel. If something likes the tiger and it does not chase the cat then the cat is not big. If something sees the cat then the cat is big. If something is big then it sees the bald eagle. If something sees the bald eagle then the bald eagle is young. Cold things are big. If something chases the tiger and it sees the cat then the tiger is big. If something is big then it chases the tiger. If something sees the bald eagle then it sees the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-940_Q5", "context": "The bald eagle is kind. The bald eagle is not red. The bald eagle likes the dog. The dog needs the lion. The lion does not need the bald eagle. The mouse likes the dog. The mouse does not see the dog. If someone needs the mouse then the mouse does not see the bald eagle. If someone needs the dog then the dog needs the lion. If someone is rough then they see the mouse. If someone sees the mouse then the mouse is kind. If someone needs the lion then they do not see the bald eagle. If someone sees the dog then they need the mouse. All kind people are rough. If someone sees the mouse then they like the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle sees the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-745_Q8", "context": "The dog is green. The dog is not kind. The lion is big. The lion is round. The lion needs the dog. The mouse is big. The mouse likes the dog. The mouse does not need the rabbit. The mouse visits the dog. The rabbit is kind. The rabbit visits the dog. If someone needs the dog then they visit the lion. If someone needs the mouse then they are kind. If someone is round and they like the rabbit then the rabbit visits the mouse. If someone visits the rabbit then the rabbit visits the mouse. If someone likes the dog then the dog visits the rabbit. If the mouse visits the lion and the mouse needs the dog then the dog needs the lion. If the rabbit needs the lion then the lion needs the mouse. If someone visits the mouse then the mouse needs the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not need the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-970_Q8", "context": "Anne is blue. Anne is young. Dave is cold. Dave is furry. Erin is kind. Erin is red. Fiona is blue. Fiona is kind. Fiona is red. Fiona is young. If Dave is furry and Dave is cold then Dave is young. All nice, cold people are red. Red, young people are blue. If Anne is furry then Anne is young. If someone is young then they are kind. All kind, cold people are nice. If Anne is blue then Anne is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-354_Q18", "context": "Anne is not blue. Anne is green. Anne is kind. Charlie is white. Gary is green. Gary is kind. Gary is rough. Gary is round. Gary is not white. Harry is kind. Harry is quiet. Harry is white. White people are green. If someone is green and white then they are quiet. Blue, quiet people are round. All quiet people are blue. If someone is blue and not round then they are kind. If someone is quiet and round then they are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-977_Q3", "context": "The cat is young. The cat visits the mouse. The cow is cold. The cow likes the lion. The lion is cold. The lion likes the cat. The lion needs the mouse. The lion visits the mouse. The mouse is cold. The mouse is red. The mouse is young. The mouse likes the cat. The mouse needs the cat. The mouse needs the cow. If something needs the cat and the cat is red then it is blue. Blue things are red. If something likes the mouse and the mouse likes the cat then the cat is blue. If something is cold and red then it likes the mouse. If something needs the cow and it is cold then it is young. If something is nice then it visits the lion. If something needs the lion then it likes the cat. If something visits the cat and it likes the lion then the cat is blue. If something is cold and blue then it needs the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse likes the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-1026_Q13", "context": "The cat is green. The cat is nice. The cat likes the squirrel. The rabbit likes the tiger. The rabbit does not need the cat. The rabbit needs the squirrel. The squirrel is cold. The squirrel needs the cat. The squirrel needs the rabbit. The tiger chases the cat. The tiger chases the rabbit. The tiger is kind. The tiger is nice. The tiger is young. The tiger likes the cat. The tiger needs the cat. If something chases the squirrel then the squirrel needs the tiger. If something needs the tiger then it likes the rabbit. If something chases the cat and it likes the rabbit then the rabbit chases the squirrel. If something chases the rabbit then the rabbit does not need the tiger. If something is kind and it chases the rabbit then it needs the tiger. If something is kind then it does not like the squirrel. If something likes the squirrel and it does not need the tiger then the squirrel likes the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not like the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-861_Q8", "context": "The cat needs the dog. The dog is kind. The dog needs the rabbit. The rabbit eats the dog. The rabbit is green. The tiger chases the rabbit. The tiger is big. If something is nice and it eats the tiger then it needs the dog. If something chases the cat then it eats the cat. If the dog chases the tiger then the tiger needs the rabbit. If the rabbit chases the tiger then the rabbit chases the cat. If something chases the cat then the cat is kind. If something eats the dog then it chases the cat. If something is rough then it eats the dog. If something is kind then it is rough. If something eats the rabbit and the rabbit is big then it is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-616_Q11", "context": "The bald eagle is big. The bald eagle likes the cow. The bald eagle sees the rabbit. The cow is big. The cow sees the bald eagle. The dog is big. The dog is young. The dog likes the bald eagle. The rabbit sees the bald eagle. The rabbit visits the bald eagle. If the bald eagle sees the rabbit then the rabbit is big. If something likes the bald eagle then it is blue. If something likes the rabbit and the rabbit visits the cow then the cow is young. If something visits the rabbit then it is round. If something is round and it sees the cow then the cow sees the rabbit. If something is big then it visits the cow. If something sees the rabbit then the rabbit visits the bald eagle. If something is blue then it likes the rabbit. If something likes the cow and the cow is young then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle likes the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-262_Q17", "context": "The cat is not big. The cat is kind. The cat sees the rabbit. The cow chases the rabbit. The cow chases the squirrel. The cow sees the squirrel. The cow visits the cat. The cow visits the squirrel. The rabbit chases the cat. The rabbit chases the cow. The rabbit is green. The rabbit visits the squirrel. The squirrel is blue. The squirrel is kind. The squirrel sees the rabbit. The squirrel visits the rabbit. If something visits the cow then it chases the rabbit. If something chases the cat then the cat chases the cow. If something chases the cow and the cow sees the squirrel then the squirrel is big. If something chases the cat then it visits the rabbit. If something visits the rabbit then it sees the cow. If something chases the cat and it sees the cow then the cow chases the cat. If something sees the rabbit and it chases the cat then the rabbit chases the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not chase the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-735_Q3", "context": "Bob is big. Bob is nice. Bob is smart. Charlie is nice. Dave is nice. Erin is big. Erin is blue. Erin is furry. Erin is quiet. Erin is round. Erin is smart. All nice things are big. All furry things are blue. Blue, furry things are quiet. If something is round and nice then it is blue. If Bob is round then Bob is blue. Big, quiet things are furry. If something is blue and furry then it is smart. If Charlie is nice and Charlie is big then Charlie is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1304_Q8", "context": "Anne is quiet. Anne is rough. Erin is nice. Erin is rough. Erin is round. Fiona is big. Fiona is furry. Fiona is nice. Fiona is quiet. Fiona is red. Fiona is rough. Fiona is round. Harry is red. Harry is rough. All nice, big people are quiet. Quiet people are round. Rough, big people are furry. Big people are rough. If someone is furry then they are nice. If someone is rough then they are big. If Harry is round then Harry is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-264_Q20", "context": "The bald eagle likes the cat. The bald eagle visits the rabbit. The cat needs the bald eagle. The cat needs the cow. The cat visits the rabbit. The cow likes the bald eagle. The cow likes the rabbit. The cow visits the bald eagle. The rabbit is green. The rabbit is red. The rabbit needs the cat. If someone needs the bald eagle and they are red then they visit the cow. If someone needs the bald eagle then the bald eagle needs the rabbit. If someone needs the cat then they like the bald eagle. If someone needs the bald eagle then they are red. If someone is green then they need the bald eagle. If someone likes the bald eagle and they need the bald eagle then the bald eagle visits the rabbit. If the cat likes the bald eagle then the bald eagle visits the cow. If someone visits the cow then they need the cat. If the cow is rough and the cow is nice then the cow is red.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit visits the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1066_Q2", "context": "Bob is quiet. Bob is white. Dave is kind. Dave is red. Dave is young. Fiona is red. Fiona is round. Gary is quiet. Gary is red. Gary is round. White things are round. If something is kind and white then it is green. All young things are kind. All round things are young. All quiet, kind things are white. Quiet, green things are red. Young, quiet things are kind. All quiet, red things are kind. If Gary is young then Gary is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-866_Q19", "context": "Anne is furry. Anne is rough. Anne is round. Anne is smart. Anne is white. Dave is furry. Erin is big. Erin is white. Gary is quiet. Gary is round. Gary is smart. Gary is white. Rough, furry things are smart. If something is rough and round then it is smart. If Dave is smart then Dave is white. If something is furry then it is rough. Round, rough things are smart. White, furry things are round. All white, big things are round. All rough, big things are smart. If something is round then it is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-604_Q12", "context": "The cat chases the dog. The cat chases the mouse. The cat chases the tiger. The cat eats the dog. The dog is big. The dog sees the cat. The mouse does not eat the cat. The mouse eats the tiger. The mouse does not see the tiger. The tiger eats the dog. The tiger is nice. If something is young and it eats the tiger then it eats the dog. If something sees the mouse and it eats the mouse then the mouse sees the tiger. If something sees the mouse then it is big. If something chases the dog then the dog chases the cat. If something chases the dog then it chases the cat. If something chases the tiger and the tiger eats the cat then the cat sees the mouse. If something sees the dog and it chases the tiger then the tiger chases the dog. If the tiger is green and the tiger is big then the tiger sees the dog. If something chases the cat then it sees the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not see the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-523_Q1", "context": "Anne is green. Anne is young. Charlie is blue. Charlie is green. Charlie is white. Dave is white. Erin is white. If Dave is kind and Dave is white then Dave is blue. If someone is white then they are nice. If someone is white then they are nice. All nice, green people are young. If someone is green then they are quiet. Nice people are kind. If Dave is blue then Dave is white. If Anne is nice and Anne is not white then Anne is green. If Dave is white and Dave is blue then Dave is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-818_Q2", "context": "Charlie is young. Erin is blue. Erin is not kind. Fiona is blue. Fiona is white. Gary is blue. Gary is kind. Furry, nice things are white. If something is young and blue then it is smart. All blue, smart things are furry. All smart, white things are furry. Young things are nice. If Fiona is smart and Fiona is young then Fiona is not furry. If Erin is kind then Erin is furry. If Gary is smart and Gary is white then Gary is not kind. If something is nice then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-345_Q13", "context": "The cat is big. The cat is cold. The cat likes the cow. The cat visits the lion. The cow is blue. The cow likes the lion. The cow does not visit the lion. The lion chases the cat. The lion is not big. The lion is rough. The lion visits the cat. The squirrel likes the cow. If something visits the squirrel then it likes the cat. If something visits the cat then it likes the cat. If something likes the squirrel and it is big then the squirrel likes the lion. If something likes the cow and it visits the cow then the cow visits the cat. If something likes the cat then it chases the squirrel. If something chases the lion and the lion is not cold then it visits the cow. If something chases the lion then the lion chases the cow. If something chases the squirrel then the squirrel visits the cat. If the cow is rough then the cow chases the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not like the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-305_Q4", "context": "Anne is quiet. Bob is not rough. Gary is big. Gary is kind. Gary is rough. Gary is young. Harry is young. All big people are furry. Young people are furry. All quiet, kind people are furry. If Harry is furry and Harry is quiet then Harry is round. Rough, kind people are quiet. Young, rough people are kind. All quiet, furry people are round. Furry people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1003_Q2", "context": "Anne is big. Anne is blue. Anne is rough. Bob is cold. Bob is green. Bob is rough. Bob is white. Dave is blue. Dave is white. Harry is young. If Bob is big then Bob is white. Young people are white. Cold, young people are rough. If Anne is green and Anne is young then Anne is white. White, big people are blue. All blue people are green. If someone is young and white then they are big. Blue people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-327_Q5", "context": "Bob is quiet. Bob is smart. Charlie is quiet. Charlie is not white. Fiona is young. Harry is big. Harry is nice. If something is quiet and white then it is green. All smart things are green. Green things are white. All smart, young things are big. White things are not young. If something is smart and not young then it is nice. If Bob is green and Bob is nice then Bob is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-327_Q13", "context": "Anne is cold. Anne is furry. Anne is rough. Anne is smart. Anne is white. Bob is nice. Bob is rough. Erin is cold. Erin is furry. Erin is nice. Erin is rough. Erin is smart. Erin is white. Erin is young. Fiona is cold. Fiona is furry. All smart things are cold. If Bob is young and Bob is cold then Bob is furry. Young things are cold. If Fiona is rough and Fiona is cold then Fiona is smart. Cold, furry things are white. All rough, nice things are young. If something is white and furry then it is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-276_Q4", "context": "Bob is kind. Bob is round. Charlie is rough. Erin is green. Erin is rough. Erin is round. Gary is cold. All rough people are green. If someone is green then they are white. If someone is white then they are not big. If someone is green and not big then they are kind. If someone is kind and not big then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-305_Q9", "context": "Bob is big. Bob is blue. Bob is cold. Bob is furry. Bob is green. Bob is round. Dave is round. Erin is red. Fiona is cold. Fiona is green. All green things are blue. If something is round and cold then it is red. Blue, big things are round. If something is furry and blue then it is round. All red, green things are furry. If something is round then it is red. If Bob is furry and Bob is red then Bob is round. Red things are big. All blue things are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-999_Q1", "context": "Anne is big. Anne is furry. Bob is blue. Bob is green. Bob is young. Charlie is furry. Charlie is green. Charlie is red. Gary is furry. Gary is green. Gary is young. Furry, green things are blue. All big things are green. Red, furry things are blue. All big, blue things are nice. If Bob is nice and Bob is big then Bob is red. If Gary is furry then Gary is blue. All nice, big things are young. All nice things are young. Blue, young things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-281_Q15", "context": "The bear eats the cow. The cat chases the bear. The cat eats the bear. The cat eats the tiger. The cat is green. The cat is kind. The cat is rough. The cat sees the bear. The cat sees the tiger. The cow eats the bear. The cow eats the tiger. The cow is green. The cow sees the cat. The tiger chases the bear. The tiger chases the cat. The tiger chases the cow. If someone chases the bear and the bear is cold then they eat the cat. If someone chases the bear and the bear chases the tiger then the bear sees the tiger. If the cat chases the bear and the cat sees the tiger then the bear chases the tiger. If someone chases the tiger and they are green then the tiger chases the cow. Nice, kind people are cold. If someone chases the bear then the bear chases the cat. If someone chases the cat then they are nice. If someone is nice then they are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-266_Q3", "context": "The bald eagle eats the cow. The bald eagle does not eat the dog. The bald eagle is rough. The cow is round. The cow sees the bald eagle. The cow does not see the dog. The cow visits the bald eagle. The cow visits the lion. The dog is rough. The lion is young. The lion does not see the bald eagle. The lion sees the cow. If someone is green and they eat the bald eagle then the bald eagle is not rough. If someone is big and they do not see the bald eagle then the bald eagle is rough. If someone is big then they visit the dog. If someone eats the lion and they are big then the lion eats the dog. If someone visits the dog then the dog eats the cow. If someone is rough and they eat the cow then they are young. If the lion eats the cow then the lion visits the bald eagle. If someone is big and they see the lion then they are green. If someone is young then they are big.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-280_Q8", "context": "The bald eagle needs the mouse. The bald eagle sees the mouse. The cow is red. The cow is rough. The cow sees the bald eagle. The cow sees the mouse. The dog eats the bald eagle. The dog is cold. The dog is rough. The dog needs the bald eagle. The mouse eats the bald eagle. The mouse eats the dog. The mouse is red. The mouse is rough. The mouse is young. The mouse sees the cow. If something is young then it needs the dog. If something eats the cow then the cow is kind. If something is young then it sees the bald eagle. If something is cold and it needs the dog then it eats the mouse. If something needs the bald eagle and it is red then it is young. If something eats the mouse then it needs the mouse. If something eats the bald eagle then it is red.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not need the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-804_Q12", "context": "Anne is kind. Charlie is not big. Charlie is not green. Charlie is white. Erin is big. Erin is green. Erin is white. Fiona is green. Fiona is kind. Fiona is quiet. Fiona is red. Fiona is white. If Erin is big and Erin is red then Erin is kind. All rough things are green. If something is kind then it is green. Quiet, green things are big. If something is rough and green then it is red. If something is green then it is rough. If Erin is red then Erin is green. All red, rough things are quiet. If something is quiet and not red then it is not white.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-487_Q5", "context": "The cat chases the lion. The cat is rough. The cat is young. The cat needs the lion. The cat needs the rabbit. The dog is green. The dog is young. The dog likes the cat. The lion is blue. The lion is green. The rabbit chases the lion. The rabbit is blue. The rabbit is rough. The rabbit likes the dog. The rabbit needs the dog. The rabbit needs the lion. If someone chases the lion then they are round. If the lion needs the rabbit and the rabbit chases the dog then the lion likes the dog. If someone is round and they chase the lion then they need the cat. If someone needs the cat and they chase the dog then they like the rabbit. If someone chases the lion and the lion is blue then the lion is round. If someone chases the rabbit then they are rough. If someone is rough and they like the rabbit then the rabbit is young. If the rabbit chases the cat and the cat needs the lion then the rabbit is young. If someone is round and they need the cat then they chase the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat needs the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-684_Q9", "context": "Anne is smart. Charlie is big. Charlie is nice. Gary is green. Harry is furry. Harry is nice. Harry is red. All furry people are kind. If Charlie is big then Charlie is green. If someone is kind then they are big. Kind, green people are big. Smart people are furry. If someone is green then they are kind. All big, nice people are kind. All smart, nice people are red. Big, kind people are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-439_Q23", "context": "The bald eagle is cold. The bald eagle is green. The bald eagle needs the lion. The bald eagle visits the rabbit. The dog sees the lion. The lion is cold. The lion is green. The lion needs the dog. The lion needs the rabbit. The lion visits the bald eagle. The lion visits the dog. The rabbit is round. The rabbit visits the dog. The rabbit visits the lion. If something is round then it is rough. If something visits the rabbit and it needs the bald eagle then the rabbit visits the bald eagle. If something is rough then it visits the lion. If the dog needs the rabbit and the rabbit sees the bald eagle then the bald eagle sees the dog. If the rabbit visits the lion and the rabbit needs the dog then the dog is round. If something visits the rabbit then the rabbit needs the bald eagle. If something visits the lion and the lion needs the dog then it needs the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not see the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1176_Q11", "context": "Bob is not round. Charlie is furry. Charlie is nice. Charlie is smart. Erin is red. Fiona is furry. Fiona is young. All red people are not round. Red people are not blue. All young people are furry. If Erin is red and Erin is not round then Erin is nice. If someone is round and nice then they are not young. All smart people are young. Nice people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-213_Q8", "context": "The cat chases the dog. The cat is rough. The cat is young. The dog likes the squirrel. The dog sees the tiger. The squirrel chases the tiger. The squirrel is big. The squirrel is green. The squirrel likes the dog. The squirrel sees the dog. The tiger chases the cat. The tiger is green. The tiger likes the dog. The tiger likes the squirrel. If something likes the dog then it chases the tiger. If something is big and it chases the cat then the cat likes the squirrel. If something sees the cat then the cat is big. If something likes the squirrel then it sees the dog. If something is cold and it chases the cat then it sees the cat. If something sees the tiger then the tiger is big. Green, big things are young. Big things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not see the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1421_Q14", "context": "Anne is cold. Anne is rough. Bob is cold. Bob is kind. Dave is big. Dave is red. Dave is smart. Harry is big. Harry is kind. Harry is smart. Big people are young. Red people are smart. If Anne is young and Anne is rough then Anne is smart. Young, cold people are red. Rough people are big. All kind people are rough. If Anne is kind and Anne is cold then Anne is smart. All young people are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-195_Q15", "context": "Bob is rough. Charlie is nice. Charlie is rough. Charlie is white. Dave is not white. Gary is cold. Gary is quiet. Rough, white things are quiet. If Charlie is round and Charlie is quiet then Charlie is rough. All young things are round. Nice things are white. Rough, nice things are cold. If something is round and rough then it is nice. If something is rough then it is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1364_Q12", "context": "Charlie is big. Charlie is cold. Charlie is kind. Charlie is quiet. Charlie is red. Charlie is rough. Charlie is smart. Erin is kind. Fiona is quiet. Fiona is rough. Harry is kind. Harry is rough. Kind things are big. All kind, smart things are rough. If something is red and quiet then it is big. All red things are cold. All cold, quiet things are smart. If something is big and smart then it is cold. All quiet things are cold. Kind, big things are red. All cold, smart things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-532_Q21", "context": "Anne is furry. Anne is rough. Bob is cold. Bob is green. Bob is red. Gary is cold. Gary is quiet. Gary is red. Harry is not cold. Harry is red. Red things are not kind. If something is cold and not furry then it is not kind. Green, rough things are quiet. If something is furry and cold then it is quiet. If Bob is furry then Bob is green. Rough things are green. If something is kind and not furry then it is green. All quiet things are cold. Cold things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-510_Q7", "context": "The bear is cold. The bear is not green. The bear is rough. The rabbit is cold. The squirrel is nice. The squirrel does not visit the rabbit. The squirrel visits the tiger. The tiger chases the bear. The tiger does not eat the rabbit. The tiger is cold. The tiger is nice. The tiger is not rough. The tiger visits the rabbit. The tiger visits the squirrel. If something is green and it visits the squirrel then the squirrel is green. If something chases the rabbit then it eats the bear. If the squirrel eats the rabbit and the rabbit visits the bear then the bear is not red. If something is cold then it chases the rabbit. If the rabbit chases the squirrel then the squirrel eats the bear. If something chases the bear and it visits the tiger then the tiger chases the squirrel. If something is cold and not nice then it eats the rabbit. If something eats the bear and the bear visits the squirrel then it eats the rabbit. If something eats the bear then it chases the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger chases the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-559_Q20", "context": "The bear is big. The bear needs the rabbit. The bear sees the rabbit. The mouse likes the tiger. The mouse needs the rabbit. The mouse sees the rabbit. The mouse sees the tiger. The rabbit is round. The rabbit likes the tiger. The rabbit needs the tiger. The tiger is red. The tiger likes the mouse. If something sees the mouse and it likes the mouse then it sees the bear. If something needs the tiger then it likes the mouse. If something is red then it likes the mouse. If something likes the mouse then it sees the mouse. If something needs the mouse then the mouse sees the tiger. If the rabbit is nice then the rabbit likes the bear. If something is big and nice then it needs the bear. If something is round and it sees the bear then the bear likes the mouse. If something likes the rabbit and the rabbit needs the tiger then the tiger likes the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit needs the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-1029_Q2", "context": "The bear is young. The bear visits the lion. The cat is round. The cat needs the bear. The lion is cold. The lion is not green. The lion is round. The lion does not need the bear. The lion sees the bear. The lion visits the bear. The lion visits the cat. The lion visits the rabbit. The rabbit is green. The rabbit is rough. The rabbit sees the lion. The rabbit visits the cat. If something visits the cat then the cat sees the lion. If something visits the lion and the lion visits the rabbit then it needs the lion. If something needs the lion and the lion is round then it needs the cat. If something is green and it needs the rabbit then the rabbit is green. If something is round then it visits the lion. If something sees the cat and the cat visits the lion then it is not rough. If something needs the cat and it is not green then it sees the cat. If something is young and it visits the bear then it sees the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-555_Q8", "context": "The bald eagle is green. The bald eagle is round. The bald eagle is young. The bald eagle needs the lion. The cat is green. The cat is kind. The cat does not need the bald eagle. The lion chases the bald eagle. The lion chases the tiger. The lion is round. The lion needs the bald eagle. The lion visits the bald eagle. The lion visits the cat. The tiger is not blue. The tiger is not green. The tiger is young. If someone visits the tiger then the tiger visits the lion. If someone is kind and blue then they visit the cat. If someone is green then they visit the bald eagle. If someone needs the tiger then they visit the tiger. If someone needs the tiger and the tiger needs the cat then the tiger needs the lion. If someone visits the lion then they need the tiger. If the tiger chases the bald eagle then the bald eagle is green. If the bald eagle is young then the bald eagle needs the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not visit the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-949_Q5", "context": "The bear is green. The bear likes the cat. The bear likes the dog. The bear visits the dog. The cat is young. The cat sees the bear. The cat sees the dog. The cat visits the bear. The cat visits the mouse. The dog is round. The dog likes the bear. The dog likes the mouse. The dog visits the mouse. The mouse is big. The mouse is cold. The mouse is round. If something visits the mouse and the mouse visits the dog then it is cold. If something likes the cat then it visits the dog. If something is cold then it likes the cat. If something is green then it sees the dog. If something likes the mouse then it sees the cat. If something is green and cold then it likes the cat. If something is big and it visits the bear then the bear is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse visits the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-200_Q12", "context": "Anne is quiet. Charlie is cold. Charlie is not quiet. Charlie is young. Erin is nice. Erin is quiet. Erin is smart. Fiona is not quiet. Fiona is round. Fiona is young. All smart, cold people are round. If someone is cold then they are young. If someone is young and quiet then they are blue. If someone is round and not quiet then they are blue. Nice, blue people are cold. If someone is quiet then they are cold. If someone is quiet then they are cold. All blue people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1364_Q5", "context": "Charlie is big. Charlie is cold. Charlie is kind. Charlie is quiet. Charlie is red. Charlie is rough. Charlie is smart. Erin is kind. Fiona is quiet. Fiona is rough. Harry is kind. Harry is rough. Kind things are big. All kind, smart things are rough. If something is red and quiet then it is big. All red things are cold. All cold, quiet things are smart. If something is big and smart then it is cold. All quiet things are cold. Kind, big things are red. All cold, smart things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1210_Q4", "context": "Bob is not kind. Bob is smart. Dave is not blue. Dave is cold. Dave is kind. Dave is not red. Dave is smart. Dave is white. Fiona is kind. Fiona is smart. Fiona is white. Harry is red. If someone is red then they are kind. If Harry is kind then Harry is blue. If Harry is kind and Harry is not red then Harry is not blue. If Fiona is not kind then Fiona is blue. All young people are smart. All red, blue people are smart. If Harry is young and Harry is smart then Harry is white. If someone is smart and blue then they are young. If someone is blue and not red then they are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1017_Q5", "context": "Dave is big. Dave is furry. Erin is blue. Erin is cold. Erin is round. Fiona is quiet. Gary is rough. If something is rough and cold then it is furry. Quiet, big things are not round. If Dave is blue then Dave is furry. All quiet, blue things are big. If Fiona is furry then Fiona is blue. If something is quiet then it is cold. All big things are cold. All blue, round things are not quiet. Cold things are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-891_Q11", "context": "Bob is green. Bob is kind. Charlie is green. Charlie is not smart. Erin is not young. Fiona is nice. Fiona is young. Green, smart things are quiet. If something is kind then it is green. Smart things are young. Young things are kind. Quiet things are furry. All quiet, nice things are furry. Nice, green things are smart. If Bob is kind and Bob is not green then Bob is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-521_Q4", "context": "The cow eats the lion. The lion eats the mouse. The lion needs the mouse. The mouse sees the lion. The tiger eats the lion. The tiger is green. The tiger is red. The tiger needs the lion. The tiger needs the mouse. The tiger sees the cow. If someone sees the lion then they are cold. If someone needs the tiger and they need the mouse then they are cold. If someone needs the tiger and the tiger eats the cow then the tiger needs the lion. All round people are green. All young, green people are round. If someone eats the mouse and the mouse sees the lion then they are green. If someone needs the tiger then the tiger sees the lion. If someone is cold and they see the lion then they need the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-746_Q16", "context": "Bob is white. Charlie is furry. Charlie is kind. Dave is cold. Dave is smart. Gary is red. Gary is white. Green, furry things are smart. If Charlie is white then Charlie is green. White things are kind. Cold, smart things are red. All furry things are cold. If Bob is kind and Bob is furry then Bob is smart. If something is cold and kind then it is white.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-781_Q5", "context": "Anne is big. Anne is cold. Anne is round. Charlie is cold. Charlie is furry. Charlie is kind. Charlie is nice. Charlie is round. Erin is big. Gary is furry. Gary is kind. Gary is nice. Gary is quiet. Gary is round. Big things are quiet. If something is quiet and big then it is kind. If something is cold then it is round. Nice things are cold. All cold things are kind. If something is kind then it is nice. If something is nice and furry then it is quiet. All kind things are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-902_Q8", "context": "The lion chases the mouse. The mouse is cold. The mouse needs the rabbit. The rabbit chases the squirrel. The rabbit sees the lion. The rabbit sees the squirrel. The squirrel chases the lion. If something is cold then it sees the rabbit. If something sees the rabbit then it sees the squirrel. If something is cold and it sees the squirrel then the squirrel is cold. If something chases the squirrel then it needs the squirrel. If something chases the squirrel and it is not cold then the squirrel does not chase the rabbit. If the rabbit sees the squirrel and the squirrel chases the rabbit then the rabbit does not chase the squirrel. If the rabbit chases the squirrel and the squirrel does not chase the rabbit then the squirrel needs the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-816_Q7", "context": "The cat is rough. The cat sees the rabbit. The mouse eats the cat. The mouse eats the squirrel. The mouse is kind. The mouse visits the cat. The mouse visits the rabbit. The rabbit eats the cat. The rabbit eats the mouse. The rabbit sees the cat. The squirrel is round. The squirrel sees the rabbit. If something sees the squirrel then it is kind. If something visits the mouse then the mouse sees the squirrel. If something eats the cat then the cat visits the squirrel. If something is blue then it sees the squirrel. If something is kind then it visits the rabbit. If something is rough then it sees the cat. If something is rough and it sees the cat then the cat is blue. If something visits the rabbit and it sees the squirrel then the squirrel is rough. If something eats the mouse then it is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat sees the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-765_Q15", "context": "Anne is blue. Anne is kind. Anne is quiet. Bob is not kind. Bob is young. Erin is white. Gary is blue. Gary is kind. Gary is nice. Gary is quiet. Gary is rough. Nice people are kind. All white, quiet people are blue. Kind, nice people are quiet. Rough people are nice. If someone is white then they are rough. All blue, nice people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-213_Q19", "context": "The cat chases the dog. The cat is rough. The cat is young. The dog likes the squirrel. The dog sees the tiger. The squirrel chases the tiger. The squirrel is big. The squirrel is green. The squirrel likes the dog. The squirrel sees the dog. The tiger chases the cat. The tiger is green. The tiger likes the dog. The tiger likes the squirrel. If something likes the dog then it chases the tiger. If something is big and it chases the cat then the cat likes the squirrel. If something sees the cat then the cat is big. If something likes the squirrel then it sees the dog. If something is cold and it chases the cat then it sees the cat. If something sees the tiger then the tiger is big. Green, big things are young. Big things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not see the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-442_Q5", "context": "The bald eagle chases the cat. The bald eagle does not eat the mouse. The cat eats the cow. The cow eats the cat. The cow is blue. The cow is young. The cow sees the cat. The cow does not see the mouse. The mouse does not chase the cow. The mouse eats the bald eagle. The mouse is round. If something eats the mouse then it is round. If the mouse is red then the mouse sees the cow. If something chases the cat then it does not chase the mouse. If the mouse chases the cat then the cat eats the mouse. If something is round then it chases the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat eats the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-650_Q11", "context": "Anne is smart. Charlie is nice. Erin is furry. Erin is white. Fiona is smart. Fiona is white. Fiona is young. Nice, smart things are young. All young, white things are cold. White things are red. All furry, red things are nice. All young things are white. All young things are white. All smart, cold things are furry. If something is nice and white then it is smart. If Anne is furry and Anne is white then Anne is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-785_Q10", "context": "Anne is rough. Anne is young. Bob is nice. Bob is red. Bob is young. Charlie is cold. Charlie is quiet. Charlie is red. Charlie is rough. Charlie is smart. Fiona is cold. Fiona is quiet. Cold people are young. Rough, young people are nice. Cold, red people are smart. Red people are smart. If someone is smart and quiet then they are cold. All rough, nice people are red. All red, quiet people are cold. All smart people are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-922_Q7", "context": "The cow is cold. The cow is not round. The cow sees the squirrel. The cow sees the tiger. The mouse needs the cow. The mouse needs the tiger. The squirrel needs the cow. The tiger is blue. The tiger is red. The tiger is round. The tiger sees the mouse. If something needs the squirrel then the squirrel sees the tiger. If the cow sees the squirrel then the cow eats the mouse. If the squirrel eats the mouse and the squirrel is not green then the mouse is not red. If the mouse needs the tiger and the mouse is red then the tiger does not see the squirrel. If something needs the mouse and the mouse eats the cow then the cow eats the squirrel. If something is blue then it needs the squirrel. If something needs the cow and the cow is blue then it eats the mouse. If something eats the mouse then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse eats the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-754_Q4", "context": "Anne is big. Anne is furry. Anne is rough. Anne is round. Anne is young. Charlie is big. Charlie is cold. Dave is furry. Dave is young. Harry is furry. Harry is nice. Harry is young. All round things are cold. Cold, furry things are rough. If something is furry and rough then it is round. If Charlie is round and Charlie is furry then Charlie is nice. All round, nice things are rough. Big, cold things are furry. Furry, round things are cold. Nice, round things are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-143_Q6", "context": "Anne is round. Bob is blue. Bob is kind. Bob is red. Dave is big. Dave is kind. Dave is smart. Fiona is big. Fiona is red. Fiona is rough. Fiona is round. If Bob is round and Bob is red then Bob is rough. Big people are kind. All blue people are big. All round people are blue. All smart, red people are kind. All kind people are rough. All rough, big people are smart. Round, smart people are blue. If Fiona is smart and Fiona is red then Fiona is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1003_Q5", "context": "Anne is big. Anne is blue. Anne is rough. Bob is cold. Bob is green. Bob is rough. Bob is white. Dave is blue. Dave is white. Harry is young. If Bob is big then Bob is white. Young people are white. Cold, young people are rough. If Anne is green and Anne is young then Anne is white. White, big people are blue. All blue people are green. If someone is young and white then they are big. Blue people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-689_Q7", "context": "Anne is big. Anne is rough. Anne is young. Bob is young. Charlie is cold. Charlie is green. Charlie is nice. Charlie is young. Gary is green. Gary is young. Big, quiet people are green. If someone is cold and young then they are nice. If Bob is rough and Bob is green then Bob is cold. Green people are nice. All nice people are quiet. Young people are cold. If someone is quiet and nice then they are rough. If someone is rough and young then they are cold. All rough, nice people are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-789_Q23", "context": "The bald eagle eats the lion. The bald eagle is cold. The bald eagle sees the cat. The cat eats the lion. The cat is round. The cat sees the bald eagle. The lion chases the cat. The lion eats the cat. The lion eats the squirrel. The squirrel chases the bald eagle. The squirrel chases the lion. The squirrel eats the lion. The squirrel is cold. The squirrel is kind. If something is round then it sees the cat. If something chases the cat and the cat is cold then the cat eats the squirrel. If something chases the cat and it is kind then it is round. If the lion eats the squirrel and the lion sees the cat then the lion is young. If something is cold then it chases the cat. If the squirrel eats the bald eagle and the bald eagle is cold then the bald eagle is round. If something chases the bald eagle and it is young then it chases the squirrel. If something eats the squirrel and it eats the cat then the squirrel chases the cat. If something is round then it eats the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-983_Q11", "context": "Charlie is blue. Charlie is quiet. Dave is blue. Dave is cold. Dave is young. Erin is blue. Erin is quiet. Erin is white. Erin is young. Gary is cold. Gary is quiet. Gary is young. All quiet things are furry. If Charlie is cold then Charlie is young. White things are cold. All young things are nice. If Gary is nice then Gary is young. If something is young then it is nice. If something is furry and blue then it is white. If something is young and furry then it is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1170_Q13", "context": "Bob is kind. Charlie is quiet. Charlie is rough. Fiona is kind. Fiona is rough. Fiona is white. Gary is nice. If Gary is red and Gary is white then Gary is quiet. All white things are rough. If something is rough then it is red. If something is nice then it is white. All smart things are white. Rough, quiet things are not kind. If something is quiet and not smart then it is kind. Smart things are quiet. If something is smart and not rough then it is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1201_Q18", "context": "Anne is furry. Bob is furry. Gary is blue. Gary is cold. Gary is furry. Gary is quiet. Gary is round. Harry is blue. Harry is cold. Harry is quiet. Harry is round. Harry is young. Cold, blue things are quiet. All round, furry things are quiet. If Bob is blue and Bob is round then Bob is young. If something is round then it is blue. If something is young and round then it is blue. If Harry is quiet and Harry is furry then Harry is blue. Furry things are cold. Cold things are round. If something is young and furry then it is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-301_Q4", "context": "The cat eats the dog. The cat is young. The cat needs the rabbit. The dog is young. The dog needs the rabbit. The lion is green. The lion needs the cat. The rabbit chases the cat. The rabbit chases the dog. The rabbit eats the cat. The rabbit needs the cat. The rabbit needs the lion. All green things are red. If something is red and young then it eats the lion. If something eats the cat then the cat is green. If something is blue and it eats the cat then the cat chases the dog. If something eats the rabbit and it needs the lion then the rabbit is red. If something eats the lion then the lion is young. If something is big then it eats the cat. If something eats the rabbit then the rabbit eats the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-136_Q10", "context": "The bald eagle is rough. The bear eats the dog. The bear is big. The bear needs the dog. The bear sees the cat. The bear sees the dog. The cat eats the dog. The dog is nice. The dog is rough. The dog needs the bear. The dog needs the cat. The dog sees the bald eagle. If something eats the bear then the bear eats the bald eagle. If something needs the cat then the cat eats the bald eagle. If something sees the cat and the cat is green then the cat eats the bear. If something eats the bear and it eats the dog then the bear is rough. If something eats the bald eagle then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-873_Q17", "context": "The bald eagle is green. The bald eagle likes the squirrel. The bald eagle likes the tiger. The bear is nice. The bear is round. The bear likes the bald eagle. The bear likes the tiger. The squirrel is young. The squirrel likes the bear. The squirrel needs the bald eagle. The squirrel sees the tiger. The tiger is cold. The tiger likes the bear. The tiger likes the squirrel. The tiger needs the bear. The tiger sees the bear. If something needs the bald eagle and the bald eagle likes the bear then the bald eagle needs the tiger. If something needs the squirrel then it needs the tiger. If something is green then it needs the squirrel. If something needs the bear and it needs the bald eagle then the bear likes the bald eagle. If something likes the bald eagle then it is young. If something likes the bear and it sees the bald eagle then it needs the bear. Round things are green. If something sees the squirrel and the squirrel likes the bear then it is cold. If something needs the bear and the bear is green then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-115_Q3", "context": "The bald eagle is blue. The bald eagle is red. The bald eagle likes the lion. The bald eagle needs the bear. The bald eagle needs the dog. The bear is not blue. The bear is nice. The bear needs the dog. The dog chases the bald eagle. The dog is red. The dog does not need the bear. The lion does not like the bear. If something likes the lion and it is not red then it chases the lion. If something is red and it needs the bald eagle then the bald eagle needs the lion. If something is round then it does not like the dog. If the bald eagle needs the dog then the dog is round. If something likes the dog then it likes the bald eagle. If something chases the lion and the lion likes the dog then the dog does not like the lion. If the bear likes the lion then the lion likes the dog. If something likes the bear then the bear likes the lion. If something is round then it likes the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-882_Q12", "context": "Bob is nice. Dave is big. Erin is furry. Erin is nice. Erin is rough. Harry is cold. Harry is white. All rough people are furry. If someone is rough and cold then they are white. If someone is nice then they are big. Furry, nice people are big. All big people are red. All nice, big people are rough. All furry, big people are cold. All cold, white people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1229_Q3", "context": "Anne is cold. Anne is white. Bob is nice. Bob is white. Dave is blue. Gary is blue. Gary is smart. All blue people are smart. If someone is smart then they are cold. If someone is white then they are quiet. If someone is nice and quiet then they are blue. All white, furry people are blue. If Gary is furry then Gary is cold. If Bob is not white then Bob is smart. All cold, blue people are not furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-127_Q2", "context": "The bear is blue. The bear is green. The bear is red. The bear sees the rabbit. The cow is blue. The cow needs the tiger. The cow visits the rabbit. The rabbit is cold. The rabbit is nice. The rabbit needs the cow. The rabbit sees the cow. The rabbit sees the tiger. The tiger needs the bear. The tiger needs the rabbit. The tiger visits the bear. The tiger visits the cow. If something is green then it visits the tiger. If something sees the bear and it is cold then the bear is green. If the cow needs the rabbit and the rabbit needs the cow then the rabbit is red. If something is green then it needs the cow. If something visits the tiger then the tiger is red. If something needs the tiger and the tiger sees the cow then the cow needs the bear. If something sees the bear and it needs the bear then it sees the cow. If something visits the rabbit then the rabbit needs the tiger. If something needs the bear and the bear visits the tiger then it sees the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1015_Q3", "context": "Anne is furry. Anne is nice. Dave is furry. Dave is not nice. Erin is smart. Harry is furry. Harry is nice. All round people are quiet. All round people are green. All quiet, furry people are green. Furry people are green. Big, quiet people are not smart. Smart people are nice. All green people are big. If Anne is big and Anne is green then Anne is round. If someone is quiet and smart then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-333_Q7", "context": "Bob is round. Erin is quiet. Erin is smart. Erin is not white. Fiona is green. Fiona is quiet. Fiona is smart. Gary is big. Gary is green. Gary is quiet. Gary is white. All quiet things are smart. Round things are quiet. All green, round things are white. If Fiona is not quiet then Fiona is white. Smart, white things are big. If something is nice and quiet then it is big. If something is quiet and not smart then it is not green. All quiet, smart things are green. If something is big then it is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-640_Q8", "context": "Bob is rough. Dave is furry. Dave is nice. Dave is not red. Dave is smart. Fiona is green. Fiona is nice. Harry is blue. Harry is furry. Harry is green. Harry is nice. Harry is not red. Harry is rough. Harry is smart. Smart things are green. If something is nice and not rough then it is red. If something is nice then it is smart. If something is rough then it is nice. If something is blue then it is furry. All blue, smart things are furry. If Bob is furry and Bob is not rough then Bob is green. If something is green then it is blue. If something is red and not nice then it is not blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-454_Q15", "context": "Anne is green. Anne is nice. Anne is not rough. Anne is smart. Bob is green. Bob is nice. Fiona is white. Gary is rough. Gary is round. Gary is white. If something is nice then it is round. If something is white then it is round. If something is young and not nice then it is round. If Bob is round and Bob is green then Bob is rough. If something is young and green then it is smart. Smart things are white. If something is rough and not green then it is white. If something is rough then it is young. All rough things are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-298_Q21", "context": "The bald eagle eats the tiger. The bald eagle is young. The bald eagle likes the mouse. The bald eagle needs the rabbit. The mouse is kind. The mouse needs the bald eagle. The rabbit is young. The rabbit needs the mouse. The tiger is round. The tiger likes the bald eagle. The tiger needs the mouse. If something likes the rabbit then it eats the mouse. If something needs the rabbit then it likes the rabbit. All kind things are round. If the mouse eats the rabbit then the mouse eats the bald eagle. If something eats the mouse then the mouse needs the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-844_Q1", "context": "Anne is big. Anne is cold. Anne is furry. Anne is white. Erin is cold. Fiona is round. Gary is smart. All smart things are furry. Big, blue things are round. If Gary is cold then Gary is smart. All blue, furry things are big. If Gary is furry then Gary is blue. Round things are cold. Cold, white things are furry. Round things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-876_Q12", "context": "Anne is kind. Anne is red. Anne is round. Charlie is blue. Charlie is quiet. Charlie is red. Dave is blue. Erin is quiet. Erin is red. Erin is smart. If something is round then it is rough. Smart things are kind. If something is rough then it is kind. All blue things are red. Red things are round. All kind, blue things are round. If Dave is kind and Dave is rough then Dave is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1251_Q3", "context": "Erin is big. Erin is green. Erin is kind. Erin is quiet. Erin is red. Erin is smart. Fiona is big. Gary is rough. Harry is quiet. Harry is smart. All smart people are kind. If Harry is rough and Harry is red then Harry is quiet. If someone is green then they are smart. All kind people are quiet. If someone is rough and big then they are green. Rough people are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1176_Q12", "context": "Bob is not round. Charlie is furry. Charlie is nice. Charlie is smart. Erin is red. Fiona is furry. Fiona is young. All red people are not round. Red people are not blue. All young people are furry. If Erin is red and Erin is not round then Erin is nice. If someone is round and nice then they are not young. All smart people are young. Nice people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-151_Q4", "context": "The cat chases the tiger. The cat is red. The lion is nice. The lion is red. The lion sees the cat. The lion sees the rabbit. The lion sees the tiger. The rabbit chases the tiger. The rabbit sees the tiger. The tiger chases the cat. The tiger chases the rabbit. The tiger is nice. If someone is red and they eat the rabbit then they are blue. If the lion eats the cat and the lion chases the rabbit then the cat is kind. If the rabbit eats the tiger then the tiger is nice. If someone is rough then they see the cat. If someone is nice and they chase the rabbit then the rabbit is nice. If someone eats the cat and they are kind then they see the tiger. If someone is nice and they chase the tiger then they are blue. If someone is blue then they eat the cat. If someone eats the cat then the cat is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-789_Q9", "context": "The bald eagle eats the lion. The bald eagle is cold. The bald eagle sees the cat. The cat eats the lion. The cat is round. The cat sees the bald eagle. The lion chases the cat. The lion eats the cat. The lion eats the squirrel. The squirrel chases the bald eagle. The squirrel chases the lion. The squirrel eats the lion. The squirrel is cold. The squirrel is kind. If something is round then it sees the cat. If something chases the cat and the cat is cold then the cat eats the squirrel. If something chases the cat and it is kind then it is round. If the lion eats the squirrel and the lion sees the cat then the lion is young. If something is cold then it chases the cat. If the squirrel eats the bald eagle and the bald eagle is cold then the bald eagle is round. If something chases the bald eagle and it is young then it chases the squirrel. If something eats the squirrel and it eats the cat then the squirrel chases the cat. If something is round then it eats the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-90_Q13", "context": "The bear is kind. The mouse chases the bear. The mouse chases the rabbit. The mouse visits the rabbit. The rabbit is blue. The rabbit needs the mouse. The squirrel chases the mouse. The squirrel chases the rabbit. The squirrel is blue. The squirrel is green. The squirrel is young. If the squirrel is young and the squirrel needs the rabbit then the squirrel visits the rabbit. If something is cold then it needs the squirrel. If something visits the mouse and the mouse needs the squirrel then it needs the rabbit. If something chases the bear then it is cold. If something visits the bear and the bear visits the squirrel then the squirrel visits the rabbit. If something needs the squirrel then the squirrel visits the mouse. If the mouse visits the bear and the mouse visits the squirrel then the squirrel visits the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not need the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-111_Q9", "context": "The bald eagle chases the mouse. The bald eagle chases the squirrel. The bald eagle is cold. The lion chases the bald eagle. The lion does not chase the mouse. The lion chases the squirrel. The lion is blue. The lion needs the squirrel. The lion visits the squirrel. The mouse does not visit the bald eagle. The mouse does not visit the squirrel. The squirrel is cold. The squirrel is red. The squirrel does not visit the lion. If something visits the mouse then the mouse is green. If the mouse does not chase the lion then the mouse needs the lion. If something visits the squirrel and the squirrel does not chase the lion then the lion is green. If something is young then it visits the bald eagle. If something visits the bald eagle then the bald eagle visits the squirrel. If something visits the squirrel and the squirrel is red then it is young. If something needs the squirrel and it is not cold then the squirrel chases the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-469_Q24", "context": "The cat chases the cow. The cat chases the lion. The cat chases the mouse. The cat eats the mouse. The cat visits the lion. The cow chases the cat. The cow is green. The lion chases the cow. The lion eats the cow. The lion eats the mouse. The lion visits the cat. The mouse eats the cow. The mouse is rough. The mouse is round. If something is cold then it visits the mouse. If something is round and it eats the mouse then the mouse chases the cow. If something visits the lion then it is big. If the mouse chases the cat and the mouse chases the lion then the mouse visits the cat. If something is cold and it chases the cat then it eats the cow. If something eats the lion and the lion eats the cow then the lion is cold. If something is cold and it visits the mouse then the mouse eats the lion. Big things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-317_Q2", "context": "The cow chases the squirrel. The cow is young. The cow sees the squirrel. The dog is round. The dog likes the rabbit. The dog likes the squirrel. The dog sees the rabbit. The rabbit chases the cow. The rabbit does not chase the dog. The squirrel chases the rabbit. The squirrel is young. The squirrel likes the cow. If someone chases the cow then the cow is big. If someone likes the rabbit and they do not see the squirrel then they are big. If someone is big then they like the rabbit. If someone is young then they do not see the dog. If someone is blue then they chase the cow. If someone likes the rabbit then they like the cow. If someone likes the cow then they see the cow. If someone sees the cow and they chase the squirrel then they see the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not chase the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1066_Q6", "context": "Bob is quiet. Bob is white. Dave is kind. Dave is red. Dave is young. Fiona is red. Fiona is round. Gary is quiet. Gary is red. Gary is round. White things are round. If something is kind and white then it is green. All young things are kind. All round things are young. All quiet, kind things are white. Quiet, green things are red. Young, quiet things are kind. All quiet, red things are kind. If Gary is young then Gary is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-116_Q3", "context": "The cow is young. The cow sees the lion. The dog likes the cow. The dog likes the rabbit. The dog sees the rabbit. The lion is young. The lion sees the cow. The lion sees the dog. The lion sees the rabbit. The rabbit is round. The rabbit likes the cow. If someone visits the rabbit then the rabbit likes the lion. If someone likes the rabbit and the rabbit is red then the rabbit is big. If someone likes the lion and they see the rabbit then the lion likes the rabbit. If someone is young then they like the rabbit. If someone is young then they see the lion. If the lion is big then the lion visits the dog. If the rabbit likes the lion then the rabbit is young. If someone is young and they like the rabbit then they visit the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion sees the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-975_Q4", "context": "The lion is kind. The mouse chases the lion. The rabbit is blue. The rabbit is round. The tiger is blue. The tiger is cold. The tiger is young. If something sees the rabbit then the rabbit is cold. If something sees the tiger then the tiger is kind. If something is round then it is kind. If the rabbit sees the lion and the rabbit sees the mouse then the mouse sees the tiger. If something is kind then it sees the mouse. If something is blue and kind then it sees the rabbit. If something chases the lion and the lion chases the rabbit then the rabbit chases the mouse. If something is kind and it sees the mouse then it sees the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-789_Q21", "context": "The bald eagle eats the lion. The bald eagle is cold. The bald eagle sees the cat. The cat eats the lion. The cat is round. The cat sees the bald eagle. The lion chases the cat. The lion eats the cat. The lion eats the squirrel. The squirrel chases the bald eagle. The squirrel chases the lion. The squirrel eats the lion. The squirrel is cold. The squirrel is kind. If something is round then it sees the cat. If something chases the cat and the cat is cold then the cat eats the squirrel. If something chases the cat and it is kind then it is round. If the lion eats the squirrel and the lion sees the cat then the lion is young. If something is cold then it chases the cat. If the squirrel eats the bald eagle and the bald eagle is cold then the bald eagle is round. If something chases the bald eagle and it is young then it chases the squirrel. If something eats the squirrel and it eats the cat then the squirrel chases the cat. If something is round then it eats the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-131_Q1", "context": "The cat likes the cow. The cow is cold. The lion chases the tiger. The lion likes the cat. The lion needs the cow. The lion needs the tiger. The tiger likes the cow. If something likes the tiger then the tiger is cold. If something chases the lion and it needs the lion then it is green. If the cow chases the lion and the cow chases the cat then the lion needs the cow. If the tiger chases the cow then the tiger likes the cat. If something needs the lion then the lion needs the tiger. If something chases the cow then the cow likes the tiger. If something chases the cat then the cat chases the cow. If something is cold then it chases the cat. If something is cold and it chases the cat then it chases the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger likes the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-372_Q4", "context": "Charlie is young. Erin is blue. Erin is green. Fiona is big. Fiona is green. Gary is blue. Gary is green. All red things are furry. All furry things are red. Young things are red. If something is smart and not red then it is not green. All furry things are green. If something is red and green then it is blue. If something is young and big then it is smart. If something is blue and green then it is smart. Blue, red things are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-527_Q22", "context": "The bald eagle is rough. The bald eagle does not like the lion. The bald eagle sees the mouse. The cat does not eat the lion. The cat sees the mouse. The lion sees the cat. The mouse eats the lion. The mouse likes the bald eagle. The mouse sees the bald eagle. The mouse sees the cat. If someone likes the bald eagle and the bald eagle does not like the cat then the cat does not like the lion. If someone eats the mouse then the mouse is kind. If the lion is not rough then the lion is cold. If someone likes the lion then the lion is green. If someone is kind then they like the lion. If someone eats the lion then the lion eats the mouse. If someone likes the cat then they do not like the bald eagle. If someone is green then they like the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1164_Q9", "context": "Bob is big. Bob is blue. Bob is cold. Bob is quiet. Bob is rough. Bob is smart. Bob is white. Dave is rough. Fiona is blue. Harry is big. Harry is cold. If someone is blue then they are cold. If someone is big then they are white. If Bob is rough and Bob is blue then Bob is big. All blue, smart people are big. If someone is blue and rough then they are quiet. All smart people are blue. Cold people are rough. If someone is quiet then they are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-230_Q20", "context": "The bear is big. The bear is cold. The bear likes the cat. The bear visits the cat. The bear visits the cow. The cat is green. The cat needs the bear. The cow needs the dog. The dog is blue. The dog likes the bear. The dog visits the cow. If something is blue then it is red. If something likes the cow then the cow is big. If the cow needs the cat then the cow likes the cat. If something is blue then it is cold. If something is big and it likes the dog then the dog likes the cow. If something needs the bear and the bear needs the dog then the bear is red. If something likes the bear and it is big then it needs the dog. If something is big then it needs the cat. If the bear is big then the bear likes the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-459_Q16", "context": "Bob is not cold. Bob is furry. Bob is round. Charlie is big. Charlie is furry. Charlie is quiet. Charlie is red. Charlie is not white. Erin is big. Gary is big. Gary is quiet. If someone is red and cold then they are furry. All furry people are round. If Charlie is furry then Charlie is round. Big people are red. Round people are quiet. If someone is red then they are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-285_Q9", "context": "Bob is big. Bob is cold. Bob is furry. Bob is smart. Fiona is cold. Fiona is not green. Fiona is white. Gary is smart. Harry is big. Harry is cold. Harry is smart. All green people are furry. If Gary is furry and Gary is not smart then Gary is white. Smart people are green. If Bob is not green and Bob is not white then Bob is furry. Big people are cold. If someone is smart and furry then they are big. If someone is white and not cold then they are not blue. All cold people are not blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-312_Q22", "context": "The dog chases the squirrel. The dog likes the tiger. The lion chases the squirrel. The lion is big. The lion is red. The lion likes the tiger. The lion visits the squirrel. The lion visits the tiger. The squirrel chases the lion. The squirrel is nice. The squirrel likes the lion. The tiger chases the dog. The tiger is kind. The tiger is red. The tiger likes the dog. The tiger likes the lion. If something chases the lion then the lion is blue. If something is kind then it chases the tiger. If something chases the tiger then it visits the dog. If something visits the lion then it likes the squirrel. If something is red and it chases the tiger then it likes the squirrel. If something chases the tiger and it visits the squirrel then the squirrel visits the tiger. If something visits the dog then the dog likes the lion. If something is kind and it visits the dog then the dog is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger chases the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-618_Q4", "context": "Anne is kind. Bob is cold. Bob is rough. Bob is white. Dave is cold. Dave is green. Dave is white. Fiona is cold. Fiona is nice. Fiona is rough. Kind things are nice. White, round things are green. If something is nice and round then it is white. If something is rough then it is round. Cold things are rough. If Anne is kind and Anne is nice then Anne is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-329_Q19", "context": "The bald eagle is cold. The bald eagle is rough. The bald eagle needs the tiger. The bald eagle visits the squirrel. The lion is cold. The lion is kind. The lion needs the tiger. The squirrel chases the bald eagle. The squirrel chases the tiger. The squirrel visits the tiger. The tiger is red. If someone needs the squirrel then they chase the tiger. If someone is rough and they chase the squirrel then the squirrel visits the lion. If someone visits the tiger and they visit the lion then the lion needs the bald eagle. If someone visits the bald eagle and the bald eagle visits the squirrel then the bald eagle chases the squirrel. If someone is red then they chase the lion. If someone chases the lion and they visit the bald eagle then they need the bald eagle. If someone visits the bald eagle then they need the bald eagle. If someone chases the lion then they visit the bald eagle. If someone chases the tiger then the tiger chases the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not visit the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-498_Q15", "context": "The cow eats the dog. The cow eats the mouse. The cow is blue. The cow is nice. The cow does not like the mouse. The cow sees the mouse. The dog eats the cow. The dog is blue. The dog is round. The dog sees the tiger. The mouse is kind. The mouse likes the cow. The mouse sees the cow. The tiger is not nice. The tiger does not like the mouse. The tiger sees the mouse. If someone is round then they are nice. If someone is green then they like the tiger. If someone likes the tiger then the tiger sees the cow. If someone sees the mouse and they do not like the mouse then the mouse is blue. If someone is nice then they eat the dog. If the tiger is nice then the tiger does not like the cow. If someone is round and they eat the dog then they are green. If someone eats the cow then they like the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1057_Q11", "context": "Bob is kind. Bob is quiet. Bob is white. Charlie is quiet. Erin is furry. Erin is quiet. Erin is white. Fiona is blue. Fiona is furry. Fiona is kind. Fiona is quiet. All kind, rough people are furry. Green, furry people are quiet. If someone is rough then they are kind. If someone is quiet and kind then they are rough. If someone is white then they are quiet. If someone is blue and white then they are kind. If someone is white then they are blue. If Charlie is quiet then Charlie is white.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-922_Q10", "context": "The cow is cold. The cow is not round. The cow sees the squirrel. The cow sees the tiger. The mouse needs the cow. The mouse needs the tiger. The squirrel needs the cow. The tiger is blue. The tiger is red. The tiger is round. The tiger sees the mouse. If something needs the squirrel then the squirrel sees the tiger. If the cow sees the squirrel then the cow eats the mouse. If the squirrel eats the mouse and the squirrel is not green then the mouse is not red. If the mouse needs the tiger and the mouse is red then the tiger does not see the squirrel. If something needs the mouse and the mouse eats the cow then the cow eats the squirrel. If something is blue then it needs the squirrel. If something needs the cow and the cow is blue then it eats the mouse. If something eats the mouse then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-897_Q4", "context": "Anne is nice. Bob is big. Bob is blue. Bob is cold. Charlie is big. Charlie is cold. Charlie is nice. Charlie is young. Fiona is furry. Fiona is young. If someone is furry and nice then they are cold. If Bob is blue and Bob is big then Bob is cold. All blue, cold people are big. If someone is nice then they are smart. All smart, big people are nice. All smart people are blue. Blue, smart people are furry. Furry, cold people are smart. Cold people are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-370_Q4", "context": "Anne is kind. Anne is nice. Anne is quiet. Anne is round. Erin is cold. Erin is nice. Erin is rough. Erin is smart. Fiona is kind. Fiona is nice. Harry is kind. Harry is nice. Harry is quiet. Harry is rough. Harry is round. Harry is smart. If someone is rough then they are cold. If someone is quiet and nice then they are round. If Harry is cold then Harry is rough. Rough people are quiet. Quiet people are round. Kind, nice people are quiet. If someone is round then they are rough. All cold people are nice. All kind, cold people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-120_Q11", "context": "Dave is nice. Dave is red. Erin is red. Fiona is rough. Fiona is round. Gary is cold. Gary is green. Gary is red. Gary is rough. Gary is not smart. Smart, round things are nice. Red things are nice. Rough, nice things are round. Cold things are rough. If something is red and nice then it is cold. All round things are green. If something is nice and not cold then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-685_Q8", "context": "The bear chases the cow. The bear eats the cow. The bear is young. The cow is red. The cow is round. The cow visits the squirrel. The rabbit is round. The rabbit visits the bear. The squirrel eats the cow. The squirrel visits the rabbit. If someone visits the squirrel and the squirrel chases the cow then the cow is round. If someone is big and red then they chase the rabbit. If someone visits the rabbit then the rabbit visits the bear. If the squirrel chases the cow and the cow is round then the cow is young. If someone chases the squirrel then the squirrel eats the rabbit. If someone eats the cow and the cow eats the rabbit then the cow chases the rabbit. If someone chases the rabbit then the rabbit is red. All red people are big. If someone eats the bear then they chase the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-230_Q19", "context": "The bear is big. The bear is cold. The bear likes the cat. The bear visits the cat. The bear visits the cow. The cat is green. The cat needs the bear. The cow needs the dog. The dog is blue. The dog likes the bear. The dog visits the cow. If something is blue then it is red. If something likes the cow then the cow is big. If the cow needs the cat then the cow likes the cat. If something is blue then it is cold. If something is big and it likes the dog then the dog likes the cow. If something needs the bear and the bear needs the dog then the bear is red. If something likes the bear and it is big then it needs the dog. If something is big then it needs the cat. If the bear is big then the bear likes the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not like the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-489_Q11", "context": "Bob is green. Bob is not nice. Dave is furry. Erin is furry. Erin is nice. Fiona is big. Fiona is not furry. Kind things are young. Young, big things are green. If something is young then it is green. If something is big and rough then it is not nice. If something is big then it is nice. If Bob is furry then Bob is young. If something is furry then it is big. If something is nice then it is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-423_Q21", "context": "Anne is cold. Anne is furry. Anne is not quiet. Charlie is kind. Fiona is not quiet. Fiona is young. Harry is cold. Kind things are furry. Nice things are big. Furry things are nice. If something is young and furry then it is quiet. If Anne is quiet then Anne is cold. Kind, big things are young. If something is kind and not furry then it is not young.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-983_Q3", "context": "The bald eagle chases the tiger. The bald eagle is cold. The bald eagle is rough. The dog chases the rabbit. The dog eats the rabbit. The rabbit chases the dog. The rabbit is round. The tiger chases the dog. The tiger eats the rabbit. The tiger is cold. If someone visits the dog and the dog eats the bald eagle then the bald eagle is green. If someone is red then they chase the rabbit. If someone eats the dog then they eat the rabbit. If someone chases the rabbit and the rabbit is green then they are green. If someone is green then they eat the dog. If someone visits the bald eagle and they are round then the bald eagle is green. If someone visits the rabbit and they eat the bald eagle then they eat the dog. If someone chases the dog then they visit the bald eagle. If someone is rough and they eat the rabbit then they eat the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger visits the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1187_Q7", "context": "Anne is kind. Anne is young. Bob is rough. Charlie is cold. Charlie is kind. Charlie is rough. Charlie is smart. Fiona is kind. Fiona is rough. Fiona is smart. Rough, cold things are smart. All young things are kind. All kind things are blue. Young things are cold. If something is rough then it is cold. All young, blue things are kind. If something is cold and smart then it is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-365_Q1", "context": "The cat likes the squirrel. The mouse visits the squirrel. The mouse visits the tiger. The squirrel likes the tiger. The squirrel needs the tiger. The squirrel visits the tiger. The tiger needs the cat. If something is red and it visits the squirrel then the squirrel is big. If something is red then it needs the squirrel. If the mouse needs the cat then the mouse is blue. If something is cold and it visits the tiger then it needs the mouse. If something needs the tiger and it visits the tiger then the tiger likes the mouse. If something needs the squirrel then the squirrel needs the cat. If something likes the mouse then it needs the cat. If something needs the cat then it is red.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel needs the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-478_Q5", "context": "The cow is kind. The cow sees the mouse. The mouse eats the cow. The mouse is kind. The mouse needs the squirrel. The rabbit eats the mouse. The rabbit is not blue. The squirrel is not blue. The squirrel is green. The squirrel is rough. The squirrel needs the mouse. The squirrel sees the rabbit. If something sees the cow then it sees the squirrel. If something sees the rabbit then it eats the cow. If something needs the cow then the cow eats the mouse. If something needs the squirrel and the squirrel needs the cow then the cow does not need the rabbit. If the mouse eats the rabbit and the rabbit does not see the mouse then the rabbit is green. If the cow needs the rabbit then the rabbit does not eat the mouse. If something eats the squirrel and the squirrel eats the cow then it needs the cow. If something eats the mouse then it eats the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit needs the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-336_Q8", "context": "The bald eagle eats the bear. The bald eagle eats the cat. The bald eagle eats the rabbit. The bald eagle is young. The bald eagle likes the bear. The bald eagle sees the cat. The bald eagle sees the rabbit. The bear eats the bald eagle. The cat eats the bald eagle. The cat likes the rabbit. The rabbit is round. The rabbit sees the bald eagle. If someone eats the bald eagle and they see the rabbit then they are round. If someone eats the bald eagle and they eat the rabbit then the rabbit likes the cat. If someone is young and they eat the rabbit then the rabbit sees the cat. If someone eats the rabbit and the rabbit is cold then they are blue. If the rabbit sees the cat and the rabbit is round then the cat eats the rabbit. If the bald eagle sees the bear and the bald eagle likes the bear then the bald eagle is red. If someone eats the rabbit and they are blue then they eat the bald eagle. If someone likes the cat then the cat is round. If the rabbit likes the cat and the cat is round then the rabbit is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not like the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-818_Q11", "context": "Charlie is young. Erin is blue. Erin is not kind. Fiona is blue. Fiona is white. Gary is blue. Gary is kind. Furry, nice things are white. If something is young and blue then it is smart. All blue, smart things are furry. All smart, white things are furry. Young things are nice. If Fiona is smart and Fiona is young then Fiona is not furry. If Erin is kind then Erin is furry. If Gary is smart and Gary is white then Gary is not kind. If something is nice then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-455_Q9", "context": "The bald eagle chases the squirrel. The bald eagle does not eat the lion. The bald eagle eats the squirrel. The bald eagle does not see the rabbit. The lion does not chase the rabbit. The lion is kind. The rabbit chases the bald eagle. The rabbit eats the bald eagle. The rabbit is big. The rabbit is cold. The rabbit sees the squirrel. The squirrel is blue. The squirrel is cold. The squirrel is kind. If something chases the rabbit then it is kind. If something sees the lion then it chases the rabbit. If the rabbit sees the squirrel and the squirrel eats the rabbit then the rabbit is green. If something eats the lion then the lion chases the squirrel. If something eats the rabbit then the rabbit sees the lion. If something is kind then it eats the rabbit. If something sees the lion and it does not eat the lion then it eats the bald eagle. If something eats the squirrel and the squirrel eats the bald eagle then the squirrel is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-294_Q2", "context": "The cat eats the squirrel. The cat is round. The cat needs the dog. The cat needs the squirrel. The dog likes the cat. The dog likes the tiger. The squirrel is blue. The squirrel is not round. The tiger is blue. The tiger is kind. The tiger is round. The tiger needs the squirrel. If something likes the tiger and the tiger needs the dog then it is round. If something eats the cat then it needs the dog. If something is big then it needs the dog. If the dog likes the tiger and the tiger likes the dog then the dog does not like the squirrel. If something is round then it eats the cat. If something needs the cat and it eats the tiger then the tiger needs the dog. If something needs the dog and it does not eat the tiger then it is blue. If the dog is round then the dog eats the squirrel. If something likes the tiger and it is kind then the tiger likes the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-947_Q2", "context": "The bear does not eat the lion. The bear likes the lion. The lion is big. The lion visits the mouse. The lion visits the squirrel. The mouse eats the squirrel. The mouse likes the bear. The mouse likes the lion. The mouse visits the squirrel. The squirrel is not cold. The squirrel is nice. If something eats the squirrel then the squirrel eats the mouse. If something visits the bear and it is green then it is nice. If something is green and blue then it visits the bear. If something likes the lion and it is blue then the lion is nice. If something eats the mouse then it likes the lion. If the bear is not green then the bear likes the lion. If something visits the bear then the bear likes the lion. If something likes the lion and the lion is blue then the lion likes the mouse. If something is nice then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-1009_Q18", "context": "The cat is red. The cat likes the squirrel. The lion eats the squirrel. The mouse is cold. The mouse visits the lion. The squirrel is red. The squirrel visits the cat. If someone is cold and they like the squirrel then the squirrel is cold. If someone is cold then they visit the squirrel. If someone visits the lion and they like the cat then they visit the squirrel. If someone visits the mouse then the mouse is red. If someone is cold then they like the mouse. If someone likes the mouse and the mouse visits the lion then they like the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion likes the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-960_Q6", "context": "Anne is quiet. Anne is not round. Anne is young. Charlie is not quiet. Charlie is young. Dave is blue. Dave is not smart. Harry is blue. Harry is kind. Harry is young. All blue, kind things are rough. Rough, kind things are quiet. Round things are kind. If Anne is round then Anne is kind. If Anne is smart and Anne is quiet then Anne is not round. All blue things are round. If something is kind and not round then it is young. If something is quiet and not blue then it is young. Quiet things are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-677_Q2", "context": "Bob is furry. Bob is green. Charlie is furry. Charlie is kind. Charlie is young. Erin is green. Erin is kind. Fiona is blue. Fiona is furry. Fiona is smart. All young people are kind. Furry, cold people are young. Furry, blue people are smart. If someone is kind and furry then they are blue. If Bob is smart then Bob is furry. All furry, blue people are kind. If someone is furry then they are cold. If someone is young and furry then they are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-960_Q12", "context": "The dog is round. The dog needs the tiger. The lion chases the dog. The lion chases the mouse. The lion needs the dog. The lion sees the dog. The mouse is red. The mouse sees the tiger. The tiger is blue. The tiger is red. The tiger is round. The tiger sees the lion. If something chases the mouse and it is round then the mouse is kind. If the mouse sees the tiger and the tiger is red then the tiger is kind. If something chases the mouse then it sees the mouse. If something chases the lion and the lion sees the tiger then the tiger chases the lion. If something is round then it needs the tiger. If something chases the dog then it is round. If something is round then it sees the lion. If something is kind then it chases the dog. If something needs the lion then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not see the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-521_Q16", "context": "The cow eats the lion. The lion eats the mouse. The lion needs the mouse. The mouse sees the lion. The tiger eats the lion. The tiger is green. The tiger is red. The tiger needs the lion. The tiger needs the mouse. The tiger sees the cow. If someone sees the lion then they are cold. If someone needs the tiger and they need the mouse then they are cold. If someone needs the tiger and the tiger eats the cow then the tiger needs the lion. All round people are green. All young, green people are round. If someone eats the mouse and the mouse sees the lion then they are green. If someone needs the tiger then the tiger sees the lion. If someone is cold and they see the lion then they need the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow needs the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-568_Q9", "context": "The bald eagle is kind. The bald eagle likes the rabbit. The cat is not kind. The cat is not nice. The cat visits the lion. The lion is green. The lion is kind. The lion likes the bald eagle. The lion likes the cat. The lion does not visit the cat. The lion visits the rabbit. The rabbit is cold. The rabbit likes the bald eagle. The rabbit needs the bald eagle. If the rabbit needs the bald eagle and the bald eagle visits the cat then the rabbit likes the cat. If the cat needs the rabbit then the cat does not visit the bald eagle. If someone visits the cat and they do not visit the bald eagle then they are kind. If someone is cold and not kind then they like the lion. If someone needs the rabbit then they visit the lion. If someone needs the rabbit and the rabbit does not need the lion then the rabbit is green. If someone likes the lion then the lion needs the rabbit. If someone visits the lion then they are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion visits the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-691_Q10", "context": "The bald eagle sees the cat. The cat eats the dog. The cat is big. The cat is kind. The dog eats the bald eagle. The dog eats the cat. The dog is kind. The dog sees the lion. The lion eats the bald eagle. The lion is green. The lion is nice. The lion sees the dog. Cold things are green. If something sees the lion then it needs the dog. If something needs the bald eagle then it sees the lion. If something is nice then it sees the lion. If something is big then it sees the cat. If something is green and it needs the dog then it eats the cat. If something is green and it eats the cat then the cat needs the bald eagle. If something eats the bald eagle then the bald eagle is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not need the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-602_Q13", "context": "The cat is red. The cat is not rough. The cat does not like the squirrel. The cat does not see the squirrel. The dog is not young. The dog needs the cat. The mouse is round. The mouse likes the cat. The mouse needs the cat. The mouse sees the cat. The squirrel is young. The squirrel needs the mouse. If something sees the dog then it is red. If something is red and it needs the squirrel then the squirrel likes the mouse. If something is young and it sees the dog then the dog needs the mouse. If something needs the mouse then it is rough. If the cat likes the mouse then the mouse sees the squirrel. If something needs the cat and it needs the mouse then it likes the cat. If something is rough then it sees the dog. If something is rough and not red then it likes the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not see the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-658_Q14", "context": "Anne is rough. Charlie is quiet. Charlie is smart. Charlie is white. Erin is quiet. Erin is red. Fiona is quiet. Fiona is red. Fiona is round. Fiona is smart. Fiona is white. If someone is furry and round then they are smart. All round, red people are furry. All smart, furry people are rough. If Erin is red then Erin is white. All smart, rough people are furry. All furry, rough people are round. If someone is white then they are rough. If someone is red and rough then they are smart. All red, rough people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1118_Q22", "context": "Bob is kind. Charlie is green. Charlie is kind. Charlie is young. Dave is young. Erin is big. Erin is young. All white, green people are young. All rough, kind people are big. If someone is green then they are young. Young people are rough. Big, rough people are furry. Kind people are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1220_Q6", "context": "Anne is blue. Bob is blue. Bob is green. Bob is smart. Dave is big. Dave is nice. Fiona is smart. If something is nice then it is not green. Quiet, blue things are big. If something is blue then it is young. If something is nice then it is quiet. Young things are blue. If Anne is young then Anne is quiet. If Dave is young then Dave is green. All big, quiet things are nice. If Fiona is blue then Fiona is not green.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-226_Q3", "context": "The bear is not big. The bear needs the squirrel. The dog is nice. The dog sees the tiger. The squirrel sees the bear. The squirrel sees the tiger. The tiger eats the dog. The tiger is green. The tiger needs the bear. The tiger sees the squirrel. If someone eats the dog then the dog needs the bear. If someone eats the bear then they eat the tiger. If someone needs the tiger and they see the dog then they eat the tiger. If someone is nice and they need the bear then they eat the bear. If someone sees the dog then they eat the squirrel. If someone needs the tiger and the tiger eats the bear then they eat the squirrel. If someone eats the tiger then the tiger eats the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog needs the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-861_Q16", "context": "The cat needs the dog. The dog is kind. The dog needs the rabbit. The rabbit eats the dog. The rabbit is green. The tiger chases the rabbit. The tiger is big. If something is nice and it eats the tiger then it needs the dog. If something chases the cat then it eats the cat. If the dog chases the tiger then the tiger needs the rabbit. If the rabbit chases the tiger then the rabbit chases the cat. If something chases the cat then the cat is kind. If something eats the dog then it chases the cat. If something is rough then it eats the dog. If something is kind then it is rough. If something eats the rabbit and the rabbit is big then it is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog needs the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-630_Q10", "context": "Bob is big. Bob is nice. Bob is quiet. Dave is green. Dave is quiet. Gary is green. Gary is red. Gary is round. Harry is green. Harry is red. Harry is round. Nice, quiet people are big. If someone is red and round then they are smart. All quiet people are round. If someone is big and nice then they are quiet. If someone is big and red then they are nice. If someone is quiet and round then they are red. If someone is red and round then they are smart. If Bob is green then Bob is big. All quiet, smart people are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-129_Q8", "context": "The lion is cold. The lion does not need the mouse. The lion visits the squirrel. The mouse is cold. The mouse does not visit the squirrel. The rabbit is cold. The rabbit is rough. The rabbit does not need the lion. The rabbit does not visit the squirrel. The squirrel is kind. The squirrel needs the mouse. The squirrel needs the rabbit. The squirrel does not see the lion. The squirrel does not see the rabbit. If something needs the rabbit and the rabbit sees the mouse then the mouse does not see the lion. If something is rough then it visits the mouse. If something needs the rabbit and it visits the mouse then the mouse needs the rabbit. If something needs the rabbit and the rabbit is cold then it is rough. If something needs the rabbit then the rabbit needs the squirrel. If the squirrel sees the lion and the squirrel is not green then the lion needs the squirrel. If something is big then it visits the lion. If something visits the squirrel and the squirrel sees the lion then the lion is not kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not need the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-293_Q1", "context": "Bob is blue. Bob is round. Bob is not smart. Charlie is not smart. Dave is round. Harry is big. Harry is smart. Round, blue things are not red. If something is furry and round then it is cold. Smart things are furry. Cold, round things are smart. All cold things are blue. Furry, big things are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-595_Q8", "context": "The bald eagle sees the lion. The bald eagle sees the rabbit. The dog chases the lion. The lion chases the rabbit. The lion is kind. The lion is rough. The lion needs the rabbit. The rabbit chases the dog. The rabbit is blue. The rabbit is nice. The rabbit sees the lion. If something sees the bald eagle then the bald eagle sees the rabbit. If something needs the dog then the dog sees the rabbit. If something needs the dog and the dog is kind then the dog chases the rabbit. If something needs the rabbit and the rabbit is blue then the rabbit sees the bald eagle. If something sees the rabbit and the rabbit sees the lion then it is kind. If the lion is rough and the lion needs the rabbit then the lion is kind. If something sees the bald eagle then the bald eagle needs the dog. If something sees the rabbit then the rabbit sees the dog. If the bald eagle chases the rabbit and the bald eagle is nice then the rabbit chases the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not see the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-527_Q10", "context": "The bald eagle is rough. The bald eagle does not like the lion. The bald eagle sees the mouse. The cat does not eat the lion. The cat sees the mouse. The lion sees the cat. The mouse eats the lion. The mouse likes the bald eagle. The mouse sees the bald eagle. The mouse sees the cat. If someone likes the bald eagle and the bald eagle does not like the cat then the cat does not like the lion. If someone eats the mouse then the mouse is kind. If the lion is not rough then the lion is cold. If someone likes the lion then the lion is green. If someone is kind then they like the lion. If someone eats the lion then the lion eats the mouse. If someone likes the cat then they do not like the bald eagle. If someone is green then they like the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-702_Q1", "context": "Charlie is big. Charlie is cold. Charlie is nice. Charlie is young. Dave is big. Dave is nice. Fiona is big. Fiona is nice. Gary is cold. Gary is nice. All rough, young things are red. All rough, cold things are young. All nice, red things are round. If Charlie is cold and Charlie is rough then Charlie is young. All round, red things are rough. All cold, big things are red. Cold things are big. If Dave is rough then Dave is cold. If Fiona is cold then Fiona is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-620_Q20", "context": "Anne is red. Bob is big. Bob is green. Bob is red. Charlie is furry. Dave is big. Dave is blue. If something is big then it is smart. If something is blue then it is green. All furry things are big. Smart things are blue. If something is green then it is furry. Green things are smart. All green things are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-203_Q13", "context": "Bob is nice. Bob is round. Bob is young. Dave is round. Erin is big. Erin is red. Gary is young. All round things are nice. All nice, big things are white. If something is big and white then it is round. Young things are nice. Big, red things are young. All nice things are quiet. All quiet things are big. Young, quiet things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1110_Q3", "context": "Bob is blue. Bob is cold. Bob is nice. Bob is round. Bob is smart. Bob is white. Dave is cold. Dave is white. Erin is blue. Erin is cold. Erin is nice. Erin is round. Erin is smart. Fiona is blue. Fiona is nice. Fiona is smart. White people are nice. All rough people are smart. If someone is blue and rough then they are smart. All nice, rough people are smart. If someone is nice and round then they are rough. White, smart people are blue. All blue people are nice. Nice people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-979_Q9", "context": "Charlie is red. Dave is red. Dave is rough. Dave is round. Dave is young. Fiona is quiet. Fiona is red. Harry is furry. Harry is kind. Harry is young. All rough things are round. All rough things are round. All round, rough things are young. All red things are young. If Fiona is young and Fiona is not furry then Fiona is kind. If something is furry then it is rough. Quiet, kind things are rough. All quiet, young things are kind. Young things are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1203_Q17", "context": "Anne is nice. Erin is red. Erin is not round. Fiona is not nice. Harry is not blue. Harry is red. Harry is young. If Harry is blue and Harry is nice then Harry is red. If something is young and round then it is rough. All young, nice things are rough. Round, quiet things are young. If Erin is young and Erin is round then Erin is blue. Nice things are quiet. All quiet things are round. Rough things are not red. If something is round and red then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-770_Q3", "context": "The bald eagle chases the cat. The bald eagle does not chase the mouse. The bald eagle is young. The cat does not chase the bald eagle. The cat does not eat the bald eagle. The cat is rough. The cat is young. The cat sees the bald eagle. The lion chases the bald eagle. The lion chases the cat. The lion eats the bald eagle. The lion eats the cat. The mouse chases the bald eagle. The mouse chases the lion. The mouse eats the bald eagle. The mouse is young. If something is kind then it is round. If something chases the bald eagle then it is round. If something is round then it sees the bald eagle. If something chases the cat and the cat chases the bald eagle then it eats the bald eagle. If something chases the cat then the cat sees the lion. If something sees the cat then it chases the bald eagle. If the bald eagle is young and the bald eagle chases the lion then the bald eagle sees the lion. If the mouse eats the cat and the mouse eats the bald eagle then the bald eagle eats the cat. If something sees the bald eagle and it chases the cat then the bald eagle sees the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat sees the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-808_Q5", "context": "Charlie is cold. Charlie is rough. Erin is not big. Erin is blue. Erin is cold. Erin is furry. Erin is red. Erin is rough. Erin is smart. Fiona is big. Fiona is cold. Harry is blue. Harry is red. Harry is smart. If someone is blue then they are rough. Smart people are furry. All big people are blue. All furry people are red. All rough people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-345_Q12", "context": "The cat is big. The cat is cold. The cat likes the cow. The cat visits the lion. The cow is blue. The cow likes the lion. The cow does not visit the lion. The lion chases the cat. The lion is not big. The lion is rough. The lion visits the cat. The squirrel likes the cow. If something visits the squirrel then it likes the cat. If something visits the cat then it likes the cat. If something likes the squirrel and it is big then the squirrel likes the lion. If something likes the cow and it visits the cow then the cow visits the cat. If something likes the cat then it chases the squirrel. If something chases the lion and the lion is not cold then it visits the cow. If something chases the lion then the lion chases the cow. If something chases the squirrel then the squirrel visits the cat. If the cow is rough then the cow chases the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not chase the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-804_Q1", "context": "Anne is kind. Charlie is not big. Charlie is not green. Charlie is white. Erin is big. Erin is green. Erin is white. Fiona is green. Fiona is kind. Fiona is quiet. Fiona is red. Fiona is white. If Erin is big and Erin is red then Erin is kind. All rough things are green. If something is kind then it is green. Quiet, green things are big. If something is rough and green then it is red. If something is green then it is rough. If Erin is red then Erin is green. All red, rough things are quiet. If something is quiet and not red then it is not white.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-187_Q7", "context": "Anne is big. Anne is rough. Dave is blue. Dave is cold. Dave is red. Dave is rough. Dave is round. Gary is round. Harry is cold. Harry is rough. All round things are blue. If something is cold then it is blue. Blue, red things are round. If something is rough then it is red. All big, red things are cold. All round things are green. Round, cold things are big. If something is green then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-346_Q6", "context": "The bald eagle is nice. The bald eagle needs the cow. The bald eagle needs the squirrel. The cow is blue. The cow likes the bald eagle. The cow sees the squirrel. The lion is kind. The lion is nice. The lion likes the bald eagle. The lion needs the squirrel. The lion sees the squirrel. The squirrel likes the lion. If something sees the lion then the lion likes the squirrel. If something is kind and it sees the bald eagle then it needs the cow. If something sees the squirrel and it sees the bald eagle then the bald eagle likes the cow. If something sees the lion and the lion likes the squirrel then the lion needs the squirrel. If something likes the squirrel and it needs the squirrel then the squirrel sees the cow. If something sees the cow then it sees the lion. If something needs the cow and it needs the squirrel then it likes the squirrel. If something sees the lion then the lion sees the bald eagle. If something sees the cow and it likes the cow then the cow sees the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not see the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-658_Q4", "context": "Anne is rough. Charlie is quiet. Charlie is smart. Charlie is white. Erin is quiet. Erin is red. Fiona is quiet. Fiona is red. Fiona is round. Fiona is smart. Fiona is white. If someone is furry and round then they are smart. All round, red people are furry. All smart, furry people are rough. If Erin is red then Erin is white. All smart, rough people are furry. All furry, rough people are round. If someone is white then they are rough. If someone is red and rough then they are smart. All red, rough people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-109_Q11", "context": "Anne is green. Anne is rough. Bob is green. Bob is round. Dave is green. Dave is rough. Fiona is cold. All kind things are furry. Green things are round. If something is cold then it is kind. If something is furry then it is green. If Dave is quiet then Dave is not furry. Round things are not quiet. If something is quiet and not kind then it is not rough. All round, cold things are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-927_Q19", "context": "Anne is cold. Anne is not furry. Anne is red. Anne is round. Bob is red. Fiona is not round. Gary is furry. If someone is red then they are round. Red people are round. Furry, blue people are round. If someone is cold and not blue then they are not red. If someone is round and red then they are quiet. If someone is cold then they are smart. If someone is blue and smart then they are not cold. If someone is quiet and round then they are cold. Round, smart people are not furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-187_Q3", "context": "Anne is big. Anne is rough. Dave is blue. Dave is cold. Dave is red. Dave is rough. Dave is round. Gary is round. Harry is cold. Harry is rough. All round things are blue. If something is cold then it is blue. Blue, red things are round. If something is rough then it is red. All big, red things are cold. All round things are green. Round, cold things are big. If something is green then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1170_Q10", "context": "Bob is kind. Charlie is quiet. Charlie is rough. Fiona is kind. Fiona is rough. Fiona is white. Gary is nice. If Gary is red and Gary is white then Gary is quiet. All white things are rough. If something is rough then it is red. If something is nice then it is white. All smart things are white. Rough, quiet things are not kind. If something is quiet and not smart then it is kind. Smart things are quiet. If something is smart and not rough then it is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-68_Q2", "context": "The cat chases the rabbit. The cat likes the mouse. The dog is blue. The dog is not cold. The dog likes the cat. The dog likes the mouse. The mouse is cold. The mouse does not like the cat. The rabbit chases the mouse. The rabbit is nice. If someone chases the dog then the dog likes the cat. If someone is nice and they eat the mouse then the mouse chases the dog. If someone likes the mouse then they are blue. If someone eats the cat and they chase the rabbit then the rabbit likes the mouse. If the dog eats the rabbit and the rabbit likes the mouse then the dog likes the mouse. If the cat chases the rabbit then the cat chases the dog. If someone eats the rabbit then they like the rabbit. If someone is blue then they eat the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-620_Q19", "context": "Anne is red. Bob is big. Bob is green. Bob is red. Charlie is furry. Dave is big. Dave is blue. If something is big then it is smart. If something is blue then it is green. All furry things are big. Smart things are blue. If something is green then it is furry. Green things are smart. All green things are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-523_Q13", "context": "Anne is green. Anne is young. Charlie is blue. Charlie is green. Charlie is white. Dave is white. Erin is white. If Dave is kind and Dave is white then Dave is blue. If someone is white then they are nice. If someone is white then they are nice. All nice, green people are young. If someone is green then they are quiet. Nice people are kind. If Dave is blue then Dave is white. If Anne is nice and Anne is not white then Anne is green. If Dave is white and Dave is blue then Dave is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-278_Q22", "context": "The bald eagle eats the lion. The bald eagle is young. The cow sees the dog. The cow sees the lion. The cow does not visit the bald eagle. The cow visits the dog. The dog does not eat the cow. The dog is round. The dog does not visit the bald eagle. The dog visits the cow. The lion is round. The lion is young. If someone visits the dog and they see the cow then they do not see the bald eagle. If someone visits the dog then they eat the bald eagle. If someone eats the bald eagle then the bald eagle is rough. If someone is rough then they visit the dog. If someone visits the lion and they are not nice then the lion eats the bald eagle. If someone sees the lion and the lion eats the dog then they eat the cow. If someone visits the dog then they see the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-498_Q14", "context": "The cow eats the dog. The cow eats the mouse. The cow is blue. The cow is nice. The cow does not like the mouse. The cow sees the mouse. The dog eats the cow. The dog is blue. The dog is round. The dog sees the tiger. The mouse is kind. The mouse likes the cow. The mouse sees the cow. The tiger is not nice. The tiger does not like the mouse. The tiger sees the mouse. If someone is round then they are nice. If someone is green then they like the tiger. If someone likes the tiger then the tiger sees the cow. If someone sees the mouse and they do not like the mouse then the mouse is blue. If someone is nice then they eat the dog. If the tiger is nice then the tiger does not like the cow. If someone is round and they eat the dog then they are green. If someone eats the cow then they like the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse eats the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-863_Q11", "context": "Anne is furry. Anne is kind. Anne is nice. Anne is young. Bob is big. Bob is furry. Charlie is nice. Charlie is young. Dave is cold. Dave is kind. Dave is young. All cold, big people are furry. All big people are rough. All kind, big people are rough. If someone is nice and rough then they are kind. If Charlie is kind then Charlie is big. If someone is rough and kind then they are cold. Nice people are big. All rough, furry people are cold. Cold, nice people are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-998_Q6", "context": "Anne is kind. Anne is nice. Charlie is not big. Charlie is cold. Charlie is kind. Charlie is smart. Charlie is young. Erin is cold. Erin is kind. Erin is nice. Erin is young. Fiona is big. If Fiona is young then Fiona is nice. If something is nice and kind then it is smart. Big, kind things are young. All big things are round. If something is round then it is kind. If Charlie is big then Charlie is young. If something is smart and not round then it is not cold. All round, smart things are cold. Nice things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-310_Q16", "context": "Anne is big. Anne is nice. Anne is round. Bob is nice. Bob is round. Dave is blue. Dave is red. Dave is smart. Erin is red. Erin is round. If someone is big and round then they are smart. All rough people are blue. Nice people are big. If someone is nice then they are round. Round, red people are rough. All round, smart people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-483_Q6", "context": "The bear does not need the lion. The bear needs the mouse. The bear visits the cat. The bear does not visit the lion. The bear visits the mouse. The cat likes the lion. The lion is green. The lion visits the bear. The lion visits the cat. The lion visits the mouse. The mouse needs the lion. The mouse visits the bear. If something visits the lion and the lion is not blue then the lion is not green. If something is green then it likes the mouse. If something likes the mouse then the mouse needs the lion. If something visits the bear then it is not nice. If something likes the cat then it needs the bear. If something is young and it visits the mouse then it likes the cat. If something visits the cat and it is not nice then it is young. If something needs the bear then it needs the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-1036_Q2", "context": "The bear eats the squirrel. The bear is cold. The bear is rough. The bear visits the lion. The cat eats the lion. The lion likes the cat. The lion visits the bear. The squirrel eats the lion. The squirrel is cold. The squirrel is rough. The squirrel likes the bear. The squirrel visits the lion. Red people are green. If someone eats the lion then the lion is red. If someone is green and they like the lion then they eat the bear. If someone visits the bear then the bear likes the lion. If someone likes the squirrel and they like the lion then they visit the lion. If someone is green then they eat the squirrel. If someone likes the lion then they visit the bear. If someone visits the lion and the lion is green then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-178_Q3", "context": "Bob is big. Bob is quiet. Erin is white. Gary is big. Gary is red. Harry is green. Harry is smart. If someone is smart and big then they are white. All quiet, red people are smart. If someone is smart and white then they are green. Red, round people are quiet. If someone is big then they are round. If Erin is round and Erin is quiet then Erin is smart. If someone is red and green then they are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-702_Q7", "context": "Charlie is big. Charlie is cold. Charlie is nice. Charlie is young. Dave is big. Dave is nice. Fiona is big. Fiona is nice. Gary is cold. Gary is nice. All rough, young things are red. All rough, cold things are young. All nice, red things are round. If Charlie is cold and Charlie is rough then Charlie is young. All round, red things are rough. All cold, big things are red. Cold things are big. If Dave is rough then Dave is cold. If Fiona is cold then Fiona is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-249_Q9", "context": "The cat chases the rabbit. The cat chases the tiger. The cat sees the mouse. The cat does not see the rabbit. The mouse chases the cat. The mouse does not like the cat. The rabbit likes the tiger. The tiger is nice. The tiger is young. The tiger likes the cat. All big things are blue. If the cat sees the tiger then the cat chases the tiger. If something likes the rabbit then the rabbit does not like the mouse. All blue things are young. If something is blue then it is young. If something chases the cat then it likes the mouse. If something is young then it likes the tiger. If something likes the mouse then the mouse is big. If something sees the mouse and the mouse is not blue then the mouse likes the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1039_Q10", "context": "Charlie is big. Charlie is kind. Charlie is nice. Charlie is round. Erin is round. Fiona is cold. Fiona is kind. Fiona is round. Harry is round. Harry is smart. If something is blue then it is cold. Blue, cold things are nice. Blue things are big. All round things are blue. Smart things are blue. Round, smart things are kind. All nice, round things are smart. Nice, round things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-269_Q5", "context": "Charlie is blue. Charlie is round. Fiona is big. Fiona is cold. Gary is nice. Harry is nice. Harry is round. All rough, blue things are red. All nice things are cold. Big, cold things are rough. If something is red and blue then it is rough. All blue, cold things are nice. All red things are blue. If something is round and cold then it is blue. Blue things are big. If Charlie is big then Charlie is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-974_Q16", "context": "Dave is cold. Dave is kind. Dave is quiet. Erin is green. Fiona is cold. Fiona is green. Fiona is quiet. Fiona is round. Gary is cold. Gary is kind. Gary is young. If someone is kind then they are cold. All green people are quiet. If Erin is green and Erin is cold then Erin is round. All cold, smart people are round. All quiet, kind people are green. Quiet people are kind. If Erin is round then Erin is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-595_Q3", "context": "The bald eagle sees the lion. The bald eagle sees the rabbit. The dog chases the lion. The lion chases the rabbit. The lion is kind. The lion is rough. The lion needs the rabbit. The rabbit chases the dog. The rabbit is blue. The rabbit is nice. The rabbit sees the lion. If something sees the bald eagle then the bald eagle sees the rabbit. If something needs the dog then the dog sees the rabbit. If something needs the dog and the dog is kind then the dog chases the rabbit. If something needs the rabbit and the rabbit is blue then the rabbit sees the bald eagle. If something sees the rabbit and the rabbit sees the lion then it is kind. If the lion is rough and the lion needs the rabbit then the lion is kind. If something sees the bald eagle then the bald eagle needs the dog. If something sees the rabbit then the rabbit sees the dog. If the bald eagle chases the rabbit and the bald eagle is nice then the rabbit chases the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-294_Q3", "context": "The cat eats the squirrel. The cat is round. The cat needs the dog. The cat needs the squirrel. The dog likes the cat. The dog likes the tiger. The squirrel is blue. The squirrel is not round. The tiger is blue. The tiger is kind. The tiger is round. The tiger needs the squirrel. If something likes the tiger and the tiger needs the dog then it is round. If something eats the cat then it needs the dog. If something is big then it needs the dog. If the dog likes the tiger and the tiger likes the dog then the dog does not like the squirrel. If something is round then it eats the cat. If something needs the cat and it eats the tiger then the tiger needs the dog. If something needs the dog and it does not eat the tiger then it is blue. If the dog is round then the dog eats the squirrel. If something likes the tiger and it is kind then the tiger likes the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat eats the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-410_Q8", "context": "The bald eagle is green. The bald eagle needs the lion. The bald eagle sees the cat. The bald eagle sees the lion. The cat sees the bald eagle. The cow sees the bald eagle. The lion needs the bald eagle. If someone sees the cat and the cat is green then they visit the cat. If someone needs the cat and the cat needs the bald eagle then they are blue. If someone is blue and they need the lion then they see the lion. If someone sees the cow then the cow needs the bald eagle. If someone needs the bald eagle then they see the lion. If someone needs the cat then the cat is blue. If someone visits the lion and they are nice then the lion visits the cat. If someone needs the bald eagle and they see the lion then they see the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not need the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-14_Q6", "context": "The cat needs the mouse. The cat visits the lion. The lion is cold. The lion is red. The lion is round. The lion likes the squirrel. The lion needs the squirrel. The lion visits the squirrel. The mouse is cold. The mouse needs the lion. The mouse visits the lion. The squirrel likes the lion. If something needs the mouse and it needs the lion then the lion needs the mouse. If something visits the lion then it needs the cat. If the mouse visits the squirrel then the squirrel likes the cat. If something is rough then it is cold. If the squirrel is cold then the squirrel visits the cat. If something visits the cat then the cat likes the mouse. If something visits the squirrel then the squirrel is rough. If something likes the mouse then it does not need the squirrel. If something is red and it does not need the squirrel then it visits the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-709_Q12", "context": "The bald eagle is green. The bald eagle is rough. The bald eagle is young. The bald eagle needs the squirrel. The bald eagle sees the squirrel. The cat is round. The cat needs the bald eagle. The cat needs the dog. The cat visits the bald eagle. The dog needs the bald eagle. The dog sees the bald eagle. The dog visits the cat. The squirrel needs the cat. The squirrel visits the bald eagle. If something sees the dog then it sees the cat. If something needs the dog and it is round then it needs the cat. If something visits the squirrel then the squirrel visits the dog. If something is nice then it sees the dog. If something needs the cat then it is nice. If something sees the cat then it is green. If something needs the cat then it is rough. If something visits the squirrel and the squirrel visits the dog then the squirrel visits the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-975_Q15", "context": "The lion is kind. The mouse chases the lion. The rabbit is blue. The rabbit is round. The tiger is blue. The tiger is cold. The tiger is young. If something sees the rabbit then the rabbit is cold. If something sees the tiger then the tiger is kind. If something is round then it is kind. If the rabbit sees the lion and the rabbit sees the mouse then the mouse sees the tiger. If something is kind then it sees the mouse. If something is blue and kind then it sees the rabbit. If something chases the lion and the lion chases the rabbit then the rabbit chases the mouse. If something is kind and it sees the mouse then it sees the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not see the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1186_Q13", "context": "Erin is blue. Erin is cold. Erin is smart. Fiona is round. Gary is cold. Gary is green. Gary is quiet. Gary is round. Gary is smart. Harry is smart. Nice, green people are round. Green people are nice. If someone is blue then they are green. If someone is blue then they are smart. Nice, round people are blue. Smart people are green. If Harry is blue and Harry is smart then Harry is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1220_Q4", "context": "Anne is blue. Bob is blue. Bob is green. Bob is smart. Dave is big. Dave is nice. Fiona is smart. If something is nice then it is not green. Quiet, blue things are big. If something is blue then it is young. If something is nice then it is quiet. Young things are blue. If Anne is young then Anne is quiet. If Dave is young then Dave is green. All big, quiet things are nice. If Fiona is blue then Fiona is not green.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-369_Q10", "context": "The cow chases the lion. The cow chases the squirrel. The cow eats the rabbit. The cow is nice. The cow likes the rabbit. The cow likes the squirrel. The lion chases the rabbit. The lion eats the rabbit. The lion likes the squirrel. The rabbit chases the squirrel. The rabbit is blue. The rabbit is nice. The rabbit likes the lion. The squirrel eats the cow. The squirrel eats the lion. The squirrel is rough. If something is nice and it eats the cow then it is kind. If something chases the squirrel then it eats the lion. If something likes the lion and it likes the rabbit then the lion chases the squirrel. If something chases the squirrel and the squirrel is nice then the squirrel is kind. If something likes the squirrel and the squirrel likes the cow then the cow likes the squirrel. If something eats the lion then it likes the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not eat the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-779_Q20", "context": "Bob is green. Charlie is nice. Charlie is smart. Charlie is white. Erin is nice. Harry is nice. Harry is white. If Charlie is green then Charlie is blue. All nice people are cold. All cold people are blue. Rough people are green. If someone is blue then they are green. Blue, green people are white. If Bob is smart and Bob is blue then Bob is not green. If Charlie is white then Charlie is nice. All white people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1022_Q3", "context": "Dave is green. Dave is kind. Erin is cold. Erin is furry. Fiona is big. Fiona is furry. Gary is big. All kind people are cold. Green, smart people are rough. If Fiona is cold and Fiona is kind then Fiona is green. If someone is furry then they are smart. All furry, green people are smart. If someone is green and cold then they are big. If someone is furry and rough then they are big. All furry people are smart. Big, cold people are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-532_Q19", "context": "Anne is furry. Anne is rough. Bob is cold. Bob is green. Bob is red. Gary is cold. Gary is quiet. Gary is red. Harry is not cold. Harry is red. Red things are not kind. If something is cold and not furry then it is not kind. Green, rough things are quiet. If something is furry and cold then it is quiet. If Bob is furry then Bob is green. Rough things are green. If something is kind and not furry then it is green. All quiet things are cold. Cold things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1236_Q20", "context": "Anne is blue. Anne is smart. Bob is green. Bob is round. Erin is rough. Harry is cold. Harry is kind. All kind things are round. If something is rough then it is round. All cold things are round. Round things are cold. All kind things are green. If something is smart then it is rough. If something is cold and not blue then it is rough. If Bob is smart then Bob is not green. All smart, cold things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-498_Q8", "context": "The cow eats the dog. The cow eats the mouse. The cow is blue. The cow is nice. The cow does not like the mouse. The cow sees the mouse. The dog eats the cow. The dog is blue. The dog is round. The dog sees the tiger. The mouse is kind. The mouse likes the cow. The mouse sees the cow. The tiger is not nice. The tiger does not like the mouse. The tiger sees the mouse. If someone is round then they are nice. If someone is green then they like the tiger. If someone likes the tiger then the tiger sees the cow. If someone sees the mouse and they do not like the mouse then the mouse is blue. If someone is nice then they eat the dog. If the tiger is nice then the tiger does not like the cow. If someone is round and they eat the dog then they are green. If someone eats the cow then they like the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-70_Q21", "context": "The bald eagle chases the rabbit. The bald eagle chases the tiger. The lion needs the rabbit. The rabbit does not chase the lion. The rabbit needs the bald eagle. The rabbit needs the lion. The tiger visits the rabbit. If something chases the rabbit then it is big. If something needs the tiger then it is big. If something needs the lion and it visits the rabbit then it chases the lion. If something is big then it chases the lion. If something chases the tiger then the tiger needs the rabbit. If something visits the tiger then the tiger is not green. If something chases the lion then the lion chases the rabbit. If something chases the tiger then it visits the bald eagle. If something chases the rabbit and it does not visit the lion then the lion does not need the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not chase the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-785_Q16", "context": "The bald eagle is round. The bear needs the bald eagle. The cat eats the bear. The cat does not eat the lion. The cat is round. The lion needs the bear. The lion sees the bald eagle. If something is round then it sees the bald eagle. If something is red and not young then it needs the lion. If something sees the bald eagle then it needs the lion. If something needs the lion and it needs the bear then the bear is round. If the lion is round and the lion does not eat the cat then the cat eats the bald eagle. If something needs the lion and the lion sees the bald eagle then it is red.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle needs the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-272_Q16", "context": "The bald eagle likes the dog. The bald eagle sees the dog. The bear likes the dog. The dog is green. The dog sees the bald eagle. The dog sees the bear. The squirrel sees the bear. If someone is kind then they visit the bald eagle. If the dog is nice and the dog is cold then the dog sees the squirrel. If someone visits the bald eagle and they are kind then the bald eagle is green. If someone likes the bald eagle and the bald eagle is green then they like the dog. If someone is rough and they like the bear then they visit the bald eagle. Green people are kind. If someone visits the bald eagle then the bald eagle sees the dog. If the dog sees the squirrel and the squirrel is rough then the squirrel likes the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-147_Q5", "context": "Charlie is nice. Charlie is rough. Charlie is smart. Charlie is young. Fiona is cold. Fiona is kind. Fiona is rough. Gary is cold. Gary is young. Harry is nice. If something is young then it is smart. If something is cold and round then it is kind. If Gary is kind and Gary is cold then Gary is rough. If Harry is round then Harry is smart. If Fiona is round and Fiona is kind then Fiona is young. If Charlie is cold then Charlie is round. All smart, young things are nice. If something is nice and smart then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-908_Q16", "context": "Anne is quiet. Anne is red. Bob is kind. Bob is nice. Bob is quiet. Bob is not red. Bob is round. Charlie is big. Charlie is kind. Fiona is quiet. All round things are nice. All kind, red things are rough. If something is big then it is quiet. If something is rough then it is round. If Charlie is nice and Charlie is big then Charlie is not kind. If something is red then it is kind. If something is round and nice then it is not big.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-948_Q21", "context": "The bear is big. The bear likes the cat. The cat eats the bear. The cat likes the squirrel. The mouse does not chase the bear. The squirrel is blue. The squirrel is green. If something likes the cat then the cat eats the mouse. If something chases the squirrel then it eats the cat. If the mouse eats the cat then the cat chases the squirrel. If something eats the mouse then the mouse chases the squirrel. If something chases the squirrel then the squirrel eats the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not like the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-971_Q20", "context": "Anne is cold. Anne is red. Anne is rough. Anne is not white. Dave is quiet. Dave is white. Fiona is not quiet. Gary is cold. Gary is quiet. Gary is red. Gary is rough. Gary is white. If Fiona is white and Fiona is green then Fiona is not quiet. All rough things are young. If something is cold then it is red. Young things are cold. If something is quiet and green then it is rough. All quiet things are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-224_Q6", "context": "The dog chases the lion. The dog is nice. The lion does not eat the tiger. The lion is not big. The lion visits the tiger. The mouse does not chase the tiger. The mouse is nice. The tiger chases the lion. The tiger eats the dog. The tiger does not eat the mouse. The tiger visits the lion. If something visits the dog and it is kind then it visits the mouse. If something chases the dog then it is not red. If something chases the lion and it visits the dog then it chases the dog. If something chases the lion then it is big. If something eats the lion then it is not cold. If something is big then it visits the dog. If something visits the mouse then the mouse is red. If the tiger visits the dog and the dog is not big then the dog chases the mouse. If something visits the tiger and the tiger is not red then it is not nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not visit the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-233_Q11", "context": "Dave is furry. Dave is green. Dave is kind. Dave is smart. Erin is rough. Gary is furry. Gary is green. Gary is kind. Harry is not furry. Harry is kind. Harry is white. All furry, big things are green. If something is big and furry then it is green. If something is white and rough then it is furry. If something is smart then it is white. All big, rough things are white. If something is big and furry then it is white. Rough things are big. If something is big then it is rough. All green, furry things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-878_Q10", "context": "Anne is smart. Bob is big. Bob is blue. Bob is rough. Bob is smart. Charlie is smart. Dave is quiet. Blue, round people are rough. If someone is smart and quiet then they are young. Smart people are quiet. If someone is round then they are blue. If Dave is big then Dave is quiet. If someone is blue then they are young. All rough, young people are round. Smart people are rough. Blue, round people are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-483_Q10", "context": "The bear does not need the lion. The bear needs the mouse. The bear visits the cat. The bear does not visit the lion. The bear visits the mouse. The cat likes the lion. The lion is green. The lion visits the bear. The lion visits the cat. The lion visits the mouse. The mouse needs the lion. The mouse visits the bear. If something visits the lion and the lion is not blue then the lion is not green. If something is green then it likes the mouse. If something likes the mouse then the mouse needs the lion. If something visits the bear then it is not nice. If something likes the cat then it needs the bear. If something is young and it visits the mouse then it likes the cat. If something visits the cat and it is not nice then it is young. If something needs the bear then it needs the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not need the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-242_Q7", "context": "The bald eagle chases the cow. The bald eagle is not kind. The bald eagle is round. The bear chases the tiger. The cow is red. The cow is round. The tiger sees the cow. If someone is young and they see the bald eagle then they see the bear. If someone chases the bear then the bear is young. If someone chases the tiger then they are rough. If someone chases the tiger then the tiger eats the bear. If the tiger is round and the tiger is kind then the tiger chases the bear. If someone is young then they see the bald eagle. If someone chases the cow then they chase the bear. If someone sees the bear then the bear chases the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear sees the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-523_Q7", "context": "Anne is green. Anne is young. Charlie is blue. Charlie is green. Charlie is white. Dave is white. Erin is white. If Dave is kind and Dave is white then Dave is blue. If someone is white then they are nice. If someone is white then they are nice. All nice, green people are young. If someone is green then they are quiet. Nice people are kind. If Dave is blue then Dave is white. If Anne is nice and Anne is not white then Anne is green. If Dave is white and Dave is blue then Dave is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-423_Q6", "context": "Anne is cold. Anne is furry. Anne is not quiet. Charlie is kind. Fiona is not quiet. Fiona is young. Harry is cold. Kind things are furry. Nice things are big. Furry things are nice. If something is young and furry then it is quiet. If Anne is quiet then Anne is cold. Kind, big things are young. If something is kind and not furry then it is not young.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-76_Q8", "context": "The bear eats the cow. The bear is blue. The cow eats the squirrel. The cow is young. The cow visits the lion. The lion is red. The lion is young. The lion visits the cow. The squirrel sees the bear. The squirrel visits the bear. If something sees the cow and the cow eats the squirrel then the cow is red. If the cow eats the bear and the bear sees the cow then the bear is blue. If something is blue and it sees the squirrel then the squirrel is round. If something sees the squirrel then the squirrel eats the cow. If the lion sees the cow and the cow visits the squirrel then the cow eats the squirrel. If something is red then it eats the lion. If the bear visits the squirrel and the bear is round then the bear sees the cow. If something eats the lion then it sees the cow. If something is young and cold then it eats the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-604_Q14", "context": "The cat chases the dog. The cat chases the mouse. The cat chases the tiger. The cat eats the dog. The dog is big. The dog sees the cat. The mouse does not eat the cat. The mouse eats the tiger. The mouse does not see the tiger. The tiger eats the dog. The tiger is nice. If something is young and it eats the tiger then it eats the dog. If something sees the mouse and it eats the mouse then the mouse sees the tiger. If something sees the mouse then it is big. If something chases the dog then the dog chases the cat. If something chases the dog then it chases the cat. If something chases the tiger and the tiger eats the cat then the cat sees the mouse. If something sees the dog and it chases the tiger then the tiger chases the dog. If the tiger is green and the tiger is big then the tiger sees the dog. If something chases the cat then it sees the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse eats the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1210_Q8", "context": "Bob is not kind. Bob is smart. Dave is not blue. Dave is cold. Dave is kind. Dave is not red. Dave is smart. Dave is white. Fiona is kind. Fiona is smart. Fiona is white. Harry is red. If someone is red then they are kind. If Harry is kind then Harry is blue. If Harry is kind and Harry is not red then Harry is not blue. If Fiona is not kind then Fiona is blue. All young people are smart. All red, blue people are smart. If Harry is young and Harry is smart then Harry is white. If someone is smart and blue then they are young. If someone is blue and not red then they are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-878_Q5", "context": "Anne is smart. Bob is big. Bob is blue. Bob is rough. Bob is smart. Charlie is smart. Dave is quiet. Blue, round people are rough. If someone is smart and quiet then they are young. Smart people are quiet. If someone is round then they are blue. If Dave is big then Dave is quiet. If someone is blue then they are young. All rough, young people are round. Smart people are rough. Blue, round people are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-877_Q16", "context": "Anne is cold. Bob is cold. Bob is young. Fiona is big. Fiona is young. Harry is big. Harry is blue. Harry is cold. Harry is furry. Harry is quiet. Harry is red. Harry is young. Cold, young people are red. Furry people are young. Young, big people are blue. Red, big people are quiet. Quiet people are furry. Blue people are red. Young people are big. All quiet, big people are furry. If someone is blue and furry then they are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-861_Q3", "context": "The cat needs the dog. The dog is kind. The dog needs the rabbit. The rabbit eats the dog. The rabbit is green. The tiger chases the rabbit. The tiger is big. If something is nice and it eats the tiger then it needs the dog. If something chases the cat then it eats the cat. If the dog chases the tiger then the tiger needs the rabbit. If the rabbit chases the tiger then the rabbit chases the cat. If something chases the cat then the cat is kind. If something eats the dog then it chases the cat. If something is rough then it eats the dog. If something is kind then it is rough. If something eats the rabbit and the rabbit is big then it is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit chases the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-977_Q5", "context": "The cat is young. The cat visits the mouse. The cow is cold. The cow likes the lion. The lion is cold. The lion likes the cat. The lion needs the mouse. The lion visits the mouse. The mouse is cold. The mouse is red. The mouse is young. The mouse likes the cat. The mouse needs the cat. The mouse needs the cow. If something needs the cat and the cat is red then it is blue. Blue things are red. If something likes the mouse and the mouse likes the cat then the cat is blue. If something is cold and red then it likes the mouse. If something needs the cow and it is cold then it is young. If something is nice then it visits the lion. If something needs the lion then it likes the cat. If something visits the cat and it likes the lion then the cat is blue. If something is cold and blue then it needs the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-195_Q8", "context": "The bald eagle chases the cat. The bald eagle is not green. The cat eats the lion. The cat is not cold. The cat is not green. The cat is red. The dog does not chase the lion. The dog is red. The lion chases the dog. The lion is not red. If someone is blue then they like the lion. If someone likes the bald eagle then they like the cat. If someone chases the dog then they eat the dog. If someone eats the dog then they like the bald eagle. If someone chases the cat then they eat the bald eagle. If someone is green and rough then they chase the lion. If someone eats the lion then they do not eat the cat. If someone likes the cat and the cat is not green then the cat is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not like the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-455_Q24", "context": "The bald eagle chases the squirrel. The bald eagle does not eat the lion. The bald eagle eats the squirrel. The bald eagle does not see the rabbit. The lion does not chase the rabbit. The lion is kind. The rabbit chases the bald eagle. The rabbit eats the bald eagle. The rabbit is big. The rabbit is cold. The rabbit sees the squirrel. The squirrel is blue. The squirrel is cold. The squirrel is kind. If something chases the rabbit then it is kind. If something sees the lion then it chases the rabbit. If the rabbit sees the squirrel and the squirrel eats the rabbit then the rabbit is green. If something eats the lion then the lion chases the squirrel. If something eats the rabbit then the rabbit sees the lion. If something is kind then it eats the rabbit. If something sees the lion and it does not eat the lion then it eats the bald eagle. If something eats the squirrel and the squirrel eats the bald eagle then the squirrel is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion sees the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-54_Q5", "context": "Anne is kind. Anne is nice. Anne is quiet. Anne is round. Bob is not round. Dave is furry. Erin is nice. If something is nice then it is quiet. All nice, kind things are not young. If something is furry then it is cold. Quiet, nice things are cold. If Erin is young then Erin is not kind. Furry, quiet things are kind. All cold things are kind. If Erin is young then Erin is not quiet. If something is kind and not young then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-949_Q22", "context": "The bear is green. The bear likes the cat. The bear likes the dog. The bear visits the dog. The cat is young. The cat sees the bear. The cat sees the dog. The cat visits the bear. The cat visits the mouse. The dog is round. The dog likes the bear. The dog likes the mouse. The dog visits the mouse. The mouse is big. The mouse is cold. The mouse is round. If something visits the mouse and the mouse visits the dog then it is cold. If something likes the cat then it visits the dog. If something is cold then it likes the cat. If something is green then it sees the dog. If something likes the mouse then it sees the cat. If something is green and cold then it likes the cat. If something is big and it visits the bear then the bear is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear sees the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-587_Q8", "context": "The bald eagle chases the squirrel. The bald eagle eats the bear. The bear does not eat the lion. The bear visits the lion. The lion does not eat the bald eagle. The squirrel is red. The squirrel visits the bald eagle. If something is round then it eats the squirrel. If something is blue and green then it chases the bald eagle. If something eats the squirrel then the squirrel is green. If the bald eagle is round then the bald eagle chases the lion. If something is blue then it chases the squirrel. All red things are blue. If something chases the lion then it is blue. Blue, red things are round. If something visits the bald eagle and it is not round then it visits the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not eat the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1208_Q1", "context": "Anne is cold. Anne is not green. Anne is not kind. Anne is quiet. Anne is round. Bob is kind. Bob is round. Charlie is cold. Charlie is quiet. Charlie is round. Erin is furry. If something is quiet then it is rough. Cold things are round. If something is green then it is quiet. All cold things are quiet. Green things are quiet. If something is kind and green then it is furry. Furry things are green. If Bob is kind then Bob is not rough. If something is rough and green then it is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1028_Q10", "context": "Bob is blue. Bob is round. Erin is nice. Erin is round. Erin is smart. Gary is not young. Harry is blue. Harry is furry. Harry is nice. Harry is round. All smart things are furry. Young, nice things are furry. If something is furry then it is young. Round, nice things are not quiet. All round things are smart. If Bob is young then Bob is nice. If something is smart and not young then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-856_Q6", "context": "The bald eagle needs the lion. The bald eagle visits the lion. The lion is not cold. The lion does not like the tiger. The lion visits the tiger. The squirrel is kind. The squirrel is young. The squirrel likes the tiger. The squirrel does not need the lion. The squirrel visits the bald eagle. The tiger is cold. The tiger visits the bald eagle. If something visits the bald eagle then it is big. If something is big then it needs the squirrel. If something visits the squirrel and it visits the lion then it needs the squirrel. If something needs the squirrel then it is green. If something is young then it needs the tiger. Green things are young. If something is big and it visits the lion then the lion needs the squirrel. If the squirrel is big and the squirrel does not like the tiger then the tiger is not big.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not need the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-439_Q20", "context": "The bald eagle is cold. The bald eagle is green. The bald eagle needs the lion. The bald eagle visits the rabbit. The dog sees the lion. The lion is cold. The lion is green. The lion needs the dog. The lion needs the rabbit. The lion visits the bald eagle. The lion visits the dog. The rabbit is round. The rabbit visits the dog. The rabbit visits the lion. If something is round then it is rough. If something visits the rabbit and it needs the bald eagle then the rabbit visits the bald eagle. If something is rough then it visits the lion. If the dog needs the rabbit and the rabbit sees the bald eagle then the bald eagle sees the dog. If the rabbit visits the lion and the rabbit needs the dog then the dog is round. If something visits the rabbit then the rabbit needs the bald eagle. If something visits the lion and the lion needs the dog then it needs the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit visits the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-999_Q5", "context": "Anne is big. Anne is furry. Bob is blue. Bob is green. Bob is young. Charlie is furry. Charlie is green. Charlie is red. Gary is furry. Gary is green. Gary is young. Furry, green things are blue. All big things are green. Red, furry things are blue. All big, blue things are nice. If Bob is nice and Bob is big then Bob is red. If Gary is furry then Gary is blue. All nice, big things are young. All nice things are young. Blue, young things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-308_Q8", "context": "Anne is cold. Anne is young. Charlie is cold. Erin is big. Fiona is blue. Fiona is red. Fiona is smart. If something is big and young then it is smart. If something is big and red then it is young. All cold things are red. If something is green then it is cold. If Anne is blue and Anne is smart then Anne is young. All smart, young things are green. If something is red and big then it is young. If something is big then it is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-372_Q11", "context": "Charlie is young. Erin is blue. Erin is green. Fiona is big. Fiona is green. Gary is blue. Gary is green. All red things are furry. All furry things are red. Young things are red. If something is smart and not red then it is not green. All furry things are green. If something is red and green then it is blue. If something is young and big then it is smart. If something is blue and green then it is smart. Blue, red things are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-488_Q22", "context": "Anne is big. Bob is big. Bob is furry. Bob is nice. Bob is rough. Bob is white. Bob is young. Erin is blue. Harry is nice. Harry is rough. Harry is white. Harry is young. If something is big then it is furry. If Erin is furry and Erin is white then Erin is blue. If something is furry and big then it is nice. If something is big then it is furry. If something is white and nice then it is rough. Furry, nice things are young. Furry, young things are white. All big, blue things are white. Young, blue things are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1205_Q16", "context": "Anne is blue. Anne is furry. Anne is red. Charlie is white. Gary is nice. Gary is rough. Harry is nice. Kind, white people are furry. All blue people are furry. Red people are blue. If someone is kind then they are furry. If Harry is nice and Harry is rough then Harry is red. White, rough people are kind. Blue, red people are white. Nice people are rough. If someone is kind and furry then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-844_Q7", "context": "Anne is big. Anne is cold. Anne is furry. Anne is white. Erin is cold. Fiona is round. Gary is smart. All smart things are furry. Big, blue things are round. If Gary is cold then Gary is smart. All blue, furry things are big. If Gary is furry then Gary is blue. Round things are cold. Cold, white things are furry. Round things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-948_Q14", "context": "The bear is big. The bear likes the cat. The cat eats the bear. The cat likes the squirrel. The mouse does not chase the bear. The squirrel is blue. The squirrel is green. If something likes the cat then the cat eats the mouse. If something chases the squirrel then it eats the cat. If the mouse eats the cat then the cat chases the squirrel. If something eats the mouse then the mouse chases the squirrel. If something chases the squirrel then the squirrel eats the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel chases the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-430_Q21", "context": "The bear sees the squirrel. The bear visits the rabbit. The lion is not round. The lion does not like the rabbit. The lion visits the bear. The rabbit is not big. The rabbit is kind. The rabbit likes the squirrel. The rabbit sees the bear. The rabbit does not visit the bear. The squirrel visits the lion. If something is big and it visits the lion then the lion visits the rabbit. If something sees the lion then it does not like the lion. If something likes the squirrel then the squirrel visits the rabbit. If something sees the squirrel and it visits the squirrel then the squirrel does not see the lion. If something visits the lion then the lion is not round. If something sees the lion and it does not see the bear then it sees the squirrel. If something visits the rabbit then it sees the lion. If something sees the lion then it is big.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not see the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1057_Q2", "context": "Bob is kind. Bob is quiet. Bob is white. Charlie is quiet. Erin is furry. Erin is quiet. Erin is white. Fiona is blue. Fiona is furry. Fiona is kind. Fiona is quiet. All kind, rough people are furry. Green, furry people are quiet. If someone is rough then they are kind. If someone is quiet and kind then they are rough. If someone is white then they are quiet. If someone is blue and white then they are kind. If someone is white then they are blue. If Charlie is quiet then Charlie is white.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1205_Q12", "context": "Anne is blue. Anne is furry. Anne is red. Charlie is white. Gary is nice. Gary is rough. Harry is nice. Kind, white people are furry. All blue people are furry. Red people are blue. If someone is kind then they are furry. If Harry is nice and Harry is rough then Harry is red. White, rough people are kind. Blue, red people are white. Nice people are rough. If someone is kind and furry then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-829_Q7", "context": "The dog does not eat the rabbit. The mouse eats the tiger. The mouse is green. The rabbit does not chase the tiger. The rabbit eats the dog. The rabbit is young. The tiger is green. If something visits the mouse then the mouse is big. If something eats the tiger then the tiger visits the mouse. If the dog is young and the dog does not visit the mouse then the mouse does not visit the rabbit. If something is green and it chases the rabbit then the rabbit does not eat the mouse. If something is green then it visits the dog. If something visits the rabbit and the rabbit is young then it is round. If something is round and it visits the dog then it chases the tiger. If something is big then it visits the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse visits the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-746_Q8", "context": "Bob is white. Charlie is furry. Charlie is kind. Dave is cold. Dave is smart. Gary is red. Gary is white. Green, furry things are smart. If Charlie is white then Charlie is green. White things are kind. Cold, smart things are red. All furry things are cold. If Bob is kind and Bob is furry then Bob is smart. If something is cold and kind then it is white.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-613_Q10", "context": "Anne is blue. Anne is nice. Anne is quiet. Anne is rough. Fiona is big. Fiona is blue. Fiona is quiet. Gary is blue. Gary is quiet. Gary is rough. Gary is white. Harry is white. All big people are rough. All blue, nice people are big. If someone is rough then they are green. All nice people are big. Green people are blue. Rough, white people are nice. White people are nice. Green people are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-76_Q13", "context": "The bear eats the cow. The bear is blue. The cow eats the squirrel. The cow is young. The cow visits the lion. The lion is red. The lion is young. The lion visits the cow. The squirrel sees the bear. The squirrel visits the bear. If something sees the cow and the cow eats the squirrel then the cow is red. If the cow eats the bear and the bear sees the cow then the bear is blue. If something is blue and it sees the squirrel then the squirrel is round. If something sees the squirrel then the squirrel eats the cow. If the lion sees the cow and the cow visits the squirrel then the cow eats the squirrel. If something is red then it eats the lion. If the bear visits the squirrel and the bear is round then the bear sees the cow. If something eats the lion then it sees the cow. If something is young and cold then it eats the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not eat the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-713_Q9", "context": "The cat needs the cow. The cow eats the cat. The cow is blue. The mouse eats the rabbit. The mouse is cold. The mouse is young. The mouse needs the cow. The rabbit is cold. The rabbit is young. The rabbit needs the cat. If someone is cold and they see the rabbit then the rabbit is young. If the mouse sees the cat and the cow does not need the mouse then the cat eats the rabbit. If someone eats the cow then they eat the mouse. If someone is nice and young then they see the rabbit. If someone eats the rabbit then they need the cat. If someone sees the rabbit then they are not green. If someone sees the cat and they are cold then they are nice. If someone needs the cat and they are young then they see the cat. If the cow is not young then the cow is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse sees the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-500_Q8", "context": "Anne is blue. Anne is cold. Anne is furry. Anne is red. Anne is round. Anne is white. Bob is big. Dave is round. Dave is white. Harry is big. Harry is red. Harry is white. All blue things are white. If something is cold then it is red. Furry, blue things are red. If something is round and big then it is blue. If Anne is cold and Anne is red then Anne is big. All red things are round. If something is big then it is cold. If something is cold and furry then it is white.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1250_Q15", "context": "Anne is white. Erin is round. Erin is white. Gary is cold. Gary is round. Harry is furry. Harry is green. Furry, white people are green. Nice people are round. All round, furry people are green. All cold people are white. All cold, rough people are round. All white people are cold. If someone is cold then they are furry. All furry, green people are rough. All round, green people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-630_Q4", "context": "Anne is green. Anne is quiet. Dave is round. Erin is nice. Fiona is not nice. Fiona is quiet. Fiona is rough. If something is rough and green then it is round. All smart things are round. If something is round and blue then it is rough. All blue things are rough. Quiet things are green. Round things are green. All nice things are blue. All rough, nice things are blue. Rough, nice things are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-20_Q10", "context": "Bob is green. Bob is young. Charlie is big. Charlie is blue. Charlie is nice. Gary is green. Gary is nice. Gary is quiet. Gary is smart. Harry is blue. Harry is smart. All big things are smart. All green things are big. If something is nice then it is young. If something is green and blue then it is nice. If Bob is smart and Bob is green then Bob is quiet. If Charlie is blue then Charlie is nice. If something is quiet and smart then it is blue. Nice, blue things are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-861_Q14", "context": "The cat needs the dog. The dog is kind. The dog needs the rabbit. The rabbit eats the dog. The rabbit is green. The tiger chases the rabbit. The tiger is big. If something is nice and it eats the tiger then it needs the dog. If something chases the cat then it eats the cat. If the dog chases the tiger then the tiger needs the rabbit. If the rabbit chases the tiger then the rabbit chases the cat. If something chases the cat then the cat is kind. If something eats the dog then it chases the cat. If something is rough then it eats the dog. If something is kind then it is rough. If something eats the rabbit and the rabbit is big then it is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1233_Q11", "context": "Anne is smart. Bob is quiet. Bob is young. Fiona is not quiet. Gary is kind. Gary is rough. Gary is smart. Rough, kind people are blue. Young, kind people are rough. If someone is furry then they are quiet. Furry, young people are quiet. All quiet people are young. If someone is blue and kind then they are young. If someone is smart then they are furry. If Fiona is blue then Fiona is not kind. Young people are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1247_Q5", "context": "Bob is blue. Bob is furry. Dave is white. Erin is green. Erin is white. Gary is green. Gary is red. If Erin is furry and Erin is blue then Erin is big. Red things are round. If something is blue and big then it is white. Red, furry things are white. If something is round then it is furry. If something is furry and green then it is blue. Blue, white things are furry. If something is green then it is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1208_Q15", "context": "Anne is cold. Anne is not green. Anne is not kind. Anne is quiet. Anne is round. Bob is kind. Bob is round. Charlie is cold. Charlie is quiet. Charlie is round. Erin is furry. If something is quiet then it is rough. Cold things are round. If something is green then it is quiet. All cold things are quiet. Green things are quiet. If something is kind and green then it is furry. Furry things are green. If Bob is kind then Bob is not rough. If something is rough and green then it is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-83_Q10", "context": "Dave is cold. Dave is rough. Erin is cold. Erin is rough. Fiona is blue. Fiona is smart. Gary is blue. All smart, rough people are young. If someone is cold and white then they are quiet. All cold people are white. If someone is quiet and young then they are blue. White, quiet people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-439_Q21", "context": "The bald eagle is cold. The bald eagle is green. The bald eagle needs the lion. The bald eagle visits the rabbit. The dog sees the lion. The lion is cold. The lion is green. The lion needs the dog. The lion needs the rabbit. The lion visits the bald eagle. The lion visits the dog. The rabbit is round. The rabbit visits the dog. The rabbit visits the lion. If something is round then it is rough. If something visits the rabbit and it needs the bald eagle then the rabbit visits the bald eagle. If something is rough then it visits the lion. If the dog needs the rabbit and the rabbit sees the bald eagle then the bald eagle sees the dog. If the rabbit visits the lion and the rabbit needs the dog then the dog is round. If something visits the rabbit then the rabbit needs the bald eagle. If something visits the lion and the lion needs the dog then it needs the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not see the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-401_Q4", "context": "Anne is cold. Anne is kind. Charlie is blue. Charlie is round. Dave is blue. Fiona is not green. Fiona is kind. If Charlie is cold then Charlie is quiet. If Charlie is big then Charlie is not green. If Anne is kind then Anne is big. All big people are blue. Blue people are quiet. If Dave is kind then Dave is cold. If someone is round then they are green. Quiet people are round. If someone is kind and not blue then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-334_Q15", "context": "The bear is round. The bear is young. The bear needs the dog. The bear sees the cat. The cat eats the bear. The cat is green. The cat needs the mouse. The dog eats the cat. The dog is cold. The dog is green. The dog needs the cat. The dog sees the bear. The mouse eats the dog. The mouse is cold. The mouse needs the bear. The mouse needs the dog. If something eats the mouse then it needs the dog. If the mouse sees the bear then the bear needs the mouse. If something eats the dog and the dog eats the bear then it needs the bear. If something is round and it eats the bear then it sees the bear. If something eats the bear then it is round. If something eats the dog and it needs the cat then it eats the bear. If something needs the mouse then the mouse needs the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not eat the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1149_Q18", "context": "Anne is kind. Charlie is not big. Charlie is green. Erin is green. Erin is not kind. Harry is big. Harry is green. All big, green things are young. Big things are young. All red things are green. If something is kind then it is not red. All furry things are kind. If Harry is young then Harry is cold. If something is young and cold then it is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-156_Q15", "context": "The bear chases the cow. The bear is not red. The bear sees the tiger. The cow chases the bear. The mouse chases the tiger. The tiger does not chase the mouse. The tiger needs the mouse. If someone sees the tiger then the tiger is nice. If someone chases the mouse and the mouse does not need the bear then the mouse is not young. If someone chases the cow then they are big. If someone needs the tiger then the tiger sees the bear. If someone is big then they need the tiger. If the tiger sees the bear and the tiger needs the mouse then the tiger is big. If someone is young then they need the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not need the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-777_Q9", "context": "The bear is kind. The bear likes the cat. The cat likes the bear. The cat needs the cow. The cat sees the bear. The cat sees the cow. The cow is rough. The mouse likes the cat. The mouse needs the bear. The mouse sees the cow. If someone sees the bear then they need the mouse. If someone needs the bear and the bear needs the cow then the bear needs the cat. If someone likes the cow then the cow sees the bear. If the bear is red and the bear needs the cow then the cow needs the bear. If someone needs the mouse then they are big. If someone sees the bear and they are big then they like the cow. If the cat needs the mouse then the mouse needs the cow. If someone is kind then they see the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow sees the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-829_Q2", "context": "The dog does not eat the rabbit. The mouse eats the tiger. The mouse is green. The rabbit does not chase the tiger. The rabbit eats the dog. The rabbit is young. The tiger is green. If something visits the mouse then the mouse is big. If something eats the tiger then the tiger visits the mouse. If the dog is young and the dog does not visit the mouse then the mouse does not visit the rabbit. If something is green and it chases the rabbit then the rabbit does not eat the mouse. If something is green then it visits the dog. If something visits the rabbit and the rabbit is young then it is round. If something is round and it visits the dog then it chases the tiger. If something is big then it visits the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-439_Q11", "context": "The bald eagle is cold. The bald eagle is green. The bald eagle needs the lion. The bald eagle visits the rabbit. The dog sees the lion. The lion is cold. The lion is green. The lion needs the dog. The lion needs the rabbit. The lion visits the bald eagle. The lion visits the dog. The rabbit is round. The rabbit visits the dog. The rabbit visits the lion. If something is round then it is rough. If something visits the rabbit and it needs the bald eagle then the rabbit visits the bald eagle. If something is rough then it visits the lion. If the dog needs the rabbit and the rabbit sees the bald eagle then the bald eagle sees the dog. If the rabbit visits the lion and the rabbit needs the dog then the dog is round. If something visits the rabbit then the rabbit needs the bald eagle. If something visits the lion and the lion needs the dog then it needs the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog needs the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-174_Q9", "context": "The bald eagle eats the bear. The bald eagle is cold. The bald eagle does not like the bear. The bald eagle likes the tiger. The bald eagle visits the bear. The bear eats the bald eagle. The bear is blue. The bear does not visit the tiger. The mouse likes the tiger. The tiger eats the mouse. The tiger is cold. The tiger likes the bear. If the mouse is kind then the mouse eats the bald eagle. If something eats the bald eagle and the bald eagle likes the tiger then the tiger likes the mouse. If something likes the tiger then it visits the mouse. If the tiger likes the mouse and the mouse does not eat the tiger then the mouse is big. If something visits the bear and it is kind then the bear likes the tiger. Cold, kind things are big. If the tiger eats the bald eagle then the tiger does not eat the mouse. If something visits the mouse then it is kind. If the bald eagle eats the mouse and the mouse does not eat the bear then the bald eagle is big.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear visits the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-430_Q15", "context": "The bear sees the squirrel. The bear visits the rabbit. The lion is not round. The lion does not like the rabbit. The lion visits the bear. The rabbit is not big. The rabbit is kind. The rabbit likes the squirrel. The rabbit sees the bear. The rabbit does not visit the bear. The squirrel visits the lion. If something is big and it visits the lion then the lion visits the rabbit. If something sees the lion then it does not like the lion. If something likes the squirrel then the squirrel visits the rabbit. If something sees the squirrel and it visits the squirrel then the squirrel does not see the lion. If something visits the lion then the lion is not round. If something sees the lion and it does not see the bear then it sees the squirrel. If something visits the rabbit then it sees the lion. If something sees the lion then it is big.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not see the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1236_Q12", "context": "Anne is blue. Anne is smart. Bob is green. Bob is round. Erin is rough. Harry is cold. Harry is kind. All kind things are round. If something is rough then it is round. All cold things are round. Round things are cold. All kind things are green. If something is smart then it is rough. If something is cold and not blue then it is rough. If Bob is smart then Bob is not green. All smart, cold things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-754_Q13", "context": "Anne is big. Anne is furry. Anne is rough. Anne is round. Anne is young. Charlie is big. Charlie is cold. Dave is furry. Dave is young. Harry is furry. Harry is nice. Harry is young. All round things are cold. Cold, furry things are rough. If something is furry and rough then it is round. If Charlie is round and Charlie is furry then Charlie is nice. All round, nice things are rough. Big, cold things are furry. Furry, round things are cold. Nice, round things are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-439_Q2", "context": "The bald eagle is cold. The bald eagle is green. The bald eagle needs the lion. The bald eagle visits the rabbit. The dog sees the lion. The lion is cold. The lion is green. The lion needs the dog. The lion needs the rabbit. The lion visits the bald eagle. The lion visits the dog. The rabbit is round. The rabbit visits the dog. The rabbit visits the lion. If something is round then it is rough. If something visits the rabbit and it needs the bald eagle then the rabbit visits the bald eagle. If something is rough then it visits the lion. If the dog needs the rabbit and the rabbit sees the bald eagle then the bald eagle sees the dog. If the rabbit visits the lion and the rabbit needs the dog then the dog is round. If something visits the rabbit then the rabbit needs the bald eagle. If something visits the lion and the lion needs the dog then it needs the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not need the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-169_Q5", "context": "The bald eagle chases the rabbit. The bald eagle does not chase the tiger. The bald eagle is green. The bald eagle is red. The bald eagle is young. The bald eagle sees the rabbit. The bear sees the bald eagle. The rabbit is red. The rabbit needs the bald eagle. The tiger chases the bear. The tiger is green. The tiger sees the bald eagle. If something is young and red then it is green. If something sees the bear then it needs the tiger. If something needs the bald eagle then the bald eagle chases the rabbit. If something is big and it chases the rabbit then it sees the bear. If something sees the rabbit and it needs the tiger then the tiger is not blue. If something chases the rabbit then it sees the bald eagle. If the rabbit is not young and the rabbit does not need the bald eagle then the rabbit sees the bear. If something is red and it needs the bear then it is big. If something is red then it needs the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-391_Q17", "context": "Anne is round. Anne is young. Erin is cold. Erin is kind. Erin is quiet. Erin is round. Erin is smart. Erin is white. Erin is young. Gary is smart. Harry is quiet. Harry is young. If someone is white and quiet then they are smart. If someone is smart and cold then they are round. If someone is kind then they are white. Young people are quiet. Quiet, smart people are round. Kind, quiet people are round. If someone is smart then they are kind. If someone is kind then they are young. All round, white people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-371_Q22", "context": "Anne is nice. Anne is smart. Bob is nice. Fiona is green. Fiona is nice. Gary is blue. Gary is smart. All red things are nice. Big things are kind. If Bob is smart then Bob is green. Blue things are green. Green, smart things are big. If something is red and blue then it is big. Nice things are red. All kind things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-329_Q6", "context": "The bald eagle is cold. The bald eagle is rough. The bald eagle needs the tiger. The bald eagle visits the squirrel. The lion is cold. The lion is kind. The lion needs the tiger. The squirrel chases the bald eagle. The squirrel chases the tiger. The squirrel visits the tiger. The tiger is red. If someone needs the squirrel then they chase the tiger. If someone is rough and they chase the squirrel then the squirrel visits the lion. If someone visits the tiger and they visit the lion then the lion needs the bald eagle. If someone visits the bald eagle and the bald eagle visits the squirrel then the bald eagle chases the squirrel. If someone is red then they chase the lion. If someone chases the lion and they visit the bald eagle then they need the bald eagle. If someone visits the bald eagle then they need the bald eagle. If someone chases the lion then they visit the bald eagle. If someone chases the tiger then the tiger chases the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not visit the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-891_Q1", "context": "Bob is green. Bob is kind. Charlie is green. Charlie is not smart. Erin is not young. Fiona is nice. Fiona is young. Green, smart things are quiet. If something is kind then it is green. Smart things are young. Young things are kind. Quiet things are furry. All quiet, nice things are furry. Nice, green things are smart. If Bob is kind and Bob is not green then Bob is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-199_Q4", "context": "The dog is blue. The dog sees the mouse. The mouse is not round. The mouse sees the dog. The rabbit is cold. The rabbit is red. The rabbit sees the mouse. The squirrel is green. The squirrel needs the mouse. The squirrel sees the dog. The squirrel does not visit the dog. If something sees the dog then it sees the squirrel. If something is red and blue then it sees the squirrel. If something needs the squirrel and it is green then it visits the rabbit. If something needs the rabbit and the rabbit is blue then the rabbit does not need the dog. If the mouse needs the rabbit and the rabbit is cold then the mouse is green. If something sees the squirrel then it needs the rabbit. If something sees the rabbit then it needs the mouse. If something is blue then it needs the dog. If something is green and it sees the dog then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not see the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-336_Q4", "context": "The bald eagle eats the bear. The bald eagle eats the cat. The bald eagle eats the rabbit. The bald eagle is young. The bald eagle likes the bear. The bald eagle sees the cat. The bald eagle sees the rabbit. The bear eats the bald eagle. The cat eats the bald eagle. The cat likes the rabbit. The rabbit is round. The rabbit sees the bald eagle. If someone eats the bald eagle and they see the rabbit then they are round. If someone eats the bald eagle and they eat the rabbit then the rabbit likes the cat. If someone is young and they eat the rabbit then the rabbit sees the cat. If someone eats the rabbit and the rabbit is cold then they are blue. If the rabbit sees the cat and the rabbit is round then the cat eats the rabbit. If the bald eagle sees the bear and the bald eagle likes the bear then the bald eagle is red. If someone eats the rabbit and they are blue then they eat the bald eagle. If someone likes the cat then the cat is round. If the rabbit likes the cat and the cat is round then the rabbit is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not see the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1044_Q10", "context": "Bob is blue. Bob is white. Charlie is green. Charlie is quiet. Charlie is round. Charlie is white. Erin is blue. Erin is cold. Erin is green. Gary is big. Gary is blue. Gary is cold. Gary is green. Gary is quiet. Gary is round. Gary is white. White things are cold. If something is blue then it is white. If something is cold then it is round. If something is green then it is quiet. All round, big things are green. If Bob is round then Bob is big. All white, quiet things are big. If something is big then it is cold. If something is blue and quiet then it is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-517_Q7", "context": "The bald eagle is green. The bald eagle is red. The cat chases the lion. The cat sees the tiger. The cat visits the bald eagle. The cat visits the lion. The lion chases the cat. The lion is red. The lion sees the bald eagle. The lion sees the cat. The tiger chases the cat. The tiger sees the cat. The tiger visits the bald eagle. The tiger visits the lion. If something sees the lion and it sees the bald eagle then it chases the cat. If something chases the cat then it is young. If something visits the tiger and the tiger sees the cat then it sees the lion. If something visits the tiger and the tiger visits the lion then it sees the bald eagle. If the lion sees the bald eagle then the bald eagle visits the tiger. If something is young then it visits the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle chases the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-341_Q3", "context": "The bald eagle is cold. The bald eagle is nice. The bald eagle likes the cow. The bald eagle likes the tiger. The bald eagle sees the cow. The bald eagle sees the dog. The bald eagle sees the tiger. The bald eagle visits the cow. The cow is young. The cow visits the bald eagle. The dog sees the bald eagle. The dog visits the tiger. The tiger is blue. The tiger is cold. The tiger is young. The tiger visits the cow. If something is big and it visits the bald eagle then it visits the cow. If something likes the tiger and the tiger is big then it is big. If something visits the cow and the cow is young then it is big. If something visits the tiger then it is young. If the tiger likes the dog then the tiger visits the bald eagle. If something is big then it visits the dog. If something visits the dog then it is cold. If something is young then it likes the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-818_Q1", "context": "Charlie is young. Erin is blue. Erin is not kind. Fiona is blue. Fiona is white. Gary is blue. Gary is kind. Furry, nice things are white. If something is young and blue then it is smart. All blue, smart things are furry. All smart, white things are furry. Young things are nice. If Fiona is smart and Fiona is young then Fiona is not furry. If Erin is kind then Erin is furry. If Gary is smart and Gary is white then Gary is not kind. If something is nice then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1203_Q8", "context": "Anne is nice. Erin is red. Erin is not round. Fiona is not nice. Harry is not blue. Harry is red. Harry is young. If Harry is blue and Harry is nice then Harry is red. If something is young and round then it is rough. All young, nice things are rough. Round, quiet things are young. If Erin is young and Erin is round then Erin is blue. Nice things are quiet. All quiet things are round. Rough things are not red. If something is round and red then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-745_Q5", "context": "The bear is round. The bear likes the cow. The bear visits the lion. The cow is big. The cow is rough. The lion needs the bear. The mouse likes the lion. If someone visits the lion then they are round. If someone needs the bear then they need the lion. If someone needs the lion then they visit the lion. If someone visits the lion and the lion is round then they like the lion. If someone is rough then they need the lion. If someone likes the lion and they need the lion then the lion visits the mouse. If someone is rough then they visit the lion. If someone likes the lion and the lion is big then they are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion visits the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-1029_Q16", "context": "The bear is young. The bear visits the lion. The cat is round. The cat needs the bear. The lion is cold. The lion is not green. The lion is round. The lion does not need the bear. The lion sees the bear. The lion visits the bear. The lion visits the cat. The lion visits the rabbit. The rabbit is green. The rabbit is rough. The rabbit sees the lion. The rabbit visits the cat. If something visits the cat then the cat sees the lion. If something visits the lion and the lion visits the rabbit then it needs the lion. If something needs the lion and the lion is round then it needs the cat. If something is green and it needs the rabbit then the rabbit is green. If something is round then it visits the lion. If something sees the cat and the cat visits the lion then it is not rough. If something needs the cat and it is not green then it sees the cat. If something is young and it visits the bear then it sees the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit needs the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-151_Q5", "context": "The cat chases the tiger. The cat is red. The lion is nice. The lion is red. The lion sees the cat. The lion sees the rabbit. The lion sees the tiger. The rabbit chases the tiger. The rabbit sees the tiger. The tiger chases the cat. The tiger chases the rabbit. The tiger is nice. If someone is red and they eat the rabbit then they are blue. If the lion eats the cat and the lion chases the rabbit then the cat is kind. If the rabbit eats the tiger then the tiger is nice. If someone is rough then they see the cat. If someone is nice and they chase the rabbit then the rabbit is nice. If someone eats the cat and they are kind then they see the tiger. If someone is nice and they chase the tiger then they are blue. If someone is blue then they eat the cat. If someone eats the cat then the cat is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-491_Q15", "context": "The bear chases the lion. The bear is not young. The dog chases the bear. The dog chases the lion. The dog chases the squirrel. The dog sees the lion. The dog visits the squirrel. The lion does not chase the bear. The lion does not chase the squirrel. The lion is not red. The squirrel chases the bear. The squirrel chases the dog. The squirrel is green. The squirrel is round. The squirrel is young. The squirrel sees the dog. If something visits the bear then it sees the bear. If something sees the bear then the bear sees the dog. If something visits the dog and the dog is young then the dog sees the bear. If something is green then it sees the dog. If something sees the dog then it visits the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not visit the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-1029_Q10", "context": "The bear is young. The bear visits the lion. The cat is round. The cat needs the bear. The lion is cold. The lion is not green. The lion is round. The lion does not need the bear. The lion sees the bear. The lion visits the bear. The lion visits the cat. The lion visits the rabbit. The rabbit is green. The rabbit is rough. The rabbit sees the lion. The rabbit visits the cat. If something visits the cat then the cat sees the lion. If something visits the lion and the lion visits the rabbit then it needs the lion. If something needs the lion and the lion is round then it needs the cat. If something is green and it needs the rabbit then the rabbit is green. If something is round then it visits the lion. If something sees the cat and the cat visits the lion then it is not rough. If something needs the cat and it is not green then it sees the cat. If something is young and it visits the bear then it sees the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not see the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-777_Q6", "context": "The bear is kind. The bear likes the cat. The cat likes the bear. The cat needs the cow. The cat sees the bear. The cat sees the cow. The cow is rough. The mouse likes the cat. The mouse needs the bear. The mouse sees the cow. If someone sees the bear then they need the mouse. If someone needs the bear and the bear needs the cow then the bear needs the cat. If someone likes the cow then the cow sees the bear. If the bear is red and the bear needs the cow then the cow needs the bear. If someone needs the mouse then they are big. If someone sees the bear and they are big then they like the cow. If the cat needs the mouse then the mouse needs the cow. If someone is kind then they see the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not need the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-419_Q14", "context": "The bear likes the cow. The bear does not see the cow. The cow chases the bear. The cow is cold. The cow sees the dog. The dog likes the bear. The dog does not like the tiger. The tiger is not big. The tiger does not see the bear. The tiger sees the cow. If something likes the dog then it is round. If something sees the cow then it is round. If the cow is young and the bear does not see the cow then the bear is young. If something chases the dog then it likes the tiger. If something chases the dog and it is cold then it is young. If the bear likes the cow then the cow chases the dog. If something sees the bear and the bear is young then the bear is rough. If something chases the bear and the bear is young then the bear chases the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger likes the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-586_Q21", "context": "Erin is smart. Fiona is quiet. Gary is blue. Gary is kind. Gary is quiet. Gary is red. Harry is smart. If Harry is smart then Harry is kind. Quiet, smart things are blue. If something is green and smart then it is not blue. Kind things are quiet. All blue, green things are smart. Red things are furry. If Harry is smart and Harry is blue then Harry is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-30_Q5", "context": "The bald eagle does not chase the mouse. The bald eagle chases the squirrel. The bald eagle needs the mouse. The bald eagle does not see the dog. The bald eagle sees the squirrel. The dog is not red. The dog needs the squirrel. The mouse does not chase the squirrel. The mouse is red. The mouse needs the dog. The mouse does not need the squirrel. The mouse sees the bald eagle. The mouse sees the dog. The squirrel is cold. The squirrel is red. The squirrel is round. If something is round and red then it chases the dog. If something chases the bald eagle then it sees the mouse. If something needs the mouse and the mouse needs the bald eagle then it does not see the squirrel. If something needs the mouse then the mouse does not see the squirrel. If something is blue and it needs the dog then it is cold. If something chases the dog then it chases the bald eagle. If the bald eagle chases the squirrel and the bald eagle sees the squirrel then the squirrel is red. If something sees the mouse and the mouse needs the dog then the dog chases the bald eagle. If something sees the squirrel and the squirrel is cold then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel chases the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1015_Q19", "context": "Anne is furry. Anne is nice. Dave is furry. Dave is not nice. Erin is smart. Harry is furry. Harry is nice. All round people are quiet. All round people are green. All quiet, furry people are green. Furry people are green. Big, quiet people are not smart. Smart people are nice. All green people are big. If Anne is big and Anne is green then Anne is round. If someone is quiet and smart then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-489_Q2", "context": "Bob is green. Bob is not nice. Dave is furry. Erin is furry. Erin is nice. Fiona is big. Fiona is not furry. Kind things are young. Young, big things are green. If something is young then it is green. If something is big and rough then it is not nice. If something is big then it is nice. If Bob is furry then Bob is young. If something is furry then it is big. If something is nice then it is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-268_Q19", "context": "Anne is green. Charlie is blue. Charlie is not green. Charlie is nice. Erin is young. Harry is kind. Harry is white. If something is blue then it is nice. If something is blue and not quiet then it is nice. If something is nice then it is kind. If Erin is green then Erin is white. All green things are blue. If something is young then it is white. If Harry is white then Harry is young. If Erin is nice and Erin is blue then Erin is young. All white things are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-661_Q24", "context": "The bald eagle chases the tiger. The bald eagle visits the dog. The bear is not kind. The bear needs the bald eagle. The bear needs the tiger. The dog chases the bald eagle. The dog chases the bear. The dog is not cold. The dog needs the bear. The tiger is kind. The tiger is not young. If someone visits the bald eagle then the bald eagle chases the tiger. If someone visits the tiger then the tiger does not need the dog. If the dog chases the bear and the dog is round then the bear visits the dog. If someone chases the tiger and they chase the bald eagle then the bald eagle needs the dog. If someone needs the dog then the dog is round. If someone visits the dog then they chase the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-195_Q3", "context": "Bob is rough. Charlie is nice. Charlie is rough. Charlie is white. Dave is not white. Gary is cold. Gary is quiet. Rough, white things are quiet. If Charlie is round and Charlie is quiet then Charlie is rough. All young things are round. Nice things are white. Rough, nice things are cold. If something is round and rough then it is nice. If something is rough then it is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-684_Q1", "context": "Anne is smart. Charlie is big. Charlie is nice. Gary is green. Harry is furry. Harry is nice. Harry is red. All furry people are kind. If Charlie is big then Charlie is green. If someone is kind then they are big. Kind, green people are big. Smart people are furry. If someone is green then they are kind. All big, nice people are kind. All smart, nice people are red. Big, kind people are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-502_Q3", "context": "The bear eats the rabbit. The bear sees the squirrel. The mouse eats the squirrel. The mouse is kind. The mouse sees the rabbit. The rabbit needs the squirrel. The squirrel eats the bear. If someone sees the squirrel and the squirrel sees the bear then the squirrel needs the mouse. If someone needs the rabbit and the rabbit sees the mouse then the mouse sees the rabbit. If someone is rough then they need the rabbit. If someone needs the rabbit then the rabbit sees the squirrel. If someone sees the squirrel then they are rough. If someone is nice and they need the mouse then they are rough. If someone is green then they are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-616_Q7", "context": "The bald eagle is big. The bald eagle likes the cow. The bald eagle sees the rabbit. The cow is big. The cow sees the bald eagle. The dog is big. The dog is young. The dog likes the bald eagle. The rabbit sees the bald eagle. The rabbit visits the bald eagle. If the bald eagle sees the rabbit then the rabbit is big. If something likes the bald eagle then it is blue. If something likes the rabbit and the rabbit visits the cow then the cow is young. If something visits the rabbit then it is round. If something is round and it sees the cow then the cow sees the rabbit. If something is big then it visits the cow. If something sees the rabbit then the rabbit visits the bald eagle. If something is blue then it likes the rabbit. If something likes the cow and the cow is young then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-754_Q23", "context": "The cat is big. The cat is nice. The cat sees the dog. The cat visits the dog. The dog is big. The dog is nice. The mouse is nice. The mouse is red. The tiger eats the cat. The tiger eats the dog. The tiger visits the mouse. If someone visits the tiger then the tiger sees the mouse. If the cat eats the dog and the cat sees the dog then the cat is big. If someone eats the dog then they visit the cat. If the tiger is young and the tiger is nice then the tiger eats the mouse. If someone sees the mouse and the mouse is red then the mouse visits the tiger. If someone visits the tiger then they visit the cat. If someone visits the cat and the cat visits the dog then the dog visits the tiger. If the cat sees the tiger then the cat eats the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not eat the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-173_Q8", "context": "The bald eagle eats the cow. The bald eagle is blue. The cat visits the bald eagle. The cat visits the rabbit. The cow is blue. The cow sees the rabbit. The rabbit eats the bald eagle. The rabbit is cold. The rabbit sees the cow. The rabbit visits the cat. If something visits the cow and it sees the cow then it visits the bald eagle. If something is nice then it is big. If something visits the bald eagle then it is nice. If something is cold and it visits the cow then the cow sees the cat. If something is round and it eats the bald eagle then it sees the bald eagle. If something visits the cat then it visits the rabbit. If something visits the rabbit and it sees the cow then it visits the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not see the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-683_Q1", "context": "The bear chases the cat. The bear chases the cow. The bear likes the cat. The bear likes the lion. The bear visits the cat. The cat is red. The cat visits the bear. The cat visits the cow. The cow visits the lion. The lion chases the cat. The lion is nice. If something likes the bear and it visits the lion then it is green. If something likes the lion and the lion is nice then it chases the lion. If something is green and it chases the cow then the cow is cold. Cold things are green. If something chases the lion and the lion chases the cat then it is cold. If the lion likes the cat and the cat chases the lion then the lion is nice. If something likes the cat then it likes the lion. If something likes the cat then it likes the lion. If something chases the lion then the lion visits the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear chases the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-622_Q13", "context": "Anne is nice. Anne is red. Bob is smart. Bob is young. Erin is red. Erin is round. Fiona is kind. Fiona is nice. Fiona is red. Fiona is smart. If something is round then it is nice. Nice things are round. If Bob is kind then Bob is furry. All smart, kind things are nice. All kind, young things are round. If something is young and smart then it is round. Red things are kind. If Anne is furry then Anne is red. If something is nice then it is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-890_Q11", "context": "The bald eagle needs the cow. The bald eagle needs the mouse. The cow is round. The mouse does not visit the rabbit. The rabbit is green. The rabbit needs the bald eagle. The rabbit visits the bald eagle. If someone visits the mouse then they like the cow. If someone likes the mouse and they are blue then the mouse needs the rabbit. If someone needs the bald eagle then the bald eagle likes the rabbit. If someone needs the bald eagle then the bald eagle likes the mouse. If someone likes the cow then they are blue. If someone is red and they visit the cow then the cow is green. If someone visits the mouse then they do not visit the bald eagle. If someone is round and they need the bald eagle then the bald eagle is round. If someone visits the bald eagle and the bald eagle likes the rabbit then the bald eagle visits the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse needs the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-587_Q13", "context": "The bald eagle chases the squirrel. The bald eagle eats the bear. The bear does not eat the lion. The bear visits the lion. The lion does not eat the bald eagle. The squirrel is red. The squirrel visits the bald eagle. If something is round then it eats the squirrel. If something is blue and green then it chases the bald eagle. If something eats the squirrel then the squirrel is green. If the bald eagle is round then the bald eagle chases the lion. If something is blue then it chases the squirrel. All red things are blue. If something chases the lion then it is blue. Blue, red things are round. If something visits the bald eagle and it is not round then it visits the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-747_Q21", "context": "The bear eats the tiger. The bear is not red. The bear likes the squirrel. The bear visits the squirrel. The mouse eats the tiger. The mouse is red. The mouse is rough. The mouse likes the bear. The mouse does not like the tiger. The squirrel likes the bear. The tiger eats the mouse. If the mouse likes the bear and the bear likes the mouse then the mouse is not kind. If someone visits the mouse then they like the squirrel. If someone is green then they visit the bear. If someone likes the bear and the bear visits the tiger then they visit the bear. If someone eats the bear and they do not like the tiger then they are green. If someone visits the mouse then the mouse eats the bear. If someone is red and they eat the tiger then the tiger visits the mouse. If someone visits the bear then they are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not visit the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-487_Q10", "context": "The cat chases the lion. The cat is rough. The cat is young. The cat needs the lion. The cat needs the rabbit. The dog is green. The dog is young. The dog likes the cat. The lion is blue. The lion is green. The rabbit chases the lion. The rabbit is blue. The rabbit is rough. The rabbit likes the dog. The rabbit needs the dog. The rabbit needs the lion. If someone chases the lion then they are round. If the lion needs the rabbit and the rabbit chases the dog then the lion likes the dog. If someone is round and they chase the lion then they need the cat. If someone needs the cat and they chase the dog then they like the rabbit. If someone chases the lion and the lion is blue then the lion is round. If someone chases the rabbit then they are rough. If someone is rough and they like the rabbit then the rabbit is young. If the rabbit chases the cat and the cat needs the lion then the rabbit is young. If someone is round and they need the cat then they chase the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not like the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-136_Q24", "context": "The bald eagle is rough. The bear eats the dog. The bear is big. The bear needs the dog. The bear sees the cat. The bear sees the dog. The cat eats the dog. The dog is nice. The dog is rough. The dog needs the bear. The dog needs the cat. The dog sees the bald eagle. If something eats the bear then the bear eats the bald eagle. If something needs the cat then the cat eats the bald eagle. If something sees the cat and the cat is green then the cat eats the bear. If something eats the bear and it eats the dog then the bear is rough. If something eats the bald eagle then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-465_Q1", "context": "Anne is big. Anne is furry. Anne is green. Anne is not kind. Bob is furry. Bob is green. Bob is red. Bob is round. Erin is not blue. Erin is red. Gary is not furry. Big people are round. All blue people are not round. If someone is big and round then they are green. If Bob is not red then Bob is not big. If Bob is round then Bob is big. Red people are kind. If Gary is not blue then Gary is furry. If someone is kind and green then they are furry. Kind people are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-966_Q21", "context": "The bald eagle eats the cow. The bald eagle is young. The cow is nice. The cow sees the bald eagle. The dog eats the bald eagle. The tiger eats the cow. The tiger needs the bald eagle. If something is green and it eats the cow then it does not see the bald eagle. If something eats the tiger then the tiger is young. If something is red then it eats the tiger. If something sees the bald eagle then it eats the cow. If something is green and it needs the dog then it needs the bald eagle. If something sees the tiger then it needs the bald eagle. If something is red then it eats the bald eagle. If something is young then it is red. If something eats the dog and it is red then the dog is young.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not see the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-345_Q22", "context": "The cat is big. The cat is cold. The cat likes the cow. The cat visits the lion. The cow is blue. The cow likes the lion. The cow does not visit the lion. The lion chases the cat. The lion is not big. The lion is rough. The lion visits the cat. The squirrel likes the cow. If something visits the squirrel then it likes the cat. If something visits the cat then it likes the cat. If something likes the squirrel and it is big then the squirrel likes the lion. If something likes the cow and it visits the cow then the cow visits the cat. If something likes the cat then it chases the squirrel. If something chases the lion and the lion is not cold then it visits the cow. If something chases the lion then the lion chases the cow. If something chases the squirrel then the squirrel visits the cat. If the cow is rough then the cow chases the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat likes the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-672_Q3", "context": "Anne is cold. Anne is kind. Anne is round. Anne is smart. Anne is young. Erin is cold. Erin is round. Erin is smart. Gary is cold. Gary is kind. Gary is rough. Gary is round. Gary is smart. Gary is white. Gary is young. Harry is cold. If someone is kind then they are round. Young, cold people are white. All white people are young. All cold people are white. All round people are smart. If someone is young and cold then they are kind. All round people are kind. All young people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-813_Q17", "context": "The cow likes the lion. The cow sees the dog. The dog is big. The dog is cold. The dog likes the lion. The lion is nice. The lion is rough. The lion does not need the dog. The rabbit is cold. The rabbit needs the cow. The rabbit needs the lion. The rabbit sees the dog. If someone likes the cow then they are big. If someone needs the lion then the lion needs the cow. If someone likes the lion then they like the rabbit. If someone sees the cow and they are not big then they do not like the lion. If someone is green then they see the rabbit. If someone is green and they like the cow then the cow needs the rabbit. If someone sees the rabbit then the rabbit likes the lion. If someone likes the lion and they do not see the dog then they need the lion. If someone likes the lion and they like the rabbit then the lion is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not like the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-721_Q6", "context": "The bald eagle does not eat the mouse. The bald eagle is not rough. The bald eagle needs the lion. The bald eagle sees the lion. The lion is nice. The mouse is kind. The mouse needs the bald eagle. The mouse needs the lion. The mouse sees the lion. The rabbit eats the bald eagle. The rabbit needs the mouse. If someone eats the bald eagle and they see the bald eagle then they are big. If someone is nice and they eat the rabbit then they eat the bald eagle. If someone eats the bald eagle then they are cold. If someone needs the rabbit and they are big then the rabbit sees the mouse. If someone is cold then they need the lion. If someone is cold and big then they do not need the bald eagle. If someone needs the lion then they see the bald eagle. If the rabbit sees the bald eagle and the rabbit is not big then the bald eagle eats the lion. If the bald eagle eats the lion then the bald eagle does not see the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not need the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1122_Q9", "context": "Bob is nice. Bob is round. Bob is white. Charlie is blue. Charlie is nice. Fiona is blue. Harry is white. If someone is blue then they are furry. All furry, nice people are smart. If someone is furry and white then they are nice. All white people are blue. Nice, smart people are quiet. Round people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-649_Q1", "context": "The bald eagle is nice. The bald eagle is rough. The bald eagle needs the mouse. The bald eagle needs the squirrel. The mouse is kind. The mouse is young. The mouse likes the tiger. The mouse sees the bald eagle. The squirrel is kind. The squirrel is nice. The squirrel needs the bald eagle. The tiger is kind. If someone likes the bald eagle then they are rough. If someone is blue and they see the tiger then the tiger needs the squirrel. If the mouse needs the bald eagle and the bald eagle likes the mouse then the bald eagle is rough. If the mouse needs the squirrel then the squirrel likes the mouse. If someone is rough then they see the mouse. If someone needs the tiger and the tiger is kind then they like the bald eagle. If someone sees the mouse then they need the squirrel. If someone needs the squirrel and the squirrel is nice then the squirrel needs the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle needs the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-305_Q1", "context": "Anne is quiet. Bob is not rough. Gary is big. Gary is kind. Gary is rough. Gary is young. Harry is young. All big people are furry. Young people are furry. All quiet, kind people are furry. If Harry is furry and Harry is quiet then Harry is round. Rough, kind people are quiet. Young, rough people are kind. All quiet, furry people are round. Furry people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1335_Q7", "context": "Anne is cold. Anne is green. Anne is rough. Charlie is kind. Dave is cold. Dave is furry. Dave is kind. Dave is quiet. Dave is red. Erin is kind. Erin is quiet. Erin is red. Furry, rough people are green. Red people are furry. All green people are kind. Kind people are quiet. If someone is cold then they are rough. All furry, rough people are cold. All quiet people are red. All red, quiet people are cold. If Anne is kind then Anne is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1331_Q16", "context": "Bob is big. Dave is big. Dave is quiet. Dave is round. Fiona is round. Harry is kind. Harry is smart. Big people are kind. All kind, big people are round. If someone is smart then they are kind. If someone is green and smart then they are furry. If someone is quiet and furry then they are smart. Furry, big people are quiet. All smart, kind people are big. If someone is furry then they are big. Round people are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-427_Q14", "context": "The bald eagle eats the tiger. The bald eagle is red. The bald eagle likes the rabbit. The bear eats the bald eagle. The bear is rough. The rabbit eats the tiger. The tiger eats the bald eagle. The tiger eats the rabbit. The tiger is kind. The tiger likes the bear. If someone is cold then they see the rabbit. If someone sees the tiger and the tiger is kind then they see the bald eagle. If the rabbit is red and the rabbit is rough then the rabbit likes the bear. If someone sees the rabbit then the rabbit eats the bald eagle. If someone eats the bald eagle then they are cold. If someone sees the bald eagle and they eat the bear then they like the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle sees the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-345_Q9", "context": "The cat is big. The cat is cold. The cat likes the cow. The cat visits the lion. The cow is blue. The cow likes the lion. The cow does not visit the lion. The lion chases the cat. The lion is not big. The lion is rough. The lion visits the cat. The squirrel likes the cow. If something visits the squirrel then it likes the cat. If something visits the cat then it likes the cat. If something likes the squirrel and it is big then the squirrel likes the lion. If something likes the cow and it visits the cow then the cow visits the cat. If something likes the cat then it chases the squirrel. If something chases the lion and the lion is not cold then it visits the cow. If something chases the lion then the lion chases the cow. If something chases the squirrel then the squirrel visits the cat. If the cow is rough then the cow chases the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel likes the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-399_Q3", "context": "Bob is quiet. Bob is smart. Charlie is kind. Charlie is smart. Charlie is white. Erin is blue. Harry is green. White, green things are smart. Smart, quiet things are white. All quiet, kind things are white. If Erin is kind and Erin is blue then Erin is white. All kind things are quiet. White things are quiet. Green things are kind. All white, smart things are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-683_Q22", "context": "The bear chases the cat. The bear chases the cow. The bear likes the cat. The bear likes the lion. The bear visits the cat. The cat is red. The cat visits the bear. The cat visits the cow. The cow visits the lion. The lion chases the cat. The lion is nice. If something likes the bear and it visits the lion then it is green. If something likes the lion and the lion is nice then it chases the lion. If something is green and it chases the cow then the cow is cold. Cold things are green. If something chases the lion and the lion chases the cat then it is cold. If the lion likes the cat and the cat chases the lion then the lion is nice. If something likes the cat then it likes the lion. If something likes the cat then it likes the lion. If something chases the lion then the lion visits the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-668_Q8", "context": "The bald eagle is nice. The bald eagle is round. The bald eagle likes the lion. The bald eagle visits the dog. The cat is green. The cat is nice. The cat is round. The cat likes the bald eagle. The cat likes the dog. The cat visits the dog. The dog eats the cat. The dog is big. The dog is blue. The lion is blue. If something is nice and green then it visits the bald eagle. If something is big then it eats the lion. If the bald eagle visits the lion then the lion is nice. If the bald eagle likes the cat then the bald eagle visits the dog. Round things are big. If something eats the cat and the cat eats the dog then the cat eats the lion. If something visits the dog and it eats the lion then the lion is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1176_Q8", "context": "Bob is not round. Charlie is furry. Charlie is nice. Charlie is smart. Erin is red. Fiona is furry. Fiona is young. All red people are not round. Red people are not blue. All young people are furry. If Erin is red and Erin is not round then Erin is nice. If someone is round and nice then they are not young. All smart people are young. Nice people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-121_Q6", "context": "The bald eagle needs the cow. The bald eagle needs the tiger. The bald eagle sees the cow. The cow is big. The cow needs the bald eagle. The cow needs the tiger. The mouse eats the cow. The mouse is blue. The mouse is cold. The mouse needs the bald eagle. The mouse sees the cow. The mouse sees the tiger. The tiger eats the cow. The tiger needs the bald eagle. The tiger needs the cow. The tiger needs the mouse. If someone needs the tiger then they are red. If the mouse needs the bald eagle and the bald eagle needs the cow then the mouse needs the cow. If the cow needs the mouse and the mouse sees the cow then the mouse is big. If someone eats the mouse then they see the cow. If someone sees the mouse and they see the bald eagle then the bald eagle needs the tiger. If someone is big then they see the bald eagle. If someone is big and they see the bald eagle then they need the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not need the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-517_Q3", "context": "The bald eagle is green. The bald eagle is red. The cat chases the lion. The cat sees the tiger. The cat visits the bald eagle. The cat visits the lion. The lion chases the cat. The lion is red. The lion sees the bald eagle. The lion sees the cat. The tiger chases the cat. The tiger sees the cat. The tiger visits the bald eagle. The tiger visits the lion. If something sees the lion and it sees the bald eagle then it chases the cat. If something chases the cat then it is young. If something visits the tiger and the tiger sees the cat then it sees the lion. If something visits the tiger and the tiger visits the lion then it sees the bald eagle. If the lion sees the bald eagle then the bald eagle visits the tiger. If something is young then it visits the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-718_Q9", "context": "Bob is round. Charlie is big. Charlie is furry. Charlie is green. Charlie is round. Charlie is white. Dave is big. Dave is quiet. Gary is green. Gary is quiet. All furry people are white. If someone is big then they are smart. All white, big people are round. If someone is quiet then they are smart. Smart people are big. All big, green people are furry. If someone is smart and round then they are quiet. Green people are smart. All smart, furry people are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-423_Q3", "context": "Anne is cold. Anne is furry. Anne is not quiet. Charlie is kind. Fiona is not quiet. Fiona is young. Harry is cold. Kind things are furry. Nice things are big. Furry things are nice. If something is young and furry then it is quiet. If Anne is quiet then Anne is cold. Kind, big things are young. If something is kind and not furry then it is not young.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-587_Q11", "context": "The bald eagle chases the squirrel. The bald eagle eats the bear. The bear does not eat the lion. The bear visits the lion. The lion does not eat the bald eagle. The squirrel is red. The squirrel visits the bald eagle. If something is round then it eats the squirrel. If something is blue and green then it chases the bald eagle. If something eats the squirrel then the squirrel is green. If the bald eagle is round then the bald eagle chases the lion. If something is blue then it chases the squirrel. All red things are blue. If something chases the lion then it is blue. Blue, red things are round. If something visits the bald eagle and it is not round then it visits the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel chases the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-510_Q5", "context": "The bear is cold. The bear is not green. The bear is rough. The rabbit is cold. The squirrel is nice. The squirrel does not visit the rabbit. The squirrel visits the tiger. The tiger chases the bear. The tiger does not eat the rabbit. The tiger is cold. The tiger is nice. The tiger is not rough. The tiger visits the rabbit. The tiger visits the squirrel. If something is green and it visits the squirrel then the squirrel is green. If something chases the rabbit then it eats the bear. If the squirrel eats the rabbit and the rabbit visits the bear then the bear is not red. If something is cold then it chases the rabbit. If the rabbit chases the squirrel then the squirrel eats the bear. If something chases the bear and it visits the tiger then the tiger chases the squirrel. If something is cold and not nice then it eats the rabbit. If something eats the bear and the bear visits the squirrel then it eats the rabbit. If something eats the bear then it chases the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit eats the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-442_Q24", "context": "The bald eagle chases the cat. The bald eagle does not eat the mouse. The cat eats the cow. The cow eats the cat. The cow is blue. The cow is young. The cow sees the cat. The cow does not see the mouse. The mouse does not chase the cow. The mouse eats the bald eagle. The mouse is round. If something eats the mouse then it is round. If the mouse is red then the mouse sees the cow. If something chases the cat then it does not chase the mouse. If the mouse chases the cat then the cat eats the mouse. If something is round then it chases the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle chases the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-739_Q1", "context": "The bald eagle eats the dog. The bald eagle sees the dog. The dog is cold. The dog likes the squirrel. The dog sees the rabbit. The rabbit eats the dog. The rabbit eats the squirrel. The rabbit likes the dog. The rabbit sees the squirrel. The squirrel likes the bald eagle. If someone is cold and they like the bald eagle then they eat the rabbit. If someone likes the dog and they see the squirrel then the dog likes the bald eagle. If the bald eagle sees the dog and the bald eagle is cold then the bald eagle likes the dog. If someone likes the rabbit then they are young. If someone likes the dog and the dog likes the squirrel then they like the bald eagle. If the bald eagle is red and the bald eagle likes the squirrel then the squirrel eats the rabbit. If the dog likes the bald eagle and the bald eagle sees the dog then the bald eagle is cold. If someone sees the bald eagle then the bald eagle is young.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit likes the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1111_Q2", "context": "Bob is big. Bob is blue. Bob is cold. Bob is red. Bob is rough. Charlie is not cold. Charlie is green. Gary is blue. Harry is cold. Harry is rough. If someone is quiet and blue then they are big. If someone is rough and quiet then they are red. Green people are rough. If someone is big and blue then they are green. Blue people are quiet. If Gary is not blue then Gary is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-442_Q9", "context": "The bald eagle chases the cat. The bald eagle does not eat the mouse. The cat eats the cow. The cow eats the cat. The cow is blue. The cow is young. The cow sees the cat. The cow does not see the mouse. The mouse does not chase the cow. The mouse eats the bald eagle. The mouse is round. If something eats the mouse then it is round. If the mouse is red then the mouse sees the cow. If something chases the cat then it does not chase the mouse. If the mouse chases the cat then the cat eats the mouse. If something is round then it chases the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat chases the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-108_Q15", "context": "Anne is green. Bob is big. Bob is furry. Dave is green. Erin is furry. Erin is green. Erin is round. If Anne is white and Anne is big then Anne is not furry. Furry people are kind. If someone is kind then they are white. If someone is white then they are big. If someone is rough then they are green. If someone is kind and not big then they are not rough. Furry, white people are rough. Green, kind people are round. If someone is white and not green then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-90_Q18", "context": "The bear is kind. The mouse chases the bear. The mouse chases the rabbit. The mouse visits the rabbit. The rabbit is blue. The rabbit needs the mouse. The squirrel chases the mouse. The squirrel chases the rabbit. The squirrel is blue. The squirrel is green. The squirrel is young. If the squirrel is young and the squirrel needs the rabbit then the squirrel visits the rabbit. If something is cold then it needs the squirrel. If something visits the mouse and the mouse needs the squirrel then it needs the rabbit. If something chases the bear then it is cold. If something visits the bear and the bear visits the squirrel then the squirrel visits the rabbit. If something needs the squirrel then the squirrel visits the mouse. If the mouse visits the bear and the mouse visits the squirrel then the squirrel visits the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear needs the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-959_Q14", "context": "Bob is rough. Fiona is cold. Fiona is rough. Gary is big. Gary is quiet. Harry is big. Harry is rough. If someone is white and smart then they are furry. All rough people are big. All furry people are white. If someone is quiet and cold then they are white. All furry people are white. If Harry is big then Harry is cold. Big, smart people are quiet. If someone is big then they are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1183_Q16", "context": "Bob is round. Bob is smart. Charlie is not smart. Fiona is young. Gary is nice. Gary is smart. Gary is white. If someone is young then they are smart. If Fiona is young then Fiona is smart. If someone is green and young then they are white. If someone is smart then they are green. If someone is quiet then they are round. If someone is round and not smart then they are not quiet. If someone is nice then they are quiet. If someone is white then they are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-70_Q15", "context": "The bald eagle chases the rabbit. The bald eagle chases the tiger. The lion needs the rabbit. The rabbit does not chase the lion. The rabbit needs the bald eagle. The rabbit needs the lion. The tiger visits the rabbit. If something chases the rabbit then it is big. If something needs the tiger then it is big. If something needs the lion and it visits the rabbit then it chases the lion. If something is big then it chases the lion. If something chases the tiger then the tiger needs the rabbit. If something visits the tiger then the tiger is not green. If something chases the lion then the lion chases the rabbit. If something chases the tiger then it visits the bald eagle. If something chases the rabbit and it does not visit the lion then the lion does not need the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not visit the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-372_Q8", "context": "Charlie is young. Erin is blue. Erin is green. Fiona is big. Fiona is green. Gary is blue. Gary is green. All red things are furry. All furry things are red. Young things are red. If something is smart and not red then it is not green. All furry things are green. If something is red and green then it is blue. If something is young and big then it is smart. If something is blue and green then it is smart. Blue, red things are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-120_Q9", "context": "Dave is nice. Dave is red. Erin is red. Fiona is rough. Fiona is round. Gary is cold. Gary is green. Gary is red. Gary is rough. Gary is not smart. Smart, round things are nice. Red things are nice. Rough, nice things are round. Cold things are rough. If something is red and nice then it is cold. All round things are green. If something is nice and not cold then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-586_Q14", "context": "Erin is smart. Fiona is quiet. Gary is blue. Gary is kind. Gary is quiet. Gary is red. Harry is smart. If Harry is smart then Harry is kind. Quiet, smart things are blue. If something is green and smart then it is not blue. Kind things are quiet. All blue, green things are smart. Red things are furry. If Harry is smart and Harry is blue then Harry is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-372_Q17", "context": "Charlie is young. Erin is blue. Erin is green. Fiona is big. Fiona is green. Gary is blue. Gary is green. All red things are furry. All furry things are red. Young things are red. If something is smart and not red then it is not green. All furry things are green. If something is red and green then it is blue. If something is young and big then it is smart. If something is blue and green then it is smart. Blue, red things are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-925_Q22", "context": "The bald eagle chases the bear. The bald eagle needs the cat. The bald eagle visits the squirrel. The bear does not chase the squirrel. The bear is blue. The cat chases the squirrel. The cat visits the bear. The cat visits the squirrel. The squirrel is green. The squirrel does not need the cat. If someone is cold and they visit the bear then the bear does not need the squirrel. If the bald eagle is blue and the bald eagle visits the cat then the cat is nice. If someone is blue then they visit the cat. If someone visits the bear then the bear needs the cat. If the bear visits the bald eagle then the bear visits the cat. If someone needs the squirrel then the squirrel chases the cat. If the bear needs the bald eagle and the bear needs the cat then the bald eagle is blue. If someone visits the cat then they need the bald eagle. If someone needs the bear and they are blue then the bear does not visit the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1017_Q19", "context": "Dave is big. Dave is furry. Erin is blue. Erin is cold. Erin is round. Fiona is quiet. Gary is rough. If something is rough and cold then it is furry. Quiet, big things are not round. If Dave is blue then Dave is furry. All quiet, blue things are big. If Fiona is furry then Fiona is blue. If something is quiet then it is cold. All big things are cold. All blue, round things are not quiet. Cold things are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-330_Q11", "context": "The bald eagle eats the mouse. The bald eagle likes the lion. The bald eagle does not see the lion. The cat is not cold. The cat does not like the lion. The cat sees the lion. The cat does not see the mouse. The lion likes the cat. The mouse eats the bald eagle. The mouse is kind. The mouse sees the bald eagle. If something is red and not cold then it does not eat the cat. If something is kind then it sees the mouse. If something likes the bald eagle then the bald eagle is rough. If something is rough then it likes the bald eagle. If something sees the bald eagle then it is rough. If the cat is kind and the cat likes the mouse then the cat does not see the lion. If something likes the bald eagle then it eats the lion. If something likes the mouse and the mouse does not eat the cat then the cat does not see the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle eats the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-226_Q4", "context": "The bear is not big. The bear needs the squirrel. The dog is nice. The dog sees the tiger. The squirrel sees the bear. The squirrel sees the tiger. The tiger eats the dog. The tiger is green. The tiger needs the bear. The tiger sees the squirrel. If someone eats the dog then the dog needs the bear. If someone eats the bear then they eat the tiger. If someone needs the tiger and they see the dog then they eat the tiger. If someone is nice and they need the bear then they eat the bear. If someone sees the dog then they eat the squirrel. If someone needs the tiger and the tiger eats the bear then they eat the squirrel. If someone eats the tiger then the tiger eats the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not need the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1364_Q16", "context": "Charlie is big. Charlie is cold. Charlie is kind. Charlie is quiet. Charlie is red. Charlie is rough. Charlie is smart. Erin is kind. Fiona is quiet. Fiona is rough. Harry is kind. Harry is rough. Kind things are big. All kind, smart things are rough. If something is red and quiet then it is big. All red things are cold. All cold, quiet things are smart. If something is big and smart then it is cold. All quiet things are cold. Kind, big things are red. All cold, smart things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-959_Q2", "context": "Bob is rough. Fiona is cold. Fiona is rough. Gary is big. Gary is quiet. Harry is big. Harry is rough. If someone is white and smart then they are furry. All rough people are big. All furry people are white. If someone is quiet and cold then they are white. All furry people are white. If Harry is big then Harry is cold. Big, smart people are quiet. If someone is big then they are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-454_Q13", "context": "Anne is green. Anne is nice. Anne is not rough. Anne is smart. Bob is green. Bob is nice. Fiona is white. Gary is rough. Gary is round. Gary is white. If something is nice then it is round. If something is white then it is round. If something is young and not nice then it is round. If Bob is round and Bob is green then Bob is rough. If something is young and green then it is smart. Smart things are white. If something is rough and not green then it is white. If something is rough then it is young. All rough things are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-442_Q10", "context": "The bald eagle chases the cat. The bald eagle does not eat the mouse. The cat eats the cow. The cow eats the cat. The cow is blue. The cow is young. The cow sees the cat. The cow does not see the mouse. The mouse does not chase the cow. The mouse eats the bald eagle. The mouse is round. If something eats the mouse then it is round. If the mouse is red then the mouse sees the cow. If something chases the cat then it does not chase the mouse. If the mouse chases the cat then the cat eats the mouse. If something is round then it chases the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not chase the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-561_Q16", "context": "The bald eagle is blue. The bald eagle does not need the squirrel. The bear chases the bald eagle. The bear is blue. The bear is round. The bear sees the bald eagle. The squirrel is nice. The squirrel is red. The tiger chases the bald eagle. The tiger sees the bald eagle. If someone chases the squirrel then they see the tiger. If the bald eagle sees the tiger and the tiger chases the bald eagle then the tiger needs the squirrel. If someone is red then they see the bear. If someone needs the bear then they do not chase the squirrel. All blue people are round. If someone needs the tiger then they chase the bear. If someone is red and they need the tiger then the tiger is red. If someone sees the bear then they need the tiger. If someone sees the tiger and the tiger does not see the bear then they do not chase the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger sees the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-276_Q8", "context": "Bob is kind. Bob is round. Charlie is rough. Erin is green. Erin is rough. Erin is round. Gary is cold. All rough people are green. If someone is green then they are white. If someone is white then they are not big. If someone is green and not big then they are kind. If someone is kind and not big then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-423_Q4", "context": "Anne is cold. Anne is furry. Anne is not quiet. Charlie is kind. Fiona is not quiet. Fiona is young. Harry is cold. Kind things are furry. Nice things are big. Furry things are nice. If something is young and furry then it is quiet. If Anne is quiet then Anne is cold. Kind, big things are young. If something is kind and not furry then it is not young.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-960_Q3", "context": "Anne is quiet. Anne is not round. Anne is young. Charlie is not quiet. Charlie is young. Dave is blue. Dave is not smart. Harry is blue. Harry is kind. Harry is young. All blue, kind things are rough. Rough, kind things are quiet. Round things are kind. If Anne is round then Anne is kind. If Anne is smart and Anne is quiet then Anne is not round. All blue things are round. If something is kind and not round then it is young. If something is quiet and not blue then it is young. Quiet things are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-1029_Q17", "context": "The bear is young. The bear visits the lion. The cat is round. The cat needs the bear. The lion is cold. The lion is not green. The lion is round. The lion does not need the bear. The lion sees the bear. The lion visits the bear. The lion visits the cat. The lion visits the rabbit. The rabbit is green. The rabbit is rough. The rabbit sees the lion. The rabbit visits the cat. If something visits the cat then the cat sees the lion. If something visits the lion and the lion visits the rabbit then it needs the lion. If something needs the lion and the lion is round then it needs the cat. If something is green and it needs the rabbit then the rabbit is green. If something is round then it visits the lion. If something sees the cat and the cat visits the lion then it is not rough. If something needs the cat and it is not green then it sees the cat. If something is young and it visits the bear then it sees the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not visit the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-173_Q17", "context": "The bald eagle eats the cow. The bald eagle is blue. The cat visits the bald eagle. The cat visits the rabbit. The cow is blue. The cow sees the rabbit. The rabbit eats the bald eagle. The rabbit is cold. The rabbit sees the cow. The rabbit visits the cat. If something visits the cow and it sees the cow then it visits the bald eagle. If something is nice then it is big. If something visits the bald eagle then it is nice. If something is cold and it visits the cow then the cow sees the cat. If something is round and it eats the bald eagle then it sees the bald eagle. If something visits the cat then it visits the rabbit. If something visits the rabbit and it sees the cow then it visits the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not visit the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-151_Q23", "context": "The cat chases the tiger. The cat is red. The lion is nice. The lion is red. The lion sees the cat. The lion sees the rabbit. The lion sees the tiger. The rabbit chases the tiger. The rabbit sees the tiger. The tiger chases the cat. The tiger chases the rabbit. The tiger is nice. If someone is red and they eat the rabbit then they are blue. If the lion eats the cat and the lion chases the rabbit then the cat is kind. If the rabbit eats the tiger then the tiger is nice. If someone is rough then they see the cat. If someone is nice and they chase the rabbit then the rabbit is nice. If someone eats the cat and they are kind then they see the tiger. If someone is nice and they chase the tiger then they are blue. If someone is blue then they eat the cat. If someone eats the cat then the cat is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not eat the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-183_Q3", "context": "The bald eagle does not eat the lion. The bald eagle does not eat the squirrel. The bald eagle is rough. The lion eats the bald eagle. The lion eats the squirrel. The lion likes the mouse. The lion needs the squirrel. The mouse likes the squirrel. The mouse needs the lion. The squirrel eats the lion. The squirrel is rough. If someone is nice then they like the mouse. If the squirrel needs the lion and the squirrel is nice then the squirrel does not eat the mouse. If the squirrel likes the mouse then the squirrel needs the bald eagle. If someone likes the mouse and the mouse needs the squirrel then the mouse does not like the bald eagle. If the squirrel eats the lion then the squirrel is nice. If the squirrel does not need the bald eagle then the squirrel is round. If someone needs the bald eagle then they are round. If someone eats the mouse and the mouse is nice then the mouse does not need the bald eagle. If someone is round and rough then they eat the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-221_Q5", "context": "Anne is nice. Anne is young. Dave is cold. Dave is smart. Dave is white. Fiona is nice. Fiona is not red. Fiona is young. Gary is cold. Gary is red. If someone is smart then they are green. If someone is green then they are nice. Nice people are young. If someone is white then they are young. If someone is cold then they are white. If someone is green and smart then they are white. All young, red people are smart. If Fiona is red then Fiona is green. If Anne is smart then Anne is not green.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-174_Q18", "context": "The bald eagle eats the bear. The bald eagle is cold. The bald eagle does not like the bear. The bald eagle likes the tiger. The bald eagle visits the bear. The bear eats the bald eagle. The bear is blue. The bear does not visit the tiger. The mouse likes the tiger. The tiger eats the mouse. The tiger is cold. The tiger likes the bear. If the mouse is kind then the mouse eats the bald eagle. If something eats the bald eagle and the bald eagle likes the tiger then the tiger likes the mouse. If something likes the tiger then it visits the mouse. If the tiger likes the mouse and the mouse does not eat the tiger then the mouse is big. If something visits the bear and it is kind then the bear likes the tiger. Cold, kind things are big. If the tiger eats the bald eagle then the tiger does not eat the mouse. If something visits the mouse then it is kind. If the bald eagle eats the mouse and the mouse does not eat the bear then the bald eagle is big.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear likes the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-121_Q12", "context": "The bald eagle needs the cow. The bald eagle needs the tiger. The bald eagle sees the cow. The cow is big. The cow needs the bald eagle. The cow needs the tiger. The mouse eats the cow. The mouse is blue. The mouse is cold. The mouse needs the bald eagle. The mouse sees the cow. The mouse sees the tiger. The tiger eats the cow. The tiger needs the bald eagle. The tiger needs the cow. The tiger needs the mouse. If someone needs the tiger then they are red. If the mouse needs the bald eagle and the bald eagle needs the cow then the mouse needs the cow. If the cow needs the mouse and the mouse sees the cow then the mouse is big. If someone eats the mouse then they see the cow. If someone sees the mouse and they see the bald eagle then the bald eagle needs the tiger. If someone is big then they see the bald eagle. If someone is big and they see the bald eagle then they need the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not need the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-155_Q6", "context": "Charlie is cold. Charlie is rough. Charlie is white. Erin is cold. Erin is smart. Fiona is blue. Fiona is cold. Fiona is furry. Fiona is white. Gary is round. If Erin is white then Erin is blue. If someone is round then they are blue. Smart, cold people are white. All smart people are furry. Furry people are cold. Smart, furry people are round. If someone is blue then they are smart. If someone is smart and not cold then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-1026_Q4", "context": "The cat is green. The cat is nice. The cat likes the squirrel. The rabbit likes the tiger. The rabbit does not need the cat. The rabbit needs the squirrel. The squirrel is cold. The squirrel needs the cat. The squirrel needs the rabbit. The tiger chases the cat. The tiger chases the rabbit. The tiger is kind. The tiger is nice. The tiger is young. The tiger likes the cat. The tiger needs the cat. If something chases the squirrel then the squirrel needs the tiger. If something needs the tiger then it likes the rabbit. If something chases the cat and it likes the rabbit then the rabbit chases the squirrel. If something chases the rabbit then the rabbit does not need the tiger. If something is kind and it chases the rabbit then it needs the tiger. If something is kind then it does not like the squirrel. If something likes the squirrel and it does not need the tiger then the squirrel likes the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit needs the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-849_Q24", "context": "Anne is green. Bob is kind. Bob is rough. Erin is not rough. Fiona is nice. Fiona is not red. Fiona is rough. If something is green then it is not blue. Green things are red. Green, red things are rough. If Bob is blue then Bob is kind. All kind things are smart. Rough, red things are kind. If something is green and not kind then it is nice. All smart things are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-308_Q1", "context": "Anne is cold. Anne is young. Charlie is cold. Erin is big. Fiona is blue. Fiona is red. Fiona is smart. If something is big and young then it is smart. If something is big and red then it is young. All cold things are red. If something is green then it is cold. If Anne is blue and Anne is smart then Anne is young. All smart, young things are green. If something is red and big then it is young. If something is big then it is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1233_Q2", "context": "Anne is smart. Bob is quiet. Bob is young. Fiona is not quiet. Gary is kind. Gary is rough. Gary is smart. Rough, kind people are blue. Young, kind people are rough. If someone is furry then they are quiet. Furry, young people are quiet. All quiet people are young. If someone is blue and kind then they are young. If someone is smart then they are furry. If Fiona is blue then Fiona is not kind. Young people are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-143_Q12", "context": "Anne is round. Bob is blue. Bob is kind. Bob is red. Dave is big. Dave is kind. Dave is smart. Fiona is big. Fiona is red. Fiona is rough. Fiona is round. If Bob is round and Bob is red then Bob is rough. Big people are kind. All blue people are big. All round people are blue. All smart, red people are kind. All kind people are rough. All rough, big people are smart. Round, smart people are blue. If Fiona is smart and Fiona is red then Fiona is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-858_Q5", "context": "Anne is big. Anne is smart. Bob is cold. Gary is big. Gary is furry. Harry is not cold. Harry is green. All young people are cold. If someone is smart then they are young. If someone is furry then they are green. Green people are white. If someone is green and cold then they are white. If Harry is green and Harry is young then Harry is furry. Green people are furry. All cold people are furry. If Gary is green then Gary is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-977_Q14", "context": "The cat is young. The cat visits the mouse. The cow is cold. The cow likes the lion. The lion is cold. The lion likes the cat. The lion needs the mouse. The lion visits the mouse. The mouse is cold. The mouse is red. The mouse is young. The mouse likes the cat. The mouse needs the cat. The mouse needs the cow. If something needs the cat and the cat is red then it is blue. Blue things are red. If something likes the mouse and the mouse likes the cat then the cat is blue. If something is cold and red then it likes the mouse. If something needs the cow and it is cold then it is young. If something is nice then it visits the lion. If something needs the lion then it likes the cat. If something visits the cat and it likes the lion then the cat is blue. If something is cold and blue then it needs the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse visits the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-637_Q19", "context": "The bald eagle eats the bear. The bald eagle is nice. The bald eagle visits the mouse. The bear eats the tiger. The bear is kind. The bear visits the tiger. The mouse eats the bear. The mouse is green. The mouse is kind. The mouse sees the bald eagle. The mouse sees the bear. The mouse sees the tiger. The tiger eats the mouse. The tiger sees the bald eagle. The tiger sees the bear. The tiger visits the mouse. If something is kind then it visits the bald eagle. If something eats the bear then the bear sees the bald eagle. If the bald eagle is round then the bald eagle eats the bear. If something eats the bald eagle and it sees the bear then the bald eagle is kind. If something sees the bald eagle then the bald eagle visits the mouse. If something visits the bald eagle and the bald eagle visits the mouse then it eats the bald eagle. If something is blue and it eats the tiger then the tiger eats the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-897_Q12", "context": "Anne is nice. Bob is big. Bob is blue. Bob is cold. Charlie is big. Charlie is cold. Charlie is nice. Charlie is young. Fiona is furry. Fiona is young. If someone is furry and nice then they are cold. If Bob is blue and Bob is big then Bob is cold. All blue, cold people are big. If someone is nice then they are smart. All smart, big people are nice. All smart people are blue. Blue, smart people are furry. Furry, cold people are smart. Cold people are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-992_Q10", "context": "The bear is nice. The bear likes the cat. The bear sees the dog. The cat eats the bear. The cat is cold. The cat sees the bear. The dog eats the bear. The dog eats the lion. The dog is blue. The dog sees the cat. The lion eats the cat. The lion is cold. The lion likes the bear. The lion likes the cat. If someone is big then they eat the dog. If someone is cold then they are nice. If someone is blue and they see the bear then they see the dog. If someone eats the dog then the dog is nice. If someone is blue and they see the dog then they are big. If someone eats the bear and they are nice then they are blue. If someone eats the bear and they see the dog then the dog is big.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-269_Q17", "context": "Charlie is blue. Charlie is round. Fiona is big. Fiona is cold. Gary is nice. Harry is nice. Harry is round. All rough, blue things are red. All nice things are cold. Big, cold things are rough. If something is red and blue then it is rough. All blue, cold things are nice. All red things are blue. If something is round and cold then it is blue. Blue things are big. If Charlie is big then Charlie is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-721_Q8", "context": "The bald eagle does not eat the mouse. The bald eagle is not rough. The bald eagle needs the lion. The bald eagle sees the lion. The lion is nice. The mouse is kind. The mouse needs the bald eagle. The mouse needs the lion. The mouse sees the lion. The rabbit eats the bald eagle. The rabbit needs the mouse. If someone eats the bald eagle and they see the bald eagle then they are big. If someone is nice and they eat the rabbit then they eat the bald eagle. If someone eats the bald eagle then they are cold. If someone needs the rabbit and they are big then the rabbit sees the mouse. If someone is cold then they need the lion. If someone is cold and big then they do not need the bald eagle. If someone needs the lion then they see the bald eagle. If the rabbit sees the bald eagle and the rabbit is not big then the bald eagle eats the lion. If the bald eagle eats the lion then the bald eagle does not see the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not see the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-31_Q8", "context": "The dog chases the squirrel. The lion eats the squirrel. The lion sees the dog. The squirrel chases the dog. The squirrel chases the lion. The squirrel eats the lion. The squirrel is green. The squirrel is rough. The squirrel sees the dog. The squirrel sees the lion. The tiger is rough. If something is blue then it chases the lion. If something chases the lion and it eats the squirrel then the squirrel sees the tiger. If the squirrel eats the lion and the squirrel is green then the lion sees the tiger. If something sees the tiger then it is blue. Rough things are big. If something chases the dog then it chases the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not chase the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-327_Q17", "context": "Bob is quiet. Bob is smart. Charlie is quiet. Charlie is not white. Fiona is young. Harry is big. Harry is nice. If something is quiet and white then it is green. All smart things are green. Green things are white. All smart, young things are big. White things are not young. If something is smart and not young then it is nice. If Bob is green and Bob is nice then Bob is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-685_Q24", "context": "The bear chases the cow. The bear eats the cow. The bear is young. The cow is red. The cow is round. The cow visits the squirrel. The rabbit is round. The rabbit visits the bear. The squirrel eats the cow. The squirrel visits the rabbit. If someone visits the squirrel and the squirrel chases the cow then the cow is round. If someone is big and red then they chase the rabbit. If someone visits the rabbit then the rabbit visits the bear. If the squirrel chases the cow and the cow is round then the cow is young. If someone chases the squirrel then the squirrel eats the rabbit. If someone eats the cow and the cow eats the rabbit then the cow chases the rabbit. If someone chases the rabbit then the rabbit is red. All red people are big. If someone eats the bear then they chase the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear visits the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1054_Q3", "context": "Anne is round. Bob is big. Bob is nice. Bob is round. Dave is big. Dave is blue. Dave is furry. Dave is smart. Harry is smart. Harry is white. All blue, round people are smart. All nice, round people are furry. Smart, blue people are nice. If Anne is furry and Anne is round then Anne is big. All blue, smart people are white. Nice people are furry. All furry, big people are blue. If someone is round then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1041_Q8", "context": "Bob is cold. Bob is quiet. Bob is red. Bob is smart. Charlie is kind. Charlie is quiet. Charlie is red. Charlie is rough. Dave is cold. Dave is kind. Dave is smart. Fiona is quiet. If something is quiet and cold then it is smart. Red, cold things are round. If something is kind and rough then it is red. All quiet things are rough. Cold, smart things are red. If something is rough then it is cold. All red things are rough. If Dave is smart and Dave is kind then Dave is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-973_Q19", "context": "Charlie is young. Fiona is blue. Gary is blue. Gary is white. Harry is blue. Harry is round. Harry is smart. If Charlie is round and Charlie is quiet then Charlie is not young. If something is quiet then it is smart. All blue things are young. Big, blue things are quiet. Young, white things are round. If Fiona is big and Fiona is not white then Fiona is blue. If Charlie is big and Charlie is young then Charlie is not smart. Round things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-973_Q6", "context": "Charlie is young. Fiona is blue. Gary is blue. Gary is white. Harry is blue. Harry is round. Harry is smart. If Charlie is round and Charlie is quiet then Charlie is not young. If something is quiet then it is smart. All blue things are young. Big, blue things are quiet. Young, white things are round. If Fiona is big and Fiona is not white then Fiona is blue. If Charlie is big and Charlie is young then Charlie is not smart. Round things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-725_Q8", "context": "Anne is cold. Anne is smart. Bob is big. Bob is rough. Erin is big. Erin is cold. Erin is kind. Erin is rough. Erin is smart. Erin is white. Erin is young. Harry is cold. Harry is kind. Harry is rough. Smart things are cold. If Erin is kind then Erin is young. White things are kind. If something is rough and kind then it is smart. If Anne is smart then Anne is white. All smart, cold things are kind. Big, cold things are young. If Bob is rough then Bob is white.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-107_Q1", "context": "Charlie is cold. Charlie is furry. Charlie is red. Charlie is rough. Charlie is smart. Dave is furry. Dave is rough. Fiona is kind. Fiona is young. Harry is red. If something is rough then it is cold. All smart things are red. All kind things are rough. All red, kind things are rough. If Dave is cold and Dave is young then Dave is kind. Cold, young things are furry. Cold, furry things are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-517_Q10", "context": "Charlie is cold. Charlie is quiet. Charlie is young. Erin is cold. Erin is green. Erin is kind. Erin is round. Erin is young. Fiona is big. Fiona is round. Harry is green. Harry is kind. All cold, kind people are quiet. All quiet, big people are young. Green people are young. If Erin is young then Erin is cold. If someone is cold then they are big. All kind, round people are green. All big people are kind. Young people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-973_Q15", "context": "Charlie is young. Fiona is blue. Gary is blue. Gary is white. Harry is blue. Harry is round. Harry is smart. If Charlie is round and Charlie is quiet then Charlie is not young. If something is quiet then it is smart. All blue things are young. Big, blue things are quiet. Young, white things are round. If Fiona is big and Fiona is not white then Fiona is blue. If Charlie is big and Charlie is young then Charlie is not smart. Round things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-691_Q3", "context": "The bald eagle sees the cat. The cat eats the dog. The cat is big. The cat is kind. The dog eats the bald eagle. The dog eats the cat. The dog is kind. The dog sees the lion. The lion eats the bald eagle. The lion is green. The lion is nice. The lion sees the dog. Cold things are green. If something sees the lion then it needs the dog. If something needs the bald eagle then it sees the lion. If something is nice then it sees the lion. If something is big then it sees the cat. If something is green and it needs the dog then it eats the cat. If something is green and it eats the cat then the cat needs the bald eagle. If something eats the bald eagle then the bald eagle is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion sees the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-428_Q17", "context": "The cat is rough. The mouse likes the rabbit. The mouse sees the rabbit. The rabbit sees the squirrel. The squirrel eats the cat. The squirrel eats the rabbit. The squirrel is red. All red people are young. If the squirrel is green and the squirrel likes the rabbit then the rabbit eats the mouse. If someone sees the cat and they like the squirrel then the squirrel sees the cat. If someone is young then they see the mouse. If someone eats the rabbit and they see the mouse then the mouse is red. If someone is cold then they eat the squirrel. If someone sees the rabbit and the rabbit is green then they are young. If someone likes the squirrel and they are red then they are young. If someone sees the squirrel and the squirrel sees the mouse then they like the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not eat the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1057_Q5", "context": "Bob is kind. Bob is quiet. Bob is white. Charlie is quiet. Erin is furry. Erin is quiet. Erin is white. Fiona is blue. Fiona is furry. Fiona is kind. Fiona is quiet. All kind, rough people are furry. Green, furry people are quiet. If someone is rough then they are kind. If someone is quiet and kind then they are rough. If someone is white then they are quiet. If someone is blue and white then they are kind. If someone is white then they are blue. If Charlie is quiet then Charlie is white.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-983_Q7", "context": "Charlie is blue. Charlie is quiet. Dave is blue. Dave is cold. Dave is young. Erin is blue. Erin is quiet. Erin is white. Erin is young. Gary is cold. Gary is quiet. Gary is young. All quiet things are furry. If Charlie is cold then Charlie is young. White things are cold. All young things are nice. If Gary is nice then Gary is young. If something is young then it is nice. If something is furry and blue then it is white. If something is young and furry then it is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-107_Q6", "context": "Charlie is cold. Charlie is furry. Charlie is red. Charlie is rough. Charlie is smart. Dave is furry. Dave is rough. Fiona is kind. Fiona is young. Harry is red. If something is rough then it is cold. All smart things are red. All kind things are rough. All red, kind things are rough. If Dave is cold and Dave is young then Dave is kind. Cold, young things are furry. Cold, furry things are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-272_Q14", "context": "The bald eagle likes the dog. The bald eagle sees the dog. The bear likes the dog. The dog is green. The dog sees the bald eagle. The dog sees the bear. The squirrel sees the bear. If someone is kind then they visit the bald eagle. If the dog is nice and the dog is cold then the dog sees the squirrel. If someone visits the bald eagle and they are kind then the bald eagle is green. If someone likes the bald eagle and the bald eagle is green then they like the dog. If someone is rough and they like the bear then they visit the bald eagle. Green people are kind. If someone visits the bald eagle then the bald eagle sees the dog. If the dog sees the squirrel and the squirrel is rough then the squirrel likes the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear visits the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1229_Q6", "context": "Anne is cold. Anne is white. Bob is nice. Bob is white. Dave is blue. Gary is blue. Gary is smart. All blue people are smart. If someone is smart then they are cold. If someone is white then they are quiet. If someone is nice and quiet then they are blue. All white, furry people are blue. If Gary is furry then Gary is cold. If Bob is not white then Bob is smart. All cold, blue people are not furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-329_Q7", "context": "The bald eagle is cold. The bald eagle is rough. The bald eagle needs the tiger. The bald eagle visits the squirrel. The lion is cold. The lion is kind. The lion needs the tiger. The squirrel chases the bald eagle. The squirrel chases the tiger. The squirrel visits the tiger. The tiger is red. If someone needs the squirrel then they chase the tiger. If someone is rough and they chase the squirrel then the squirrel visits the lion. If someone visits the tiger and they visit the lion then the lion needs the bald eagle. If someone visits the bald eagle and the bald eagle visits the squirrel then the bald eagle chases the squirrel. If someone is red then they chase the lion. If someone chases the lion and they visit the bald eagle then they need the bald eagle. If someone visits the bald eagle then they need the bald eagle. If someone chases the lion then they visit the bald eagle. If someone chases the tiger then the tiger chases the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle chases the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-836_Q16", "context": "Anne is young. Bob is red. Bob is rough. Erin is green. Erin is kind. Gary is kind. Gary is round. If Anne is red and Anne is young then Anne is quiet. Round things are kind. If something is green and red then it is rough. If something is round then it is quiet. If something is young then it is round. Kind, red things are young. All red, round things are young. If something is round and quiet then it is green. All red, rough things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-692_Q4", "context": "Charlie is quiet. Dave is big. Dave is red. Dave is smart. Dave is young. Erin is big. Erin is blue. Erin is quiet. Erin is smart. Harry is big. Harry is furry. Harry is young. Blue people are red. If someone is quiet then they are big. If someone is furry then they are quiet. All quiet, big people are furry. If someone is young then they are blue. If someone is young then they are quiet. If Erin is furry then Erin is young. Blue people are quiet. If someone is furry then they are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-940_Q9", "context": "The bald eagle is kind. The bald eagle is not red. The bald eagle likes the dog. The dog needs the lion. The lion does not need the bald eagle. The mouse likes the dog. The mouse does not see the dog. If someone needs the mouse then the mouse does not see the bald eagle. If someone needs the dog then the dog needs the lion. If someone is rough then they see the mouse. If someone sees the mouse then the mouse is kind. If someone needs the lion then they do not see the bald eagle. If someone sees the dog then they need the mouse. All kind people are rough. If someone sees the mouse then they like the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-427_Q11", "context": "The bald eagle eats the tiger. The bald eagle is red. The bald eagle likes the rabbit. The bear eats the bald eagle. The bear is rough. The rabbit eats the tiger. The tiger eats the bald eagle. The tiger eats the rabbit. The tiger is kind. The tiger likes the bear. If someone is cold then they see the rabbit. If someone sees the tiger and the tiger is kind then they see the bald eagle. If the rabbit is red and the rabbit is rough then the rabbit likes the bear. If someone sees the rabbit then the rabbit eats the bald eagle. If someone eats the bald eagle then they are cold. If someone sees the bald eagle and they eat the bear then they like the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit sees the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-165_Q11", "context": "Anne is furry. Anne is nice. Anne is rough. Anne is white. Erin is furry. Erin is rough. Erin is white. Fiona is big. Fiona is nice. Fiona is round. Harry is nice. Harry is rough. All furry things are white. If Harry is red then Harry is round. All round, red things are furry. If Harry is rough then Harry is round. Nice, red things are big. Round, red things are white. All nice, white things are red. If something is round then it is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-572_Q4", "context": "Charlie is green. Charlie is kind. Charlie is nice. Charlie is rough. Erin is kind. Erin is nice. Erin is quiet. Fiona is quiet. Fiona is rough. Harry is smart. All rough, green people are quiet. If someone is green and rough then they are nice. All kind, smart people are green. If Erin is green and Erin is blue then Erin is quiet. All quiet people are smart. All kind people are green. If someone is smart then they are kind. All rough, nice people are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-109_Q13", "context": "Anne is green. Anne is rough. Bob is green. Bob is round. Dave is green. Dave is rough. Fiona is cold. All kind things are furry. Green things are round. If something is cold then it is kind. If something is furry then it is green. If Dave is quiet then Dave is not furry. Round things are not quiet. If something is quiet and not kind then it is not rough. All round, cold things are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-528_Q6", "context": "Charlie is big. Dave is nice. Dave is round. Erin is big. Erin is nice. Fiona is red. Fiona is rough. If someone is red and big then they are nice. If Dave is round and Dave is rough then Dave is big. If someone is round and young then they are big. All nice people are young. If Charlie is round and Charlie is big then Charlie is young. If someone is red then they are big. All rough, green people are round. If someone is big then they are red. Young people are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-668_Q8", "context": "The bald eagle chases the lion. The bald eagle chases the rabbit. The bald eagle is big. The cow needs the bald eagle. The cow needs the rabbit. The lion chases the cow. The lion chases the rabbit. The lion is kind. The lion is not round. The lion needs the bald eagle. The lion does not visit the cow. The lion visits the rabbit. The rabbit chases the bald eagle. The rabbit visits the bald eagle. If someone needs the rabbit then the rabbit chases the lion. If someone is rough and they do not chase the rabbit then they visit the bald eagle. If someone chases the lion then they do not need the cow. If someone needs the bald eagle and the bald eagle chases the cow then the bald eagle is not round. If someone chases the bald eagle and they do not need the cow then they visit the cow. If someone needs the rabbit and the rabbit visits the cow then the rabbit is big. If someone is big then they do not visit the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not visit the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-856_Q12", "context": "The bald eagle needs the lion. The bald eagle visits the lion. The lion is not cold. The lion does not like the tiger. The lion visits the tiger. The squirrel is kind. The squirrel is young. The squirrel likes the tiger. The squirrel does not need the lion. The squirrel visits the bald eagle. The tiger is cold. The tiger visits the bald eagle. If something visits the bald eagle then it is big. If something is big then it needs the squirrel. If something visits the squirrel and it visits the lion then it needs the squirrel. If something needs the squirrel then it is green. If something is young then it needs the tiger. Green things are young. If something is big and it visits the lion then the lion needs the squirrel. If the squirrel is big and the squirrel does not like the tiger then the tiger is not big.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not need the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-891_Q18", "context": "Bob is green. Bob is kind. Charlie is green. Charlie is not smart. Erin is not young. Fiona is nice. Fiona is young. Green, smart things are quiet. If something is kind then it is green. Smart things are young. Young things are kind. Quiet things are furry. All quiet, nice things are furry. Nice, green things are smart. If Bob is kind and Bob is not green then Bob is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-735_Q12", "context": "Bob is big. Bob is nice. Bob is smart. Charlie is nice. Dave is nice. Erin is big. Erin is blue. Erin is furry. Erin is quiet. Erin is round. Erin is smart. All nice things are big. All furry things are blue. Blue, furry things are quiet. If something is round and nice then it is blue. If Bob is round then Bob is blue. Big, quiet things are furry. If something is blue and furry then it is smart. If Charlie is nice and Charlie is big then Charlie is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-574_Q12", "context": "The bald eagle is not green. The bald eagle likes the cow. The bald eagle needs the cat. The cat is cold. The cat likes the cow. The cat needs the bald eagle. The cow eats the cat. The dog does not eat the cow. The dog is green. The dog likes the cow. The dog needs the bald eagle. All cold things are green. If something is cold then it needs the cow. If something is young then it needs the bald eagle. If something is young and cold then it eats the dog. If the bald eagle does not need the cat then the bald eagle likes the dog. If something eats the dog then the dog is cold. If something is cold then it is young.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not eat the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-586_Q11", "context": "Erin is smart. Fiona is quiet. Gary is blue. Gary is kind. Gary is quiet. Gary is red. Harry is smart. If Harry is smart then Harry is kind. Quiet, smart things are blue. If something is green and smart then it is not blue. Kind things are quiet. All blue, green things are smart. Red things are furry. If Harry is smart and Harry is blue then Harry is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-933_Q12", "context": "Anne is cold. Anne is round. Bob is big. Charlie is cold. Charlie is nice. Charlie is round. Charlie is young. Erin is nice. Erin is not rough. Erin is round. If Charlie is cold then Charlie is not quiet. If someone is cold and quiet then they are not big. All young, quiet people are not big. Cold, big people are round. If Bob is round then Bob is nice. If someone is nice and young then they are rough. Big people are young. Young people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-358_Q5", "context": "The bear eats the cow. The cat eats the bear. The cat eats the cow. The cat is kind. The cat sees the cow. The cat visits the mouse. The cow eats the bear. The cow is big. The cow sees the cat. The cow visits the mouse. The mouse eats the bear. The mouse eats the cat. The mouse is kind. The mouse sees the cat. The mouse visits the cat. The mouse visits the cow. If someone is cold then they visit the bear. If someone visits the cat and the cat eats the mouse then they eat the cow. If someone visits the mouse then the mouse sees the cow. If the cow eats the cat then the cat is big. If someone visits the bear then the bear visits the mouse. If someone sees the cow then they eat the mouse. If someone visits the mouse then they are cold. If someone eats the cat and they are cold then the cat visits the bear. If someone sees the bear and they are rough then they see the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse eats the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-398_Q21", "context": "The bald eagle is blue. The bald eagle is cold. The bald eagle needs the rabbit. The bear visits the lion. The lion is nice. The lion likes the bald eagle. The lion needs the bald eagle. The lion needs the rabbit. The lion visits the rabbit. The rabbit likes the bear. The rabbit needs the bald eagle. The rabbit needs the lion. The rabbit visits the bald eagle. The rabbit visits the bear. If someone visits the rabbit then they need the bear. If someone needs the rabbit then the rabbit likes the bear. If someone visits the bear and the bear needs the rabbit then they need the bear. If someone needs the bear then they need the rabbit. If the bear needs the lion and the bear likes the bald eagle then the bear visits the bald eagle. If someone is blue and they like the bald eagle then the bald eagle needs the rabbit. If someone likes the bear then the bear visits the rabbit. If the bald eagle likes the rabbit and the bald eagle visits the rabbit then the bald eagle needs the bear. If the rabbit likes the bear then the bear visits the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not like the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-668_Q14", "context": "The bald eagle chases the lion. The bald eagle chases the rabbit. The bald eagle is big. The cow needs the bald eagle. The cow needs the rabbit. The lion chases the cow. The lion chases the rabbit. The lion is kind. The lion is not round. The lion needs the bald eagle. The lion does not visit the cow. The lion visits the rabbit. The rabbit chases the bald eagle. The rabbit visits the bald eagle. If someone needs the rabbit then the rabbit chases the lion. If someone is rough and they do not chase the rabbit then they visit the bald eagle. If someone chases the lion then they do not need the cow. If someone needs the bald eagle and the bald eagle chases the cow then the bald eagle is not round. If someone chases the bald eagle and they do not need the cow then they visit the cow. If someone needs the rabbit and the rabbit visits the cow then the rabbit is big. If someone is big then they do not visit the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle visits the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-858_Q12", "context": "Anne is big. Anne is smart. Bob is cold. Gary is big. Gary is furry. Harry is not cold. Harry is green. All young people are cold. If someone is smart then they are young. If someone is furry then they are green. Green people are white. If someone is green and cold then they are white. If Harry is green and Harry is young then Harry is furry. Green people are furry. All cold people are furry. If Gary is green then Gary is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-983_Q24", "context": "The bald eagle chases the tiger. The bald eagle is cold. The bald eagle is rough. The dog chases the rabbit. The dog eats the rabbit. The rabbit chases the dog. The rabbit is round. The tiger chases the dog. The tiger eats the rabbit. The tiger is cold. If someone visits the dog and the dog eats the bald eagle then the bald eagle is green. If someone is red then they chase the rabbit. If someone eats the dog then they eat the rabbit. If someone chases the rabbit and the rabbit is green then they are green. If someone is green then they eat the dog. If someone visits the bald eagle and they are round then the bald eagle is green. If someone visits the rabbit and they eat the bald eagle then they eat the dog. If someone chases the dog then they visit the bald eagle. If someone is rough and they eat the rabbit then they eat the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog visits the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-630_Q24", "context": "Anne is green. Anne is quiet. Dave is round. Erin is nice. Fiona is not nice. Fiona is quiet. Fiona is rough. If something is rough and green then it is round. All smart things are round. If something is round and blue then it is rough. All blue things are rough. Quiet things are green. Round things are green. All nice things are blue. All rough, nice things are blue. Rough, nice things are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-562_Q17", "context": "Charlie is round. Charlie is not young. Dave is rough. Dave is not young. Erin is cold. Erin is young. Harry is furry. Round people are white. If someone is young then they are white. All round, rough people are big. All young, big people are not cold. Round, big people are not cold. Furry people are round. White, round people are furry. If Dave is furry and Dave is round then Dave is rough. If someone is furry then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-604_Q11", "context": "The cat chases the dog. The cat chases the mouse. The cat chases the tiger. The cat eats the dog. The dog is big. The dog sees the cat. The mouse does not eat the cat. The mouse eats the tiger. The mouse does not see the tiger. The tiger eats the dog. The tiger is nice. If something is young and it eats the tiger then it eats the dog. If something sees the mouse and it eats the mouse then the mouse sees the tiger. If something sees the mouse then it is big. If something chases the dog then the dog chases the cat. If something chases the dog then it chases the cat. If something chases the tiger and the tiger eats the cat then the cat sees the mouse. If something sees the dog and it chases the tiger then the tiger chases the dog. If the tiger is green and the tiger is big then the tiger sees the dog. If something chases the cat then it sees the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger sees the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-709_Q1", "context": "The bald eagle is green. The bald eagle is rough. The bald eagle is young. The bald eagle needs the squirrel. The bald eagle sees the squirrel. The cat is round. The cat needs the bald eagle. The cat needs the dog. The cat visits the bald eagle. The dog needs the bald eagle. The dog sees the bald eagle. The dog visits the cat. The squirrel needs the cat. The squirrel visits the bald eagle. If something sees the dog then it sees the cat. If something needs the dog and it is round then it needs the cat. If something visits the squirrel then the squirrel visits the dog. If something is nice then it sees the dog. If something needs the cat then it is nice. If something sees the cat then it is green. If something needs the cat then it is rough. If something visits the squirrel and the squirrel visits the dog then the squirrel visits the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle needs the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-404_Q24", "context": "The bear chases the lion. The bear is cold. The bear is nice. The bear visits the rabbit. The lion is red. The rabbit chases the bear. The rabbit is green. The squirrel chases the bear. The squirrel likes the bear. The squirrel visits the lion. If something chases the squirrel then the squirrel is red. If something likes the lion then it chases the squirrel. If something is red then it likes the lion. If something is nice and it chases the lion then it likes the rabbit. If something likes the bear and the bear likes the rabbit then the bear is green. If the squirrel visits the rabbit and the rabbit likes the bear then the bear visits the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit likes the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-559_Q24", "context": "The bear is big. The bear needs the rabbit. The bear sees the rabbit. The mouse likes the tiger. The mouse needs the rabbit. The mouse sees the rabbit. The mouse sees the tiger. The rabbit is round. The rabbit likes the tiger. The rabbit needs the tiger. The tiger is red. The tiger likes the mouse. If something sees the mouse and it likes the mouse then it sees the bear. If something needs the tiger then it likes the mouse. If something is red then it likes the mouse. If something likes the mouse then it sees the mouse. If something needs the mouse then the mouse sees the tiger. If the rabbit is nice then the rabbit likes the bear. If something is big and nice then it needs the bear. If something is round and it sees the bear then the bear likes the mouse. If something likes the rabbit and the rabbit needs the tiger then the tiger likes the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear likes the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-178_Q5", "context": "Bob is big. Bob is quiet. Erin is white. Gary is big. Gary is red. Harry is green. Harry is smart. If someone is smart and big then they are white. All quiet, red people are smart. If someone is smart and white then they are green. Red, round people are quiet. If someone is big then they are round. If Erin is round and Erin is quiet then Erin is smart. If someone is red and green then they are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-13_Q11", "context": "The bald eagle chases the dog. The bald eagle chases the tiger. The bald eagle needs the tiger. The dog chases the tiger. The dog does not like the squirrel. The dog needs the squirrel. The squirrel chases the dog. The squirrel is young. The squirrel likes the tiger. The tiger is not cold. The tiger does not like the dog. The tiger needs the squirrel. If someone likes the tiger and they need the tiger then the tiger is young. If someone needs the squirrel and the squirrel needs the bald eagle then the bald eagle needs the dog. If someone needs the tiger then they are not cold. If someone is young and they need the bald eagle then they need the tiger. If someone is young then they need the bald eagle. If the dog chases the bald eagle and the dog does not need the tiger then the tiger is not red.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger needs the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1183_Q20", "context": "Bob is round. Bob is smart. Charlie is not smart. Fiona is young. Gary is nice. Gary is smart. Gary is white. If someone is young then they are smart. If Fiona is young then Fiona is smart. If someone is green and young then they are white. If someone is smart then they are green. If someone is quiet then they are round. If someone is round and not smart then they are not quiet. If someone is nice then they are quiet. If someone is white then they are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-1026_Q9", "context": "The cat is green. The cat is nice. The cat likes the squirrel. The rabbit likes the tiger. The rabbit does not need the cat. The rabbit needs the squirrel. The squirrel is cold. The squirrel needs the cat. The squirrel needs the rabbit. The tiger chases the cat. The tiger chases the rabbit. The tiger is kind. The tiger is nice. The tiger is young. The tiger likes the cat. The tiger needs the cat. If something chases the squirrel then the squirrel needs the tiger. If something needs the tiger then it likes the rabbit. If something chases the cat and it likes the rabbit then the rabbit chases the squirrel. If something chases the rabbit then the rabbit does not need the tiger. If something is kind and it chases the rabbit then it needs the tiger. If something is kind then it does not like the squirrel. If something likes the squirrel and it does not need the tiger then the squirrel likes the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel needs the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1110_Q4", "context": "Bob is blue. Bob is cold. Bob is nice. Bob is round. Bob is smart. Bob is white. Dave is cold. Dave is white. Erin is blue. Erin is cold. Erin is nice. Erin is round. Erin is smart. Fiona is blue. Fiona is nice. Fiona is smart. White people are nice. All rough people are smart. If someone is blue and rough then they are smart. All nice, rough people are smart. If someone is nice and round then they are rough. White, smart people are blue. All blue people are nice. Nice people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-550_Q16", "context": "Anne is furry. Anne is smart. Bob is furry. Dave is red. Dave is smart. Fiona is nice. Fiona is not round. All smart, round things are not nice. All smart, blue things are nice. If something is blue then it is green. All nice, furry things are not green. All furry things are green. If something is red then it is smart. If something is smart then it is round. Green things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-694_Q2", "context": "Anne is young. Charlie is not red. Gary is not blue. Gary is kind. Gary is not rough. Gary is not young. Harry is green. If Gary is green then Gary is not blue. All young people are blue. If Harry is white and Harry is young then Harry is not green. All red people are green. Blue, young people are red. If someone is green then they are white. If someone is blue and white then they are kind. All red people are not rough. If someone is young and not white then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-221_Q8", "context": "Anne is nice. Anne is young. Dave is cold. Dave is smart. Dave is white. Fiona is nice. Fiona is not red. Fiona is young. Gary is cold. Gary is red. If someone is smart then they are green. If someone is green then they are nice. Nice people are young. If someone is white then they are young. If someone is cold then they are white. If someone is green and smart then they are white. All young, red people are smart. If Fiona is red then Fiona is green. If Anne is smart then Anne is not green.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1022_Q6", "context": "Dave is green. Dave is kind. Erin is cold. Erin is furry. Fiona is big. Fiona is furry. Gary is big. All kind people are cold. Green, smart people are rough. If Fiona is cold and Fiona is kind then Fiona is green. If someone is furry then they are smart. All furry, green people are smart. If someone is green and cold then they are big. If someone is furry and rough then they are big. All furry people are smart. Big, cold people are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-884_Q17", "context": "The bear is cold. The bear is rough. The bear needs the cat. The bear needs the rabbit. The bear sees the rabbit. The cat eats the bear. The cat is blue. The rabbit eats the cat. The rabbit eats the squirrel. The rabbit is big. The rabbit is rough. The rabbit is round. The squirrel eats the bear. The squirrel eats the cat. The squirrel is big. The squirrel is rough. If something eats the rabbit then the rabbit sees the bear. If something eats the rabbit then it needs the squirrel. If something sees the bear and it sees the cat then the cat sees the rabbit. If something sees the rabbit and the rabbit is rough then it sees the cat. All round, blue things are big. If the bear is big and the bear sees the squirrel then the bear is round. If something sees the cat then it sees the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not need the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1066_Q12", "context": "Bob is quiet. Bob is white. Dave is kind. Dave is red. Dave is young. Fiona is red. Fiona is round. Gary is quiet. Gary is red. Gary is round. White things are round. If something is kind and white then it is green. All young things are kind. All round things are young. All quiet, kind things are white. Quiet, green things are red. Young, quiet things are kind. All quiet, red things are kind. If Gary is young then Gary is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-796_Q6", "context": "The bald eagle chases the cat. The bald eagle likes the dog. The cat is green. The cat is red. The cat likes the lion. The dog chases the cat. The dog is red. The dog sees the bald eagle. The dog sees the lion. The lion is green. The lion is rough. The lion sees the cat. If someone is cold then they like the bald eagle. If someone sees the cat and they like the bald eagle then the cat is rough. If someone sees the bald eagle then the bald eagle likes the dog. All rough people are nice. If someone sees the lion then they are green. If the bald eagle is red then the bald eagle is nice. All nice people are cold. If someone chases the dog and the dog likes the cat then they see the bald eagle. If someone is rough then they like the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-746_Q9", "context": "Bob is white. Charlie is furry. Charlie is kind. Dave is cold. Dave is smart. Gary is red. Gary is white. Green, furry things are smart. If Charlie is white then Charlie is green. White things are kind. Cold, smart things are red. All furry things are cold. If Bob is kind and Bob is furry then Bob is smart. If something is cold and kind then it is white.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-492_Q6", "context": "Anne is big. Anne is blue. Anne is kind. Anne is round. Charlie is green. Gary is kind. Harry is round. All blue things are rough. All white things are kind. If something is green and kind then it is round. If Anne is rough then Anne is big. All big things are blue. If something is green then it is blue. Blue things are big. If Anne is big and Anne is green then Anne is kind. Rough things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-280_Q3", "context": "The bald eagle needs the mouse. The bald eagle sees the mouse. The cow is red. The cow is rough. The cow sees the bald eagle. The cow sees the mouse. The dog eats the bald eagle. The dog is cold. The dog is rough. The dog needs the bald eagle. The mouse eats the bald eagle. The mouse eats the dog. The mouse is red. The mouse is rough. The mouse is young. The mouse sees the cow. If something is young then it needs the dog. If something eats the cow then the cow is kind. If something is young then it sees the bald eagle. If something is cold and it needs the dog then it eats the mouse. If something needs the bald eagle and it is red then it is young. If something eats the mouse then it needs the mouse. If something eats the bald eagle then it is red.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-276_Q18", "context": "Bob is kind. Bob is round. Charlie is rough. Erin is green. Erin is rough. Erin is round. Gary is cold. All rough people are green. If someone is green then they are white. If someone is white then they are not big. If someone is green and not big then they are kind. If someone is kind and not big then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-461_Q13", "context": "Anne is big. Anne is kind. Anne is quiet. Anne is rough. Anne is white. Fiona is big. Gary is big. Gary is cold. Gary is kind. Harry is kind. If something is kind then it is big. If something is white and kind then it is rough. If Harry is quiet and Harry is cold then Harry is big. If something is quiet then it is big. If something is cold and rough then it is quiet. All kind things are young. If Harry is kind and Harry is cold then Harry is white. If something is young and kind then it is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1421_Q11", "context": "Anne is cold. Anne is rough. Bob is cold. Bob is kind. Dave is big. Dave is red. Dave is smart. Harry is big. Harry is kind. Harry is smart. Big people are young. Red people are smart. If Anne is young and Anne is rough then Anne is smart. Young, cold people are red. Rough people are big. All kind people are rough. If Anne is kind and Anne is cold then Anne is smart. All young people are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-173_Q10", "context": "The cat chases the lion. The cat is not blue. The cat is round. The lion eats the cat. The lion is blue. The lion is round. The lion does not need the rabbit. The mouse eats the rabbit. The mouse does not need the cat. The rabbit chases the cat. The rabbit chases the mouse. The rabbit is not big. If something chases the rabbit then it needs the cat. If something eats the mouse then the mouse needs the cat. If something is blue then it chases the rabbit. If something chases the rabbit then the rabbit is blue. If something needs the cat and it is not big then it is kind. If the mouse eats the lion then the lion is not round. If something is kind and round then it does not eat the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not need the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-77_Q15", "context": "The bear is blue. The cat eats the cow. The cat is red. The cat is round. The cat does not need the cow. The cat does not need the dog. The cow is not round. The dog chases the bear. The dog chases the cat. The dog is round. If the bear is not green then the bear eats the cat. If the dog needs the cat then the dog chases the bear. If the cow needs the bear then the cow is green. If the dog chases the cow then the dog needs the bear. Red things are nice. If something is green then it needs the cow. If something is nice then it eats the bear. If something is nice and it eats the bear then the bear is red. If something eats the dog and it is not red then the dog does not need the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not need the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-68_Q7", "context": "The cat chases the rabbit. The cat likes the mouse. The dog is blue. The dog is not cold. The dog likes the cat. The dog likes the mouse. The mouse is cold. The mouse does not like the cat. The rabbit chases the mouse. The rabbit is nice. If someone chases the dog then the dog likes the cat. If someone is nice and they eat the mouse then the mouse chases the dog. If someone likes the mouse then they are blue. If someone eats the cat and they chase the rabbit then the rabbit likes the mouse. If the dog eats the rabbit and the rabbit likes the mouse then the dog likes the mouse. If the cat chases the rabbit then the cat chases the dog. If someone eats the rabbit then they like the rabbit. If someone is blue then they eat the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit likes the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-664_Q1", "context": "Anne is kind. Erin is kind. Erin is smart. Fiona is big. Fiona is red. Fiona is smart. Gary is big. Gary is blue. Gary is not red. Gary is young. Red people are young. If Fiona is smart then Fiona is not round. All round people are red. If someone is blue and round then they are not big. If Anne is kind then Anne is round. If Erin is kind then Erin is smart. All kind, young people are blue. If Fiona is smart then Fiona is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1208_Q5", "context": "Anne is cold. Anne is not green. Anne is not kind. Anne is quiet. Anne is round. Bob is kind. Bob is round. Charlie is cold. Charlie is quiet. Charlie is round. Erin is furry. If something is quiet then it is rough. Cold things are round. If something is green then it is quiet. All cold things are quiet. Green things are quiet. If something is kind and green then it is furry. Furry things are green. If Bob is kind then Bob is not rough. If something is rough and green then it is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-583_Q11", "context": "Bob is quiet. Bob is young. Charlie is quiet. Charlie is young. Fiona is nice. Fiona is quiet. Fiona is round. Fiona is white. Gary is green. Gary is nice. Gary is quiet. Gary is young. If someone is quiet and green then they are kind. Quiet people are white. All green, young people are nice. All green, white people are round. White people are nice. Quiet people are young. All green, white people are nice. If someone is kind and white then they are green. All nice, quiet people are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-178_Q18", "context": "Bob is big. Bob is quiet. Erin is white. Gary is big. Gary is red. Harry is green. Harry is smart. If someone is smart and big then they are white. All quiet, red people are smart. If someone is smart and white then they are green. Red, round people are quiet. If someone is big then they are round. If Erin is round and Erin is quiet then Erin is smart. If someone is red and green then they are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-40_Q3", "context": "The bald eagle is big. The bald eagle likes the cat. The bald eagle sees the squirrel. The cat chases the squirrel. The cat sees the squirrel. The squirrel likes the cat. The squirrel does not like the tiger. The tiger is big. The tiger is not young. The tiger sees the squirrel. If the tiger likes the bald eagle then the bald eagle sees the squirrel. If something likes the tiger and it does not chase the cat then the cat is not big. If something sees the cat then the cat is big. If something is big then it sees the bald eagle. If something sees the bald eagle then the bald eagle is young. Cold things are big. If something chases the tiger and it sees the cat then the tiger is big. If something is big then it chases the tiger. If something sees the bald eagle then it sees the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger chases the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-144_Q18", "context": "The bald eagle is big. The bald eagle is not green. The bald eagle likes the bear. The bald eagle likes the squirrel. The bear chases the lion. The bear is green. The bear visits the bald eagle. The bear visits the squirrel. The lion is not green. The lion likes the bear. The lion visits the squirrel. The squirrel chases the bald eagle. The squirrel is cold. The squirrel visits the bald eagle. If someone is cold then they are not young. All big people are not green. If the lion is big and the lion is green then the lion chases the bald eagle. If someone chases the bald eagle then they like the bear. If someone is round and they visit the bald eagle then the bald eagle likes the squirrel. If someone visits the lion then they like the bald eagle. If the lion visits the squirrel and the squirrel chases the bear then the bear chases the bald eagle. If someone visits the lion then they are cold. If someone likes the bear then they chase the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-144_Q12", "context": "The bald eagle is big. The bald eagle is not green. The bald eagle likes the bear. The bald eagle likes the squirrel. The bear chases the lion. The bear is green. The bear visits the bald eagle. The bear visits the squirrel. The lion is not green. The lion likes the bear. The lion visits the squirrel. The squirrel chases the bald eagle. The squirrel is cold. The squirrel visits the bald eagle. If someone is cold then they are not young. All big people are not green. If the lion is big and the lion is green then the lion chases the bald eagle. If someone chases the bald eagle then they like the bear. If someone is round and they visit the bald eagle then the bald eagle likes the squirrel. If someone visits the lion then they like the bald eagle. If the lion visits the squirrel and the squirrel chases the bear then the bear chases the bald eagle. If someone visits the lion then they are cold. If someone likes the bear then they chase the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not chase the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-718_Q2", "context": "Bob is round. Charlie is big. Charlie is furry. Charlie is green. Charlie is round. Charlie is white. Dave is big. Dave is quiet. Gary is green. Gary is quiet. All furry people are white. If someone is big then they are smart. All white, big people are round. If someone is quiet then they are smart. Smart people are big. All big, green people are furry. If someone is smart and round then they are quiet. Green people are smart. All smart, furry people are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1044_Q12", "context": "Bob is blue. Bob is white. Charlie is green. Charlie is quiet. Charlie is round. Charlie is white. Erin is blue. Erin is cold. Erin is green. Gary is big. Gary is blue. Gary is cold. Gary is green. Gary is quiet. Gary is round. Gary is white. White things are cold. If something is blue then it is white. If something is cold then it is round. If something is green then it is quiet. All round, big things are green. If Bob is round then Bob is big. All white, quiet things are big. If something is big then it is cold. If something is blue and quiet then it is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-268_Q3", "context": "Anne is green. Charlie is blue. Charlie is not green. Charlie is nice. Erin is young. Harry is kind. Harry is white. If something is blue then it is nice. If something is blue and not quiet then it is nice. If something is nice then it is kind. If Erin is green then Erin is white. All green things are blue. If something is young then it is white. If Harry is white then Harry is young. If Erin is nice and Erin is blue then Erin is young. All white things are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-689_Q2", "context": "Anne is big. Anne is rough. Anne is young. Bob is young. Charlie is cold. Charlie is green. Charlie is nice. Charlie is young. Gary is green. Gary is young. Big, quiet people are green. If someone is cold and young then they are nice. If Bob is rough and Bob is green then Bob is cold. Green people are nice. All nice people are quiet. Young people are cold. If someone is quiet and nice then they are rough. If someone is rough and young then they are cold. All rough, nice people are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-333_Q16", "context": "Bob is round. Erin is quiet. Erin is smart. Erin is not white. Fiona is green. Fiona is quiet. Fiona is smart. Gary is big. Gary is green. Gary is quiet. Gary is white. All quiet things are smart. Round things are quiet. All green, round things are white. If Fiona is not quiet then Fiona is white. Smart, white things are big. If something is nice and quiet then it is big. If something is quiet and not smart then it is not green. All quiet, smart things are green. If something is big then it is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-781_Q8", "context": "The bald eagle chases the rabbit. The bald eagle is red. The bald eagle is round. The bald eagle likes the squirrel. The lion chases the squirrel. The lion is round. The rabbit is green. The rabbit is nice. The rabbit likes the bald eagle. The rabbit sees the squirrel. The squirrel is round. The squirrel sees the bald eagle. If something likes the rabbit then the rabbit sees the lion. If something chases the squirrel and it likes the bald eagle then the squirrel is nice. If something is nice and it likes the squirrel then the squirrel chases the rabbit. If something likes the bald eagle and it sees the rabbit then it likes the squirrel. If something likes the squirrel and it likes the lion then the lion likes the bald eagle. If something is young then it sees the rabbit. Green things are round. All round things are young. If the squirrel is nice then the squirrel likes the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not see the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-694_Q8", "context": "Anne is young. Charlie is not red. Gary is not blue. Gary is kind. Gary is not rough. Gary is not young. Harry is green. If Gary is green then Gary is not blue. All young people are blue. If Harry is white and Harry is young then Harry is not green. All red people are green. Blue, young people are red. If someone is green then they are white. If someone is blue and white then they are kind. All red people are not rough. If someone is young and not white then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-566_Q22", "context": "The bald eagle chases the squirrel. The bald eagle eats the dog. The bear eats the bald eagle. The bear eats the dog. The dog chases the bald eagle. The dog chases the bear. The dog chases the squirrel. The dog eats the squirrel. The dog is big. The dog is blue. The dog is green. The squirrel is green. If someone likes the squirrel then they chase the dog. If someone eats the bald eagle then they are red. If someone is green and they eat the bear then they like the squirrel. If someone eats the dog then the dog eats the bald eagle. If someone eats the bear then the bear is big. If someone eats the squirrel and they chase the bear then the bear chases the bald eagle. If someone is red and green then they eat the bear. If someone likes the bear and they eat the bear then the bear eats the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-745_Q18", "context": "The bear is round. The bear likes the cow. The bear visits the lion. The cow is big. The cow is rough. The lion needs the bear. The mouse likes the lion. If someone visits the lion then they are round. If someone needs the bear then they need the lion. If someone needs the lion then they visit the lion. If someone visits the lion and the lion is round then they like the lion. If someone is rough then they need the lion. If someone likes the lion and they need the lion then the lion visits the mouse. If someone is rough then they visit the lion. If someone likes the lion and the lion is big then they are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse needs the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1003_Q15", "context": "Anne is big. Anne is blue. Anne is rough. Bob is cold. Bob is green. Bob is rough. Bob is white. Dave is blue. Dave is white. Harry is young. If Bob is big then Bob is white. Young people are white. Cold, young people are rough. If Anne is green and Anne is young then Anne is white. White, big people are blue. All blue people are green. If someone is young and white then they are big. Blue people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-178_Q11", "context": "Bob is big. Bob is quiet. Erin is white. Gary is big. Gary is red. Harry is green. Harry is smart. If someone is smart and big then they are white. All quiet, red people are smart. If someone is smart and white then they are green. Red, round people are quiet. If someone is big then they are round. If Erin is round and Erin is quiet then Erin is smart. If someone is red and green then they are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-419_Q24", "context": "The bear likes the cow. The bear does not see the cow. The cow chases the bear. The cow is cold. The cow sees the dog. The dog likes the bear. The dog does not like the tiger. The tiger is not big. The tiger does not see the bear. The tiger sees the cow. If something likes the dog then it is round. If something sees the cow then it is round. If the cow is young and the bear does not see the cow then the bear is young. If something chases the dog then it likes the tiger. If something chases the dog and it is cold then it is young. If the bear likes the cow then the cow chases the dog. If something sees the bear and the bear is young then the bear is rough. If something chases the bear and the bear is young then the bear chases the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger chases the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-843_Q11", "context": "Charlie is blue. Charlie is quiet. Dave is not blue. Dave is green. Dave is quiet. Dave is round. Dave is not white. Erin is blue. Erin is green. Erin is quiet. Gary is green. Gary is quiet. If someone is blue and not quiet then they are round. If someone is green then they are round. Blue, cold people are green. All blue people are cold. If Charlie is not quiet then Charlie is not round. If Gary is blue and Gary is round then Gary is not cold. All round people are not furry. If someone is cold and not furry then they are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1105_Q4", "context": "Bob is cold. Bob is furry. Bob is kind. Bob is not nice. Bob is white. Charlie is cold. Charlie is not furry. Charlie is kind. Charlie is red. Gary is kind. Gary is nice. Gary is red. Harry is cold. Harry is furry. Kind things are cold. If something is blue then it is kind. Red, furry things are kind. If something is white and nice then it is red. All cold things are red. All nice, cold things are red. If Harry is red and Harry is kind then Harry is blue. If something is red and blue then it is white. If something is blue and white then it is not nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1081_Q4", "context": "Anne is big. Anne is furry. Anne is rough. Charlie is round. Erin is kind. Erin is smart. Fiona is furry. Fiona is kind. Fiona is rough. Fiona is smart. White, big people are smart. Rough, big people are kind. If Erin is kind and Erin is smart then Erin is furry. If Charlie is big and Charlie is kind then Charlie is white. Furry people are big. Round people are rough. If someone is rough then they are big. All white people are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1176_Q18", "context": "Bob is not round. Charlie is furry. Charlie is nice. Charlie is smart. Erin is red. Fiona is furry. Fiona is young. All red people are not round. Red people are not blue. All young people are furry. If Erin is red and Erin is not round then Erin is nice. If someone is round and nice then they are not young. All smart people are young. Nice people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-305_Q11", "context": "Anne is quiet. Bob is not rough. Gary is big. Gary is kind. Gary is rough. Gary is young. Harry is young. All big people are furry. Young people are furry. All quiet, kind people are furry. If Harry is furry and Harry is quiet then Harry is round. Rough, kind people are quiet. Young, rough people are kind. All quiet, furry people are round. Furry people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-585_Q1", "context": "The cow is not rough. The lion is green. The lion needs the cow. The lion needs the rabbit. The rabbit is not rough. The squirrel chases the rabbit. The squirrel is not rough. If something needs the squirrel then it likes the cow. If something needs the cow then it needs the squirrel. If something is round and young then it does not need the squirrel. If something is round then it does not need the rabbit. If something likes the rabbit then it chases the lion. If something needs the lion then it chases the squirrel. If the squirrel likes the cow then the cow does not need the rabbit. If the squirrel likes the cow and the squirrel is not green then the squirrel needs the rabbit. If something needs the squirrel then the squirrel needs the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-111_Q2", "context": "Bob is big. Bob is blue. Bob is cold. Bob is white. Dave is cold. Dave is kind. Dave is nice. Gary is cold. Gary is kind. Harry is white. All white things are blue. All big, kind things are nice. If something is nice then it is big. If something is kind then it is nice. If something is rough then it is white. If something is big and nice then it is rough. All white, blue things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-582_Q12", "context": "The dog chases the squirrel. The lion chases the rabbit. The lion needs the dog. The lion visits the dog. The lion visits the rabbit. The rabbit is cold. The squirrel visits the dog. If something is rough and it chases the rabbit then the rabbit is rough. If something chases the squirrel then it visits the dog. If something chases the lion then it is rough. If something is green then it needs the dog. If something is green then it needs the lion. If something visits the dog then it is green. If something needs the lion then it chases the lion. All cold things are green. If the rabbit needs the lion and the lion is cold then the lion visits the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-251_Q10", "context": "The cat is nice. The cat needs the lion. The cat visits the lion. The cow is nice. The cow needs the cat. The lion is nice. The lion is red. The lion is young. The lion needs the cow. The lion needs the squirrel. The squirrel is young. If the cow needs the lion then the lion visits the squirrel. If something needs the squirrel then it visits the cat. If something needs the cow and it chases the squirrel then the cow is rough. If something chases the squirrel and it is young then the squirrel needs the cat. If something visits the cow then it is rough. If the squirrel visits the cat and the cat is red then the squirrel chases the cow. All nice things are big. If something is big then it visits the squirrel. If something visits the cat and the cat visits the squirrel then the squirrel is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-975_Q22", "context": "The lion is kind. The mouse chases the lion. The rabbit is blue. The rabbit is round. The tiger is blue. The tiger is cold. The tiger is young. If something sees the rabbit then the rabbit is cold. If something sees the tiger then the tiger is kind. If something is round then it is kind. If the rabbit sees the lion and the rabbit sees the mouse then the mouse sees the tiger. If something is kind then it sees the mouse. If something is blue and kind then it sees the rabbit. If something chases the lion and the lion chases the rabbit then the rabbit chases the mouse. If something is kind and it sees the mouse then it sees the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse chases the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-249_Q10", "context": "The cat chases the rabbit. The cat chases the tiger. The cat sees the mouse. The cat does not see the rabbit. The mouse chases the cat. The mouse does not like the cat. The rabbit likes the tiger. The tiger is nice. The tiger is young. The tiger likes the cat. All big things are blue. If the cat sees the tiger then the cat chases the tiger. If something likes the rabbit then the rabbit does not like the mouse. All blue things are young. If something is blue then it is young. If something chases the cat then it likes the mouse. If something is young then it likes the tiger. If something likes the mouse then the mouse is big. If something sees the mouse and the mouse is not blue then the mouse likes the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-481_Q23", "context": "The bald eagle needs the mouse. The bald eagle visits the mouse. The dog is young. The dog needs the mouse. The dog visits the mouse. The mouse is red. The mouse is rough. The mouse visits the bald eagle. The tiger is cold. The tiger needs the bald eagle. The tiger needs the dog. The tiger visits the dog. If the mouse visits the dog then the mouse visits the tiger. If something needs the tiger and the tiger is cold then it is green. If something is cold and it needs the bald eagle then the bald eagle visits the mouse. If something needs the mouse then it visits the bald eagle. If something is young then it needs the tiger. If something visits the dog and the dog is green then it is young.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-251_Q21", "context": "The cat is nice. The cat needs the lion. The cat visits the lion. The cow is nice. The cow needs the cat. The lion is nice. The lion is red. The lion is young. The lion needs the cow. The lion needs the squirrel. The squirrel is young. If the cow needs the lion then the lion visits the squirrel. If something needs the squirrel then it visits the cat. If something needs the cow and it chases the squirrel then the cow is rough. If something chases the squirrel and it is young then the squirrel needs the cat. If something visits the cow then it is rough. If the squirrel visits the cat and the cat is red then the squirrel chases the cow. All nice things are big. If something is big then it visits the squirrel. If something visits the cat and the cat visits the squirrel then the squirrel is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not need the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-347_Q1", "context": "Anne is big. Anne is kind. Charlie is big. Erin is big. Erin is blue. Erin is not kind. Erin is not young. Harry is big. Harry is nice. Harry is white. Harry is young. All kind, big things are blue. If something is young and kind then it is nice. Blue, cold things are nice. White things are cold. White, big things are cold. If Erin is blue and Erin is white then Erin is nice. All cold, nice things are young. All kind, blue things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-866_Q17", "context": "Anne is furry. Anne is rough. Anne is round. Anne is smart. Anne is white. Dave is furry. Erin is big. Erin is white. Gary is quiet. Gary is round. Gary is smart. Gary is white. Rough, furry things are smart. If something is rough and round then it is smart. If Dave is smart then Dave is white. If something is furry then it is rough. Round, rough things are smart. White, furry things are round. All white, big things are round. All rough, big things are smart. If something is round then it is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-731_Q5", "context": "The bald eagle eats the cat. The bald eagle needs the cow. The bald eagle visits the squirrel. The cat does not eat the squirrel. The cat is green. The cat needs the cow. The cow is young. The squirrel eats the cat. The squirrel is blue. The squirrel needs the bald eagle. The squirrel needs the cow. If someone needs the cow and they are not nice then they eat the squirrel. If someone eats the cow and the cow needs the bald eagle then they eat the squirrel. If someone needs the cat then they need the bald eagle. If someone eats the squirrel and they visit the squirrel then the squirrel eats the bald eagle. If someone needs the squirrel then the squirrel does not need the bald eagle. If someone needs the cat then the cat does not eat the cow. If someone needs the cat and they need the bald eagle then the bald eagle is young. If someone is young then they need the cat. If the squirrel does not eat the bald eagle then the squirrel visits the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow needs the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-31_Q12", "context": "The dog chases the squirrel. The lion eats the squirrel. The lion sees the dog. The squirrel chases the dog. The squirrel chases the lion. The squirrel eats the lion. The squirrel is green. The squirrel is rough. The squirrel sees the dog. The squirrel sees the lion. The tiger is rough. If something is blue then it chases the lion. If something chases the lion and it eats the squirrel then the squirrel sees the tiger. If the squirrel eats the lion and the squirrel is green then the lion sees the tiger. If something sees the tiger then it is blue. Rough things are big. If something chases the dog then it chases the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-785_Q10", "context": "The bald eagle is round. The bear needs the bald eagle. The cat eats the bear. The cat does not eat the lion. The cat is round. The lion needs the bear. The lion sees the bald eagle. If something is round then it sees the bald eagle. If something is red and not young then it needs the lion. If something sees the bald eagle then it needs the lion. If something needs the lion and it needs the bear then the bear is round. If the lion is round and the lion does not eat the cat then the cat eats the bald eagle. If something needs the lion and the lion sees the bald eagle then it is red.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not need the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-903_Q6", "context": "The bear is nice. The bear visits the tiger. The dog does not chase the bear. The dog sees the mouse. The mouse does not chase the bear. The mouse is nice. The mouse is round. The mouse is young. The mouse visits the bear. The tiger chases the bear. The tiger sees the mouse. If someone chases the mouse and they see the tiger then the tiger is round. If the dog sees the mouse then the dog visits the tiger. If someone chases the mouse then they see the bear. If someone is nice and cold then they chase the mouse. If someone visits the mouse and they see the mouse then the mouse visits the dog. If the mouse visits the dog then the dog does not visit the bear. If someone sees the bear then they visit the dog. All nice people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not chase the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-428_Q15", "context": "The cat is rough. The mouse likes the rabbit. The mouse sees the rabbit. The rabbit sees the squirrel. The squirrel eats the cat. The squirrel eats the rabbit. The squirrel is red. All red people are young. If the squirrel is green and the squirrel likes the rabbit then the rabbit eats the mouse. If someone sees the cat and they like the squirrel then the squirrel sees the cat. If someone is young then they see the mouse. If someone eats the rabbit and they see the mouse then the mouse is red. If someone is cold then they eat the squirrel. If someone sees the rabbit and the rabbit is green then they are young. If someone likes the squirrel and they are red then they are young. If someone sees the squirrel and the squirrel sees the mouse then they like the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not eat the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-177_Q19", "context": "Anne is furry. Anne is smart. Bob is kind. Bob is nice. Charlie is big. Charlie is green. Charlie is nice. Charlie is young. Gary is furry. Gary is kind. Gary is nice. Gary is young. If something is young then it is nice. If Anne is green then Anne is big. Smart things are nice. All smart, kind things are green. Young, big things are kind. Kind, smart things are furry. If something is nice and big then it is young. All nice things are kind. If Anne is young and Anne is big then Anne is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-829_Q6", "context": "The dog does not eat the rabbit. The mouse eats the tiger. The mouse is green. The rabbit does not chase the tiger. The rabbit eats the dog. The rabbit is young. The tiger is green. If something visits the mouse then the mouse is big. If something eats the tiger then the tiger visits the mouse. If the dog is young and the dog does not visit the mouse then the mouse does not visit the rabbit. If something is green and it chases the rabbit then the rabbit does not eat the mouse. If something is green then it visits the dog. If something visits the rabbit and the rabbit is young then it is round. If something is round and it visits the dog then it chases the tiger. If something is big then it visits the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-602_Q16", "context": "The cat is red. The cat is not rough. The cat does not like the squirrel. The cat does not see the squirrel. The dog is not young. The dog needs the cat. The mouse is round. The mouse likes the cat. The mouse needs the cat. The mouse sees the cat. The squirrel is young. The squirrel needs the mouse. If something sees the dog then it is red. If something is red and it needs the squirrel then the squirrel likes the mouse. If something is young and it sees the dog then the dog needs the mouse. If something needs the mouse then it is rough. If the cat likes the mouse then the mouse sees the squirrel. If something needs the cat and it needs the mouse then it likes the cat. If something is rough then it sees the dog. If something is rough and not red then it likes the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel likes the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-189_Q12", "context": "Dave is blue. Dave is kind. Dave is rough. Erin is blue. Erin is furry. Erin is quiet. Erin is smart. Gary is blue. Gary is quiet. Harry is big. All blue things are rough. If something is kind and furry then it is big. If something is kind and big then it is rough. All quiet, kind things are rough. All kind things are furry. If something is big then it is quiet. Quiet things are blue. Rough things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1251_Q1", "context": "Erin is big. Erin is green. Erin is kind. Erin is quiet. Erin is red. Erin is smart. Fiona is big. Gary is rough. Harry is quiet. Harry is smart. All smart people are kind. If Harry is rough and Harry is red then Harry is quiet. If someone is green then they are smart. All kind people are quiet. If someone is rough and big then they are green. Rough people are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-585_Q24", "context": "The cow is not rough. The lion is green. The lion needs the cow. The lion needs the rabbit. The rabbit is not rough. The squirrel chases the rabbit. The squirrel is not rough. If something needs the squirrel then it likes the cow. If something needs the cow then it needs the squirrel. If something is round and young then it does not need the squirrel. If something is round then it does not need the rabbit. If something likes the rabbit then it chases the lion. If something needs the lion then it chases the squirrel. If the squirrel likes the cow then the cow does not need the rabbit. If the squirrel likes the cow and the squirrel is not green then the squirrel needs the rabbit. If something needs the squirrel then the squirrel needs the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow likes the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-78_Q12", "context": "The lion eats the mouse. The lion is green. The mouse is kind. The squirrel is green. The squirrel is round. The squirrel likes the lion. The squirrel visits the mouse. The squirrel visits the tiger. The tiger is kind. The tiger is nice. If someone visits the mouse then the mouse is nice. If someone eats the mouse and they visit the tiger then the mouse is green. Big, nice people are round. If the mouse is green then the mouse is big. If the lion is nice then the lion does not visit the tiger. If someone is round and big then they like the lion. If someone is green then they visit the tiger. If someone eats the tiger and they are not nice then the tiger likes the lion. If someone likes the tiger and they do not eat the squirrel then the tiger likes the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not like the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-739_Q12", "context": "The bald eagle eats the dog. The bald eagle sees the dog. The dog is cold. The dog likes the squirrel. The dog sees the rabbit. The rabbit eats the dog. The rabbit eats the squirrel. The rabbit likes the dog. The rabbit sees the squirrel. The squirrel likes the bald eagle. If someone is cold and they like the bald eagle then they eat the rabbit. If someone likes the dog and they see the squirrel then the dog likes the bald eagle. If the bald eagle sees the dog and the bald eagle is cold then the bald eagle likes the dog. If someone likes the rabbit then they are young. If someone likes the dog and the dog likes the squirrel then they like the bald eagle. If the bald eagle is red and the bald eagle likes the squirrel then the squirrel eats the rabbit. If the dog likes the bald eagle and the bald eagle sees the dog then the bald eagle is cold. If someone sees the bald eagle then the bald eagle is young.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not eat the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-726_Q6", "context": "The bear visits the tiger. The cat is kind. The mouse is green. The mouse is kind. The mouse sees the tiger. The tiger is rough. The tiger visits the cat. If something visits the bear then it sees the bear. If something sees the bear then the bear likes the cat. If something visits the cat then the cat visits the bear. If something sees the bear and the bear likes the cat then it is cold. Cold things are rough. If something is green and it likes the tiger then the tiger visits the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not see the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-347_Q14", "context": "Anne is big. Anne is kind. Charlie is big. Erin is big. Erin is blue. Erin is not kind. Erin is not young. Harry is big. Harry is nice. Harry is white. Harry is young. All kind, big things are blue. If something is young and kind then it is nice. Blue, cold things are nice. White things are cold. White, big things are cold. If Erin is blue and Erin is white then Erin is nice. All cold, nice things are young. All kind, blue things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-264_Q5", "context": "The bald eagle likes the cat. The bald eagle visits the rabbit. The cat needs the bald eagle. The cat needs the cow. The cat visits the rabbit. The cow likes the bald eagle. The cow likes the rabbit. The cow visits the bald eagle. The rabbit is green. The rabbit is red. The rabbit needs the cat. If someone needs the bald eagle and they are red then they visit the cow. If someone needs the bald eagle then the bald eagle needs the rabbit. If someone needs the cat then they like the bald eagle. If someone needs the bald eagle then they are red. If someone is green then they need the bald eagle. If someone likes the bald eagle and they need the bald eagle then the bald eagle visits the rabbit. If the cat likes the bald eagle then the bald eagle visits the cow. If someone visits the cow then they need the cat. If the cow is rough and the cow is nice then the cow is red.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit visits the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1286_Q7", "context": "Anne is green. Fiona is cold. Fiona is white. Fiona is young. Gary is green. Harry is cold. Harry is rough. All young, cold things are white. If something is cold then it is green. Young things are white. White things are blue. If something is blue then it is red. If something is green then it is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-355_Q4", "context": "The cow does not chase the mouse. The cow chases the squirrel. The cow eats the mouse. The cow likes the squirrel. The lion chases the squirrel. The lion eats the cow. The lion eats the squirrel. The lion is cold. The lion likes the cow. The mouse eats the cow. The mouse is not nice. The squirrel chases the lion. If someone is big then they chase the lion. If someone chases the lion then they eat the lion. If someone is nice then they do not eat the lion. If the lion is cold and the lion is not rough then the lion is nice. If the cow chases the lion and the cow likes the lion then the cow eats the lion. If someone eats the lion then the lion is big. If someone is big and they chase the mouse then the mouse does not chase the cow. If someone is rough then they like the lion. If someone eats the lion then they like the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not eat the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-226_Q19", "context": "The bear is not big. The bear needs the squirrel. The dog is nice. The dog sees the tiger. The squirrel sees the bear. The squirrel sees the tiger. The tiger eats the dog. The tiger is green. The tiger needs the bear. The tiger sees the squirrel. If someone eats the dog then the dog needs the bear. If someone eats the bear then they eat the tiger. If someone needs the tiger and they see the dog then they eat the tiger. If someone is nice and they need the bear then they eat the bear. If someone sees the dog then they eat the squirrel. If someone needs the tiger and the tiger eats the bear then they eat the squirrel. If someone eats the tiger then the tiger eats the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not see the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-203_Q7", "context": "Bob is nice. Bob is round. Bob is young. Dave is round. Erin is big. Erin is red. Gary is young. All round things are nice. All nice, big things are white. If something is big and white then it is round. Young things are nice. Big, red things are young. All nice things are quiet. All quiet things are big. Young, quiet things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-586_Q7", "context": "Erin is smart. Fiona is quiet. Gary is blue. Gary is kind. Gary is quiet. Gary is red. Harry is smart. If Harry is smart then Harry is kind. Quiet, smart things are blue. If something is green and smart then it is not blue. Kind things are quiet. All blue, green things are smart. Red things are furry. If Harry is smart and Harry is blue then Harry is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-75_Q5", "context": "The bald eagle chases the cow. The bald eagle chases the dog. The cow needs the bald eagle. The cow sees the lion. The dog chases the cow. The dog is green. The lion is rough. If someone is blue and rough then they see the lion. If someone needs the cow and they do not need the lion then they chase the cow. If someone sees the cow then the cow is kind. If someone is rough then they chase the bald eagle. If someone is blue then they do not chase the bald eagle. If someone is kind then they chase the lion. If someone chases the bald eagle and the bald eagle chases the dog then the bald eagle sees the dog. If the bald eagle sees the dog then the bald eagle sees the cow. If someone needs the cow then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle sees the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-649_Q12", "context": "The bald eagle is nice. The bald eagle is rough. The bald eagle needs the mouse. The bald eagle needs the squirrel. The mouse is kind. The mouse is young. The mouse likes the tiger. The mouse sees the bald eagle. The squirrel is kind. The squirrel is nice. The squirrel needs the bald eagle. The tiger is kind. If someone likes the bald eagle then they are rough. If someone is blue and they see the tiger then the tiger needs the squirrel. If the mouse needs the bald eagle and the bald eagle likes the mouse then the bald eagle is rough. If the mouse needs the squirrel then the squirrel likes the mouse. If someone is rough then they see the mouse. If someone needs the tiger and the tiger is kind then they like the bald eagle. If someone sees the mouse then they need the squirrel. If someone needs the squirrel and the squirrel is nice then the squirrel needs the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not need the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-818_Q16", "context": "Charlie is young. Erin is blue. Erin is not kind. Fiona is blue. Fiona is white. Gary is blue. Gary is kind. Furry, nice things are white. If something is young and blue then it is smart. All blue, smart things are furry. All smart, white things are furry. Young things are nice. If Fiona is smart and Fiona is young then Fiona is not furry. If Erin is kind then Erin is furry. If Gary is smart and Gary is white then Gary is not kind. If something is nice then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-582_Q5", "context": "The dog chases the squirrel. The lion chases the rabbit. The lion needs the dog. The lion visits the dog. The lion visits the rabbit. The rabbit is cold. The squirrel visits the dog. If something is rough and it chases the rabbit then the rabbit is rough. If something chases the squirrel then it visits the dog. If something chases the lion then it is rough. If something is green then it needs the dog. If something is green then it needs the lion. If something visits the dog then it is green. If something needs the lion then it chases the lion. All cold things are green. If the rabbit needs the lion and the lion is cold then the lion visits the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-861_Q9", "context": "The cat needs the dog. The dog is kind. The dog needs the rabbit. The rabbit eats the dog. The rabbit is green. The tiger chases the rabbit. The tiger is big. If something is nice and it eats the tiger then it needs the dog. If something chases the cat then it eats the cat. If the dog chases the tiger then the tiger needs the rabbit. If the rabbit chases the tiger then the rabbit chases the cat. If something chases the cat then the cat is kind. If something eats the dog then it chases the cat. If something is rough then it eats the dog. If something is kind then it is rough. If something eats the rabbit and the rabbit is big then it is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat eats the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-890_Q2", "context": "The bald eagle needs the cow. The bald eagle needs the mouse. The cow is round. The mouse does not visit the rabbit. The rabbit is green. The rabbit needs the bald eagle. The rabbit visits the bald eagle. If someone visits the mouse then they like the cow. If someone likes the mouse and they are blue then the mouse needs the rabbit. If someone needs the bald eagle then the bald eagle likes the rabbit. If someone needs the bald eagle then the bald eagle likes the mouse. If someone likes the cow then they are blue. If someone is red and they visit the cow then the cow is green. If someone visits the mouse then they do not visit the bald eagle. If someone is round and they need the bald eagle then the bald eagle is round. If someone visits the bald eagle and the bald eagle likes the rabbit then the bald eagle visits the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not visit the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-680_Q14", "context": "Bob is kind. Charlie is cold. Charlie is kind. Charlie is nice. Charlie is quiet. Charlie is smart. Fiona is quiet. Fiona is smart. Gary is nice. Gary is quiet. Gary is white. If Fiona is cold then Fiona is nice. All nice things are white. If something is white then it is nice. Nice, white things are quiet. White, smart things are rough. Smart, kind things are rough. All cold things are white. If Bob is kind then Bob is white. Quiet, kind things are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-327_Q1", "context": "Anne is cold. Anne is furry. Anne is rough. Anne is smart. Anne is white. Bob is nice. Bob is rough. Erin is cold. Erin is furry. Erin is nice. Erin is rough. Erin is smart. Erin is white. Erin is young. Fiona is cold. Fiona is furry. All smart things are cold. If Bob is young and Bob is cold then Bob is furry. Young things are cold. If Fiona is rough and Fiona is cold then Fiona is smart. Cold, furry things are white. All rough, nice things are young. If something is white and furry then it is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-785_Q5", "context": "Anne is rough. Anne is young. Bob is nice. Bob is red. Bob is young. Charlie is cold. Charlie is quiet. Charlie is red. Charlie is rough. Charlie is smart. Fiona is cold. Fiona is quiet. Cold people are young. Rough, young people are nice. Cold, red people are smart. Red people are smart. If someone is smart and quiet then they are cold. All rough, nice people are red. All red, quiet people are cold. All smart people are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-718_Q3", "context": "Bob is round. Charlie is big. Charlie is furry. Charlie is green. Charlie is round. Charlie is white. Dave is big. Dave is quiet. Gary is green. Gary is quiet. All furry people are white. If someone is big then they are smart. All white, big people are round. If someone is quiet then they are smart. Smart people are big. All big, green people are furry. If someone is smart and round then they are quiet. Green people are smart. All smart, furry people are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-14_Q9", "context": "The cat needs the mouse. The cat visits the lion. The lion is cold. The lion is red. The lion is round. The lion likes the squirrel. The lion needs the squirrel. The lion visits the squirrel. The mouse is cold. The mouse needs the lion. The mouse visits the lion. The squirrel likes the lion. If something needs the mouse and it needs the lion then the lion needs the mouse. If something visits the lion then it needs the cat. If the mouse visits the squirrel then the squirrel likes the cat. If something is rough then it is cold. If the squirrel is cold then the squirrel visits the cat. If something visits the cat then the cat likes the mouse. If something visits the squirrel then the squirrel is rough. If something likes the mouse then it does not need the squirrel. If something is red and it does not need the squirrel then it visits the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat likes the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-515_Q4", "context": "Bob is red. Charlie is nice. Charlie is smart. Dave is cold. Dave is smart. Fiona is big. Fiona is red. All green people are rough. Red, smart people are green. If Bob is green and Bob is rough then Bob is red. If someone is rough then they are big. If someone is smart and big then they are cold. If someone is green and big then they are nice. All smart, nice people are cold. All nice, rough people are big. If Dave is cold then Dave is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-301_Q21", "context": "The cat eats the dog. The cat is young. The cat needs the rabbit. The dog is young. The dog needs the rabbit. The lion is green. The lion needs the cat. The rabbit chases the cat. The rabbit chases the dog. The rabbit eats the cat. The rabbit needs the cat. The rabbit needs the lion. All green things are red. If something is red and young then it eats the lion. If something eats the cat then the cat is green. If something is blue and it eats the cat then the cat chases the dog. If something eats the rabbit and it needs the lion then the rabbit is red. If something eats the lion then the lion is young. If something is big then it eats the cat. If something eats the rabbit then the rabbit eats the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not need the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-992_Q11", "context": "The bear is nice. The bear likes the cat. The bear sees the dog. The cat eats the bear. The cat is cold. The cat sees the bear. The dog eats the bear. The dog eats the lion. The dog is blue. The dog sees the cat. The lion eats the cat. The lion is cold. The lion likes the bear. The lion likes the cat. If someone is big then they eat the dog. If someone is cold then they are nice. If someone is blue and they see the bear then they see the dog. If someone eats the dog then the dog is nice. If someone is blue and they see the dog then they are big. If someone eats the bear and they are nice then they are blue. If someone eats the bear and they see the dog then the dog is big.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat eats the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-532_Q7", "context": "Anne is furry. Anne is rough. Bob is cold. Bob is green. Bob is red. Gary is cold. Gary is quiet. Gary is red. Harry is not cold. Harry is red. Red things are not kind. If something is cold and not furry then it is not kind. Green, rough things are quiet. If something is furry and cold then it is quiet. If Bob is furry then Bob is green. Rough things are green. If something is kind and not furry then it is green. All quiet things are cold. Cold things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-650_Q17", "context": "The bald eagle chases the squirrel. The cat eats the squirrel. The cat is rough. The cat is young. The cat does not see the bald eagle. The squirrel is blue. The tiger chases the squirrel. If the tiger eats the bald eagle then the tiger chases the bald eagle. If something chases the cat then the cat eats the bald eagle. If the cat sees the squirrel and the cat is not rough then the squirrel is big. If something sees the bald eagle and it does not chase the cat then the cat chases the bald eagle. If something eats the tiger then the tiger is young. If something chases the squirrel then it eats the tiger. If something eats the squirrel then it eats the bald eagle. If the squirrel sees the bald eagle and the cat does not chase the squirrel then the cat does not eat the squirrel. If something is young then it eats the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not eat the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-973_Q9", "context": "Charlie is young. Fiona is blue. Gary is blue. Gary is white. Harry is blue. Harry is round. Harry is smart. If Charlie is round and Charlie is quiet then Charlie is not young. If something is quiet then it is smart. All blue things are young. Big, blue things are quiet. Young, white things are round. If Fiona is big and Fiona is not white then Fiona is blue. If Charlie is big and Charlie is young then Charlie is not smart. Round things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-305_Q10", "context": "Anne is quiet. Bob is not rough. Gary is big. Gary is kind. Gary is rough. Gary is young. Harry is young. All big people are furry. Young people are furry. All quiet, kind people are furry. If Harry is furry and Harry is quiet then Harry is round. Rough, kind people are quiet. Young, rough people are kind. All quiet, furry people are round. Furry people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-709_Q11", "context": "The bald eagle is green. The bald eagle is rough. The bald eagle is young. The bald eagle needs the squirrel. The bald eagle sees the squirrel. The cat is round. The cat needs the bald eagle. The cat needs the dog. The cat visits the bald eagle. The dog needs the bald eagle. The dog sees the bald eagle. The dog visits the cat. The squirrel needs the cat. The squirrel visits the bald eagle. If something sees the dog then it sees the cat. If something needs the dog and it is round then it needs the cat. If something visits the squirrel then the squirrel visits the dog. If something is nice then it sees the dog. If something needs the cat then it is nice. If something sees the cat then it is green. If something needs the cat then it is rough. If something visits the squirrel and the squirrel visits the dog then the squirrel visits the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-399_Q8", "context": "Bob is quiet. Bob is smart. Charlie is kind. Charlie is smart. Charlie is white. Erin is blue. Harry is green. White, green things are smart. Smart, quiet things are white. All quiet, kind things are white. If Erin is kind and Erin is blue then Erin is white. All kind things are quiet. White things are quiet. Green things are kind. All white, smart things are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-985_Q4", "context": "Anne is blue. Anne is rough. Anne is young. Bob is blue. Bob is green. Erin is blue. Erin is green. Erin is rough. Gary is green. Gary is white. All young things are white. If Anne is green then Anne is young. If something is cold then it is young. All blue, rough things are red. All blue things are cold. All young, rough things are white. If something is young and red then it is green. All white, young things are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-779_Q12", "context": "Bob is green. Charlie is nice. Charlie is smart. Charlie is white. Erin is nice. Harry is nice. Harry is white. If Charlie is green then Charlie is blue. All nice people are cold. All cold people are blue. Rough people are green. If someone is blue then they are green. Blue, green people are white. If Bob is smart and Bob is blue then Bob is not green. If Charlie is white then Charlie is nice. All white people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-116_Q12", "context": "The cow is young. The cow sees the lion. The dog likes the cow. The dog likes the rabbit. The dog sees the rabbit. The lion is young. The lion sees the cow. The lion sees the dog. The lion sees the rabbit. The rabbit is round. The rabbit likes the cow. If someone visits the rabbit then the rabbit likes the lion. If someone likes the rabbit and the rabbit is red then the rabbit is big. If someone likes the lion and they see the rabbit then the lion likes the rabbit. If someone is young then they like the rabbit. If someone is young then they see the lion. If the lion is big then the lion visits the dog. If the rabbit likes the lion then the rabbit is young. If someone is young and they like the rabbit then they visit the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not see the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-115_Q11", "context": "The bald eagle is blue. The bald eagle is red. The bald eagle likes the lion. The bald eagle needs the bear. The bald eagle needs the dog. The bear is not blue. The bear is nice. The bear needs the dog. The dog chases the bald eagle. The dog is red. The dog does not need the bear. The lion does not like the bear. If something likes the lion and it is not red then it chases the lion. If something is red and it needs the bald eagle then the bald eagle needs the lion. If something is round then it does not like the dog. If the bald eagle needs the dog then the dog is round. If something likes the dog then it likes the bald eagle. If something chases the lion and the lion likes the dog then the dog does not like the lion. If the bear likes the lion then the lion likes the dog. If something likes the bear then the bear likes the lion. If something is round then it likes the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion likes the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-314_Q13", "context": "The bear chases the cow. The bear eats the squirrel. The bear is cold. The bear visits the mouse. The bear visits the squirrel. The cow eats the mouse. The cow is cold. The cow visits the bear. The cow visits the squirrel. The mouse chases the cow. The squirrel eats the bear. If something eats the cow then the cow chases the squirrel. If something eats the squirrel and the squirrel eats the mouse then the mouse chases the cow. If something eats the mouse then it visits the cow. If something eats the mouse then it chases the bear. If something visits the bear and it visits the mouse then the bear is blue. If something eats the bear then the bear is cold. If something is blue and it eats the squirrel then it eats the cow. If the mouse chases the cow and the cow chases the squirrel then the mouse visits the bear. If something chases the bear then the bear is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not chase the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1095_Q14", "context": "Bob is blue. Bob is cold. Bob is green. Bob is nice. Bob is red. Bob is round. Bob is white. Charlie is cold. Charlie is green. Charlie is round. Gary is blue. Gary is cold. Gary is green. Gary is nice. Gary is red. Harry is round. If Harry is round then Harry is nice. If something is nice then it is green. All white, round things are red. White, red things are cold. All cold things are blue. All nice things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-412_Q9", "context": "Dave is furry. Dave is green. Dave is quiet. Dave is red. Fiona is blue. Fiona is furry. Fiona is green. Fiona is quiet. Fiona is red. Gary is blue. Gary is nice. Gary is quiet. Gary is red. Gary is smart. Harry is blue. Harry is smart. If something is blue and furry then it is quiet. If Dave is furry then Dave is nice. If something is furry then it is blue. Quiet things are red. All furry, green things are quiet. If something is red then it is green. All nice things are furry. All smart things are nice. Red things are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-414_Q2", "context": "Charlie is nice. Charlie is quiet. Charlie is white. Charlie is young. Dave is not furry. Gary is quiet. Harry is furry. If something is nice and cold then it is quiet. If something is cold then it is young. Quiet, furry things are white. All furry things are cold. If something is young then it is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1169_Q1", "context": "Anne is green. Anne is rough. Anne is young. Dave is cold. Dave is nice. Dave is rough. Fiona is kind. Harry is green. Harry is kind. Harry is quiet. Harry is young. Kind, quiet things are green. If Dave is kind then Dave is quiet. All kind things are young. All rough, kind things are quiet. If Anne is cold and Anne is kind then Anne is green. If something is young then it is rough. If something is green and quiet then it is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-224_Q4", "context": "The dog chases the lion. The dog is nice. The lion does not eat the tiger. The lion is not big. The lion visits the tiger. The mouse does not chase the tiger. The mouse is nice. The tiger chases the lion. The tiger eats the dog. The tiger does not eat the mouse. The tiger visits the lion. If something visits the dog and it is kind then it visits the mouse. If something chases the dog then it is not red. If something chases the lion and it visits the dog then it chases the dog. If something chases the lion then it is big. If something eats the lion then it is not cold. If something is big then it visits the dog. If something visits the mouse then the mouse is red. If the tiger visits the dog and the dog is not big then the dog chases the mouse. If something visits the tiger and the tiger is not red then it is not nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-317_Q13", "context": "The cow chases the squirrel. The cow is young. The cow sees the squirrel. The dog is round. The dog likes the rabbit. The dog likes the squirrel. The dog sees the rabbit. The rabbit chases the cow. The rabbit does not chase the dog. The squirrel chases the rabbit. The squirrel is young. The squirrel likes the cow. If someone chases the cow then the cow is big. If someone likes the rabbit and they do not see the squirrel then they are big. If someone is big then they like the rabbit. If someone is young then they do not see the dog. If someone is blue then they chase the cow. If someone likes the rabbit then they like the cow. If someone likes the cow then they see the cow. If someone sees the cow and they chase the squirrel then they see the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not see the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-963_Q9", "context": "Anne is kind. Anne is round. Dave is blue. Dave is cold. Dave is furry. Dave is green. Dave is quiet. Erin is green. Fiona is furry. Fiona is round. If Fiona is quiet and Fiona is kind then Fiona is green. All green people are blue. Quiet, round people are cold. Kind people are green. If someone is quiet then they are blue. If someone is cold then they are furry. All blue, kind people are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-266_Q24", "context": "The bald eagle eats the cow. The bald eagle does not eat the dog. The bald eagle is rough. The cow is round. The cow sees the bald eagle. The cow does not see the dog. The cow visits the bald eagle. The cow visits the lion. The dog is rough. The lion is young. The lion does not see the bald eagle. The lion sees the cow. If someone is green and they eat the bald eagle then the bald eagle is not rough. If someone is big and they do not see the bald eagle then the bald eagle is rough. If someone is big then they visit the dog. If someone eats the lion and they are big then the lion eats the dog. If someone visits the dog then the dog eats the cow. If someone is rough and they eat the cow then they are young. If the lion eats the cow then the lion visits the bald eagle. If someone is big and they see the lion then they are green. If someone is young then they are big.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-949_Q24", "context": "The bear is green. The bear likes the cat. The bear likes the dog. The bear visits the dog. The cat is young. The cat sees the bear. The cat sees the dog. The cat visits the bear. The cat visits the mouse. The dog is round. The dog likes the bear. The dog likes the mouse. The dog visits the mouse. The mouse is big. The mouse is cold. The mouse is round. If something visits the mouse and the mouse visits the dog then it is cold. If something likes the cat then it visits the dog. If something is cold then it likes the cat. If something is green then it sees the dog. If something likes the mouse then it sees the cat. If something is green and cold then it likes the cat. If something is big and it visits the bear then the bear is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-370_Q2", "context": "Anne is kind. Anne is nice. Anne is quiet. Anne is round. Erin is cold. Erin is nice. Erin is rough. Erin is smart. Fiona is kind. Fiona is nice. Harry is kind. Harry is nice. Harry is quiet. Harry is rough. Harry is round. Harry is smart. If someone is rough then they are cold. If someone is quiet and nice then they are round. If Harry is cold then Harry is rough. Rough people are quiet. Quiet people are round. Kind, nice people are quiet. If someone is round then they are rough. All cold people are nice. All kind, cold people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-1036_Q11", "context": "The bear eats the squirrel. The bear is cold. The bear is rough. The bear visits the lion. The cat eats the lion. The lion likes the cat. The lion visits the bear. The squirrel eats the lion. The squirrel is cold. The squirrel is rough. The squirrel likes the bear. The squirrel visits the lion. Red people are green. If someone eats the lion then the lion is red. If someone is green and they like the lion then they eat the bear. If someone visits the bear then the bear likes the lion. If someone likes the squirrel and they like the lion then they visit the lion. If someone is green then they eat the squirrel. If someone likes the lion then they visit the bear. If someone visits the lion and the lion is green then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel eats the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-301_Q16", "context": "Bob is cold. Bob is kind. Bob is red. Bob is smart. Bob is young. Fiona is blue. Gary is blue. Gary is kind. Harry is kind. Harry is young. All red people are blue. All blue people are smart. All young people are cold. Cold people are red. If someone is kind and smart then they are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-995_Q6", "context": "The bear is blue. The bear is young. The cow chases the mouse. The cow eats the mouse. The cow does not visit the rabbit. The mouse is not round. The rabbit chases the bear. If something is young and blue then it visits the mouse. If something chases the rabbit and the rabbit does not visit the bear then it does not visit the rabbit. If something chases the rabbit then it visits the rabbit. If something is round then it chases the rabbit. If something chases the rabbit then the rabbit is young. If something chases the bear then the bear eats the rabbit. If something visits the cow then the cow eats the bear. If something eats the bear then the bear is round. If the bear visits the mouse then the bear visits the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not visit the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-683_Q4", "context": "The bear chases the cat. The bear chases the cow. The bear likes the cat. The bear likes the lion. The bear visits the cat. The cat is red. The cat visits the bear. The cat visits the cow. The cow visits the lion. The lion chases the cat. The lion is nice. If something likes the bear and it visits the lion then it is green. If something likes the lion and the lion is nice then it chases the lion. If something is green and it chases the cow then the cow is cold. Cold things are green. If something chases the lion and the lion chases the cat then it is cold. If the lion likes the cat and the cat chases the lion then the lion is nice. If something likes the cat then it likes the lion. If something likes the cat then it likes the lion. If something chases the lion then the lion visits the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not chase the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-766_Q5", "context": "Bob is big. Bob is round. Charlie is not cold. Charlie is green. Fiona is big. Fiona is green. Fiona is nice. Fiona is round. Harry is cold. Harry is nice. If someone is rough then they are not nice. All green people are nice. If someone is cold then they are nice. All big people are round. All green, blue people are big. If someone is round then they are not rough. All nice people are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-829_Q7", "context": "The cow eats the lion. The cow eats the mouse. The cow is green. The cow visits the lion. The cow visits the mouse. The lion eats the cow. The lion eats the rabbit. The lion is big. The lion is green. The lion is round. The mouse eats the lion. The mouse is big. The mouse visits the cow. The rabbit is round. The rabbit needs the cow. The rabbit visits the lion. If someone eats the lion and the lion is green then they are blue. If someone visits the cow and they eat the rabbit then the rabbit is cold. If someone needs the mouse and the mouse needs the rabbit then the mouse needs the cow. If someone visits the cow and they are big then the cow visits the mouse. If someone is green and they need the rabbit then they eat the rabbit. If someone is blue then they eat the rabbit. All cold people are blue. If someone visits the cow then the cow is green. If someone eats the lion then they are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-960_Q10", "context": "The dog is round. The dog needs the tiger. The lion chases the dog. The lion chases the mouse. The lion needs the dog. The lion sees the dog. The mouse is red. The mouse sees the tiger. The tiger is blue. The tiger is red. The tiger is round. The tiger sees the lion. If something chases the mouse and it is round then the mouse is kind. If the mouse sees the tiger and the tiger is red then the tiger is kind. If something chases the mouse then it sees the mouse. If something chases the lion and the lion sees the tiger then the tiger chases the lion. If something is round then it needs the tiger. If something chases the dog then it is round. If something is round then it sees the lion. If something is kind then it chases the dog. If something needs the lion then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-305_Q3", "context": "Bob is big. Bob is blue. Bob is cold. Bob is furry. Bob is green. Bob is round. Dave is round. Erin is red. Fiona is cold. Fiona is green. All green things are blue. If something is round and cold then it is red. Blue, big things are round. If something is furry and blue then it is round. All red, green things are furry. If something is round then it is red. If Bob is furry and Bob is red then Bob is round. Red things are big. All blue things are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-882_Q2", "context": "Bob is nice. Dave is big. Erin is furry. Erin is nice. Erin is rough. Harry is cold. Harry is white. All rough people are furry. If someone is rough and cold then they are white. If someone is nice then they are big. Furry, nice people are big. All big people are red. All nice, big people are rough. All furry, big people are cold. All cold, white people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1_Q1", "context": "Anne is furry. Charlie is round. Charlie is smart. Charlie is white. Charlie is young. Erin is kind. Erin is nice. Erin is round. Erin is smart. Erin is white. Erin is young. Harry is furry. Harry is nice. Harry is round. Harry is smart. Harry is young. All round people are nice. Nice, furry people are kind. All kind, white people are round. All white, furry people are kind. If someone is round and white then they are kind. Nice people are smart. If Anne is nice and Anne is round then Anne is kind. If someone is furry then they are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-327_Q14", "context": "Anne is cold. Anne is furry. Anne is rough. Anne is smart. Anne is white. Bob is nice. Bob is rough. Erin is cold. Erin is furry. Erin is nice. Erin is rough. Erin is smart. Erin is white. Erin is young. Fiona is cold. Fiona is furry. All smart things are cold. If Bob is young and Bob is cold then Bob is furry. Young things are cold. If Fiona is rough and Fiona is cold then Fiona is smart. Cold, furry things are white. All rough, nice things are young. If something is white and furry then it is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1030_Q23", "context": "Dave is quiet. Fiona is big. Fiona is furry. Gary is round. Gary is young. Harry is quiet. Harry is rough. If someone is furry then they are rough. Big people are rough. If someone is rough then they are young. If someone is young and round then they are quiet. Big, young people are cold. Cold people are round. If someone is young and not furry then they are not round.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-785_Q8", "context": "Anne is rough. Anne is young. Bob is nice. Bob is red. Bob is young. Charlie is cold. Charlie is quiet. Charlie is red. Charlie is rough. Charlie is smart. Fiona is cold. Fiona is quiet. Cold people are young. Rough, young people are nice. Cold, red people are smart. Red people are smart. If someone is smart and quiet then they are cold. All rough, nice people are red. All red, quiet people are cold. All smart people are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-461_Q16", "context": "Anne is big. Anne is kind. Anne is quiet. Anne is rough. Anne is white. Fiona is big. Gary is big. Gary is cold. Gary is kind. Harry is kind. If something is kind then it is big. If something is white and kind then it is rough. If Harry is quiet and Harry is cold then Harry is big. If something is quiet then it is big. If something is cold and rough then it is quiet. All kind things are young. If Harry is kind and Harry is cold then Harry is white. If something is young and kind then it is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-29_Q18", "context": "The bald eagle is big. The bald eagle is red. The bald eagle sees the tiger. The bald eagle visits the bear. The bear needs the bald eagle. The bear sees the bald eagle. The bear does not see the tiger. The rabbit is big. The rabbit needs the bald eagle. The rabbit needs the bear. The rabbit visits the tiger. The tiger needs the bald eagle. The tiger needs the rabbit. The tiger visits the bear. If something is big then it needs the tiger. If something needs the tiger and it sees the bald eagle then the tiger is big. If something needs the tiger and it visits the bear then the tiger needs the rabbit. If the bald eagle visits the bear and the bald eagle needs the tiger then the bear needs the tiger. If something needs the tiger then it is red. If the bear sees the rabbit then the rabbit sees the tiger. If something is blue then it visits the bear. If something is blue and it needs the tiger then it does not visit the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-169_Q6", "context": "The bald eagle chases the rabbit. The bald eagle does not chase the tiger. The bald eagle is green. The bald eagle is red. The bald eagle is young. The bald eagle sees the rabbit. The bear sees the bald eagle. The rabbit is red. The rabbit needs the bald eagle. The tiger chases the bear. The tiger is green. The tiger sees the bald eagle. If something is young and red then it is green. If something sees the bear then it needs the tiger. If something needs the bald eagle then the bald eagle chases the rabbit. If something is big and it chases the rabbit then it sees the bear. If something sees the rabbit and it needs the tiger then the tiger is not blue. If something chases the rabbit then it sees the bald eagle. If the rabbit is not young and the rabbit does not need the bald eagle then the rabbit sees the bear. If something is red and it needs the bear then it is big. If something is red then it needs the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-120_Q17", "context": "Dave is nice. Dave is red. Erin is red. Fiona is rough. Fiona is round. Gary is cold. Gary is green. Gary is red. Gary is rough. Gary is not smart. Smart, round things are nice. Red things are nice. Rough, nice things are round. Cold things are rough. If something is red and nice then it is cold. All round things are green. If something is nice and not cold then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1149_Q12", "context": "Anne is kind. Charlie is not big. Charlie is green. Erin is green. Erin is not kind. Harry is big. Harry is green. All big, green things are young. Big things are young. All red things are green. If something is kind then it is not red. All furry things are kind. If Harry is young then Harry is cold. If something is young and cold then it is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-562_Q11", "context": "Charlie is round. Charlie is not young. Dave is rough. Dave is not young. Erin is cold. Erin is young. Harry is furry. Round people are white. If someone is young then they are white. All round, rough people are big. All young, big people are not cold. Round, big people are not cold. Furry people are round. White, round people are furry. If Dave is furry and Dave is round then Dave is rough. If someone is furry then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-121_Q8", "context": "The bald eagle needs the cow. The bald eagle needs the tiger. The bald eagle sees the cow. The cow is big. The cow needs the bald eagle. The cow needs the tiger. The mouse eats the cow. The mouse is blue. The mouse is cold. The mouse needs the bald eagle. The mouse sees the cow. The mouse sees the tiger. The tiger eats the cow. The tiger needs the bald eagle. The tiger needs the cow. The tiger needs the mouse. If someone needs the tiger then they are red. If the mouse needs the bald eagle and the bald eagle needs the cow then the mouse needs the cow. If the cow needs the mouse and the mouse sees the cow then the mouse is big. If someone eats the mouse then they see the cow. If someone sees the mouse and they see the bald eagle then the bald eagle needs the tiger. If someone is big then they see the bald eagle. If someone is big and they see the bald eagle then they need the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-428_Q12", "context": "The cat is rough. The mouse likes the rabbit. The mouse sees the rabbit. The rabbit sees the squirrel. The squirrel eats the cat. The squirrel eats the rabbit. The squirrel is red. All red people are young. If the squirrel is green and the squirrel likes the rabbit then the rabbit eats the mouse. If someone sees the cat and they like the squirrel then the squirrel sees the cat. If someone is young then they see the mouse. If someone eats the rabbit and they see the mouse then the mouse is red. If someone is cold then they eat the squirrel. If someone sees the rabbit and the rabbit is green then they are young. If someone likes the squirrel and they are red then they are young. If someone sees the squirrel and the squirrel sees the mouse then they like the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not see the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-347_Q11", "context": "Anne is big. Anne is kind. Charlie is big. Erin is big. Erin is blue. Erin is not kind. Erin is not young. Harry is big. Harry is nice. Harry is white. Harry is young. All kind, big things are blue. If something is young and kind then it is nice. Blue, cold things are nice. White things are cold. White, big things are cold. If Erin is blue and Erin is white then Erin is nice. All cold, nice things are young. All kind, blue things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-856_Q19", "context": "The bald eagle needs the lion. The bald eagle visits the lion. The lion is not cold. The lion does not like the tiger. The lion visits the tiger. The squirrel is kind. The squirrel is young. The squirrel likes the tiger. The squirrel does not need the lion. The squirrel visits the bald eagle. The tiger is cold. The tiger visits the bald eagle. If something visits the bald eagle then it is big. If something is big then it needs the squirrel. If something visits the squirrel and it visits the lion then it needs the squirrel. If something needs the squirrel then it is green. If something is young then it needs the tiger. Green things are young. If something is big and it visits the lion then the lion needs the squirrel. If the squirrel is big and the squirrel does not like the tiger then the tiger is not big.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not visit the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-410_Q24", "context": "The bald eagle is green. The bald eagle needs the lion. The bald eagle sees the cat. The bald eagle sees the lion. The cat sees the bald eagle. The cow sees the bald eagle. The lion needs the bald eagle. If someone sees the cat and the cat is green then they visit the cat. If someone needs the cat and the cat needs the bald eagle then they are blue. If someone is blue and they need the lion then they see the lion. If someone sees the cow then the cow needs the bald eagle. If someone needs the bald eagle then they see the lion. If someone needs the cat then the cat is blue. If someone visits the lion and they are nice then the lion visits the cat. If someone needs the bald eagle and they see the lion then they see the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-77_Q12", "context": "The bear is blue. The cat eats the cow. The cat is red. The cat is round. The cat does not need the cow. The cat does not need the dog. The cow is not round. The dog chases the bear. The dog chases the cat. The dog is round. If the bear is not green then the bear eats the cat. If the dog needs the cat then the dog chases the bear. If the cow needs the bear then the cow is green. If the dog chases the cow then the dog needs the bear. Red things are nice. If something is green then it needs the cow. If something is nice then it eats the bear. If something is nice and it eats the bear then the bear is red. If something eats the dog and it is not red then the dog does not need the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not eat the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-904_Q14", "context": "Charlie is cold. Charlie is round. Erin is big. Erin is kind. Erin is nice. Erin is round. Gary is not big. Gary is not cold. Harry is blue. Harry is kind. Harry is nice. If someone is blue then they are round. All smart people are round. All nice people are round. If Harry is cold then Harry is not kind. If someone is smart then they are kind. If someone is cold and round then they are smart. If someone is kind and blue then they are big. All kind people are blue. If someone is big then they are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-437_Q1", "context": "The cow is not blue. The cow is green. The cow visits the mouse. The lion does not eat the mouse. The lion sees the cow. The lion visits the mouse. The mouse is blue. The mouse is red. The squirrel is red. The squirrel visits the mouse. If something eats the squirrel then the squirrel visits the cow. If the cow eats the mouse and the cow eats the squirrel then the squirrel visits the cow. If something is red and big then it eats the lion. If something visits the cow then it does not visit the squirrel. If something sees the mouse then the mouse eats the squirrel. If something sees the lion then it sees the mouse. If something is red and it visits the lion then it does not eat the cow. If something is blue then it sees the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel visits the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-902_Q5", "context": "The lion chases the mouse. The mouse is cold. The mouse needs the rabbit. The rabbit chases the squirrel. The rabbit sees the lion. The rabbit sees the squirrel. The squirrel chases the lion. If something is cold then it sees the rabbit. If something sees the rabbit then it sees the squirrel. If something is cold and it sees the squirrel then the squirrel is cold. If something chases the squirrel then it needs the squirrel. If something chases the squirrel and it is not cold then the squirrel does not chase the rabbit. If the rabbit sees the squirrel and the squirrel chases the rabbit then the rabbit does not chase the squirrel. If the rabbit chases the squirrel and the squirrel does not chase the rabbit then the squirrel needs the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse sees the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1421_Q1", "context": "Anne is cold. Anne is rough. Bob is cold. Bob is kind. Dave is big. Dave is red. Dave is smart. Harry is big. Harry is kind. Harry is smart. Big people are young. Red people are smart. If Anne is young and Anne is rough then Anne is smart. Young, cold people are red. Rough people are big. All kind people are rough. If Anne is kind and Anne is cold then Anne is smart. All young people are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-414_Q22", "context": "Charlie is nice. Charlie is quiet. Charlie is white. Charlie is young. Dave is not furry. Gary is quiet. Harry is furry. If something is nice and cold then it is quiet. If something is cold then it is young. Quiet, furry things are white. All furry things are cold. If something is young then it is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-412_Q4", "context": "Dave is furry. Dave is green. Dave is quiet. Dave is red. Fiona is blue. Fiona is furry. Fiona is green. Fiona is quiet. Fiona is red. Gary is blue. Gary is nice. Gary is quiet. Gary is red. Gary is smart. Harry is blue. Harry is smart. If something is blue and furry then it is quiet. If Dave is furry then Dave is nice. If something is furry then it is blue. Quiet things are red. All furry, green things are quiet. If something is red then it is green. All nice things are furry. All smart things are nice. Red things are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-775_Q9", "context": "The dog chases the squirrel. The dog chases the tiger. The dog eats the tiger. The dog is young. The dog needs the squirrel. The rabbit chases the dog. The rabbit chases the tiger. The squirrel chases the dog. The squirrel is round. The squirrel needs the rabbit. The squirrel needs the tiger. The tiger chases the dog. The tiger eats the dog. The tiger eats the squirrel. The tiger is green. The tiger is round. If someone is green then they eat the rabbit. If someone needs the squirrel and the squirrel is green then they need the tiger. If someone eats the rabbit then they need the squirrel. If the tiger needs the rabbit then the rabbit is green. If someone is nice then they need the rabbit. If the tiger is round then the tiger is young. If someone chases the tiger and the tiger is kind then the tiger eats the rabbit. If someone needs the squirrel then they are nice. If someone chases the tiger then the tiger chases the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger needs the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1_Q5", "context": "Anne is furry. Charlie is round. Charlie is smart. Charlie is white. Charlie is young. Erin is kind. Erin is nice. Erin is round. Erin is smart. Erin is white. Erin is young. Harry is furry. Harry is nice. Harry is round. Harry is smart. Harry is young. All round people are nice. Nice, furry people are kind. All kind, white people are round. All white, furry people are kind. If someone is round and white then they are kind. Nice people are smart. If Anne is nice and Anne is round then Anne is kind. If someone is furry then they are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-406_Q4", "context": "The bald eagle is big. The bald eagle is rough. The bald eagle sees the lion. The cat chases the lion. The cat is red. The cat is rough. The cat sees the bald eagle. The cow does not eat the bald eagle. The cow is not young. The lion eats the cow. The lion is rough. If something sees the bald eagle and the bald eagle chases the cat then it is red. If something is big and rough then it chases the cat. If something chases the cow and the cow chases the cat then it is rough. If something chases the cow then it eats the bald eagle. If something chases the cat then it sees the bald eagle. If something is red then it chases the cow. If something is round and it chases the lion then it does not eat the lion. If the cow chases the lion then the lion does not chase the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not chase the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-127_Q4", "context": "The bear is blue. The bear is green. The bear is red. The bear sees the rabbit. The cow is blue. The cow needs the tiger. The cow visits the rabbit. The rabbit is cold. The rabbit is nice. The rabbit needs the cow. The rabbit sees the cow. The rabbit sees the tiger. The tiger needs the bear. The tiger needs the rabbit. The tiger visits the bear. The tiger visits the cow. If something is green then it visits the tiger. If something sees the bear and it is cold then the bear is green. If the cow needs the rabbit and the rabbit needs the cow then the rabbit is red. If something is green then it needs the cow. If something visits the tiger then the tiger is red. If something needs the tiger and the tiger sees the cow then the cow needs the bear. If something sees the bear and it needs the bear then it sees the cow. If something visits the rabbit then the rabbit needs the tiger. If something needs the bear and the bear visits the tiger then it sees the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not need the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-581_Q1", "context": "The cat likes the rabbit. The cat likes the tiger. The mouse is blue. The mouse is nice. The mouse is round. The mouse visits the tiger. The rabbit likes the tiger. The rabbit visits the tiger. The tiger eats the mouse. The tiger eats the rabbit. The tiger visits the cat. If the mouse is big then the mouse visits the cat. If something visits the mouse then it visits the tiger. If something likes the tiger and the tiger eats the cat then the cat is red. If something visits the tiger then the tiger visits the mouse. If something is blue and it visits the cat then it likes the rabbit. If something is nice then it likes the cat. If something is blue then it likes the cat. If something is round then it is nice. If something visits the tiger then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat likes the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-572_Q4", "context": "Anne is nice. Anne is white. Anne is young. Dave is cold. Dave is nice. Dave is smart. Erin is cold. Erin is not kind. Erin is not nice. Erin is smart. Erin is young. Fiona is kind. Smart people are white. Kind, cold people are smart. Kind people are big. If Fiona is cold and Fiona is big then Fiona is nice. If someone is nice and big then they are cold. If someone is young and white then they are cold. If Anne is nice then Anne is cold. Big, young people are nice. Big people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1066_Q21", "context": "Bob is big. Charlie is furry. Charlie is kind. Charlie is smart. Fiona is furry. Fiona is young. Gary is smart. Big, smart things are kind. If something is red and not smart then it is kind. Smart things are furry. If something is red and big then it is furry. If Charlie is red then Charlie is kind. If something is kind then it is young. Young things are not red. If something is furry and smart then it is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1032_Q6", "context": "Bob is big. Bob is green. Dave is kind. Dave is white. Erin is green. Erin is kind. Erin is smart. Fiona is big. Fiona is blue. Fiona is furry. White, blue things are furry. All big, white things are smart. Furry things are green. Kind things are blue. All green things are furry. Green things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" } ] ================================================ FILE: data/ProofWriter/test.json ================================================ [ { "id": "ProofWriter_RelNeg-OWA-D5-136_Q1", "context": "The bear does not chase the lion. The bear visits the lion. The bear visits the tiger. The lion chases the bear. The lion chases the tiger. The lion visits the bear. The rabbit chases the tiger. The rabbit is big. The rabbit is not green. The rabbit is young. The rabbit visits the tiger. The tiger chases the rabbit. The tiger is rough. The tiger visits the bear. If something chases the bear and it sees the rabbit then the bear does not visit the rabbit. If something chases the lion then the lion is rough. If the rabbit chases the tiger and the tiger visits the rabbit then the rabbit is not big. If something chases the lion then the lion does not visit the tiger. If something chases the rabbit and it chases the tiger then the rabbit chases the bear. If something is young and it does not see the rabbit then it sees the bear. If something visits the lion then it is young. If the tiger visits the bear and the bear is big then the tiger visits the lion. Young things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear visits the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-99_Q17", "context": "The bald eagle is cold. The bald eagle sees the bear. The bear is big. The bear is not cold. The bear is green. The bear likes the cat. The cat chases the mouse. The cat is big. The cat is young. The cat likes the bald eagle. The mouse likes the cat. If something chases the cat and it likes the bald eagle then the bald eagle is not green. If something sees the cat then it does not chase the mouse. If something is cold then it sees the cat. If something likes the cat and it chases the bald eagle then it is not young. If something likes the bald eagle and the bald eagle does not chase the mouse then the mouse is big. If the cat chases the bear then the cat likes the mouse. If something chases the mouse and it is not green then it chases the bear. If the mouse is big then the mouse chases the bald eagle. If something is young and it likes the mouse then it chases the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not chase the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-295_Q20", "context": "The bald eagle needs the lion. The bald eagle needs the mouse. The bear likes the bald eagle. The bear needs the lion. The bear sees the bald eagle. The lion is blue. The mouse sees the bear. If something sees the lion then it likes the bald eagle. If something likes the bear then it likes the bald eagle. If something needs the bear and the bear is blue then the bear is round. If something likes the mouse then the mouse sees the bear. If something likes the mouse and the mouse is nice then it likes the bear. If something needs the lion and it likes the bald eagle then it likes the mouse. If something likes the bear and it likes the mouse then the mouse needs the bear. If something needs the bear then it likes the bear. If something likes the bald eagle then it needs the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle sees the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1040_Q9", "context": "Bob is cold. Bob is not nice. Bob is not quiet. Charlie is blue. Charlie is round. Gary is rough. Harry is cold. Rough things are blue. Red, quiet things are blue. All rough, blue things are nice. If something is quiet and round then it is not nice. If Harry is red then Harry is rough. If something is nice then it is round. If something is round then it is red. Red things are not quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-19_Q18", "context": "The bear needs the cow. The cow needs the rabbit. The cow sees the bear. The cow visits the lion. The lion is nice. The lion is red. The lion does not see the cow. The lion visits the cow. The rabbit sees the cow. The rabbit visits the cow. If something needs the cow and the cow visits the rabbit then it visits the cow. If the lion needs the bear then the bear sees the cow. If the lion sees the bear and the bear is rough then the bear does not see the cow. If something visits the lion then the lion visits the bear. If something visits the bear then it needs the bear. If something visits the bear then the bear needs the cow. If something sees the cow then it visits the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1213_Q11", "context": "Anne is white. Bob is round. Erin is green. Erin is red. Erin is not round. Erin is white. Harry is young. All red, round people are quiet. If someone is young then they are white. Round people are young. If someone is round and smart then they are not red. All white people are red. Quiet people are green. If someone is red and not white then they are not green.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-527_Q9", "context": "Bob is quiet. Charlie is blue. Charlie is cold. Charlie is nice. Dave is blue. Dave is cold. Erin is blue. If something is blue and cold then it is big. Round, nice things are big. All nice, quiet things are furry. If Bob is round then Bob is furry. If Bob is furry and Bob is nice then Bob is big. If something is big and blue then it is quiet. If something is blue then it is nice. All nice things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-607_Q15", "context": "Dave is big. Erin is big. Erin is furry. Erin is green. Erin is white. Gary is green. Harry is round. All big, furry things are white. If something is round then it is furry. If something is smart and furry then it is round. If something is white and smart then it is big. All white things are smart. If something is furry then it is white. All green things are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1382_Q2", "context": "Bob is big. Bob is cold. Bob is kind. Bob is round. Bob is smart. Dave is cold. Erin is big. Erin is green. Fiona is big. Fiona is smart. Big, green things are round. If something is cold and blue then it is smart. Smart, round things are kind. Round, big things are cold. Cold things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-698_Q16", "context": "Bob is big. Bob is red. Bob is smart. Erin is quiet. Fiona is big. Fiona is blue. Fiona is cold. Fiona is smart. Gary is red. Gary is smart. If Bob is quiet then Bob is cold. If someone is red then they are quiet. If someone is red and quiet then they are cold. All kind people are big. If someone is red and blue then they are kind. All cold, quiet people are blue. Cold, big people are kind. If Erin is big then Erin is cold. If someone is cold and blue then they are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-339_Q5", "context": "The bald eagle chases the cat. The bald eagle is kind. The bald eagle sees the dog. The cat is rough. The dog is blue. The dog is red. The dog is rough. The dog sees the cat. The dog does not see the lion. The lion sees the bald eagle. If something chases the cat then the cat chases the dog. If something chases the dog then it eats the bald eagle. If something is kind and it sees the lion then it is not red. If something chases the dog then the dog chases the bald eagle. If the dog eats the bald eagle then the dog sees the bald eagle. If something is cold then it sees the lion. If something sees the cat and it is blue then the cat is kind. If something is blue and it chases the bald eagle then the bald eagle is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat eats the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-73_Q20", "context": "Anne is nice. Bob is cold. Bob is not red. Bob is rough. Charlie is red. Charlie is rough. Harry is nice. Harry is quiet. Harry is rough. Harry is round. Nice people are quiet. If someone is red and nice then they are not quiet. Quiet people are cold. If someone is quiet and round then they are not red. If someone is green and quiet then they are round. If someone is cold then they are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-1026_Q3", "context": "The bear is green. The bear visits the cow. The cat is green. The cat is nice. The cow likes the cat. The cow visits the lion. The lion visits the cat. If someone visits the cow then the cow eats the lion. If someone eats the bear then the bear visits the cat. If someone is young then they eat the bear. If someone is blue then they eat the bear. If someone likes the lion then they are young. If the lion is nice then the lion eats the bear. If someone eats the lion then they like the lion. If someone is green then they eat the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat eats the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-976_Q12", "context": "Charlie is not quiet. Erin is big. Erin is white. Erin is young. Gary is young. Harry is furry. Harry is nice. White, furry people are big. All nice people are big. If someone is quiet and furry then they are white. If someone is young then they are quiet. All big, furry people are round. If someone is quiet then they are furry. If Erin is round then Erin is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-669_Q24", "context": "The dog eats the mouse. The dog eats the tiger. The dog visits the squirrel. The mouse is green. The mouse visits the tiger. The squirrel is big. The squirrel is round. The squirrel likes the dog. The tiger eats the dog. The tiger visits the mouse. If someone eats the tiger and the tiger is big then they are green. If someone is green then they like the squirrel. If the dog is green then the dog likes the mouse. If someone visits the tiger then the tiger is blue. If someone visits the tiger then the tiger visits the dog. If someone is blue and they eat the squirrel then the squirrel is green. If someone is blue then they eat the squirrel. If someone likes the dog and they are green then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-686_Q17", "context": "Bob is quiet. Bob is not red. Bob is round. Charlie is red. Gary is quiet. Gary is not round. Gary is not smart. Gary is white. Harry is blue. Harry is quiet. If Harry is blue and Harry is white then Harry is red. Smart things are young. All quiet, red things are round. If Charlie is quiet then Charlie is round. If something is quiet then it is white. If Gary is blue and Gary is smart then Gary is quiet. All young, blue things are quiet. All round things are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-742_Q11", "context": "Anne is furry. Anne is red. Anne is smart. Bob is red. Dave is blue. Dave is kind. Erin is white. Furry people are kind. Furry, blue people are kind. All red people are furry. All nice, red people are smart. Kind, nice people are smart. All furry people are kind. White people are kind. If someone is white and red then they are nice. If Bob is kind then Bob is white.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-164_Q22", "context": "Anne is cold. Bob is nice. Fiona is big. Fiona is round. Harry is big. Harry is nice. Harry is smart. All smart people are round. If Anne is kind then Anne is big. All smart, big people are furry. All nice people are kind. Kind, round people are big. If someone is kind then they are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-910_Q4", "context": "Anne is blue. Anne is furry. Anne is green. Anne is quiet. Anne is young. Bob is furry. Bob is round. Erin is green. Erin is young. Harry is furry. Furry people are blue. If someone is furry and young then they are green. All quiet, round people are rough. If Anne is green and Anne is blue then Anne is round. Furry people are quiet. All rough, quiet people are young. Quiet people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-800_Q10", "context": "The cow chases the tiger. The cow eats the rabbit. The cow is red. The cow is young. The cow sees the squirrel. The rabbit eats the cow. The rabbit is young. The squirrel is kind. The squirrel is red. The tiger is red. The tiger is young. The tiger sees the squirrel. If the cow sees the squirrel and the squirrel eats the rabbit then the rabbit sees the tiger. If something sees the tiger then the tiger is round. If something chases the squirrel then the squirrel eats the rabbit. If something is round then it sees the tiger. If something is big then it chases the squirrel. If something eats the rabbit then the rabbit chases the squirrel. If the tiger eats the cow and the cow sees the squirrel then the squirrel is young.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-837_Q2", "context": "The mouse chases the tiger. The mouse is cold. The rabbit chases the squirrel. The rabbit is nice. The rabbit needs the mouse. The rabbit needs the tiger. The rabbit visits the mouse. The rabbit visits the tiger. The squirrel chases the mouse. The squirrel is round. The squirrel needs the rabbit. The squirrel needs the tiger. The squirrel does not visit the mouse. The tiger chases the mouse. The tiger is nice. The tiger is not round. If someone visits the rabbit then they visit the tiger. If someone needs the rabbit then they visit the tiger. If the squirrel needs the mouse then the mouse needs the tiger. If someone is cold and they need the tiger then they are nice. If the squirrel needs the rabbit and the rabbit needs the mouse then the squirrel is nice. If someone is round then they need the tiger. If someone is nice then they need the mouse. If someone visits the squirrel then the squirrel is red. If the squirrel does not need the tiger then the tiger needs the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not chase the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-623_Q9", "context": "Anne is furry. Bob is furry. Fiona is nice. Fiona is red. Gary is blue. Gary is nice. Gary is not young. All white things are young. Red, white things are blue. If something is furry then it is white. If something is red and blue then it is round. If Bob is nice and Bob is white then Bob is round. All white things are red. Round, blue things are not nice. If Fiona is young then Fiona is nice. If Fiona is not blue then Fiona is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1166_Q9", "context": "Charlie is cold. Charlie is nice. Dave is cold. Erin is cold. Gary is kind. Gary is not red. Gary is round. All red things are kind. If Erin is cold then Erin is red. All nice things are rough. All cold, white things are rough. All white, round things are nice. Kind, cold things are nice. If something is nice and rough then it is round. All rough things are red. All cold, kind things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-111_Q14", "context": "Anne is green. Anne is round. Bob is smart. Charlie is smart. Charlie is young. Harry is blue. Harry is young. Nice people are young. Blue people are young. Young, green people are nice. If someone is smart then they are nice. Round, nice people are big. All big, young people are smart. Green people are blue. If Bob is nice then Bob is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-179_Q16", "context": "Bob is kind. Bob is young. Dave is kind. Dave is red. Fiona is big. Fiona is cold. Fiona is kind. Fiona is smart. Fiona is young. Harry is big. Big, smart people are red. Young, red people are big. If someone is smart then they are red. All big, kind people are rough. Red, big people are kind. If someone is young then they are cold. All kind people are smart. All rough, smart people are young. All big people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-609_Q19", "context": "The cow likes the lion. The cow likes the mouse. The cow likes the squirrel. The lion eats the mouse. The lion is green. The lion likes the squirrel. The mouse is blue. The mouse likes the cow. The mouse visits the lion. The squirrel visits the cow. If someone visits the cow then they eat the mouse. If someone likes the mouse then they visit the lion. If someone visits the cow then they eat the cow. If someone visits the squirrel and the squirrel is blue then the squirrel likes the cow. If someone is cold then they eat the cow. If someone is green then they are big. If someone is big and green then they like the lion. If someone likes the lion then they are cold. If someone eats the cow then they visit the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-521_Q16", "context": "Anne is not blue. Anne is cold. Anne is kind. Anne is nice. Anne is quiet. Erin is quiet. Gary is not nice. Gary is rough. Harry is not blue. Harry is cold. Harry is nice. Harry is quiet. If Gary is not nice then Gary is cold. Rough, cold things are blue. If something is kind then it is cold. If something is white and not nice then it is quiet. If something is cold and blue then it is white. All kind, blue things are not white. If something is quiet and rough then it is not kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-808_Q8", "context": "The cat is young. The cow is young. The cow visits the mouse. The mouse eats the cat. The mouse needs the cat. The mouse needs the rabbit. The mouse does not visit the cow. The mouse visits the rabbit. The rabbit is round. The rabbit does not need the cat. The rabbit visits the mouse. If someone eats the cat and they eat the cow then they do not need the mouse. If someone visits the cat then the cat eats the cow. All nice people are red. If the mouse needs the rabbit and the mouse eats the cat then the mouse eats the cow. If someone is red and they visit the mouse then the mouse needs the cow. If someone needs the cow then the cow visits the cat. All round people are nice. If someone needs the cat and the cat visits the rabbit then they do not eat the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not need the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-49_Q6", "context": "Bob is blue. Bob is round. Dave is blue. Dave is green. Dave is kind. Dave is quiet. Gary is blue. Gary is kind. Gary is quiet. Gary is young. Harry is blue. Harry is kind. Harry is quiet. Harry is round. Harry is white. Harry is young. If something is kind then it is quiet. If something is white and quiet then it is round. If something is green then it is white. If Bob is white then Bob is kind. Green, young things are white. If something is young then it is green. All blue, quiet things are round. If something is quiet then it is young. All round things are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-669_Q11", "context": "The dog eats the mouse. The dog eats the tiger. The dog visits the squirrel. The mouse is green. The mouse visits the tiger. The squirrel is big. The squirrel is round. The squirrel likes the dog. The tiger eats the dog. The tiger visits the mouse. If someone eats the tiger and the tiger is big then they are green. If someone is green then they like the squirrel. If the dog is green then the dog likes the mouse. If someone visits the tiger then the tiger is blue. If someone visits the tiger then the tiger visits the dog. If someone is blue and they eat the squirrel then the squirrel is green. If someone is blue then they eat the squirrel. If someone likes the dog and they are green then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel eats the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-1020_Q21", "context": "The bald eagle chases the bear. The bald eagle is green. The bald eagle is round. The bald eagle likes the rabbit. The bald eagle visits the lion. The bear is young. The bear visits the bald eagle. The lion is red. The lion is round. The lion visits the rabbit. The rabbit is blue. The rabbit is red. If someone likes the bear then the bear is blue. If someone likes the lion then the lion likes the rabbit. If someone chases the bear and they visit the lion then the lion likes the bear. If someone visits the bear then they are red. If someone likes the bear and the bear is red then they chase the bear. If someone is red and they chase the rabbit then they are round. If the rabbit likes the bear and the bear likes the lion then the bear is young. If the rabbit visits the bald eagle then the bald eagle is green. If someone is blue then they visit the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not chase the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-476_Q16", "context": "The bald eagle is not kind. The bear likes the bald eagle. The bear likes the mouse. The bear needs the squirrel. The mouse is cold. The mouse is kind. The mouse is round. The mouse likes the bald eagle. The mouse likes the bear. The mouse likes the squirrel. The mouse needs the bald eagle. The mouse needs the bear. The mouse needs the squirrel. The mouse sees the bald eagle. The squirrel is kind. The squirrel does not need the bald eagle. If someone sees the squirrel and the squirrel likes the bear then the bear does not need the bald eagle. If someone sees the bald eagle then the bald eagle needs the mouse. If someone sees the mouse then the mouse is blue. If someone likes the mouse and they do not need the bear then the bear likes the mouse. If someone sees the bear and they see the mouse then the bear is blue. If someone sees the squirrel and the squirrel likes the bald eagle then the squirrel sees the mouse. If someone is round then they see the mouse. All kind people are nice. If someone is blue then they see the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle sees the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-830_Q7", "context": "Anne is big. Anne is kind. Anne is nice. Anne is round. Anne is smart. Anne is young. Bob is big. Bob is nice. Charlie is big. Charlie is smart. Gary is young. All nice, round things are young. All round, smart things are green. If Charlie is green and Charlie is round then Charlie is nice. All smart things are round. All young, smart things are kind. All young things are big. If something is nice and round then it is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-70_Q12", "context": "Anne is green. Dave is furry. Dave is green. Erin is green. Erin is kind. Erin is young. Fiona is red. Furry, red people are not kind. If someone is red then they are furry. If Fiona is kind then Fiona is not green. If Fiona is green and Fiona is red then Fiona is quiet. If someone is red and not kind then they are nice. If Fiona is green then Fiona is nice. If someone is quiet then they are green. Nice, red people are green. If someone is furry and not nice then they are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-272_Q6", "context": "Anne is furry. Charlie is big. Charlie is kind. Charlie is round. Erin is big. Erin is kind. Erin is red. Erin is round. Harry is kind. Harry is round. If Harry is kind then Harry is round. Furry, big things are red. All white things are big. All round, red things are white. If Harry is round and Harry is big then Harry is furry. Furry things are quiet. All big, quiet things are furry. All kind things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-259_Q16", "context": "Anne is blue. Erin is quiet. Fiona is big. Fiona is furry. Fiona is nice. Harry is furry. Harry is not rough. Round things are blue. If something is round and not big then it is not nice. Quiet things are nice. All blue, round things are nice. Nice, rough things are round. If something is furry then it is round. Furry, blue things are quiet. Nice things are furry. If something is round and blue then it is not rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-998_Q14", "context": "The cat likes the dog. The cat likes the rabbit. The cat visits the rabbit. The dog chases the rabbit. The dog likes the rabbit. The dog visits the cat. The lion is green. The lion visits the cat. The lion visits the rabbit. The rabbit chases the cat. The rabbit chases the dog. The rabbit is round. The rabbit likes the dog. The rabbit visits the lion. If something chases the lion and it likes the cat then the cat is blue. If something is kind then it visits the rabbit. If the rabbit is kind then the rabbit visits the cat. If something visits the cat then the cat is blue. If something likes the dog then it is blue. If something chases the lion and it is green then the lion likes the dog. If something is blue and it likes the dog then it is green. If something is kind and it likes the rabbit then the rabbit chases the cat. If something visits the lion and it is green then it chases the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-997_Q7", "context": "Charlie is cold. Charlie is nice. Charlie is rough. Charlie is round. Charlie is smart. Dave is round. Dave is white. Fiona is rough. Fiona is smart. Fiona is white. Gary is smart. Rough, round things are cold. All smart things are round. All big, nice things are rough. If Charlie is white then Charlie is nice. If something is nice and smart then it is big. If something is round then it is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-642_Q10", "context": "Bob is big. Bob is cold. Bob is smart. Bob is young. Charlie is kind. Charlie is young. Erin is big. Erin is cold. Erin is furry. Erin is smart. Gary is furry. Gary is smart. Young things are smart. Furry things are cold. All furry, kind things are rough. All rough things are smart. Cold things are furry. If something is big then it is cold. If Charlie is young and Charlie is smart then Charlie is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-826_Q3", "context": "The dog eats the tiger. The dog is blue. The dog visits the lion. The lion eats the mouse. The lion is rough. The lion is round. The lion visits the tiger. The mouse eats the tiger. The tiger eats the lion. The tiger needs the mouse. The tiger visits the dog. The tiger visits the lion. If someone visits the mouse then they visit the lion. If someone needs the lion then they visit the mouse. If someone visits the tiger then the tiger eats the mouse. If someone eats the mouse and they are blue then they visit the tiger. If someone eats the mouse and the mouse is round then they eat the lion. If someone visits the tiger and the tiger visits the mouse then they visit the dog. If someone is round and they need the lion then the lion is red. If someone visits the lion then the lion visits the mouse. If someone visits the dog then they need the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger eats the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-468_Q18", "context": "Anne is furry. Anne is green. Bob is green. Bob is quiet. Bob is round. Bob is white. Bob is young. Gary is furry. Gary is white. Harry is smart. Harry is white. If something is quiet and furry then it is green. All smart, white things are quiet. Furry things are smart. If something is round then it is furry. If something is green and white then it is young. If Gary is white and Gary is young then Gary is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-858_Q8", "context": "Anne is smart. Charlie is big. Charlie is green. Charlie is round. Charlie is smart. Charlie is young. Erin is cold. Erin is round. Harry is cold. Harry is round. All cold people are big. Green people are furry. Big people are green. If Erin is furry then Erin is green. If Erin is green then Erin is furry. If someone is smart then they are cold. If Anne is big and Anne is furry then Anne is round. If Harry is round and Harry is young then Harry is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-649_Q4", "context": "Charlie is big. Erin is cold. Erin is kind. Erin is smart. Fiona is big. Gary is blue. Gary is young. All big people are kind. Green people are smart. All blue, young people are smart. If someone is blue and smart then they are cold. Smart, blue people are green. Blue people are green. All kind people are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-669_Q17", "context": "The dog eats the mouse. The dog eats the tiger. The dog visits the squirrel. The mouse is green. The mouse visits the tiger. The squirrel is big. The squirrel is round. The squirrel likes the dog. The tiger eats the dog. The tiger visits the mouse. If someone eats the tiger and the tiger is big then they are green. If someone is green then they like the squirrel. If the dog is green then the dog likes the mouse. If someone visits the tiger then the tiger is blue. If someone visits the tiger then the tiger visits the dog. If someone is blue and they eat the squirrel then the squirrel is green. If someone is blue then they eat the squirrel. If someone likes the dog and they are green then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-897_Q10", "context": "The bald eagle chases the tiger. The bald eagle is big. The bald eagle is green. The cow is big. The cow is young. The cow likes the tiger. The rabbit is round. The rabbit needs the cow. The rabbit needs the tiger. The tiger likes the cow. If someone likes the tiger and the tiger is green then they chase the rabbit. If someone is green then they chase the cow. If someone chases the rabbit and they like the tiger then the tiger needs the cow. If someone is big and they chase the bald eagle then the bald eagle needs the tiger. If someone is green and they chase the cow then they need the cow. If someone is big and they need the cow then the cow is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not chase the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-741_Q8", "context": "Dave is big. Dave is blue. Dave is cold. Dave is rough. Dave is smart. Dave is white. Dave is young. Erin is big. Erin is cold. Erin is smart. Erin is white. Erin is young. Fiona is big. Fiona is blue. Fiona is rough. Harry is smart. All blue, cold things are rough. Cold, white things are big. If Erin is white then Erin is young. If something is smart then it is young. Young things are cold. If Harry is rough then Harry is big. If something is cold then it is blue. If something is rough and big then it is blue. White, cold things are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-776_Q7", "context": "The bear does not chase the cat. The bear eats the cat. The bear eats the cow. The bear is green. The bear is not nice. The bear sees the dog. The cat is nice. The cat is red. The cat sees the bear. The cow eats the dog. The dog is kind. If someone is kind and they see the dog then the dog chases the cow. If someone eats the bear and the bear chases the dog then the dog eats the cow. If someone sees the bear then they see the cow. If someone sees the cat and the cat sees the bear then they eat the dog. If someone is nice and they eat the cow then the cow does not chase the cat. If someone sees the cow then they see the cat. If someone is green then they see the bear. If someone eats the dog then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat eats the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-450_Q22", "context": "The bald eagle chases the lion. The bald eagle is not green. The bald eagle is round. The bald eagle likes the lion. The dog is red. The lion does not chase the dog. The lion is round. The lion is not young. The rabbit chases the dog. The rabbit eats the lion. If something chases the dog then it likes the rabbit. If something is red and it chases the lion then the lion likes the bald eagle. If something is big then it chases the rabbit. If something is round and it chases the bald eagle then the bald eagle does not like the dog. If something likes the lion then it is red. If something is red and round then it does not chase the bald eagle. If something is red and young then it chases the bald eagle. If something likes the bald eagle and the bald eagle chases the lion then it likes the lion. If something eats the bald eagle then the bald eagle is red.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1389_Q2", "context": "Charlie is rough. Charlie is white. Erin is blue. Erin is rough. Erin is young. Gary is blue. Gary is green. Gary is quiet. Gary is white. Harry is blue. Harry is rough. All rough, white things are green. All young, blue things are quiet. If something is young then it is blue. White, blue things are quiet. If something is green then it is young. Quiet, green things are cold. All green, cold things are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-29_Q9", "context": "The cat eats the rabbit. The cow eats the rabbit. The cow is green. The cow needs the cat. The cow needs the lion. The cow sees the lion. The lion is blue. The rabbit eats the cow. The rabbit is nice. The rabbit sees the lion. If something eats the rabbit then the rabbit is blue. If something eats the cow and it sees the lion then it sees the rabbit. If something is big then it eats the cat. If something is nice and it eats the cat then the cat sees the rabbit. If something is green and it needs the cow then it sees the cat. If something sees the cat then it eats the cat. If something sees the rabbit then it sees the cat. If something eats the cow and the cow needs the rabbit then it eats the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat sees the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-623_Q5", "context": "Anne is furry. Bob is furry. Fiona is nice. Fiona is red. Gary is blue. Gary is nice. Gary is not young. All white things are young. Red, white things are blue. If something is furry then it is white. If something is red and blue then it is round. If Bob is nice and Bob is white then Bob is round. All white things are red. Round, blue things are not nice. If Fiona is young then Fiona is nice. If Fiona is not blue then Fiona is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-656_Q12", "context": "Anne is smart. Charlie is not blue. Charlie is quiet. Erin is not nice. Erin is round. Harry is green. Harry is young. Smart things are green. If Anne is round then Anne is young. If something is blue and green then it is not quiet. If something is green and smart then it is round. If something is young then it is blue. Smart things are nice. If Harry is quiet and Harry is not smart then Harry is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-901_Q4", "context": "Dave is rough. Erin is green. Erin is nice. Fiona is not rough. Gary is blue. Gary is nice. Gary is rough. If someone is round and not rough then they are nice. If someone is green then they are big. All round people are green. If someone is rough then they are kind. Rough, green people are kind. Green, big people are blue. All kind people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-368_Q15", "context": "The bald eagle eats the cat. The bald eagle eats the dog. The bald eagle is not green. The bald eagle is not kind. The bald eagle does not like the dog. The bald eagle sees the cat. The bald eagle does not see the dog. The cat is blue. The cat is round. The dog eats the bald eagle. The dog eats the cat. The dog is round. The dog likes the cat. The lion eats the bald eagle. The lion eats the cat. The lion does not see the cat. If the dog sees the cat then the dog likes the bald eagle. If something is round then it likes the lion. If the cat likes the bald eagle and the lion does not see the cat then the lion is kind. If something is kind then it is round. If something likes the lion then it likes the bald eagle. If something eats the lion then it likes the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not like the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-262_Q13", "context": "Anne is blue. Anne is nice. Anne is red. Anne is rough. Anne is round. Anne is smart. Bob is blue. Dave is blue. Dave is rough. Dave is smart. Harry is blue. Harry is furry. If something is furry then it is round. If Anne is red and Anne is nice then Anne is rough. If something is red and round then it is smart. All round things are furry. All blue, round things are red. Blue things are nice. All nice, blue things are furry. All red things are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-688_Q17", "context": "The cat is nice. The cat is red. The cat is round. The cat does not need the mouse. The cat visits the squirrel. The lion needs the mouse. The mouse is round. The mouse likes the lion. The mouse needs the lion. The mouse visits the cat. The squirrel is big. The squirrel is red. The squirrel visits the lion. The squirrel visits the mouse. If something likes the cat and it does not visit the cat then it visits the lion. If the lion is green and the lion visits the mouse then the mouse is red. All red things are nice. If something likes the lion then it is red. If the mouse visits the cat and the mouse needs the squirrel then the mouse does not like the cat. Nice things are big. If something is big then it visits the squirrel. If the mouse visits the squirrel then the mouse does not visit the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1298_Q1", "context": "Anne is green. Anne is nice. Anne is red. Anne is smart. Anne is white. Bob is green. Bob is nice. Bob is round. Bob is white. Dave is round. Gary is green. Gary is nice. Gary is red. Gary is white. Green, red things are smart. Round things are cold. Cold, smart things are round. All smart things are cold. Red, white things are nice. All cold, round things are green. White, green things are red. All green things are smart. All smart things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-299_Q14", "context": "Bob is green. Bob is young. Charlie is round. Charlie is young. Erin is kind. Erin is white. Erin is young. Fiona is cold. Fiona is not green. Fiona is kind. Fiona is quiet. All round things are cold. If something is young then it is cold. If something is green and white then it is round. All kind, white things are quiet. Round, quiet things are white. Green, young things are white. If something is cold then it is kind. If something is round and kind then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-263_Q4", "context": "The bear is nice. The bear likes the cat. The bear likes the tiger. The cat eats the bear. The cat is cold. The cat is kind. The cat likes the rabbit. The cat visits the rabbit. The rabbit likes the tiger. The rabbit visits the tiger. The tiger eats the bear. The tiger likes the bear. If someone is kind and they visit the cat then they are big. If someone is young then they eat the cat. If someone is cold and they like the rabbit then the rabbit likes the cat. If someone likes the tiger then the tiger visits the cat. If someone is big then they eat the tiger. If someone eats the rabbit and they are cold then they visit the rabbit. If someone likes the bear then they are kind. If someone likes the rabbit and they eat the rabbit then the rabbit visits the cat. If someone eats the tiger and the tiger visits the cat then they are young.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not like the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1204_Q8", "context": "Bob is not furry. Bob is quiet. Bob is not rough. Bob is not round. Erin is not kind. Erin is rough. Gary is big. Harry is furry. Harry is green. Harry is not round. All big, round people are rough. If someone is rough and not green then they are quiet. If someone is round and rough then they are quiet. All big people are round. All quiet people are kind. All rough, quiet people are big. If someone is round and kind then they are furry. If someone is big and not quiet then they are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-579_Q12", "context": "Anne is not green. Anne is rough. Bob is white. Dave is red. Dave is young. Gary is red. Gary is white. If something is red then it is furry. If something is furry then it is young. White, red things are rough. All white, furry things are big. Rough things are red. Red, young things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-534_Q7", "context": "The cow likes the rabbit. The cow needs the mouse. The mouse likes the squirrel. The rabbit needs the cow. The rabbit sees the cow. The squirrel is nice. The squirrel needs the cow. If someone needs the mouse and they need the rabbit then the rabbit needs the cow. If someone sees the rabbit then the rabbit needs the mouse. If someone needs the cow then they like the squirrel. If someone sees the squirrel then they see the rabbit. If someone is kind and they see the squirrel then they need the mouse. If someone likes the squirrel and the squirrel sees the cow then they are red. If someone needs the mouse then they see the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit needs the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-855_Q1", "context": "The cat is red. The cat visits the dog. The cat visits the mouse. The dog needs the cat. The dog needs the mouse. The mouse likes the cat. The mouse likes the squirrel. The squirrel is rough. The squirrel likes the cat. The squirrel likes the mouse. The squirrel visits the mouse. If something needs the dog then it needs the mouse. If something visits the dog then the dog is rough. If something is green and it likes the cat then it is rough. If something is green then it likes the cat. If something is rough then it visits the cat. If something visits the cat then the cat is green. If something likes the dog and it likes the cat then the dog is blue. If something likes the mouse and the mouse is green then it likes the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-461_Q3", "context": "The bear eats the cat. The bear is nice. The bear is rough. The bear likes the cat. The bear visits the dog. The cat visits the bear. The dog eats the cat. The dog is blue. The dog is green. The mouse eats the bear. The mouse visits the bear. If someone eats the cat then they visit the cat. If someone eats the cat then they eat the mouse. If someone visits the dog and the dog likes the cat then the dog is nice. If someone likes the mouse then they eat the cat. If the dog is nice then the dog visits the mouse. If someone eats the mouse and the mouse eats the bear then they like the cat. If the bear likes the dog then the dog visits the bear. If someone is rough then they visit the cat. If the dog visits the mouse and the dog visits the cat then the mouse eats the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear visits the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-48_Q10", "context": "The bear chases the cat. The bear chases the squirrel. The bear is young. The bear does not see the squirrel. The cat chases the cow. The cat chases the squirrel. The cat eats the squirrel. The cat is not kind. The cat does not see the cow. The cow does not chase the cat. The cow chases the squirrel. The squirrel chases the bear. The squirrel eats the cat. The squirrel eats the cow. The squirrel is young. The squirrel sees the cow. If something eats the bear then the bear sees the cow. If something is kind then it eats the bear. If the cow chases the bear and the cat does not chase the cow then the cow sees the squirrel. If something sees the squirrel then it is rough. If something eats the bear and it does not chase the cat then the cat sees the bear. If something sees the cow then it is kind. If something eats the squirrel then it eats the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1199_Q6", "context": "Anne is blue. Anne is furry. Anne is kind. Anne is nice. Anne is red. Bob is furry. Bob is kind. Bob is nice. Bob is red. Erin is white. Gary is kind. All white, furry things are red. Kind, nice things are big. Big, nice things are furry. All kind things are white. If Gary is blue and Gary is white then Gary is red. All nice, kind things are white. If something is white then it is nice. If Bob is white then Bob is nice. If something is furry and blue then it is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-71_Q3", "context": "The bear eats the squirrel. The mouse eats the squirrel. The mouse visits the bear. The mouse visits the rabbit. The rabbit sees the mouse. The rabbit sees the squirrel. The squirrel is big. The squirrel is rough. The squirrel sees the bear. The squirrel visits the mouse. The squirrel visits the rabbit. If the bear visits the squirrel then the squirrel eats the rabbit. If something eats the squirrel and it sees the bear then the bear eats the rabbit. If something is kind then it is blue. If something is rough and it visits the rabbit then it eats the mouse. If the bear visits the squirrel then the squirrel is big. If something is big and it eats the mouse then the mouse is kind. If something is blue then it sees the bear. If something sees the mouse then it eats the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel eats the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-215_Q13", "context": "The bald eagle is nice. The bald eagle likes the cat. The bald eagle visits the rabbit. The cat is green. The cat likes the rabbit. The cat visits the rabbit. The dog likes the rabbit. The dog visits the rabbit. The rabbit needs the dog. The rabbit visits the cat. If something visits the rabbit then it needs the dog. All young things are blue. If something visits the bald eagle and it needs the rabbit then the rabbit likes the bald eagle. If something visits the cat then it is nice. If something needs the dog then it likes the bald eagle. If something is green then it visits the cat. If something needs the cat then it needs the rabbit. If something visits the bald eagle and the bald eagle is red then it visits the rabbit. If something likes the bald eagle then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not need the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-740_Q10", "context": "Anne is big. Anne is young. Charlie is blue. Charlie is kind. Charlie is round. Charlie is young. Gary is big. Harry is big. Harry is blue. Harry is kind. Harry is nice. Harry is smart. All smart things are big. All kind, smart things are round. All young, kind things are blue. All nice, young things are smart. If something is big then it is kind. If something is blue then it is nice. If Anne is nice and Anne is kind then Anne is smart. If Gary is nice then Gary is young. If something is round and big then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-183_Q1", "context": "Anne is not cold. Anne is rough. Bob is round. Erin is rough. Erin is round. Gary is furry. Gary is green. All nice things are green. Furry things are green. If something is green and not round then it is white. Cold, round things are nice. If Bob is furry then Bob is white. Round things are cold. If Anne is white then Anne is furry. All nice things are rough. Rough things are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-354_Q3", "context": "The dog likes the mouse. The dog likes the squirrel. The mouse eats the dog. The squirrel is cold. The squirrel is green. The squirrel likes the tiger. The tiger eats the squirrel. If something sees the squirrel then the squirrel eats the tiger. If something is cold then it sees the squirrel. If something likes the squirrel then the squirrel likes the dog. If something sees the mouse then the mouse eats the squirrel. If something sees the squirrel then it is kind. If something likes the dog and it eats the mouse then the mouse is cold. If something eats the dog and the dog eats the mouse then the dog sees the tiger. If something is kind then it eats the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel likes the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-744_Q18", "context": "The bald eagle sees the cat. The cat is round. The cat needs the rabbit. The cat sees the lion. The cat visits the lion. The lion is big. The lion is cold. The lion is nice. The lion visits the rabbit. The rabbit is nice. The rabbit is round. The rabbit sees the cat. If something is nice then it is big. If something is kind and it sees the rabbit then it needs the lion. If something needs the rabbit then it is nice. All cold, big things are kind. If something sees the bald eagle and the bald eagle is nice then it needs the rabbit. If something sees the lion then it visits the rabbit. If the bald eagle sees the cat then the bald eagle visits the rabbit. If something visits the rabbit then it needs the rabbit. If something is big then it is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion needs the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-25_Q11", "context": "The bear chases the lion. The bear chases the mouse. The bear is red. The bear is round. The bear needs the squirrel. The lion eats the bear. The lion is kind. The lion needs the bear. The mouse is round. The squirrel chases the bear. If something eats the bear and the bear eats the lion then the lion is round. If something chases the lion then the lion eats the squirrel. If something is red then it needs the lion. If something eats the squirrel and the squirrel eats the mouse then it chases the lion. If the bear is blue and the bear needs the mouse then the mouse eats the lion. If something eats the lion and it is round then the lion is red. If something needs the lion then it eats the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion eats the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-375_Q11", "context": "The bald eagle eats the dog. The bald eagle eats the tiger. The cat needs the bald eagle. The cat needs the dog. The cat sees the dog. The dog eats the tiger. The dog is red. The tiger is red. The tiger needs the bald eagle. The tiger needs the cat. If someone needs the tiger then the tiger needs the dog. If someone eats the cat and the cat sees the tiger then the cat eats the tiger. If someone needs the dog then the dog needs the tiger. Blue people are red. If someone is red and they see the bald eagle then the bald eagle is big. Red people are young. If someone sees the tiger then they see the cat. If someone needs the dog then they are blue. If someone is blue and young then they see the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-201_Q2", "context": "The cat needs the mouse. The cat sees the squirrel. The cat does not see the tiger. The mouse is red. The mouse does not visit the cat. The squirrel is big. The squirrel visits the tiger. The tiger is big. The tiger sees the mouse. The tiger visits the squirrel. If someone visits the tiger and the tiger needs the mouse then the mouse sees the squirrel. If someone is blue and red then they need the tiger. If someone needs the tiger then the tiger needs the mouse. If someone visits the squirrel then they are not blue. Red people are blue. If someone needs the cat and they are not big then they do not visit the squirrel. If someone sees the squirrel then they need the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse visits the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-27_Q2", "context": "The cat chases the cow. The cat chases the mouse. The cat is nice. The cat is red. The cat is rough. The cat needs the lion. The cat does not need the mouse. The cat visits the mouse. The cow does not chase the cat. The cow is big. The lion chases the cat. The lion chases the cow. The lion is young. The lion visits the cow. The mouse is big. The mouse is rough. If someone needs the lion then the lion does not need the mouse. If someone visits the cat then they are not big. If someone is rough then they visit the mouse. If the cow visits the lion and the cow is big then the lion does not need the cat. If someone visits the mouse then they are red. If someone chases the cow and they do not need the mouse then the cow is rough. If someone is red then they visit the lion. If someone is red and they chase the lion then the lion is red. If someone chases the mouse and they are red then the mouse needs the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow chases the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-174_Q13", "context": "Anne is green. Anne is round. Dave is red. Gary is green. Gary is young. Harry is red. Harry is young. All furry, young people are not green. All young, round people are blue. If someone is red and kind then they are round. Green, kind people are round. If someone is green and round then they are kind. All red people are kind. All furry people are red. All blue, young people are furry. If Anne is young then Anne is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-874_Q5", "context": "Bob is furry. Bob is not white. Fiona is rough. Gary is not big. Gary is rough. Gary is white. Harry is big. Harry is cold. Harry is furry. Harry is kind. Harry is rough. If Fiona is white then Fiona is kind. If something is big then it is not blue. If something is cold then it is kind. All white, furry things are big. All kind things are white. If something is rough then it is white. Kind, blue things are white. If something is white and kind then it is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-865_Q5", "context": "Anne is big. Anne is round. Dave is nice. Dave is rough. Fiona is rough. Gary is blue. Gary is furry. If Anne is rough then Anne is not furry. If Fiona is quiet then Fiona is big. If something is blue and not rough then it is not round. If something is nice and round then it is quiet. If Fiona is big and Fiona is nice then Fiona is round. If something is round then it is blue. Furry things are nice. All nice things are big. If something is rough then it is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-279_Q2", "context": "The bear is blue. The bear is round. The bear sees the cow. The cow is blue. The lion is rough. The lion likes the tiger. The lion sees the bear. The tiger is cold. The tiger is round. The tiger sees the bear. The tiger sees the cow. If someone is blue then they like the tiger. If the cow is blue then the cow chases the lion. If someone likes the tiger and the tiger sees the bear then they chase the lion. If someone likes the lion then the lion chases the tiger. If the cow is cold and the cow chases the bear then the bear chases the tiger. If someone chases the cow and they chase the lion then they chase the bear. If someone is rough then they chase the cow. If someone is cold then they are blue. If someone is blue and they chase the lion then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not see the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-707_Q10", "context": "The bear is big. The bear is blue. The bear is nice. The bear likes the mouse. The bear visits the lion. The bear visits the squirrel. The lion is blue. The mouse is cold. The mouse is green. The mouse visits the squirrel. The squirrel visits the lion. If something is cold and it visits the lion then it likes the squirrel. If something visits the squirrel then it likes the squirrel. If something eats the mouse and it visits the lion then it eats the bear. If something likes the squirrel then it likes the bear. If something likes the mouse and the mouse is blue then the mouse is nice. If something likes the lion then it is blue. If the mouse likes the bear then the mouse likes the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-617_Q6", "context": "The bald eagle is round. The bald eagle sees the bear. The bald eagle sees the dog. The bald eagle sees the squirrel. The bald eagle visits the dog. The bald eagle visits the squirrel. The bear is young. The bear needs the squirrel. The bear sees the squirrel. The dog is nice. The dog sees the bald eagle. The dog sees the bear. The dog visits the bald eagle. The squirrel is red. The squirrel is round. The squirrel needs the dog. If something visits the dog then the dog needs the squirrel. If something sees the squirrel and it is blue then the squirrel visits the dog. If something is blue then it visits the bear. If something sees the squirrel and the squirrel visits the bear then it visits the bald eagle. Round things are red. If something visits the dog and the dog sees the bald eagle then it is blue. If something is young and it sees the bald eagle then the bald eagle needs the bear. If something visits the bear then the bear sees the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not visit the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-893_Q2", "context": "The bald eagle is big. The bald eagle sees the lion. The bald eagle visits the rabbit. The lion eats the bald eagle. The lion is blue. The lion is cold. The lion visits the bald eagle. The lion visits the rabbit. The rabbit eats the tiger. The rabbit is big. The rabbit sees the bald eagle. The rabbit visits the tiger. The tiger is red. The tiger visits the bald eagle. If someone eats the bald eagle then the bald eagle visits the lion. If someone visits the bald eagle and the bald eagle sees the rabbit then the rabbit is red. If the lion is blue then the lion sees the tiger. If someone is big then they are cold. If someone is red then they visit the lion. If someone eats the bald eagle then they see the bald eagle. If someone eats the tiger and the tiger sees the lion then they visit the lion. If someone eats the lion and the lion sees the rabbit then the rabbit sees the bald eagle. If someone visits the lion and the lion sees the tiger then they see the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1175_Q9", "context": "Anne is rough. Bob is furry. Dave is big. Dave is nice. Dave is rough. Fiona is furry. Fiona is nice. If someone is smart and cold then they are nice. If someone is smart then they are cold. Rough, nice people are red. If someone is rough then they are smart. If Fiona is red then Fiona is big. All furry people are rough. If someone is big then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-1012_Q3", "context": "The cow chases the lion. The cow is big. The cow is nice. The cow likes the squirrel. The cow sees the squirrel. The dog is blue. The dog is rough. The dog likes the cow. The dog sees the lion. The lion is big. The lion likes the cow. The lion sees the dog. The lion sees the squirrel. The squirrel sees the dog. If someone is nice then they are blue. If someone sees the lion then they chase the cow. If someone likes the squirrel and they see the lion then the squirrel likes the lion. If someone is blue and they like the cow then the cow is big. All blue people are young. If someone likes the lion and they chase the cow then the cow chases the lion. If someone chases the cow and the cow chases the lion then they like the squirrel. If someone likes the lion then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-976_Q4", "context": "Charlie is not quiet. Erin is big. Erin is white. Erin is young. Gary is young. Harry is furry. Harry is nice. White, furry people are big. All nice people are big. If someone is quiet and furry then they are white. If someone is young then they are quiet. All big, furry people are round. If someone is quiet then they are furry. If Erin is round then Erin is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-41_Q22", "context": "The bald eagle sees the lion. The cow eats the lion. The cow eats the mouse. The cow sees the mouse. The lion is kind. The lion needs the mouse. The lion sees the bald eagle. The mouse is kind. The mouse needs the cow. The mouse needs the lion. The mouse sees the bald eagle. The mouse sees the cow. If someone is big then they eat the cow. If someone is blue then they see the mouse. If someone is cold and they see the mouse then they eat the cow. If someone is cold then they eat the mouse. If someone needs the mouse and the mouse eats the cow then the cow needs the lion. All cold people are big. If the lion eats the bald eagle then the bald eagle sees the lion. If the mouse is kind then the mouse needs the bald eagle. If someone needs the lion then they are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow sees the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1213_Q23", "context": "Anne is white. Bob is round. Erin is green. Erin is red. Erin is not round. Erin is white. Harry is young. All red, round people are quiet. If someone is young then they are white. Round people are young. If someone is round and smart then they are not red. All white people are red. Quiet people are green. If someone is red and not white then they are not green.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-368_Q14", "context": "The bald eagle eats the cat. The bald eagle eats the dog. The bald eagle is not green. The bald eagle is not kind. The bald eagle does not like the dog. The bald eagle sees the cat. The bald eagle does not see the dog. The cat is blue. The cat is round. The dog eats the bald eagle. The dog eats the cat. The dog is round. The dog likes the cat. The lion eats the bald eagle. The lion eats the cat. The lion does not see the cat. If the dog sees the cat then the dog likes the bald eagle. If something is round then it likes the lion. If the cat likes the bald eagle and the lion does not see the cat then the lion is kind. If something is kind then it is round. If something likes the lion then it likes the bald eagle. If something eats the lion then it likes the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle likes the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-924_Q11", "context": "Anne is red. Anne is white. Bob is furry. Bob is red. Fiona is big. Fiona is furry. Fiona is green. Gary is cold. Gary is furry. Gary is green. Green, furry people are nice. All green, nice people are big. Big, green people are furry. All furry people are nice. All big, green people are furry. Big, red people are cold. If someone is nice and red then they are green. Big, cold people are white. If someone is green and cold then they are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-422_Q6", "context": "Charlie is big. Charlie is green. Charlie is nice. Charlie is not quiet. Dave is big. Dave is quiet. Fiona is not rough. Gary is big. Gary is green. Gary is nice. Gary is rough. If someone is quiet and rough then they are nice. Big people are nice. If Charlie is kind and Charlie is nice then Charlie is not big. If someone is rough and nice then they are green. All green, rough people are red. If Dave is kind then Dave is rough. If someone is nice and quiet then they are kind. If Fiona is quiet and Fiona is rough then Fiona is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-889_Q15", "context": "The cat is red. The cat does not like the lion. The dog is nice. The dog is red. The dog is young. The lion likes the dog. The mouse is not round. The mouse likes the cat. The mouse likes the dog. The mouse needs the dog. The mouse visits the cat. The mouse visits the lion. If someone likes the lion then the lion likes the cat. All nice people are round. If someone likes the dog and the dog needs the lion then the lion is nice. If someone is round then they need the lion. If someone likes the lion and they need the mouse then the mouse is kind. If someone likes the dog and they are not red then they do not need the dog. If the dog is red then the dog likes the mouse. If the cat needs the dog and the cat does not need the lion then the dog does not visit the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not need the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-954_Q22", "context": "The lion needs the rabbit. The mouse is rough. The mouse is young. The mouse visits the lion. The rabbit needs the mouse. The rabbit needs the squirrel. The squirrel is not blue. If something is young then it needs the lion. If something is round then it needs the lion. If something needs the lion then it needs the rabbit. If something is rough and it visits the mouse then the mouse is red. If the rabbit visits the squirrel and the squirrel chases the lion then the squirrel needs the rabbit. If something is red then it is not blue. If something is young and it does not need the mouse then it visits the rabbit. If something needs the rabbit then it visits the mouse. If the lion visits the mouse and the lion is blue then the mouse chases the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel chases the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-254_Q14", "context": "The bald eagle visits the cow. The cow chases the rabbit. The cow does not visit the dog. The dog is not big. The dog is young. The rabbit sees the dog. The rabbit visits the cow. If someone sees the dog then they visit the dog. If someone visits the bald eagle and they are round then the bald eagle chases the cow. If someone is round then they see the rabbit. If someone sees the rabbit then the rabbit is round. If someone chases the dog then the dog visits the bald eagle. If the dog is young then the dog does not visit the bald eagle. If someone visits the dog then the dog is round. If the dog is nice then the dog sees the cow. If the rabbit sees the bald eagle and the bald eagle chases the cow then the cow sees the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle visits the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1129_Q15", "context": "Anne is big. Anne is quiet. Anne is not smart. Bob is blue. Bob is quiet. Dave is blue. Fiona is big. Fiona is cold. Fiona is quiet. Fiona is smart. Smart people are big. Blue, red people are big. If someone is cold and not blue then they are red. All cold people are smart. Blue people are cold. If Bob is big and Bob is cold then Bob is not red. If someone is smart and not red then they are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-722_Q7", "context": "The bald eagle eats the lion. The bald eagle eats the tiger. The bald eagle is big. The bald eagle is round. The bald eagle likes the lion. The cow eats the lion. The cow likes the bald eagle. The cow sees the tiger. The lion eats the cow. The tiger eats the lion. The tiger is red. If someone eats the cow then the cow sees the bald eagle. If someone likes the bald eagle and they eat the bald eagle then they like the cow. If someone likes the lion and the lion is cold then they see the bald eagle. All young people are cold. If someone likes the bald eagle and they see the bald eagle then the bald eagle is red. If someone is red then they eat the bald eagle. If someone eats the lion then they like the bald eagle. If someone likes the cow then they like the tiger. If the lion sees the cow then the cow eats the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger likes the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1346_Q8", "context": "Anne is furry. Anne is quiet. Anne is red. Charlie is quiet. Dave is furry. Fiona is furry. Fiona is red. All big people are rough. If Fiona is big then Fiona is red. All young, red people are quiet. Red people are furry. All rough people are young. If someone is big then they are quiet. Quiet people are big. If Charlie is furry and Charlie is big then Charlie is quiet. Young people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-373_Q19", "context": "The bald eagle does not chase the cow. The bald eagle eats the tiger. The bald eagle is kind. The cat chases the cow. The cat eats the bald eagle. The cow chases the bald eagle. The cow chases the cat. The cow eats the bald eagle. The cow eats the cat. The cow is not kind. The cow is red. The tiger is not big. The tiger is rough. The tiger does not visit the cat. If someone eats the cat and they do not eat the tiger then the tiger does not chase the cat. If someone is kind and they visit the cow then they do not visit the tiger. If someone chases the cat then they visit the tiger. If someone visits the tiger then they visit the bald eagle. If the tiger eats the bald eagle then the tiger eats the cow. If someone visits the tiger and they visit the bald eagle then the bald eagle chases the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not visit the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-708_Q1", "context": "Charlie is furry. Erin is furry. Erin is young. Gary is furry. Gary is nice. Gary is red. Harry is red. Nice people are cold. All kind people are not red. If Charlie is rough and Charlie is furry then Charlie is red. All cold people are furry. If Erin is cold then Erin is kind. If someone is young then they are rough. If someone is rough then they are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-884_Q11", "context": "Anne is not furry. Anne is white. Bob is blue. Bob is cold. Bob is young. Erin is blue. Harry is not young. If someone is rough then they are cold. If someone is rough then they are white. If Harry is red then Harry is cold. All white people are red. Red, rough people are young. If someone is blue then they are rough. If Anne is not red then Anne is young. Cold, young people are not furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-1026_Q6", "context": "The bear is green. The bear visits the cow. The cat is green. The cat is nice. The cow likes the cat. The cow visits the lion. The lion visits the cat. If someone visits the cow then the cow eats the lion. If someone eats the bear then the bear visits the cat. If someone is young then they eat the bear. If someone is blue then they eat the bear. If someone likes the lion then they are young. If the lion is nice then the lion eats the bear. If someone eats the lion then they like the lion. If someone is green then they eat the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not like the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-313_Q5", "context": "The bear likes the cow. The cat is blue. The cat is red. The cat is young. The cat needs the cow. The cat needs the rabbit. The cat sees the bear. The cow is big. The cow likes the bear. The cow likes the cat. The cow likes the rabbit. The cow needs the cat. The cow needs the rabbit. The rabbit is blue. The rabbit needs the cow. The rabbit sees the cat. If the cow sees the bear and the cow is red then the bear is blue. If something likes the cow then it likes the cat. If something sees the cow and the cow needs the cat then it is blue. If something sees the cow then the cow sees the bear. If something needs the cow and it sees the bear then it is round. If something needs the bear then the bear is young. If something sees the bear then it sees the cow. If something likes the cow then it sees the bear. If something is blue and it needs the cat then it sees the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow sees the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1321_Q4", "context": "Bob is young. Dave is blue. Erin is blue. Erin is kind. Erin is white. Erin is young. Fiona is blue. Fiona is kind. Fiona is quiet. Fiona is white. If someone is kind then they are white. Young people are quiet. If someone is kind and white then they are blue. All quiet, kind people are white. If someone is quiet then they are kind. If someone is white then they are young. All blue, kind people are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-638_Q3", "context": "The bear chases the cow. The bear is cold. The bear is young. The cat eats the cow. The cat eats the squirrel. The cow is red. The squirrel eats the cow. If someone eats the squirrel and the squirrel is rough then the squirrel eats the cow. If someone eats the squirrel then they chase the squirrel. If someone chases the squirrel then they chase the bear. If someone visits the bear and they eat the bear then they are cold. If someone eats the cat and the cat chases the cow then the cat visits the cow. If someone chases the bear then the bear eats the squirrel. If someone chases the bear and the bear chases the squirrel then they chase the cat. If the cat is young and the cat is rough then the cat is red. If someone eats the cow then they are big.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-908_Q4", "context": "The bear chases the squirrel. The bear is red. The bear likes the dog. The dog chases the squirrel. The dog is red. The dog is not rough. The dog is round. The dog is young. The dog likes the bear. The squirrel visits the tiger. The tiger chases the squirrel. If someone is young then they do not chase the bear. If someone chases the tiger and the tiger chases the bear then the bear is not red. If someone visits the dog and they chase the squirrel then the squirrel is red. If someone likes the dog then they are nice. If someone visits the squirrel then the squirrel likes the tiger. If someone chases the bear and the bear is red then the bear likes the tiger. If someone likes the tiger then the tiger visits the dog. If someone is nice then they visit the squirrel. If the squirrel is nice then the squirrel does not chase the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog chases the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1298_Q7", "context": "Anne is green. Anne is nice. Anne is red. Anne is smart. Anne is white. Bob is green. Bob is nice. Bob is round. Bob is white. Dave is round. Gary is green. Gary is nice. Gary is red. Gary is white. Green, red things are smart. Round things are cold. Cold, smart things are round. All smart things are cold. Red, white things are nice. All cold, round things are green. White, green things are red. All green things are smart. All smart things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-545_Q20", "context": "The bear sees the squirrel. The bear visits the squirrel. The dog is blue. The dog needs the tiger. The dog sees the squirrel. The squirrel is big. The squirrel needs the dog. The squirrel visits the tiger. The tiger sees the squirrel. The tiger visits the dog. If the squirrel needs the tiger then the tiger is cold. If the dog sees the squirrel and the dog sees the bear then the squirrel is blue. If someone sees the tiger then the tiger sees the dog. If someone is young then they see the bear. If the squirrel needs the dog and the dog sees the squirrel then the dog needs the squirrel. Blue people are young. If someone visits the tiger then they are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel sees the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-878_Q8", "context": "Charlie is red. Charlie is white. Fiona is green. Gary is red. Gary is white. Harry is kind. Harry is not quiet. If Gary is quiet and Gary is red then Gary is cold. If something is quiet and not white then it is nice. If something is green and kind then it is nice. If something is kind and not red then it is green. Red, kind things are green. If something is red then it is quiet. If Charlie is nice then Charlie is cold. Cold, quiet things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-374_Q2", "context": "Charlie is red. Dave is blue. Dave is furry. Dave is smart. Fiona is furry. Fiona is smart. Gary is red. If something is blue then it is furry. All blue things are red. Quiet things are smart. If something is cold and blue then it is quiet. Young, cold things are blue. All red things are furry. All blue, red things are cold. If something is furry then it is blue. If Fiona is young then Fiona is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-800_Q11", "context": "Anne is nice. Dave is nice. Dave is rough. Gary is nice. Gary is not smart. Harry is big. Harry is round. All white people are round. If Dave is big then Dave is white. All cold, round people are rough. Smart, white people are cold. If Dave is round and Dave is big then Dave is smart. If someone is nice then they are big. All rough, white people are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-990_Q2", "context": "The bear is green. The lion eats the squirrel. The lion eats the tiger. The lion sees the squirrel. The squirrel eats the tiger. The tiger eats the bear. The tiger eats the squirrel. The tiger is young. The tiger sees the bear. The tiger visits the bear. If something sees the squirrel and it is young then the squirrel is green. If something eats the squirrel then it is rough. If the squirrel sees the bear and the bear sees the tiger then the bear sees the lion. Green things are rough. If something sees the squirrel then it eats the tiger. All rough things are young. If something is green then it is big. If something visits the squirrel and it visits the bear then the squirrel visits the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not eat the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-88_Q12", "context": "Anne is quiet. Erin is green. Erin is kind. Erin is quiet. Erin is rough. Fiona is kind. Fiona is nice. Fiona is quiet. Fiona is red. Harry is nice. If someone is rough then they are green. If someone is nice then they are green. If someone is quiet and not nice then they are cold. All quiet people are rough. Kind people are quiet. If someone is green then they are kind. If someone is rough then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-597_Q5", "context": "The bald eagle eats the lion. The bald eagle needs the rabbit. The bald eagle sees the dog. The bald eagle sees the rabbit. The dog eats the bald eagle. The dog eats the rabbit. The dog needs the lion. The lion needs the bald eagle. The lion needs the dog. The rabbit eats the lion. The rabbit is green. The rabbit is round. If something sees the rabbit then it eats the rabbit. If something sees the lion and it is blue then the lion sees the dog. If something eats the rabbit then it eats the dog. If something is green and it sees the lion then the lion eats the rabbit. If something is rough then it eats the lion. If something eats the dog and it eats the lion then the lion sees the rabbit. If something is rough and it sees the lion then the lion is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle eats the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-392_Q17", "context": "The bald eagle likes the mouse. The mouse likes the bald eagle. The rabbit likes the mouse. The tiger chases the mouse. The tiger chases the rabbit. The tiger is big. The tiger sees the bald eagle. If the rabbit likes the tiger and the tiger sees the bald eagle then the rabbit is rough. If someone sees the rabbit then the rabbit likes the tiger. If someone likes the bald eagle and the bald eagle likes the rabbit then the rabbit is big. If someone likes the bald eagle then the bald eagle is rough. If the mouse chases the rabbit then the rabbit chases the tiger. If the rabbit sees the bald eagle then the bald eagle chases the rabbit. If someone is young and they chase the mouse then they see the mouse. If someone likes the mouse and they are rough then they see the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not see the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-800_Q12", "context": "The cow chases the tiger. The cow eats the rabbit. The cow is red. The cow is young. The cow sees the squirrel. The rabbit eats the cow. The rabbit is young. The squirrel is kind. The squirrel is red. The tiger is red. The tiger is young. The tiger sees the squirrel. If the cow sees the squirrel and the squirrel eats the rabbit then the rabbit sees the tiger. If something sees the tiger then the tiger is round. If something chases the squirrel then the squirrel eats the rabbit. If something is round then it sees the tiger. If something is big then it chases the squirrel. If something eats the rabbit then the rabbit chases the squirrel. If the tiger eats the cow and the cow sees the squirrel then the squirrel is young.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not see the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-1028_Q24", "context": "The bald eagle is not rough. The cat is blue. The cat is round. The cat sees the bald eagle. The squirrel is blue. The squirrel does not see the bald eagle. The tiger chases the bald eagle. The tiger chases the cat. The tiger is rough. The tiger sees the cat. If something sees the tiger and it likes the tiger then it chases the squirrel. If something chases the tiger then it is round. If something chases the squirrel and it is not red then it is rough. If something is round then it likes the tiger. If something is big and it likes the tiger then the tiger likes the squirrel. If something likes the tiger then the tiger sees the squirrel. If something sees the squirrel then the squirrel chases the tiger. If something likes the bald eagle then the bald eagle does not see the squirrel. If something is rough and it does not see the squirrel then the squirrel sees the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel chases the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-893_Q12", "context": "The bald eagle is big. The bald eagle sees the lion. The bald eagle visits the rabbit. The lion eats the bald eagle. The lion is blue. The lion is cold. The lion visits the bald eagle. The lion visits the rabbit. The rabbit eats the tiger. The rabbit is big. The rabbit sees the bald eagle. The rabbit visits the tiger. The tiger is red. The tiger visits the bald eagle. If someone eats the bald eagle then the bald eagle visits the lion. If someone visits the bald eagle and the bald eagle sees the rabbit then the rabbit is red. If the lion is blue then the lion sees the tiger. If someone is big then they are cold. If someone is red then they visit the lion. If someone eats the bald eagle then they see the bald eagle. If someone eats the tiger and the tiger sees the lion then they visit the lion. If someone eats the lion and the lion sees the rabbit then the rabbit sees the bald eagle. If someone visits the lion and the lion sees the tiger then they see the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not see the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-547_Q4", "context": "Charlie is quiet. Dave is quiet. Dave is young. Erin is blue. Erin is nice. Erin is quiet. Fiona is not blue. Fiona is cold. Fiona is nice. Fiona is round. Fiona is young. If someone is kind then they are round. All kind, cold people are blue. If someone is nice and not young then they are not blue. If Fiona is kind then Fiona is blue. If Dave is kind and Dave is blue then Dave is not nice. Round people are cold. If Dave is young then Dave is kind. If Erin is kind and Erin is blue then Erin is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-698_Q23", "context": "The bear is cold. The bear is kind. The bear likes the tiger. The dog is not green. The dog sees the squirrel. The squirrel eats the tiger. The squirrel is cold. The squirrel is kind. The squirrel likes the bear. The squirrel does not like the dog. The squirrel likes the tiger. The squirrel sees the tiger. The tiger eats the bear. The tiger eats the squirrel. The tiger does not like the dog. The tiger sees the bear. If something sees the squirrel and it likes the tiger then it eats the squirrel. If something eats the squirrel then it sees the bear. If the dog sees the tiger and the dog eats the bear then the bear is rough. If something sees the bear then the bear eats the tiger. If something eats the tiger then it sees the dog. If something sees the tiger and the tiger likes the squirrel then the tiger eats the bear. If something likes the dog and it is not cold then the dog eats the squirrel. If something sees the dog and it is cold then it sees the squirrel. If something is cold and it does not see the dog then the dog likes the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-924_Q8", "context": "The bald eagle is cold. The cat is nice. The cat needs the cow. The cow is big. The cow needs the bald eagle. The cow visits the bald eagle. The dog chases the bald eagle. If someone is nice then they chase the cow. Big people are nice. If the cow needs the bald eagle and the cow is cold then the bald eagle is nice. If someone is blue then they need the cat. If someone needs the bald eagle then the bald eagle is blue. All nice people are cold. Cold, nice people are big. If someone is big then they chase the dog. If someone visits the cow then the cow visits the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not chase the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-362_Q5", "context": "The bear eats the rabbit. The bear is cold. The bear is young. The bear needs the rabbit. The bear needs the tiger. The dog chases the bear. The dog chases the rabbit. The dog is big. The dog needs the tiger. The rabbit is young. The rabbit needs the dog. The tiger chases the dog. If the bear is big then the bear needs the tiger. If something needs the tiger then it chases the tiger. If something chases the tiger and it needs the dog then the dog is blue. If something chases the bear then it eats the dog. If something chases the dog and the dog is big then the dog is young. If something is young then it chases the bear. If something chases the rabbit and the rabbit eats the dog then the dog is round. If something eats the dog and it is round then it is big. If something is round and it needs the tiger then the tiger is young.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear eats the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-577_Q18", "context": "Bob is smart. Bob is young. Charlie is cold. Charlie is round. Charlie is white. Charlie is young. Gary is smart. Gary is white. Harry is rough. Harry is smart. Harry is white. All red people are round. Round, smart people are cold. If someone is cold and young then they are white. Red people are round. All round, young people are red. If someone is smart then they are rough. Rough, young people are red. If Bob is round then Bob is smart. If Charlie is white and Charlie is rough then Charlie is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1321_Q13", "context": "Bob is young. Dave is blue. Erin is blue. Erin is kind. Erin is white. Erin is young. Fiona is blue. Fiona is kind. Fiona is quiet. Fiona is white. If someone is kind then they are white. Young people are quiet. If someone is kind and white then they are blue. All quiet, kind people are white. If someone is quiet then they are kind. If someone is white then they are young. All blue, kind people are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-471_Q14", "context": "Anne is white. Charlie is cold. Charlie is round. Charlie is young. Gary is kind. Gary is nice. Gary is round. Gary is white. Gary is young. Harry is blue. Harry is cold. Harry is kind. Harry is white. Harry is young. White, kind things are blue. If something is white then it is kind. Nice things are kind. All blue, nice things are young. All blue, white things are nice. If something is round and not nice then it is not cold. Blue, young things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-99_Q16", "context": "Bob is green. Bob is white. Dave is blue. Dave is cold. Dave is green. Dave is white. Fiona is cold. Fiona is green. Fiona is white. Fiona is young. Gary is kind. Gary is white. Cold, white people are furry. If someone is furry then they are green. All cold people are young. If someone is kind and young then they are blue. If someone is furry then they are blue. All white, kind people are young. All kind, blue people are cold. If Bob is blue then Bob is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-640_Q22", "context": "The bear is kind. The bear visits the mouse. The cow sees the lion. The cow visits the mouse. The lion is round. The lion sees the bear. The lion visits the bear. The lion visits the mouse. The mouse needs the bear. The mouse sees the bear. The mouse sees the cow. If something needs the bear then it is green. If the bear sees the lion then the lion is big. If something sees the mouse and the mouse sees the cow then the mouse needs the cow. If something needs the cow then it is round. If something is green then it sees the mouse. If something is green then it visits the bear. If something sees the mouse and it sees the bear then the bear is green. If something sees the cow and it is round then the cow visits the lion. If something is blue and it visits the cow then the cow sees the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion sees the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-87_Q5", "context": "The cat is green. The cat needs the rabbit. The mouse chases the cat. The mouse is cold. The mouse is kind. The mouse needs the cat. The mouse needs the rabbit. The mouse visits the cat. The mouse visits the rabbit. The mouse visits the tiger. The rabbit needs the cat. The tiger is green. The tiger needs the mouse. The tiger needs the rabbit. The tiger visits the mouse. The tiger visits the rabbit. If something needs the cat then the cat is green. If something chases the tiger then it needs the tiger. If something needs the cat then it chases the mouse. If the tiger needs the mouse and the tiger visits the cat then the tiger is round. If something is round then it chases the tiger. If something is kind and it chases the cat then it needs the tiger. If something visits the tiger then the tiger needs the cat. If something is green and it chases the mouse then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger chases the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-831_Q11", "context": "The bald eagle chases the cat. The bald eagle chases the dog. The bald eagle does not eat the cat. The bald eagle eats the dog. The cat does not chase the bald eagle. The cat eats the bald eagle. The cat is young. The cat sees the bald eagle. The cat sees the tiger. The dog chases the cat. The dog eats the bald eagle. The dog is blue. The tiger chases the bald eagle. The tiger chases the cat. If something is young then it does not chase the cat. If the cat chases the tiger then the tiger is nice. Nice things are big. If something chases the dog and the dog eats the bald eagle then it is nice. If something is big and it chases the cat then the cat chases the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-780_Q1", "context": "Anne is red. Bob is kind. Bob is young. Gary is cold. Gary is kind. Gary is quiet. Gary is red. Gary is round. Gary is young. Harry is kind. Harry is quiet. Harry is young. Cold things are round. Furry, young things are cold. If Gary is red then Gary is young. If something is furry and quiet then it is cold. Quiet things are furry. All young, round things are red. If Bob is young then Bob is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-228_Q11", "context": "The bear is blue. The bear is green. The bear is rough. The bear likes the cow. The bear likes the rabbit. The bear sees the squirrel. The cow likes the bear. The cow visits the bear. The rabbit likes the bear. The rabbit sees the bear. The squirrel is green. The squirrel likes the cow. The squirrel sees the bear. The squirrel sees the rabbit. If the rabbit sees the bear and the rabbit sees the squirrel then the bear likes the squirrel. If someone is green and they see the bear then they like the rabbit. If someone sees the cow then the cow visits the rabbit. If someone likes the bear and the bear visits the cow then the bear sees the rabbit. If the rabbit sees the bear then the rabbit likes the squirrel. If someone sees the bear and they see the rabbit then they are big. If someone visits the bear then the bear visits the cow. If someone visits the rabbit then they like the rabbit. If the bear sees the rabbit and the bear visits the cow then the rabbit sees the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow likes the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-968_Q4", "context": "The bald eagle chases the squirrel. The bald eagle is rough. The bald eagle is round. The dog chases the squirrel. The dog is not blue. The dog visits the squirrel. The squirrel chases the tiger. The squirrel is round. The squirrel does not visit the dog. The tiger is round. The tiger visits the squirrel. If someone chases the squirrel then the squirrel is not kind. If someone likes the dog then the dog is rough. If someone is rough and they visit the tiger then the tiger does not chase the squirrel. If someone visits the tiger and they visit the dog then the tiger likes the squirrel. If someone chases the dog then the dog chases the tiger. If someone visits the bald eagle then they like the dog. If someone chases the dog and the dog is red then they chase the tiger. If someone is rough then they visit the bald eagle. If the squirrel likes the dog and the dog likes the tiger then the squirrel visits the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not visit the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-361_Q4", "context": "Dave is furry. Dave is smart. Erin is blue. Erin is cold. Erin is smart. Fiona is not furry. Fiona is round. Gary is cold. Gary is furry. Gary is round. Gary is smart. If Dave is furry then Dave is white. If someone is white then they are cold. Kind people are furry. All smart, cold people are round. Round, white people are blue. If someone is blue and white then they are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-323_Q12", "context": "The bald eagle likes the cow. The cat eats the cow. The cat is blue. The cat likes the cow. The cat likes the rabbit. The cat needs the rabbit. The cow is not red. The cow needs the cat. The cow needs the rabbit. The rabbit is nice. The rabbit is round. If something needs the bald eagle and the bald eagle is green then the bald eagle is nice. If something eats the rabbit and the rabbit is not blue then the rabbit eats the cat. If something eats the rabbit then it needs the bald eagle. If something is red and it likes the bald eagle then it needs the rabbit. If something is red then it eats the rabbit. If something likes the cow then it is red. If something needs the bald eagle then the bald eagle is green. If the bald eagle is green and the bald eagle is not nice then the bald eagle eats the cat. If something is red and it does not eat the cat then the cat is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-356_Q2", "context": "The cow eats the mouse. The cow eats the squirrel. The cow likes the rabbit. The cow likes the squirrel. The mouse is cold. The mouse likes the rabbit. The mouse visits the cow. The rabbit is big. The rabbit likes the mouse. The rabbit visits the mouse. The squirrel eats the cow. The squirrel eats the mouse. The squirrel is green. The squirrel is rough. The squirrel likes the cow. The squirrel likes the mouse. If something likes the cow then it visits the mouse. If something likes the cow then the cow is green. If something eats the squirrel and the squirrel likes the rabbit then it eats the rabbit. If something is cold then it likes the cow. If something visits the squirrel then the squirrel likes the rabbit. If the cow likes the rabbit then the cow is cold. If something likes the rabbit and it visits the mouse then the mouse visits the squirrel. If something is rough and it likes the squirrel then the squirrel eats the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not visit the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-576_Q8", "context": "The dog is not red. The lion is red. The lion is rough. The lion sees the dog. The rabbit is not green. The rabbit does not like the squirrel. The rabbit needs the dog. The rabbit sees the dog. The squirrel is blue. The squirrel needs the lion. The squirrel sees the lion. If the lion likes the dog then the dog sees the squirrel. If something likes the dog and the dog needs the rabbit then the rabbit needs the squirrel. If something sees the squirrel and it likes the rabbit then the rabbit needs the dog. If the squirrel needs the rabbit then the squirrel likes the rabbit. If something is green and it needs the dog then it sees the lion. If something is rough then it needs the squirrel. If something likes the lion and the lion needs the squirrel then the squirrel is rough. If something needs the squirrel then it likes the lion. If the dog does not need the squirrel then the dog sees the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-897_Q11", "context": "The bald eagle chases the tiger. The bald eagle is big. The bald eagle is green. The cow is big. The cow is young. The cow likes the tiger. The rabbit is round. The rabbit needs the cow. The rabbit needs the tiger. The tiger likes the cow. If someone likes the tiger and the tiger is green then they chase the rabbit. If someone is green then they chase the cow. If someone chases the rabbit and they like the tiger then the tiger needs the cow. If someone is big and they chase the bald eagle then the bald eagle needs the tiger. If someone is green and they chase the cow then they need the cow. If someone is big and they need the cow then the cow is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow needs the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-357_Q2", "context": "The bald eagle is red. The bald eagle needs the cat. The bald eagle needs the squirrel. The bald eagle sees the squirrel. The cat eats the squirrel. The cow eats the cat. The cow eats the squirrel. The cow needs the bald eagle. The cow sees the bald eagle. The cow sees the cat. The cow sees the squirrel. The squirrel is kind. The squirrel is red. The squirrel needs the cat. If something is green then it eats the cat. If something sees the cow then it sees the cat. If something sees the squirrel then it is green. If something sees the bald eagle and the bald eagle is young then the bald eagle is big. If something needs the cat and it eats the cat then the cat sees the squirrel. If something is red and it eats the cat then it sees the bald eagle. If something needs the bald eagle then it needs the squirrel. If the bald eagle is red and the bald eagle sees the cow then the cow is young.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not need the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1102_Q11", "context": "Charlie is kind. Erin is blue. Erin is furry. Erin is kind. Erin is quiet. Gary is furry. Gary is red. Harry is big. Harry is furry. Harry is kind. Harry is nice. Harry is quiet. Nice, big things are quiet. If something is blue then it is big. All big, red things are kind. Big things are kind. Red, kind things are nice. If something is red then it is blue. If something is quiet and kind then it is big. If Erin is nice and Erin is big then Erin is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-513_Q12", "context": "Anne is blue. Anne is red. Anne is smart. Dave is big. Dave is cold. Dave is nice. Fiona is smart. Harry is blue. Harry is cold. Harry is nice. Harry is red. Harry is smart. Kind things are nice. All cold, nice things are blue. Cold things are kind. Smart things are cold. All blue, smart things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-997_Q4", "context": "Charlie is cold. Charlie is nice. Charlie is rough. Charlie is round. Charlie is smart. Dave is round. Dave is white. Fiona is rough. Fiona is smart. Fiona is white. Gary is smart. Rough, round things are cold. All smart things are round. All big, nice things are rough. If Charlie is white then Charlie is nice. If something is nice and smart then it is big. If something is round then it is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-99_Q13", "context": "The bald eagle is cold. The bald eagle sees the bear. The bear is big. The bear is not cold. The bear is green. The bear likes the cat. The cat chases the mouse. The cat is big. The cat is young. The cat likes the bald eagle. The mouse likes the cat. If something chases the cat and it likes the bald eagle then the bald eagle is not green. If something sees the cat then it does not chase the mouse. If something is cold then it sees the cat. If something likes the cat and it chases the bald eagle then it is not young. If something likes the bald eagle and the bald eagle does not chase the mouse then the mouse is big. If the cat chases the bear then the cat likes the mouse. If something chases the mouse and it is not green then it chases the bear. If the mouse is big then the mouse chases the bald eagle. If something is young and it likes the mouse then it chases the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not see the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1054_Q8", "context": "Anne is red. Anne is rough. Charlie is not blue. Charlie is green. Charlie is white. Gary is not blue. Gary is furry. Gary is not green. Gary is white. Harry is not blue. Harry is furry. Harry is nice. Harry is not red. Harry is white. Red people are blue. All furry, nice people are not rough. Green people are not nice. If Anne is blue and Anne is white then Anne is green. Furry, blue people are white. Green people are white. If Gary is green then Gary is not blue. Blue, red people are furry. If Harry is not nice then Harry is white.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-645_Q3", "context": "The bald eagle is green. The bald eagle is red. The cow is nice. The cow likes the tiger. The cow needs the tiger. The mouse is nice. The mouse needs the bald eagle. The mouse sees the bald eagle. The tiger likes the bald eagle. The tiger needs the cow. The tiger needs the mouse. If someone is young then they need the tiger. If the tiger is young then the tiger is green. If someone needs the tiger then the tiger sees the bald eagle. If someone sees the tiger and the tiger likes the bald eagle then the bald eagle sees the tiger. If someone is green and they see the bald eagle then they are cold. If someone is green and they like the tiger then they see the bald eagle. If the tiger is cold then the tiger is young. If someone needs the tiger then they like the tiger. If someone needs the mouse then they are green.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger sees the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1199_Q6", "context": "Anne is cold. Anne is rough. Anne is smart. Anne is white. Bob is young. Erin is cold. Erin is not rough. Erin is not round. Erin is smart. Erin is white. Erin is young. Gary is round. If Gary is white then Gary is smart. All smart, young people are cold. If someone is young then they are white. Round people are young. All young, round people are rough. Round people are rough. If someone is young and round then they are rough. If someone is cold and white then they are kind. All kind people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-596_Q16", "context": "Anne is not rough. Bob is blue. Erin is not furry. Erin is red. Gary is big. Gary is not cold. Gary is furry. If something is blue then it is rough. Red things are rough. If Gary is rough then Gary is not blue. Rough things are red. Big things are quiet. All cold things are big. If something is red then it is big. If something is blue and not rough then it is big. Quiet, big things are not cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-899_Q3", "context": "Erin is nice. Erin is white. Fiona is quiet. Gary is white. Harry is cold. Harry is green. Harry is nice. Harry is quiet. Harry is round. Harry is white. All quiet people are round. If someone is quiet then they are round. If Erin is round then Erin is green. Nice people are cold. If someone is quiet and nice then they are cold. If someone is round then they are nice. If someone is cold then they are quiet. If Gary is quiet then Gary is not white. If someone is nice and green then they are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-311_Q23", "context": "The bald eagle eats the cow. The bald eagle is round. The bald eagle likes the cow. The cow eats the bald eagle. The cow likes the dog. The dog eats the bald eagle. The dog is rough. The dog likes the bald eagle. The dog visits the bald eagle. The dog visits the cow. The mouse visits the dog. If someone likes the mouse then they eat the cow. If someone likes the bald eagle then the bald eagle visits the mouse. If the mouse likes the dog then the mouse eats the bald eagle. If someone visits the bald eagle then the bald eagle is blue. If the mouse eats the bald eagle then the bald eagle is green. If someone is blue then they eat the mouse. If someone likes the cow and they visit the dog then they are blue. Round people are green. If someone eats the mouse then the mouse likes the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-425_Q24", "context": "The bald eagle is nice. The bald eagle does not see the bear. The bald eagle sees the cat. The bear does not eat the cat. The bear is nice. The bear is red. The bear likes the bald eagle. The cat eats the lion. The cat sees the bear. The lion eats the cat. If someone sees the cat and they eat the cat then they are not red. If someone sees the bald eagle and the bald eagle is nice then the bald eagle does not see the lion. If someone eats the bald eagle and they are green then the bald eagle sees the bear. If someone sees the cat then they are green. If the cat eats the bear and the bear is nice then the bear is not young. If someone sees the bear and they are green then the bear eats the lion. If someone eats the lion then they see the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat likes the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-307_Q13", "context": "The bald eagle chases the tiger. The bald eagle eats the tiger. The bald eagle is not cold. The cow is not big. The cow is green. The dog does not chase the tiger. The tiger chases the cow. The tiger is not big. The tiger is young. The tiger visits the bald eagle. The tiger visits the cow. If someone eats the tiger and they are green then they do not eat the cow. If someone visits the dog then they eat the cow. If someone chases the cow then they visit the dog. If someone eats the tiger and they do not chase the cow then they eat the dog. If the tiger eats the cow and the cow visits the tiger then the tiger is not green. If someone eats the cow then the cow visits the dog. If someone eats the tiger and they chase the dog then the dog is not green. If someone eats the cow then they visit the cow. If the cow chases the tiger and the cow chases the dog then the cow eats the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not visit the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-742_Q8", "context": "Anne is furry. Anne is red. Anne is smart. Bob is red. Dave is blue. Dave is kind. Erin is white. Furry people are kind. Furry, blue people are kind. All red people are furry. All nice, red people are smart. Kind, nice people are smart. All furry people are kind. White people are kind. If someone is white and red then they are nice. If Bob is kind then Bob is white.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1243_Q16", "context": "Anne is big. Anne is blue. Anne is furry. Anne is green. Anne is rough. Anne is smart. Anne is white. Erin is green. Fiona is big. Fiona is blue. Fiona is furry. Fiona is rough. Gary is big. Gary is green. Gary is rough. Gary is white. White, smart things are rough. If Erin is blue then Erin is big. Big things are green. If something is green and blue then it is furry. If Erin is rough then Erin is blue. All green things are big. If Fiona is white then Fiona is big. Furry things are white. If something is big then it is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-547_Q17", "context": "Charlie is quiet. Dave is quiet. Dave is young. Erin is blue. Erin is nice. Erin is quiet. Fiona is not blue. Fiona is cold. Fiona is nice. Fiona is round. Fiona is young. If someone is kind then they are round. All kind, cold people are blue. If someone is nice and not young then they are not blue. If Fiona is kind then Fiona is blue. If Dave is kind and Dave is blue then Dave is not nice. Round people are cold. If Dave is young then Dave is kind. If Erin is kind and Erin is blue then Erin is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-546_Q8", "context": "The bald eagle is green. The bald eagle visits the rabbit. The rabbit is round. The rabbit likes the bald eagle. The rabbit does not like the squirrel. The rabbit does not need the bald eagle. The squirrel is round. The squirrel needs the rabbit. The squirrel needs the tiger. The squirrel visits the rabbit. The tiger is round. The tiger needs the bald eagle. If something likes the rabbit and it is round then it needs the bald eagle. If something likes the rabbit and it needs the bald eagle then it visits the tiger. If something visits the bald eagle and the bald eagle is green then the bald eagle needs the squirrel. If something visits the bald eagle then the bald eagle likes the rabbit. If the bald eagle likes the tiger then the bald eagle is rough. If something is rough and it needs the rabbit then it does not like the rabbit. If something visits the rabbit then the rabbit visits the bald eagle. If something needs the squirrel then it is round. If the bald eagle is not kind and the bald eagle does not like the rabbit then the bald eagle visits the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-877_Q15", "context": "The cow chases the squirrel. The cow eats the dog. The cow needs the squirrel. The dog eats the squirrel. The dog is big. The dog is cold. The dog needs the tiger. The squirrel eats the dog. The squirrel is cold. The squirrel needs the cow. The tiger eats the squirrel. If someone chases the tiger then the tiger is kind. If someone is kind then they chase the tiger. If someone is cold then they chase the tiger. If the dog chases the squirrel then the squirrel needs the tiger. If someone is cold and they need the dog then they do not chase the squirrel. If someone eats the cow then they are big. If someone chases the cow and they are kind then they are big. If someone eats the squirrel and the squirrel needs the tiger then they need the squirrel. If someone chases the tiger then they chase the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not chase the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-722_Q12", "context": "The bald eagle eats the lion. The bald eagle eats the tiger. The bald eagle is big. The bald eagle is round. The bald eagle likes the lion. The cow eats the lion. The cow likes the bald eagle. The cow sees the tiger. The lion eats the cow. The tiger eats the lion. The tiger is red. If someone eats the cow then the cow sees the bald eagle. If someone likes the bald eagle and they eat the bald eagle then they like the cow. If someone likes the lion and the lion is cold then they see the bald eagle. All young people are cold. If someone likes the bald eagle and they see the bald eagle then the bald eagle is red. If someone is red then they eat the bald eagle. If someone eats the lion then they like the bald eagle. If someone likes the cow then they like the tiger. If the lion sees the cow then the cow eats the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not like the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-1003_Q22", "context": "The cat is red. The cat visits the dog. The dog is cold. The dog visits the mouse. The mouse visits the tiger. The tiger is cold. The tiger sees the cat. If someone visits the dog and the dog sees the tiger then the dog visits the mouse. If someone is round then they eat the dog. If someone sees the tiger and the tiger sees the cat then the cat is young. If the cat is young and the cat sees the tiger then the cat eats the tiger. If someone visits the dog and the dog sees the cat then they are red. Young people are cold. If someone is rough then they eat the tiger. If someone is cold then they see the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse eats the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-565_Q7", "context": "Charlie is blue. Charlie is furry. Dave is big. Dave is smart. Erin is big. Fiona is blue. Fiona is round. All smart people are furry. If someone is nice and red then they are furry. Furry, smart people are nice. Nice, furry people are big. Round people are red. All red people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-169_Q1", "context": "Dave is furry. Dave is nice. Erin is cold. Erin is furry. Erin is quiet. Fiona is quiet. Gary is nice. All nice things are quiet. If something is quiet then it is cold. If something is cold and not nice then it is blue. All furry things are blue. If something is big then it is not blue. All big things are blue. Cold, blue things are green. Cold things are furry. If something is cold then it is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1021_Q12", "context": "Bob is rough. Bob is round. Charlie is blue. Charlie is cold. Charlie is red. Charlie is smart. Gary is blue. Gary is cold. Gary is furry. Gary is red. Gary is smart. Harry is blue. Harry is cold. Harry is red. Harry is rough. Harry is round. If Bob is rough and Bob is red then Bob is round. All furry people are smart. If someone is round and furry then they are smart. If someone is smart and round then they are blue. If someone is round and rough then they are red. If someone is round and furry then they are rough. Red, round people are furry. If Bob is red and Bob is not smart then Bob is not blue. All rough, blue people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-976_Q10", "context": "The bear eats the cow. The bear eats the lion. The cow chases the dog. The cow needs the dog. The dog eats the bear. The dog does not eat the cow. The dog eats the lion. The dog is blue. The dog is kind. The lion chases the dog. The lion eats the cow. The lion is kind. If something chases the lion and it needs the lion then the lion does not chase the cow. Kind things are young. If something needs the bear and it eats the bear then the bear is kind. If something eats the lion then it chases the lion. If something is young then it needs the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-245_Q20", "context": "The cow eats the dog. The cow is blue. The dog chases the cow. The dog chases the tiger. The dog eats the cow. The dog sees the rabbit. The rabbit chases the dog. The rabbit eats the dog. The rabbit eats the tiger. The rabbit is big. The tiger chases the rabbit. The tiger eats the cow. The tiger eats the rabbit. The tiger is big. The tiger is nice. The tiger sees the cow. If something chases the tiger then it sees the cow. If the dog sees the rabbit then the dog chases the tiger. If something chases the dog and the dog sees the tiger then it is kind. If the rabbit sees the dog then the rabbit sees the cow. If something sees the cow then it is nice. If something chases the cow and it eats the dog then the cow eats the dog. If something is nice and it sees the rabbit then the rabbit chases the tiger. If something is nice then it eats the dog. If something is nice and it chases the cow then the cow is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow eats the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-787_Q20", "context": "The bear chases the tiger. The bear needs the tiger. The cat chases the tiger. The cat is rough. The lion is kind. The lion sees the bear. The tiger chases the lion. If someone chases the bear then they need the lion. If someone chases the lion and the lion needs the cat then they chase the bear. If someone needs the tiger then the tiger sees the cat. If someone needs the cat then they see the cat. If the tiger is green then the tiger needs the cat. If someone needs the cat and the cat sees the lion then they are blue. If the tiger sees the cat then the cat chases the bear. If someone needs the lion and they chase the tiger then the lion needs the tiger. If someone needs the lion and the lion needs the tiger then the lion chases the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion chases the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-91_Q8", "context": "Bob is cold. Bob is nice. Dave is blue. Dave is nice. Dave is quiet. Fiona is rough. Fiona is young. Gary is blue. Gary is cold. Gary is nice. Gary is quiet. Gary is red. Gary is rough. Gary is young. All red people are blue. If Fiona is nice then Fiona is blue. If Fiona is blue then Fiona is red. If someone is young then they are quiet. Cold, quiet people are nice. Quiet, young people are cold. If someone is red and rough then they are blue. If someone is red then they are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-314_Q17", "context": "Anne is cold. Anne is smart. Bob is smart. Bob is young. Gary is kind. Harry is red. Harry is young. All young things are red. If Harry is young then Harry is smart. If Gary is rough then Gary is cold. If Gary is cold and Gary is blue then Gary is rough. If something is smart and kind then it is young. All cold things are smart. If something is kind then it is rough. Red, kind things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-739_Q1", "context": "The bald eagle likes the squirrel. The cow does not chase the bald eagle. The cow is cold. The cow needs the squirrel. The squirrel chases the bald eagle. The squirrel chases the tiger. The squirrel is green. The squirrel does not need the cow. The tiger does not chase the squirrel. The tiger is young. The tiger needs the bald eagle. If someone is blue and they chase the squirrel then they need the cow. Cold people are big. If someone is green then they are blue. If someone is big and young then they do not like the bald eagle. If the cow chases the squirrel then the cow is green. If someone is big then they chase the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not chase the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-146_Q8", "context": "Bob is red. Bob is young. Charlie is red. Dave is cold. Dave is round. Erin is kind. Erin is rough. Young, furry people are rough. Cold, rough people are young. All cold, red people are kind. Young, furry people are cold. If someone is cold then they are young. If someone is rough then they are red. All kind, round people are furry. Cold, young people are red. All rough people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-767_Q5", "context": "The cat is not round. The cow is blue. The cow is kind. The cow likes the cat. The cow sees the rabbit. The rabbit chases the cow. The rabbit is nice. The tiger does not chase the cow. The tiger does not like the rabbit. The tiger sees the rabbit. If something chases the cow then the cow chases the cat. If something chases the rabbit then it is not big. If something likes the cow then the cow is nice. If something is kind then it sees the rabbit. If something chases the cat then the cat likes the cow. If the rabbit chases the tiger then the rabbit does not see the cow. If something is nice and it sees the rabbit then it chases the rabbit. If something is big then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat likes the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-91_Q16", "context": "Bob is cold. Bob is nice. Dave is blue. Dave is nice. Dave is quiet. Fiona is rough. Fiona is young. Gary is blue. Gary is cold. Gary is nice. Gary is quiet. Gary is red. Gary is rough. Gary is young. All red people are blue. If Fiona is nice then Fiona is blue. If Fiona is blue then Fiona is red. If someone is young then they are quiet. Cold, quiet people are nice. Quiet, young people are cold. If someone is red and rough then they are blue. If someone is red then they are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-794_Q3", "context": "Anne is quiet. Anne is smart. Anne is white. Bob is cold. Bob is white. Fiona is blue. Fiona is quiet. Fiona is red. Gary is blue. Gary is cold. Gary is red. Gary is rough. Gary is smart. Gary is white. If someone is cold then they are white. White people are rough. If someone is quiet then they are white. Blue, cold people are red. Red, white people are quiet. If someone is rough then they are blue. All quiet, red people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1148_Q12", "context": "Bob is kind. Bob is smart. Charlie is furry. Dave is big. Dave is green. Dave is white. Fiona is quiet. If Bob is furry and Bob is big then Bob is not quiet. If someone is smart and furry then they are kind. If someone is kind and furry then they are green. If Bob is smart and Bob is green then Bob is big. Quiet people are smart. If someone is furry then they are quiet. If someone is green and not smart then they are white. Green people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-588_Q17", "context": "The bald eagle is young. The bald eagle likes the bear. The bear is blue. The cat is blue. The cat likes the bald eagle. The cat sees the cow. The cat visits the bald eagle. The cow is blue. The cow is nice. The cow is round. The cow does not like the bear. The cow sees the bear. If someone sees the bald eagle then the bald eagle sees the cow. If someone sees the cow then they see the cat. If someone sees the cat then they like the cow. If someone sees the cat then the cat sees the bald eagle. If someone likes the cow and the cow is round then the cow does not see the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not visit the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-161_Q6", "context": "The cat chases the mouse. The cat eats the tiger. The cat is blue. The cat needs the tiger. The dog is green. The dog is round. The mouse chases the dog. The mouse eats the cat. The mouse needs the cat. The tiger chases the mouse. The tiger is green. The tiger is round. If someone needs the tiger then the tiger eats the cat. If someone is round then they eat the dog. If the cat eats the tiger and the tiger eats the cat then the tiger needs the dog. If someone eats the mouse then they chase the tiger. If someone needs the dog then they need the mouse. If someone is blue then they are green. If someone needs the mouse and the mouse chases the dog then the dog eats the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not need the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1121_Q5", "context": "Bob is round. Charlie is blue. Charlie is quiet. Charlie is red. Fiona is round. Fiona is smart. Harry is blue. Harry is cold. Harry is round. Harry is smart. All cold things are quiet. If something is red then it is smart. All cold things are rough. Smart, cold things are blue. Quiet, cold things are red. If something is blue and round then it is rough. All round things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-433_Q16", "context": "Anne is furry. Anne is rough. Anne is white. Bob is rough. Bob is white. Fiona is big. Harry is red. All red, white things are rough. All white, quiet things are big. All big, red things are rough. If something is big and red then it is quiet. All big, rough things are furry. Big, furry things are white. Red things are round. If something is furry and round then it is big. All round things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-597_Q3", "context": "The bald eagle eats the lion. The bald eagle needs the rabbit. The bald eagle sees the dog. The bald eagle sees the rabbit. The dog eats the bald eagle. The dog eats the rabbit. The dog needs the lion. The lion needs the bald eagle. The lion needs the dog. The rabbit eats the lion. The rabbit is green. The rabbit is round. If something sees the rabbit then it eats the rabbit. If something sees the lion and it is blue then the lion sees the dog. If something eats the rabbit then it eats the dog. If something is green and it sees the lion then the lion eats the rabbit. If something is rough then it eats the lion. If something eats the dog and it eats the lion then the lion sees the rabbit. If something is rough and it sees the lion then the lion is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog eats the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-370_Q3", "context": "The bald eagle needs the cow. The bald eagle needs the rabbit. The bald eagle needs the squirrel. The cow does not chase the rabbit. The cow chases the squirrel. The cow likes the bald eagle. The rabbit is big. The rabbit is round. The rabbit likes the squirrel. The squirrel chases the cow. The squirrel chases the rabbit. If someone chases the bald eagle and they are big then they do not like the cow. If someone chases the cow and they are round then they are kind. If the cow likes the rabbit and the rabbit likes the bald eagle then the bald eagle needs the rabbit. If someone likes the cow then they are green. If someone is big and they need the bald eagle then they chase the cow. If someone likes the bald eagle then they do not chase the bald eagle. If someone needs the rabbit then the rabbit likes the cow. If the squirrel needs the cow and the cow chases the squirrel then the squirrel does not like the cow. If someone is green then they need the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit likes the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-949_Q8", "context": "The cat chases the lion. The cat does not eat the rabbit. The cat is big. The cat is nice. The cat is young. The cat sees the lion. The cat sees the mouse. The lion chases the rabbit. The lion eats the rabbit. The lion is kind. The lion is not young. The lion sees the mouse. The mouse does not chase the rabbit. The mouse eats the lion. The mouse is not nice. The rabbit sees the lion. If someone sees the lion and the lion chases the cat then they do not see the mouse. If someone eats the mouse then the mouse does not eat the rabbit. If someone chases the cat and they are blue then they are nice. If someone chases the mouse then the mouse chases the lion. If someone chases the lion then they eat the mouse. If someone eats the mouse then they chase the mouse. If someone chases the rabbit then they see the rabbit. If someone is big and they do not see the mouse then they are young.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not chase the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-688_Q23", "context": "The cow is red. The dog is red. The dog needs the cow. The rabbit needs the cow. The rabbit needs the tiger. The rabbit visits the dog. The tiger eats the dog. The tiger eats the rabbit. The tiger is kind. The tiger needs the cow. The tiger visits the dog. If something is red then it eats the cow. If something eats the cow and it needs the rabbit then the rabbit is kind. If something needs the rabbit then the rabbit is red. If something is red then it needs the dog. If something visits the tiger and it is rough then it is round. If something eats the rabbit then the rabbit eats the dog. If something eats the cow then it needs the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-128_Q3", "context": "The bear eats the cow. The bear eats the dog. The bear is nice. The bear is round. The bear needs the tiger. The bear sees the dog. The cow eats the bear. The cow is not young. The cow sees the dog. The dog does not eat the bear. The dog is not nice. The dog is not young. The tiger is round. The tiger is young. The tiger sees the bear. The tiger sees the cow. If the cow eats the tiger and the cow needs the tiger then the tiger eats the bear. If something is kind then it eats the cow. If something needs the tiger then it eats the tiger. If something eats the bear then it needs the cow. If something sees the cow and the cow needs the dog then the dog is young. If something eats the bear then it needs the tiger. If something eats the tiger and it needs the bear then it is young. If something eats the bear and it is young then the bear eats the dog. If something needs the tiger and it does not eat the bear then it needs the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow needs the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-638_Q9", "context": "The dog is not round. The dog likes the lion. The dog needs the rabbit. The dog does not visit the lion. The lion is big. The lion does not like the mouse. The mouse is nice. The mouse likes the rabbit. The mouse does not need the lion. The mouse visits the rabbit. The rabbit is big. The rabbit is nice. The rabbit is not round. The rabbit likes the dog. The rabbit likes the lion. The rabbit does not visit the lion. If someone visits the mouse then they are big. If someone likes the mouse then the mouse likes the rabbit. If someone visits the mouse then the mouse needs the rabbit. If someone is nice then they need the mouse. If the dog likes the rabbit and the rabbit needs the lion then the rabbit likes the lion. If someone is big then they do not need the dog. If someone needs the rabbit then they visit the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-220_Q5", "context": "Anne is quiet. Anne is smart. Charlie is blue. Charlie is furry. Charlie is smart. Gary is not furry. Harry is blue. Harry is furry. Harry is nice. Harry is smart. If someone is quiet then they are round. If someone is round then they are blue. If Anne is white then Anne is nice. All blue, quiet people are white. If Harry is not round then Harry is not white. White, quiet people are nice. If someone is nice and smart then they are furry. If someone is furry then they are smart. All white, furry people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-658_Q5", "context": "Bob is blue. Charlie is green. Charlie is smart. Erin is rough. Erin is smart. Fiona is rough. Fiona is smart. Rough, green things are nice. If something is blue and round then it is nice. Nice, rough things are blue. If something is green then it is round. Cold, smart things are rough. All round things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-597_Q4", "context": "The bald eagle eats the lion. The bald eagle needs the rabbit. The bald eagle sees the dog. The bald eagle sees the rabbit. The dog eats the bald eagle. The dog eats the rabbit. The dog needs the lion. The lion needs the bald eagle. The lion needs the dog. The rabbit eats the lion. The rabbit is green. The rabbit is round. If something sees the rabbit then it eats the rabbit. If something sees the lion and it is blue then the lion sees the dog. If something eats the rabbit then it eats the dog. If something is green and it sees the lion then the lion eats the rabbit. If something is rough then it eats the lion. If something eats the dog and it eats the lion then the lion sees the rabbit. If something is rough and it sees the lion then the lion is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not eat the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-4_Q9", "context": "Bob is big. Bob is furry. Bob is kind. Bob is rough. Bob is round. Dave is kind. Dave is smart. Erin is round. Gary is furry. Gary is round. Gary is white. If Erin is big then Erin is furry. Round people are kind. All smart, furry people are white. White, big people are furry. All kind people are big. If Bob is rough then Bob is white. All round, big people are furry. If someone is big and furry then they are smart. Rough, smart people are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-280_Q8", "context": "The bear eats the mouse. The bear is cold. The bear does not visit the rabbit. The cat does not eat the bear. The cat eats the rabbit. The cat does not visit the mouse. The mouse is kind. The mouse sees the bear. The mouse does not visit the cat. The mouse visits the rabbit. The rabbit is blue. The rabbit sees the bear. If someone is cold then they are round. If the mouse is round and the cat does not eat the mouse then the cat is not round. If someone eats the rabbit and the rabbit sees the bear then they do not visit the mouse. If someone sees the mouse then the mouse is cold. If someone is round then they see the mouse. If the rabbit eats the bear and the bear is blue then the rabbit sees the cat. If someone is kind then they see the rabbit. If the bear eats the rabbit then the bear does not visit the cat. If someone eats the rabbit and the rabbit sees the mouse then the rabbit sees the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-207_Q12", "context": "Dave is blue. Dave is furry. Fiona is blue. Gary is not white. Harry is furry. Harry is green. Harry is white. All green things are smart. If something is blue and furry then it is green. Blue things are kind. If Fiona is kind then Fiona is furry. All kind, furry things are blue. If something is kind then it is white. If something is smart then it is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-617_Q12", "context": "The bald eagle is round. The bald eagle sees the bear. The bald eagle sees the dog. The bald eagle sees the squirrel. The bald eagle visits the dog. The bald eagle visits the squirrel. The bear is young. The bear needs the squirrel. The bear sees the squirrel. The dog is nice. The dog sees the bald eagle. The dog sees the bear. The dog visits the bald eagle. The squirrel is red. The squirrel is round. The squirrel needs the dog. If something visits the dog then the dog needs the squirrel. If something sees the squirrel and it is blue then the squirrel visits the dog. If something is blue then it visits the bear. If something sees the squirrel and the squirrel visits the bear then it visits the bald eagle. Round things are red. If something visits the dog and the dog sees the bald eagle then it is blue. If something is young and it sees the bald eagle then the bald eagle needs the bear. If something visits the bear then the bear sees the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not visit the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-335_Q5", "context": "The bald eagle chases the tiger. The bald eagle is blue. The bald eagle needs the tiger. The bear chases the mouse. The bear chases the tiger. The bear is blue. The bear needs the mouse. The mouse chases the tiger. The mouse eats the bear. The mouse needs the tiger. The tiger chases the bear. The tiger eats the bald eagle. The tiger eats the bear. The tiger is blue. The tiger is rough. The tiger needs the bald eagle. If someone eats the mouse then they are green. If someone needs the bald eagle then they eat the mouse. If someone chases the bear and the bear needs the mouse then they need the mouse. If someone is green then they need the bald eagle. If someone needs the mouse and they chase the bear then the mouse is green. If someone eats the mouse and the mouse eats the bear then they need the mouse. If someone eats the bear then the bear chases the bald eagle. If the bear is blue and the bear eats the bald eagle then the bald eagle is kind. If someone chases the mouse then the mouse is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-751_Q2", "context": "Anne is furry. Anne is quiet. Erin is furry. Erin is not rough. Fiona is not quiet. Fiona is smart. Harry is quiet. Smart people are white. Quiet people are smart. All smart, rough people are not furry. If someone is white and not quiet then they are not furry. All white people are cold. All furry, quiet people are not rough. If Fiona is smart and Fiona is quiet then Fiona is white. If Harry is cold then Harry is rough. If Erin is white and Erin is not smart then Erin is not cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1217_Q9", "context": "Anne is quiet. Bob is big. Bob is red. Charlie is big. Charlie is red. Gary is not big. Gary is red. If someone is quiet then they are cold. If someone is cold then they are not round. If someone is cold and not round then they are white. If someone is round and green then they are white. White people are not big. All white people are green. Green, quiet people are not red. If someone is cold and big then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-205_Q1", "context": "The bald eagle chases the cow. The bald eagle is big. The bald eagle is rough. The cow chases the squirrel. The cow is rough. The cow visits the squirrel. The cow visits the tiger. The squirrel is not young. The squirrel does not see the bald eagle. The tiger is nice. If something sees the tiger and the tiger chases the squirrel then the squirrel is blue. If something visits the tiger then the tiger chases the squirrel. If something visits the bald eagle then the bald eagle is blue. If something is blue then it sees the tiger. If something visits the squirrel then it visits the bald eagle. If something sees the bald eagle and the bald eagle is big then the bald eagle sees the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow visits the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-763_Q9", "context": "The cow chases the mouse. The cow chases the rabbit. The cow is green. The cow needs the mouse. The cow needs the rabbit. The mouse chases the rabbit. The mouse likes the cow. The rabbit is green. The rabbit is young. The squirrel chases the mouse. The squirrel needs the cow. The squirrel needs the mouse. If someone is red then they chase the rabbit. If someone needs the squirrel then they chase the rabbit. If someone is kind then they need the cow. All young people are kind. If someone is young then they chase the mouse. If someone is green and they like the squirrel then the squirrel is young. If someone needs the cow and the cow chases the mouse then they like the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-607_Q10", "context": "Dave is big. Erin is big. Erin is furry. Erin is green. Erin is white. Gary is green. Harry is round. All big, furry things are white. If something is round then it is furry. If something is smart and furry then it is round. If something is white and smart then it is big. All white things are smart. If something is furry then it is white. All green things are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-439_Q6", "context": "Anne is furry. Anne is rough. Anne is white. Bob is nice. Bob is rough. Bob is white. Dave is rough. Dave is white. Fiona is furry. Fiona is quiet. All quiet, red people are furry. If Dave is green and Dave is nice then Dave is red. If Fiona is white and Fiona is green then Fiona is quiet. All nice people are furry. If someone is furry then they are green. If someone is furry and quiet then they are nice. If someone is green then they are quiet. All rough people are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-710_Q4", "context": "The bear chases the cat. The bear is blue. The bear is kind. The bear is nice. The bear needs the cat. The cat is not young. The cat needs the squirrel. The squirrel chases the tiger. The squirrel eats the bear. The squirrel eats the cat. The tiger eats the squirrel. The tiger is blue. If something is kind then it does not need the bear. If something eats the squirrel then it is cold. If the tiger eats the bear and the bear needs the cat then the cat eats the squirrel. If something is cold then it eats the bear. If the bear is nice then the bear does not chase the tiger. If something is cold then it chases the tiger. If something eats the bear and it is not cold then it chases the tiger. If something needs the tiger and it does not eat the squirrel then the tiger is blue. If something chases the tiger and it is blue then the tiger needs the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear chases the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-312_Q7", "context": "Anne is green. Dave is cold. Dave is rough. Erin is white. Fiona is big. Fiona is cold. Fiona is white. If Erin is white then Erin is green. If something is green then it is big. All cold things are rough. All rough, kind things are blue. Cold things are white. All rough, cold things are kind. If Anne is kind then Anne is cold. Cold things are green. Big things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-497_Q5", "context": "The bald eagle eats the mouse. The bald eagle is blue. The lion is red. The lion needs the bald eagle. The lion needs the rabbit. The mouse eats the lion. The mouse visits the lion. The mouse visits the rabbit. The rabbit eats the bald eagle. The rabbit is red. The rabbit is round. The rabbit needs the bald eagle. If something is round and it needs the rabbit then the rabbit is big. If something is big then it needs the rabbit. If something visits the lion then the lion is green. If something is green then it is round. If something needs the bald eagle and the bald eagle needs the lion then it needs the lion. If something needs the mouse and the mouse needs the rabbit then the rabbit is blue. If something visits the bald eagle then it needs the lion. If something needs the rabbit then it visits the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-947_Q9", "context": "The bear chases the squirrel. The cat chases the cow. The cat is blue. The cat is green. The cat likes the bear. The cat likes the squirrel. The cow chases the cat. The cow is cold. The cow likes the bear. The cow likes the cat. The cow sees the bear. The cow sees the squirrel. The squirrel is green. The squirrel likes the bear. The squirrel likes the cat. The squirrel likes the cow. If something is young then it sees the cow. If something is young and it likes the bear then the bear is green. If something sees the squirrel then the squirrel sees the cat. If the squirrel sees the cat then the cat chases the bear. If something is green then it chases the cow. If something chases the cow then it is young.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-375_Q1", "context": "The bald eagle eats the dog. The bald eagle eats the tiger. The cat needs the bald eagle. The cat needs the dog. The cat sees the dog. The dog eats the tiger. The dog is red. The tiger is red. The tiger needs the bald eagle. The tiger needs the cat. If someone needs the tiger then the tiger needs the dog. If someone eats the cat and the cat sees the tiger then the cat eats the tiger. If someone needs the dog then the dog needs the tiger. Blue people are red. If someone is red and they see the bald eagle then the bald eagle is big. Red people are young. If someone sees the tiger then they see the cat. If someone needs the dog then they are blue. If someone is blue and young then they see the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger needs the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-528_Q22", "context": "Anne is cold. Anne is kind. Bob is not red. Bob is not round. Erin is white. Fiona is kind. Fiona is quiet. All quiet, round people are red. All white, kind people are red. If someone is furry and not kind then they are white. All red people are white. White people are not furry. If Bob is round then Bob is quiet. All quiet people are cold. If someone is cold then they are round. If Bob is furry then Bob is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-788_Q20", "context": "Dave is furry. Erin is big. Erin is furry. Erin is smart. Fiona is big. Fiona is furry. Fiona is nice. Fiona is round. Fiona is smart. Harry is big. Harry is round. If something is kind then it is big. If Harry is round and Harry is smart then Harry is kind. All round things are nice. All kind, nice things are round. Smart, big things are nice. If something is kind then it is furry. All green things are smart. If something is round then it is nice. All nice, big things are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-444_Q17", "context": "The bald eagle chases the cow. The bald eagle likes the rabbit. The bald eagle visits the cow. The cow is not young. The mouse chases the rabbit. The mouse likes the bald eagle. The mouse likes the cow. The mouse does not like the rabbit. The rabbit chases the mouse. The rabbit is kind. The rabbit is young. The rabbit likes the cow. If something is round then it chases the rabbit. If something chases the cow then it is young. If the bald eagle likes the rabbit and the rabbit chases the cow then the bald eagle does not visit the cow. If the bald eagle chases the rabbit then the rabbit is round. If something is young and it likes the rabbit then it is green. If something is green then it is round. If the rabbit likes the bald eagle then the bald eagle is round. If something chases the bald eagle then it likes the bald eagle. If something is green and it likes the cow then it visits the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-395_Q6", "context": "Charlie is blue. Charlie is cold. Charlie is green. Charlie is kind. Charlie is white. Dave is green. Dave is nice. Erin is big. Erin is blue. Erin is cold. Erin is green. Erin is kind. Erin is nice. Erin is white. Gary is blue. Gary is cold. All big things are blue. If Gary is green and Gary is nice then Gary is kind. All cold things are big. All blue, kind things are white. If something is cold and blue then it is kind. All kind, blue things are big. All blue things are cold. All green, white things are big. Green things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-567_Q6", "context": "Anne is kind. Anne is red. Dave is white. Fiona is not nice. Fiona is quiet. Fiona is young. Gary is quiet. If someone is rough then they are not kind. Red people are young. If someone is white then they are rough. If someone is quiet then they are red. If someone is nice then they are quiet. Quiet, young people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-175_Q6", "context": "The cow sees the squirrel. The mouse is big. The mouse needs the cow. The squirrel sees the tiger. The tiger sees the cow. The tiger sees the mouse. The tiger visits the cow. If someone needs the tiger and they are rough then the tiger needs the squirrel. If someone is cold and they see the tiger then the tiger visits the cow. If the squirrel needs the tiger and the squirrel sees the mouse then the mouse sees the squirrel. If someone needs the tiger and they need the cow then the cow is blue. If someone needs the cow then they are rough. If someone is rough then they visit the mouse. If the tiger is big then the tiger needs the mouse. If the tiger needs the squirrel then the squirrel needs the cow. If someone is rough then they need the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not need the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-36_Q13", "context": "Bob is blue. Bob is quiet. Bob is smart. Bob is white. Dave is green. Dave is round. Dave is smart. Erin is blue. Gary is blue. Gary is green. Gary is smart. If Erin is big then Erin is smart. All green, white people are smart. White, smart people are round. If Dave is blue then Dave is round. Quiet, green people are round. All green people are quiet. All smart people are green. All blue people are smart. If someone is round and smart then they are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-533_Q7", "context": "The bear eats the dog. The bear is red. The dog is cold. The mouse eats the rabbit. The mouse is not green. The mouse sees the dog. The rabbit sees the mouse. If the rabbit eats the dog then the dog sees the mouse. If someone is cold then they are red. If someone chases the mouse then they are red. If someone sees the mouse then they are rough. If someone is green then they chase the rabbit. All rough people are green. If someone chases the rabbit then the rabbit eats the dog. If the rabbit sees the dog and the rabbit does not eat the mouse then the rabbit is red. If someone eats the rabbit and they are green then the rabbit does not eat the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit chases the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-26_Q7", "context": "The bald eagle chases the squirrel. The bald eagle is kind. The bald eagle is red. The bald eagle sees the rabbit. The bald eagle sees the tiger. The rabbit chases the bald eagle. The rabbit visits the squirrel. The squirrel is green. The squirrel is kind. The squirrel is red. The squirrel sees the bald eagle. The squirrel sees the rabbit. The squirrel visits the rabbit. The tiger sees the squirrel. The tiger visits the rabbit. The tiger visits the squirrel. If someone sees the rabbit then the rabbit sees the tiger. If someone visits the tiger and the tiger visits the rabbit then the tiger is kind. If someone chases the bald eagle then they chase the squirrel. If someone is kind then they chase the bald eagle. If someone is green and they visit the rabbit then the rabbit chases the tiger. If someone chases the squirrel then they see the tiger. If someone chases the bald eagle and they are green then they see the tiger. If someone is kind then they visit the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger chases the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-130_Q21", "context": "The bear is nice. The bear is red. The bear does not need the mouse. The cat chases the bear. The cat chases the mouse. The lion eats the bear. The lion eats the cat. The lion needs the bear. The lion needs the cat. The mouse eats the lion. If someone eats the mouse then the mouse chases the bear. If the mouse chases the bear then the bear eats the cat. If someone needs the cat and the cat is red then they eat the bear. If someone chases the bear then they do not eat the bear. If someone is nice then they do not eat the bear. If someone eats the cat then they do not chase the cat. If someone chases the lion and they need the lion then they do not eat the mouse. If someone needs the lion then they eat the mouse. If someone chases the bear then the bear needs the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-806_Q12", "context": "The bald eagle chases the lion. The bear sees the dog. The dog is rough. The dog does not visit the bald eagle. The dog visits the bear. The lion chases the dog. The lion visits the bald eagle. If something sees the bear then the bear sees the lion. If the bear does not see the lion then the lion visits the bear. Young things are kind. If something is kind then it does not visit the lion. If something visits the lion and it is young then it does not chase the bald eagle. If something chases the bear then the bear is young. If something visits the bear then the bear chases the bald eagle. If something chases the bear then it visits the bald eagle. If something chases the bald eagle then the bald eagle chases the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear visits the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-1004_Q12", "context": "The dog chases the rabbit. The mouse chases the rabbit. The mouse is blue. The mouse is not rough. The rabbit needs the tiger. The tiger chases the dog. The tiger chases the rabbit. The tiger is big. The tiger does not like the dog. The tiger needs the mouse. If someone chases the tiger then they do not need the rabbit. If someone needs the rabbit then they do not need the tiger. If someone is big then they are kind. If someone needs the dog then the dog does not like the mouse. If someone is blue and they do not need the rabbit then the rabbit is big. If someone is kind and they chase the rabbit then they need the dog. If someone likes the rabbit then they are big. If the tiger needs the dog then the dog likes the rabbit. If someone is big and they chase the mouse then the mouse is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-287_Q9", "context": "Anne is not kind. Anne is quiet. Dave is not green. Dave is rough. Dave is round. Dave is smart. Fiona is quiet. Fiona is round. Gary is smart. Gary is young. Round people are rough. If someone is smart then they are rough. All young, rough people are smart. If someone is rough then they are kind. Rough people are kind. If Fiona is smart and Fiona is kind then Fiona is green. If Anne is round then Anne is quiet. Round, rough people are quiet. All kind people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-206_Q5", "context": "The bald eagle does not need the mouse. The bear does not eat the bald eagle. The bear eats the tiger. The mouse chases the bald eagle. The mouse eats the bear. The mouse is round. The tiger eats the bear. If something is round then it chases the bear. If something eats the bear and it does not need the bald eagle then it chases the bear. If something chases the bear then it needs the tiger. If something chases the mouse and the mouse is red then it does not eat the bald eagle. If something is red then it does not eat the bald eagle. If something is round and it needs the tiger then the tiger is round. If something needs the bald eagle then it is not red. If something needs the bald eagle and the bald eagle eats the tiger then the tiger eats the mouse. If something is round and it does not eat the mouse then it does not need the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse needs the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1055_Q8", "context": "Anne is blue. Anne is red. Charlie is kind. Charlie is round. Erin is cold. Erin is kind. Fiona is kind. All red, young people are blue. If Anne is smart then Anne is cold. Young people are smart. All blue people are round. If Fiona is round then Fiona is kind. If Anne is cold then Anne is kind. If Erin is young and Erin is blue then Erin is kind. All round people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-812_Q6", "context": "Erin is green. Erin is smart. Fiona is big. Fiona is rough. Gary is not smart. Gary is not young. Harry is big. Big, furry things are not young. All smart things are kind. If Harry is smart then Harry is rough. Furry things are green. All young things are not green. All rough, big things are furry. Smart, rough things are big. If something is smart and kind then it is rough. If Harry is young and Harry is kind then Harry is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-787_Q8", "context": "Anne is big. Bob is round. Bob is smart. Bob is white. Gary is big. Gary is furry. Gary is red. Gary is rough. Gary is round. Harry is furry. All big, rough things are smart. Red, rough things are furry. Rough things are round. Smart things are white. Big things are smart. All white things are rough. If something is furry then it is round. Smart, round things are furry. Round things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-954_Q1", "context": "Anne is big. Anne is cold. Anne is rough. Anne is white. Charlie is white. Erin is big. Erin is kind. Erin is round. Harry is rough. Harry is round. Round things are kind. If something is white and rough then it is kind. All rough, kind things are furry. White things are cold. All big things are kind. If something is cold then it is big. If something is big and kind then it is rough. All round, cold things are white. Cold, rough things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-516_Q14", "context": "Bob is big. Bob is round. Charlie is quiet. Fiona is not big. Fiona is blue. Gary is not big. Gary is rough. If something is quiet then it is young. All rough things are cold. If something is cold then it is quiet. If something is quiet and not young then it is round. Blue things are not round. If something is rough and not young then it is big. If something is round and cold then it is blue. Round, rough things are blue. If something is young then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-250_Q1", "context": "Anne is cold. Anne is furry. Anne is rough. Anne is round. Anne is smart. Anne is young. Charlie is cold. Charlie is furry. Charlie is rough. Charlie is smart. Charlie is young. Erin is young. Gary is rough. Gary is smart. Nice, smart people are cold. If someone is cold then they are smart. Rough people are cold. All nice, rough people are smart. Cold people are nice. Young people are smart. Nice people are furry. All smart people are rough. Cold, round people are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-693_Q6", "context": "Bob is kind. Bob is quiet. Bob is young. Charlie is not green. Dave is round. Fiona is rough. Fiona is round. Kind, blue people are quiet. Rough, round people are quiet. Round people are rough. If someone is blue then they are green. All rough, kind people are green. If someone is quiet then they are blue. All green, round people are young. All kind people are round. If Charlie is rough then Charlie is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-3_Q17", "context": "Anne is red. Anne is rough. Bob is young. Dave is cold. Dave is kind. Fiona is big. Fiona is young. If Dave is cold and Dave is young then Dave is furry. If Fiona is rough and Fiona is kind then Fiona is red. Kind, rough things are red. Young, big things are rough. Rough things are furry. If something is cold and rough then it is red. All furry, rough things are kind. Young, cold things are kind. Young things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-198_Q23", "context": "The bear does not like the cat. The cat eats the squirrel. The cat is green. The cat is red. The cat likes the squirrel. The cat visits the bear. The cat visits the dog. The dog does not visit the bear. The squirrel eats the cat. The squirrel is green. If the dog eats the bear then the bear is green. If someone eats the dog and the dog visits the bear then the dog likes the cat. If someone is green and they like the dog then the dog likes the cat. If someone is young then they like the dog. If someone visits the bear then they like the dog. If the dog likes the cat then the dog eats the bear. If someone is green then they visit the cat. If the dog eats the squirrel then the squirrel likes the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not like the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-106_Q4", "context": "Anne is nice. Anne is red. Bob is blue. Dave is furry. Dave is nice. Harry is blue. Harry is red. All rough, big people are not blue. Nice, red people are kind. Rough, nice people are big. If someone is rough and not furry then they are big. If someone is rough and big then they are red. All nice people are red. If someone is big and rough then they are red. Kind people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-19_Q5", "context": "Bob is nice. Charlie is cold. Charlie is quiet. Dave is cold. Gary is blue. Gary is furry. Gary is nice. All kind things are blue. Kind things are green. Nice things are green. If something is green then it is kind. If Gary is furry and Gary is nice then Gary is not quiet. If something is green and not kind then it is furry. If something is blue then it is furry. If something is nice and furry then it is not cold. If something is cold and not furry then it is not quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-686_Q21", "context": "Erin is cold. Erin is round. Erin is young. Fiona is smart. Fiona is young. Gary is quiet. Gary is white. Gary is young. Harry is cold. Harry is quiet. If someone is rough then they are cold. Round people are smart. All white, cold people are young. If Fiona is smart and Fiona is quiet then Fiona is rough. If Harry is rough and Harry is young then Harry is round. If someone is cold then they are rough. If someone is rough then they are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-103_Q11", "context": "Anne is cold. Anne is furry. Anne is red. Dave is young. Gary is nice. Gary is young. Harry is not blue. All nice people are red. All furry people are blue. All furry, red people are quiet. Blue people are cold. Young people are cold. Cold people are furry. If Dave is blue then Dave is red. If Gary is furry then Gary is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-199_Q3", "context": "The bear needs the dog. The cow is kind. The cow is nice. The cow likes the dog. The cow needs the dog. The dog chases the rabbit. The dog likes the bear. The dog likes the rabbit. The rabbit chases the bear. The rabbit chases the cow. The rabbit is blue. The rabbit is kind. The rabbit likes the cow. The rabbit needs the dog. If someone needs the rabbit then the rabbit likes the bear. If someone needs the rabbit and they chase the dog then they need the bear. If someone is kind then they like the dog. If someone likes the bear and they are blue then they chase the rabbit. If the rabbit likes the dog then the dog is kind. If someone chases the dog then the dog likes the cow. If someone likes the dog then they are round. If the rabbit likes the dog and the rabbit chases the cow then the dog likes the cow. If someone needs the dog and the dog is kind then the dog needs the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-705_Q3", "context": "The bald eagle is kind. The bald eagle is red. The bear eats the tiger. The bear is round. The bear likes the bald eagle. The bear sees the lion. The lion eats the tiger. The lion is cold. The lion sees the tiger. The tiger is not nice. The tiger likes the bald eagle. The tiger sees the bald eagle. If something is kind then it likes the bear. If something is nice then it likes the tiger. If something eats the lion then it does not like the tiger. If the bald eagle likes the lion and the bald eagle sees the tiger then the lion is red. If something eats the bald eagle then the bald eagle does not see the bear. If something sees the tiger then the tiger likes the lion. If something eats the bear and it is round then it is nice. If something eats the tiger and it likes the bear then the bear is kind. If something likes the lion then the lion is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle likes the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1055_Q7", "context": "Anne is blue. Anne is red. Charlie is kind. Charlie is round. Erin is cold. Erin is kind. Fiona is kind. All red, young people are blue. If Anne is smart then Anne is cold. Young people are smart. All blue people are round. If Fiona is round then Fiona is kind. If Anne is cold then Anne is kind. If Erin is young and Erin is blue then Erin is kind. All round people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-118_Q9", "context": "Bob is green. Bob is red. Bob is round. Charlie is cold. Charlie is green. Charlie is kind. Erin is cold. Erin is furry. Erin is kind. Fiona is green. If someone is green then they are kind. All green, kind people are round. If Fiona is furry and Fiona is big then Fiona is green. If Erin is furry and Erin is red then Erin is kind. All round, furry people are kind. Green, round people are big. If someone is big and cold then they are furry. If someone is red then they are cold. Round, kind people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-766_Q5", "context": "The bear chases the rabbit. The bear chases the tiger. The bear is red. The bear needs the lion. The bear needs the rabbit. The bear sees the lion. The lion is nice. The lion is red. The lion is round. The lion sees the bear. The rabbit chases the tiger. The rabbit is round. The rabbit is young. The tiger chases the rabbit. The tiger is round. The tiger sees the bear. If something sees the tiger then it sees the bear. If something chases the tiger and the tiger is red then it is round. If the bear needs the tiger then the tiger needs the lion. If something sees the rabbit then the rabbit sees the lion. If something is round then it needs the rabbit. If something chases the bear then it sees the rabbit. If the lion is red and the lion needs the bear then the bear chases the lion. If something sees the lion then it chases the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear sees the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-909_Q16", "context": "Anne is green. Anne is quiet. Anne is rough. Bob is rough. Dave is green. Dave is kind. Dave is quiet. Dave is smart. Harry is green. Harry is kind. Harry is round. Quiet people are kind. If someone is rough then they are green. If someone is round then they are quiet. If someone is kind then they are smart. All rough, kind people are green. If someone is green then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-645_Q11", "context": "The bald eagle is green. The bald eagle is red. The cow is nice. The cow likes the tiger. The cow needs the tiger. The mouse is nice. The mouse needs the bald eagle. The mouse sees the bald eagle. The tiger likes the bald eagle. The tiger needs the cow. The tiger needs the mouse. If someone is young then they need the tiger. If the tiger is young then the tiger is green. If someone needs the tiger then the tiger sees the bald eagle. If someone sees the tiger and the tiger likes the bald eagle then the bald eagle sees the tiger. If someone is green and they see the bald eagle then they are cold. If someone is green and they like the tiger then they see the bald eagle. If the tiger is cold then the tiger is young. If someone needs the tiger then they like the tiger. If someone needs the mouse then they are green.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger likes the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-345_Q17", "context": "Anne is not nice. Anne is round. Anne is not white. Anne is young. Erin is round. Fiona is blue. Gary is young. All nice people are not quiet. All round people are quiet. If Anne is nice then Anne is white. If someone is quiet then they are blue. If Fiona is white then Fiona is blue. If someone is rough then they are young. If someone is nice and not blue then they are not rough. If someone is blue then they are rough. If Erin is young then Erin is white.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-372_Q15", "context": "The cat visits the rabbit. The cow eats the cat. The rabbit chases the squirrel. The rabbit is cold. The rabbit is green. The rabbit visits the cat. The squirrel eats the cat. If something eats the squirrel then the squirrel is blue. If something chases the squirrel and the squirrel eats the cow then it eats the cow. If something chases the rabbit then it is cold. If something is young and it visits the cow then the cow is big. If something is big then it visits the rabbit. If something is blue then it eats the rabbit. If something eats the cat then it eats the cow. If something visits the cow then the cow eats the squirrel. If something eats the cat and it eats the cow then the cat visits the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not eat the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-718_Q12", "context": "The cat chases the squirrel. The cat is not big. The cat does not like the mouse. The cat visits the dog. The cat visits the mouse. The dog is not cold. The dog is young. The mouse likes the squirrel. The squirrel does not chase the dog. The squirrel likes the dog. If the cat is green and the cat visits the mouse then the mouse is big. If something likes the dog then it is cold. If something likes the mouse then the mouse is green. If something is cold then it chases the cat. If something chases the cat then it likes the cat. If something is young then it chases the squirrel. If something chases the squirrel and it does not chase the mouse then the squirrel likes the cat. If something likes the mouse and it is green then the mouse is cold. If something chases the cat then the cat likes the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not chase the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-651_Q4", "context": "The bear eats the dog. The bear eats the rabbit. The bear is round. The bear needs the rabbit. The bear needs the tiger. The bear sees the rabbit. The dog eats the bear. The rabbit eats the tiger. The rabbit is round. The tiger eats the bear. The tiger is cold. The tiger is young. If something eats the tiger then the tiger needs the dog. If the bear sees the dog and the dog eats the tiger then the dog eats the bear. If something eats the bear then it sees the tiger. If the tiger sees the rabbit then the rabbit eats the bear. If something eats the bear and the bear sees the rabbit then it sees the dog. If something sees the dog then it sees the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not see the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-556_Q20", "context": "Bob is cold. Bob is nice. Bob is quiet. Bob is round. Bob is white. Fiona is rough. Fiona is smart. Gary is round. Harry is cold. Harry is smart. All white people are cold. Round people are white. All rough, quiet people are nice. If someone is nice then they are round. All rough, white people are quiet. Cold people are round. If someone is rough then they are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-960_Q3", "context": "Anne is green. Anne is nice. Anne is quiet. Erin is big. Erin is nice. Erin is quiet. Gary is blue. Gary is green. Harry is blue. Harry is green. Harry is kind. Harry is round. If something is kind and blue then it is nice. Nice things are round. If something is round then it is quiet. Blue things are round. Nice things are big. If something is round and quiet then it is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-274_Q6", "context": "The bald eagle does not eat the cat. The bald eagle is green. The bald eagle is nice. The bald eagle is round. The bald eagle likes the tiger. The cat eats the tiger. The cat is red. The cat likes the bald eagle. The cat likes the tiger. The cat needs the tiger. The dog is not round. The dog likes the bald eagle. The tiger eats the dog. The tiger needs the bald eagle. If something is red and it likes the tiger then it needs the dog. If the tiger needs the dog and the dog is green then the dog needs the tiger. All cold things are nice. If something eats the dog and the dog needs the bald eagle then the dog is nice. If something eats the cat then the cat needs the bald eagle. If something eats the cat and it needs the dog then the cat is cold. If something needs the bald eagle then it eats the cat. If the cat likes the tiger and the cat needs the dog then the dog is not cold. If the bald eagle needs the dog and the dog eats the bald eagle then the dog is not cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not need the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-48_Q4", "context": "The bear chases the cat. The bear chases the squirrel. The bear is young. The bear does not see the squirrel. The cat chases the cow. The cat chases the squirrel. The cat eats the squirrel. The cat is not kind. The cat does not see the cow. The cow does not chase the cat. The cow chases the squirrel. The squirrel chases the bear. The squirrel eats the cat. The squirrel eats the cow. The squirrel is young. The squirrel sees the cow. If something eats the bear then the bear sees the cow. If something is kind then it eats the bear. If the cow chases the bear and the cat does not chase the cow then the cow sees the squirrel. If something sees the squirrel then it is rough. If something eats the bear and it does not chase the cat then the cat sees the bear. If something sees the cow then it is kind. If something eats the squirrel then it eats the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-629_Q2", "context": "Anne is red. Anne is rough. Bob is blue. Bob is red. Dave is quiet. Dave is red. Dave is not rough. Dave is smart. Gary is blue. Gary is cold. Gary is green. Gary is rough. If Bob is blue then Bob is rough. If Gary is green then Gary is quiet. If someone is green and red then they are not cold. If someone is smart then they are green. If someone is rough then they are smart. If someone is rough and not cold then they are not quiet. If someone is red and not blue then they are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-201_Q18", "context": "Charlie is young. Dave is kind. Dave is quiet. Dave is young. Erin is quiet. Harry is green. Harry is quiet. If something is quiet and young then it is nice. If something is red and kind then it is nice. All green things are nice. If something is quiet and green then it is kind. If Charlie is red then Charlie is smart. If something is red then it is quiet. If something is young and nice then it is quiet. All quiet things are red. If something is young then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-205_Q22", "context": "The bald eagle chases the cow. The bald eagle is big. The bald eagle is rough. The cow chases the squirrel. The cow is rough. The cow visits the squirrel. The cow visits the tiger. The squirrel is not young. The squirrel does not see the bald eagle. The tiger is nice. If something sees the tiger and the tiger chases the squirrel then the squirrel is blue. If something visits the tiger then the tiger chases the squirrel. If something visits the bald eagle then the bald eagle is blue. If something is blue then it sees the tiger. If something visits the squirrel then it visits the bald eagle. If something sees the bald eagle and the bald eagle is big then the bald eagle sees the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1062_Q5", "context": "Charlie is furry. Charlie is young. Dave is nice. Erin is kind. Erin is not nice. Harry is blue. Harry is nice. Quiet, blue things are kind. If Dave is quiet then Dave is furry. If something is blue and not nice then it is quiet. If something is nice then it is quiet. All young, kind things are round. If something is nice and kind then it is young. If Dave is not blue then Dave is quiet. If something is round then it is not furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-1002_Q14", "context": "The bear is green. The bear is young. The bear needs the dog. The dog chases the bear. The dog eats the lion. The dog is young. The lion does not chase the rabbit. The lion needs the bear. The rabbit chases the dog. The rabbit chases the lion. The rabbit eats the bear. The rabbit eats the lion. The rabbit is young. The rabbit needs the lion. If someone eats the rabbit then the rabbit needs the bear. If the lion does not eat the rabbit then the rabbit needs the bear. If someone eats the dog then they chase the dog. If someone is nice then they eat the dog. If someone chases the dog and they need the bear then the dog is nice. If someone chases the dog and the dog eats the bear then they eat the lion. If the dog needs the lion and the dog eats the bear then the lion chases the dog. If someone eats the rabbit then they are nice. If someone needs the lion then the lion eats the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear eats the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-594_Q12", "context": "Anne is kind. Anne is nice. Anne is red. Anne is smart. Anne is young. Charlie is big. Charlie is kind. Charlie is nice. Charlie is quiet. Charlie is young. Erin is big. Erin is kind. Erin is quiet. Erin is red. Erin is smart. Harry is young. If someone is red then they are young. If someone is young then they are quiet. Quiet, young people are kind. If someone is big then they are smart. Kind people are red. Young people are quiet. If someone is kind and nice then they are big. All kind, smart people are nice. If someone is kind then they are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-473_Q8", "context": "Anne is cold. Anne is furry. Anne is kind. Anne is red. Anne is young. Erin is cold. Erin is kind. Gary is cold. Harry is furry. Harry is young. Blue, furry people are kind. Cold people are furry. Kind, blue people are young. Kind people are blue. Cold, furry people are blue. Red people are cold. If Harry is furry and Harry is not kind then Harry is young. If Erin is kind and Erin is rough then Erin is young. All blue, young people are not rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-236_Q23", "context": "The bald eagle is kind. The bald eagle is red. The bald eagle needs the dog. The bald eagle visits the tiger. The dog is big. The dog likes the lion. The dog likes the tiger. The dog needs the lion. The dog needs the tiger. The dog visits the bald eagle. The lion is red. The lion likes the bald eagle. The tiger is big. The tiger is kind. If something needs the lion then it is blue. If something likes the tiger then the tiger needs the lion. If something likes the bald eagle then the bald eagle needs the lion. If something is red and big then it visits the lion. If something visits the dog and it is kind then it likes the tiger. If something likes the tiger then it is big. If something needs the lion and it visits the tiger then the tiger is red. If something visits the lion then it visits the dog. If something likes the bald eagle then it is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not visit the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1206_Q11", "context": "Anne is not blue. Dave is not kind. Dave is quiet. Erin is round. Fiona is cold. Fiona is quiet. Fiona is rough. If something is cold then it is kind. All young things are kind. All young, blue things are round. If something is kind then it is blue. Kind things are blue. All round things are cold. If Erin is blue then Erin is quiet. If something is young and not blue then it is not rough. Quiet things are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-577_Q13", "context": "Bob is smart. Bob is young. Charlie is cold. Charlie is round. Charlie is white. Charlie is young. Gary is smart. Gary is white. Harry is rough. Harry is smart. Harry is white. All red people are round. Round, smart people are cold. If someone is cold and young then they are white. Red people are round. All round, young people are red. If someone is smart then they are rough. Rough, young people are red. If Bob is round then Bob is smart. If Charlie is white and Charlie is rough then Charlie is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-887_Q2", "context": "The dog is big. The dog is young. The lion eats the squirrel. The lion is blue. The lion is young. The lion likes the mouse. The mouse chases the squirrel. The mouse eats the dog. The mouse eats the lion. The mouse is blue. The mouse is nice. The mouse likes the dog. The squirrel chases the dog. The squirrel is blue. If someone likes the dog and the dog chases the mouse then the mouse chases the dog. If someone is young and nice then they like the squirrel. If someone chases the dog then the dog eats the mouse. If someone eats the mouse then the mouse is young. If someone likes the squirrel and they like the dog then the dog chases the mouse. If someone chases the lion and the lion is rough then they are nice. If someone likes the mouse and they chase the mouse then the mouse eats the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-376_Q6", "context": "The bald eagle is young. The bald eagle does not need the mouse. The bald eagle does not need the tiger. The bald eagle sees the dog. The bald eagle sees the mouse. The dog needs the bald eagle. The mouse is big. The tiger is cold. The tiger needs the mouse. The tiger sees the dog. The tiger visits the bald eagle. If something is kind then it sees the bald eagle. If something visits the bald eagle then the bald eagle is young. If something sees the dog then the dog is kind. If something sees the bald eagle and it is young then it is not cold. If something visits the tiger then the tiger is rough. If something is big then it is kind. If something is big and it sees the bald eagle then the bald eagle is big. If something needs the bald eagle and it needs the dog then it sees the tiger. If something visits the dog and it is not kind then the dog does not see the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not see the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1224_Q8", "context": "Dave is green. Dave is quiet. Dave is young. Erin is blue. Erin is white. Gary is quiet. Harry is blue. If something is cold and green then it is kind. All quiet things are green. If something is cold then it is kind. If something is quiet and kind then it is white. If something is cold then it is quiet. If Dave is cold then Dave is kind. All green things are cold. All cold, white things are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-446_Q2", "context": "Anne is red. Anne is white. Charlie is big. Charlie is red. Charlie is white. Dave is furry. Gary is big. Gary is furry. Gary is green. Gary is young. All big, rough people are green. Green people are white. All big people are young. White people are young. All furry people are big. If someone is red and green then they are young. All young people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1377_Q8", "context": "Anne is round. Anne is white. Fiona is cold. Fiona is round. Fiona is smart. Gary is smart. Gary is white. Harry is big. Harry is cold. Harry is round. If something is cold then it is young. If something is round then it is green. If something is smart then it is big. If something is cold and green then it is white. Big things are white. Green things are cold. Smart things are big. All big, white things are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-79_Q14", "context": "The bald eagle sees the cat. The bald eagle sees the squirrel. The cat is blue. The cat is cold. The cat is green. The cat sees the bald eagle. The cat sees the squirrel. The mouse chases the bald eagle. The mouse chases the cat. The mouse is cold. The mouse sees the cat. The squirrel likes the mouse. The squirrel sees the bald eagle. The squirrel sees the mouse. If something chases the bald eagle then the bald eagle is green. If something is green and it likes the bald eagle then the bald eagle is round. If something chases the cat and the cat is cold then it likes the bald eagle. If something sees the mouse and the mouse sees the cat then the cat sees the bald eagle. If something sees the bald eagle then it is cold. If the bald eagle likes the mouse then the bald eagle chases the cat. If something is green then it likes the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-271_Q16", "context": "The bear is cold. The dog does not like the bear. The dog likes the squirrel. The mouse is blue. The mouse is rough. The mouse likes the dog. The mouse does not need the bear. The squirrel is cold. The squirrel likes the dog. The squirrel likes the mouse. If someone likes the bear and they like the dog then they like the squirrel. If someone is blue then they chase the bear. If someone needs the squirrel and the squirrel is cold then they chase the bear. If the dog does not need the bear then the dog does not chase the squirrel. If someone likes the mouse and the mouse needs the dog then they chase the dog. If someone chases the dog then the dog needs the squirrel. If someone chases the bear and they do not need the bear then they need the dog. If someone likes the mouse and they are cold then they need the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse likes the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-347_Q11", "context": "The bald eagle chases the rabbit. The bald eagle eats the rabbit. The bald eagle is nice. The mouse eats the bald eagle. The rabbit likes the mouse. The squirrel eats the bald eagle. The squirrel eats the mouse. If something likes the squirrel then the squirrel chases the mouse. If something is young then it eats the bald eagle. If something chases the squirrel then the squirrel eats the rabbit. If something likes the mouse then it chases the bald eagle. If something likes the rabbit then the rabbit is young. If something chases the rabbit and the rabbit chases the bald eagle then it likes the rabbit. If something eats the bald eagle then it chases the rabbit. If something likes the mouse then it chases the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit chases the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-26_Q11", "context": "The bald eagle chases the squirrel. The bald eagle is kind. The bald eagle is red. The bald eagle sees the rabbit. The bald eagle sees the tiger. The rabbit chases the bald eagle. The rabbit visits the squirrel. The squirrel is green. The squirrel is kind. The squirrel is red. The squirrel sees the bald eagle. The squirrel sees the rabbit. The squirrel visits the rabbit. The tiger sees the squirrel. The tiger visits the rabbit. The tiger visits the squirrel. If someone sees the rabbit then the rabbit sees the tiger. If someone visits the tiger and the tiger visits the rabbit then the tiger is kind. If someone chases the bald eagle then they chase the squirrel. If someone is kind then they chase the bald eagle. If someone is green and they visit the rabbit then the rabbit chases the tiger. If someone chases the squirrel then they see the tiger. If someone chases the bald eagle and they are green then they see the tiger. If someone is kind then they visit the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger sees the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-374_Q16", "context": "The cow chases the squirrel. The lion chases the squirrel. The lion eats the squirrel. The lion does not eat the tiger. The lion does not need the squirrel. The squirrel chases the lion. The squirrel eats the lion. The tiger chases the squirrel. The tiger eats the lion. The tiger eats the squirrel. The tiger is cold. The tiger needs the squirrel. If something is green and rough then it chases the tiger. If something chases the squirrel then it is cold. If something eats the cow and it is green then it is not round. If something is cold and it eats the cow then the cow is green. If something is green then it eats the cow. If the tiger is cold then the tiger is green. If something eats the squirrel then the squirrel is green. If the cow needs the squirrel and the cow is not green then the squirrel does not need the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-955_Q7", "context": "The bald eagle eats the rabbit. The bald eagle is nice. The bald eagle sees the cow. The cow is blue. The cow is young. The cow sees the mouse. The mouse chases the rabbit. The mouse eats the cow. The mouse is blue. The mouse is red. The mouse sees the bald eagle. The mouse sees the cow. The mouse sees the rabbit. The rabbit chases the mouse. The rabbit sees the cow. The rabbit sees the mouse. If something eats the bald eagle then the bald eagle chases the cow. If something eats the mouse then it chases the mouse. If the cow chases the bald eagle and the bald eagle sees the cow then the bald eagle chases the rabbit. If something is kind then it eats the mouse. If something chases the cow then the cow is kind. If the cow eats the bald eagle then the bald eagle is nice. If something sees the mouse then it sees the bald eagle. If something is young then it eats the bald eagle. If something is kind then it sees the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1137_Q17", "context": "Anne is cold. Anne is not kind. Anne is not nice. Anne is red. Anne is young. Fiona is not cold. Fiona is kind. Fiona is young. Gary is red. Harry is kind. Harry is nice. Harry is red. All big things are nice. If something is cold and not red then it is nice. All cold, big things are not white. All nice things are big. If Gary is red and Gary is young then Gary is big. All kind, white things are not young. All red things are young. Big, white things are young. If something is nice then it is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-693_Q6", "context": "The cat chases the dog. The cat sees the mouse. The dog chases the mouse. The dog is green. The dog needs the tiger. The dog sees the mouse. The mouse is big. The tiger is big. The tiger is kind. The tiger needs the cat. The tiger needs the mouse. The tiger sees the dog. If someone chases the cat then they are rough. If someone sees the tiger and the tiger chases the dog then the tiger sees the dog. All green people are kind. If someone is big then they need the tiger. If someone is kind then they need the cat. If someone chases the mouse and they need the mouse then they chase the cat. If the dog needs the cat and the dog needs the tiger then the cat is green. If someone sees the dog then the dog sees the mouse. All kind people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not need the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-485_Q15", "context": "Anne is big. Anne is furry. Bob is cold. Bob is red. Dave is not green. Gary is not big. Gary is smart. If someone is smart and big then they are furry. Smart people are furry. Furry, red people are big. Big people are kind. If someone is cold then they are smart. If someone is kind and big then they are not green. If Gary is cold then Gary is not green.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-119_Q11", "context": "Anne is big. Anne is not nice. Anne is smart. Anne is white. Bob is furry. Erin is cold. Fiona is big. Smart people are blue. If someone is big then they are white. Cold, blue people are white. Cold, blue people are furry. White, blue people are cold. All cold, white people are not nice. If someone is big then they are not nice. White people are smart. If Anne is big then Anne is white.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-97_Q18", "context": "The bear chases the tiger. The bear is blue. The bear is cold. The lion chases the mouse. The lion chases the tiger. The lion is big. The lion is kind. The lion likes the mouse. The lion sees the tiger. The mouse likes the lion. The mouse sees the lion. The tiger chases the mouse. The tiger likes the mouse. The tiger sees the mouse. If the lion likes the tiger and the lion sees the mouse then the tiger chases the mouse. If someone chases the tiger and they see the lion then they chase the bear. If someone chases the bear then the bear is kind. If someone chases the lion then the lion is cold. If someone is kind then they see the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion likes the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-439_Q2", "context": "Anne is furry. Anne is rough. Anne is white. Bob is nice. Bob is rough. Bob is white. Dave is rough. Dave is white. Fiona is furry. Fiona is quiet. All quiet, red people are furry. If Dave is green and Dave is nice then Dave is red. If Fiona is white and Fiona is green then Fiona is quiet. All nice people are furry. If someone is furry then they are green. If someone is furry and quiet then they are nice. If someone is green then they are quiet. All rough people are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1145_Q12", "context": "Anne is big. Anne is blue. Anne is cold. Anne is furry. Anne is red. Anne is round. Anne is smart. Bob is cold. Bob is smart. Dave is furry. Erin is blue. Erin is cold. Erin is round. Erin is smart. If someone is smart and red then they are blue. If someone is cold and big then they are red. If Dave is smart and Dave is red then Dave is big. If Bob is round and Bob is furry then Bob is big. All round people are furry. All big people are red. Smart people are round. All big people are round. Furry people are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-935_Q12", "context": "Anne is big. Anne is green. Anne is nice. Anne is red. Anne is rough. Anne is round. Anne is smart. Erin is big. Erin is red. Fiona is nice. Fiona is rough. Fiona is round. Fiona is smart. Gary is big. Gary is round. Gary is smart. Rough, red people are round. All round, rough people are green. Green, smart people are nice. If someone is red then they are rough. If someone is round then they are red. Green people are red. Nice people are red. Green people are smart. If someone is red then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-356_Q5", "context": "The cow eats the mouse. The cow eats the squirrel. The cow likes the rabbit. The cow likes the squirrel. The mouse is cold. The mouse likes the rabbit. The mouse visits the cow. The rabbit is big. The rabbit likes the mouse. The rabbit visits the mouse. The squirrel eats the cow. The squirrel eats the mouse. The squirrel is green. The squirrel is rough. The squirrel likes the cow. The squirrel likes the mouse. If something likes the cow then it visits the mouse. If something likes the cow then the cow is green. If something eats the squirrel and the squirrel likes the rabbit then it eats the rabbit. If something is cold then it likes the cow. If something visits the squirrel then the squirrel likes the rabbit. If the cow likes the rabbit then the cow is cold. If something likes the rabbit and it visits the mouse then the mouse visits the squirrel. If something is rough and it likes the squirrel then the squirrel eats the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow likes the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-169_Q14", "context": "Dave is furry. Dave is nice. Erin is cold. Erin is furry. Erin is quiet. Fiona is quiet. Gary is nice. All nice things are quiet. If something is quiet then it is cold. If something is cold and not nice then it is blue. All furry things are blue. If something is big then it is not blue. All big things are blue. Cold, blue things are green. Cold things are furry. If something is cold then it is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-279_Q9", "context": "The bear is blue. The bear is round. The bear sees the cow. The cow is blue. The lion is rough. The lion likes the tiger. The lion sees the bear. The tiger is cold. The tiger is round. The tiger sees the bear. The tiger sees the cow. If someone is blue then they like the tiger. If the cow is blue then the cow chases the lion. If someone likes the tiger and the tiger sees the bear then they chase the lion. If someone likes the lion then the lion chases the tiger. If the cow is cold and the cow chases the bear then the bear chases the tiger. If someone chases the cow and they chase the lion then they chase the bear. If someone is rough then they chase the cow. If someone is cold then they are blue. If someone is blue and they chase the lion then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow chases the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1102_Q8", "context": "Charlie is kind. Erin is blue. Erin is furry. Erin is kind. Erin is quiet. Gary is furry. Gary is red. Harry is big. Harry is furry. Harry is kind. Harry is nice. Harry is quiet. Nice, big things are quiet. If something is blue then it is big. All big, red things are kind. Big things are kind. Red, kind things are nice. If something is red then it is blue. If something is quiet and kind then it is big. If Erin is nice and Erin is big then Erin is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-281_Q16", "context": "Anne is round. Bob is round. Bob is smart. Dave is red. Dave is round. Gary is furry. Gary is kind. Gary is nice. Gary is red. Gary is round. Furry people are kind. All kind people are round. If Anne is red then Anne is kind. If someone is round and smart then they are nice. Round people are red. Furry people are round. Round, furry people are smart. Red, kind people are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1217_Q19", "context": "Anne is quiet. Bob is big. Bob is red. Charlie is big. Charlie is red. Gary is not big. Gary is red. If someone is quiet then they are cold. If someone is cold then they are not round. If someone is cold and not round then they are white. If someone is round and green then they are white. White people are not big. All white people are green. Green, quiet people are not red. If someone is cold and big then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-871_Q7", "context": "The bald eagle chases the cow. The bald eagle is kind. The bald eagle is rough. The bald eagle needs the rabbit. The cow chases the rabbit. The cow is cold. The cow is green. The cow is red. The rabbit does not chase the bald eagle. The rabbit chases the cow. The rabbit does not eat the bald eagle. The rabbit eats the cow. The rabbit is cold. The rabbit is green. The squirrel eats the cow. The squirrel does not eat the rabbit. If something needs the bald eagle then the bald eagle chases the rabbit. If the squirrel is rough and the squirrel is not kind then the squirrel is green. If something chases the bald eagle then it needs the squirrel. If something needs the rabbit then it chases the bald eagle. If something chases the cow then the cow eats the bald eagle. If something chases the bald eagle and it does not need the bald eagle then it is red. If something needs the squirrel then the squirrel needs the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel needs the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1359_Q22", "context": "Bob is furry. Bob is young. Charlie is big. Dave is furry. Dave is young. Erin is nice. Erin is young. Furry, smart things are big. White, big things are green. If something is white then it is furry. If something is nice and furry then it is smart. If something is furry and green then it is white. Young, big things are white. If Erin is young then Erin is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-955_Q17", "context": "The bald eagle eats the rabbit. The bald eagle is nice. The bald eagle sees the cow. The cow is blue. The cow is young. The cow sees the mouse. The mouse chases the rabbit. The mouse eats the cow. The mouse is blue. The mouse is red. The mouse sees the bald eagle. The mouse sees the cow. The mouse sees the rabbit. The rabbit chases the mouse. The rabbit sees the cow. The rabbit sees the mouse. If something eats the bald eagle then the bald eagle chases the cow. If something eats the mouse then it chases the mouse. If the cow chases the bald eagle and the bald eagle sees the cow then the bald eagle chases the rabbit. If something is kind then it eats the mouse. If something chases the cow then the cow is kind. If the cow eats the bald eagle then the bald eagle is nice. If something sees the mouse then it sees the bald eagle. If something is young then it eats the bald eagle. If something is kind then it sees the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not chase the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-49_Q6", "context": "The bald eagle eats the tiger. The mouse visits the bald eagle. The squirrel is kind. The squirrel needs the bald eagle. The squirrel needs the tiger. The tiger eats the squirrel. The tiger is red. If someone is kind then they visit the tiger. If someone eats the mouse then the mouse visits the tiger. If the tiger eats the mouse then the tiger needs the mouse. If someone visits the tiger then they are round. If the squirrel is round then the squirrel eats the mouse. If the squirrel visits the tiger then the tiger is round. If someone is round then they visit the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-222_Q9", "context": "Bob is rough. Charlie is kind. Charlie is rough. Erin is red. Erin is rough. Erin is white. Gary is green. Gary is red. Gary is smart. Gary is white. If someone is smart then they are red. All furry people are red. Kind people are red. If someone is red and white then they are kind. Furry, rough people are green. All kind people are furry. If someone is white then they are red. Rough people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-229_Q6", "context": "The bald eagle is cold. The bald eagle likes the rabbit. The bald eagle sees the rabbit. The bald eagle sees the squirrel. The mouse sees the rabbit. The rabbit is red. The rabbit is round. The rabbit is young. The rabbit likes the bald eagle. The rabbit likes the squirrel. The rabbit sees the mouse. The rabbit sees the squirrel. The rabbit visits the mouse. The squirrel is young. The squirrel sees the mouse. The squirrel visits the bald eagle. If someone visits the squirrel and the squirrel likes the bald eagle then the squirrel is round. All round people are cold. If someone likes the mouse then the mouse is round. If someone is young then they like the mouse. If someone visits the rabbit then they like the squirrel. All round people are young. All cold people are green. If someone likes the mouse then they like the squirrel. If someone sees the mouse and they visit the squirrel then the squirrel likes the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-688_Q12", "context": "The cat is nice. The cat is red. The cat is round. The cat does not need the mouse. The cat visits the squirrel. The lion needs the mouse. The mouse is round. The mouse likes the lion. The mouse needs the lion. The mouse visits the cat. The squirrel is big. The squirrel is red. The squirrel visits the lion. The squirrel visits the mouse. If something likes the cat and it does not visit the cat then it visits the lion. If the lion is green and the lion visits the mouse then the mouse is red. All red things are nice. If something likes the lion then it is red. If the mouse visits the cat and the mouse needs the squirrel then the mouse does not like the cat. Nice things are big. If something is big then it visits the squirrel. If the mouse visits the squirrel then the mouse does not visit the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse visits the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-481_Q1", "context": "The bald eagle is green. The bald eagle needs the rabbit. The bald eagle sees the rabbit. The cat needs the bald eagle. The cat sees the bald eagle. The cat sees the rabbit. The lion is young. The lion sees the bald eagle. The lion sees the cat. The lion visits the bald eagle. The rabbit is big. The rabbit is nice. The rabbit is not young. The rabbit needs the lion. If someone visits the bald eagle then the bald eagle sees the rabbit. If someone needs the bald eagle and the bald eagle needs the lion then the bald eagle sees the rabbit. If someone is round then they see the rabbit. If the lion sees the rabbit and the lion is young then the rabbit sees the bald eagle. If someone visits the cat and they need the lion then they visit the bald eagle. If someone sees the bald eagle then they are round. If someone visits the lion then they are green. If someone needs the bald eagle and they are not young then the bald eagle sees the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-469_Q11", "context": "The bear is green. The bear is young. The bear visits the dog. The cat chases the bear. The cat does not eat the dog. The cat eats the tiger. The cat is not cold. The cat is green. The dog chases the bear. The tiger eats the bear. The tiger is rough. The tiger is young. If someone is young then they chase the tiger. If someone visits the cat then the cat visits the dog. If someone visits the dog then they are kind. If the tiger is cold then the tiger eats the dog. If someone is green then they eat the bear. If the cat visits the dog and the dog is green then the dog is rough. If someone is kind then they visit the cat. If someone eats the bear and they are not rough then the bear is not cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat visits the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-214_Q9", "context": "Anne is blue. Anne is cold. Bob is blue. Bob is smart. Gary is not blue. Gary is kind. Harry is blue. All smart people are kind. If someone is smart then they are kind. If someone is blue and smart then they are kind. Nice people are red. If someone is kind and cold then they are furry. All furry, kind people are smart. Smart, furry people are nice. If Gary is kind and Gary is not blue then Gary is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-1041_Q20", "context": "The cat is blue. The cat is green. The cat likes the lion. The cat sees the cow. The cow eats the lion. The cow likes the rabbit. The cow sees the lion. The lion likes the rabbit. The rabbit eats the cat. The rabbit eats the cow. The rabbit sees the lion. If something is round then it eats the rabbit. If something is green and it eats the rabbit then the rabbit eats the cat. If something sees the lion then it is blue. If something likes the cow then the cow sees the cat. If something is blue and it sees the lion then it is round. If something is cold then it sees the cat. If something eats the rabbit then it is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat sees the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-968_Q15", "context": "The bald eagle chases the squirrel. The bald eagle is rough. The bald eagle is round. The dog chases the squirrel. The dog is not blue. The dog visits the squirrel. The squirrel chases the tiger. The squirrel is round. The squirrel does not visit the dog. The tiger is round. The tiger visits the squirrel. If someone chases the squirrel then the squirrel is not kind. If someone likes the dog then the dog is rough. If someone is rough and they visit the tiger then the tiger does not chase the squirrel. If someone visits the tiger and they visit the dog then the tiger likes the squirrel. If someone chases the dog then the dog chases the tiger. If someone visits the bald eagle then they like the dog. If someone chases the dog and the dog is red then they chase the tiger. If someone is rough then they visit the bald eagle. If the squirrel likes the dog and the dog likes the tiger then the squirrel visits the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not like the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-848_Q1", "context": "The bear chases the tiger. The bear eats the cat. The bear eats the tiger. The bear is rough. The cat chases the bear. The mouse is not red. The tiger chases the bear. The tiger does not eat the cat. The tiger is big. The tiger is young. If someone eats the bear then they are young. If someone eats the bear then they chase the bear. If someone chases the cat then they eat the mouse. If someone is kind and they chase the cat then they do not eat the mouse. If someone eats the mouse then the mouse is big. Big people are rough. If someone visits the cat and the cat is rough then they eat the bear. If someone visits the cat then they chase the tiger. If someone is rough then they chase the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not eat the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-439_Q9", "context": "The bald eagle is round. The mouse eats the squirrel. The mouse is cold. The mouse visits the rabbit. The rabbit eats the bald eagle. The rabbit eats the squirrel. The rabbit sees the mouse. The rabbit does not visit the bald eagle. The squirrel is not big. The squirrel does not visit the bald eagle. The squirrel visits the rabbit. If something sees the rabbit then it visits the bald eagle. If the mouse sees the rabbit and the rabbit is blue then the mouse is blue. If something is cold then it sees the rabbit. If something visits the bald eagle then the bald eagle is cold. If something visits the rabbit then the rabbit sees the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle sees the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-428_Q9", "context": "The cat likes the tiger. The dog is cold. The dog is nice. The dog likes the mouse. The mouse chases the tiger. The mouse does not eat the cat. The tiger chases the cat. If the cat likes the dog then the dog does not eat the cat. If something is kind then it chases the cat. If something likes the dog then it likes the tiger. If the tiger is nice and the tiger is not young then the tiger does not chase the mouse. If something likes the tiger then it eats the dog. If something eats the dog then the dog likes the tiger. If something eats the dog and it likes the mouse then the mouse is kind. If something eats the cat then the cat does not chase the dog. If something is kind and it does not eat the cat then the cat does not eat the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-933_Q14", "context": "The bald eagle does not eat the bear. The bald eagle is not red. The bear is big. The bear is young. The bear likes the bald eagle. The bear likes the squirrel. The mouse chases the bear. The mouse is big. The squirrel does not chase the mouse. The squirrel is big. If something is big and it chases the bald eagle then it eats the bear. If something eats the mouse then the mouse likes the squirrel. If something likes the squirrel then it is round. If the bear eats the squirrel and the squirrel chases the mouse then the squirrel does not like the bald eagle. If something is round then it chases the bald eagle. If something likes the squirrel and the squirrel eats the bald eagle then the bald eagle chases the squirrel. If something eats the mouse and the mouse chases the bear then it eats the bald eagle. If something eats the bear and it likes the bald eagle then it eats the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-19_Q24", "context": "The bear needs the cow. The cow needs the rabbit. The cow sees the bear. The cow visits the lion. The lion is nice. The lion is red. The lion does not see the cow. The lion visits the cow. The rabbit sees the cow. The rabbit visits the cow. If something needs the cow and the cow visits the rabbit then it visits the cow. If the lion needs the bear then the bear sees the cow. If the lion sees the bear and the bear is rough then the bear does not see the cow. If something visits the lion then the lion visits the bear. If something visits the bear then it needs the bear. If something visits the bear then the bear needs the cow. If something sees the cow then it visits the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-513_Q5", "context": "The bald eagle chases the dog. The bald eagle is cold. The dog chases the bald eagle. The rabbit is nice. The tiger is cold. The tiger needs the dog. The tiger visits the dog. If someone is nice and cold then they chase the tiger. If the bald eagle chases the tiger and the tiger needs the bald eagle then the bald eagle needs the tiger. If someone visits the dog then they chase the dog. If someone chases the bald eagle then the bald eagle visits the dog. If the tiger chases the dog then the dog is cold. If someone is round then they visit the dog. If someone chases the dog and they visit the bald eagle then the bald eagle is cold. If someone visits the dog and the dog is cold then the dog is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-904_Q3", "context": "Bob is big. Bob is blue. Bob is green. Bob is nice. Bob is quiet. Bob is smart. Charlie is blue. Charlie is kind. Charlie is nice. Charlie is quiet. Charlie is smart. Fiona is big. Fiona is green. Fiona is quiet. Fiona is smart. Gary is blue. If Gary is blue then Gary is smart. If something is blue and smart then it is kind. All green things are quiet. If Gary is big and Gary is nice then Gary is kind. If Gary is nice then Gary is big. If something is quiet and kind then it is nice. If something is kind then it is blue. All green things are kind. If something is smart then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-614_Q13", "context": "The bear is rough. The bear needs the cat. The bear needs the cow. The cat is green. The cat is rough. The cat needs the bear. The cat sees the cow. The cow is not green. The cow needs the tiger. The tiger is cold. The tiger does not see the cow. If someone needs the cat then the cat needs the tiger. If someone eats the bear then the bear is young. All young people are cold. If someone sees the cow and they see the cat then the cat does not see the bear. If the cat needs the tiger then the tiger is big. If someone is big then they eat the bear. If the cat eats the cow then the cat needs the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not eat the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-644_Q14", "context": "Bob is furry. Bob is white. Erin is rough. Erin is white. Fiona is round. Harry is kind. Harry is white. If Fiona is smart then Fiona is quiet. All kind, rough people are white. All kind people are furry. If someone is rough and white then they are quiet. Rough people are smart. White people are rough. If someone is smart then they are furry. If someone is round then they are kind. All furry, kind people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-1020_Q6", "context": "The bald eagle chases the bear. The bald eagle is green. The bald eagle is round. The bald eagle likes the rabbit. The bald eagle visits the lion. The bear is young. The bear visits the bald eagle. The lion is red. The lion is round. The lion visits the rabbit. The rabbit is blue. The rabbit is red. If someone likes the bear then the bear is blue. If someone likes the lion then the lion likes the rabbit. If someone chases the bear and they visit the lion then the lion likes the bear. If someone visits the bear then they are red. If someone likes the bear and the bear is red then they chase the bear. If someone is red and they chase the rabbit then they are round. If the rabbit likes the bear and the bear likes the lion then the bear is young. If the rabbit visits the bald eagle then the bald eagle is green. If someone is blue then they visit the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-750_Q18", "context": "The cow does not eat the mouse. The cow does not visit the squirrel. The mouse is nice. The mouse sees the cow. The mouse does not see the tiger. The mouse visits the squirrel. The squirrel eats the mouse. The squirrel is nice. The squirrel does not see the cow. The squirrel visits the cow. The tiger eats the cow. The tiger eats the squirrel. The tiger is not young. The tiger sees the mouse. The tiger sees the squirrel. The tiger visits the mouse. If something visits the mouse then it eats the cow. If something eats the tiger and it sees the squirrel then the squirrel does not see the cow. If something sees the squirrel and the squirrel eats the cow then it is blue. If something is nice then it visits the mouse. If something is nice and it eats the cow then the cow visits the mouse. If something visits the mouse and it does not eat the mouse then the mouse is rough. If something eats the cow and it is rough then it does not eat the squirrel. If the cow eats the squirrel and the squirrel eats the cow then the cow sees the squirrel. If the squirrel is not blue then the squirrel sees the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse visits the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-428_Q21", "context": "The cat likes the tiger. The dog is cold. The dog is nice. The dog likes the mouse. The mouse chases the tiger. The mouse does not eat the cat. The tiger chases the cat. If the cat likes the dog then the dog does not eat the cat. If something is kind then it chases the cat. If something likes the dog then it likes the tiger. If the tiger is nice and the tiger is not young then the tiger does not chase the mouse. If something likes the tiger then it eats the dog. If something eats the dog then the dog likes the tiger. If something eats the dog and it likes the mouse then the mouse is kind. If something eats the cat then the cat does not chase the dog. If something is kind and it does not eat the cat then the cat does not eat the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1135_Q17", "context": "Anne is nice. Anne is white. Charlie is round. Charlie is white. Erin is not nice. Erin is quiet. Gary is not quiet. Blue people are big. If someone is white then they are green. If Anne is quiet then Anne is blue. If Anne is green then Anne is quiet. Blue people are quiet. If Anne is white and Anne is not blue then Anne is nice. Big people are round. If someone is big and not nice then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-223_Q8", "context": "The bear likes the squirrel. The bear sees the lion. The dog is round. The dog sees the lion. The lion eats the bear. The lion is blue. The lion is green. The lion sees the dog. The squirrel eats the bear. The squirrel does not eat the dog. The squirrel is round. The squirrel sees the dog. If something eats the lion and it is green then it eats the dog. All round things are blue. All nice things are blue. If the dog eats the squirrel then the dog likes the bear. If something is blue then it eats the squirrel. If something likes the bear then the bear is blue. If the bear does not eat the squirrel then the bear does not eat the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not like the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-332_Q5", "context": "The cow is not big. The cow is not green. The lion eats the tiger. The lion sees the cow. The lion visits the cow. The lion does not visit the squirrel. The lion visits the tiger. The squirrel is big. The squirrel is round. The tiger is not green. The tiger does not see the cow. If something sees the squirrel and the squirrel eats the cow then the cow is round. If something is green then it eats the tiger. If the squirrel is round then the squirrel visits the cow. If something eats the cow then it sees the squirrel. If something sees the tiger and the tiger visits the squirrel then it is nice. If something is round then it eats the cow. If something is kind then it eats the cow. If the tiger visits the cow then the cow sees the squirrel. If something sees the cow then the cow eats the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel sees the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-795_Q5", "context": "Bob is green. Bob is young. Charlie is round. Charlie is young. Dave is green. Dave is nice. Dave is quiet. Dave is red. Dave is round. Dave is young. Erin is nice. Erin is quiet. Erin is red. Erin is rough. Erin is round. Erin is young. If something is quiet and green then it is round. If Dave is young and Dave is red then Dave is nice. If Dave is young and Dave is quiet then Dave is rough. If something is red and green then it is rough. If Charlie is green and Charlie is rough then Charlie is nice. If Charlie is quiet and Charlie is round then Charlie is green. Round, green things are red. If something is round then it is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-724_Q7", "context": "Bob is quiet. Dave is green. Dave is not round. Fiona is green. Fiona is not quiet. Fiona is red. Harry is round. Round people are rough. All rough people are quiet. If Harry is quiet then Harry is smart. All rough, green people are red. Smart, quiet people are green. Red, quiet people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-780_Q18", "context": "Anne is red. Bob is kind. Bob is young. Gary is cold. Gary is kind. Gary is quiet. Gary is red. Gary is round. Gary is young. Harry is kind. Harry is quiet. Harry is young. Cold things are round. Furry, young things are cold. If Gary is red then Gary is young. If something is furry and quiet then it is cold. Quiet things are furry. All young, round things are red. If Bob is young then Bob is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-670_Q15", "context": "Charlie is big. Charlie is cold. Charlie is green. Charlie is quiet. Charlie is red. Dave is big. Dave is quiet. Gary is big. Gary is green. Gary is nice. Harry is not cold. If Dave is quiet and Dave is nice then Dave is white. Quiet people are green. If Dave is white and Dave is green then Dave is big. All white people are cold. If someone is cold then they are red. If someone is green and quiet then they are nice. Red people are big. All quiet people are big. If someone is nice and not red then they are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-547_Q6", "context": "Charlie is quiet. Dave is quiet. Dave is young. Erin is blue. Erin is nice. Erin is quiet. Fiona is not blue. Fiona is cold. Fiona is nice. Fiona is round. Fiona is young. If someone is kind then they are round. All kind, cold people are blue. If someone is nice and not young then they are not blue. If Fiona is kind then Fiona is blue. If Dave is kind and Dave is blue then Dave is not nice. Round people are cold. If Dave is young then Dave is kind. If Erin is kind and Erin is blue then Erin is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-259_Q5", "context": "The bald eagle is big. The bald eagle sees the squirrel. The dog eats the mouse. The dog is not cold. The dog is not nice. The dog visits the mouse. The mouse is red. The squirrel sees the bald eagle. The squirrel visits the bald eagle. The squirrel visits the dog. If something sees the mouse then it visits the mouse. If something eats the dog then it visits the mouse. If something eats the squirrel then it visits the mouse. If something visits the dog then the dog visits the bald eagle. If something is big and it visits the mouse then the mouse visits the squirrel. If something visits the bald eagle then the bald eagle sees the mouse. If something is big then it visits the bald eagle. If something visits the squirrel then it is big. If something eats the bald eagle and it sees the squirrel then it does not see the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle visits the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-287_Q4", "context": "Anne is not kind. Anne is quiet. Dave is not green. Dave is rough. Dave is round. Dave is smart. Fiona is quiet. Fiona is round. Gary is smart. Gary is young. Round people are rough. If someone is smart then they are rough. All young, rough people are smart. If someone is rough then they are kind. Rough people are kind. If Fiona is smart and Fiona is kind then Fiona is green. If Anne is round then Anne is quiet. Round, rough people are quiet. All kind people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-947_Q13", "context": "The bear chases the squirrel. The cat chases the cow. The cat is blue. The cat is green. The cat likes the bear. The cat likes the squirrel. The cow chases the cat. The cow is cold. The cow likes the bear. The cow likes the cat. The cow sees the bear. The cow sees the squirrel. The squirrel is green. The squirrel likes the bear. The squirrel likes the cat. The squirrel likes the cow. If something is young then it sees the cow. If something is young and it likes the bear then the bear is green. If something sees the squirrel then the squirrel sees the cat. If the squirrel sees the cat then the cat chases the bear. If something is green then it chases the cow. If something chases the cow then it is young.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-805_Q3", "context": "The cat is blue. The cat is nice. The cat is round. The cat visits the tiger. The mouse likes the cat. The mouse likes the tiger. The mouse sees the cat. The mouse visits the tiger. The squirrel likes the mouse. The tiger is cold. The tiger is kind. The tiger likes the mouse. The tiger likes the squirrel. The tiger sees the cat. The tiger sees the mouse. The tiger visits the squirrel. If someone is cold then they like the tiger. If someone visits the squirrel then they visit the mouse. If someone is nice then they see the cat. If someone sees the tiger then they are blue. If someone visits the mouse then the mouse sees the tiger. If someone visits the squirrel then they are cold. If someone is blue then they visit the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat visits the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-126_Q7", "context": "Dave is big. Dave is round. Dave is smart. Erin is blue. Fiona is big. Fiona is green. Fiona is smart. Harry is big. Harry is green. Harry is rough. Harry is smart. Harry is young. If something is young and rough then it is round. All smart things are rough. If something is round then it is green. If something is rough and big then it is young. Blue things are smart. Rough, smart things are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-356_Q20", "context": "The bald eagle does not eat the dog. The bald eagle is cold. The bald eagle is young. The bald eagle likes the mouse. The dog chases the lion. The dog likes the bald eagle. The lion is cold. The lion likes the mouse. The mouse eats the lion. The mouse is not cold. The mouse likes the dog. If something eats the bald eagle then it is blue. If something is blue then it chases the mouse. If something likes the mouse then it chases the lion. If something chases the lion then the lion eats the bald eagle. If the lion chases the dog and the lion does not chase the bald eagle then the bald eagle chases the lion. If something chases the mouse then the mouse is blue. If something eats the dog then the dog likes the bald eagle. If something chases the bald eagle then the bald eagle is not blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-788_Q2", "context": "The bald eagle is big. The bald eagle is kind. The bald eagle likes the cow. The bear chases the bald eagle. The bear is kind. The cow is young. The cow likes the bald eagle. The cow likes the bear. The dog chases the bald eagle. The dog is young. If something sees the cow and it chases the bald eagle then the cow chases the dog. If something is young then it likes the cow. If something likes the cow and it sees the cow then the cow likes the bear. If something is kind then it sees the cow. If something sees the bear then the bear is young. If something chases the dog then the dog sees the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1298_Q12", "context": "Anne is green. Anne is nice. Anne is red. Anne is smart. Anne is white. Bob is green. Bob is nice. Bob is round. Bob is white. Dave is round. Gary is green. Gary is nice. Gary is red. Gary is white. Green, red things are smart. Round things are cold. Cold, smart things are round. All smart things are cold. Red, white things are nice. All cold, round things are green. White, green things are red. All green things are smart. All smart things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-800_Q10", "context": "Anne is nice. Dave is nice. Dave is rough. Gary is nice. Gary is not smart. Harry is big. Harry is round. All white people are round. If Dave is big then Dave is white. All cold, round people are rough. Smart, white people are cold. If Dave is round and Dave is big then Dave is smart. If someone is nice then they are big. All rough, white people are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-596_Q6", "context": "Anne is not rough. Bob is blue. Erin is not furry. Erin is red. Gary is big. Gary is not cold. Gary is furry. If something is blue then it is rough. Red things are rough. If Gary is rough then Gary is not blue. Rough things are red. Big things are quiet. All cold things are big. If something is red then it is big. If something is blue and not rough then it is big. Quiet, big things are not cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-729_Q8", "context": "Charlie is kind. Charlie is nice. Charlie is round. Charlie is not white. Dave is kind. Dave is round. Dave is not smart. Gary is nice. Gary is white. Harry is round. If something is green then it is white. If something is smart and white then it is not round. If something is white then it is round. All white, smart things are furry. If something is round then it is furry. If Harry is furry then Harry is green. All white things are nice. If something is smart and not furry then it is nice. If something is nice and round then it is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-70_Q23", "context": "The bear sees the lion. The bear visits the lion. The bear visits the squirrel. The lion chases the bear. The lion chases the mouse. The lion is big. The lion sees the squirrel. The mouse chases the bear. The mouse visits the lion. The squirrel is young. The squirrel visits the lion. The squirrel visits the mouse. If someone sees the lion and the lion is kind then they are red. If someone visits the lion and they are red then the lion visits the squirrel. If someone is kind then they see the lion. If the lion visits the squirrel then the lion chases the bear. If the squirrel chases the lion then the lion is kind. If someone is big then they chase the lion. If someone chases the bear then the bear is big. If someone chases the lion then the lion is kind. If someone is red then they visit the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not chase the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-74_Q9", "context": "The cat chases the rabbit. The mouse chases the cat. The mouse is red. The mouse is round. The rabbit is red. The rabbit sees the mouse. The squirrel chases the cat. The squirrel chases the mouse. The squirrel is kind. The squirrel sees the rabbit. If something is red then it sees the mouse. If the mouse sees the squirrel then the squirrel eats the cat. If something chases the squirrel and it is red then the squirrel eats the rabbit. If something eats the cat and it chases the cat then it sees the mouse. If something sees the mouse then it sees the squirrel. If something eats the mouse and it sees the mouse then the mouse sees the squirrel. If something eats the rabbit then it sees the rabbit. If something sees the squirrel and it sees the rabbit then it eats the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel sees the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-253_Q17", "context": "Bob is big. Bob is kind. Bob is nice. Charlie is kind. Charlie is young. Erin is young. Harry is furry. If Charlie is kind and Charlie is young then Charlie is furry. If someone is furry and rough then they are big. If someone is young and furry then they are rough. If someone is furry and big then they are nice. If someone is kind and nice then they are not cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-975_Q8", "context": "Anne is blue. Anne is nice. Bob is kind. Bob is nice. Fiona is blue. Fiona is furry. Fiona is kind. Fiona is nice. Fiona is smart. Gary is blue. Gary is furry. Gary is smart. Big, furry things are green. Kind, nice things are big. All smart, green things are kind. All nice things are furry. If Anne is kind and Anne is big then Anne is green. If Fiona is blue then Fiona is green. Furry, green things are smart. Furry things are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-259_Q11", "context": "The bald eagle is big. The bald eagle sees the squirrel. The dog eats the mouse. The dog is not cold. The dog is not nice. The dog visits the mouse. The mouse is red. The squirrel sees the bald eagle. The squirrel visits the bald eagle. The squirrel visits the dog. If something sees the mouse then it visits the mouse. If something eats the dog then it visits the mouse. If something eats the squirrel then it visits the mouse. If something visits the dog then the dog visits the bald eagle. If something is big and it visits the mouse then the mouse visits the squirrel. If something visits the bald eagle then the bald eagle sees the mouse. If something is big then it visits the bald eagle. If something visits the squirrel then it is big. If something eats the bald eagle and it sees the squirrel then it does not see the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse visits the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-163_Q1", "context": "Anne is big. Anne is smart. Bob is big. Bob is round. Bob is white. Erin is cold. Erin is rough. Erin is smart. Gary is cold. Gary is nice. Big people are white. Nice, big people are smart. Nice, big people are white. All white, cold people are smart. All white, round people are nice. All big, cold people are rough. If someone is rough then they are nice. All white people are round. All nice people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-752_Q10", "context": "The cat is blue. The cat is nice. The cat does not like the dog. The cat visits the rabbit. The dog is big. The dog is not cold. The dog likes the squirrel. The rabbit eats the cat. The rabbit eats the squirrel. The rabbit does not like the dog. The rabbit visits the cat. The rabbit does not visit the dog. The rabbit visits the squirrel. The squirrel eats the rabbit. The squirrel is cold. The squirrel visits the cat. If something visits the rabbit then it likes the rabbit. If something is rough and it visits the dog then it likes the squirrel. If something eats the cat then it does not visit the dog. If something likes the rabbit then the rabbit is rough. If the rabbit is rough then the rabbit eats the dog. If the rabbit is big and the rabbit likes the dog then the rabbit does not eat the dog. If something visits the dog then it eats the dog. If something is rough and it eats the dog then it visits the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not visit the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-989_Q7", "context": "The bald eagle is big. The bald eagle is cold. The bald eagle needs the mouse. The bald eagle needs the rabbit. The bald eagle sees the rabbit. The cow is rough. The cow needs the bald eagle. The cow sees the bald eagle. The cow sees the mouse. The mouse eats the rabbit. The mouse is big. The mouse needs the cow. The mouse needs the rabbit. The rabbit eats the bald eagle. The rabbit eats the mouse. The rabbit is cold. All big things are green. If the rabbit eats the cow then the cow needs the rabbit. Green things are rough. If something sees the mouse then it is big. If something needs the rabbit then the rabbit is nice. If something needs the bald eagle then the bald eagle is nice. If something needs the rabbit and it is rough then the rabbit is big. If something eats the cow then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-619_Q4", "context": "The cat chases the cow. The cat is blue. The cat needs the lion. The cat does not visit the cow. The cat visits the squirrel. The cow chases the cat. The cow is big. The cow is blue. The lion does not chase the cat. The lion does not chase the squirrel. The lion is big. The lion does not need the cow. The lion visits the cow. The squirrel chases the cow. The squirrel is blue. The squirrel needs the cow. If something needs the cat then it visits the cat. If something chases the cat and the cat visits the cow then the cow does not visit the cat. If something chases the squirrel and it visits the lion then the squirrel chases the cow. If the cow is not big then the cow does not chase the squirrel. If something visits the cat then the cat is nice. If the squirrel chases the cow then the cow does not need the squirrel. If something is nice then it needs the cow. If something is kind and not big then it visits the squirrel. If something needs the cow then it needs the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not need the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1369_Q10", "context": "Dave is furry. Dave is green. Dave is kind. Dave is smart. Erin is kind. Erin is quiet. Fiona is green. Fiona is quiet. Fiona is smart. Gary is kind. Gary is white. If something is green and smart then it is quiet. If Erin is smart then Erin is quiet. All kind, furry things are green. All furry things are kind. If something is kind then it is rough. All kind, rough things are smart. If something is quiet and kind then it is white. If something is white and smart then it is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-275_Q20", "context": "Anne is big. Anne is not furry. Anne is green. Anne is not kind. Anne is quiet. Anne is round. Charlie is big. Charlie is furry. Dave is cold. Dave is quiet. Fiona is quiet. Kind things are not furry. If Dave is furry then Dave is cold. Cold things are green. All quiet, green things are round. If Fiona is round then Fiona is kind. All quiet things are cold. All furry things are not cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-640_Q18", "context": "The bear is kind. The bear visits the mouse. The cow sees the lion. The cow visits the mouse. The lion is round. The lion sees the bear. The lion visits the bear. The lion visits the mouse. The mouse needs the bear. The mouse sees the bear. The mouse sees the cow. If something needs the bear then it is green. If the bear sees the lion then the lion is big. If something sees the mouse and the mouse sees the cow then the mouse needs the cow. If something needs the cow then it is round. If something is green then it sees the mouse. If something is green then it visits the bear. If something sees the mouse and it sees the bear then the bear is green. If something sees the cow and it is round then the cow visits the lion. If something is blue and it visits the cow then the cow sees the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow sees the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-161_Q2", "context": "The cat chases the mouse. The cat eats the tiger. The cat is blue. The cat needs the tiger. The dog is green. The dog is round. The mouse chases the dog. The mouse eats the cat. The mouse needs the cat. The tiger chases the mouse. The tiger is green. The tiger is round. If someone needs the tiger then the tiger eats the cat. If someone is round then they eat the dog. If the cat eats the tiger and the tiger eats the cat then the tiger needs the dog. If someone eats the mouse then they chase the tiger. If someone needs the dog then they need the mouse. If someone is blue then they are green. If someone needs the mouse and the mouse chases the dog then the dog eats the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not chase the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-566_Q21", "context": "Anne is not kind. Anne is smart. Anne is white. Bob is green. Bob is nice. Fiona is nice. Gary is red. If someone is red and nice then they are rough. If Fiona is red and Fiona is rough then Fiona is kind. Red people are nice. Rough people are nice. If Gary is red and Gary is smart then Gary is white. Kind people are smart. If someone is green and not nice then they are smart. Rough people are kind. If someone is nice and white then they are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-281_Q9", "context": "Anne is round. Bob is round. Bob is smart. Dave is red. Dave is round. Gary is furry. Gary is kind. Gary is nice. Gary is red. Gary is round. Furry people are kind. All kind people are round. If Anne is red then Anne is kind. If someone is round and smart then they are nice. Round people are red. Furry people are round. Round, furry people are smart. Red, kind people are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-1011_Q11", "context": "The dog is big. The dog is green. The dog sees the tiger. The lion chases the tiger. The lion is red. The lion needs the rabbit. The lion needs the tiger. The lion sees the tiger. The rabbit needs the lion. The tiger chases the lion. The tiger is green. The tiger sees the lion. If something needs the lion then it needs the tiger. If something sees the lion and it needs the tiger then the tiger sees the dog. If something is green then it chases the tiger. If something sees the dog and the dog sees the tiger then the tiger is rough. If something is rough then it needs the lion. If something needs the dog and it needs the lion then it chases the rabbit. If something sees the tiger then it needs the dog. If something needs the tiger then it sees the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger sees the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1043_Q3", "context": "Dave is red. Fiona is cold. Fiona is red. Fiona is round. Fiona is white. Gary is cold. Gary is nice. Gary is red. Harry is cold. Harry is nice. Harry is red. Harry is round. Harry is white. Harry is young. If Harry is young then Harry is red. If something is young then it is smart. Cold, young things are round. All white things are cold. Smart things are young. Smart things are white. If something is red then it is young. All smart things are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1298_Q8", "context": "Anne is green. Anne is nice. Anne is red. Anne is smart. Anne is white. Bob is green. Bob is nice. Bob is round. Bob is white. Dave is round. Gary is green. Gary is nice. Gary is red. Gary is white. Green, red things are smart. Round things are cold. Cold, smart things are round. All smart things are cold. Red, white things are nice. All cold, round things are green. White, green things are red. All green things are smart. All smart things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-343_Q11", "context": "Charlie is big. Charlie is kind. Charlie is rough. Charlie is round. Charlie is white. Dave is nice. Dave is rough. Erin is kind. Erin is nice. Erin is rough. Erin is round. Erin is smart. Erin is white. Gary is kind. Gary is rough. Gary is white. If Dave is white then Dave is kind. If Gary is big and Gary is kind then Gary is smart. If Erin is round and Erin is kind then Erin is rough. All kind, rough things are smart. Kind, smart things are big. All big things are round. If something is nice then it is white.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-656_Q13", "context": "Anne is smart. Anne is young. Charlie is quiet. Charlie is young. Dave is rough. Dave is round. Fiona is rough. Fiona is smart. Fiona is white. Fiona is young. If Anne is round then Anne is furry. All young, furry people are white. If someone is white and furry then they are quiet. If someone is young and white then they are quiet. All young, smart people are furry. Quiet, rough people are round. If Anne is quiet and Anne is smart then Anne is young. All white people are furry. If someone is quiet and smart then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-113_Q16", "context": "The bear is young. The bear likes the cat. The bear likes the lion. The bear likes the tiger. The bear needs the lion. The bear needs the tiger. The bear visits the lion. The bear visits the tiger. The cat needs the tiger. The lion is young. The tiger is blue. The tiger likes the bear. The tiger likes the cat. The tiger visits the lion. If something likes the bear then it is rough. If something likes the bear and it visits the bear then the bear visits the cat. If something likes the bear and it visits the cat then it is rough. Big things are nice. If something is rough then it needs the bear. If something visits the tiger and it visits the cat then it is nice. If something likes the lion then the lion is young. If something is big then it is rough. If something is rough and it needs the bear then it visits the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear visits the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-66_Q9", "context": "Bob is furry. Bob is quiet. Charlie is white. Fiona is blue. Fiona is young. Gary is not round. Gary is young. All quiet people are furry. If Charlie is not blue and Charlie is not young then Charlie is not white. If someone is blue then they are quiet. If someone is furry and young then they are round. If someone is rough and young then they are white. If someone is blue and not quiet then they are rough. Young, round people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-91_Q7", "context": "Bob is cold. Bob is nice. Dave is blue. Dave is nice. Dave is quiet. Fiona is rough. Fiona is young. Gary is blue. Gary is cold. Gary is nice. Gary is quiet. Gary is red. Gary is rough. Gary is young. All red people are blue. If Fiona is nice then Fiona is blue. If Fiona is blue then Fiona is red. If someone is young then they are quiet. Cold, quiet people are nice. Quiet, young people are cold. If someone is red and rough then they are blue. If someone is red then they are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-651_Q20", "context": "The bear eats the dog. The bear eats the rabbit. The bear is round. The bear needs the rabbit. The bear needs the tiger. The bear sees the rabbit. The dog eats the bear. The rabbit eats the tiger. The rabbit is round. The tiger eats the bear. The tiger is cold. The tiger is young. If something eats the tiger then the tiger needs the dog. If the bear sees the dog and the dog eats the tiger then the dog eats the bear. If something eats the bear then it sees the tiger. If the tiger sees the rabbit then the rabbit eats the bear. If something eats the bear and the bear sees the rabbit then it sees the dog. If something sees the dog then it sees the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1010_Q6", "context": "Anne is not red. Anne is not round. Anne is white. Charlie is not blue. Charlie is cold. Charlie is nice. Charlie is rough. Charlie is round. Charlie is white. Erin is cold. Fiona is blue. Fiona is round. Round things are cold. Cold, rough things are white. If something is nice then it is white. If something is cold and red then it is not blue. If something is blue and white then it is rough. If Fiona is round and Fiona is cold then Fiona is rough. If Erin is cold then Erin is not red. If Fiona is white then Fiona is nice. Nice things are not red.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-812_Q2", "context": "Erin is green. Erin is smart. Fiona is big. Fiona is rough. Gary is not smart. Gary is not young. Harry is big. Big, furry things are not young. All smart things are kind. If Harry is smart then Harry is rough. Furry things are green. All young things are not green. All rough, big things are furry. Smart, rough things are big. If something is smart and kind then it is rough. If Harry is young and Harry is kind then Harry is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-620_Q4", "context": "The bald eagle chases the cat. The bald eagle is not blue. The bald eagle is round. The bald eagle is young. The bear chases the squirrel. The bear is rough. The bear sees the bald eagle. The bear does not see the cat. The cat is young. The cat likes the bear. The cat sees the bear. The cat sees the squirrel. The squirrel chases the bald eagle. The squirrel is blue. The squirrel sees the bald eagle. The squirrel sees the bear. If someone chases the squirrel then they chase the bear. If someone likes the cat then the cat chases the squirrel. If someone chases the bear and they see the bald eagle then they like the bald eagle. If someone sees the bear and the bear likes the bald eagle then they chase the squirrel. If someone likes the cat and they see the squirrel then the cat sees the squirrel. If someone is young then they chase the bald eagle. If someone chases the cat then the cat is young. If someone sees the bald eagle and they like the bald eagle then they are round. If the bald eagle sees the bear then the bald eagle likes the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not chase the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-125_Q3", "context": "The mouse eats the rabbit. The mouse eats the tiger. The mouse does not need the rabbit. The rabbit does not eat the mouse. The rabbit does not need the mouse. The rabbit visits the squirrel. The rabbit visits the tiger. The squirrel is green. The squirrel needs the rabbit. The tiger is nice. If something is blue then it visits the rabbit. If something visits the mouse and it eats the rabbit then it visits the rabbit. All nice things are blue. If something needs the mouse and it eats the tiger then the tiger does not eat the mouse. If the mouse eats the tiger and the rabbit does not visit the mouse then the rabbit does not visit the squirrel. If the mouse visits the tiger and the mouse is not green then the mouse is blue. If something visits the rabbit then the rabbit is nice. If something is green and nice then it eats the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-202_Q8", "context": "The cat does not chase the dog. The cat is young. The cat needs the dog. The cat does not see the squirrel. The cow is big. The cow is round. The cow needs the cat. The cow sees the cat. The cow sees the dog. The cow sees the squirrel. The dog needs the cow. The dog sees the cat. The dog sees the cow. The squirrel is not round. The squirrel needs the dog. The squirrel does not see the cow. If someone is young then they chase the cat. If someone needs the cow and they chase the dog then the cow sees the squirrel. If someone needs the squirrel and the squirrel needs the dog then the dog chases the cat. If someone needs the cat and they need the squirrel then the cat is kind. If someone chases the cat then they need the squirrel. If the squirrel needs the dog then the dog needs the cat. If someone needs the dog then they chase the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not chase the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-205_Q21", "context": "The bald eagle chases the cow. The bald eagle is big. The bald eagle is rough. The cow chases the squirrel. The cow is rough. The cow visits the squirrel. The cow visits the tiger. The squirrel is not young. The squirrel does not see the bald eagle. The tiger is nice. If something sees the tiger and the tiger chases the squirrel then the squirrel is blue. If something visits the tiger then the tiger chases the squirrel. If something visits the bald eagle then the bald eagle is blue. If something is blue then it sees the tiger. If something visits the squirrel then it visits the bald eagle. If something sees the bald eagle and the bald eagle is big then the bald eagle sees the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not see the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-602_Q19", "context": "The bear is red. The bear needs the rabbit. The bear sees the mouse. The dog eats the bear. The mouse is big. The mouse is nice. The mouse is red. The rabbit is big. The rabbit needs the dog. The rabbit sees the bear. If something eats the rabbit and it needs the dog then it eats the dog. If something needs the mouse and the mouse is round then it is big. If something is red and it eats the dog then it sees the rabbit. If something sees the rabbit and the rabbit sees the bear then it eats the mouse. If something is nice then it eats the rabbit. If the rabbit needs the mouse and the rabbit sees the bear then the mouse eats the bear. If something eats the mouse and it eats the dog then the dog is nice. If something eats the rabbit then it needs the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-205_Q11", "context": "Charlie is cold. Charlie is red. Charlie is round. Charlie is white. Dave is green. Dave is red. Dave is white. Erin is green. Erin is round. Fiona is green. Fiona is nice. Fiona is red. Fiona is round. Fiona is white. Green people are white. All nice people are red. Round, red people are white. If Dave is white and Dave is young then Dave is cold. If Charlie is young then Charlie is nice. If someone is young then they are cold. Green, cold people are nice. If someone is nice and young then they are green. If someone is white then they are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-980_Q11", "context": "The cat is big. The cat needs the lion. The dog is big. The dog likes the rabbit. The dog visits the lion. The lion is big. The lion is not cold. The lion likes the cat. The lion likes the rabbit. The rabbit is big. The rabbit is not cold. The rabbit is not nice. The rabbit likes the dog. The rabbit likes the lion. The rabbit needs the cat. The rabbit does not need the lion. If something is cold then it needs the rabbit. If something likes the lion then it is green. If something visits the rabbit then the rabbit visits the cat. If something visits the dog then the dog likes the lion. If something needs the lion and it is not blue then it does not visit the cat. If something likes the cat and it is green then the cat likes the rabbit. If something is green and it likes the lion then it visits the dog. If something likes the dog and the dog is cold then it is not nice. If something likes the rabbit and it does not need the lion then it is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog visits the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-607_Q5", "context": "Bob is furry. Bob is young. Charlie is nice. Charlie is not young. Erin is kind. Erin is not nice. Erin is not rough. Erin is young. Harry is kind. Harry is rough. If something is kind and big then it is nice. If something is kind and nice then it is white. If something is furry and young then it is rough. If Erin is rough then Erin is furry. If Erin is kind and Erin is nice then Erin is furry. If Charlie is furry and Charlie is nice then Charlie is not kind. Rough, young things are big. If something is furry and big then it is kind. If Bob is big and Bob is nice then Bob is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-87_Q1", "context": "The cat is green. The cat needs the rabbit. The mouse chases the cat. The mouse is cold. The mouse is kind. The mouse needs the cat. The mouse needs the rabbit. The mouse visits the cat. The mouse visits the rabbit. The mouse visits the tiger. The rabbit needs the cat. The tiger is green. The tiger needs the mouse. The tiger needs the rabbit. The tiger visits the mouse. The tiger visits the rabbit. If something needs the cat then the cat is green. If something chases the tiger then it needs the tiger. If something needs the cat then it chases the mouse. If the tiger needs the mouse and the tiger visits the cat then the tiger is round. If something is round then it chases the tiger. If something is kind and it chases the cat then it needs the tiger. If something visits the tiger then the tiger needs the cat. If something is green and it chases the mouse then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse needs the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-378_Q15", "context": "Anne is nice. Dave is young. Erin is round. Erin is white. Gary is furry. Gary is rough. Gary is round. All nice, rough people are cold. Rough people are nice. Round, young people are nice. If someone is nice then they are furry. All round people are furry. All white, round people are furry. All round, nice people are rough. If someone is round and young then they are white. Furry, round people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-336_Q2", "context": "Anne is not round. Charlie is big. Charlie is blue. Dave is blue. Dave is not nice. Gary is nice. Gary is red. All nice, blue people are red. Blue, white people are big. Red people are round. All nice, white people are blue. Red, round people are white. If Dave is round then Dave is white. If someone is white and not round then they are quiet. Big, red people are not quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-348_Q21", "context": "The bear does not visit the cow. The cow is kind. The cow likes the dog. The cow visits the bear. The dog is nice. The rabbit does not chase the bear. The rabbit chases the dog. If someone likes the cow then they do not chase the rabbit. If someone visits the dog and they chase the dog then they are red. If someone visits the rabbit then the rabbit is kind. If someone is kind then they visit the bear. If someone visits the bear then they visit the cow. If someone chases the dog and they are not green then they visit the cow. If someone likes the cow then they visit the dog. If someone chases the dog and they chase the cow then the cow does not visit the dog. If someone visits the cow then the cow visits the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not chase the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-253_Q17", "context": "The cat eats the mouse. The cat eats the squirrel. The cat is rough. The cat sees the lion. The cat sees the mouse. The cat sees the squirrel. The lion sees the cat. The lion sees the squirrel. The mouse is round. The mouse sees the squirrel. The squirrel likes the lion. If someone is cold then they are kind. If someone eats the cat then the cat eats the mouse. If someone eats the mouse then they are cold. If someone eats the squirrel and the squirrel is nice then they see the squirrel. If someone eats the squirrel then they are cold. If someone sees the squirrel then they like the cat. If someone likes the lion and the lion likes the cat then they see the squirrel. If someone sees the mouse and they like the cat then they are nice. If someone sees the squirrel and they are nice then the squirrel eats the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-893_Q15", "context": "The bald eagle is big. The bald eagle sees the lion. The bald eagle visits the rabbit. The lion eats the bald eagle. The lion is blue. The lion is cold. The lion visits the bald eagle. The lion visits the rabbit. The rabbit eats the tiger. The rabbit is big. The rabbit sees the bald eagle. The rabbit visits the tiger. The tiger is red. The tiger visits the bald eagle. If someone eats the bald eagle then the bald eagle visits the lion. If someone visits the bald eagle and the bald eagle sees the rabbit then the rabbit is red. If the lion is blue then the lion sees the tiger. If someone is big then they are cold. If someone is red then they visit the lion. If someone eats the bald eagle then they see the bald eagle. If someone eats the tiger and the tiger sees the lion then they visit the lion. If someone eats the lion and the lion sees the rabbit then the rabbit sees the bald eagle. If someone visits the lion and the lion sees the tiger then they see the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not visit the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1053_Q10", "context": "Bob is green. Bob is red. Bob is young. Dave is big. Dave is nice. Dave is red. Erin is nice. Erin is young. Gary is big. Gary is red. Nice, furry people are big. If someone is green and nice then they are red. Nice people are furry. If someone is big then they are furry. Furry people are young. If Dave is nice and Dave is young then Dave is green. All furry, big people are green. Red, furry people are not kind. If Bob is not furry then Bob is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-202_Q14", "context": "Anne is kind. Anne is round. Charlie is blue. Charlie is cold. Charlie is kind. Charlie is not smart. Fiona is not kind. Fiona is smart. Gary is cold. Gary is green. Gary is round. Gary is white. If Fiona is blue then Fiona is green. If Fiona is smart then Fiona is cold. White things are round. All green, white things are round. Green things are round. Round, smart things are white. All cold things are blue. If Charlie is cold and Charlie is green then Charlie is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-827_Q12", "context": "The bear is round. The bear visits the rabbit. The cat eats the dog. The cat visits the bear. The dog does not eat the cat. The dog is not nice. The dog is round. The dog visits the bear. The rabbit chases the dog. The rabbit eats the bear. If something is big then it does not visit the dog. If something visits the rabbit then it chases the rabbit. If something chases the cat then it is round. If something visits the cat and it chases the dog then it is round. If something eats the cat then it is not big. Round things are big. If something chases the rabbit then the rabbit chases the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit visits the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1055_Q17", "context": "Anne is blue. Anne is red. Charlie is kind. Charlie is round. Erin is cold. Erin is kind. Fiona is kind. All red, young people are blue. If Anne is smart then Anne is cold. Young people are smart. All blue people are round. If Fiona is round then Fiona is kind. If Anne is cold then Anne is kind. If Erin is young and Erin is blue then Erin is kind. All round people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-755_Q17", "context": "Bob is blue. Bob is green. Bob is quiet. Fiona is blue. Fiona is green. Fiona is quiet. Fiona is round. Gary is cold. Gary is red. Gary is round. Harry is red. All green, big people are quiet. If someone is red then they are big. If someone is big then they are round. If someone is quiet and green then they are blue. Quiet, big people are red. All round people are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-872_Q14", "context": "Bob is green. Bob is nice. Bob is red. Dave is red. Dave is smart. Fiona is green. Fiona is nice. Fiona is quiet. Fiona is white. Gary is white. If something is white then it is kind. All white, smart things are kind. If something is quiet then it is white. Kind things are nice. Green, white things are red. All smart, red things are nice. If something is green and nice then it is quiet. All nice things are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-794_Q23", "context": "The cat is blue. The cat is nice. The cat likes the cow. The cat needs the cow. The cat needs the rabbit. The cow does not need the rabbit. The cow needs the tiger. The rabbit is round. The tiger is nice. The tiger does not like the cow. If someone likes the cat and they chase the cat then they are blue. If someone likes the cow and they are red then the cow is round. If someone needs the tiger and they need the cat then they do not chase the cow. If someone needs the cat and the cat is blue then the cat is red. If someone is round then they need the cat. If someone likes the cat and the cat needs the rabbit then the cat chases the tiger. If the rabbit needs the tiger then the rabbit is not round.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not like the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-709_Q9", "context": "Anne is kind. Anne is quiet. Bob is blue. Bob is kind. Bob is round. Bob is white. Gary is big. Gary is white. Harry is kind. Harry is quiet. Harry is white. Harry is young. If someone is blue and white then they are young. Blue, big people are young. Blue, white people are round. White people are big. White, big people are blue. Round people are young. If someone is young then they are white. Kind people are round. All big, blue people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1227_Q8", "context": "Anne is cold. Anne is round. Bob is blue. Bob is round. Charlie is blue. Charlie is nice. Gary is cold. If something is big and green then it is not round. Blue, nice things are round. If Bob is furry then Bob is green. All cold, blue things are furry. Nice things are big. All round, cold things are not green. Green, cold things are not nice. If something is cold then it is nice. Big things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-123_Q12", "context": "The bear is nice. The bear visits the tiger. The cat is cold. The cat does not need the tiger. The cat sees the mouse. The cat visits the bear. The mouse needs the bear. The mouse sees the cat. The mouse visits the bear. The tiger is not rough. The tiger does not need the mouse. If someone is rough then they are cold. If someone needs the bear then they need the mouse. If someone is kind then they need the mouse. If someone sees the bear then they are rough. If someone visits the mouse then they see the bear. If someone is kind then they visit the mouse. If someone needs the bear then they are kind. If someone sees the bear and the bear does not visit the cat then the bear does not need the mouse. If someone visits the cat then the cat visits the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-881_Q4", "context": "Dave is cold. Dave is nice. Dave is young. Fiona is blue. Fiona is quiet. Gary is cold. Harry is smart. All quiet, cold things are young. If something is smart then it is blue. If something is quiet and smart then it is nice. Smart, young things are white. If something is nice and blue then it is quiet. Quiet, nice things are cold. All blue things are quiet. All white things are cold. All young things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-558_Q6", "context": "The bald eagle does not like the rabbit. The dog likes the lion. The lion is young. The lion does not like the dog. The lion sees the bald eagle. The rabbit is not blue. The rabbit is not red. The rabbit is young. The rabbit likes the dog. The rabbit likes the lion. The rabbit does not see the bald eagle. The rabbit does not see the dog. The rabbit sees the lion. The rabbit does not visit the bald eagle. If someone is nice then they are red. If someone likes the dog then the dog sees the rabbit. If someone is nice and blue then they do not like the dog. If someone is young and red then they visit the dog. If someone sees the rabbit then they visit the lion. If the dog visits the lion then the lion is nice. If someone likes the rabbit and they are blue then the rabbit is nice. If someone likes the lion and they do not visit the dog then the lion visits the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not visit the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-811_Q4", "context": "The bear is big. The bear is green. The bear is rough. The bear is young. The bear sees the mouse. The cow chases the bear. The cow chases the dog. The cow is young. The dog is red. The dog sees the bear. The mouse sees the cow. If someone chases the cow then they are rough. If someone is green then they are red. If someone sees the bear and the bear is red then the bear sees the cow. If someone is rough then they chase the dog. If someone chases the dog and they chase the mouse then the mouse is green. If someone is big then they visit the cow. If someone chases the cow then they visit the dog. If someone sees the cow then they chase the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not chase the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-103_Q9", "context": "The bald eagle is blue. The bald eagle likes the cat. The bald eagle needs the mouse. The cat is round. The cat needs the cow. The cow is rough. The cow needs the mouse. The mouse is blue. The mouse is round. The mouse is young. The mouse visits the bald eagle. If something needs the bald eagle then it likes the cow. If something needs the cat then it likes the bald eagle. If the mouse visits the bald eagle then the mouse visits the cat. If something visits the bald eagle then it needs the bald eagle. If something likes the mouse then it needs the cow. If something likes the bald eagle then the bald eagle needs the cat. If something likes the cow then the cow visits the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow needs the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-373_Q11", "context": "Anne is big. Anne is cold. Anne is green. Anne is round. Bob is big. Bob is blue. Bob is furry. Bob is green. Bob is kind. Bob is round. Charlie is cold. Charlie is green. Charlie is kind. Charlie is round. Gary is cold. Gary is kind. All cold, green people are blue. Blue people are furry. If Gary is kind then Gary is round. If someone is round then they are green. All furry people are big. If Anne is kind then Anne is blue. Furry, round people are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-22_Q5", "context": "The bear chases the dog. The bear eats the dog. The bear likes the squirrel. The dog chases the bear. The dog eats the bear. The dog is big. The dog likes the bear. The rabbit chases the dog. The rabbit does not chase the squirrel. The rabbit eats the squirrel. The rabbit is not kind. The rabbit is not young. The squirrel does not chase the rabbit. The squirrel eats the dog. If someone likes the bear then the bear is kind. If someone is nice and they like the bear then they eat the dog. If someone chases the bear and the bear is young then the bear eats the dog. If someone likes the bear and the bear is nice then they are kind. If someone likes the squirrel and the squirrel is rough then they are rough. If someone is young and nice then they chase the dog. If someone is kind then they are nice. If someone eats the dog and they are nice then the dog likes the bear. If someone is big and they chase the dog then they eat the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1245_Q18", "context": "Bob is cold. Bob is smart. Fiona is cold. Fiona is quiet. Fiona is smart. Gary is nice. Harry is smart. If someone is quiet and cold then they are rough. All nice people are red. Big people are nice. All red people are quiet. If someone is quiet and rough then they are big. If Fiona is red then Fiona is cold. All red, nice people are smart. Quiet, smart people are rough. All cold people are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-571_Q2", "context": "The bald eagle is not blue. The bald eagle likes the dog. The bald eagle needs the tiger. The bald eagle does not see the dog. The bald eagle sees the tiger. The dog is blue. The dog sees the tiger. The rabbit is green. The rabbit is red. The rabbit sees the dog. The tiger needs the bald eagle. The tiger needs the dog. If someone needs the bald eagle and the bald eagle sees the tiger then they are rough. If someone needs the dog and they like the dog then they need the bald eagle. If someone likes the bald eagle then the bald eagle needs the dog. If someone is rough and they like the dog then the dog needs the tiger. If someone likes the dog and the dog is blue then they see the tiger. If someone needs the tiger and they do not see the dog then the tiger needs the bald eagle. If someone needs the bald eagle then they like the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not see the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-525_Q10", "context": "The cat visits the tiger. The lion eats the tiger. The lion does not visit the tiger. The rabbit eats the cat. The rabbit eats the tiger. The rabbit is nice. The tiger is round. If something is rough and not cold then it does not eat the tiger. If something visits the cat and the cat does not eat the lion then the lion is rough. If something visits the cat then the cat eats the rabbit. If something eats the rabbit then the rabbit is blue. If something eats the tiger then the tiger is blue. If something likes the tiger then the tiger eats the rabbit. If something likes the rabbit then it visits the lion. If something visits the tiger and the tiger is blue then the tiger does not eat the cat. If something is blue then it visits the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-984_Q8", "context": "Bob is kind. Erin is big. Erin is quiet. Fiona is kind. Fiona is rough. Gary is nice. Gary is smart. If something is quiet and smart then it is furry. Rough, big things are kind. If something is big and kind then it is quiet. If something is quiet and big then it is kind. Rough things are big. Smart things are kind. Nice, furry things are quiet. If something is kind then it is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-134_Q1", "context": "The bald eagle sees the rabbit. The dog eats the bald eagle. The dog eats the lion. The dog is green. The dog is nice. The dog needs the bald eagle. The dog needs the lion. The dog sees the bald eagle. The dog sees the rabbit. The lion eats the rabbit. The lion is nice. The lion is round. The lion sees the rabbit. The rabbit eats the bald eagle. If the rabbit eats the bald eagle then the rabbit is kind. All green, kind things are rough. If something sees the bald eagle then it needs the dog. If something sees the bald eagle and it is round then the bald eagle is nice. If the bald eagle needs the dog then the dog is kind. If something is nice then it sees the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog eats the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-220_Q13", "context": "Anne is quiet. Anne is smart. Charlie is blue. Charlie is furry. Charlie is smart. Gary is not furry. Harry is blue. Harry is furry. Harry is nice. Harry is smart. If someone is quiet then they are round. If someone is round then they are blue. If Anne is white then Anne is nice. All blue, quiet people are white. If Harry is not round then Harry is not white. White, quiet people are nice. If someone is nice and smart then they are furry. If someone is furry then they are smart. All white, furry people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-289_Q3", "context": "Charlie is blue. Charlie is kind. Dave is round. Fiona is big. Fiona is blue. Fiona is round. Gary is cold. If someone is white then they are not big. Round people are big. Kind people are not rough. If someone is rough and big then they are round. Blue people are kind. If someone is cold then they are blue. All white people are blue. Big people are cold. If Charlie is blue and Charlie is cold then Charlie is white.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-718_Q2", "context": "The cat chases the squirrel. The cat is not big. The cat does not like the mouse. The cat visits the dog. The cat visits the mouse. The dog is not cold. The dog is young. The mouse likes the squirrel. The squirrel does not chase the dog. The squirrel likes the dog. If the cat is green and the cat visits the mouse then the mouse is big. If something likes the dog then it is cold. If something likes the mouse then the mouse is green. If something is cold then it chases the cat. If something chases the cat then it likes the cat. If something is young then it chases the squirrel. If something chases the squirrel and it does not chase the mouse then the squirrel likes the cat. If something likes the mouse and it is green then the mouse is cold. If something chases the cat then the cat likes the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not chase the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1275_Q12", "context": "Anne is big. Anne is quiet. Anne is smart. Dave is cold. Dave is green. Dave is rough. Dave is smart. Erin is big. Erin is cold. Gary is smart. All cold, quiet people are kind. All big people are kind. All rough, smart people are green. If Dave is big and Dave is smart then Dave is cold. If someone is quiet then they are smart. If someone is smart then they are quiet. All kind people are quiet. Smart, quiet people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-648_Q23", "context": "The bear chases the lion. The cat is cold. The cat is round. The cat does not see the cow. The cow is green. The cow visits the bear. The lion chases the bear. The lion does not chase the cat. The lion is cold. The lion is red. If something visits the bear and the bear does not see the lion then it chases the lion. If something sees the lion then it is cold. If something is kind then it does not visit the lion. If something chases the cow then it sees the cat. If something sees the cat then the cat chases the lion. If something is cold and it sees the cat then the cat is red. If something chases the cow then the cow visits the cat. If something is red then it chases the cow. If the cow visits the bear and the bear visits the cow then the cow sees the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not visit the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-304_Q8", "context": "Bob is smart. Fiona is cold. Fiona is kind. Fiona is red. Fiona is white. Gary is cold. Gary is smart. Gary is young. Harry is big. Harry is white. Kind people are red. If someone is smart then they are kind. All young, cold people are kind. Cold, kind people are big. All red, cold people are big. If someone is young and red then they are cold. If Harry is young then Harry is big. Red, kind people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-48_Q6", "context": "The bear chases the cat. The bear chases the squirrel. The bear is young. The bear does not see the squirrel. The cat chases the cow. The cat chases the squirrel. The cat eats the squirrel. The cat is not kind. The cat does not see the cow. The cow does not chase the cat. The cow chases the squirrel. The squirrel chases the bear. The squirrel eats the cat. The squirrel eats the cow. The squirrel is young. The squirrel sees the cow. If something eats the bear then the bear sees the cow. If something is kind then it eats the bear. If the cow chases the bear and the cat does not chase the cow then the cow sees the squirrel. If something sees the squirrel then it is rough. If something eats the bear and it does not chase the cat then the cat sees the bear. If something sees the cow then it is kind. If something eats the squirrel then it eats the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not eat the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1177_Q13", "context": "Bob is cold. Bob is furry. Dave is cold. Dave is kind. Dave is quiet. Dave is red. Dave is white. Fiona is white. Harry is furry. Harry is kind. Harry is round. Quiet people are kind. If Dave is white and Dave is round then Dave is kind. If someone is furry then they are cold. If Bob is red and Bob is quiet then Bob is furry. All white people are furry. Red, white people are round. If someone is cold then they are red. All round people are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-3_Q1", "context": "Anne is round. Anne is white. Charlie is big. Charlie is rough. Dave is green. Dave is round. Erin is young. All kind things are green. All rough, white things are big. If something is green then it is rough. All green, big things are young. If Erin is round and Erin is green then Erin is big. If something is round and white then it is kind. If Dave is big and Dave is rough then Dave is white. All round things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-987_Q11", "context": "The bear is kind. The cow eats the bear. The cow eats the dog. The cow is not blue. The cow is not kind. The cow likes the dog. The cow likes the tiger. The cow sees the bear. The dog eats the bear. The dog sees the cow. The tiger is blue. The tiger likes the bear. The tiger likes the cow. The tiger likes the dog. If the cow likes the dog and the dog sees the cow then the dog is round. If something sees the tiger then it eats the tiger. If something is kind and it does not like the cow then the cow sees the bear. If something sees the cow then it sees the tiger. If something eats the tiger and it sees the tiger then the tiger sees the cow. If the tiger does not see the cow and the tiger does not like the bear then the tiger likes the dog. If something sees the bear then the bear does not eat the cow. If the bear likes the cow then the bear eats the cow. If the tiger likes the dog then the tiger does not see the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger eats the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-36_Q6", "context": "Bob is blue. Bob is quiet. Bob is smart. Bob is white. Dave is green. Dave is round. Dave is smart. Erin is blue. Gary is blue. Gary is green. Gary is smart. If Erin is big then Erin is smart. All green, white people are smart. White, smart people are round. If Dave is blue then Dave is round. Quiet, green people are round. All green people are quiet. All smart people are green. All blue people are smart. If someone is round and smart then they are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1001_Q7", "context": "Anne is nice. Anne is smart. Dave is rough. Dave is smart. Fiona is big. Fiona is nice. Fiona is young. Harry is furry. Harry is rough. Harry is smart. If someone is big and young then they are blue. If someone is furry and nice then they are young. If someone is rough then they are furry. If Dave is furry then Dave is big. Nice, blue people are big. If someone is young then they are big. All nice people are big. If someone is big then they are nice. All young people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-112_Q20", "context": "Charlie is kind. Charlie is nice. Charlie is quiet. Dave is rough. Dave is white. Erin is nice. Gary is not white. If something is cold then it is not furry. If Charlie is quiet then Charlie is nice. Kind things are white. Nice things are kind. If something is rough then it is kind. Cold, quiet things are rough. All cold things are quiet. If something is white and nice then it is cold. If Erin is cold then Erin is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-963_Q8", "context": "Bob is blue. Bob is kind. Bob is quiet. Bob is round. Charlie is blue. Charlie is green. Charlie is kind. Erin is quiet. Harry is green. Harry is not rough. All kind things are not big. If Erin is quiet then Erin is blue. Big things are rough. If Erin is round then Erin is big. If something is quiet and blue then it is round. Rough, blue things are green. If Harry is rough and Harry is not round then Harry is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1349_Q16", "context": "Anne is red. Anne is rough. Bob is blue. Bob is furry. Bob is nice. Bob is young. Dave is blue. Fiona is blue. Fiona is kind. Fiona is young. Kind, blue people are young. All nice people are rough. All blue people are kind. Nice, blue people are red. All young, red people are blue. Rough, blue people are nice. All young people are blue. All young people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-855_Q19", "context": "Charlie is not blue. Charlie is round. Dave is blue. Dave is smart. Gary is smart. Gary is white. Harry is round. If someone is round and smart then they are quiet. Quiet people are round. If someone is nice then they are red. If Harry is smart then Harry is blue. If someone is round then they are nice. If someone is white then they are nice. All red, round people are smart. Quiet, smart people are not white.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-850_Q14", "context": "Anne is red. Anne is smart. Bob is kind. Bob is not nice. Fiona is furry. Fiona is rough. Gary is not green. Gary is kind. Gary is nice. Gary is rough. If someone is nice then they are red. Smart people are green. If someone is smart and red then they are not kind. All rough, green people are nice. Green people are rough. If someone is red and green then they are rough. If someone is furry and green then they are smart. All rough, furry people are smart. Furry, rough people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-433_Q7", "context": "Anne is furry. Anne is rough. Anne is white. Bob is rough. Bob is white. Fiona is big. Harry is red. All red, white things are rough. All white, quiet things are big. All big, red things are rough. If something is big and red then it is quiet. All big, rough things are furry. Big, furry things are white. Red things are round. If something is furry and round then it is big. All round things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-219_Q11", "context": "Charlie is not quiet. Dave is big. Dave is furry. Erin is cold. Erin is not green. Erin is not kind. Fiona is quiet. Big things are young. Young, cold things are big. Quiet things are big. All young things are cold. If something is big and not furry then it is cold. If something is cold then it is not kind. If something is cold and big then it is quiet. If Fiona is cold and Fiona is not quiet then Fiona is kind. If something is quiet and not kind then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-691_Q6", "context": "Bob is big. Bob is quiet. Fiona is round. Gary is not quiet. Harry is green. Harry is red. Harry is white. Red people are rough. Quiet people are rough. If Bob is round and Bob is green then Bob is big. If someone is red then they are round. If someone is big and rough then they are red. Big people are quiet. If someone is big and green then they are not white. If Gary is not big then Gary is round. If someone is quiet and round then they are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-345_Q9", "context": "Anne is not nice. Anne is round. Anne is not white. Anne is young. Erin is round. Fiona is blue. Gary is young. All nice people are not quiet. All round people are quiet. If Anne is nice then Anne is white. If someone is quiet then they are blue. If Fiona is white then Fiona is blue. If someone is rough then they are young. If someone is nice and not blue then they are not rough. If someone is blue then they are rough. If Erin is young then Erin is white.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-779_Q15", "context": "The bear is rough. The bear needs the dog. The bear visits the cat. The bear visits the dog. The cat is blue. The cat likes the cow. The cow is rough. The cow likes the bear. The dog needs the bear. The dog visits the cat. All blue people are big. If someone visits the cow then they need the cow. If someone is nice then they like the cow. If someone likes the cat and they are nice then they are big. If someone is blue then they visit the cow. If the cat needs the cow then the cow is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not like the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1107_Q2", "context": "Anne is blue. Anne is white. Dave is blue. Erin is blue. Erin is cold. Erin is red. Erin is white. Gary is big. Gary is blue. Gary is kind. Kind, red people are blue. Red people are cold. If someone is kind then they are red. All blue people are kind. All cold, red people are white. If Dave is green and Dave is red then Dave is kind. If Dave is blue then Dave is green. If Dave is white then Dave is big. If someone is white then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-472_Q14", "context": "The bear visits the lion. The dog is young. The dog visits the bear. The lion is blue. The lion needs the bear. The mouse needs the bear. The mouse needs the dog. If someone visits the bear and the bear is nice then they see the dog. If someone sees the mouse and the mouse needs the bear then the mouse sees the dog. If the lion is big then the lion sees the dog. Blue people are nice. If someone needs the lion and they visit the lion then the lion needs the dog. If someone visits the lion then they visit the mouse. If someone visits the mouse then they need the mouse. If someone visits the bear and they are blue then the bear sees the lion. If someone needs the mouse then the mouse visits the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog sees the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1039_Q6", "context": "Anne is cold. Anne is not young. Bob is green. Fiona is cold. Fiona is rough. Gary is red. Gary is young. Green, rough things are red. If Gary is cold and Gary is red then Gary is green. If something is nice then it is rough. Cold, rough things are kind. If something is cold and nice then it is young. If something is kind and cold then it is green. All red things are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-27_Q7", "context": "The cat chases the cow. The cat chases the mouse. The cat is nice. The cat is red. The cat is rough. The cat needs the lion. The cat does not need the mouse. The cat visits the mouse. The cow does not chase the cat. The cow is big. The lion chases the cat. The lion chases the cow. The lion is young. The lion visits the cow. The mouse is big. The mouse is rough. If someone needs the lion then the lion does not need the mouse. If someone visits the cat then they are not big. If someone is rough then they visit the mouse. If the cow visits the lion and the cow is big then the lion does not need the cat. If someone visits the mouse then they are red. If someone chases the cow and they do not need the mouse then the cow is rough. If someone is red then they visit the lion. If someone is red and they chase the lion then the lion is red. If someone chases the mouse and they are red then the mouse needs the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1204_Q10", "context": "Bob is not furry. Bob is quiet. Bob is not rough. Bob is not round. Erin is not kind. Erin is rough. Gary is big. Harry is furry. Harry is green. Harry is not round. All big, round people are rough. If someone is rough and not green then they are quiet. If someone is round and rough then they are quiet. All big people are round. All quiet people are kind. All rough, quiet people are big. If someone is round and kind then they are furry. If someone is big and not quiet then they are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-19_Q8", "context": "Bob is big. Bob is blue. Bob is cold. Bob is red. Bob is rough. Bob is smart. Bob is white. Charlie is blue. Charlie is red. Charlie is rough. Erin is big. Erin is smart. Fiona is red. Fiona is white. Big people are smart. Big people are red. Rough, blue people are white. All rough, smart people are cold. Blue, cold people are big. All cold people are blue. If someone is big and red then they are rough. If Charlie is red and Charlie is blue then Charlie is rough. Red people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-713_Q9", "context": "The bear chases the cat. The bear is big. The bear is cold. The bear likes the squirrel. The bear likes the tiger. The bear sees the squirrel. The cat is big. The cat is cold. The cat is young. The cat likes the bear. The cat likes the tiger. The cat sees the bear. The cat sees the tiger. The squirrel is young. The tiger chases the bear. The tiger likes the squirrel. If the tiger is young then the tiger likes the squirrel. If something is round then it likes the bear. If something likes the bear then it is cold. If the tiger likes the bear and the bear sees the squirrel then the squirrel is round. If something likes the squirrel then it is round. If something chases the bear and the bear likes the cat then the cat likes the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel likes the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-615_Q2", "context": "Anne is big. Erin is big. Gary is red. Gary is rough. Harry is not big. Harry is not nice. Harry is not young. If something is nice then it is red. If something is nice then it is red. If something is young and big then it is red. If Gary is nice then Gary is big. If Erin is red and Erin is nice then Erin is rough. All big things are young. Round things are rough. All red things are nice. All rough things are not round.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-295_Q7", "context": "The bald eagle needs the lion. The bald eagle needs the mouse. The bear likes the bald eagle. The bear needs the lion. The bear sees the bald eagle. The lion is blue. The mouse sees the bear. If something sees the lion then it likes the bald eagle. If something likes the bear then it likes the bald eagle. If something needs the bear and the bear is blue then the bear is round. If something likes the mouse then the mouse sees the bear. If something likes the mouse and the mouse is nice then it likes the bear. If something needs the lion and it likes the bald eagle then it likes the mouse. If something likes the bear and it likes the mouse then the mouse needs the bear. If something needs the bear then it likes the bear. If something likes the bald eagle then it needs the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse needs the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-767_Q4", "context": "The cat is not round. The cow is blue. The cow is kind. The cow likes the cat. The cow sees the rabbit. The rabbit chases the cow. The rabbit is nice. The tiger does not chase the cow. The tiger does not like the rabbit. The tiger sees the rabbit. If something chases the cow then the cow chases the cat. If something chases the rabbit then it is not big. If something likes the cow then the cow is nice. If something is kind then it sees the rabbit. If something chases the cat then the cat likes the cow. If the rabbit chases the tiger then the rabbit does not see the cow. If something is nice and it sees the rabbit then it chases the rabbit. If something is big then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not chase the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-774_Q8", "context": "Anne is rough. Bob is big. Bob is blue. Bob is kind. Bob is rough. Gary is big. Gary is blue. Gary is furry. Gary is kind. Gary is rough. Gary is smart. Gary is white. Harry is blue. Harry is furry. If someone is furry then they are big. All big people are rough. All kind, white people are smart. All rough people are kind. If someone is kind then they are white. White, smart people are furry. If someone is furry and big then they are smart. All smart people are white. If someone is kind and rough then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-497_Q9", "context": "The bald eagle eats the mouse. The bald eagle is blue. The lion is red. The lion needs the bald eagle. The lion needs the rabbit. The mouse eats the lion. The mouse visits the lion. The mouse visits the rabbit. The rabbit eats the bald eagle. The rabbit is red. The rabbit is round. The rabbit needs the bald eagle. If something is round and it needs the rabbit then the rabbit is big. If something is big then it needs the rabbit. If something visits the lion then the lion is green. If something is green then it is round. If something needs the bald eagle and the bald eagle needs the lion then it needs the lion. If something needs the mouse and the mouse needs the rabbit then the rabbit is blue. If something visits the bald eagle then it needs the lion. If something needs the rabbit then it visits the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit needs the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-457_Q11", "context": "The bald eagle is green. The bear is red. The bear needs the lion. The bear sees the lion. The cow chases the bear. The cow is kind. The cow needs the lion. The lion chases the bald eagle. The lion chases the cow. The lion is blue. The lion is red. The lion sees the cow. If someone is green and red then they are big. If someone sees the bald eagle then the bald eagle needs the bear. If someone is red then they need the cow. If someone is big and they see the cow then they chase the lion. If someone chases the lion then the lion is green. If someone needs the bear and the bear chases the lion then they are green. If someone sees the lion and the lion is green then the lion sees the bald eagle. If someone is red and they need the cow then the cow chases the lion. If someone sees the bear and the bear chases the lion then the bear sees the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion chases the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-954_Q3", "context": "Anne is big. Anne is cold. Anne is rough. Anne is white. Charlie is white. Erin is big. Erin is kind. Erin is round. Harry is rough. Harry is round. Round things are kind. If something is white and rough then it is kind. All rough, kind things are furry. White things are cold. All big things are kind. If something is cold then it is big. If something is big and kind then it is rough. All round, cold things are white. Cold, rough things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-185_Q5", "context": "The bear chases the lion. The bear sees the lion. The cow chases the squirrel. The cow is green. The lion chases the bear. The lion likes the bear. The lion sees the bear. The squirrel chases the bear. The squirrel is green. The squirrel is young. The squirrel likes the cow. The squirrel sees the cow. If someone is young and they see the bear then the bear sees the squirrel. If the bear sees the squirrel then the bear is green. If someone likes the bear then they see the bear. If someone is green then they like the bear. If someone chases the bear and they see the lion then they chase the lion. If someone sees the squirrel and the squirrel sees the lion then they chase the lion. If someone is green then they see the squirrel. If the lion sees the squirrel and the lion likes the cow then the squirrel chases the lion. If someone sees the lion and the lion likes the cow then the cow is red.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow sees the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1268_Q1", "context": "Charlie is furry. Charlie is smart. Fiona is rough. Fiona is smart. Gary is smart. Harry is quiet. Harry is smart. If something is cold and furry then it is rough. All furry things are young. White, rough things are cold. If something is rough and young then it is white. If something is smart and white then it is quiet. If something is rough and quiet then it is smart. If something is young then it is cold. If Harry is white then Harry is smart. If Harry is young then Harry is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-87_Q14", "context": "The cat is green. The cat needs the rabbit. The mouse chases the cat. The mouse is cold. The mouse is kind. The mouse needs the cat. The mouse needs the rabbit. The mouse visits the cat. The mouse visits the rabbit. The mouse visits the tiger. The rabbit needs the cat. The tiger is green. The tiger needs the mouse. The tiger needs the rabbit. The tiger visits the mouse. The tiger visits the rabbit. If something needs the cat then the cat is green. If something chases the tiger then it needs the tiger. If something needs the cat then it chases the mouse. If the tiger needs the mouse and the tiger visits the cat then the tiger is round. If something is round then it chases the tiger. If something is kind and it chases the cat then it needs the tiger. If something visits the tiger then the tiger needs the cat. If something is green and it chases the mouse then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-913_Q10", "context": "The cat needs the squirrel. The cow chases the squirrel. The cow is blue. The rabbit chases the cat. The rabbit is kind. The rabbit is red. The squirrel eats the cat. The squirrel is kind. The squirrel is red. The squirrel needs the cow. The squirrel needs the rabbit. If something needs the cow then it eats the cow. If something is red then it is big. If something is blue and nice then it chases the cow. If something is nice then it chases the rabbit. If the cat needs the squirrel and the squirrel needs the cat then the cat is blue. If something eats the cow then it is nice. If something chases the rabbit then it is blue. If something is red then it needs the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-910_Q10", "context": "Anne is blue. Anne is furry. Anne is green. Anne is quiet. Anne is young. Bob is furry. Bob is round. Erin is green. Erin is young. Harry is furry. Furry people are blue. If someone is furry and young then they are green. All quiet, round people are rough. If Anne is green and Anne is blue then Anne is round. Furry people are quiet. All rough, quiet people are young. Quiet people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-626_Q14", "context": "The bald eagle chases the cow. The bald eagle chases the dog. The bald eagle likes the cow. The cow chases the mouse. The cow is red. The cow likes the dog. The cow likes the mouse. The dog is big. The dog is green. The mouse chases the bald eagle. The mouse eats the bald eagle. The mouse eats the cow. If someone is big and they like the dog then they are green. If someone is red then they eat the cow. If someone eats the cow then they like the bald eagle. If the dog chases the mouse and the mouse is red then the dog eats the mouse. If someone likes the cow then they are round. If someone is red then they chase the dog. If someone is big and they eat the bald eagle then the bald eagle is green. If the cow likes the bald eagle then the bald eagle is red. If someone eats the dog then they eat the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-522_Q23", "context": "The bear is big. The bear sees the dog. The dog eats the bear. The dog eats the rabbit. The dog is big. The rabbit eats the tiger. The rabbit likes the dog. The rabbit sees the dog. The tiger is big. The tiger is rough. The tiger likes the dog. If something eats the bear then it is green. All big things are green. If something is red and it likes the dog then the dog is rough. If something is rough and it sees the tiger then it is big. If something sees the dog and the dog is green then it sees the tiger. If something eats the dog and the dog is big then it is kind. If something is kind and rough then it eats the tiger. If something eats the rabbit and it likes the tiger then it sees the tiger. If something sees the tiger then the tiger eats the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not like the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-699_Q16", "context": "The bear eats the cow. The cow eats the bear. The cow eats the squirrel. The rabbit eats the cow. The rabbit eats the squirrel. The rabbit is rough. The squirrel eats the cow. The squirrel is cold. The squirrel needs the bear. The squirrel sees the cow. If something eats the bear and it is rough then it sees the squirrel. If something sees the bear then it is kind. If something is cold then it sees the cow. If something sees the squirrel then it sees the bear. If the squirrel sees the cow and the squirrel needs the rabbit then the cow sees the squirrel. If something needs the bear then it needs the rabbit. If something is kind then it needs the cow. If something needs the bear then it is red.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-1042_Q17", "context": "The cat is blue. The cat is red. The cat visits the cow. The cow is blue. The cow needs the cat. The cow needs the mouse. The cow visits the mouse. The mouse is red. The mouse needs the cow. The tiger is blue. The tiger visits the cat. If something visits the tiger and the tiger is green then it is green. If something likes the cat and the cat visits the cow then the cow is red. If something is rough and it likes the mouse then the mouse visits the cow. If the cat visits the tiger and the tiger likes the cat then the cat visits the cow. If something needs the tiger then it likes the cat. If something visits the cow and the cow likes the mouse then the cow likes the tiger. If something is red then it needs the tiger. If something likes the cow then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1357_Q5", "context": "Bob is cold. Bob is green. Bob is red. Bob is round. Fiona is green. Fiona is smart. Gary is green. Gary is red. Harry is green. Harry is smart. All smart people are cold. If someone is red then they are rough. All nice, red people are green. All red, rough people are round. If someone is rough and round then they are smart. If Gary is smart and Gary is cold then Gary is nice. Green, smart people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-185_Q21", "context": "The bear chases the lion. The bear sees the lion. The cow chases the squirrel. The cow is green. The lion chases the bear. The lion likes the bear. The lion sees the bear. The squirrel chases the bear. The squirrel is green. The squirrel is young. The squirrel likes the cow. The squirrel sees the cow. If someone is young and they see the bear then the bear sees the squirrel. If the bear sees the squirrel then the bear is green. If someone likes the bear then they see the bear. If someone is green then they like the bear. If someone chases the bear and they see the lion then they chase the lion. If someone sees the squirrel and the squirrel sees the lion then they chase the lion. If someone is green then they see the squirrel. If the lion sees the squirrel and the lion likes the cow then the squirrel chases the lion. If someone sees the lion and the lion likes the cow then the cow is red.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-253_Q3", "context": "The cat eats the mouse. The cat eats the squirrel. The cat is rough. The cat sees the lion. The cat sees the mouse. The cat sees the squirrel. The lion sees the cat. The lion sees the squirrel. The mouse is round. The mouse sees the squirrel. The squirrel likes the lion. If someone is cold then they are kind. If someone eats the cat then the cat eats the mouse. If someone eats the mouse then they are cold. If someone eats the squirrel and the squirrel is nice then they see the squirrel. If someone eats the squirrel then they are cold. If someone sees the squirrel then they like the cat. If someone likes the lion and the lion likes the cat then they see the squirrel. If someone sees the mouse and they like the cat then they are nice. If someone sees the squirrel and they are nice then the squirrel eats the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion likes the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-41_Q9", "context": "The bear is nice. The bear is round. The bear likes the squirrel. The bear sees the rabbit. The cat is round. The rabbit eats the squirrel. The rabbit is not nice. The rabbit sees the squirrel. The squirrel eats the cat. The squirrel is blue. The squirrel likes the cat. If something is blue and it likes the cat then it sees the cat. If the cat sees the bear then the bear sees the rabbit. If something eats the squirrel then the squirrel sees the cat. If something likes the bear then the bear eats the rabbit. If the cat is round then the cat likes the bear. If something eats the rabbit then the rabbit eats the cat. If the rabbit sees the cat and the rabbit eats the squirrel then the rabbit likes the cat. If something eats the cat and it is not nice then it eats the bear. If something eats the bear then the bear likes the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit eats the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-389_Q12", "context": "The bald eagle eats the tiger. The bald eagle is cold. The bald eagle is green. The bald eagle visits the bear. The bear eats the bald eagle. The bear visits the bald eagle. The lion is kind. The lion needs the bald eagle. The lion needs the bear. The tiger eats the bear. The tiger eats the lion. The tiger is blue. The tiger is young. The tiger does not visit the lion. If something is blue then it eats the bear. If something is kind and it eats the bald eagle then the bald eagle eats the bear. If something visits the bear and the bear visits the tiger then the bear does not need the bald eagle. If the bear is green then the bear eats the bald eagle. If something visits the lion then the lion is blue. If something eats the tiger then it visits the lion. If something is green then it does not visit the tiger. If the lion eats the bear and the bear visits the bald eagle then the bear eats the tiger. If something is young and it does not visit the lion then the lion visits the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not visit the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-30_Q5", "context": "Bob is green. Bob is rough. Bob is white. Charlie is rough. Dave is quiet. Gary is cold. Gary is rough. All quiet, kind people are young. If Charlie is quiet and Charlie is young then Charlie is kind. All green, white people are cold. All quiet people are rough. All rough, green people are white. All young people are green. Rough people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-65_Q14", "context": "The bald eagle eats the tiger. The bald eagle needs the tiger. The cat is red. The cat is round. The cat needs the tiger. The mouse likes the tiger. The tiger likes the mouse. If someone is red then they are blue. If someone eats the tiger then they need the cat. If someone eats the cat then they like the tiger. If someone needs the tiger and they are red then they like the tiger. If someone likes the tiger then they need the cat. If someone eats the bald eagle then the bald eagle is red. If someone likes the tiger and the tiger eats the bald eagle then the tiger needs the mouse. If someone needs the mouse then the mouse needs the cat. If someone is blue then they eat the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger needs the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-669_Q2", "context": "Bob is blue. Bob is not young. Dave is white. Fiona is green. Fiona is rough. Fiona is smart. Gary is blue. If something is nice then it is smart. Blue, smart things are green. All rough things are nice. Blue things are nice. All green, smart things are rough. Green, smart things are blue. If something is green and not rough then it is white. Rough, green things are not young. If something is smart and not white then it is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-597_Q11", "context": "The bald eagle eats the lion. The bald eagle needs the rabbit. The bald eagle sees the dog. The bald eagle sees the rabbit. The dog eats the bald eagle. The dog eats the rabbit. The dog needs the lion. The lion needs the bald eagle. The lion needs the dog. The rabbit eats the lion. The rabbit is green. The rabbit is round. If something sees the rabbit then it eats the rabbit. If something sees the lion and it is blue then the lion sees the dog. If something eats the rabbit then it eats the dog. If something is green and it sees the lion then the lion eats the rabbit. If something is rough then it eats the lion. If something eats the dog and it eats the lion then the lion sees the rabbit. If something is rough and it sees the lion then the lion is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion eats the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-527_Q4", "context": "Bob is quiet. Charlie is blue. Charlie is cold. Charlie is nice. Dave is blue. Dave is cold. Erin is blue. If something is blue and cold then it is big. Round, nice things are big. All nice, quiet things are furry. If Bob is round then Bob is furry. If Bob is furry and Bob is nice then Bob is big. If something is big and blue then it is quiet. If something is blue then it is nice. All nice things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-566_Q8", "context": "Anne is not kind. Anne is smart. Anne is white. Bob is green. Bob is nice. Fiona is nice. Gary is red. If someone is red and nice then they are rough. If Fiona is red and Fiona is rough then Fiona is kind. Red people are nice. Rough people are nice. If Gary is red and Gary is smart then Gary is white. Kind people are smart. If someone is green and not nice then they are smart. Rough people are kind. If someone is nice and white then they are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-751_Q5", "context": "Bob is cold. Bob is furry. Erin is furry. Erin is kind. Erin is nice. Erin is young. Gary is nice. Gary is young. Harry is furry. Harry is nice. Harry is quiet. Harry is smart. If something is kind and smart then it is nice. If Bob is young then Bob is kind. If something is nice and young then it is quiet. Young, kind things are quiet. If Bob is kind and Bob is smart then Bob is young. Furry things are young. If something is kind and nice then it is cold. All furry, quiet things are smart. Smart, nice things are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-81_Q10", "context": "Anne is quiet. Anne is smart. Bob is green. Bob is kind. Bob is nice. Bob is smart. Erin is round. Erin is not smart. Gary is not green. Gary is kind. Gary is round. If someone is nice and young then they are kind. If Gary is smart and Gary is nice then Gary is quiet. If someone is young then they are round. If Anne is round then Anne is nice. If someone is quiet then they are young. If Gary is young then Gary is not nice. If someone is kind and smart then they are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-64_Q5", "context": "Anne is quiet. Anne is smart. Anne is white. Anne is not young. Bob is young. Erin is not young. Fiona is big. Fiona is quiet. Fiona is red. Fiona is smart. White people are quiet. If someone is young then they are big. Young, smart people are round. Smart, quiet people are round. All quiet, big people are red. If Anne is big and Anne is young then Anne is round. Big people are smart. All smart people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1185_Q14", "context": "Anne is not nice. Anne is red. Anne is white. Anne is young. Bob is red. Erin is green. Erin is nice. Harry is kind. Harry is nice. Harry is rough. All kind, red things are green. If something is rough and young then it is green. Green, young things are white. Rough, kind things are white. If something is kind then it is rough. All young things are not nice. If something is red then it is kind. If Bob is white then Bob is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-587_Q4", "context": "Charlie is not furry. Charlie is smart. Charlie is young. Dave is young. Fiona is not blue. Harry is red. Harry is not rough. Rough, smart things are red. Rough things are smart. Green, red things are smart. If something is red then it is green. All smart, red things are green. Red, blue things are green. If something is young then it is blue. Furry things are young. Smart, green things are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-334_Q6", "context": "Anne is big. Dave is big. Dave is blue. Dave is green. Dave is round. Dave is smart. Gary is round. Gary is smart. Harry is big. Harry is cold. Harry is green. Harry is red. All red, cold people are green. Cold people are blue. All big, cold people are smart. Smart people are big. All big people are green. All big people are smart. If someone is blue then they are red. If Gary is green and Gary is smart then Gary is cold. Cold, red people are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-996_Q24", "context": "The cat chases the mouse. The cat is not blue. The cat is not cold. The cat is rough. The cow does not chase the cat. The cow eats the mouse. The cow is cold. The cow is young. The lion eats the mouse. The mouse visits the cow. If someone eats the cow and the cow is cold then they visit the cow. If someone eats the cow and the cow is round then they chase the lion. If someone visits the cow then they are round. If someone is blue then they eat the cow. If someone chases the mouse and the mouse is not rough then they do not eat the mouse. If someone eats the mouse then they are blue. If the cow is not round then the cow does not eat the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat visits the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-651_Q15", "context": "The bear eats the dog. The bear eats the rabbit. The bear is round. The bear needs the rabbit. The bear needs the tiger. The bear sees the rabbit. The dog eats the bear. The rabbit eats the tiger. The rabbit is round. The tiger eats the bear. The tiger is cold. The tiger is young. If something eats the tiger then the tiger needs the dog. If the bear sees the dog and the dog eats the tiger then the dog eats the bear. If something eats the bear then it sees the tiger. If the tiger sees the rabbit then the rabbit eats the bear. If something eats the bear and the bear sees the rabbit then it sees the dog. If something sees the dog then it sees the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not eat the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1116_Q5", "context": "Bob is cold. Bob is rough. Bob is smart. Dave is kind. Dave is white. Erin is big. Gary is big. Blue, cold people are rough. Kind people are cold. Smart people are kind. If someone is cold and kind then they are blue. Rough people are white. If someone is big then they are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1227_Q20", "context": "Anne is cold. Anne is round. Bob is blue. Bob is round. Charlie is blue. Charlie is nice. Gary is cold. If something is big and green then it is not round. Blue, nice things are round. If Bob is furry then Bob is green. All cold, blue things are furry. Nice things are big. All round, cold things are not green. Green, cold things are not nice. If something is cold then it is nice. Big things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-976_Q6", "context": "Charlie is not quiet. Erin is big. Erin is white. Erin is young. Gary is young. Harry is furry. Harry is nice. White, furry people are big. All nice people are big. If someone is quiet and furry then they are white. If someone is young then they are quiet. All big, furry people are round. If someone is quiet then they are furry. If Erin is round then Erin is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-897_Q20", "context": "The bald eagle chases the tiger. The bald eagle is big. The bald eagle is green. The cow is big. The cow is young. The cow likes the tiger. The rabbit is round. The rabbit needs the cow. The rabbit needs the tiger. The tiger likes the cow. If someone likes the tiger and the tiger is green then they chase the rabbit. If someone is green then they chase the cow. If someone chases the rabbit and they like the tiger then the tiger needs the cow. If someone is big and they chase the bald eagle then the bald eagle needs the tiger. If someone is green and they chase the cow then they need the cow. If someone is big and they need the cow then the cow is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger needs the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-799_Q9", "context": "Bob is rough. Erin is furry. Erin is green. Erin is rough. Erin is round. Erin is young. Gary is blue. Gary is green. Harry is big. Harry is not furry. Harry is not rough. All furry, rough things are big. Round things are big. If something is green and furry then it is blue. All rough, big things are young. All young things are green. If something is rough then it is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-538_Q12", "context": "Charlie is cold. Charlie is red. Dave is not big. Erin is green. Erin is red. Fiona is green. Fiona is kind. If Erin is big then Erin is green. Blue, kind people are big. All kind people are green. All cold people are not quiet. All kind people are red. If someone is big and kind then they are cold. Red people are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-368_Q21", "context": "The bald eagle eats the cat. The bald eagle eats the dog. The bald eagle is not green. The bald eagle is not kind. The bald eagle does not like the dog. The bald eagle sees the cat. The bald eagle does not see the dog. The cat is blue. The cat is round. The dog eats the bald eagle. The dog eats the cat. The dog is round. The dog likes the cat. The lion eats the bald eagle. The lion eats the cat. The lion does not see the cat. If the dog sees the cat then the dog likes the bald eagle. If something is round then it likes the lion. If the cat likes the bald eagle and the lion does not see the cat then the lion is kind. If something is kind then it is round. If something likes the lion then it likes the bald eagle. If something eats the lion then it likes the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not see the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-566_Q2", "context": "Anne is not kind. Anne is smart. Anne is white. Bob is green. Bob is nice. Fiona is nice. Gary is red. If someone is red and nice then they are rough. If Fiona is red and Fiona is rough then Fiona is kind. Red people are nice. Rough people are nice. If Gary is red and Gary is smart then Gary is white. Kind people are smart. If someone is green and not nice then they are smart. Rough people are kind. If someone is nice and white then they are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-644_Q5", "context": "Erin is big. Erin is green. Erin is quiet. Fiona is quiet. Fiona is rough. Gary is quiet. Harry is kind. Kind things are smart. All smart, rough things are green. All quiet things are green. Smart, green things are kind. All green things are rough. If something is smart then it is quiet. If something is green and not kind then it is big. If something is big and not quiet then it is round. Rough, quiet things are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-1019_Q13", "context": "The bear eats the squirrel. The bear is young. The bear visits the rabbit. The cow eats the rabbit. The cow visits the rabbit. The cow visits the squirrel. The rabbit needs the cow. The rabbit visits the bear. The rabbit visits the squirrel. The squirrel is big. The squirrel is cold. The squirrel visits the bear. The squirrel visits the cow. The squirrel visits the rabbit. If something is young then it needs the squirrel. If something needs the bear and the bear needs the rabbit then the bear visits the cow. If the cow is big and the cow needs the rabbit then the cow is rough. If something visits the cow then it is rough. If something is rough then it eats the cow. If something visits the cow and it is rough then it needs the bear. If the squirrel needs the bear and the squirrel eats the cow then the squirrel is cold. If something needs the bear then the bear needs the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not eat the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-536_Q9", "context": "Bob is big. Bob is quiet. Bob is smart. Erin is not kind. Erin is quiet. Gary is big. Harry is kind. Furry people are big. White, kind people are quiet. Kind people are smart. If someone is quiet then they are smart. All kind people are white. If someone is white and quiet then they are blue. If someone is smart and blue then they are furry. If Erin is quiet then Erin is not kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-724_Q6", "context": "Bob is quiet. Dave is green. Dave is not round. Fiona is green. Fiona is not quiet. Fiona is red. Harry is round. Round people are rough. All rough people are quiet. If Harry is quiet then Harry is smart. All rough, green people are red. Smart, quiet people are green. Red, quiet people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-206_Q7", "context": "The bear is cold. The bear is red. The bear likes the cow. The bear needs the lion. The cow likes the mouse. The cow needs the lion. The cow needs the mouse. The lion is red. The lion is young. The lion needs the cow. The lion sees the bear. The lion sees the cow. The lion sees the mouse. The mouse is cold. If something needs the cow then it likes the lion. If something is young then it likes the cow. If something likes the bear then it sees the lion. If the cow likes the bear and the bear is cold then the cow is kind. If something likes the mouse and it likes the lion then the lion needs the bear. If something needs the lion and the lion likes the cow then it is cold. If something is red then it needs the cow. If something likes the cow and it sees the mouse then the cow is red. If something likes the bear then the bear sees the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow needs the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-699_Q1", "context": "The bear eats the cow. The cow eats the bear. The cow eats the squirrel. The rabbit eats the cow. The rabbit eats the squirrel. The rabbit is rough. The squirrel eats the cow. The squirrel is cold. The squirrel needs the bear. The squirrel sees the cow. If something eats the bear and it is rough then it sees the squirrel. If something sees the bear then it is kind. If something is cold then it sees the cow. If something sees the squirrel then it sees the bear. If the squirrel sees the cow and the squirrel needs the rabbit then the cow sees the squirrel. If something needs the bear then it needs the rabbit. If something is kind then it needs the cow. If something needs the bear then it is red.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel eats the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-634_Q11", "context": "Anne is cold. Anne is smart. Bob is not big. Erin is kind. Erin is not smart. Gary is kind. Gary is white. If someone is big then they are nice. If someone is big then they are nice. Green, smart people are nice. All smart people are green. All nice people are big. White, cold people are not big. All cold people are smart. All nice, kind people are not white. Nice, big people are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-418_Q11", "context": "The bear likes the cow. The bear likes the lion. The bear visits the cow. The bear visits the lion. The cow is round. The lion eats the bear. The lion eats the cow. The lion likes the bear. The lion visits the cow. The rabbit eats the lion. The rabbit is round. The rabbit visits the bear. If someone is kind then they visit the cow. If someone is cold then they like the rabbit. If someone likes the rabbit then the rabbit is rough. If someone is rough then they are kind. If someone likes the bear then the bear is cold. If someone likes the bear then they are round. If someone visits the cow and they are round then they eat the rabbit. If the bear is round and the bear visits the cow then the cow likes the bear. If someone is blue and they like the bear then the bear likes the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit visits the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-91_Q18", "context": "Bob is cold. Bob is nice. Dave is blue. Dave is nice. Dave is quiet. Fiona is rough. Fiona is young. Gary is blue. Gary is cold. Gary is nice. Gary is quiet. Gary is red. Gary is rough. Gary is young. All red people are blue. If Fiona is nice then Fiona is blue. If Fiona is blue then Fiona is red. If someone is young then they are quiet. Cold, quiet people are nice. Quiet, young people are cold. If someone is red and rough then they are blue. If someone is red then they are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-677_Q23", "context": "The bald eagle eats the mouse. The bald eagle likes the tiger. The bald eagle sees the lion. The lion does not eat the bald eagle. The lion is rough. The mouse likes the tiger. The tiger is cold. If something is kind then it sees the mouse. If something likes the mouse then it likes the tiger. If something is round then it does not like the tiger. If something sees the bald eagle then it likes the lion. If something sees the mouse then it is cold. Rough things are kind. If something eats the bald eagle then it likes the bald eagle. All cold things are round.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not eat the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-794_Q20", "context": "The cat is blue. The cat is nice. The cat likes the cow. The cat needs the cow. The cat needs the rabbit. The cow does not need the rabbit. The cow needs the tiger. The rabbit is round. The tiger is nice. The tiger does not like the cow. If someone likes the cat and they chase the cat then they are blue. If someone likes the cow and they are red then the cow is round. If someone needs the tiger and they need the cat then they do not chase the cow. If someone needs the cat and the cat is blue then the cat is red. If someone is round then they need the cat. If someone likes the cat and the cat needs the rabbit then the cat chases the tiger. If the rabbit needs the tiger then the rabbit is not round.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow needs the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-149_Q12", "context": "Anne is cold. Anne is round. Bob is quiet. Bob is smart. Dave is big. Dave is blue. Dave is green. Dave is quiet. Fiona is big. Fiona is blue. Fiona is not quiet. If someone is quiet and blue then they are cold. If someone is quiet then they are big. If someone is round and quiet then they are blue. All round people are blue. If Anne is cold then Anne is blue. If someone is quiet and blue then they are round. All smart, green people are round. If someone is big then they are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-878_Q10", "context": "Charlie is red. Charlie is white. Fiona is green. Gary is red. Gary is white. Harry is kind. Harry is not quiet. If Gary is quiet and Gary is red then Gary is cold. If something is quiet and not white then it is nice. If something is green and kind then it is nice. If something is kind and not red then it is green. Red, kind things are green. If something is red then it is quiet. If Charlie is nice then Charlie is cold. Cold, quiet things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-800_Q14", "context": "Anne is nice. Dave is nice. Dave is rough. Gary is nice. Gary is not smart. Harry is big. Harry is round. All white people are round. If Dave is big then Dave is white. All cold, round people are rough. Smart, white people are cold. If Dave is round and Dave is big then Dave is smart. If someone is nice then they are big. All rough, white people are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1405_Q18", "context": "Dave is rough. Dave is round. Erin is quiet. Erin is rough. Gary is nice. Harry is cold. Harry is green. Harry is nice. Harry is rough. Harry is round. Green people are quiet. All rough people are quiet. All cold people are nice. All green people are cold. All rough, quiet people are green. If someone is nice and quiet then they are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-810_Q13", "context": "The bear eats the mouse. The bear needs the rabbit. The bear needs the tiger. The mouse eats the bear. The mouse is green. The mouse is kind. The mouse is round. The mouse needs the tiger. The rabbit chases the tiger. The rabbit eats the mouse. The rabbit is blue. The rabbit is kind. The rabbit is round. The rabbit needs the bear. The rabbit needs the tiger. The tiger eats the mouse. If something chases the bear then it eats the rabbit. All blue things are green. If something is round and it needs the rabbit then the rabbit is green. If something is kind and it eats the bear then it eats the rabbit. If something chases the bear and it is kind then the bear is blue. If something is blue and green then it chases the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not chase the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-263_Q15", "context": "The bear is nice. The bear likes the cat. The bear likes the tiger. The cat eats the bear. The cat is cold. The cat is kind. The cat likes the rabbit. The cat visits the rabbit. The rabbit likes the tiger. The rabbit visits the tiger. The tiger eats the bear. The tiger likes the bear. If someone is kind and they visit the cat then they are big. If someone is young then they eat the cat. If someone is cold and they like the rabbit then the rabbit likes the cat. If someone likes the tiger then the tiger visits the cat. If someone is big then they eat the tiger. If someone eats the rabbit and they are cold then they visit the rabbit. If someone likes the bear then they are kind. If someone likes the rabbit and they eat the rabbit then the rabbit visits the cat. If someone eats the tiger and the tiger visits the cat then they are young.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not eat the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1353_Q3", "context": "Anne is blue. Anne is smart. Dave is big. Dave is blue. Dave is cold. Dave is furry. Dave is nice. Dave is round. Dave is smart. Fiona is blue. Fiona is furry. Gary is big. Gary is furry. Gary is smart. All blue, big things are furry. If Anne is smart then Anne is cold. All cold, smart things are big. If something is blue and round then it is nice. Round, smart things are cold. If something is round and blue then it is smart. Big, round things are nice. If Gary is round and Gary is smart then Gary is nice. If Anne is furry and Anne is big then Anne is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-989_Q23", "context": "The bald eagle is big. The bald eagle is cold. The bald eagle needs the mouse. The bald eagle needs the rabbit. The bald eagle sees the rabbit. The cow is rough. The cow needs the bald eagle. The cow sees the bald eagle. The cow sees the mouse. The mouse eats the rabbit. The mouse is big. The mouse needs the cow. The mouse needs the rabbit. The rabbit eats the bald eagle. The rabbit eats the mouse. The rabbit is cold. All big things are green. If the rabbit eats the cow then the cow needs the rabbit. Green things are rough. If something sees the mouse then it is big. If something needs the rabbit then the rabbit is nice. If something needs the bald eagle then the bald eagle is nice. If something needs the rabbit and it is rough then the rabbit is big. If something eats the cow then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-88_Q7", "context": "Anne is quiet. Erin is green. Erin is kind. Erin is quiet. Erin is rough. Fiona is kind. Fiona is nice. Fiona is quiet. Fiona is red. Harry is nice. If someone is rough then they are green. If someone is nice then they are green. If someone is quiet and not nice then they are cold. All quiet people are rough. Kind people are quiet. If someone is green then they are kind. If someone is rough then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1394_Q2", "context": "Charlie is quiet. Charlie is rough. Charlie is white. Erin is quiet. Erin is white. Fiona is rough. Harry is cold. If Fiona is rough then Fiona is quiet. If someone is round and young then they are quiet. If someone is red then they are round. If someone is quiet then they are red. Rough, round people are young. All quiet, cold people are young. Young, rough people are white. All red, quiet people are cold. Rough, cold people are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-939_Q16", "context": "The bald eagle is blue. The bald eagle is green. The bald eagle is kind. The bear needs the bald eagle. The cow needs the bear. The tiger is nice. The tiger needs the bear. If someone likes the tiger then they visit the bald eagle. If someone is rough and they need the bald eagle then the bald eagle visits the tiger. If someone needs the bear then they are rough. If the bald eagle needs the cow and the cow likes the tiger then the tiger is kind. If someone visits the tiger then they like the tiger. If someone is nice and blue then they like the bald eagle. If the bald eagle is rough then the bald eagle likes the bear. If someone needs the bald eagle then they need the bear. If the bald eagle is rough then the bald eagle likes the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear likes the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-867_Q15", "context": "The bear visits the mouse. The cow is young. The cow likes the bear. The cow visits the bear. The cow visits the dog. The dog visits the cow. The mouse eats the cow. The mouse eats the dog. The mouse is big. The mouse likes the cow. The mouse visits the cow. The mouse visits the dog. If something is big and it eats the cow then the cow is young. If the mouse likes the bear and the bear is big then the mouse visits the cow. If something eats the mouse then the mouse is young. If something likes the dog then the dog likes the mouse. If something likes the mouse then it eats the cow. If something visits the dog and the dog visits the bear then it likes the mouse. If the dog eats the cow then the dog visits the mouse. If something visits the mouse then it likes the dog. If something eats the dog then it is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-844_Q2", "context": "Bob is green. Bob is red. Bob is smart. Charlie is kind. Charlie is white. Erin is green. Harry is smart. If something is green then it is kind. If something is green and red then it is white. If something is red then it is white. If something is smart and green then it is white. If something is kind and green then it is smart. All young things are red. If something is young and not green then it is not red. If Erin is green and Erin is white then Erin is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-299_Q20", "context": "The cat is not red. The cat needs the mouse. The cat needs the tiger. The cow eats the cat. The cow is young. The mouse visits the cat. The tiger eats the cat. The tiger does not eat the cow. The tiger is red. The tiger does not visit the cat. The tiger visits the cow. The tiger visits the mouse. If the tiger visits the mouse then the mouse eats the tiger. If someone is young and they need the mouse then they eat the mouse. If someone eats the tiger then they are green. If someone is green then they are young. If someone is young then they need the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger eats the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-502_Q8", "context": "The bear is big. The bear is red. The bear likes the dog. The bear does not like the mouse. The bear needs the cow. The bear needs the dog. The bear does not see the mouse. The cow is not big. The cow is not red. The dog is big. The dog is cold. The dog likes the mouse. The dog needs the bear. The dog needs the mouse. The dog sees the cow. The mouse is blue. If something needs the dog then the dog is blue. If the dog is red and the dog needs the cow then the dog sees the mouse. All blue things are kind. If the dog likes the cow then the cow is blue. If something sees the bear and it is not cold then it needs the dog. If something is blue and not red then it likes the mouse. If something needs the cow then it likes the cow. If something is kind then it likes the cow. If something likes the cow and it is not blue then the cow sees the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not like the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-556_Q17", "context": "The cow eats the squirrel. The cow is blue. The cow is nice. The cow is red. The dog eats the cow. The mouse is big. The mouse is kind. The mouse is red. The mouse visits the dog. The squirrel chases the cow. The squirrel visits the cow. The squirrel visits the dog. If someone eats the cow then they visit the dog. If someone eats the mouse and they chase the squirrel then the squirrel eats the mouse. If someone chases the squirrel then the squirrel chases the mouse. If someone visits the cow then the cow eats the dog. If someone is red and they eat the mouse then the mouse eats the cow. If the cow is big then the cow visits the dog. If someone visits the squirrel and they visit the dog then the dog eats the mouse. If the mouse visits the dog then the dog visits the squirrel. If someone eats the mouse then they chase the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-859_Q19", "context": "The cat likes the dog. The dog does not chase the tiger. The dog is big. The dog is young. The dog likes the cat. The lion chases the tiger. The tiger chases the cat. The tiger chases the dog. The tiger is not nice. The tiger is round. The tiger likes the dog. The tiger does not like the lion. The tiger sees the dog. The tiger sees the lion. If someone chases the lion then the lion is green. If someone likes the lion then they do not see the tiger. If someone likes the cat then they chase the cat. If someone likes the tiger and the tiger chases the lion then the lion sees the dog. If someone is green then they like the dog. If someone chases the lion then they see the cat. If someone likes the cat then the cat likes the lion. If someone likes the dog then they chase the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-590_Q8", "context": "Anne is rough. Charlie is red. Charlie is rough. Erin is blue. Erin is white. Harry is blue. Harry is white. Blue, nice things are white. If Charlie is round and Charlie is rough then Charlie is young. All nice, white things are rough. Round things are rough. If something is young then it is red. If something is nice then it is round. All rough, blue things are round. Young things are nice. If Charlie is red then Charlie is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-836_Q10", "context": "The bald eagle chases the lion. The bald eagle eats the dog. The bald eagle is red. The dog chases the bald eagle. The dog chases the lion. The dog is young. The lion needs the squirrel. The squirrel eats the dog. The squirrel is kind. The squirrel needs the dog. Kind things are red. If something needs the squirrel then the squirrel chases the dog. If something chases the bald eagle then it is kind. If the bald eagle chases the lion and the bald eagle chases the squirrel then the lion chases the bald eagle. If something chases the lion and it is young then it eats the bald eagle. If something is kind then it eats the lion. If something eats the dog then it needs the bald eagle. If something needs the bald eagle then the bald eagle chases the squirrel. If something needs the bald eagle then the bald eagle needs the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-204_Q4", "context": "The bald eagle eats the squirrel. The bald eagle likes the cow. The bear is cold. The bear is kind. The bear visits the cow. The cow visits the bear. The squirrel eats the bald eagle. The squirrel eats the bear. The squirrel likes the bear. The squirrel visits the cow. If someone visits the bear and they are kind then they are blue. If someone likes the squirrel then they visit the bear. If the bald eagle eats the cow and the cow is blue then the cow visits the bald eagle. If someone visits the bald eagle and they are green then the bald eagle is cold. If someone is cold and they like the cow then they are blue. If someone is cold and blue then they eat the squirrel. If someone eats the bald eagle and the bald eagle visits the bear then the bald eagle is young. If someone likes the bear and they visit the cow then the bear likes the squirrel. If the bear eats the squirrel then the squirrel is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not like the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1394_Q8", "context": "Charlie is quiet. Charlie is rough. Charlie is white. Erin is quiet. Erin is white. Fiona is rough. Harry is cold. If Fiona is rough then Fiona is quiet. If someone is round and young then they are quiet. If someone is red then they are round. If someone is quiet then they are red. Rough, round people are young. All quiet, cold people are young. Young, rough people are white. All red, quiet people are cold. Rough, cold people are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1204_Q7", "context": "Bob is not furry. Bob is quiet. Bob is not rough. Bob is not round. Erin is not kind. Erin is rough. Gary is big. Harry is furry. Harry is green. Harry is not round. All big, round people are rough. If someone is rough and not green then they are quiet. If someone is round and rough then they are quiet. All big people are round. All quiet people are kind. All rough, quiet people are big. If someone is round and kind then they are furry. If someone is big and not quiet then they are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1297_Q5", "context": "Charlie is smart. Dave is round. Dave is smart. Fiona is quiet. Fiona is red. Fiona is rough. Fiona is round. Fiona is smart. Harry is quiet. Harry is round. Quiet things are red. All round things are blue. Rough, blue things are kind. If something is smart and kind then it is quiet. If Fiona is red and Fiona is smart then Fiona is round. All round, blue things are rough. Quiet, red things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-104_Q12", "context": "The bear is red. The cow sees the bear. The mouse is young. The mouse does not need the rabbit. The mouse sees the rabbit. The rabbit chases the bear. The rabbit chases the cow. The rabbit is big. The rabbit is red. The rabbit needs the cow. The rabbit does not need the mouse. The rabbit sees the cow. All red, rough things are nice. If something chases the cow and the cow chases the bear then the bear is big. If something sees the mouse then the mouse is nice. If something chases the cow then it is red. If the cow needs the rabbit then the rabbit is rough. If something chases the cow then the cow chases the bear. If something needs the bear and the bear is rough then it sees the bear. If something is nice then it sees the mouse. Big things are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not see the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-96_Q7", "context": "The cat does not chase the rabbit. The cat is cold. The cat is red. The cat sees the rabbit. The cat sees the tiger. The mouse is big. The mouse is red. The rabbit does not chase the cat. The rabbit likes the cat. The rabbit does not like the mouse. The tiger likes the mouse. If something likes the mouse then it chases the cat. If something sees the mouse then it chases the cat. If something chases the mouse then the mouse does not like the rabbit. If something chases the cat then it sees the cat. If the tiger sees the cat then the cat sees the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat sees the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-913_Q12", "context": "The cat needs the squirrel. The cow chases the squirrel. The cow is blue. The rabbit chases the cat. The rabbit is kind. The rabbit is red. The squirrel eats the cat. The squirrel is kind. The squirrel is red. The squirrel needs the cow. The squirrel needs the rabbit. If something needs the cow then it eats the cow. If something is red then it is big. If something is blue and nice then it chases the cow. If something is nice then it chases the rabbit. If the cat needs the squirrel and the squirrel needs the cat then the cat is blue. If something eats the cow then it is nice. If something chases the rabbit then it is blue. If something is red then it needs the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not chase the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-648_Q20", "context": "The bear chases the lion. The cat is cold. The cat is round. The cat does not see the cow. The cow is green. The cow visits the bear. The lion chases the bear. The lion does not chase the cat. The lion is cold. The lion is red. If something visits the bear and the bear does not see the lion then it chases the lion. If something sees the lion then it is cold. If something is kind then it does not visit the lion. If something chases the cow then it sees the cat. If something sees the cat then the cat chases the lion. If something is cold and it sees the cat then the cat is red. If something chases the cow then the cow visits the cat. If something is red then it chases the cow. If the cow visits the bear and the bear visits the cow then the cow sees the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1084_Q3", "context": "Charlie is furry. Charlie is green. Charlie is white. Dave is round. Dave is young. Fiona is red. Harry is furry. Harry is green. Harry is round. Harry is young. If someone is red then they are round. If someone is white then they are furry. If someone is green and round then they are blue. All round people are green. All furry, red people are round. Furry people are blue. If Dave is round and Dave is young then Dave is green. If Dave is round then Dave is green. If someone is blue then they are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-339_Q3", "context": "The bald eagle chases the cat. The bald eagle is kind. The bald eagle sees the dog. The cat is rough. The dog is blue. The dog is red. The dog is rough. The dog sees the cat. The dog does not see the lion. The lion sees the bald eagle. If something chases the cat then the cat chases the dog. If something chases the dog then it eats the bald eagle. If something is kind and it sees the lion then it is not red. If something chases the dog then the dog chases the bald eagle. If the dog eats the bald eagle then the dog sees the bald eagle. If something is cold then it sees the lion. If something sees the cat and it is blue then the cat is kind. If something is blue and it chases the bald eagle then the bald eagle is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat chases the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-619_Q7", "context": "The cat chases the cow. The cat is blue. The cat needs the lion. The cat does not visit the cow. The cat visits the squirrel. The cow chases the cat. The cow is big. The cow is blue. The lion does not chase the cat. The lion does not chase the squirrel. The lion is big. The lion does not need the cow. The lion visits the cow. The squirrel chases the cow. The squirrel is blue. The squirrel needs the cow. If something needs the cat then it visits the cat. If something chases the cat and the cat visits the cow then the cow does not visit the cat. If something chases the squirrel and it visits the lion then the squirrel chases the cow. If the cow is not big then the cow does not chase the squirrel. If something visits the cat then the cat is nice. If the squirrel chases the cow then the cow does not need the squirrel. If something is nice then it needs the cow. If something is kind and not big then it visits the squirrel. If something needs the cow then it needs the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-118_Q1", "context": "Bob is green. Bob is red. Bob is round. Charlie is cold. Charlie is green. Charlie is kind. Erin is cold. Erin is furry. Erin is kind. Fiona is green. If someone is green then they are kind. All green, kind people are round. If Fiona is furry and Fiona is big then Fiona is green. If Erin is furry and Erin is red then Erin is kind. All round, furry people are kind. Green, round people are big. If someone is big and cold then they are furry. If someone is red then they are cold. Round, kind people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-954_Q7", "context": "The lion needs the rabbit. The mouse is rough. The mouse is young. The mouse visits the lion. The rabbit needs the mouse. The rabbit needs the squirrel. The squirrel is not blue. If something is young then it needs the lion. If something is round then it needs the lion. If something needs the lion then it needs the rabbit. If something is rough and it visits the mouse then the mouse is red. If the rabbit visits the squirrel and the squirrel chases the lion then the squirrel needs the rabbit. If something is red then it is not blue. If something is young and it does not need the mouse then it visits the rabbit. If something needs the rabbit then it visits the mouse. If the lion visits the mouse and the lion is blue then the mouse chases the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse visits the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-671_Q19", "context": "Charlie is nice. Fiona is big. Fiona is green. Fiona is kind. Fiona is nice. Gary is red. Harry is red. If someone is big then they are red. If Gary is nice and Gary is green then Gary is blue. If someone is big then they are nice. If someone is kind and red then they are big. If Fiona is red and Fiona is green then Fiona is blue. All green people are big. If someone is red then they are green. If Fiona is nice then Fiona is blue. If someone is blue then they are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-378_Q17", "context": "Anne is nice. Dave is young. Erin is round. Erin is white. Gary is furry. Gary is rough. Gary is round. All nice, rough people are cold. Rough people are nice. Round, young people are nice. If someone is nice then they are furry. All round people are furry. All white, round people are furry. All round, nice people are rough. If someone is round and young then they are white. Furry, round people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-660_Q13", "context": "The dog is big. The dog is blue. The dog is green. The dog is kind. The mouse likes the rabbit. The mouse sees the tiger. The rabbit is blue. The rabbit is kind. The rabbit likes the dog. The rabbit sees the dog. The rabbit sees the mouse. The tiger is blue. If the rabbit sees the mouse and the rabbit likes the tiger then the rabbit is kind. If something needs the mouse then it likes the dog. If something needs the dog then it needs the rabbit. If something is green then it needs the dog. If something needs the rabbit and it needs the dog then the rabbit is green. If something sees the dog and it is green then it needs the tiger. If something likes the mouse and it sees the tiger then it likes the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not like the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-253_Q11", "context": "Bob is big. Bob is kind. Bob is nice. Charlie is kind. Charlie is young. Erin is young. Harry is furry. If Charlie is kind and Charlie is young then Charlie is furry. If someone is furry and rough then they are big. If someone is young and furry then they are rough. If someone is furry and big then they are nice. If someone is kind and nice then they are not cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-822_Q23", "context": "Charlie is not red. Erin is big. Erin is not red. Erin is not white. Fiona is nice. Harry is not cold. Harry is white. Cold people are not big. If Erin is big then Erin is not green. Nice people are quiet. If someone is green and quiet then they are white. All white people are not cold. If Erin is nice then Erin is white. All quiet people are green. If someone is quiet and not cold then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-74_Q22", "context": "The cat chases the rabbit. The mouse chases the cat. The mouse is red. The mouse is round. The rabbit is red. The rabbit sees the mouse. The squirrel chases the cat. The squirrel chases the mouse. The squirrel is kind. The squirrel sees the rabbit. If something is red then it sees the mouse. If the mouse sees the squirrel then the squirrel eats the cat. If something chases the squirrel and it is red then the squirrel eats the rabbit. If something eats the cat and it chases the cat then it sees the mouse. If something sees the mouse then it sees the squirrel. If something eats the mouse and it sees the mouse then the mouse sees the squirrel. If something eats the rabbit then it sees the rabbit. If something sees the squirrel and it sees the rabbit then it eats the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-742_Q10", "context": "Anne is furry. Anne is red. Anne is smart. Bob is red. Dave is blue. Dave is kind. Erin is white. Furry people are kind. Furry, blue people are kind. All red people are furry. All nice, red people are smart. Kind, nice people are smart. All furry people are kind. White people are kind. If someone is white and red then they are nice. If Bob is kind then Bob is white.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-960_Q2", "context": "Anne is green. Anne is nice. Anne is quiet. Erin is big. Erin is nice. Erin is quiet. Gary is blue. Gary is green. Harry is blue. Harry is green. Harry is kind. Harry is round. If something is kind and blue then it is nice. Nice things are round. If something is round then it is quiet. Blue things are round. Nice things are big. If something is round and quiet then it is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-356_Q4", "context": "The cow eats the mouse. The cow eats the squirrel. The cow likes the rabbit. The cow likes the squirrel. The mouse is cold. The mouse likes the rabbit. The mouse visits the cow. The rabbit is big. The rabbit likes the mouse. The rabbit visits the mouse. The squirrel eats the cow. The squirrel eats the mouse. The squirrel is green. The squirrel is rough. The squirrel likes the cow. The squirrel likes the mouse. If something likes the cow then it visits the mouse. If something likes the cow then the cow is green. If something eats the squirrel and the squirrel likes the rabbit then it eats the rabbit. If something is cold then it likes the cow. If something visits the squirrel then the squirrel likes the rabbit. If the cow likes the rabbit then the cow is cold. If something likes the rabbit and it visits the mouse then the mouse visits the squirrel. If something is rough and it likes the squirrel then the squirrel eats the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not visit the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-614_Q8", "context": "The bear is rough. The bear needs the cat. The bear needs the cow. The cat is green. The cat is rough. The cat needs the bear. The cat sees the cow. The cow is not green. The cow needs the tiger. The tiger is cold. The tiger does not see the cow. If someone needs the cat then the cat needs the tiger. If someone eats the bear then the bear is young. All young people are cold. If someone sees the cow and they see the cat then the cat does not see the bear. If the cat needs the tiger then the tiger is big. If someone is big then they eat the bear. If the cat eats the cow then the cat needs the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not eat the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-774_Q2", "context": "Bob is red. Charlie is kind. Charlie is quiet. Charlie is white. Dave is big. Dave is kind. Harry is quiet. If someone is smart then they are red. All round people are not red. All smart, big people are round. All big people are round. If someone is quiet then they are big. White people are kind. If someone is quiet and not red then they are kind. Smart, quiet people are kind. Kind people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-226_Q12", "context": "The cat eats the lion. The cat is young. The cat likes the lion. The lion chases the cat. The lion chases the mouse. The lion is big. The lion is nice. The mouse chases the cat. The mouse eats the squirrel. The mouse likes the lion. The squirrel chases the cat. The squirrel chases the lion. The squirrel chases the mouse. The squirrel eats the mouse. The squirrel is rough. The squirrel likes the lion. If something eats the mouse then the mouse is nice. If something eats the lion and it chases the squirrel then the squirrel is rough. If something likes the mouse then the mouse is big. If something is rough then it likes the mouse. If something is rough and it eats the squirrel then the squirrel chases the lion. If the lion likes the cat then the cat eats the mouse. If something likes the mouse then it eats the mouse. Big things are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not eat the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-751_Q1", "context": "Anne is furry. Anne is quiet. Erin is furry. Erin is not rough. Fiona is not quiet. Fiona is smart. Harry is quiet. Smart people are white. Quiet people are smart. All smart, rough people are not furry. If someone is white and not quiet then they are not furry. All white people are cold. All furry, quiet people are not rough. If Fiona is smart and Fiona is quiet then Fiona is white. If Harry is cold then Harry is rough. If Erin is white and Erin is not smart then Erin is not cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-314_Q24", "context": "Anne is cold. Anne is smart. Bob is smart. Bob is young. Gary is kind. Harry is red. Harry is young. All young things are red. If Harry is young then Harry is smart. If Gary is rough then Gary is cold. If Gary is cold and Gary is blue then Gary is rough. If something is smart and kind then it is young. All cold things are smart. If something is kind then it is rough. Red, kind things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-338_Q7", "context": "The bald eagle is big. The bald eagle is green. The bald eagle visits the cow. The cow eats the lion. The cow is green. The cow is rough. The dog does not eat the lion. The dog is not green. The dog is rough. The dog needs the cow. The dog needs the lion. The dog visits the cow. The lion does not eat the dog. The lion needs the bald eagle. The lion needs the cow. The lion does not visit the dog. If someone needs the dog then the dog is young. If someone needs the cow and the cow needs the dog then the cow eats the bald eagle. If someone visits the dog then they need the dog. If someone needs the lion then they visit the dog. If someone eats the bald eagle then the bald eagle visits the lion. If someone eats the cow then they are not rough. If someone needs the lion then the lion is green. If someone needs the dog and the dog visits the cow then the cow needs the dog. If someone needs the lion and the lion is not young then the lion eats the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-701_Q7", "context": "The bald eagle chases the rabbit. The bald eagle likes the rabbit. The bald eagle likes the tiger. The bald eagle sees the rabbit. The mouse chases the bald eagle. The mouse chases the tiger. The mouse likes the rabbit. The mouse sees the bald eagle. The rabbit chases the tiger. The rabbit is big. The rabbit is red. The rabbit likes the mouse. The rabbit likes the tiger. The tiger likes the bald eagle. If something likes the tiger then it sees the tiger. If something likes the rabbit and the rabbit is rough then the rabbit chases the bald eagle. If the tiger is rough and the tiger likes the mouse then the mouse likes the bald eagle. If something likes the bald eagle and the bald eagle is kind then the bald eagle sees the mouse. If the mouse sees the bald eagle then the mouse likes the rabbit. If something is kind and it likes the bald eagle then the bald eagle likes the tiger. If something likes the bald eagle then it is kind. If something sees the tiger then it is rough. If something is rough then it likes the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit likes the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-779_Q10", "context": "The bear chases the lion. The bear chases the squirrel. The bear is cold. The bear needs the lion. The bear needs the squirrel. The lion chases the bear. The lion is cold. The lion needs the bear. The lion does not see the rabbit. The lion does not see the squirrel. The rabbit needs the lion. The squirrel is not big. If something needs the rabbit then the rabbit is red. If something sees the rabbit and it does not see the bear then the rabbit is not red. If something is red then it is green. If something sees the rabbit and the rabbit is green then it needs the squirrel. If something is green then it chases the bear. If something sees the bear then it does not see the rabbit. All red, big things are kind. If something is big and it chases the lion then it sees the lion. If something chases the bear then it needs the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not chase the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-948_Q6", "context": "The dog is red. The dog likes the mouse. The dog visits the tiger. The lion visits the dog. The lion visits the tiger. The mouse chases the tiger. The mouse is green. The mouse visits the dog. The tiger chases the lion. The tiger is nice. The tiger visits the dog. If something chases the dog then it visits the lion. If the dog is cold then the dog likes the tiger. If something likes the tiger then the tiger likes the mouse. If something is nice then it visits the tiger. If something likes the lion and the lion is green then it is blue. If something is cold then it likes the lion. If something visits the tiger then it visits the mouse. If something visits the tiger then the tiger chases the mouse. If something likes the mouse then it is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not like the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-575_Q19", "context": "Bob is red. Dave is big. Dave is not furry. Dave is red. Dave is young. Fiona is young. Gary is not red. If Bob is smart then Bob is red. If Fiona is rough then Fiona is furry. If Fiona is smart then Fiona is blue. Blue things are red. If Fiona is blue then Fiona is young. All red things are rough. Young things are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-619_Q3", "context": "The cat chases the cow. The cat is blue. The cat needs the lion. The cat does not visit the cow. The cat visits the squirrel. The cow chases the cat. The cow is big. The cow is blue. The lion does not chase the cat. The lion does not chase the squirrel. The lion is big. The lion does not need the cow. The lion visits the cow. The squirrel chases the cow. The squirrel is blue. The squirrel needs the cow. If something needs the cat then it visits the cat. If something chases the cat and the cat visits the cow then the cow does not visit the cat. If something chases the squirrel and it visits the lion then the squirrel chases the cow. If the cow is not big then the cow does not chase the squirrel. If something visits the cat then the cat is nice. If the squirrel chases the cow then the cow does not need the squirrel. If something is nice then it needs the cow. If something is kind and not big then it visits the squirrel. If something needs the cow then it needs the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not need the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-687_Q5", "context": "The cat is not red. The lion is kind. The mouse chases the cat. The mouse eats the cat. The mouse eats the lion. The mouse is young. The mouse sees the rabbit. The rabbit chases the lion. The rabbit is young. The rabbit sees the lion. If someone is nice and they see the mouse then they see the cat. If someone is kind then they eat the cat. If someone is rough then they chase the rabbit. If someone chases the cat then the cat is young. If someone sees the mouse then they do not eat the lion. Young people are kind. If someone eats the mouse and they see the rabbit then the rabbit eats the mouse. If someone is kind then they are nice. If someone is nice and not red then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-564_Q5", "context": "The bear chases the tiger. The dog chases the bear. The dog needs the bear. The mouse chases the tiger. The mouse is red. The mouse needs the tiger. The tiger visits the dog. If the dog is cold and the dog visits the mouse then the dog needs the tiger. If something chases the dog then the dog is cold. All cold things are red. Red things are kind. If something chases the tiger and it is kind then it visits the tiger. If something is cold and it visits the tiger then the tiger is red. If the mouse is kind then the mouse is rough. If something visits the dog and the dog chases the bear then the bear is cold. If something is rough then it needs the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-513_Q16", "context": "Anne is blue. Anne is red. Anne is smart. Dave is big. Dave is cold. Dave is nice. Fiona is smart. Harry is blue. Harry is cold. Harry is nice. Harry is red. Harry is smart. Kind things are nice. All cold, nice things are blue. Cold things are kind. Smart things are cold. All blue, smart things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-626_Q7", "context": "The bald eagle chases the cow. The bald eagle chases the dog. The bald eagle likes the cow. The cow chases the mouse. The cow is red. The cow likes the dog. The cow likes the mouse. The dog is big. The dog is green. The mouse chases the bald eagle. The mouse eats the bald eagle. The mouse eats the cow. If someone is big and they like the dog then they are green. If someone is red then they eat the cow. If someone eats the cow then they like the bald eagle. If the dog chases the mouse and the mouse is red then the dog eats the mouse. If someone likes the cow then they are round. If someone is red then they chase the dog. If someone is big and they eat the bald eagle then the bald eagle is green. If the cow likes the bald eagle then the bald eagle is red. If someone eats the dog then they eat the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-675_Q2", "context": "Bob is blue. Bob is kind. Charlie is round. Dave is blue. Dave is green. Dave is young. Fiona is round. Young people are not smart. All round people are green. If someone is kind and young then they are green. Blue people are green. If someone is kind and round then they are big. If someone is round and smart then they are young. Green, big people are young. Green people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-478_Q21", "context": "Charlie is nice. Charlie is rough. Dave is green. Gary is blue. Gary is kind. Gary is smart. Harry is white. Green things are kind. If Harry is smart and Harry is green then Harry is rough. All kind things are smart. Smart, green things are white. If Harry is blue and Harry is green then Harry is smart. All white, blue things are rough. If something is white then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-571_Q8", "context": "The bald eagle is not blue. The bald eagle likes the dog. The bald eagle needs the tiger. The bald eagle does not see the dog. The bald eagle sees the tiger. The dog is blue. The dog sees the tiger. The rabbit is green. The rabbit is red. The rabbit sees the dog. The tiger needs the bald eagle. The tiger needs the dog. If someone needs the bald eagle and the bald eagle sees the tiger then they are rough. If someone needs the dog and they like the dog then they need the bald eagle. If someone likes the bald eagle then the bald eagle needs the dog. If someone is rough and they like the dog then the dog needs the tiger. If someone likes the dog and the dog is blue then they see the tiger. If someone needs the tiger and they do not see the dog then the tiger needs the bald eagle. If someone needs the bald eagle then they like the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not need the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-534_Q14", "context": "The cow likes the rabbit. The cow needs the mouse. The mouse likes the squirrel. The rabbit needs the cow. The rabbit sees the cow. The squirrel is nice. The squirrel needs the cow. If someone needs the mouse and they need the rabbit then the rabbit needs the cow. If someone sees the rabbit then the rabbit needs the mouse. If someone needs the cow then they like the squirrel. If someone sees the squirrel then they see the rabbit. If someone is kind and they see the squirrel then they need the mouse. If someone likes the squirrel and the squirrel sees the cow then they are red. If someone needs the mouse then they see the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-375_Q10", "context": "The bald eagle eats the dog. The bald eagle eats the tiger. The cat needs the bald eagle. The cat needs the dog. The cat sees the dog. The dog eats the tiger. The dog is red. The tiger is red. The tiger needs the bald eagle. The tiger needs the cat. If someone needs the tiger then the tiger needs the dog. If someone eats the cat and the cat sees the tiger then the cat eats the tiger. If someone needs the dog then the dog needs the tiger. Blue people are red. If someone is red and they see the bald eagle then the bald eagle is big. Red people are young. If someone sees the tiger then they see the cat. If someone needs the dog then they are blue. If someone is blue and young then they see the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not see the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-326_Q10", "context": "The cow does not see the lion. The lion does not eat the cow. The lion eats the rabbit. The lion is not big. The lion is kind. The lion is rough. The lion sees the squirrel. The rabbit is not nice. The squirrel eats the lion. The squirrel is big. The squirrel is kind. The squirrel needs the lion. The squirrel sees the lion. The squirrel sees the rabbit. If someone needs the squirrel then they see the squirrel. If someone sees the lion and they see the squirrel then the squirrel eats the cow. If the cow sees the squirrel and the cow does not need the rabbit then the rabbit sees the lion. Rough people are nice. If someone needs the rabbit and the rabbit sees the squirrel then the squirrel does not need the lion. If someone is big and nice then they need the squirrel. If someone is kind then they are rough. Nice people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not see the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-373_Q1", "context": "Bob is kind. Charlie is cold. Charlie is quiet. Erin is red. Fiona is furry. Fiona is not kind. Fiona is young. If someone is furry then they are smart. If someone is young then they are quiet. If someone is red then they are furry. If Fiona is red then Fiona is smart. If Erin is red and Erin is cold then Erin is not young. If Bob is cold then Bob is smart. If someone is smart then they are cold. If Erin is red and Erin is not young then Erin is not kind. If Erin is red and Erin is not furry then Erin is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-428_Q22", "context": "The cat likes the tiger. The dog is cold. The dog is nice. The dog likes the mouse. The mouse chases the tiger. The mouse does not eat the cat. The tiger chases the cat. If the cat likes the dog then the dog does not eat the cat. If something is kind then it chases the cat. If something likes the dog then it likes the tiger. If the tiger is nice and the tiger is not young then the tiger does not chase the mouse. If something likes the tiger then it eats the dog. If something eats the dog then the dog likes the tiger. If something eats the dog and it likes the mouse then the mouse is kind. If something eats the cat then the cat does not chase the dog. If something is kind and it does not eat the cat then the cat does not eat the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat likes the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-219_Q13", "context": "Charlie is not quiet. Dave is big. Dave is furry. Erin is cold. Erin is not green. Erin is not kind. Fiona is quiet. Big things are young. Young, cold things are big. Quiet things are big. All young things are cold. If something is big and not furry then it is cold. If something is cold then it is not kind. If something is cold and big then it is quiet. If Fiona is cold and Fiona is not quiet then Fiona is kind. If something is quiet and not kind then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1293_Q10", "context": "Anne is cold. Anne is green. Bob is nice. Bob is smart. Charlie is kind. Charlie is nice. Charlie is red. Charlie is smart. Charlie is young. Gary is kind. Gary is red. Gary is young. Green things are red. If something is nice and green then it is smart. All red things are young. If Bob is kind and Bob is red then Bob is cold. If Gary is green and Gary is nice then Gary is kind. All smart, red things are kind. All young, red things are nice. If something is kind then it is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-823_Q1", "context": "Charlie is cold. Erin is big. Erin is not blue. Erin is green. Erin is round. Erin is young. Fiona is big. Fiona is not blue. Fiona is cold. Fiona is green. Fiona is rough. Fiona is round. Fiona is young. Harry is cold. If something is big then it is rough. All blue, big things are rough. Blue, young things are rough. Cold, rough things are green. If something is young and blue then it is cold. All cold, green things are young. All young, round things are not blue. Young things are round. If Harry is cold then Harry is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1189_Q7", "context": "Anne is nice. Erin is green. Erin is quiet. Gary is quiet. Gary is smart. Harry is kind. Harry is smart. If someone is kind and big then they are nice. If Gary is quiet and Gary is big then Gary is smart. If someone is cold then they are green. If Harry is smart and Harry is cold then Harry is green. Quiet people are big. If someone is nice and big then they are cold. All nice, quiet people are cold. If Gary is nice then Gary is kind. Smart people are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-191_Q4", "context": "The bear does not chase the cow. The bear is big. The bear is cold. The bear is young. The bear likes the dog. The bear likes the mouse. The cow does not chase the dog. The cow likes the mouse. The dog does not chase the bear. The dog does not eat the cow. The dog is not cold. The dog does not like the bear. The dog likes the cow. The dog does not like the mouse. The mouse is kind. The mouse likes the bear. If someone eats the bear and the bear likes the cow then the bear likes the dog. If someone is kind then they chase the mouse. If someone eats the cow then the cow is young. If someone likes the mouse then they eat the dog. If the dog likes the mouse and the mouse does not like the dog then the mouse does not like the cow. If the cow is young and the bear does not chase the cow then the cow is kind. If someone eats the cow then the cow eats the mouse. If someone eats the dog then they eat the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not eat the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-74_Q1", "context": "The cat chases the rabbit. The mouse chases the cat. The mouse is red. The mouse is round. The rabbit is red. The rabbit sees the mouse. The squirrel chases the cat. The squirrel chases the mouse. The squirrel is kind. The squirrel sees the rabbit. If something is red then it sees the mouse. If the mouse sees the squirrel then the squirrel eats the cat. If something chases the squirrel and it is red then the squirrel eats the rabbit. If something eats the cat and it chases the cat then it sees the mouse. If something sees the mouse then it sees the squirrel. If something eats the mouse and it sees the mouse then the mouse sees the squirrel. If something eats the rabbit then it sees the rabbit. If something sees the squirrel and it sees the rabbit then it eats the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-826_Q8", "context": "Anne is big. Anne is quiet. Anne is red. Charlie is cold. Charlie is furry. Charlie is quiet. Charlie is red. Charlie is rough. Charlie is young. Dave is big. Dave is cold. Dave is furry. Dave is red. Dave is rough. Dave is young. Gary is cold. Rough, quiet things are furry. Furry things are quiet. If Charlie is rough then Charlie is quiet. If Charlie is red then Charlie is cold. If something is cold then it is red. If something is red then it is quiet. If Gary is red and Gary is quiet then Gary is big. All big things are rough. All cold things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-1021_Q21", "context": "The bear is green. The bear is rough. The lion is green. The lion is kind. The lion does not like the bear. The lion does not like the rabbit. The lion likes the tiger. The lion needs the rabbit. The lion sees the bear. The lion sees the tiger. The rabbit is rough. The tiger needs the lion. If someone needs the tiger and the tiger does not need the rabbit then the rabbit does not like the tiger. If the bear does not like the lion then the bear is not kind. If someone sees the lion then they are rough. If someone needs the bear then they are big. If someone needs the tiger then the tiger is green. If someone sees the rabbit then they need the tiger. If someone is green then they see the rabbit. If someone needs the tiger and the tiger likes the lion then the tiger is kind. If someone needs the lion and the lion does not need the tiger then the tiger likes the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not need the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-220_Q9", "context": "Anne is quiet. Anne is smart. Charlie is blue. Charlie is furry. Charlie is smart. Gary is not furry. Harry is blue. Harry is furry. Harry is nice. Harry is smart. If someone is quiet then they are round. If someone is round then they are blue. If Anne is white then Anne is nice. All blue, quiet people are white. If Harry is not round then Harry is not white. White, quiet people are nice. If someone is nice and smart then they are furry. If someone is furry then they are smart. All white, furry people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-921_Q18", "context": "Anne is cold. Anne is furry. Anne is nice. Anne is red. Anne is white. Charlie is white. Fiona is cold. Fiona is furry. Fiona is nice. Fiona is red. Harry is big. Harry is furry. Harry is red. Harry is white. If Anne is big and Anne is round then Anne is furry. If something is furry then it is cold. All nice things are round. If Charlie is round then Charlie is big. If something is big and red then it is furry. If Charlie is white then Charlie is nice. If something is big and red then it is furry. All big things are furry. If something is round then it is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-588_Q3", "context": "The bald eagle is young. The bald eagle likes the bear. The bear is blue. The cat is blue. The cat likes the bald eagle. The cat sees the cow. The cat visits the bald eagle. The cow is blue. The cow is nice. The cow is round. The cow does not like the bear. The cow sees the bear. If someone sees the bald eagle then the bald eagle sees the cow. If someone sees the cow then they see the cat. If someone sees the cat then they like the cow. If someone sees the cat then the cat sees the bald eagle. If someone likes the cow and the cow is round then the cow does not see the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat sees the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-570_Q13", "context": "Bob is big. Bob is red. Charlie is big. Erin is nice. Erin is quiet. Erin is red. Fiona is cold. Fiona is kind. Fiona is nice. Fiona is red. If someone is quiet then they are furry. Kind, nice people are red. All big people are quiet. If someone is kind then they are cold. All nice, furry people are red. If someone is nice and red then they are kind. Big people are nice. Kind people are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-928_Q20", "context": "Charlie is cold. Charlie is furry. Charlie is kind. Charlie is nice. Charlie is red. Charlie is rough. Dave is red. Dave is rough. Fiona is rough. Harry is kind. Harry is rough. Red things are nice. All nice things are cold. Furry things are kind. If something is cold and rough then it is white. If Fiona is furry then Fiona is kind. Rough, kind things are furry. White things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-485_Q19", "context": "Anne is big. Anne is furry. Bob is cold. Bob is red. Dave is not green. Gary is not big. Gary is smart. If someone is smart and big then they are furry. Smart people are furry. Furry, red people are big. Big people are kind. If someone is cold then they are smart. If someone is kind and big then they are not green. If Gary is cold then Gary is not green.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-370_Q1", "context": "The bald eagle needs the cow. The bald eagle needs the rabbit. The bald eagle needs the squirrel. The cow does not chase the rabbit. The cow chases the squirrel. The cow likes the bald eagle. The rabbit is big. The rabbit is round. The rabbit likes the squirrel. The squirrel chases the cow. The squirrel chases the rabbit. If someone chases the bald eagle and they are big then they do not like the cow. If someone chases the cow and they are round then they are kind. If the cow likes the rabbit and the rabbit likes the bald eagle then the bald eagle needs the rabbit. If someone likes the cow then they are green. If someone is big and they need the bald eagle then they chase the cow. If someone likes the bald eagle then they do not chase the bald eagle. If someone needs the rabbit then the rabbit likes the cow. If the squirrel needs the cow and the cow chases the squirrel then the squirrel does not like the cow. If someone is green then they need the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow chases the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-113_Q9", "context": "Anne is green. Dave is furry. Dave is green. Dave is quiet. Dave is young. Fiona is furry. Fiona is green. Fiona is kind. Fiona is young. Gary is green. All kind, nice things are cold. If something is young and furry then it is kind. If Anne is cold and Anne is young then Anne is nice. Young things are quiet. Furry, nice things are green. Young, green things are nice. Nice things are furry. Nice things are furry. If something is green then it is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-163_Q21", "context": "The bald eagle chases the dog. The bald eagle eats the dog. The bald eagle is big. The bald eagle likes the bear. The bear eats the dog. The bear is kind. The dog chases the tiger. The dog eats the bald eagle. The dog is kind. The tiger chases the bear. The tiger eats the bear. The tiger is big. The tiger is round. The tiger is young. If someone is kind then they chase the bald eagle. If someone chases the bear and the bear likes the tiger then they eat the bald eagle. If someone is kind then they eat the bald eagle. If someone likes the dog then they like the tiger. If someone likes the tiger then they are young. If someone eats the dog then the dog is big. If someone eats the bald eagle then they like the dog. If someone likes the dog and they do not chase the tiger then the dog chases the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not chase the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-420_Q1", "context": "The bear eats the cow. The bear likes the lion. The bear likes the mouse. The cow chases the bear. The cow chases the mouse. The cow eats the bear. The cow is nice. The lion chases the cow. The lion chases the mouse. The lion likes the bear. The mouse chases the cow. The mouse chases the lion. If someone is young then they are round. If someone eats the lion then they are young. If someone eats the bear then they eat the lion. If someone is nice and they chase the lion then they like the bear. If someone eats the lion then the lion eats the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear likes the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-323_Q19", "context": "The bald eagle likes the cow. The cat eats the cow. The cat is blue. The cat likes the cow. The cat likes the rabbit. The cat needs the rabbit. The cow is not red. The cow needs the cat. The cow needs the rabbit. The rabbit is nice. The rabbit is round. If something needs the bald eagle and the bald eagle is green then the bald eagle is nice. If something eats the rabbit and the rabbit is not blue then the rabbit eats the cat. If something eats the rabbit then it needs the bald eagle. If something is red and it likes the bald eagle then it needs the rabbit. If something is red then it eats the rabbit. If something likes the cow then it is red. If something needs the bald eagle then the bald eagle is green. If the bald eagle is green and the bald eagle is not nice then the bald eagle eats the cat. If something is red and it does not eat the cat then the cat is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-518_Q5", "context": "The bear chases the dog. The dog chases the lion. The dog is kind. The dog likes the lion. The lion chases the bear. The lion chases the dog. The lion chases the squirrel. The lion needs the bear. The squirrel chases the bear. The squirrel is round. The squirrel needs the dog. If something chases the bear and the bear chases the dog then it is young. If something needs the squirrel then it is kind. If the squirrel chases the lion then the squirrel needs the bear. If something is nice and it likes the bear then it is red. If the lion needs the bear and the lion needs the squirrel then the bear is young. If something is young then it chases the lion. If something is young and it chases the dog then it needs the squirrel. If something likes the bear and it likes the dog then it likes the lion. If the dog needs the squirrel then the dog chases the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion chases the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-548_Q4", "context": "The cow eats the lion. The cow is young. The cow likes the squirrel. The lion eats the rabbit. The lion eats the squirrel. The lion does not like the squirrel. The rabbit is blue. The rabbit likes the cow. The rabbit likes the lion. The squirrel likes the lion. The squirrel likes the rabbit. If someone visits the lion then the lion eats the cow. If someone visits the cow then they are round. If the squirrel visits the cow and the squirrel is not young then the cow likes the rabbit. If someone eats the squirrel and they eat the cow then they visit the rabbit. If someone likes the cow then they are nice. If someone eats the cow and the cow visits the rabbit then they eat the lion. If someone is nice then they visit the cow. If someone eats the squirrel and they like the cow then they do not visit the squirrel. If someone visits the cow then the cow is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-688_Q22", "context": "The cat is nice. The cat is red. The cat is round. The cat does not need the mouse. The cat visits the squirrel. The lion needs the mouse. The mouse is round. The mouse likes the lion. The mouse needs the lion. The mouse visits the cat. The squirrel is big. The squirrel is red. The squirrel visits the lion. The squirrel visits the mouse. If something likes the cat and it does not visit the cat then it visits the lion. If the lion is green and the lion visits the mouse then the mouse is red. All red things are nice. If something likes the lion then it is red. If the mouse visits the cat and the mouse needs the squirrel then the mouse does not like the cat. Nice things are big. If something is big then it visits the squirrel. If the mouse visits the squirrel then the mouse does not visit the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion likes the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-99_Q11", "context": "Bob is green. Bob is white. Dave is blue. Dave is cold. Dave is green. Dave is white. Fiona is cold. Fiona is green. Fiona is white. Fiona is young. Gary is kind. Gary is white. Cold, white people are furry. If someone is furry then they are green. All cold people are young. If someone is kind and young then they are blue. If someone is furry then they are blue. All white, kind people are young. All kind, blue people are cold. If Bob is blue then Bob is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-538_Q13", "context": "Charlie is cold. Charlie is red. Dave is not big. Erin is green. Erin is red. Fiona is green. Fiona is kind. If Erin is big then Erin is green. Blue, kind people are big. All kind people are green. All cold people are not quiet. All kind people are red. If someone is big and kind then they are cold. Red people are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-378_Q5", "context": "Anne is nice. Dave is young. Erin is round. Erin is white. Gary is furry. Gary is rough. Gary is round. All nice, rough people are cold. Rough people are nice. Round, young people are nice. If someone is nice then they are furry. All round people are furry. All white, round people are furry. All round, nice people are rough. If someone is round and young then they are white. Furry, round people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-394_Q9", "context": "The bald eagle is blue. The bald eagle visits the bear. The bald eagle visits the rabbit. The bear chases the bald eagle. The dog is not cold. The rabbit is red. The rabbit needs the bear. If the bald eagle visits the bear and the bald eagle is rough then the bear chases the rabbit. If someone is rough then they chase the bald eagle. If someone is cold then they are rough. If someone needs the bald eagle then the bald eagle is cold. If someone needs the rabbit and they chase the bald eagle then the bald eagle does not chase the bear. If someone chases the bald eagle then they are kind. If someone is kind then they need the bald eagle. If the rabbit is red and the rabbit is blue then the rabbit needs the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-460_Q12", "context": "The bald eagle is kind. The bald eagle is young. The bald eagle likes the lion. The bald eagle likes the mouse. The lion is big. The lion needs the tiger. The mouse likes the bald eagle. The mouse likes the tiger. The mouse needs the tiger. The tiger is big. The tiger is rough. The tiger is young. The tiger visits the bald eagle. The tiger visits the lion. If someone visits the mouse and they are kind then they visit the tiger. If someone needs the lion then the lion likes the mouse. If someone likes the bald eagle then the bald eagle is rough. If someone visits the tiger and the tiger is young then the tiger is nice. If someone is kind then they need the lion. If someone needs the bald eagle then they are big. If someone needs the lion and the lion likes the mouse then the lion visits the tiger. If someone is nice and they visit the lion then they need the mouse. If someone is young then they like the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not need the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-801_Q24", "context": "The bear is big. The bear is nice. The bear is rough. The bear sees the squirrel. The bear sees the tiger. The lion eats the squirrel. The lion is not green. The lion likes the tiger. The squirrel eats the tiger. The squirrel likes the lion. The squirrel likes the tiger. The tiger eats the bear. The tiger is not nice. The tiger is rough. The tiger does not like the squirrel. The tiger sees the lion. If someone likes the tiger and the tiger eats the bear then the bear eats the tiger. If someone eats the tiger then the tiger is blue. If someone sees the bear then they do not like the lion. If someone is blue then they see the bear. If someone eats the bear then the bear likes the tiger. If someone sees the bear then the bear is blue. If someone likes the tiger and the tiger sees the lion then they eat the lion. If someone sees the tiger and they are not blue then the tiger eats the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger sees the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-22_Q18", "context": "Bob is big. Bob is blue. Bob is nice. Bob is rough. Bob is white. Erin is blue. Gary is kind. Harry is kind. Harry is nice. Harry is white. Blue things are rough. All nice, white things are young. If something is big then it is blue. All blue, big things are nice. Big, rough things are kind. All white, rough things are big. If something is young then it is blue. If something is rough then it is white.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-939_Q18", "context": "Charlie is cold. Charlie is furry. Dave is nice. Fiona is furry. Fiona is red. Harry is furry. Harry is kind. If Fiona is kind and Fiona is cold then Fiona is blue. All red things are nice. If Dave is cold then Dave is furry. If Fiona is nice then Fiona is red. Nice things are red. If something is kind then it is cold. If something is cold and kind then it is furry. All nice, furry things are blue. Red things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-660_Q7", "context": "Dave is big. Dave is furry. Dave is quiet. Dave is round. Fiona is blue. Fiona is round. Fiona is smart. Gary is big. Gary is blue. Gary is furry. Gary is round. Gary is smart. Harry is blue. Harry is round. If someone is round and blue then they are smart. If Harry is furry and Harry is blue then Harry is big. Smart, big people are quiet. All smart people are furry. If someone is blue and quiet then they are cold. If someone is quiet and cold then they are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-378_Q8", "context": "Anne is nice. Dave is young. Erin is round. Erin is white. Gary is furry. Gary is rough. Gary is round. All nice, rough people are cold. Rough people are nice. Round, young people are nice. If someone is nice then they are furry. All round people are furry. All white, round people are furry. All round, nice people are rough. If someone is round and young then they are white. Furry, round people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-211_Q6", "context": "Bob is red. Charlie is furry. Charlie is nice. Charlie is smart. Fiona is red. Gary is nice. Gary is round. Furry things are blue. All round, furry things are nice. White things are furry. If something is blue then it is white. All furry things are round. If something is nice and furry then it is smart. Red things are blue. If something is round then it is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-427_Q12", "context": "Anne is furry. Anne is not green. Anne is white. Charlie is green. Charlie is rough. Gary is blue. Gary is furry. Gary is green. Gary is nice. Gary is round. Gary is white. Harry is nice. Harry is rough. Harry is round. If something is white then it is blue. All furry things are round. Green, rough things are round. Blue things are furry. If Charlie is furry then Charlie is nice. Rough, round things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-598_Q23", "context": "The bald eagle likes the dog. The bald eagle needs the lion. The bald eagle visits the dog. The bald eagle visits the lion. The dog is cold. The dog is not nice. The dog does not like the lion. The dog visits the lion. The dog visits the mouse. The lion likes the bald eagle. The lion visits the bald eagle. The lion visits the dog. The mouse likes the lion. The mouse does not visit the lion. If something is round then it visits the mouse. If something visits the mouse then it is cold. If something visits the dog and the dog needs the lion then the lion is round. If something is cold then it needs the lion. If the mouse does not visit the dog then the dog is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not need the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-472_Q1", "context": "Charlie is red. Erin is red. Erin is round. Erin is smart. Gary is kind. Gary is quiet. Gary is red. Gary is round. Gary is smart. Gary is white. Harry is kind. Harry is smart. All smart, round people are big. White people are kind. All round people are quiet. All quiet people are white. If Charlie is red and Charlie is kind then Charlie is big. Red people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1006_Q3", "context": "Anne is rough. Anne is young. Bob is nice. Bob is not smart. Erin is not rough. Gary is quiet. Gary is smart. Red, young things are smart. If something is quiet then it is smart. If something is smart and not rough then it is red. Furry things are not red. Smart things are nice. Red things are not nice. All young things are quiet. All nice things are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-901_Q6", "context": "The bear eats the lion. The bear needs the mouse. The lion is green. The lion is nice. The lion is round. The lion needs the bear. The lion sees the rabbit. The mouse eats the lion. The mouse is rough. The mouse needs the bear. The mouse sees the bear. The rabbit is nice. The rabbit is not rough. The rabbit sees the lion. If something is nice then it needs the rabbit. If the mouse does not see the bear then the bear needs the rabbit. If something sees the bear and it is nice then it does not need the bear. If something needs the lion and it sees the mouse then the mouse does not need the bear. If something eats the lion then it eats the bear. If something is green then it eats the bear. If something eats the bear then it eats the rabbit. If the rabbit sees the mouse and the mouse sees the rabbit then the rabbit is not green. If something eats the rabbit then the rabbit eats the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not eat the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-743_Q6", "context": "Anne is blue. Anne is white. Bob is quiet. Charlie is blue. Charlie is red. Charlie is round. Gary is nice. Gary is red. Gary is rough. Gary is round. Quiet things are nice. If something is rough then it is red. All blue things are white. Red things are white. Quiet, nice things are rough. If something is round then it is rough. If something is white then it is blue. If something is quiet and white then it is round. If Charlie is blue then Charlie is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-571_Q7", "context": "The bald eagle is not blue. The bald eagle likes the dog. The bald eagle needs the tiger. The bald eagle does not see the dog. The bald eagle sees the tiger. The dog is blue. The dog sees the tiger. The rabbit is green. The rabbit is red. The rabbit sees the dog. The tiger needs the bald eagle. The tiger needs the dog. If someone needs the bald eagle and the bald eagle sees the tiger then they are rough. If someone needs the dog and they like the dog then they need the bald eagle. If someone likes the bald eagle then the bald eagle needs the dog. If someone is rough and they like the dog then the dog needs the tiger. If someone likes the dog and the dog is blue then they see the tiger. If someone needs the tiger and they do not see the dog then the tiger needs the bald eagle. If someone needs the bald eagle then they like the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle needs the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-79_Q11", "context": "Charlie is young. Erin is not smart. Fiona is red. Fiona is not young. Gary is nice. Gary is red. Gary is smart. If Gary is smart then Gary is red. All smart people are nice. All young people are nice. If someone is young then they are quiet. If someone is green then they are cold. All smart people are cold. All cold, quiet people are green. If someone is young and nice then they are smart. All smart, green people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1293_Q2", "context": "Anne is cold. Anne is green. Bob is nice. Bob is smart. Charlie is kind. Charlie is nice. Charlie is red. Charlie is smart. Charlie is young. Gary is kind. Gary is red. Gary is young. Green things are red. If something is nice and green then it is smart. All red things are young. If Bob is kind and Bob is red then Bob is cold. If Gary is green and Gary is nice then Gary is kind. All smart, red things are kind. All young, red things are nice. If something is kind then it is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-898_Q8", "context": "Anne is not smart. Anne is young. Dave is white. Erin is furry. Erin is white. Gary is smart. Gary is white. Young things are red. All young things are red. White, red things are quiet. All furry things are quiet. White things are smart. If something is smart then it is big. All big, red things are furry. If something is smart then it is furry. Quiet things are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1175_Q16", "context": "Anne is rough. Bob is furry. Dave is big. Dave is nice. Dave is rough. Fiona is furry. Fiona is nice. If someone is smart and cold then they are nice. If someone is smart then they are cold. Rough, nice people are red. If someone is rough then they are smart. If Fiona is red then Fiona is big. All furry people are rough. If someone is big then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-558_Q22", "context": "The cow is nice. The cow is rough. The mouse chases the rabbit. The mouse is green. The rabbit sees the tiger. The tiger is kind. The tiger is nice. The tiger is rough. The tiger sees the mouse. The tiger visits the rabbit. If someone sees the tiger and the tiger is rough then they visit the mouse. If someone visits the rabbit and they see the mouse then the mouse is green. If someone visits the mouse then they visit the tiger. If someone visits the rabbit and the rabbit is rough then the rabbit visits the cow. If someone is nice then they visit the mouse. If someone visits the tiger then they visit the cow. If someone sees the mouse then the mouse visits the cow. If someone visits the cow and they visit the mouse then the mouse sees the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit visits the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-271_Q21", "context": "The bald eagle eats the cat. The bald eagle eats the cow. The bald eagle is rough. The bald eagle needs the cat. The bald eagle sees the cat. The cat needs the cow. The cat sees the cow. The cow eats the cat. The cow is nice. The cow is red. The cow needs the bald eagle. The cow needs the cat. The tiger is cold. The tiger is young. The tiger needs the cat. The tiger sees the bald eagle. If something sees the cat and it is red then it needs the bald eagle. If the cow sees the cat then the cat is rough. If the tiger is rough then the tiger is red. If something eats the cat and the cat is red then it sees the tiger. If something sees the cow then it is red. If something sees the cat and it sees the tiger then it needs the bald eagle. If something needs the cow then it needs the cat. If something eats the tiger then the tiger eats the bald eagle. If something needs the bald eagle then it sees the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not eat the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-314_Q21", "context": "Anne is cold. Anne is smart. Bob is smart. Bob is young. Gary is kind. Harry is red. Harry is young. All young things are red. If Harry is young then Harry is smart. If Gary is rough then Gary is cold. If Gary is cold and Gary is blue then Gary is rough. If something is smart and kind then it is young. All cold things are smart. If something is kind then it is rough. Red, kind things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-1010_Q17", "context": "The bear eats the mouse. The bear likes the mouse. The bear likes the rabbit. The bear needs the mouse. The mouse eats the rabbit. The mouse eats the squirrel. The mouse needs the rabbit. The mouse needs the squirrel. The rabbit does not need the squirrel. The squirrel is blue. The squirrel is green. The squirrel is red. The squirrel likes the bear. The squirrel does not like the mouse. The squirrel needs the bear. The squirrel needs the mouse. If someone eats the bear then they like the rabbit. If the bear is round and the bear is not blue then the bear does not like the rabbit. If the bear eats the rabbit and the rabbit likes the mouse then the bear likes the squirrel. If someone likes the rabbit then they like the squirrel. If someone needs the rabbit and the rabbit is round then they like the squirrel. If someone needs the squirrel and they need the mouse then they do not eat the squirrel. If someone likes the squirrel then they need the squirrel. If the squirrel needs the bear and the squirrel needs the mouse then the squirrel eats the bear. If someone is nice then they eat the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not eat the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-27_Q17", "context": "The cat chases the cow. The cat chases the mouse. The cat is nice. The cat is red. The cat is rough. The cat needs the lion. The cat does not need the mouse. The cat visits the mouse. The cow does not chase the cat. The cow is big. The lion chases the cat. The lion chases the cow. The lion is young. The lion visits the cow. The mouse is big. The mouse is rough. If someone needs the lion then the lion does not need the mouse. If someone visits the cat then they are not big. If someone is rough then they visit the mouse. If the cow visits the lion and the cow is big then the lion does not need the cat. If someone visits the mouse then they are red. If someone chases the cow and they do not need the mouse then the cow is rough. If someone is red then they visit the lion. If someone is red and they chase the lion then the lion is red. If someone chases the mouse and they are red then the mouse needs the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not need the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-353_Q14", "context": "Bob is quiet. Bob is round. Fiona is red. Gary is quiet. Gary is round. Gary is young. Harry is round. If someone is red then they are round. If someone is kind and red then they are green. If someone is round and young then they are kind. All round people are quiet. If Harry is quiet and Harry is red then Harry is green. All quiet, red people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-939_Q15", "context": "The bald eagle is blue. The bald eagle is green. The bald eagle is kind. The bear needs the bald eagle. The cow needs the bear. The tiger is nice. The tiger needs the bear. If someone likes the tiger then they visit the bald eagle. If someone is rough and they need the bald eagle then the bald eagle visits the tiger. If someone needs the bear then they are rough. If the bald eagle needs the cow and the cow likes the tiger then the tiger is kind. If someone visits the tiger then they like the tiger. If someone is nice and blue then they like the bald eagle. If the bald eagle is rough then the bald eagle likes the bear. If someone needs the bald eagle then they need the bear. If the bald eagle is rough then the bald eagle likes the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-876_Q8", "context": "Anne is round. Anne is young. Dave is red. Dave is smart. Gary is big. Gary is round. Gary is young. Harry is big. Harry is blue. Harry is red. Harry is smart. Harry is young. Red things are furry. Round, big things are young. Smart, blue things are round. All blue, round things are big. All furry, red things are blue. If something is big and young then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-519_Q13", "context": "Bob is big. Bob is furry. Bob is green. Bob is rough. Bob is white. Charlie is not blue. Erin is furry. Erin is green. Erin is white. Erin is young. Gary is big. If someone is white then they are rough. If Erin is young and Erin is blue then Erin is green. All young people are furry. White, green people are furry. If someone is green then they are big. If someone is big then they are white. Furry, big people are blue. If someone is rough then they are blue. Blue people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1307_Q2", "context": "Charlie is nice. Charlie is rough. Erin is big. Erin is nice. Erin is red. Erin is rough. Gary is big. Gary is green. Harry is blue. Harry is rough. All rough, big things are red. All blue things are big. Red, rough things are big. If something is red and big then it is nice. Red, cold things are nice. All nice things are cold. Cold things are green. If Charlie is rough and Charlie is blue then Charlie is cold. If something is green and cold then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-822_Q11", "context": "Anne is blue. Anne is rough. Anne is white. Bob is blue. Erin is kind. Erin is rough. Harry is blue. Harry is kind. Harry is rough. Harry is round. Harry is young. If Bob is rough then Bob is kind. All blue people are young. If someone is kind then they are blue. If Erin is young and Erin is green then Erin is round. All round people are white. If Bob is white and Bob is young then Bob is kind. Green people are kind. Young people are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-811_Q3", "context": "The bear is big. The bear is green. The bear is rough. The bear is young. The bear sees the mouse. The cow chases the bear. The cow chases the dog. The cow is young. The dog is red. The dog sees the bear. The mouse sees the cow. If someone chases the cow then they are rough. If someone is green then they are red. If someone sees the bear and the bear is red then the bear sees the cow. If someone is rough then they chase the dog. If someone chases the dog and they chase the mouse then the mouse is green. If someone is big then they visit the cow. If someone chases the cow then they visit the dog. If someone sees the cow then they chase the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-667_Q11", "context": "Bob is big. Bob is nice. Bob is young. Erin is big. Erin is quiet. Erin is smart. Erin is white. Fiona is young. Gary is big. Gary is quiet. Gary is smart. Gary is young. Smart people are big. If someone is quiet and smart then they are red. Nice, red people are smart. If someone is big and young then they are nice. Young people are red. All red, quiet people are big. All red, white people are smart. Big people are young. All red, young people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-163_Q16", "context": "Anne is big. Anne is smart. Bob is big. Bob is round. Bob is white. Erin is cold. Erin is rough. Erin is smart. Gary is cold. Gary is nice. Big people are white. Nice, big people are smart. Nice, big people are white. All white, cold people are smart. All white, round people are nice. All big, cold people are rough. If someone is rough then they are nice. All white people are round. All nice people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-94_Q18", "context": "Bob is smart. Charlie is kind. Charlie is not smart. Fiona is blue. Fiona is rough. Fiona is smart. Gary is kind. All cold, quiet people are smart. If someone is cold then they are smart. If someone is red and kind then they are smart. If someone is quiet then they are blue. If someone is blue then they are quiet. If someone is kind then they are rough. If Gary is kind and Gary is rough then Gary is quiet. All blue, smart people are red. Blue, rough people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-199_Q8", "context": "Bob is not blue. Bob is kind. Bob is red. Charlie is quiet. Dave is not nice. Dave is red. Erin is quiet. Young things are nice. If something is quiet then it is young. Quiet, nice things are not blue. If something is quiet and rough then it is kind. If something is nice and blue then it is rough. If something is young and not blue then it is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-245_Q19", "context": "Bob is cold. Bob is nice. Bob is red. Erin is nice. Fiona is red. Harry is nice. Harry is smart. Quiet, round people are red. If Harry is cold then Harry is quiet. All red, round people are cold. Furry people are smart. If someone is smart and nice then they are round. Cold people are red. If someone is quiet then they are nice. All red people are furry. All smart, furry people are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-519_Q16", "context": "The bear eats the rabbit. The bear is rough. The bear needs the cow. The bear sees the cow. The cow eats the rabbit. The cow is green. The cow is rough. The cow needs the lion. The cow sees the rabbit. The lion eats the rabbit. The lion is blue. The rabbit is green. The rabbit needs the bear. The rabbit needs the lion. The rabbit sees the cow. The rabbit sees the lion. Big people are blue. If the bear needs the lion then the lion is round. If someone sees the lion then they need the lion. If someone sees the lion and the lion is blue then the lion sees the cow. If someone is rough then they see the lion. If someone sees the lion then the lion is rough. If someone needs the bear and the bear eats the rabbit then they eat the cow. If someone eats the bear and they need the rabbit then the rabbit needs the bear. If someone is round then they need the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow needs the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-376_Q15", "context": "Bob is blue. Bob is kind. Bob is nice. Bob is rough. Erin is green. Erin is nice. Fiona is cold. Fiona is furry. Harry is furry. Harry is rough. Nice, cold people are rough. All furry people are blue. If someone is kind and nice then they are furry. If someone is blue and green then they are kind. Nice people are cold. All rough, green people are furry. If Harry is furry and Harry is cold then Harry is blue. Kind people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-1004_Q2", "context": "The dog chases the rabbit. The mouse chases the rabbit. The mouse is blue. The mouse is not rough. The rabbit needs the tiger. The tiger chases the dog. The tiger chases the rabbit. The tiger is big. The tiger does not like the dog. The tiger needs the mouse. If someone chases the tiger then they do not need the rabbit. If someone needs the rabbit then they do not need the tiger. If someone is big then they are kind. If someone needs the dog then the dog does not like the mouse. If someone is blue and they do not need the rabbit then the rabbit is big. If someone is kind and they chase the rabbit then they need the dog. If someone likes the rabbit then they are big. If the tiger needs the dog then the dog likes the rabbit. If someone is big and they chase the mouse then the mouse is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not need the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-533_Q6", "context": "Dave is not kind. Erin is kind. Erin is rough. Fiona is blue. Fiona is kind. Gary is furry. Gary is kind. If something is big and not furry then it is rough. If something is blue and furry then it is rough. If Fiona is kind and Fiona is white then Fiona is blue. All rough, kind things are not white. If something is furry then it is big. All nice, kind things are big. All big, furry things are nice. If something is white then it is kind. If something is furry and nice then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-724_Q17", "context": "Bob is quiet. Dave is green. Dave is not round. Fiona is green. Fiona is not quiet. Fiona is red. Harry is round. Round people are rough. All rough people are quiet. If Harry is quiet then Harry is smart. All rough, green people are red. Smart, quiet people are green. Red, quiet people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-705_Q9", "context": "Bob is nice. Bob is white. Charlie is nice. Charlie is young. Dave is big. Dave is green. Dave is smart. Dave is white. Dave is young. Gary is green. Green things are nice. All kind things are young. All nice, white things are kind. Nice things are kind. If something is smart and young then it is white. Young, nice things are smart. If something is nice and not white then it is not big.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-482_Q7", "context": "Anne is cold. Anne is furry. Anne is smart. Charlie is furry. Charlie is green. Charlie is nice. Charlie is rough. Charlie is smart. Erin is green. Erin is nice. Erin is rough. Fiona is green. Nice, cold people are furry. If someone is green and white then they are smart. If Fiona is nice then Fiona is smart. All green people are white. If someone is smart then they are furry. Cold people are nice. Furry people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-795_Q6", "context": "Dave is not cold. Erin is cold. Erin is furry. Fiona is cold. Fiona is quiet. Harry is smart. Harry is white. Smart, cold things are white. If Dave is green then Dave is not blue. If Erin is green then Erin is smart. If something is white and furry then it is smart. If Fiona is cold and Fiona is quiet then Fiona is smart. If something is furry then it is green. All green, white things are furry. If something is white and quiet then it is furry. Green, quiet things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1137_Q11", "context": "Anne is cold. Anne is not kind. Anne is not nice. Anne is red. Anne is young. Fiona is not cold. Fiona is kind. Fiona is young. Gary is red. Harry is kind. Harry is nice. Harry is red. All big things are nice. If something is cold and not red then it is nice. All cold, big things are not white. All nice things are big. If Gary is red and Gary is young then Gary is big. All kind, white things are not young. All red things are young. Big, white things are young. If something is nice then it is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-133_Q8", "context": "The cow visits the dog. The cow does not visit the rabbit. The dog is not young. The dog sees the squirrel. The dog does not visit the rabbit. The rabbit eats the squirrel. The rabbit sees the dog. The rabbit visits the dog. The squirrel eats the cow. The squirrel is not nice. If something eats the rabbit and it is round then it visits the rabbit. If something eats the dog then the dog visits the cow. If something sees the rabbit then it sees the cow. If something sees the rabbit then it sees the cow. If something visits the squirrel and it sees the cow then the squirrel is nice. If something visits the dog then it visits the cow. If something eats the rabbit then it is blue. If something visits the cow then it eats the dog. If something visits the dog and the dog visits the cow then it sees the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not visit the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-1003_Q14", "context": "The cat is red. The cat visits the dog. The dog is cold. The dog visits the mouse. The mouse visits the tiger. The tiger is cold. The tiger sees the cat. If someone visits the dog and the dog sees the tiger then the dog visits the mouse. If someone is round then they eat the dog. If someone sees the tiger and the tiger sees the cat then the cat is young. If the cat is young and the cat sees the tiger then the cat eats the tiger. If someone visits the dog and the dog sees the cat then they are red. Young people are cold. If someone is rough then they eat the tiger. If someone is cold then they see the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-1042_Q3", "context": "The cat is blue. The cat is red. The cat visits the cow. The cow is blue. The cow needs the cat. The cow needs the mouse. The cow visits the mouse. The mouse is red. The mouse needs the cow. The tiger is blue. The tiger visits the cat. If something visits the tiger and the tiger is green then it is green. If something likes the cat and the cat visits the cow then the cow is red. If something is rough and it likes the mouse then the mouse visits the cow. If the cat visits the tiger and the tiger likes the cat then the cat visits the cow. If something needs the tiger then it likes the cat. If something visits the cow and the cow likes the mouse then the cow likes the tiger. If something is red then it needs the tiger. If something likes the cow then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse needs the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" } ] ================================================ FILE: data/ProofWriter/train.json ================================================ [ { "id": "ProofWriter_RelNoneg-OWA-D5-84_Q10", "context": "The cow is blue. The cow is round. The cow likes the lion. The cow visits the tiger. The lion is cold. The lion is nice. The lion likes the squirrel. The squirrel is round. The squirrel sees the lion. The squirrel visits the cow. The tiger likes the cow. The tiger likes the squirrel. If something is cold then it visits the tiger. If something visits the tiger then it is nice. If something sees the tiger and it is young then it is blue. If something is nice then it sees the tiger. If something likes the squirrel and it likes the cow then it visits the tiger. If something is nice and it sees the tiger then it is young. If the cow is cold and the cow visits the lion then the lion sees the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-961_Q3", "context": "The dog sees the rabbit. The dog sees the squirrel. The dog sees the tiger. The rabbit eats the dog. The rabbit does not eat the tiger. The rabbit does not like the tiger. The squirrel does not see the rabbit. The tiger does not eat the rabbit. The tiger is not kind. The tiger likes the dog. The tiger sees the dog. If something is cold then it likes the rabbit. If something eats the tiger and it is nice then it likes the rabbit. If something likes the squirrel then the squirrel likes the rabbit. If something likes the rabbit and the rabbit is kind then it sees the tiger. If something likes the tiger then the tiger is young. If something is young and it eats the rabbit then it likes the tiger. If something sees the rabbit then the rabbit is cold. If something likes the rabbit then it likes the squirrel. If something likes the squirrel then the squirrel is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-769_Q9", "context": "Anne is quiet. Erin is furry. Erin is green. Fiona is furry. Fiona is quiet. Fiona is red. Fiona is rough. Fiona is white. Harry is furry. Harry is quiet. Harry is white. Young people are furry. If Anne is quiet then Anne is red. Young, green people are rough. If someone is green then they are white. If someone is furry and quiet then they are white. If someone is young and white then they are rough. All red people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1254_Q5", "context": "Charlie is blue. Charlie is green. Charlie is rough. Charlie is smart. Erin is cold. Erin is furry. Fiona is cold. Fiona is furry. Fiona is kind. Fiona is smart. Harry is smart. If Erin is smart then Erin is furry. If something is blue and green then it is kind. Furry things are smart. If something is furry and green then it is kind. All kind, furry things are blue. All blue things are rough. Cold, smart things are green. All rough things are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-885_Q18", "context": "The bear is cold. The bear is red. The bear does not need the cat. The bear sees the lion. The cat is not cold. The cat is not round. The cat does not see the lion. The cat sees the mouse. The lion visits the bear. The mouse is red. The mouse is not rough. If something is kind then it sees the cat. If something visits the bear then it is kind. If something is rough and it needs the mouse then the mouse visits the bear. If something sees the cat then the cat visits the bear. If something sees the cat and the cat visits the bear then the bear does not visit the lion. If something sees the mouse and it does not need the mouse then the mouse needs the cat. If something visits the lion and it does not see the mouse then the mouse is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-128_Q24", "context": "The bald eagle sees the dog. The dog chases the tiger. The dog eats the rabbit. The dog sees the bald eagle. The rabbit sees the dog. The tiger chases the bald eagle. The tiger eats the rabbit. The tiger is blue. The tiger is cold. The tiger sees the dog. If something is blue and it sees the bald eagle then the bald eagle sees the rabbit. If something is cold then it eats the bald eagle. If something sees the bald eagle then it chases the dog. If something eats the bald eagle then it is big. If something sees the bald eagle then the bald eagle sees the dog. If something chases the tiger and the tiger is big then it is cold. If something chases the tiger then it is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit sees the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-907_Q1", "context": "Dave is big. Dave is red. Erin is smart. Fiona is kind. Fiona is smart. Gary is rough. Gary is white. All young people are white. If someone is kind and white then they are big. If someone is kind then they are young. If Fiona is young and Fiona is rough then Fiona is red. If someone is big then they are rough. All rough, white people are red. If someone is kind and not big then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1080_Q13", "context": "Anne is not blue. Anne is furry. Anne is green. Anne is quiet. Anne is rough. Bob is furry. Dave is rough. Erin is quiet. Erin is round. Erin is not young. All round things are quiet. If Bob is rough and Bob is quiet then Bob is blue. Green, blue things are young. If something is rough then it is young. If something is blue then it is not furry. If something is young then it is furry. Furry things are green. If Bob is blue and Bob is young then Bob is quiet. All green things are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-411_Q3", "context": "The bear eats the cat. The cat likes the squirrel. The cat visits the squirrel. The rabbit is cold. The rabbit is young. The rabbit likes the squirrel. The rabbit visits the bear. The rabbit visits the squirrel. The squirrel is cold. The squirrel visits the rabbit. If the rabbit likes the squirrel then the rabbit is blue. If someone is blue then they like the cat. If someone eats the bear then the bear is rough. If someone is rough then they like the rabbit. If someone likes the cat and they are young then the cat eats the bear. If someone is red and cold then they eat the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-235_Q22", "context": "The cat eats the cow. The cat is kind. The cat visits the dog. The cow sees the dog. The dog is red. The dog visits the rabbit. The rabbit sees the cow. If the cat eats the cow then the cow is round. If something visits the cow and it is round then the cow visits the cat. If something eats the rabbit then it sees the cow. If something visits the cat and it visits the dog then it is cold. If something eats the rabbit and it sees the cow then the rabbit is round. If something eats the cow then the cow is kind. If something is round then it eats the rabbit. If something visits the rabbit and it sees the dog then the dog visits the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-130_Q10", "context": "Bob is cold. Bob is red. Charlie is nice. Charlie is red. Dave is nice. Dave is rough. Harry is green. Harry is quiet. Harry is red. Harry is rough. If someone is cold and red then they are green. Green, nice people are red. All red, quiet people are blue. Rough, green people are quiet. If someone is green then they are rough. If Harry is red then Harry is cold. Blue people are quiet. Red people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-141_Q10", "context": "The bald eagle eats the lion. The bald eagle is red. The bald eagle likes the lion. The bald eagle sees the lion. The lion is nice. The lion likes the squirrel. The lion sees the tiger. The squirrel is young. The tiger is nice. The tiger likes the bald eagle. The tiger likes the lion. The tiger likes the squirrel. If someone sees the tiger and they are big then the tiger sees the squirrel. If someone sees the squirrel and they like the squirrel then they are big. If someone likes the squirrel and they are nice then the squirrel sees the lion. If the lion sees the bald eagle then the lion sees the squirrel. If someone likes the bald eagle and they like the lion then the lion sees the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not see the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-584_Q9", "context": "Charlie is kind. Dave is kind. Fiona is kind. Harry is big. Harry is kind. Harry is red. Harry is white. All young people are red. If Fiona is red then Fiona is big. If someone is kind then they are young. All big, kind people are red. All white people are cold. If someone is big and red then they are white. Cold people are white. If someone is kind and white then they are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-631_Q1", "context": "Anne is kind. Bob is green. Bob is kind. Bob is nice. Bob is quiet. Bob is red. Gary is green. Gary is quiet. Gary is young. Harry is furry. All quiet, green people are young. If someone is quiet then they are kind. Quiet, kind people are nice. All red people are green. All furry people are red. If someone is green then they are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-784_Q5", "context": "The bald eagle is red. The bald eagle likes the mouse. The bald eagle needs the mouse. The bald eagle visits the rabbit. The lion is kind. The lion is rough. The lion needs the mouse. The mouse is rough. The mouse likes the bald eagle. The mouse does not like the lion. The mouse does not like the rabbit. The mouse needs the rabbit. The rabbit likes the mouse. The rabbit needs the bald eagle. The rabbit visits the bald eagle. The rabbit visits the mouse. If something visits the rabbit and the rabbit needs the lion then the lion needs the bald eagle. If something likes the bald eagle and it likes the mouse then the mouse is blue. If something needs the bald eagle then the bald eagle does not need the rabbit. If something is kind and it needs the lion then the lion does not need the rabbit. If the mouse needs the bald eagle and the bald eagle likes the lion then the mouse visits the rabbit. If something needs the lion and it is not red then the lion does not visit the mouse. If something needs the bald eagle then it needs the lion. If the lion does not need the rabbit then the lion does not visit the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion needs the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-83_Q2", "context": "The bear is round. The bear likes the rabbit. The bear visits the lion. The cow is green. The cow visits the lion. The lion is rough. The lion is round. The lion likes the cow. The lion likes the rabbit. The lion sees the cow. The rabbit is green. The rabbit likes the bear. The rabbit likes the lion. The rabbit visits the bear. If someone visits the cow then they are blue. If someone is rough then they see the cow. If someone is round and they visit the cow then the cow is rough. If someone likes the cow then they visit the cow. All round people are rough. If someone is rough then they like the cow. If someone likes the bear then they see the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not like the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-480_Q15", "context": "The cat sees the dog. The cat visits the mouse. The dog sees the mouse. The dog visits the mouse. The mouse eats the dog. The mouse is big. The mouse is kind. The mouse is rough. The mouse sees the cat. The mouse visits the rabbit. The rabbit eats the cat. If something visits the mouse then it visits the rabbit. If something sees the mouse and it is big then it sees the cat. If something is cold then it eats the rabbit. If something sees the cat then it is cold. If something is cold then it eats the mouse. If something eats the cat then it is rough. If something eats the rabbit and it visits the rabbit then the rabbit sees the cat. If something visits the mouse and it sees the mouse then it is kind. If something visits the dog and it eats the rabbit then the dog sees the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not eat the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-791_Q12", "context": "The bald eagle eats the mouse. The bald eagle is cold. The mouse eats the bald eagle. The mouse is not rough. The mouse visits the rabbit. The rabbit eats the bald eagle. The rabbit is kind. The rabbit is rough. The tiger eats the mouse. The tiger eats the rabbit. The tiger visits the bald eagle. If someone likes the bald eagle then the bald eagle eats the tiger. If the bald eagle is nice then the bald eagle eats the tiger. If someone eats the tiger then the tiger is blue. If someone eats the tiger then they are rough. If someone is rough then they do not like the tiger. If someone is kind then they like the bald eagle. If someone is blue then they are nice. If someone is cold and they do not visit the bald eagle then the bald eagle does not visit the mouse. Rough people are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-252_Q20", "context": "The bear is rough. The bear is round. The cat is rough. The cat does not like the bear. The cat visits the bear. The cat does not visit the squirrel. The lion does not like the squirrel. The squirrel likes the bear. The squirrel sees the cat. The squirrel visits the bear. If someone visits the lion then they visit the cat. If someone likes the bear then they visit the cat. If someone visits the cat then they see the bear. If someone visits the cat then the cat is blue. If someone is rough then they like the lion. If the bear sees the cat then the bear likes the cat. If the cat is round and the cat sees the lion then the cat likes the bear. If someone is blue then they visit the lion. If someone visits the lion and they are blue then the lion likes the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat sees the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-520_Q11", "context": "The bald eagle eats the bear. The bald eagle likes the dog. The bald eagle visits the bear. The bear eats the bald eagle. The bear eats the lion. The bear visits the bald eagle. The bear visits the lion. The dog eats the bear. The dog likes the bear. The dog visits the bear. The lion is big. The lion visits the bald eagle. If something is big then it is rough. If something eats the lion and it visits the bear then the bear likes the bald eagle. If something eats the bald eagle then the bald eagle likes the bear. If something likes the bear and the bear visits the lion then the lion is cold. If the bear likes the lion then the lion likes the bear. If something likes the bear and it is cold then the bear eats the dog. If something eats the dog then the dog eats the lion. If something likes the bald eagle then it is rough. If something eats the lion then the lion likes the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-386_Q14", "context": "The bald eagle chases the cow. The bald eagle chases the mouse. The bald eagle is round. The bald eagle needs the cow. The cat is nice. The cat is round. The cat needs the bald eagle. The cat sees the mouse. The cow is cold. The cow does not need the bald eagle. The cow does not need the mouse. The mouse chases the cow. If something needs the mouse then the mouse is nice. If something needs the cat and the cat chases the bald eagle then the cat needs the cow. If something needs the cow then it is nice. If something needs the cow and it needs the cat then it does not see the cat. If something chases the cow and it chases the bald eagle then the cow sees the bald eagle. If something is young then it needs the mouse. All nice things are young.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1230_Q16", "context": "Dave is rough. Dave is white. Fiona is big. Fiona is rough. Fiona is young. Gary is nice. Gary is young. Harry is big. Harry is quiet. Harry is young. If Harry is white and Harry is nice then Harry is young. If Fiona is big and Fiona is rough then Fiona is nice. If something is nice then it is rough. White things are green. If something is rough and young then it is big. If Fiona is quiet and Fiona is young then Fiona is nice. Green, white things are quiet. If something is big and young then it is white. If Fiona is quiet and Fiona is nice then Fiona is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-1022_Q2", "context": "The bear is big. The bear needs the rabbit. The bear sees the rabbit. The cat sees the squirrel. The rabbit is big. The rabbit is cold. The rabbit is round. The rabbit needs the bear. The rabbit needs the squirrel. The rabbit does not see the bear. The squirrel needs the rabbit. The squirrel sees the rabbit. If something is cold then it eats the squirrel. If something is cold then it eats the rabbit. If something sees the rabbit and it sees the squirrel then the rabbit does not need the bear. If something eats the squirrel then it eats the bear. If something eats the bear then the bear is cold. If something sees the squirrel and the squirrel is round then it does not need the squirrel. If something needs the cat then it sees the bear. If the bear eats the cat and the bear does not need the squirrel then the bear eats the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not need the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-528_Q21", "context": "The cat eats the cow. The cat is rough. The cat visits the cow. The cow eats the cat. The cow needs the cat. The lion eats the cow. The lion is cold. The lion is green. The lion needs the cat. The rabbit does not eat the cat. The rabbit is big. If someone needs the lion and the lion eats the cow then the cow is big. If someone is kind and they eat the lion then the lion is rough. If someone is big then they eat the rabbit. If someone needs the rabbit and they do not visit the cow then the rabbit does not need the lion. If someone eats the cat and they are kind then the cat is green. If someone eats the lion and they eat the cow then the lion needs the cow. If someone eats the rabbit then they need the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not need the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-1005_Q2", "context": "The bear chases the squirrel. The bear is not cold. The bear visits the cat. The bear visits the lion. The cat needs the squirrel. The lion needs the cat. The squirrel needs the lion. If something visits the lion then it visits the squirrel. If something chases the cat then the cat visits the lion. If something visits the squirrel and it needs the lion then the lion does not chase the bear. If something is round and it visits the lion then the lion is not cold. If something visits the squirrel then it chases the cat. If the cat does not chase the bear then the cat visits the bear. If something visits the squirrel then it is not nice. If the bear is big then the bear visits the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not need the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-520_Q23", "context": "The bald eagle eats the bear. The bald eagle likes the dog. The bald eagle visits the bear. The bear eats the bald eagle. The bear eats the lion. The bear visits the bald eagle. The bear visits the lion. The dog eats the bear. The dog likes the bear. The dog visits the bear. The lion is big. The lion visits the bald eagle. If something is big then it is rough. If something eats the lion and it visits the bear then the bear likes the bald eagle. If something eats the bald eagle then the bald eagle likes the bear. If something likes the bear and the bear visits the lion then the lion is cold. If the bear likes the lion then the lion likes the bear. If something likes the bear and it is cold then the bear eats the dog. If something eats the dog then the dog eats the lion. If something likes the bald eagle then it is rough. If something eats the lion then the lion likes the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-1004_Q5", "context": "The bald eagle chases the cat. The bald eagle is young. The cat chases the bald eagle. The cat sees the bald eagle. The cat sees the lion. The cow chases the bald eagle. The cow sees the bald eagle. The cow sees the lion. The lion is rough. The lion sees the bald eagle. If someone chases the cow then the cow visits the lion. If the cat visits the bald eagle and the cat is rough then the cat visits the cow. If someone visits the cat then they visit the lion. If the lion sees the cow and the lion sees the cat then the cat is young. If someone sees the lion and they visit the lion then the lion visits the cat. If someone visits the lion then they visit the cow. If someone chases the cat then the cat chases the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow visits the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-496_Q16", "context": "Anne is rough. Bob is big. Bob is quiet. Dave is big. Dave is quiet. Fiona is quiet. Fiona is rough. Furry, nice things are young. All rough, big things are smart. All young, nice things are rough. If something is big then it is furry. Furry things are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-38_Q11", "context": "Anne is big. Anne is kind. Anne is nice. Anne is white. Charlie is big. Charlie is nice. Fiona is big. Fiona is kind. Fiona is round. Fiona is young. Gary is big. Gary is furry. Gary is white. Gary is young. All round things are white. All young, round things are white. If Gary is nice and Gary is young then Gary is white. Big things are furry. All kind, big things are young. All big, young things are round. All furry things are kind. Young, round things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-699_Q16", "context": "Anne is kind. Bob is furry. Bob is rough. Bob is round. Dave is blue. Dave is furry. Dave is kind. Dave is quiet. Dave is rough. Dave is round. Dave is smart. Gary is blue. Gary is furry. Gary is smart. If someone is furry and round then they are smart. All smart, blue people are round. All quiet people are round. All round people are smart. If Bob is kind then Bob is furry. If someone is kind then they are blue. All kind, blue people are quiet. All rough, blue people are quiet. All smart people are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-533_Q5", "context": "Anne is big. Anne is rough. Dave is furry. Dave is kind. Dave is red. Dave is rough. Fiona is kind. Fiona is red. Gary is furry. Gary is red. If Dave is big then Dave is smart. Big, rough people are white. If Fiona is big and Fiona is furry then Fiona is rough. All rough, smart people are furry. All white people are red. If someone is smart then they are furry. Red, kind people are smart. All red people are kind. If Fiona is white then Fiona is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-93_Q17", "context": "The cat eats the dog. The cat eats the lion. The dog is red. The dog needs the lion. The dog needs the mouse. The lion needs the mouse. The mouse is red. If someone eats the mouse then the mouse eats the lion. If someone eats the lion then they eat the mouse. If the dog does not eat the cat then the cat is rough. If someone sees the lion and they are big then they see the dog. If someone is red and they eat the mouse then they see the dog. If someone sees the dog then the dog sees the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not see the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1216_Q9", "context": "Bob is blue. Bob is nice. Bob is red. Erin is cold. Erin is green. Fiona is red. Gary is red. If something is nice then it is cold. If something is cold then it is furry. Nice things are not smart. Red things are green. Red, furry things are green. If something is red and green then it is nice. If Fiona is furry and Fiona is nice then Fiona is not blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-307_Q6", "context": "Anne is smart. Bob is big. Gary is green. Gary is kind. Gary is round. Gary is smart. Harry is kind. If something is furry then it is big. If something is furry and big then it is round. Big things are kind. Big, kind things are furry. All round things are green. If something is green then it is rough. Furry, rough things are big. If something is round then it is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1318_Q7", "context": "Anne is blue. Anne is rough. Anne is smart. Bob is blue. Bob is cold. Bob is nice. Gary is nice. Harry is big. Harry is blue. Harry is cold. Harry is nice. Harry is red. Harry is rough. Harry is smart. Cold, blue people are rough. All smart, nice people are blue. All nice, blue people are cold. If someone is nice then they are big. Red people are smart. All nice, red people are smart. All big, blue people are cold. If someone is big and nice then they are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-836_Q11", "context": "Bob is white. Dave is furry. Dave is rough. Dave is smart. Erin is not furry. Harry is cold. Harry is white. If something is smart then it is furry. If something is blue and rough then it is furry. All furry things are rough. All white things are rough. Furry, smart things are rough. Furry, smart things are blue. If something is smart and not cold then it is blue. All blue, smart things are quiet. Rough, cold things are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-76_Q13", "context": "Bob is blue. Bob is green. Fiona is green. Gary is big. Harry is big. Harry is blue. Harry is young. Big people are green. All furry, young people are quiet. Green people are blue. If someone is furry and white then they are young. All furry, green people are blue. If Harry is quiet and Harry is furry then Harry is blue. Young, furry people are quiet. Furry people are white. Blue, green people are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-2_Q2", "context": "The dog chases the rabbit. The dog is red. The dog likes the tiger. The dog needs the squirrel. The dog needs the tiger. The rabbit is kind. The rabbit is red. The squirrel chases the rabbit. The squirrel is kind. The squirrel is young. The squirrel likes the tiger. The tiger is blue. The tiger is cold. The tiger is red. The tiger likes the dog. The tiger needs the rabbit. If something chases the tiger and it is cold then it is blue. If something is young and blue then it likes the dog. If something likes the tiger then it is blue. If something is kind then it is young. If something needs the rabbit then it likes the dog. If something chases the dog and it is young then the dog is cold. If something chases the tiger then it chases the dog. If something likes the dog then it likes the rabbit. If something needs the tiger and the tiger likes the rabbit then the rabbit likes the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not chase the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-139_Q8", "context": "The cat is cold. The cat is nice. The cat likes the cow. The cat visits the rabbit. The cow is young. The rabbit is rough. The tiger is big. The tiger sees the cat. The tiger sees the rabbit. The tiger visits the rabbit. If someone is young then they like the tiger. If the cow is big then the cow sees the cat. If someone is rough and they visit the cat then the cat sees the tiger. If someone sees the cat and they are young then they like the cow. If someone sees the tiger then the tiger likes the cow. If someone likes the tiger then they visit the cat. If someone visits the tiger then the tiger visits the cow. If the rabbit is rough then the rabbit is young. If someone sees the cat and they are cold then they visit the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not visit the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1120_Q6", "context": "Charlie is big. Charlie is green. Charlie is kind. Charlie is white. Charlie is young. Dave is green. Dave is young. Gary is big. Gary is kind. Gary is white. Gary is young. Harry is green. Harry is kind. Harry is quiet. Harry is white. Harry is young. If Dave is kind and Dave is quiet then Dave is green. All young things are kind. If something is quiet and green then it is smart. If something is big then it is quiet. All kind things are big. All kind, smart things are white. White things are kind. All white things are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-265_Q3", "context": "Charlie is white. Erin is white. Fiona is cold. Fiona is green. Fiona is white. Harry is kind. Harry is young. Blue things are not smart. If something is kind then it is blue. White things are not young. If something is young and not smart then it is not white. Smart, young things are not white. If something is white and kind then it is not green. Cold things are green. If something is kind and not white then it is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-319_Q11", "context": "The bald eagle chases the mouse. The bald eagle needs the cat. The cat needs the rabbit. The cat visits the bald eagle. The mouse chases the cat. The mouse chases the rabbit. The mouse is rough. The mouse needs the bald eagle. The mouse visits the cat. The mouse visits the rabbit. The rabbit does not chase the mouse. The rabbit visits the bald eagle. If something chases the mouse then the mouse visits the rabbit. If something needs the rabbit and the rabbit is red then the rabbit chases the cat. If something is kind then it needs the mouse. If something is round then it is not blue. If the bald eagle needs the rabbit and the rabbit visits the bald eagle then the rabbit is kind. If something chases the rabbit then the rabbit does not chase the mouse. If something visits the bald eagle then it is kind. If the cat visits the bald eagle and the bald eagle chases the rabbit then the bald eagle visits the cat. If the mouse visits the cat and the cat needs the mouse then the mouse visits the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse needs the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-795_Q6", "context": "The bald eagle is not green. The bear is green. The bear is kind. The bear needs the bald eagle. The bear needs the tiger. The mouse is not blue. The mouse needs the bald eagle. The mouse visits the bald eagle. The mouse visits the bear. The tiger sees the bald eagle. If someone is young then they need the tiger. If someone needs the tiger and they need the bear then the bear is kind. If someone sees the bald eagle then they visit the bald eagle. If the bald eagle visits the mouse then the bald eagle sees the tiger. If someone visits the bald eagle then the bald eagle does not see the tiger. If someone needs the bald eagle then the bald eagle is young. If someone visits the mouse then the mouse is not blue. If someone visits the bald eagle then they do not visit the tiger. If someone needs the tiger then they see the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not need the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-936_Q15", "context": "Dave is big. Dave is furry. Dave is green. Dave is round. Dave is smart. Erin is furry. Fiona is red. Fiona is smart. Gary is cold. Gary is green. If something is green then it is big. All round things are furry. If something is big and red then it is smart. All big, cold things are round. All furry, red things are big. All furry things are red. Big things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1030_Q10", "context": "Charlie is round. Charlie is smart. Charlie is white. Dave is blue. Dave is smart. Fiona is cold. Fiona is quiet. Fiona is smart. Harry is cold. Harry is furry. Harry is round. Harry is white. If someone is cold and white then they are furry. All quiet, blue people are round. If Charlie is quiet then Charlie is blue. If someone is white then they are cold. If Fiona is cold and Fiona is white then Fiona is quiet. If someone is furry and smart then they are quiet. All smart, blue people are white. If someone is round and smart then they are cold. If Charlie is furry then Charlie is white.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-240_Q17", "context": "Anne is young. Bob is furry. Bob is kind. Charlie is not furry. Charlie is green. Fiona is cold. Fiona is green. Fiona is quiet. Fiona is rough. Fiona is young. All rough, kind people are furry. If someone is kind then they are furry. If someone is rough and young then they are kind. All young, furry people are cold. All young people are green. All quiet, furry people are rough. All green people are rough. If someone is rough and kind then they are quiet. If someone is furry and rough then they are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1285_Q11", "context": "Bob is blue. Bob is cold. Bob is quiet. Bob is red. Bob is smart. Bob is young. Fiona is blue. Fiona is red. Fiona is smart. Fiona is young. Gary is young. Harry is red. Red, cold people are blue. If someone is quiet then they are furry. If someone is red and smart then they are young. All cold, young people are quiet. If someone is quiet and smart then they are furry. All young, furry people are cold. All quiet, young people are red. All quiet people are red. If someone is young then they are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-703_Q7", "context": "Anne is kind. Anne is nice. Charlie is not kind. Erin is nice. Harry is kind. Harry is not quiet. Harry is not red. If Harry is green and Harry is kind then Harry is not round. If someone is red and nice then they are quiet. Nice people are green. Kind, quiet people are green. If Erin is green then Erin is red. Quiet people are round. If someone is round then they are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-39_Q3", "context": "The bear eats the cow. The bear does not visit the cow. The cow is nice. The lion eats the rabbit. The rabbit eats the cow. The rabbit eats the lion. The rabbit is green. If something chases the rabbit then it chases the bear. If the lion eats the cow and the lion is cold then the cow chases the bear. If something eats the bear then it chases the lion. If something visits the lion then the lion is nice. If something is nice then it visits the bear. If something eats the bear and the bear visits the lion then the lion visits the rabbit. If something visits the lion and it is round then the lion eats the bear. If something visits the bear then it visits the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow visits the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-296_Q7", "context": "The bald eagle is rough. The bald eagle sees the cat. The cat is green. The cat is young. The cat sees the dog. The cat visits the tiger. The dog sees the cat. The tiger eats the bald eagle. The tiger eats the cat. The tiger is rough. If something eats the dog and the dog is blue then the dog visits the cat. If the tiger eats the bald eagle and the tiger visits the bald eagle then the bald eagle visits the dog. If something visits the dog and it is green then the dog is rough. If something eats the tiger then the tiger visits the dog. If the bald eagle is young then the bald eagle visits the tiger. If something sees the tiger and it visits the cat then it visits the dog. If something visits the dog then it eats the tiger. If something eats the cat then the cat eats the tiger. If something eats the tiger then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger eats the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-871_Q14", "context": "Anne is quiet. Anne is white. Bob is big. Dave is furry. Dave is rough. Dave is white. Harry is nice. Harry is quiet. Harry is rough. Harry is smart. Furry people are rough. If Harry is furry and Harry is rough then Harry is nice. All rough people are white. If Anne is nice and Anne is furry then Anne is white. All furry, white people are nice. Nice people are quiet. All big people are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1004_Q4", "context": "Anne is furry. Anne is young. Bob is big. Dave is not big. Dave is white. Dave is young. Erin is not furry. All big things are young. All young things are white. All young things are white. All young, furry things are quiet. If something is smart and not young then it is furry. All white things are furry. If something is big and not young then it is furry. If something is big and not quiet then it is green. If something is young and quiet then it is not green.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-506_Q10", "context": "Charlie is quiet. Dave is quiet. Erin is nice. Erin is quiet. Erin is white. Fiona is quiet. Fiona is rough. If Dave is nice and Dave is rough then Dave is quiet. Red, nice people are white. Young people are red. If someone is young then they are red. If Erin is big and Erin is red then Erin is white. All red, white people are big. Red people are nice. Rough people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1393_Q6", "context": "Charlie is smart. Dave is rough. Dave is round. Erin is green. Fiona is cold. Fiona is green. Fiona is nice. Cold, blue things are rough. All green, cold things are blue. If something is smart then it is nice. All round things are rough. Round things are cold. All nice things are round. All rough things are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-1025_Q19", "context": "The cat eats the cow. The cat is cold. The cat needs the mouse. The cow eats the mouse. The cow is big. The cow is blue. The lion is blue. The mouse eats the lion. The mouse is rough. The mouse visits the lion. If something visits the cat then it visits the cow. If the cow needs the cat then the cat is big. If something is cold and it visits the cow then it eats the lion. If something is rough and young then it eats the mouse. If something is young and cold then it visits the mouse. If something is cold and it needs the mouse then it is blue. If something eats the cow then it visits the cat. If the mouse visits the cow then the mouse is big. If something needs the mouse and it is blue then the mouse eats the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-805_Q5", "context": "The bear is not rough. The bear needs the rabbit. The bear sees the squirrel. The bear visits the rabbit. The bear visits the squirrel. The dog needs the bear. The dog visits the rabbit. The rabbit is cold. The rabbit is rough. The rabbit does not see the dog. The squirrel is red. The squirrel does not see the bear. The squirrel visits the bear. The squirrel does not visit the rabbit. If the bear visits the dog then the dog is not cold. If the rabbit visits the squirrel and the squirrel sees the dog then the squirrel needs the bear. If something needs the squirrel then it visits the dog. If something sees the bear and it is rough then the bear visits the squirrel. If something visits the dog then the dog visits the squirrel. If something visits the squirrel then it needs the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear visits the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-155_Q5", "context": "The bear eats the lion. The bear sees the dog. The dog sees the lion. The lion eats the dog. The lion sees the bear. The mouse does not like the dog. The mouse sees the dog. If something sees the mouse and the mouse likes the lion then the mouse eats the dog. If something sees the dog then the dog likes the mouse. If something likes the bear then it is big. If something eats the lion then the lion is round. If something likes the lion then it sees the mouse. If something eats the dog then the dog is round. If something sees the mouse then the mouse likes the bear. If something is rough then it likes the lion. If the lion sees the bear then the lion is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion likes the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1042_Q10", "context": "Charlie is big. Dave is nice. Dave is young. Fiona is red. Harry is nice. Harry is quiet. Harry is red. All kind, red things are nice. If Dave is nice then Dave is big. All rough things are quiet. All red things are quiet. Quiet things are kind. Young, quiet things are red. If something is big then it is red. If something is nice and big then it is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-931_Q5", "context": "The bear needs the tiger. The bear visits the lion. The bear visits the tiger. The lion chases the tiger. The lion is rough. The squirrel visits the bear. The tiger chases the squirrel. The tiger is big. The tiger is rough. The tiger visits the lion. If something visits the lion then it visits the tiger. If something is rough then it chases the lion. If something chases the lion and it needs the tiger then the tiger needs the squirrel. If something is rough and it chases the lion then it is cold. Big, young things are kind. If something chases the bear then the bear chases the squirrel. If something is rough then it needs the bear. If something chases the tiger and the tiger is kind then it visits the squirrel. Cold things are young.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1150_Q6", "context": "Anne is big. Anne is furry. Anne is kind. Anne is red. Anne is round. Bob is big. Charlie is big. Charlie is blue. Charlie is kind. Charlie is red. Charlie is round. Fiona is big. Fiona is furry. Fiona is red. All white things are furry. White things are furry. If Anne is white and Anne is kind then Anne is blue. If Fiona is blue then Fiona is big. Round things are big. Blue things are red. All white, red things are kind. If something is furry and big then it is blue. If something is big then it is white.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-75_Q7", "context": "The bear chases the lion. The bear is young. The cow needs the tiger. The lion needs the bear. The tiger needs the bear. The tiger needs the cow. The tiger needs the lion. If something needs the bear and the bear needs the tiger then it needs the lion. If something is young then it needs the tiger. If something chases the lion then it needs the bear. If something is green and it chases the lion then the lion is green. If the lion is cold then the lion chases the cow. If something is young and it needs the lion then the lion is cold. If something is round then it needs the tiger. If something chases the cow then it needs the tiger. If something is red and it sees the bear then it chases the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1214_Q3", "context": "Bob is blue. Bob is nice. Bob is rough. Bob is smart. Dave is blue. Fiona is furry. Fiona is nice. Fiona is smart. Fiona is young. Harry is furry. Harry is rough. All young, smart things are furry. If something is rough and round then it is blue. Young, blue things are smart. If Harry is nice and Harry is rough then Harry is round. All blue, nice things are young. All young, rough things are furry. If something is rough and furry then it is nice. If something is furry and nice then it is round. If Dave is young and Dave is furry then Dave is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-343_Q13", "context": "The bald eagle is rough. The bald eagle is young. The bald eagle visits the cat. The bald eagle visits the lion. The cat eats the bald eagle. The cat is blue. The cat is red. The cat visits the bald eagle. The cat visits the cow. The cow is red. The lion eats the cow. If something eats the cow then it visits the lion. If something visits the cow then it likes the cat. If something likes the cat then it is blue. If something visits the lion and it eats the cat then the lion is blue. If something is blue then it eats the cat. If something likes the lion and it is round then it visits the cat. If the cat likes the lion then the lion likes the bald eagle. If something visits the lion and the lion is blue then it likes the lion. If something visits the cow and it eats the cat then it visits the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not eat the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-474_Q10", "context": "Bob is blue. Bob is not white. Charlie is blue. Dave is furry. Dave is not smart. Dave is white. Harry is furry. Blue things are smart. If Harry is furry and Harry is smart then Harry is green. If Harry is green then Harry is young. If Harry is green and Harry is young then Harry is not quiet. If Harry is furry then Harry is blue. If something is smart and not young then it is not quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-699_Q7", "context": "The dog eats the squirrel. The dog likes the rabbit. The dog likes the tiger. The dog sees the squirrel. The dog sees the tiger. The rabbit is kind. The rabbit sees the squirrel. The squirrel eats the rabbit. The tiger eats the dog. The tiger sees the dog. If something likes the rabbit and the rabbit is rough then it eats the tiger. If something eats the tiger then the tiger is kind. If the tiger is rough then the tiger does not like the dog. If something is rough and not round then it sees the rabbit. All kind things are rough. If something eats the rabbit then the rabbit is nice. If something is rough then it eats the squirrel. If something likes the rabbit and the rabbit sees the tiger then the tiger sees the dog. If something eats the tiger then the tiger likes the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-218_Q11", "context": "The bald eagle chases the rabbit. The bald eagle eats the rabbit. The bald eagle eats the tiger. The bald eagle is red. The bald eagle needs the tiger. The bear chases the bald eagle. The bear is red. The bear needs the tiger. The rabbit chases the bald eagle. The rabbit chases the tiger. The rabbit eats the bald eagle. The rabbit is red. The tiger eats the rabbit. The tiger is round. If something chases the rabbit and the rabbit is kind then the rabbit needs the bear. If something is rough then it is kind. If something eats the bald eagle and the bald eagle needs the rabbit then the rabbit is kind. If something chases the rabbit and the rabbit chases the tiger then it is rough. If something eats the rabbit then it is young. If something is kind then it needs the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit needs the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-952_Q19", "context": "Charlie is blue. Charlie is white. Fiona is quiet. Gary is furry. Gary is nice. Gary is not quiet. Gary is round. Harry is not furry. Harry is nice. Harry is not quiet. If someone is white then they are not furry. Quiet, nice people are blue. White, red people are nice. White, nice people are quiet. If someone is blue and not furry then they are quiet. All red people are round. If someone is quiet and not furry then they are round. If someone is round and not furry then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-526_Q17", "context": "The bald eagle eats the dog. The bald eagle likes the bear. The bald eagle sees the bear. The bear eats the dog. The bear is rough. The bear is round. The bear likes the rabbit. The dog is not big. The dog likes the rabbit. The rabbit sees the dog. If someone eats the bear and the bear is rough then they eat the rabbit. If the rabbit does not like the dog then the dog is not round. If the dog sees the rabbit and the dog likes the rabbit then the dog eats the bald eagle. If someone is rough and they see the bald eagle then the bald eagle eats the bear. If someone eats the rabbit then they see the bald eagle. If someone eats the bald eagle and they are not kind then the bald eagle does not like the dog. If someone sees the bear then the bear eats the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not eat the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1306_Q5", "context": "Dave is red. Dave is rough. Dave is smart. Erin is rough. Fiona is green. Gary is cold. Gary is green. Gary is red. Gary is rough. Gary is smart. Gary is white. Gary is young. If someone is white and green then they are cold. All rough people are red. Red, young people are green. If someone is cold and red then they are white. Red, rough people are young. If someone is green and young then they are white. All white people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-301_Q16", "context": "The dog eats the lion. The dog eats the squirrel. The dog is not green. The dog is not kind. The dog likes the lion. The dog likes the tiger. The lion does not eat the squirrel. The lion is nice. The lion likes the tiger. The squirrel eats the lion. The squirrel eats the tiger. The squirrel is cold. The tiger chases the squirrel. The tiger likes the dog. If something eats the tiger then it is round. If something likes the lion and it likes the squirrel then it does not eat the tiger. If the squirrel chases the lion then the lion does not like the dog. If something chases the dog then it eats the dog. If something is kind then it chases the lion. If something likes the squirrel then it is kind. If something is round then it likes the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1067_Q5", "context": "Charlie is furry. Charlie is green. Fiona is big. Fiona is cold. Fiona is green. Gary is furry. Gary is green. Gary is young. Harry is big. Harry is green. Harry is white. Harry is young. All big people are white. If Fiona is furry then Fiona is green. If someone is white and cold then they are nice. All nice, white people are young. If someone is furry then they are young. If Gary is green then Gary is nice. White, furry people are nice. Young people are big. If someone is young and nice then they are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1203_Q12", "context": "Bob is kind. Bob is young. Dave is blue. Dave is round. Erin is young. Harry is blue. Harry is green. If something is young then it is green. All green, rough things are round. If Dave is white and Dave is green then Dave is kind. Green things are blue. If something is blue and young then it is kind. If Erin is young and Erin is kind then Erin is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-313_Q19", "context": "Charlie is quiet. Dave is blue. Dave is kind. Erin is not young. Fiona is green. Fiona is round. Fiona is young. If someone is quiet then they are round. Round, blue people are kind. All green, young people are kind. All green people are smart. If someone is kind then they are smart. Smart, young people are blue. If someone is quiet and round then they are blue. Round, smart people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-121_Q3", "context": "The bald eagle chases the lion. The bald eagle does not like the lion. The cow chases the bald eagle. The cow does not chase the lion. The cow sees the bald eagle. The cow sees the dog. The cow sees the lion. The dog sees the cow. The dog does not see the lion. The lion chases the cow. The lion is green. If something sees the lion then it is young. If something is red then it chases the lion. If something chases the dog then it does not like the dog. If something chases the cow then it is not round. If something sees the lion and the lion is not round then the lion likes the dog. If something is round then it likes the cow. If something likes the lion and the lion is round then it likes the cow. If something likes the dog then the dog is big. If the dog is big then the dog is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-725_Q18", "context": "The cat is red. The cat likes the lion. The cat does not need the rabbit. The cat sees the rabbit. The dog likes the rabbit. The lion is blue. The lion is not young. The rabbit is not nice. The rabbit likes the dog. The rabbit does not like the lion. If the rabbit sees the cat then the cat does not like the dog. If something sees the cat then the cat is not blue. If something is young and it sees the rabbit then it does not see the cat. If something is blue then it sees the cat. If something is rough and it likes the lion then the lion does not need the cat. If something sees the cat then it needs the dog. If something sees the lion and the lion likes the rabbit then it sees the rabbit. If something needs the dog then the dog is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion sees the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-306_Q2", "context": "Anne is not big. Anne is cold. Anne is red. Dave is green. Dave is rough. Erin is green. Erin is kind. Erin is rough. Fiona is green. Fiona is not nice. If Erin is cold then Erin is rough. If something is rough then it is nice. All green, big things are kind. If Dave is kind then Dave is cold. If something is green and not rough then it is big. All nice, rough things are big. If Dave is cold and Dave is nice then Dave is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1210_Q3", "context": "Anne is furry. Anne is round. Anne is white. Anne is young. Charlie is big. Charlie is red. Charlie is rough. Charlie is white. Fiona is round. Harry is furry. Round people are big. Rough, round people are white. If Charlie is furry and Charlie is red then Charlie is white. If Charlie is young and Charlie is white then Charlie is furry. All big people are red. Big, red people are rough. White people are furry. If someone is young then they are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-542_Q8", "context": "The cat eats the lion. The cat is big. The cat is not green. The cat is kind. The cat needs the squirrel. The lion likes the cat. The squirrel eats the cat. The squirrel does not eat the lion. The tiger eats the cat. The tiger eats the lion. The tiger is not green. The tiger does not like the squirrel. The tiger needs the cat. The tiger needs the lion. If the tiger needs the squirrel and the squirrel needs the cat then the cat likes the tiger. If the lion likes the tiger then the lion eats the tiger. If something eats the lion then it is kind. If something is cold and it likes the cat then it eats the squirrel. If something is green and it eats the squirrel then it is nice. If something needs the tiger then it eats the lion. If something is kind then it is cold. If something eats the tiger and it is green then the tiger is not big. If something likes the cat then it needs the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-707_Q9", "context": "The bear is rough. The bear needs the cow. The bear needs the tiger. The bear sees the dog. The cow is cold. The cow is green. The cow needs the tiger. The cow sees the dog. The dog is cold. The dog sees the tiger. The tiger eats the bear. The tiger is cold. The tiger needs the bear. The tiger sees the cow. If something eats the tiger then the tiger is young. If something is cold and it needs the tiger then it eats the dog. If the tiger sees the cow then the tiger eats the cow. If something needs the bear and the bear sees the dog then the dog is green. If something needs the dog then the dog needs the tiger. If something eats the dog then it needs the dog. If something sees the tiger then the tiger is cold. If something eats the cow then it is cold. If something needs the cow and the cow needs the bear then the bear needs the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog eats the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-168_Q8", "context": "The bald eagle eats the cow. The bald eagle visits the cat. The bald eagle visits the mouse. The cat eats the mouse. The cat sees the cow. The cow eats the cat. The cow eats the mouse. The cow is cold. The cow is kind. The cow sees the bald eagle. The cow sees the cat. The cow visits the bald eagle. The mouse eats the cow. The mouse is blue. The mouse sees the bald eagle. The mouse visits the bald eagle. If something is cold then it visits the bald eagle. If something visits the cow then it is cold. If something visits the bald eagle then it eats the bald eagle. If something visits the cat and it is blue then the cat visits the cow. If the bald eagle visits the mouse then the bald eagle sees the mouse. If something sees the mouse and it visits the mouse then the mouse visits the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not visit the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-652_Q2", "context": "The bald eagle is nice. The bald eagle visits the bear. The bald eagle visits the rabbit. The bear eats the bald eagle. The bear eats the mouse. The bear is round. The mouse chases the bear. The mouse eats the bald eagle. The mouse is cold. The mouse visits the bald eagle. The mouse visits the bear. The rabbit eats the bald eagle. The rabbit is green. The rabbit visits the bald eagle. If the bear is round then the bear chases the mouse. If the mouse is kind then the mouse is nice. If someone visits the bald eagle then they are cold. All cold people are green. If someone eats the rabbit and the rabbit is kind then the rabbit is green. If the bear is green then the bear visits the mouse. If someone is kind then they eat the bear. If the rabbit is green and the rabbit is round then the rabbit eats the mouse. If someone chases the mouse then they visit the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-170_Q12", "context": "The bald eagle is kind. The bald eagle does not need the cat. The bald eagle needs the lion. The bald eagle sees the cat. The cat does not eat the bald eagle. The cat eats the lion. The cat is not cold. The lion eats the cat. The lion does not need the bald eagle. The lion sees the cat. The rabbit is kind. If someone eats the rabbit then the rabbit sees the cat. If the bald eagle eats the lion and the lion is green then the bald eagle does not see the cat. If someone needs the rabbit then the rabbit eats the lion. If someone sees the rabbit and they are not green then the rabbit sees the lion. If someone is cold and they need the lion then the lion eats the bald eagle. If someone eats the rabbit and the rabbit sees the cat then the cat eats the rabbit. Kind people are cold. If someone eats the bald eagle then they eat the rabbit. If someone eats the lion and they eat the rabbit then the lion is not kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not eat the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-647_Q13", "context": "The cat chases the dog. The cat eats the cow. The cat eats the dog. The cat sees the mouse. The cow is rough. The cow sees the cat. The dog chases the cow. The mouse eats the dog. The mouse is big. The mouse is round. The mouse sees the cow. If something chases the dog and the dog is young then the dog eats the cow. All big things are young. If something chases the cow then the cow sees the mouse. If something is young then it chases the cat. If something eats the dog and it is kind then it sees the mouse. If something eats the cat then the cat is young. If the cat sees the cow then the cow is big. If something chases the cat and the cat chases the dog then the cat sees the cow. If something chases the cow and it chases the cat then it is young.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not see the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-675_Q12", "context": "The cat eats the dog. The cat is rough. The cat visits the dog. The dog is green. The dog sees the cat. The dog sees the squirrel. The mouse eats the dog. The mouse sees the cat. The mouse visits the dog. The squirrel is round. The squirrel visits the mouse. If someone sees the mouse and the mouse is rough then the mouse visits the dog. If someone visits the squirrel then they eat the squirrel. If someone visits the cat then the cat is green. If someone is green and they eat the squirrel then the squirrel visits the cat. If someone is green then they visit the squirrel. If someone sees the mouse then the mouse eats the cat. If someone sees the squirrel then they are young.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not visit the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-608_Q4", "context": "The cat chases the mouse. The cat chases the rabbit. The cat is cold. The cat is rough. The cat likes the mouse. The cat likes the rabbit. The cat likes the squirrel. The mouse is young. The rabbit is round. The rabbit likes the mouse. The squirrel chases the rabbit. The squirrel is round. The squirrel is young. The squirrel needs the cat. If someone likes the mouse then they chase the rabbit. If someone likes the mouse then they chase the squirrel. If the mouse likes the squirrel then the mouse likes the rabbit. If someone is big and they like the mouse then the mouse chases the rabbit. All young, rough people are big. If someone is big then they chase the cat. If someone chases the mouse then they are young. If someone chases the rabbit then they like the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not chase the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-511_Q6", "context": "Bob is quiet. Bob is red. Bob is rough. Charlie is cold. Charlie is quiet. Dave is quiet. Harry is cold. All quiet, cold things are furry. If something is cold then it is white. If Harry is furry and Harry is white then Harry is red. If Dave is blue then Dave is furry. If something is red then it is rough. If something is white then it is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-612_Q12", "context": "Dave is young. Erin is smart. Fiona is not green. Fiona is not round. Fiona is smart. Fiona is not white. Gary is not blue. All young people are white. All white, young people are not blue. If someone is young and not blue then they are not quiet. Green people are smart. If someone is white and not quiet then they are green. If someone is smart and white then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-164_Q4", "context": "The bald eagle is blue. The bald eagle does not see the mouse. The bald eagle sees the rabbit. The bald eagle does not visit the rabbit. The cow is young. The cow sees the mouse. The cow sees the rabbit. The mouse does not chase the cow. The mouse is blue. The rabbit is blue. The rabbit sees the cow. If someone is cold and they chase the bald eagle then the bald eagle sees the mouse. If someone chases the cow then they chase the bald eagle. If someone chases the rabbit then they do not visit the bald eagle. If someone chases the bald eagle and the bald eagle sees the rabbit then the bald eagle sees the cow. If the mouse is cold then the mouse sees the rabbit. If someone sees the rabbit and the rabbit chases the mouse then the rabbit does not visit the cow. If someone sees the bald eagle then they are not green. If someone sees the rabbit and they are young then they do not visit the rabbit. If someone sees the cow and the cow sees the mouse then they chase the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow visits the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-613_Q14", "context": "The bald eagle is not rough. The bald eagle sees the bear. The bald eagle sees the cat. The bear does not eat the lion. The bear is not rough. The bear sees the bald eagle. The cat eats the bear. The cat is green. The cat is kind. The cat is rough. The cat visits the bald eagle. The cat visits the lion. The lion eats the bald eagle. The lion is not green. The lion does not see the bald eagle. The lion visits the cat. If someone sees the bear then they visit the bald eagle. If someone visits the cat then they visit the bald eagle. If someone sees the lion and they visit the bear then the lion sees the bear. If someone eats the bald eagle and they visit the bear then the bald eagle sees the lion. If someone is kind then they do not eat the bald eagle. If someone visits the bald eagle then they visit the bear. If someone sees the bear then they eat the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear visits the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-185_Q2", "context": "Anne is green. Anne is not smart. Anne is white. Dave is cold. Dave is not green. Dave is nice. Dave is red. Dave is not smart. Erin is rough. Fiona is cold. Fiona is nice. Fiona is not red. Fiona is not rough. Fiona is white. All red things are nice. All rough things are nice. All green, cold things are white. If something is rough and not nice then it is white. White things are not smart. Rough, green things are cold. All white things are green. If something is nice and rough then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-676_Q7", "context": "Anne is kind. Charlie is white. Dave is blue. Dave is kind. Dave is white. Erin is kind. Erin is young. Young, kind people are big. If someone is kind then they are blue. If someone is kind and big then they are young. If someone is blue and kind then they are big. If someone is white and blue then they are cold. Big people are smart. All white, blue people are smart. All young, smart people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-235_Q1", "context": "Anne is red. Anne is round. Dave is red. Erin is cold. Erin is quiet. Erin is rough. Erin is smart. Harry is big. Harry is cold. Harry is red. Harry is round. Harry is smart. All cold, quiet things are big. Smart, cold things are rough. If something is quiet then it is cold. If something is big and cold then it is smart. If Erin is rough then Erin is cold. All round things are quiet. If something is big and red then it is smart. Big things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-365_Q15", "context": "Bob is nice. Bob is smart. Bob is white. Bob is young. Charlie is furry. Charlie is smart. Dave is blue. Dave is smart. Dave is white. Gary is not furry. If Gary is not smart then Gary is not young. If Charlie is smart then Charlie is not blue. If someone is round then they are nice. If someone is furry and not blue then they are round. If Charlie is nice then Charlie is round. If someone is furry and nice then they are young. If Bob is young and Bob is nice then Bob is not round. If someone is smart and young then they are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-562_Q11", "context": "The bald eagle is not kind. The bald eagle is nice. The bald eagle sees the dog. The cat is green. The cat sees the bald eagle. The cat does not see the mouse. The dog chases the bald eagle. The dog is not kind. The dog is nice. The dog does not see the cat. The dog does not see the mouse. The mouse chases the dog. The mouse needs the bald eagle. The mouse sees the dog. If someone is nice then they are not cold. Nice people are rough. If someone chases the bald eagle and they chase the dog then the bald eagle does not need the dog. If someone is rough then they chase the cat. If someone is rough then they need the cat. If the dog needs the cat then the cat is nice. If someone chases the cat and they are not green then they need the mouse. If someone sees the cat then the cat needs the mouse. If someone sees the mouse then the mouse needs the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat chases the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1012_Q13", "context": "Bob is nice. Bob is rough. Dave is big. Dave is furry. Dave is green. Dave is not nice. Dave is not red. Dave is rough. Dave is white. Fiona is big. Fiona is not nice. Fiona is rough. Gary is nice. Gary is red. All red, green things are furry. Big things are rough. If Fiona is furry then Fiona is not rough. All furry things are big. If something is nice then it is big. Nice, rough things are green. Furry things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-411_Q4", "context": "Bob is big. Charlie is big. Charlie is green. Erin is not big. Erin is blue. Erin is cold. Erin is green. Erin is red. Harry is big. Harry is rough. If something is blue and green then it is kind. If something is green then it is cold. All red things are rough. All cold things are blue. If something is kind and big then it is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-346_Q20", "context": "The bald eagle likes the dog. The bald eagle visits the tiger. The dog does not like the tiger. The dog does not see the bald eagle. The lion is nice. The lion is rough. The lion likes the bald eagle. The lion likes the dog. The tiger is red. The tiger is round. The tiger likes the dog. If something visits the bald eagle and it does not see the lion then it likes the dog. If something likes the bald eagle then it is not round. If something sees the lion then it is nice. If something sees the tiger and the tiger visits the bald eagle then the bald eagle visits the dog. If something sees the bald eagle then the bald eagle visits the dog. If something visits the dog then it sees the tiger. If the lion is not round then the lion sees the bald eagle. If something sees the tiger then the tiger likes the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-98_Q18", "context": "The bald eagle is green. The bald eagle likes the cow. The bald eagle needs the mouse. The cat is green. The cat needs the bald eagle. The cat needs the mouse. The cow eats the cat. The cow eats the mouse. The cow is cold. The cow is green. The cow is nice. The cow likes the cat. The mouse eats the bald eagle. The mouse likes the cow. The mouse needs the bald eagle. The mouse needs the cat. If someone needs the bald eagle then the bald eagle needs the cow. If someone needs the cat and they eat the bald eagle then they are nice. If someone needs the mouse and the mouse is nice then they are red. If someone needs the bald eagle and the bald eagle is cold then they eat the cow. If someone eats the cow then they eat the bald eagle. If someone likes the bald eagle and they are green then the bald eagle eats the mouse. If someone needs the bald eagle and they like the cow then the bald eagle is green. All red people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle eats the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1086_Q18", "context": "Anne is red. Charlie is green. Dave is green. Dave is white. Gary is green. Gary is quiet. Gary is not rough. Red things are white. White things are rough. If something is red then it is quiet. If something is nice then it is blue. If something is white and green then it is blue. All blue things are green. If Anne is rough then Anne is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-320_Q4", "context": "Anne is white. Bob is furry. Bob is nice. Bob is white. Fiona is furry. Fiona is kind. Fiona is nice. Harry is furry. Harry is nice. Harry is white. If someone is big then they are kind. If Anne is furry and Anne is big then Anne is nice. All nice, big people are blue. All blue people are cold. All kind, white people are cold. If Harry is white then Harry is big. If Anne is cold then Anne is big. If someone is white then they are big. If someone is kind then they are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1008_Q6", "context": "Anne is not nice. Charlie is kind. Fiona is furry. Fiona is nice. Harry is not furry. Harry is nice. Harry is not white. All white, green things are smart. If Fiona is nice then Fiona is white. If something is smart and white then it is quiet. If something is furry and white then it is green. All white things are green. If something is green then it is furry. All quiet things are not kind. Green, quiet things are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-482_Q1", "context": "The bald eagle is round. The bald eagle is young. The bear eats the bald eagle. The bear is blue. The bear likes the cat. The cat does not eat the bald eagle. The cat is round. The cat is young. The cat likes the rabbit. The rabbit is green. The rabbit does not like the bald eagle. The rabbit does not visit the bald eagle. If someone likes the rabbit and they eat the bear then the bear likes the bald eagle. If the cat is young and the cat visits the bald eagle then the cat likes the rabbit. If someone likes the rabbit then they eat the bear. If someone likes the bald eagle then the bald eagle visits the bear. If someone likes the bald eagle and the bald eagle is not round then they visit the bear. If someone visits the bear and the bear likes the bald eagle then the bald eagle likes the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1285_Q10", "context": "Bob is blue. Bob is cold. Bob is quiet. Bob is red. Bob is smart. Bob is young. Fiona is blue. Fiona is red. Fiona is smart. Fiona is young. Gary is young. Harry is red. Red, cold people are blue. If someone is quiet then they are furry. If someone is red and smart then they are young. All cold, young people are quiet. If someone is quiet and smart then they are furry. All young, furry people are cold. All quiet, young people are red. All quiet people are red. If someone is young then they are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-960_Q17", "context": "The bald eagle is red. The bald eagle is not round. The cow is red. The cow likes the bald eagle. The cow likes the rabbit. The cow does not like the squirrel. The cow needs the bald eagle. The cow visits the rabbit. The rabbit is green. The rabbit is red. The rabbit likes the squirrel. The rabbit does not need the cow. The rabbit needs the squirrel. The squirrel likes the cow. The squirrel likes the rabbit. The squirrel does not need the cow. If something needs the bald eagle and the bald eagle likes the cow then the bald eagle is cold. If the cow visits the squirrel then the squirrel does not visit the rabbit. If something needs the rabbit and it is round then it visits the bald eagle. If something is red then it visits the bald eagle. If something likes the rabbit then it likes the cow. If something visits the bald eagle and it is not round then it likes the rabbit. If the rabbit needs the squirrel then the squirrel likes the rabbit. If something is cold and it likes the cow then it visits the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not visit the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-746_Q12", "context": "The cow is not big. The cow is nice. The cow visits the mouse. The mouse is nice. The squirrel sees the mouse. The tiger is rough. The tiger sees the cow. If something is green then it visits the tiger. If the tiger sees the cow and the cow needs the mouse then the mouse does not need the tiger. If something sees the mouse then it is round. If something sees the mouse then it is green. If something visits the tiger then the tiger sees the mouse. If something visits the mouse then the mouse is not rough. Green things are nice. If something visits the tiger and it is not green then the tiger is not round.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1169_Q7", "context": "Charlie is round. Dave is blue. Dave is furry. Dave is not nice. Dave is round. Erin is blue. Harry is furry. All nice people are furry. If Charlie is blue then Charlie is rough. If someone is quiet and green then they are rough. All nice people are rough. Green, furry people are not quiet. All rough people are green. All blue, green people are nice. Round people are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-704_Q12", "context": "The bald eagle chases the bear. The bald eagle is blue. The bald eagle is not cold. The bald eagle is green. The bear chases the squirrel. The bear likes the bald eagle. The bear likes the mouse. The mouse is blue. The mouse is young. The squirrel is rough. If the bald eagle chases the mouse then the mouse eats the bald eagle. If something chases the bald eagle and it is blue then the bald eagle chases the mouse. If something eats the bald eagle and it is young then it is green. If something likes the squirrel then it chases the bald eagle. If something is young then it likes the squirrel. If something likes the bear then it does not eat the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-709_Q23", "context": "The bald eagle is green. The bald eagle sees the tiger. The cat is cold. The cat sees the tiger. The squirrel is kind. The squirrel does not visit the tiger. The tiger is kind. The tiger sees the bald eagle. The tiger sees the cat. The tiger visits the bald eagle. If the cat sees the tiger and the tiger sees the bald eagle then the bald eagle chases the squirrel. If something chases the cat then the cat sees the squirrel. If something chases the tiger then the tiger visits the cat. If something chases the squirrel then it chases the tiger. If the cat chases the squirrel and the squirrel visits the bald eagle then the cat chases the bald eagle. If something visits the cat then it visits the squirrel. If the tiger visits the squirrel then the tiger is cold. If the squirrel visits the bald eagle then the bald eagle sees the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not see the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-308_Q14", "context": "The bald eagle eats the cow. The bear eats the bald eagle. The bear is cold. The bear is red. The cow eats the bald eagle. The dog chases the bear. The dog eats the bald eagle. If something eats the dog then the dog chases the bald eagle. If something is cold then it sees the bear. If something chases the dog and it eats the dog then the dog is nice. If something chases the cow then it is big. If something sees the bear then the bear chases the bald eagle. If something chases the dog then it chases the cow. If something chases the bald eagle then it chases the dog. If something eats the bald eagle then the bald eagle sees the bear. If something sees the dog then it chases the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow chases the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-747_Q11", "context": "The bear eats the cow. The bear is green. The bear needs the cow. The bear needs the squirrel. The cow eats the tiger. The cow is round. The squirrel eats the cow. The tiger chases the bear. The tiger eats the cow. The tiger is round. The tiger needs the squirrel. If someone eats the tiger then they need the tiger. If someone is rough then they eat the tiger. If someone chases the bear then the bear is round. If someone is rough and blue then they chase the squirrel. If someone needs the tiger and the tiger needs the squirrel then they are blue. If the squirrel is young then the squirrel eats the bear. If someone eats the cow then the cow eats the tiger. If the bear is green and the bear eats the cow then the bear is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear chases the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-410_Q14", "context": "The dog chases the squirrel. The dog is rough. The dog does not like the rabbit. The mouse is nice. The mouse does not need the squirrel. The rabbit does not chase the mouse. The rabbit is not rough. The rabbit needs the mouse. The rabbit needs the squirrel. The squirrel does not chase the rabbit. The squirrel is blue. The squirrel is rough. The squirrel likes the dog. The squirrel needs the mouse. If something chases the dog and it needs the mouse then the dog is blue. All blue things are round. If something is round then it chases the dog. If the squirrel needs the dog then the dog does not chase the mouse. If something is blue then it chases the squirrel. If something chases the rabbit and it chases the mouse then the rabbit is round. If the squirrel is round and the squirrel needs the rabbit then the squirrel is nice. If the squirrel needs the dog then the dog is nice. If something likes the rabbit and it is not nice then the rabbit needs the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit needs the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-163_Q10", "context": "The bald eagle eats the mouse. The bald eagle likes the lion. The bald eagle sees the mouse. The lion eats the mouse. The lion likes the mouse. The lion likes the tiger. The mouse eats the tiger. The mouse likes the bald eagle. The mouse likes the tiger. The tiger is rough. The tiger likes the lion. If something is blue and it likes the bald eagle then it is young. If something sees the bald eagle and it likes the tiger then the bald eagle is blue. If something likes the lion and it sees the bald eagle then the lion is rough. If something eats the mouse and it sees the bald eagle then the mouse eats the tiger. If something is blue then it sees the bald eagle. If something is rough and it eats the mouse then it is blue. If something likes the tiger then it is green. If the bald eagle is green and the bald eagle likes the lion then the bald eagle sees the lion. If something sees the mouse then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-426_Q8", "context": "The bald eagle is red. The bear chases the bald eagle. The bear eats the bald eagle. The bear eats the cat. The bear is cold. The bear is round. The cat chases the bald eagle. The cat is not round. The squirrel eats the bald eagle. The squirrel eats the cat. The squirrel is red. If something needs the bear then it chases the bald eagle. If the bear eats the cat and the cat needs the squirrel then the bear does not chase the bald eagle. If something eats the bald eagle and it chases the squirrel then the squirrel needs the cat. If something chases the bald eagle then it is cold. If something eats the cat then it chases the squirrel. If the bear chases the squirrel then the squirrel is blue. If something chases the cat then the cat chases the bear. If something is round and it does not eat the cat then it is not red. If something needs the cat then it needs the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not need the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-608_Q5", "context": "The cat chases the mouse. The cat chases the rabbit. The cat is cold. The cat is rough. The cat likes the mouse. The cat likes the rabbit. The cat likes the squirrel. The mouse is young. The rabbit is round. The rabbit likes the mouse. The squirrel chases the rabbit. The squirrel is round. The squirrel is young. The squirrel needs the cat. If someone likes the mouse then they chase the rabbit. If someone likes the mouse then they chase the squirrel. If the mouse likes the squirrel then the mouse likes the rabbit. If someone is big and they like the mouse then the mouse chases the rabbit. All young, rough people are big. If someone is big then they chase the cat. If someone chases the mouse then they are young. If someone chases the rabbit then they like the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-371_Q2", "context": "Anne is red. Anne is round. Charlie is not big. Charlie is kind. Erin is round. Gary is kind. Gary is round. Furry, white things are round. If Gary is big and Gary is furry then Gary is nice. If something is kind then it is white. All white, kind things are furry. If something is nice and kind then it is red. All furry things are kind. All round, red things are kind. Round things are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-62_Q7", "context": "Anne is big. Anne is cold. Anne is kind. Anne is red. Anne is smart. Anne is white. Charlie is big. Charlie is white. Fiona is red. Harry is big. Harry is red. Harry is rough. If Harry is cold then Harry is smart. Red people are kind. All big people are smart. If someone is cold and smart then they are rough. If Fiona is rough and Fiona is kind then Fiona is white. All white, cold people are big. If someone is cold then they are smart. If someone is red then they are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-791_Q12", "context": "The bear is young. The bear likes the cow. The bear likes the rabbit. The bear visits the cow. The cow is blue. The cow likes the lion. The lion is blue. The rabbit eats the bear. The rabbit likes the bear. The rabbit likes the lion. If someone eats the cow then the cow visits the rabbit. If someone likes the bear then the bear visits the rabbit. If the bear visits the rabbit then the rabbit eats the cow. If someone visits the rabbit and the rabbit is round then they eat the rabbit. If someone visits the rabbit then they are rough. If someone is rough then they eat the rabbit. If the rabbit visits the lion and the rabbit is young then the lion visits the cow. If someone is young then they visit the cow. If someone eats the bear then the bear is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not eat the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-456_Q12", "context": "The bald eagle does not see the lion. The bear does not chase the bald eagle. The bear sees the bald eagle. The bear sees the lion. The lion is not blue. The tiger does not chase the bear. The tiger chases the lion. If the bear is green and the bear visits the lion then the lion does not visit the bald eagle. If someone sees the bald eagle and they are young then they see the bear. If someone is green and they see the bald eagle then the bald eagle is young. If someone sees the lion then they chase the tiger. If someone is young then they chase the tiger. If someone is young then they chase the lion. If someone is young then they see the bald eagle. If someone visits the bald eagle then they are green. If someone chases the tiger and they see the lion then they are green.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not see the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-697_Q5", "context": "Bob is green. Bob is red. Bob is not round. Bob is young. Dave is smart. Erin is not smart. Harry is cold. If someone is smart and green then they are young. If someone is smart then they are green. If Harry is cold then Harry is blue. All young, smart people are cold. Green, young people are cold. If Bob is smart then Bob is round. If someone is red then they are not blue. If someone is cold and green then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-14_Q10", "context": "Charlie is kind. Charlie is smart. Charlie is young. Dave is quiet. Dave is smart. Fiona is quiet. Fiona is young. Harry is furry. Harry is nice. Harry is round. Harry is smart. Furry, kind things are round. All smart things are nice. If Charlie is furry and Charlie is round then Charlie is smart. All nice things are furry. If something is nice and furry then it is kind. Quiet, furry things are smart. If something is kind then it is smart. Round, smart things are young. All smart, furry things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-407_Q3", "context": "The bald eagle eats the bear. The bald eagle does not like the bear. The bald eagle needs the bear. The bald eagle needs the tiger. The bear likes the tiger. The bear needs the bald eagle. The lion does not eat the tiger. The lion likes the bald eagle. The tiger is green. The tiger likes the bear. The tiger likes the lion. If something needs the bear then the bear needs the tiger. If something likes the tiger and it is round then the tiger needs the lion. If something is nice then it eats the bear. If something eats the bald eagle then the bald eagle is not big. If the lion is round and the lion needs the bald eagle then the lion eats the bald eagle. If something likes the tiger and the tiger needs the lion then the lion eats the bald eagle. If something needs the tiger then it is round. If something eats the bald eagle then it does not like the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear needs the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-6_Q17", "context": "The bear is blue. The bear is kind. The bear likes the cow. The bear likes the mouse. The bear needs the cow. The bear needs the mouse. The bear visits the squirrel. The cow likes the bear. The mouse likes the bear. The squirrel is kind. Cold people are nice. If someone visits the mouse and the mouse is blue then they are nice. If someone visits the mouse then they visit the cow. If someone is red and they need the cow then the cow is nice. If someone is cold and nice then they visit the bear. If someone likes the bear then the bear visits the mouse. If someone visits the cow then they are cold. If someone likes the bear and they like the cow then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1257_Q4", "context": "Anne is red. Bob is green. Bob is kind. Bob is nice. Bob is red. Bob is round. Gary is kind. Gary is nice. Gary is red. Harry is nice. Red things are round. If something is kind then it is rough. Round, kind things are red. If something is round and red then it is green. Kind things are nice. If Bob is kind and Bob is big then Bob is round. All red, round things are green. All green, round things are kind. If something is rough then it is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-530_Q4", "context": "Anne is green. Anne is kind. Bob is green. Bob is not round. Bob is not smart. Charlie is cold. Charlie is furry. Charlie is kind. Harry is green. Harry is smart. All round, smart things are red. Red, green things are smart. All kind things are round. All smart things are kind. Red things are cold. Kind, cold things are furry. If Charlie is not kind then Charlie is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-138_Q15", "context": "Anne is quiet. Charlie is not big. Charlie is rough. Gary is big. Gary is kind. Gary is nice. Gary is red. Gary is rough. Gary is round. Harry is round. All kind people are big. All nice people are kind. Quiet people are nice. If Anne is big then Anne is red. If someone is red then they are round. If Harry is kind and Harry is not nice then Harry is not round.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1177_Q2", "context": "Dave is cold. Dave is white. Erin is green. Erin is white. Gary is quiet. Gary is red. Harry is not kind. If something is cold then it is green. If something is kind then it is green. If something is kind then it is red. All white, quiet things are cold. All green things are not kind. If Harry is white then Harry is blue. Blue things are white. All red things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-514_Q11", "context": "The bald eagle eats the squirrel. The bald eagle is green. The bald eagle likes the dog. The bald eagle needs the rabbit. The dog is big. The dog is round. The dog needs the rabbit. The dog needs the squirrel. The rabbit likes the squirrel. The squirrel eats the bald eagle. The squirrel likes the bald eagle. The squirrel likes the rabbit. If someone is big then they eat the squirrel. If someone needs the rabbit then the rabbit likes the bald eagle. If someone is big and they like the bald eagle then the bald eagle is rough. If the bald eagle is round and the bald eagle eats the rabbit then the rabbit is blue. If someone is round and they eat the bald eagle then they eat the dog. If the dog eats the rabbit then the rabbit likes the squirrel. If someone eats the squirrel then they are green. If someone is green then they eat the rabbit. If someone likes the bald eagle then they are big.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit eats the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-377_Q21", "context": "The cow chases the tiger. The cow eats the lion. The cow does not eat the mouse. The cow is not young. The cow does not visit the tiger. The lion is big. The lion is kind. The mouse is round. The mouse is young. The tiger chases the cow. The tiger eats the cow. The tiger is kind. The tiger is young. The tiger visits the lion. If something visits the lion then it does not eat the mouse. If something is kind then it chases the tiger. If something chases the lion then the lion is round. If something chases the tiger then it visits the lion. If something visits the tiger and it is round then it is not young. If something eats the mouse then it visits the cow. If something visits the mouse then it does not eat the tiger. If something visits the mouse and the mouse eats the lion then the lion eats the cow. If something chases the tiger and it does not eat the mouse then it visits the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-932_Q19", "context": "The dog chases the rabbit. The dog is blue. The dog likes the tiger. The dog needs the lion. The dog needs the tiger. The lion chases the dog. The lion is big. The lion likes the dog. The lion likes the tiger. The rabbit chases the lion. The rabbit is big. The rabbit is rough. The tiger chases the dog. The tiger is round. The tiger likes the rabbit. The tiger needs the dog. If something chases the rabbit then it is blue. If something is blue and it needs the lion then it needs the tiger. If something chases the dog then the dog is big. If something likes the lion and it likes the dog then the dog is cold. If something chases the dog and it is blue then it is cold. If something chases the lion then the lion chases the rabbit. If something chases the dog then it needs the rabbit. If something chases the tiger and the tiger is blue then the tiger needs the dog. If something is cold and it likes the tiger then it likes the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not chase the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-724_Q10", "context": "The cow chases the mouse. The cow sees the mouse. The mouse is big. The mouse is nice. The mouse visits the cow. The mouse visits the squirrel. The squirrel is blue. The squirrel is nice. The squirrel sees the cow. The squirrel sees the mouse. The squirrel visits the mouse. The tiger is cold. If someone is big then they chase the cow. If someone sees the cow then the cow visits the squirrel. If the cow sees the squirrel then the cow visits the tiger. If someone sees the tiger then they chase the cow. All cold people are big. All nice people are blue. If someone visits the mouse then they are cold. If someone is big and they see the cow then the cow visits the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-997_Q6", "context": "The bald eagle is big. The bald eagle is not young. The bear eats the bald eagle. The bear is round. The bear needs the lion. The lion does not eat the bald eagle. The lion eats the mouse. The lion sees the mouse. The mouse is not round. The mouse is young. The mouse sees the bear. The mouse sees the lion. If something needs the mouse then the mouse is big. If something is round then it needs the lion. If the lion sees the bear and the bear needs the lion then the lion is round. If something is round then it does not see the mouse. If something is kind then it needs the mouse. If something sees the mouse then the mouse sees the lion. If something needs the lion and it does not need the bald eagle then the bald eagle needs the mouse. If something sees the bear and the bear sees the lion then the lion eats the bald eagle. Big things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not need the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1401_Q8", "context": "Bob is blue. Bob is rough. Dave is big. Dave is blue. Dave is nice. Dave is quiet. Dave is rough. Dave is round. Erin is round. Harry is big. Harry is nice. All round people are big. Rough people are green. If Dave is round then Dave is blue. If someone is green then they are round. If someone is rough and round then they are quiet. All blue, round people are green. All green, blue people are rough. Big people are blue. If Dave is green and Dave is nice then Dave is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-117_Q21", "context": "The cow is green. The cow is nice. The cow is red. The cow is round. The cow sees the tiger. The lion sees the tiger. The squirrel eats the cow. The squirrel is nice. The squirrel sees the tiger. The tiger chases the squirrel. If something sees the squirrel then it sees the cow. If something is nice then it sees the squirrel. If the squirrel chases the cow and the cow is round then the cow sees the squirrel. If something chases the cow and the cow sees the tiger then the tiger sees the lion. If something sees the cow then it chases the lion. If something sees the tiger then the tiger sees the lion. If something chases the lion then the lion sees the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-147_Q15", "context": "The cat chases the rabbit. The cat eats the rabbit. The cat eats the squirrel. The cat is nice. The mouse eats the cat. The mouse is kind. The rabbit chases the squirrel. The rabbit eats the cat. The rabbit does not eat the squirrel. The rabbit is green. The rabbit does not need the cat. The squirrel chases the rabbit. The squirrel eats the mouse. The squirrel is kind. If something needs the cat then it eats the mouse. If something chases the squirrel then it does not eat the mouse. If something needs the rabbit and it is red then the rabbit is red. If something needs the mouse then the mouse eats the rabbit. If the cat eats the mouse then the cat is red. If something needs the mouse and it needs the squirrel then the mouse needs the cat. If something eats the mouse and the mouse eats the rabbit then the mouse needs the cat. If the mouse needs the squirrel and the mouse eats the rabbit then the squirrel needs the mouse. If something eats the mouse then it needs the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not need the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-149_Q16", "context": "Bob is green. Bob is round. Dave is quiet. Dave is smart. Erin is cold. Erin is round. Fiona is cold. Fiona is green. Fiona is white. Fiona is young. All round, smart things are white. If Erin is quiet then Erin is white. If something is young and smart then it is cold. Young things are cold. Cold things are green. All green things are smart. If something is round and white then it is green. If something is white and green then it is young. If something is cold then it is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-746_Q16", "context": "Bob is nice. Bob is red. Charlie is nice. Erin is cold. Erin is not green. Erin is kind. Erin is nice. Erin is quiet. Fiona is kind. Fiona is red. Red, nice people are kind. All green, nice people are kind. Quiet, white people are kind. All red, cold people are kind. If Charlie is nice then Charlie is white. If someone is white then they are green. If Bob is kind and Bob is red then Bob is nice. Kind people are red. White, red people are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-553_Q24", "context": "The bald eagle eats the tiger. The bald eagle is red. The bald eagle is round. The dog eats the bald eagle. The dog likes the tiger. The squirrel is big. The squirrel is blue. The squirrel likes the dog. The squirrel sees the tiger. The tiger sees the squirrel. If something is kind then it eats the bald eagle. If something is red then it eats the bald eagle. If something is blue and kind then it likes the dog. If something eats the bald eagle then it sees the bald eagle. If something likes the tiger and it sees the bald eagle then the tiger is big. If something is big and it likes the tiger then the tiger sees the bald eagle. All red things are round. If something is big then it is red. If something eats the bald eagle then the bald eagle is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle eats the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-956_Q7", "context": "Bob is white. Charlie is cold. Charlie is nice. Erin is big. Erin is cold. Harry is big. Harry is rough. All white things are nice. All nice, big things are rough. If something is nice then it is rough. All big, rough things are blue. Red things are white. If something is big then it is red. If Charlie is nice then Charlie is cold. If Harry is rough then Harry is not cold. If something is red and not rough then it is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-408_Q2", "context": "The cow eats the dog. The cow eats the tiger. The cow is rough. The cow does not visit the dog. The cow visits the tiger. The dog eats the rabbit. The dog likes the cow. The rabbit eats the dog. The rabbit is red. The rabbit is round. The rabbit likes the tiger. The tiger eats the cow. The tiger visits the dog. The tiger visits the rabbit. If the cow eats the tiger and the tiger visits the dog then the cow is red. If something is red and it visits the tiger then the tiger is red. If something is red then it is rough. If something likes the cow then it is round. Rough things are big. If something visits the tiger and the tiger visits the cow then the tiger does not visit the rabbit. If something is red and big then it does not like the dog. If something eats the cow and it is not round then it likes the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not eat the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-760_Q18", "context": "Bob is nice. Dave is red. Erin is nice. Erin is quiet. Harry is big. Harry is green. Harry is nice. If something is quiet and red then it is big. If something is quiet then it is big. Big, red things are green. All red things are quiet. If something is blue and red then it is nice. Smart, quiet things are blue. All big, red things are smart. All quiet, blue things are red. If something is green and smart then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-533_Q7", "context": "Anne is big. Anne is rough. Dave is furry. Dave is kind. Dave is red. Dave is rough. Fiona is kind. Fiona is red. Gary is furry. Gary is red. If Dave is big then Dave is smart. Big, rough people are white. If Fiona is big and Fiona is furry then Fiona is rough. All rough, smart people are furry. All white people are red. If someone is smart then they are furry. Red, kind people are smart. All red people are kind. If Fiona is white then Fiona is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-769_Q1", "context": "Anne is red. Bob is kind. Bob is quiet. Charlie is not cold. Charlie is nice. Charlie is quiet. Fiona is kind. Kind things are cold. If something is blue then it is red. All quiet things are blue. Kind, nice things are blue. Cold things are nice. Red things are nice. If something is red then it is quiet. If Bob is green then Bob is not cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-68_Q8", "context": "The bear eats the cow. The bear sees the cow. The bear sees the squirrel. The cow is blue. The cow likes the squirrel. The cow sees the squirrel. The dog eats the cow. The dog is cold. The dog is kind. The dog sees the cow. The squirrel eats the cow. The squirrel likes the dog. The squirrel sees the bear. The squirrel sees the cow. If something sees the squirrel then it eats the dog. If something sees the bear then the bear is rough. If the cow likes the dog then the cow sees the dog. If something likes the bear then the bear is kind. If the cow eats the bear then the bear sees the cow. If something is kind then it eats the bear. Blue things are kind. If something likes the bear and it eats the bear then it eats the dog. If something eats the bear and the bear eats the cow then it likes the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not eat the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1153_Q6", "context": "Dave is young. Erin is green. Erin is red. Erin is white. Fiona is not furry. Fiona is green. Gary is not green. If someone is young then they are furry. If someone is white and furry then they are nice. If someone is young and green then they are red. If Dave is nice then Dave is cold. If someone is furry then they are green. All furry, nice people are green. If someone is nice and not furry then they are green. If someone is green and furry then they are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-621_Q14", "context": "Anne is cold. Erin is furry. Erin is quiet. Gary is quiet. Gary is rough. Harry is furry. Harry is rough. Rough, red people are smart. All cold, rough people are round. If someone is rough then they are red. Quiet, round people are cold. Cold people are round. All red, round people are rough. Quiet, furry people are rough. If someone is smart then they are round. If someone is round then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-845_Q10", "context": "Anne is blue. Anne is red. Bob is green. Bob is quiet. Bob is red. Gary is blue. Gary is quiet. Gary is red. Gary is smart. Harry is furry. Harry is smart. If something is red then it is green. All green, kind things are furry. Kind, quiet things are green. Green things are blue. Smart things are kind. If something is kind then it is red. If something is blue then it is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-471_Q17", "context": "Charlie is smart. Dave is cold. Dave is smart. Erin is cold. Erin is smart. Erin is white. Fiona is cold. If someone is kind and nice then they are round. All red people are white. Cold, kind people are nice. All red, white people are cold. All nice people are kind. All smart, kind people are red. Smart people are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1152_Q14", "context": "Anne is cold. Anne is green. Anne is kind. Charlie is cold. Charlie is kind. Charlie is rough. Charlie is smart. Fiona is blue. Fiona is kind. Fiona is smart. Harry is blue. Harry is kind. All cold people are green. All round people are smart. Blue, rough people are round. Kind people are green. If Anne is smart then Anne is cold. If Anne is green and Anne is smart then Anne is blue. If Fiona is rough and Fiona is smart then Fiona is cold. All kind, green people are rough. All blue, smart people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-712_Q2", "context": "The bald eagle likes the squirrel. The bald eagle sees the mouse. The bald eagle visits the mouse. The cow likes the bald eagle. The mouse is not cold. The mouse is nice. The mouse likes the squirrel. The mouse sees the squirrel. The squirrel is kind. The squirrel is nice. The squirrel likes the cow. The squirrel visits the cow. If someone is kind then they are rough. If someone likes the bald eagle and they are rough then the bald eagle is kind. If the mouse sees the bald eagle then the bald eagle visits the squirrel. If someone is rough then they like the bald eagle. If someone visits the mouse then the mouse visits the cow. If someone is big and they visit the mouse then they are cold. If the mouse likes the bald eagle then the mouse does not see the squirrel. If someone visits the cow and the cow visits the squirrel then they like the cow. If someone sees the cow then the cow does not visit the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1094_Q17", "context": "Erin is blue. Erin is nice. Erin is round. Fiona is rough. Gary is blue. Gary is rough. Harry is round. If something is nice and rough then it is red. All round, rough things are red. Smart things are furry. All rough things are smart. If something is round then it is blue. All red things are blue. If Erin is smart then Erin is furry. Rough, furry things are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-865_Q24", "context": "The bald eagle is green. The bald eagle visits the cat. The cat visits the rabbit. The lion is not nice. The lion visits the cat. The lion visits the rabbit. The rabbit is round. If something chases the lion then it eats the bald eagle. If something is rough then it chases the rabbit. If something eats the bald eagle and it is round then the bald eagle is round. If the rabbit chases the cat then the cat eats the bald eagle. If something eats the lion and the lion eats the rabbit then it chases the lion. If something is round then it chases the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-631_Q2", "context": "The bald eagle needs the tiger. The bear is nice. The bear is round. The bear is young. The bear likes the tiger. The bear needs the cat. The cat needs the bear. The cat needs the tiger. The cat visits the bear. The tiger is nice. The tiger likes the cat. The tiger visits the bald eagle. If something is round and big then it needs the bald eagle. If something needs the cat then it is nice. If something is nice and it visits the bear then it likes the bear. If something is round and it needs the bear then it needs the cat. If the cat is nice and the cat is round then the cat is big. If the cat needs the tiger then the cat is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not need the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-260_Q13", "context": "Anne is furry. Anne is not kind. Charlie is round. Dave is furry. Dave is round. Gary is big. Gary is not cold. If Dave is quiet then Dave is furry. All quiet people are cold. Round people are quiet. Cold people are big. If someone is rough and not cold then they are big. Big people are kind. All quiet, kind people are furry. Big people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-9_Q9", "context": "The bear sees the tiger. The bear visits the rabbit. The cat sees the bear. The rabbit needs the bear. The tiger is rough. The tiger needs the cat. The tiger needs the rabbit. If something sees the bear then it is kind. If something visits the tiger and it is green then the tiger sees the cat. If the tiger visits the bear then the tiger is round. If something is round and it visits the cat then the cat is kind. If something visits the tiger then the tiger needs the rabbit. If something is round and it sees the bear then the bear is rough. If something visits the tiger and the tiger visits the cat then the tiger sees the rabbit. All kind things are round. If something is rough then it is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-535_Q18", "context": "Charlie is blue. Charlie is furry. Charlie is quiet. Charlie is round. Charlie is smart. Fiona is white. Gary is smart. Harry is furry. Harry is quiet. Harry is round. If someone is quiet and blue then they are round. If Charlie is quiet and Charlie is round then Charlie is furry. Blue people are round. Quiet, smart people are blue. If someone is blue and round then they are big. If someone is white then they are blue. All white, big people are smart. If someone is smart then they are quiet. If Harry is blue then Harry is white.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-321_Q3", "context": "Bob is cold. Bob is round. Bob is white. Charlie is cold. Charlie is green. Dave is furry. Dave is green. Dave is nice. Dave is round. Harry is furry. Harry is green. Harry is nice. Harry is round. Harry is white. If Bob is round then Bob is white. Cold, nice things are white. If something is white then it is round. All quiet things are nice. If Charlie is round and Charlie is green then Charlie is furry. Nice things are green. Cold, green things are quiet. All furry things are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-266_Q8", "context": "Anne is red. Anne is not round. Anne is not smart. Charlie is kind. Erin is big. Erin is kind. Erin is quiet. Gary is not big. Gary is quiet. Gary is red. Gary is rough. Kind things are round. All round things are big. If Anne is big and Anne is not red then Anne is not rough. If something is kind and smart then it is rough. If something is rough then it is quiet. All red things are quiet. Big, round things are smart. If something is quiet and not big then it is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-413_Q1", "context": "Bob is round. Bob is young. Charlie is round. Charlie is young. Dave is young. Erin is green. Erin is young. Young, nice people are blue. Young, round people are big. All big people are rough. If someone is young and blue then they are green. All rough people are nice. If someone is rough then they are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-988_Q22", "context": "The bald eagle is big. The bald eagle likes the bear. The bald eagle does not need the bear. The bear is round. The bear visits the cat. The cat does not like the tiger. The cat does not visit the bear. The tiger is nice. The tiger likes the bear. The tiger visits the bald eagle. The tiger visits the cat. If something is big then it needs the bald eagle. If something needs the bald eagle then it is round. If something visits the bald eagle and the bald eagle visits the cat then the cat visits the bald eagle. If something needs the bald eagle and it visits the cat then the bald eagle visits the bear. If something visits the bear then the bear visits the tiger. If something is red and it likes the bear then it visits the cat. If something is round then it visits the cat. If something is red and it visits the tiger then the tiger visits the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat likes the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-543_Q11", "context": "Charlie is cold. Charlie is round. Charlie is white. Dave is cold. Dave is kind. Fiona is round. Fiona is white. Fiona is young. Harry is kind. Harry is quiet. Harry is white. Harry is young. Young people are quiet. If someone is cold then they are rough. All quiet people are round. Young, kind people are cold. All round, rough people are white. All rough people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-230_Q14", "context": "Anne is cold. Anne is kind. Anne is smart. Erin is not cold. Erin is green. Erin is kind. Erin is red. Erin is smart. Erin is not white. Fiona is not cold. Fiona is not kind. Harry is white. All red people are kind. All red, cold people are kind. If someone is cold and not smart then they are kind. All rough, cold people are green. If someone is cold and green then they are red. If someone is white then they are cold. If someone is cold then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-310_Q7", "context": "The cow is kind. The cow likes the dog. The cow likes the rabbit. The cow sees the lion. The dog sees the cow. The lion chases the cow. The lion is not green. The lion is kind. The rabbit chases the cow. The rabbit chases the lion. The rabbit is not green. The rabbit is nice. The rabbit likes the dog. The rabbit does not like the lion. If someone chases the cow then the cow chases the rabbit. If someone chases the rabbit then the rabbit likes the cow. If someone sees the cow then they chase the rabbit. If someone sees the cow and the cow does not like the lion then the cow sees the dog. If someone is nice and they see the rabbit then they do not like the cow. If the rabbit chases the dog then the rabbit sees the cow. If someone likes the cow then they chase the dog. If someone chases the rabbit and they like the rabbit then the rabbit likes the dog. If someone sees the dog and they are red then the dog chases the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit chases the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-860_Q3", "context": "Anne is red. Anne is white. Charlie is smart. Erin is furry. Erin is nice. Erin is round. Fiona is cold. Fiona is red. Fiona is round. Fiona is smart. If someone is white and round then they are cold. If someone is round then they are white. If Charlie is cold and Charlie is white then Charlie is furry. Smart people are round. All round, nice people are white. If someone is furry and smart then they are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-367_Q11", "context": "Anne is green. Anne is nice. Anne is round. Anne is white. Bob is nice. Charlie is quiet. Charlie is red. Charlie is round. Charlie is smart. Charlie is white. Fiona is quiet. All white people are red. All smart people are green. Nice people are white. Smart people are red. Green, smart people are quiet. Green people are smart. All smart people are red. If someone is red and nice then they are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-396_Q3", "context": "Bob is cold. Bob is red. Charlie is green. Charlie is red. Charlie is white. Erin is blue. Erin is cold. Erin is green. Erin is white. Fiona is blue. Fiona is green. All blue people are nice. All white, nice people are green. All big, white people are cold. Nice people are red. All big people are blue. If someone is cold then they are white. All white, big people are red. If someone is blue and red then they are cold. White, red people are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1094_Q18", "context": "Anne is young. Dave is big. Erin is blue. Erin is red. Gary is red. Gary is smart. Gary is young. If Anne is rough then Anne is blue. If someone is big then they are smart. If Anne is round and Anne is blue then Anne is red. If someone is blue then they are round. If someone is young then they are rough. If Anne is blue and Anne is red then Anne is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-131_Q8", "context": "Bob is big. Erin is quiet. Fiona is cold. Fiona is not quiet. Fiona is rough. Gary is white. Gary is young. White things are not big. All young, quiet things are rough. If Gary is smart then Gary is not cold. All rough, quiet things are smart. If something is young and not big then it is quiet. If something is rough and big then it is quiet. If Bob is quiet and Bob is young then Bob is rough. If Bob is big then Bob is rough. If something is smart and not rough then it is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-752_Q3", "context": "Anne is young. Bob is white. Charlie is cold. Charlie is nice. Charlie is young. Fiona is not nice. Fiona is white. Nice people are furry. Quiet, cold people are furry. If Bob is quiet and Bob is furry then Bob is young. All quiet people are cold. If someone is young then they are cold. All furry, cold people are quiet. White people are quiet. Young people are kind. All nice people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-498_Q16", "context": "The cow eats the lion. The cow is green. The cow is kind. The lion needs the rabbit. The mouse is young. The rabbit eats the lion. The rabbit is green. The rabbit likes the lion. The rabbit likes the mouse. The rabbit needs the lion. The rabbit needs the mouse. If someone needs the cow and the cow eats the mouse then the mouse is round. If the mouse likes the cow then the cow is young. If someone needs the rabbit then they need the mouse. If someone likes the mouse then they eat the rabbit. If someone needs the cow and they eat the rabbit then the cow likes the lion. If someone needs the cow and the cow is rough then they are round. If someone is rough and green then they need the cow. If the cow likes the lion then the cow is green. If someone likes the lion then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-5_Q17", "context": "Dave is nice. Dave is not rough. Dave is round. Fiona is green. Fiona is round. Gary is white. Harry is big. Harry is nice. Harry is quiet. Harry is rough. Green, quiet things are white. Green, rough things are white. All green things are rough. If Gary is green then Gary is not quiet. Big things are nice. All green things are round. All white things are big. If Fiona is nice then Fiona is not quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-68_Q9", "context": "The bear eats the cow. The bear sees the cow. The bear sees the squirrel. The cow is blue. The cow likes the squirrel. The cow sees the squirrel. The dog eats the cow. The dog is cold. The dog is kind. The dog sees the cow. The squirrel eats the cow. The squirrel likes the dog. The squirrel sees the bear. The squirrel sees the cow. If something sees the squirrel then it eats the dog. If something sees the bear then the bear is rough. If the cow likes the dog then the cow sees the dog. If something likes the bear then the bear is kind. If the cow eats the bear then the bear sees the cow. If something is kind then it eats the bear. Blue things are kind. If something likes the bear and it eats the bear then it eats the dog. If something eats the bear and the bear eats the cow then it likes the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear eats the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-310_Q12", "context": "Dave is not quiet. Dave is rough. Erin is big. Erin is furry. Fiona is quiet. Fiona is rough. Gary is quiet. If something is quiet then it is round. If something is nice and round then it is big. Big, nice things are young. If Fiona is round and Fiona is quiet then Fiona is nice. If Dave is quiet and Dave is rough then Dave is furry. If something is young and round then it is quiet. All young, quiet things are not furry. If Erin is big and Erin is not round then Erin is not rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-115_Q9", "context": "Anne is rough. Charlie is not rough. Dave is big. Dave is green. Fiona is green. Fiona is round. Fiona is white. All red people are white. If Dave is kind then Dave is white. If Fiona is white then Fiona is red. All white, red people are kind. If Dave is big then Dave is red. Kind, big people are red. White, red people are green. Rough people are round. All kind people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-405_Q7", "context": "Charlie is blue. Dave is round. Dave is white. Fiona is blue. Fiona is nice. Harry is nice. Harry is round. If someone is blue then they are nice. All nice people are big. All furry people are round. If Fiona is round and Fiona is nice then Fiona is quiet. White people are furry. All white, blue people are furry. If someone is big and not nice then they are white. If someone is quiet then they are white. If someone is big then they are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-600_Q17", "context": "Bob is round. Bob is white. Bob is young. Charlie is cold. Fiona is nice. Harry is cold. Harry is round. If something is young then it is round. If something is red then it is nice. All green, cold things are white. Round things are green. If Fiona is round and Fiona is cold then Fiona is young. All red, young things are white. If something is cold and nice then it is young. All white things are red. If Charlie is young and Charlie is cold then Charlie is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-616_Q3", "context": "Bob is blue. Bob is furry. Bob is quiet. Bob is rough. Bob is smart. Charlie is quiet. Charlie is rough. Erin is not blue. Erin is furry. Erin is nice. Erin is quiet. Harry is rough. If someone is round and furry then they are not nice. If someone is smart and nice then they are not furry. If someone is quiet then they are furry. If Harry is blue then Harry is rough. If someone is rough then they are round. If someone is smart then they are quiet. If Bob is round and Bob is not rough then Bob is not blue. If someone is round then they are smart. Blue people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-314_Q19", "context": "Anne is furry. Bob is not green. Bob is round. Charlie is cold. Charlie is not red. Gary is cold. Gary is young. If someone is green and furry then they are cold. Smart people are young. Young people are green. If Anne is furry and Anne is red then Anne is smart. If Bob is furry then Bob is not cold. If someone is furry then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1194_Q10", "context": "Bob is big. Bob is smart. Dave is blue. Dave is white. Gary is rough. Harry is blue. Harry is nice. If Harry is rough then Harry is young. All young people are big. If someone is blue and rough then they are smart. All blue people are smart. White people are blue. All white, rough people are not blue. Nice, big people are not white. All smart, nice people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-813_Q5", "context": "The bear eats the cat. The bear eats the mouse. The bear is blue. The bear likes the cat. The bear likes the cow. The bear sees the cow. The bear sees the mouse. The cat eats the cow. The cat is green. The cat likes the bear. The cat likes the cow. The cow is nice. The cow sees the mouse. The mouse eats the bear. If something sees the bear then it sees the cat. If something likes the cat and it eats the cow then the cat is green. If something is nice then it sees the bear. If something sees the cat and the cat is green then it eats the bear. If something sees the cat then the cat sees the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow sees the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-546_Q2", "context": "The bear eats the rabbit. The bear is kind. The bear is round. The bear visits the rabbit. The cow chases the bear. The cow eats the bear. The cow is round. The mouse chases the cow. The mouse eats the cow. The mouse is nice. The mouse visits the cow. The rabbit visits the bear. If something eats the bear then it visits the bear. If the rabbit visits the mouse then the mouse is blue. If something visits the cow then it visits the mouse. If something eats the rabbit then the rabbit is round. If something eats the mouse then it visits the cow. If something is round and it eats the rabbit then the rabbit chases the cow. If something chases the cow then it eats the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not chase the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-393_Q8", "context": "Anne is blue. Anne is cold. Anne is kind. Anne is smart. Anne is white. Charlie is smart. Erin is smart. Gary is cold. Gary is kind. Gary is smart. Cold things are blue. If something is white then it is cold. All smart, blue things are furry. Quiet things are cold. Blue things are furry. If something is smart then it is white. If Erin is quiet then Erin is blue. All smart, blue things are cold. Smart, furry things are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-133_Q4", "context": "The cat is rough. The lion is round. The rabbit needs the lion. The rabbit sees the lion. The squirrel is young. The squirrel sees the lion. The squirrel visits the lion. If the rabbit sees the squirrel then the squirrel needs the lion. If someone visits the squirrel and the squirrel sees the rabbit then they visit the lion. If someone is green then they see the squirrel. If someone is green and they need the rabbit then they need the lion. If someone needs the lion then they are green. If someone visits the rabbit then the rabbit is blue. If someone is young then they see the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-934_Q4", "context": "Bob is furry. Charlie is red. Charlie is not rough. Fiona is kind. Fiona is rough. Gary is red. Gary is not round. Quiet people are kind. All nice people are kind. If Bob is furry and Bob is kind then Bob is red. All furry people are nice. Red, nice people are quiet. If Bob is rough then Bob is kind. All red, nice people are round. If someone is quiet then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-693_Q12", "context": "The bald eagle does not eat the bear. The bald eagle does not need the squirrel. The bald eagle sees the cow. The bear needs the cow. The bear sees the bald eagle. The bear does not see the cow. The cow does not eat the bald eagle. The cow sees the bald eagle. The squirrel does not eat the bald eagle. The squirrel is kind. The squirrel needs the bald eagle. If something is red and it sees the bald eagle then it is kind. If something sees the cow and the cow needs the bald eagle then the cow is not rough. If something needs the bald eagle and it does not see the bald eagle then it does not eat the squirrel. If something sees the bald eagle and the bald eagle is red then the bald eagle needs the cow. If something eats the cow then the cow is red. If something is kind then it eats the cow. If something is red and it eats the cow then the cow needs the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not need the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-182_Q7", "context": "Charlie is blue. Charlie is furry. Charlie is red. Erin is blue. Fiona is green. Fiona is red. Harry is kind. If Erin is furry then Erin is red. Red people are big. If someone is big then they are smart. If someone is furry then they are smart. All smart, red people are blue. If someone is blue then they are kind. If someone is kind then they are red. All blue, kind people are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-560_Q10", "context": "Bob is green. Bob is quiet. Bob is red. Bob is rough. Bob is smart. Bob is white. Bob is young. Dave is green. Dave is quiet. Dave is red. Dave is rough. Dave is white. Erin is red. Harry is quiet. Harry is red. Harry is rough. If Bob is white then Bob is quiet. All quiet things are rough. Young things are quiet. All white things are smart. If something is rough and white then it is green. Green, white things are quiet. If something is red then it is white. All smart, red things are green. If Erin is rough then Erin is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-997_Q21", "context": "The bald eagle is big. The bald eagle is not young. The bear eats the bald eagle. The bear is round. The bear needs the lion. The lion does not eat the bald eagle. The lion eats the mouse. The lion sees the mouse. The mouse is not round. The mouse is young. The mouse sees the bear. The mouse sees the lion. If something needs the mouse then the mouse is big. If something is round then it needs the lion. If the lion sees the bear and the bear needs the lion then the lion is round. If something is round then it does not see the mouse. If something is kind then it needs the mouse. If something sees the mouse then the mouse sees the lion. If something needs the lion and it does not need the bald eagle then the bald eagle needs the mouse. If something sees the bear and the bear sees the lion then the lion eats the bald eagle. Big things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not eat the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1231_Q19", "context": "Charlie is cold. Charlie is green. Erin is big. Gary is cold. Harry is quiet. Harry is white. Harry is young. All big people are quiet. Cold, young people are big. If Erin is kind then Erin is big. If someone is green then they are big. All quiet, cold people are white. If someone is white and young then they are green. If Harry is cold then Harry is big. All white people are young. All young people are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-912_Q7", "context": "Bob is blue. Bob is nice. Bob is round. Bob is white. Charlie is blue. Charlie is red. Fiona is blue. Fiona is rough. Gary is not red. Gary is rough. If Charlie is not nice and Charlie is not blue then Charlie is red. If Charlie is white then Charlie is red. If Fiona is round then Fiona is not nice. All rough things are white. If something is red and big then it is white. Big, blue things are round. White, blue things are red. Nice, white things are red. If something is rough and red then it is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-467_Q6", "context": "Charlie is big. Charlie is cold. Charlie is nice. Charlie is quiet. Charlie is red. Charlie is rough. Charlie is white. Dave is rough. Erin is big. Erin is nice. Erin is quiet. Erin is red. Erin is rough. Gary is red. Gary is rough. Gary is white. White people are red. If someone is red and white then they are big. If someone is quiet and big then they are cold. All rough people are quiet. If someone is cold then they are big. If Dave is quiet then Dave is white. If someone is red and nice then they are cold. All quiet, red people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-158_Q20", "context": "Charlie is young. Dave is not blue. Dave is kind. Dave is rough. Erin is rough. Erin is young. Harry is blue. If Charlie is kind and Charlie is green then Charlie is cold. Green, rough people are kind. All rough people are green. Cold, kind people are green. If someone is big and young then they are green. If someone is cold then they are big. If someone is kind then they are not blue. If Dave is rough and Dave is green then Dave is cold. If someone is young then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-176_Q1", "context": "Bob is cold. Bob is nice. Bob is red. Erin is round. Fiona is cold. Fiona is green. Fiona is kind. Fiona is not red. Harry is cold. Harry is not green. Harry is not kind. Harry is nice. If someone is red and nice then they are round. Round people are cold. If someone is red then they are kind. All kind people are nice. If Erin is cold then Erin is red. If Fiona is cold and Fiona is kind then Fiona is white. If someone is nice and round then they are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-517_Q3", "context": "The bear sees the dog. The dog eats the lion. The dog is blue. The dog is round. The dog needs the squirrel. The lion needs the dog. The lion needs the squirrel. The squirrel does not eat the bear. The squirrel eats the dog. The squirrel does not see the bear. If something sees the lion then the lion does not need the dog. If the bear needs the squirrel and the squirrel does not eat the dog then the bear is not red. If something eats the squirrel and it is not big then the squirrel eats the lion. If something sees the dog then the dog needs the bear. If something needs the dog and it is not red then the dog does not see the squirrel. If something sees the squirrel and it eats the lion then the lion is blue. If something is blue and it eats the bear then it sees the dog. If something is blue then it sees the squirrel. If the lion is blue and the lion sees the squirrel then the squirrel is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog sees the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-442_Q3", "context": "The bald eagle is cold. The bald eagle likes the bear. The bald eagle likes the mouse. The bald eagle sees the lion. The bald eagle visits the lion. The bear sees the lion. The bear sees the mouse. The bear visits the bald eagle. The lion is red. The mouse is big. The mouse is red. The mouse likes the bear. The mouse likes the lion. The mouse sees the lion. The mouse visits the bear. The mouse visits the lion. If something sees the mouse and it sees the lion then it likes the lion. If something visits the bald eagle and the bald eagle sees the mouse then the mouse is red. If something visits the bald eagle and the bald eagle sees the bear then it visits the bear. If something visits the lion and it is big then the lion sees the mouse. If the bear sees the mouse and the mouse likes the bald eagle then the bald eagle sees the lion. If something sees the mouse and it sees the lion then the lion is nice. If something likes the mouse and the mouse sees the bear then it sees the mouse. If the lion visits the mouse then the lion sees the bald eagle. If something likes the lion then it sees the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear likes the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-806_Q3", "context": "Anne is cold. Anne is not furry. Anne is quiet. Anne is not smart. Bob is round. Dave is cold. Dave is round. Dave is smart. Dave is young. Harry is furry. Harry is round. If Bob is green and Bob is round then Bob is furry. If someone is cold and round then they are smart. If Dave is furry then Dave is not quiet. If someone is green and young then they are quiet. If Anne is smart then Anne is not green. Quiet, round people are green. If someone is round then they are green. Furry people are young. Furry, quiet people are not cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-1030_Q21", "context": "The bald eagle eats the cow. The cow sees the bald eagle. The cow sees the squirrel. The mouse is blue. The mouse is kind. The squirrel eats the cow. The squirrel is blue. If something sees the cow then the cow chases the squirrel. If something chases the mouse then it sees the cow. If something is blue and it eats the mouse then it sees the cow. If something chases the squirrel and it sees the squirrel then it chases the mouse. If something chases the squirrel and it eats the mouse then the mouse eats the bald eagle. If something eats the bald eagle and the bald eagle chases the cow then the cow chases the mouse. If something is blue then it chases the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-265_Q16", "context": "Anne is big. Anne is young. Charlie is big. Charlie is green. Gary is green. Gary is red. Gary is young. Harry is big. Harry is green. Harry is red. Harry is round. If someone is kind and round then they are red. Big, red people are young. If someone is young then they are round. If Charlie is green then Charlie is kind. If someone is red and green then they are kind. All kind people are rough. If someone is kind and rough then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-623_Q6", "context": "Anne is furry. Anne is young. Bob is cold. Charlie is quiet. Charlie is red. Charlie is rough. Charlie is young. Harry is furry. Harry is quiet. Harry is red. Harry is rough. Harry is smart. Smart things are young. If something is cold then it is red. If something is cold and smart then it is young. All red things are smart. All smart things are young. All young things are rough. If something is rough then it is furry. Smart things are red. All smart, furry things are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-588_Q17", "context": "The cat is big. The cat is blue. The cat is nice. The cow is blue. The cow likes the cat. The mouse eats the cow. The mouse eats the squirrel. The mouse is blue. The mouse is nice. The mouse is round. The squirrel eats the cat. The squirrel sees the cat. If someone eats the mouse then they see the cow. If someone sees the cow then the cow sees the squirrel. If someone is nice and they like the squirrel then the squirrel is nice. If someone is round then they eat the mouse. If someone likes the mouse then they eat the mouse. If someone sees the squirrel then they like the mouse. If someone is red then they see the cow. If someone likes the cow then the cow likes the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not like the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-952_Q12", "context": "The bald eagle is round. The bald eagle sees the cow. The bear is blue. The bear sees the cow. The cow chases the bear. The cow chases the squirrel. The cow is round. The cow sees the squirrel. The squirrel chases the bear. The squirrel chases the cow. The squirrel needs the bald eagle. The squirrel needs the bear. If someone is green and they need the squirrel then the squirrel sees the cow. If someone needs the squirrel and the squirrel chases the cow then they see the cow. If someone needs the bear and they chase the bear then the bear needs the bald eagle. If someone needs the squirrel then they are green. If someone sees the bald eagle then the bald eagle sees the squirrel. If someone sees the cow then they need the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-53_Q2", "context": "Charlie is nice. Dave is big. Dave is blue. Dave is cold. Dave is green. Dave is nice. Dave is round. Fiona is big. Fiona is blue. Fiona is cold. Fiona is red. Fiona is round. Harry is cold. Harry is nice. If someone is big and cold then they are round. Red, big people are blue. If Fiona is cold and Fiona is round then Fiona is red. All big, round people are green. If someone is green and big then they are red. If someone is cold then they are big. All red people are nice. Blue people are big. If someone is big then they are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-952_Q8", "context": "Charlie is blue. Charlie is white. Fiona is quiet. Gary is furry. Gary is nice. Gary is not quiet. Gary is round. Harry is not furry. Harry is nice. Harry is not quiet. If someone is white then they are not furry. Quiet, nice people are blue. White, red people are nice. White, nice people are quiet. If someone is blue and not furry then they are quiet. All red people are round. If someone is quiet and not furry then they are round. If someone is round and not furry then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-506_Q19", "context": "The bald eagle chases the rabbit. The bald eagle is red. The lion is not round. The lion likes the rabbit. The mouse is red. The mouse is not round. The mouse visits the bald eagle. The mouse visits the rabbit. The rabbit is red. The rabbit likes the bald eagle. The rabbit likes the mouse. If something visits the rabbit then it chases the mouse. If something visits the mouse and the mouse likes the lion then the mouse is blue. If something is kind then it visits the rabbit. If something visits the bald eagle then the bald eagle chases the rabbit. If something visits the bald eagle and it chases the mouse then the bald eagle is kind. If something likes the lion and it is blue then it likes the mouse. If something visits the lion and the lion chases the mouse then the mouse chases the lion. If something is kind and it chases the mouse then the mouse likes the rabbit. If something chases the bald eagle and it is not blue then it does not like the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not like the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-366_Q1", "context": "Charlie is blue. Charlie is cold. Charlie is white. Dave is blue. Dave is quiet. Gary is blue. Gary is round. Harry is not green. Harry is quiet. Harry is not white. Red, round people are cold. All red people are green. If someone is green then they are round. If Dave is not blue then Dave is not green. If someone is blue then they are red. All cold people are red. All cold people are white. If Gary is green and Gary is cold then Gary is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-192_Q17", "context": "The dog is big. The dog is nice. The dog likes the squirrel. The dog sees the rabbit. The dog visits the rabbit. The lion does not see the dog. The lion sees the squirrel. The lion visits the squirrel. The rabbit is big. The rabbit sees the dog. The rabbit does not see the squirrel. The squirrel likes the lion. The squirrel sees the dog. The squirrel visits the dog. If someone sees the dog then they visit the rabbit. If someone visits the squirrel then they do not see the rabbit. If someone is blue then they visit the squirrel. If someone likes the rabbit then they like the dog. If someone sees the dog then the dog sees the lion. If someone visits the squirrel and they are rough then they are blue. If someone visits the squirrel and the squirrel visits the rabbit then the rabbit is round. If someone sees the rabbit and the rabbit is round then the rabbit is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not visit the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1129_Q5", "context": "Charlie is rough. Dave is big. Dave is green. Dave is smart. Fiona is big. Fiona is green. Fiona is kind. Fiona is rough. Fiona is white. Harry is red. Harry is white. If something is rough then it is green. If something is rough then it is green. If something is red then it is white. If Dave is big then Dave is green. White things are red. If something is big then it is kind. All white, green things are big. If Charlie is rough and Charlie is smart then Charlie is white. If Charlie is green and Charlie is rough then Charlie is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-302_Q10", "context": "Dave is blue. Dave is smart. Erin is green. Erin is rough. Gary is blue. Gary is round. Harry is blue. Harry is nice. Harry is not quiet. Harry is not rough. Nice, rough things are not quiet. Rough things are quiet. If something is quiet then it is not nice. If something is blue and not nice then it is not smart. All nice things are not smart. If Erin is rough and Erin is not nice then Erin is round. If Erin is round then Erin is blue. If something is blue and round then it is green. Quiet, nice things are not green.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-539_Q1", "context": "Charlie is big. Charlie is green. Charlie is red. Charlie is rough. Charlie is smart. Charlie is young. Erin is not green. Erin is young. Gary is green. Gary is red. Gary is young. Harry is round. Harry is smart. Harry is young. If Charlie is young and Charlie is smart then Charlie is green. If Erin is young then Erin is smart. If something is round and young then it is rough. If something is smart then it is big. If something is red and not green then it is big. All young, green things are red. Smart, rough things are red. All big things are round. If Gary is big and Gary is rough then Gary is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-628_Q13", "context": "Bob is blue. Charlie is big. Charlie is blue. Charlie is furry. Charlie is quiet. Charlie is white. Gary is furry. Harry is big. Harry is furry. Harry is white. If someone is quiet then they are big. Blue, furry people are rough. Nice, rough people are blue. If Bob is blue then Bob is rough. All rough people are quiet. If someone is quiet and rough then they are blue. Big people are furry. If someone is furry and rough then they are nice. If someone is rough then they are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-318_Q15", "context": "Charlie is blue. Charlie is round. Erin is quiet. Fiona is blue. Fiona is kind. Fiona is quiet. Fiona is rough. Fiona is round. Fiona is young. Gary is blue. Gary is quiet. Rough, young people are round. If someone is quiet then they are round. If someone is round then they are young. All young people are blue. Round, kind people are rough. All blue people are kind. If someone is rough then they are kind. If Erin is young then Erin is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1183_Q14", "context": "Anne is furry. Anne is kind. Anne is nice. Anne is rough. Erin is furry. Erin is kind. Erin is quiet. Erin is rough. Erin is smart. Fiona is kind. Fiona is rough. Fiona is round. Fiona is smart. Harry is nice. Nice people are smart. All furry, nice people are smart. Kind, rough people are furry. Quiet, kind people are round. Nice, smart people are kind. If someone is kind and quiet then they are rough. If Erin is kind and Erin is nice then Erin is quiet. All quiet, rough people are kind. Kind people are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-819_Q4", "context": "Anne is smart. Bob is quiet. Dave is cold. Erin is cold. Erin is kind. Erin is quiet. Erin is smart. All kind, young people are rough. All quiet people are young. Furry people are smart. Kind, rough people are furry. All smart people are kind. If someone is young then they are kind. All kind, rough people are quiet. Cold people are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-149_Q12", "context": "The bald eagle likes the cat. The cat is cold. The cat is rough. The cat likes the bald eagle. The cat needs the squirrel. The rabbit needs the cat. The rabbit needs the squirrel. The rabbit sees the bald eagle. The rabbit sees the cat. The squirrel is big. The squirrel is cold. The squirrel is green. The squirrel likes the rabbit. The squirrel needs the cat. If something likes the rabbit and the rabbit sees the bald eagle then it likes the bald eagle. If something is rough then it needs the bald eagle. If something likes the cat and it is big then the cat needs the squirrel. If something needs the bald eagle then it likes the squirrel. If something is rough and it sees the bald eagle then it is cold. If something likes the squirrel then the squirrel is rough. If something needs the cat then it sees the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not like the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-156_Q12", "context": "The cow visits the mouse. The dog is red. The dog likes the cow. The dog likes the tiger. The dog sees the tiger. The dog visits the tiger. The mouse is nice. The mouse is young. The tiger is big. The tiger is nice. The tiger visits the cow. If something visits the dog then it is young. If something visits the dog then the dog is big. If something is big and it sees the cow then it sees the mouse. If something is nice and it likes the dog then it visits the dog. If something is young and it visits the cow then it sees the cow. If something sees the mouse then it is red. If something visits the dog then the dog likes the mouse. If something visits the mouse and the mouse likes the dog then the mouse visits the dog. If something is nice then it likes the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not see the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-492_Q15", "context": "Anne is kind. Anne is quiet. Charlie is big. Charlie is kind. Fiona is not kind. Fiona is red. Gary is white. Red, quiet things are white. All kind things are cold. Big things are quiet. All cold things are red. All young, quiet things are big. If something is kind and young then it is big. If something is white and cold then it is young. If Charlie is cold and Charlie is quiet then Charlie is young. If Fiona is not kind then Fiona is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-909_Q5", "context": "The bear is kind. The rabbit eats the bear. The rabbit eats the squirrel. The rabbit likes the tiger. The rabbit visits the squirrel. The squirrel eats the bear. The squirrel eats the tiger. The squirrel is blue. The squirrel is red. The squirrel is young. The squirrel likes the bear. The squirrel visits the tiger. The tiger eats the bear. The tiger is rough. The tiger likes the squirrel. The tiger visits the rabbit. If someone visits the rabbit then they are rough. If someone eats the tiger then the tiger visits the bear. If someone eats the tiger and they visit the squirrel then they are red. If someone eats the squirrel then they visit the rabbit. If someone likes the rabbit and the rabbit is kind then they like the bear. If someone is red and they eat the bear then the bear visits the tiger. If someone visits the squirrel and they like the tiger then the squirrel eats the tiger. If someone is kind and blue then they eat the squirrel. If someone visits the tiger then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-852_Q16", "context": "Anne is big. Anne is cold. Dave is quiet. Gary is furry. Gary is kind. Harry is furry. Harry is young. If something is young then it is furry. If something is kind and big then it is quiet. Young, quiet things are big. All big, white things are young. If Anne is big and Anne is furry then Anne is kind. All furry things are big. If something is big then it is white. All kind, big things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-936_Q8", "context": "Dave is big. Dave is furry. Dave is green. Dave is round. Dave is smart. Erin is furry. Fiona is red. Fiona is smart. Gary is cold. Gary is green. If something is green then it is big. All round things are furry. If something is big and red then it is smart. All big, cold things are round. All furry, red things are big. All furry things are red. Big things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-821_Q9", "context": "The bald eagle is big. The bald eagle needs the tiger. The mouse eats the rabbit. The mouse does not like the rabbit. The mouse needs the bald eagle. The rabbit likes the bald eagle. The tiger eats the bald eagle. The tiger eats the mouse. The tiger does not like the mouse. The tiger likes the rabbit. The tiger needs the bald eagle. If something likes the bald eagle then it eats the rabbit. If something is big then it likes the rabbit. If something likes the rabbit then the rabbit likes the tiger. If something is big and it needs the rabbit then the rabbit eats the tiger. If the tiger is young and the tiger eats the bald eagle then the tiger eats the rabbit. If something is round then it eats the mouse. If something likes the rabbit then it does not eat the tiger. If the rabbit likes the tiger and the tiger eats the mouse then the rabbit is big. If something likes the rabbit then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1333_Q13", "context": "Dave is cold. Dave is red. Dave is rough. Dave is white. Fiona is quiet. Gary is cold. Gary is quiet. Gary is rough. Harry is cold. Harry is green. Harry is red. Harry is white. If someone is round and cold then they are rough. If Dave is green then Dave is cold. If someone is quiet and green then they are rough. If Fiona is rough and Fiona is red then Fiona is white. If Gary is quiet and Gary is round then Gary is red. If Fiona is round then Fiona is cold. If Fiona is red then Fiona is round. All quiet people are red. Red people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-236_Q20", "context": "Anne is smart. Bob is blue. Bob is kind. Charlie is smart. Charlie is young. Fiona is green. Fiona is kind. If something is red then it is round. Red, blue things are green. Smart things are round. If something is round then it is red. If Bob is round then Bob is kind. If Anne is green then Anne is smart. All red things are kind. If Anne is round and Anne is kind then Anne is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-526_Q6", "context": "Bob is kind. Erin is big. Erin is green. Erin is kind. Erin is red. Erin is rough. Fiona is big. Fiona is blue. Fiona is rough. Harry is blue. Harry is rough. Red people are rough. If Erin is rough and Erin is blue then Erin is big. All big people are rough. If someone is big then they are red. If someone is big and rough then they are young. Blue people are red. Green, kind people are blue. Red people are big. Kind people are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-201_Q5", "context": "The bear eats the lion. The bear sees the dog. The bear visits the dog. The dog sees the bear. The dog sees the squirrel. The lion sees the bear. The lion sees the squirrel. The lion visits the bear. The lion visits the dog. The squirrel visits the dog. If someone visits the dog and the dog is round then they are round. If someone visits the dog then the dog eats the squirrel. All big people are round. If someone visits the dog and the dog is nice then they see the bear. If someone eats the squirrel and they see the lion then the lion eats the dog. If someone is green then they visit the dog. If someone visits the dog and they are round then the dog is nice. If someone eats the squirrel then they are big. If someone sees the bear and they visit the squirrel then they are green.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-707_Q7", "context": "The bear is rough. The bear needs the cow. The bear needs the tiger. The bear sees the dog. The cow is cold. The cow is green. The cow needs the tiger. The cow sees the dog. The dog is cold. The dog sees the tiger. The tiger eats the bear. The tiger is cold. The tiger needs the bear. The tiger sees the cow. If something eats the tiger then the tiger is young. If something is cold and it needs the tiger then it eats the dog. If the tiger sees the cow then the tiger eats the cow. If something needs the bear and the bear sees the dog then the dog is green. If something needs the dog then the dog needs the tiger. If something eats the dog then it needs the dog. If something sees the tiger then the tiger is cold. If something eats the cow then it is cold. If something needs the cow and the cow needs the bear then the bear needs the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog needs the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1233_Q2", "context": "Anne is big. Anne is cold. Anne is furry. Anne is red. Anne is rough. Charlie is cold. Charlie is furry. Charlie is quiet. Charlie is red. Charlie is rough. Charlie is smart. Dave is quiet. Dave is smart. Erin is quiet. Red, cold people are big. If someone is big then they are rough. If someone is furry and rough then they are smart. Smart, cold people are furry. If someone is quiet then they are cold. Big, rough people are smart. If someone is quiet then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-236_Q9", "context": "Anne is smart. Bob is blue. Bob is kind. Charlie is smart. Charlie is young. Fiona is green. Fiona is kind. If something is red then it is round. Red, blue things are green. Smart things are round. If something is round then it is red. If Bob is round then Bob is kind. If Anne is green then Anne is smart. All red things are kind. If Anne is round and Anne is kind then Anne is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-668_Q5", "context": "Anne is cold. Charlie is cold. Charlie is quiet. Charlie is red. Charlie is round. Gary is cold. Gary is red. Gary is round. Gary is young. Harry is red. Harry is round. Harry is young. If something is round then it is white. If something is cold then it is smart. If something is red and smart then it is cold. If something is round then it is cold. Smart, young things are round. Smart things are red. Red things are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-505_Q10", "context": "Anne is cold. Anne is not quiet. Charlie is big. Charlie is cold. Charlie is quiet. Charlie is smart. Charlie is white. Dave is round. Erin is cold. Erin is smart. Erin is white. If someone is smart then they are big. Round, white people are cold. Cold, blue people are not smart. All cold, white people are smart. All quiet people are white. If Dave is blue then Dave is white. All round people are quiet. If someone is quiet and big then they are not blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-72_Q16", "context": "Anne is nice. Anne is quiet. Anne is young. Dave is green. Dave is nice. Gary is green. Harry is quiet. Green, big people are quiet. Green people are blue. If someone is green then they are kind. Nice people are young. Green, young people are big. Blue people are nice. If someone is quiet then they are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-602_Q1", "context": "Anne is big. Bob is big. Bob is blue. Bob is furry. Erin is blue. Erin is red. Gary is furry. Furry things are blue. Blue, young things are big. If something is red then it is not young. If Gary is blue then Gary is big. All blue, big things are red. If something is furry and not young then it is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-434_Q20", "context": "The dog chases the tiger. The dog is kind. The dog needs the lion. The lion needs the dog. The lion sees the squirrel. The squirrel chases the lion. The squirrel is cold. The squirrel sees the dog. The tiger does not chase the squirrel. The tiger is blue. If someone sees the dog then they are kind. If someone is blue and they need the lion then they are red. If the squirrel is blue then the squirrel needs the lion. If someone chases the squirrel and they see the lion then the lion is kind. If someone chases the lion then they see the squirrel. If someone chases the lion and they are big then they are blue. If someone sees the squirrel and they are kind then they are blue. If the squirrel needs the tiger then the tiger is not big. If someone is red and blue then they chase the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog sees the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-756_Q11", "context": "Anne is furry. Anne is green. Anne is quiet. Anne is round. Bob is big. Bob is furry. Bob is kind. Bob is red. Erin is big. Gary is big. Gary is green. Gary is red. All kind, red things are round. If Erin is round and Erin is quiet then Erin is red. All big things are red. Green things are quiet. Round things are quiet. If something is furry then it is kind. If something is big then it is green. Quiet things are furry. All kind, red things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-772_Q11", "context": "The cat eats the dog. The dog chases the cat. The lion is rough. The lion needs the cat. The tiger does not chase the cat. The tiger eats the lion. The tiger needs the cat. All young people are cold. If someone is big and they eat the tiger then they chase the lion. If the lion eats the dog then the lion is red. If the lion is cold and the lion chases the tiger then the tiger is rough. If someone chases the lion and the lion eats the dog then the dog does not need the lion. Rough people are young. If someone is young then they chase the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-719_Q1", "context": "Anne is big. Anne is blue. Anne is cold. Anne is furry. Anne is kind. Anne is nice. Anne is young. Bob is furry. Dave is furry. Harry is big. Harry is blue. Harry is cold. Harry is furry. Harry is kind. Harry is nice. Harry is young. Blue things are young. All cold, young things are blue. Big things are kind. Furry, kind things are cold. Cold things are blue. All young things are big. Furry things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-811_Q5", "context": "Anne is big. Anne is cold. Anne is nice. Anne is quiet. Anne is rough. Anne is round. Anne is young. Dave is round. Erin is round. Erin is young. Gary is big. Gary is nice. If Anne is cold then Anne is round. All big, nice people are young. All cold, nice people are round. All round people are big. If someone is young then they are rough. Round people are nice. Rough people are cold. All round people are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1157_Q4", "context": "Bob is big. Bob is blue. Bob is green. Bob is red. Bob is young. Charlie is big. Charlie is blue. Charlie is green. Charlie is white. Fiona is nice. Gary is big. Gary is blue. Gary is red. Gary is white. If something is blue then it is red. White, big things are red. Young things are green. If something is red then it is nice. All red, young things are blue. White things are blue. All nice things are young. All green, blue things are big. All green things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-43_Q11", "context": "The bear is big. The bear likes the rabbit. The bear sees the rabbit. The lion eats the rabbit. The lion sees the bear. The rabbit eats the bear. The rabbit eats the lion. The rabbit sees the bear. The squirrel is kind. The squirrel is round. If someone eats the lion then they like the bear. If someone is red and big then they like the bear. If someone likes the bear then they see the lion. If the rabbit eats the bear and the rabbit sees the bear then the bear sees the rabbit. If the lion likes the bear then the lion is kind. If someone sees the rabbit then they like the rabbit. If the lion likes the rabbit then the lion eats the bear. If someone sees the lion and they like the bear then the lion sees the rabbit. If someone is big and they see the rabbit then they see the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion eats the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-730_Q21", "context": "The bald eagle is green. The bald eagle likes the tiger. The bald eagle sees the bear. The bear sees the cow. The cow is green. The cow likes the bald eagle. The cow likes the tiger. The cow sees the bald eagle. The cow sees the bear. The tiger eats the bald eagle. The tiger likes the bear. The tiger likes the cow. If something is young and it sees the bald eagle then it likes the bear. If something likes the cow then it sees the bear. If something sees the tiger and the tiger likes the bald eagle then it is green. If something is kind and it eats the bald eagle then it sees the tiger. If something sees the tiger and the tiger eats the bear then the bear sees the tiger. If something sees the tiger then the tiger likes the bald eagle. If something eats the bald eagle then the bald eagle likes the tiger. If something sees the bear then it is kind. All cold, green things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not see the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-786_Q24", "context": "The bald eagle is red. The bald eagle does not see the tiger. The mouse is big. The mouse is red. The mouse likes the squirrel. The mouse likes the tiger. The mouse does not need the bald eagle. The mouse does not need the tiger. The mouse sees the tiger. The squirrel sees the mouse. The tiger is not big. The tiger is not blue. The tiger needs the bald eagle. The tiger sees the squirrel. If the mouse is big then the mouse sees the squirrel. If something likes the squirrel and it is red then it likes the tiger. If something sees the mouse then it is cold. If something is cold then it likes the mouse. If something needs the tiger then the tiger is not red. If something is red then it does not see the bald eagle. If something likes the mouse and the mouse sees the tiger then the tiger sees the mouse. If the bald eagle likes the tiger and the bald eagle sees the mouse then the tiger likes the bald eagle. If something sees the squirrel and the squirrel does not see the bald eagle then the squirrel needs the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-859_Q14", "context": "Charlie is blue. Charlie is kind. Dave is quiet. Dave is rough. Dave is round. Erin is white. Fiona is blue. Fiona is kind. Fiona is nice. Fiona is quiet. Fiona is round. Fiona is white. All round, nice people are rough. All nice, quiet people are white. All rough people are blue. If someone is quiet and kind then they are nice. Rough people are quiet. If someone is round then they are nice. If Dave is nice then Dave is white. If someone is blue and rough then they are quiet. Blue people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-472_Q13", "context": "The bear visits the cow. The cow does not eat the dog. The cow is round. The dog eats the cow. The dog is not green. The rabbit is green. The rabbit visits the bear. If someone is young then they visit the dog. If someone visits the bear then they are young. If someone sees the cow then the cow is not green. If someone visits the dog and they are green then the dog visits the bear. If someone is round and they do not eat the dog then the dog sees the bear. If the dog is green then the dog does not see the bear. If someone visits the cow and they are green then they do not eat the cow. If someone eats the rabbit then they do not eat the cow. If the rabbit eats the dog and the rabbit is round then the dog sees the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1192_Q5", "context": "Anne is round. Bob is cold. Gary is nice. Gary is quiet. Gary is white. Harry is blue. Harry is cold. Harry is furry. Harry is nice. Harry is quiet. Harry is round. Blue things are cold. If something is round then it is blue. All quiet, nice things are round. If something is furry and white then it is quiet. All furry, nice things are quiet. All nice things are furry. All white things are cold. If something is cold then it is nice. If something is quiet and white then it is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-101_Q12", "context": "The bear is red. The bear needs the rabbit. The mouse is round. The mouse likes the tiger. The rabbit chases the mouse. The tiger chases the mouse. The tiger is big. The tiger is rough. The tiger likes the bear. The tiger needs the bear. If something needs the mouse then it is round. If something chases the mouse then it chases the rabbit. If something is rough then it needs the mouse. If something likes the tiger then it likes the bear. If something chases the rabbit then the rabbit is red. If something needs the bear and the bear is rough then the bear chases the mouse. If something is red then it is rough. If something is big and it needs the tiger then the tiger likes the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-99_Q7", "context": "Bob is green. Bob is kind. Bob is quiet. Charlie is blue. Charlie is kind. Dave is big. Gary is big. If someone is quiet then they are white. If someone is kind and big then they are green. All blue people are nice. All white people are big. If Bob is green and Bob is nice then Bob is big. All nice, kind people are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-928_Q8", "context": "Bob is green. Bob is quiet. Charlie is quiet. Charlie is white. Erin is furry. Erin is young. Fiona is not rough. White, green things are rough. All cold things are white. Cold, rough things are white. White things are furry. All quiet, rough things are furry. If something is white and furry then it is green. All furry things are cold. Rough things are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-52_Q2", "context": "The cow chases the lion. The cow chases the mouse. The cow sees the mouse. The lion chases the mouse. The lion sees the squirrel. The mouse chases the cow. The mouse is red. The squirrel chases the lion. The squirrel eats the lion. The squirrel is cold. The squirrel is round. The squirrel sees the cow. If someone sees the squirrel then the squirrel sees the cow. If the squirrel chases the lion then the lion eats the squirrel. If someone is young and they see the lion then the lion sees the cow. If someone is red then they are young. If someone is round then they chase the lion. If the lion sees the squirrel and the squirrel chases the lion then the lion is round. If someone chases the lion then they are red. If someone is young and they chase the mouse then they see the lion. If the mouse chases the lion then the mouse is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not see the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-669_Q9", "context": "Anne is blue. Erin is cold. Erin is young. Gary is red. Gary is young. Harry is big. Harry is blue. If something is blue then it is big. If Harry is young and Harry is big then Harry is red. If something is young then it is smart. If something is big then it is cold. If something is blue and red then it is young. If something is young and smart then it is rough. If something is smart and rough then it is blue. All cold, blue things are big. If something is cold and young then it is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-717_Q23", "context": "The bald eagle chases the squirrel. The bald eagle likes the tiger. The bald eagle visits the tiger. The cow chases the bald eagle. The cow is big. The cow likes the bald eagle. The cow likes the squirrel. The cow visits the bald eagle. The squirrel chases the bald eagle. The squirrel is green. The squirrel likes the tiger. The tiger is blue. If the cow visits the squirrel then the cow chases the tiger. If something likes the squirrel and it chases the bald eagle then the squirrel likes the cow. If something likes the bald eagle and the bald eagle likes the tiger then the tiger is kind. If something chases the cow and the cow visits the bald eagle then the cow is green. If something likes the cow then it chases the tiger. If something is green and it chases the tiger then it chases the cow. If the cow chases the tiger then the tiger is green. If something is green then it chases the squirrel. If something chases the tiger and it visits the tiger then the tiger likes the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-642_Q10", "context": "Anne is blue. Anne is kind. Anne is quiet. Bob is quiet. Dave is furry. Erin is kind. Erin is quiet. If Bob is blue then Bob is green. All quiet things are not cold. If something is big and blue then it is kind. If something is furry then it is blue. All furry, quiet things are blue. If something is green then it is big. If something is blue then it is green. Green, big things are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-894_Q4", "context": "The bald eagle visits the lion. The cow chases the lion. The cow is young. The cow visits the lion. The lion is nice. The lion sees the bald eagle. The tiger sees the lion. If the lion visits the tiger then the tiger sees the lion. If someone sees the cow and the cow sees the tiger then they chase the cow. If someone is young then they see the tiger. If someone sees the tiger then the tiger sees the cow. If someone chases the cow then the cow visits the lion. If someone is nice then they chase the bald eagle. If someone sees the bald eagle and the bald eagle chases the tiger then the tiger chases the cow. If someone chases the cow then the cow is nice. If someone chases the lion and the lion is big then the lion visits the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not see the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-315_Q7", "context": "Anne is blue. Anne is red. Anne is round. Anne is smart. Anne is white. Erin is blue. Erin is round. Erin is white. Fiona is blue. Fiona is smart. Gary is green. Gary is round. All blue people are rough. All rough people are red. If someone is blue then they are round. If Gary is round then Gary is blue. All red people are white. White, blue people are smart. All smart, rough people are white. Smart people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-534_Q7", "context": "The bear is red. The dog chases the rabbit. The mouse eats the bear. The mouse is big. The mouse needs the dog. The rabbit eats the bear. The rabbit eats the dog. The rabbit eats the mouse. The rabbit is red. The rabbit needs the dog. If something needs the dog then it eats the rabbit. If something eats the mouse then it eats the rabbit. If something chases the rabbit and the rabbit chases the bear then it eats the bear. If something needs the bear then the bear eats the mouse. If something eats the mouse and it eats the rabbit then it needs the bear. If something needs the mouse and it is big then it chases the mouse. If something eats the bear and the bear needs the mouse then it needs the bear. If something needs the dog then it eats the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear eats the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-670_Q9", "context": "The cow is kind. The cow is nice. The cow visits the dog. The cow visits the squirrel. The dog chases the tiger. The dog needs the cow. The dog visits the tiger. The squirrel is cold. The squirrel is green. The squirrel is kind. The tiger visits the squirrel. If someone is nice and they need the cow then they are cold. If someone needs the dog then the dog is nice. If someone chases the tiger then the tiger visits the dog. If someone visits the tiger and the tiger visits the dog then the tiger visits the cow. If someone visits the cow then they need the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-86_Q1", "context": "Bob is rough. Charlie is blue. Charlie is nice. Charlie is rough. Charlie is round. Charlie is smart. Gary is blue. Gary is kind. Gary is round. Gary is smart. Harry is kind. If someone is furry then they are smart. If someone is smart and round then they are nice. All rough people are smart. Nice, blue people are smart. All nice, rough people are kind. All kind people are round. All kind, furry people are smart. If someone is round and nice then they are furry. If someone is kind and round then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-449_Q3", "context": "The cat eats the dog. The cat eats the mouse. The cat is kind. The cat is round. The dog does not see the cat. The mouse is kind. The mouse needs the rabbit. The rabbit eats the cat. The rabbit is not cold. The rabbit needs the mouse. The rabbit sees the cat. If someone sees the mouse then the mouse is rough. If someone is red then they are rough. If someone eats the dog and they do not need the dog then they need the cat. If someone needs the mouse and they see the cat then the cat is red. If someone is round then they see the cat. If someone is rough then they see the mouse. If the cat eats the mouse and the cat does not see the dog then the dog is red. If someone is red and not rough then they do not eat the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-772_Q20", "context": "Bob is furry. Bob is white. Erin is blue. Erin is furry. Erin is green. Erin is nice. Erin is quiet. Fiona is quiet. Harry is green. Harry is nice. Harry is white. Furry things are quiet. All cold, nice things are quiet. White, blue things are nice. All green, quiet things are cold. All quiet things are nice. All white, cold things are blue. White, blue things are quiet. If something is blue and furry then it is green. If Bob is quiet and Bob is nice then Bob is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1273_Q17", "context": "Anne is green. Anne is red. Erin is green. Erin is round. Fiona is cold. Fiona is green. Fiona is nice. Fiona is red. Fiona is rough. Fiona is smart. Harry is cold. Cold people are smart. All green people are rough. All red, green people are nice. All rough people are cold. Red, nice people are rough. Round, cold people are smart. All smart people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-14_Q6", "context": "Charlie is not nice. Dave is big. Dave is quiet. Fiona is nice. Fiona is quiet. Harry is not green. Harry is nice. If Fiona is nice then Fiona is big. If something is big then it is kind. If Fiona is big and Fiona is kind then Fiona is young. If something is quiet then it is big. All smart things are green. If something is big and young then it is green. Green things are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-599_Q4", "context": "The bald eagle chases the tiger. The bald eagle needs the dog. The dog chases the mouse. The dog is cold. The dog is kind. The dog is young. The dog needs the bald eagle. The dog visits the bald eagle. The mouse does not visit the tiger. The tiger does not visit the dog. The tiger visits the mouse. If someone visits the bald eagle and the bald eagle is round then the bald eagle needs the dog. If someone needs the mouse and the mouse chases the dog then the dog chases the mouse. If someone chases the mouse and they visit the tiger then they chase the bald eagle. If someone visits the mouse then they chase the bald eagle. If someone is kind then they visit the mouse. If someone chases the tiger and they need the bald eagle then the bald eagle chases the mouse. If someone is round and they chase the tiger then they are kind. If someone visits the dog then the dog visits the bald eagle. If someone chases the bald eagle then the bald eagle is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not visit the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-675_Q20", "context": "The cat eats the dog. The cat is rough. The cat visits the dog. The dog is green. The dog sees the cat. The dog sees the squirrel. The mouse eats the dog. The mouse sees the cat. The mouse visits the dog. The squirrel is round. The squirrel visits the mouse. If someone sees the mouse and the mouse is rough then the mouse visits the dog. If someone visits the squirrel then they eat the squirrel. If someone visits the cat then the cat is green. If someone is green and they eat the squirrel then the squirrel visits the cat. If someone is green then they visit the squirrel. If someone sees the mouse then the mouse eats the cat. If someone sees the squirrel then they are young.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-495_Q8", "context": "Bob is furry. Bob is kind. Bob is nice. Bob is white. Charlie is big. Charlie is nice. Fiona is big. Fiona is round. Fiona is white. Harry is white. If someone is round then they are nice. If Fiona is rough then Fiona is round. All furry, big people are rough. If someone is kind and nice then they are furry. All round people are big. If someone is nice and big then they are kind. All round, big people are white. If Charlie is furry and Charlie is rough then Charlie is round. Kind people are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-396_Q5", "context": "The bear visits the lion. The bear visits the rabbit. The lion needs the mouse. The mouse is not kind. The mouse is red. The mouse is young. The mouse needs the bear. The mouse needs the lion. The rabbit is not red. The rabbit needs the lion. The rabbit does not visit the lion. If something is blue then it sees the bear. If something visits the bear then it is young. If something needs the bear then it is young. If something is blue and it needs the lion then the lion visits the bear. If the bear is green then the bear does not visit the mouse. If something visits the bear and the bear is blue then it does not visit the lion. If something needs the bear then the bear is blue. If something sees the bear and the bear is blue then it needs the bear. If something is young then it visits the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear sees the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-544_Q10", "context": "Dave is smart. Erin is cold. Erin is white. Fiona is kind. Fiona is white. Gary is cold. Gary is smart. Big, cold people are white. Quiet people are kind. All kind people are big. If someone is big and white then they are rough. If someone is smart then they are quiet. White, big people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-730_Q12", "context": "Anne is cold. Anne is red. Bob is big. Bob is kind. Erin is green. Erin is red. Harry is big. If Erin is kind then Erin is red. Red, furry things are rough. If something is green and rough then it is kind. If something is cold then it is furry. Green things are cold. All furry, big things are cold. All kind things are big. If Anne is furry then Anne is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-476_Q15", "context": "Charlie is round. Erin is blue. Erin is kind. Erin is round. Erin is smart. Gary is blue. Gary is kind. Gary is quiet. Harry is blue. Harry is green. Harry is smart. If Charlie is blue then Charlie is kind. All round things are smart. All blue, kind things are green. All smart, green things are young. If something is blue and young then it is smart. All smart, green things are kind. Young things are smart. Smart things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-140_Q15", "context": "The dog chases the tiger. The dog eats the mouse. The dog visits the lion. The lion chases the mouse. The lion chases the tiger. The lion is kind. The lion visits the mouse. The lion visits the tiger. The mouse chases the lion. The mouse chases the tiger. The tiger chases the mouse. If someone eats the tiger and they are red then they visit the mouse. If someone chases the mouse then they visit the dog. If someone chases the tiger and the tiger visits the dog then the tiger eats the mouse. If the mouse visits the dog then the dog chases the tiger. If someone chases the mouse and they eat the mouse then the mouse eats the tiger. If someone chases the dog then the dog visits the lion. If the mouse eats the lion and the lion visits the dog then the mouse chases the tiger. If someone eats the tiger then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not visit the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-135_Q12", "context": "The bald eagle is nice. The bald eagle likes the bear. The bear chases the bald eagle. The bear is green. The mouse chases the rabbit. The mouse is blue. The rabbit chases the bald eagle. The rabbit chases the bear. The rabbit is green. The rabbit sees the mouse. If someone is red and they chase the bald eagle then they see the mouse. If someone is nice and red then they see the bear. If someone sees the bear and they see the mouse then they like the rabbit. If someone is green and they chase the mouse then they like the bald eagle. If someone is blue then they like the bald eagle. If someone sees the bear then they chase the bald eagle. If the rabbit sees the bear and the bear is nice then the bear is blue. All nice people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not like the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-140_Q6", "context": "Anne is red. Charlie is furry. Charlie is kind. Dave is big. Dave is blue. Dave is green. Fiona is blue. Fiona is furry. Fiona is green. Fiona is kind. Fiona is young. If Anne is red then Anne is big. If something is green and red then it is furry. If something is young then it is green. All big things are kind. Furry things are blue. Kind, red things are green. If something is kind then it is green. Blue, red things are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-87_Q8", "context": "Dave is kind. Dave is round. Dave is white. Fiona is cold. Fiona is furry. Fiona is green. Fiona is kind. Fiona is round. Gary is cold. Harry is kind. Harry is smart. Harry is white. Furry, round people are kind. If someone is cold and smart then they are white. White people are furry. All green people are cold. All cold people are green. Furry, smart people are round. Green people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-963_Q11", "context": "The bear is green. The lion eats the squirrel. The lion is rough. The lion likes the tiger. The lion sees the bear. The lion sees the tiger. The squirrel eats the lion. The squirrel is red. The squirrel sees the tiger. The tiger eats the lion. The tiger likes the squirrel. The tiger sees the lion. If someone likes the bear and they eat the squirrel then the squirrel likes the lion. If someone is green then they eat the tiger. If the tiger likes the squirrel and the tiger likes the bear then the bear sees the lion. If the lion is kind then the lion likes the squirrel. If someone sees the lion then they see the tiger. If the bear is red then the bear eats the lion. If someone is red and they eat the tiger then the tiger likes the bear. If someone eats the squirrel then the squirrel is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear sees the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-172_Q3", "context": "The bear is green. The bear is red. The bear likes the dog. The bear needs the dog. The bear needs the squirrel. The dog is rough. The dog likes the squirrel. The dog needs the bear. The dog needs the squirrel. The rabbit does not like the bear. The squirrel is rough. The squirrel needs the bear. The squirrel needs the rabbit. The squirrel does not visit the rabbit. If someone is nice and they visit the rabbit then the rabbit needs the bear. If someone is nice then they like the rabbit. If someone is red and they visit the dog then they are not green. If someone likes the rabbit then the rabbit is rough. If someone is green and they do not like the bear then the bear does not visit the squirrel. If someone visits the squirrel and they need the squirrel then they like the squirrel. Rough people are nice. If someone likes the bear then they need the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-8_Q8", "context": "Anne is quiet. Bob is furry. Bob is rough. Bob is white. Dave is round. Dave is white. Erin is white. All round, quiet things are nice. Furry things are rough. All round things are furry. If Erin is quiet and Erin is round then Erin is not furry. All rough things are quiet. If Dave is quiet and Dave is big then Dave is not white. If something is white and nice then it is not big.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-725_Q20", "context": "The cat is red. The cat likes the lion. The cat does not need the rabbit. The cat sees the rabbit. The dog likes the rabbit. The lion is blue. The lion is not young. The rabbit is not nice. The rabbit likes the dog. The rabbit does not like the lion. If the rabbit sees the cat then the cat does not like the dog. If something sees the cat then the cat is not blue. If something is young and it sees the rabbit then it does not see the cat. If something is blue then it sees the cat. If something is rough and it likes the lion then the lion does not need the cat. If something sees the cat then it needs the dog. If something sees the lion and the lion likes the rabbit then it sees the rabbit. If something needs the dog then the dog is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit sees the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-823_Q10", "context": "Charlie is furry. Charlie is green. Charlie is nice. Charlie is quiet. Charlie is rough. Charlie is white. Erin is green. Fiona is nice. Fiona is rough. Fiona is white. Fiona is young. Harry is furry. Harry is rough. Harry is white. Rough things are furry. If something is quiet then it is white. If Harry is green and Harry is rough then Harry is nice. White things are young. Rough things are young. If something is rough and green then it is quiet. If something is green then it is quiet. Rough, furry things are white. If something is green and young then it is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-87_Q2", "context": "Bob is blue. Bob is furry. Bob is rough. Bob is not smart. Bob is not young. Dave is furry. Dave is kind. Dave is red. Dave is young. Erin is young. Gary is blue. Gary is kind. Gary is rough. Gary is smart. Kind things are red. If Erin is furry and Erin is young then Erin is smart. All rough things are kind. All young things are rough. If something is red then it is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-42_Q4", "context": "Charlie is cold. Charlie is green. Dave is not cold. Dave is nice. Dave is red. Dave is round. Gary is cold. Gary is green. Harry is cold. Harry is not green. Harry is nice. Harry is not red. All green, round people are rough. All red people are round. If Charlie is round then Charlie is cold. If someone is young and round then they are green. All rough people are red. Nice, green people are red. If someone is red then they are nice. If someone is rough and red then they are young. If Charlie is cold then Charlie is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-917_Q17", "context": "The bear visits the cow. The bear visits the tiger. The cow is red. The cow is rough. The cow visits the bear. The cow visits the dog. The dog chases the bear. The dog is cold. The dog is rough. The dog is young. The dog likes the tiger. The tiger is cold. The tiger is young. The tiger visits the bear. If someone likes the cow then they are red. If someone visits the bear then the bear chases the cow. If someone chases the tiger and they like the dog then they like the bear. If someone likes the tiger then they chase the tiger. If the tiger likes the bear and the bear is cold then the bear is red. If someone chases the bear and they are young then they are nice. If someone likes the bear then the bear is nice. If someone is nice then they like the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not chase the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-464_Q3", "context": "Dave is green. Dave is smart. Erin is big. Erin is blue. Erin is nice. Erin is red. Fiona is big. Fiona is nice. Gary is red. Gary is round. If someone is big then they are round. All red, nice people are big. All smart, green people are blue. All red people are green. If someone is nice then they are round. Red, blue people are big. If someone is round then they are red. Green, red people are smart. Green people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-841_Q19", "context": "Anne is cold. Anne is quiet. Bob is green. Erin is green. Erin is kind. Erin is quiet. Erin is round. Erin is smart. Fiona is cold. Fiona is green. Fiona is quiet. Fiona is round. If Bob is round and Bob is quiet then Bob is kind. If someone is cold then they are green. If someone is green then they are round. All green, kind people are smart. Round people are quiet. All smart people are red. If someone is green and not kind then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-864_Q14", "context": "Bob is kind. Charlie is not blue. Charlie is green. Charlie is not white. Dave is big. Gary is big. Gary is round. All green, kind people are smart. If someone is big and kind then they are round. Smart, green people are big. If someone is blue and not kind then they are green. If someone is kind then they are green. If someone is round then they are not white. If Dave is white and Dave is not big then Dave is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-581_Q11", "context": "Anne is red. Anne is young. Dave is cold. Dave is red. Dave is rough. Erin is rough. Erin is smart. Gary is green. Gary is quiet. Gary is red. Gary is smart. If Erin is cold and Erin is green then Erin is quiet. If someone is red and not young then they are rough. If someone is smart and quiet then they are rough. If someone is green then they are quiet. Quiet, green people are cold. Young, quiet people are green. Cold people are smart. If Anne is young then Anne is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-363_Q8", "context": "Anne is nice. Anne is rough. Anne is smart. Anne is white. Dave is kind. Dave is red. Dave is rough. Dave is smart. Dave is white. Fiona is kind. Fiona is nice. Fiona is rough. Fiona is smart. Fiona is white. Gary is big. Gary is kind. Red, nice people are smart. Smart people are nice. If someone is red then they are kind. If someone is white then they are kind. If someone is kind and big then they are white. Nice, kind people are white. White people are smart. If someone is white and nice then they are red. All red people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-1022_Q4", "context": "The bald eagle is nice. The bald eagle visits the squirrel. The lion is blue. The lion is young. The squirrel likes the tiger. The tiger likes the bald eagle. The tiger visits the squirrel. If someone is blue then they chase the bald eagle. If someone is young then they visit the bald eagle. If someone visits the bald eagle then they visit the tiger. If someone is young then they chase the squirrel. If the tiger chases the lion and the tiger visits the squirrel then the squirrel likes the bald eagle. If someone chases the squirrel then they like the squirrel. If someone visits the tiger then the tiger is young. If someone likes the lion then the lion is young.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not chase the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-768_Q2", "context": "Anne is big. Anne is cold. Anne is green. Bob is furry. Bob is kind. Bob is smart. Dave is cold. Dave is kind. Harry is big. Harry is cold. Harry is kind. Smart things are big. If something is quiet and smart then it is green. All green, quiet things are furry. If something is cold and kind then it is quiet. All big, quiet things are cold. Quiet, kind things are big. All furry, quiet things are cold. All green, smart things are quiet. Big things are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-342_Q7", "context": "The bald eagle eats the rabbit. The bald eagle is cold. The bald eagle needs the dog. The dog is cold. The dog sees the squirrel. The rabbit eats the dog. The squirrel is big. The squirrel is green. The squirrel is nice. The squirrel sees the bald eagle. If someone eats the rabbit and they are blue then they are not green. If the bald eagle is nice then the bald eagle needs the squirrel. If someone sees the bald eagle and they see the rabbit then the bald eagle is nice. If someone sees the bald eagle then they see the rabbit. If someone sees the squirrel and they eat the bald eagle then they need the rabbit. If someone needs the squirrel and the squirrel sees the rabbit then the rabbit sees the bald eagle. If the bald eagle eats the squirrel then the squirrel is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle needs the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-863_Q2", "context": "The cow is round. The cow does not visit the rabbit. The lion is big. The mouse chases the cow. The mouse chases the lion. The mouse is nice. The mouse needs the cow. The mouse needs the rabbit. The rabbit chases the cow. The rabbit is not nice. The rabbit needs the lion. If something chases the mouse and the mouse does not need the cow then the cow does not visit the rabbit. If something chases the lion and the lion visits the mouse then it chases the mouse. If something is young then it visits the mouse. If something visits the lion then it does not visit the mouse. If something visits the mouse then the mouse needs the lion. If something needs the lion then it is young. If something is big then it does not need the mouse. If something is round and it chases the cow then it needs the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-579_Q4", "context": "The cow eats the mouse. The cow needs the dog. The dog eats the cow. The dog eats the mouse. The dog is blue. The dog is young. The mouse eats the dog. The mouse is rough. The mouse sees the dog. The squirrel needs the dog. The squirrel sees the cow. If someone needs the squirrel then the squirrel needs the cow. If someone needs the dog then the dog sees the mouse. If someone needs the cow then the cow sees the mouse. If someone is red and they eat the squirrel then they are kind. If someone eats the dog and they are rough then the dog is rough. If someone is young then they need the dog. If someone sees the mouse and they need the mouse then they are kind. If someone sees the mouse then they need the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-395_Q7", "context": "The bald eagle is kind. The bald eagle is rough. The bald eagle likes the cat. The cat is round. The cat likes the bald eagle. The cat likes the tiger. The cat needs the tiger. The lion is rough. The lion needs the cat. The tiger chases the bald eagle. The tiger is big. The tiger is kind. The tiger is round. The tiger likes the cat. The tiger likes the lion. The tiger needs the bald eagle. If the cat likes the tiger then the cat likes the lion. If the cat needs the lion then the lion likes the bald eagle. If something chases the tiger and it chases the lion then it is big. If something chases the lion then it needs the lion. If something likes the bald eagle then it chases the lion. If something chases the lion then it is kind. If something needs the lion then it likes the lion. If something likes the cat and it chases the lion then it chases the tiger. If something chases the lion and it needs the cat then the cat likes the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion likes the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-765_Q21", "context": "The cat is big. The cat is green. The cat is kind. The cow sees the dog. The dog eats the cat. The dog sees the cow. The dog visits the cat. The lion eats the cow. The lion eats the dog. The lion visits the cat. If someone is rough then they see the cow. If someone visits the cat and the cat is rough then the cat eats the lion. If someone is rough then they visit the cow. If someone eats the lion and they are big then the lion is kind. If someone sees the lion then the lion visits the cat. All kind people are rough. If someone is green and they visit the cow then the cow visits the lion. If the cat visits the lion and the lion sees the cat then the lion sees the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-991_Q2", "context": "The bear is young. The bear needs the dog. The bear sees the dog. The bear sees the lion. The dog eats the mouse. The dog is kind. The dog is young. The lion eats the bear. The lion is blue. The lion is cold. The lion needs the bear. The lion needs the dog. The mouse sees the bear. The mouse sees the dog. If something eats the bear and it sees the dog then it is rough. If something eats the mouse then it sees the mouse. If the dog sees the mouse then the mouse is blue. If something eats the bear and it is kind then the bear sees the lion. If something sees the mouse then it is young. If something is blue then it needs the mouse. If something is rough and it eats the bear then it sees the bear. If something is kind then it sees the mouse. If something is blue then it is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not see the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1057_Q19", "context": "Anne is big. Anne is not blue. Anne is kind. Anne is rough. Bob is white. Erin is kind. Harry is green. If Anne is white then Anne is young. Blue, white people are rough. If someone is young then they are rough. White people are big. All big people are green. If Harry is green and Harry is white then Harry is young. If Anne is not white then Anne is green. Green people are kind. Kind, green people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1107_Q16", "context": "Bob is big. Bob is cold. Bob is smart. Bob is young. Charlie is red. Charlie is smart. Dave is round. Dave is smart. Dave is not young. Erin is not cold. Erin is not red. Erin is not smart. Smart, round people are furry. Smart people are furry. Young, smart people are big. Big, round people are cold. If someone is furry and smart then they are cold. Red, cold people are young. If someone is red and round then they are smart. All round, furry people are smart. All big, cold people are not round.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-769_Q6", "context": "The cat eats the squirrel. The cat likes the mouse. The cat likes the squirrel. The mouse eats the rabbit. The mouse is kind. The mouse is rough. The mouse sees the squirrel. The rabbit sees the squirrel. The squirrel eats the rabbit. The squirrel likes the cat. The squirrel likes the mouse. The squirrel likes the rabbit. If something sees the cat then it sees the mouse. If something sees the rabbit and the rabbit is big then the rabbit is nice. If something likes the mouse and it sees the mouse then the mouse likes the cat. If something sees the cat and it is nice then the cat likes the squirrel. If something sees the mouse then the mouse is nice. If something eats the mouse and it eats the rabbit then the rabbit is rough. If the squirrel sees the mouse then the mouse likes the rabbit. If something likes the rabbit then it sees the cat. If something likes the squirrel then the squirrel sees the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not see the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-778_Q24", "context": "The bear chases the cat. The bear needs the cat. The bear sees the cat. The bear sees the tiger. The cat chases the tiger. The cat is kind. The cat is red. The cat needs the tiger. The mouse is kind. The mouse needs the bear. The mouse sees the bear. The tiger sees the mouse. Kind, cold people are green. If someone chases the tiger then they see the bear. If someone needs the cat and the cat chases the mouse then they are kind. If someone is kind then they see the cat. If the tiger sees the cat then the cat is red. If someone sees the mouse and the mouse is green then they see the cat. If someone sees the cat and they see the mouse then the cat chases the mouse. If someone is kind then they see the mouse. If someone sees the mouse then they chase the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat needs the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-337_Q19", "context": "The bald eagle eats the lion. The bald eagle is cold. The bald eagle is green. The bald eagle is nice. The cat chases the bald eagle. The cat needs the bald eagle. The cat needs the rabbit. The lion does not eat the cat. The lion eats the rabbit. The lion is nice. The lion needs the bald eagle. The lion needs the cat. The lion needs the rabbit. The rabbit is cold. If something eats the bald eagle then it needs the lion. If something is blue then it chases the lion. If the lion needs the bald eagle and the lion is young then the bald eagle does not eat the cat. If something chases the bald eagle then it is green. If something needs the cat then it is not young. If something is green and it chases the bald eagle then the bald eagle is blue. If something eats the bald eagle then the bald eagle is not blue. If something chases the lion then it needs the cat. If something needs the cat then it eats the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not eat the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-875_Q8", "context": "Anne is big. Anne is cold. Anne is furry. Anne is white. Anne is young. Bob is rough. Bob is young. Dave is rough. Gary is cold. Gary is furry. All rough things are young. Quiet, furry things are big. If something is furry then it is quiet. If something is rough and young then it is furry. If something is rough and big then it is white. If something is big and quiet then it is furry. If Gary is furry then Gary is white.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-227_Q3", "context": "Anne is blue. Anne is white. Charlie is big. Charlie is red. Charlie is round. Charlie is white. Charlie is young. Erin is nice. Erin is young. Harry is big. Harry is young. If something is red and blue then it is nice. All young things are big. All white, young things are nice. If something is nice and round then it is young. All nice, white things are round. Blue, big things are white. If something is blue then it is red. All big, young things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1005_Q20", "context": "Charlie is blue. Dave is quiet. Dave is smart. Erin is nice. Fiona is nice. Fiona is rough. Fiona is smart. If someone is young and big then they are smart. If someone is quiet then they are young. If someone is blue then they are big. If Charlie is blue and Charlie is big then Charlie is quiet. If Fiona is smart and Fiona is nice then Fiona is big. Smart people are quiet. All smart, young people are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-1_Q1", "context": "The bald eagle sees the bear. The bear is red. The bear is round. The bear likes the cow. The bear needs the cow. The cow is rough. The cow likes the bald eagle. The cow likes the bear. The cow needs the bear. The lion likes the cow. The lion needs the bear. If something sees the cow and the cow is kind then it likes the bear. If something is red then it sees the bald eagle. If something sees the bear and the bear likes the bald eagle then the bald eagle sees the lion. If something sees the bald eagle and it is round then it sees the lion. If something likes the bear and the bear is kind then it needs the lion. If something needs the bear then it is kind. If something sees the lion then it sees the cow. If something likes the bear and it is round then it likes the bald eagle. If something needs the cow and it likes the bald eagle then it is red.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-359_Q10", "context": "The bear chases the cat. The bear eats the cat. The bear is red. The cat eats the bear. The cat is green. The cat is young. The cat visits the rabbit. The cat visits the tiger. The rabbit eats the cat. The rabbit eats the tiger. The rabbit is not round. The rabbit visits the bear. The tiger chases the rabbit. The tiger eats the rabbit. The tiger is not green. The tiger visits the cat. All red people are green. If someone is green then they are red. If the tiger eats the cat then the cat does not chase the bear. If the tiger is young and the tiger eats the bear then the bear eats the cat. If the rabbit visits the cat and the cat chases the bear then the cat eats the rabbit. If someone visits the cat and the cat is red then they eat the cat. If someone is kind then they chase the rabbit. If someone visits the cat and they are kind then the cat chases the rabbit. If someone eats the cat and the cat does not chase the bear then the cat is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-694_Q12", "context": "Bob is big. Bob is cold. Bob is nice. Erin is nice. Erin is rough. Erin is round. Fiona is furry. Gary is green. Gary is nice. Gary is round. All big, rough things are cold. All cold, rough things are furry. If something is rough and nice then it is furry. If something is furry then it is big. If something is rough then it is round. If something is green and big then it is round. If something is big then it is green. All furry, round things are rough. Green things are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-647_Q7", "context": "The bear needs the tiger. The dog chases the tiger. The dog is kind. The dog is red. The dog needs the bear. The dog sees the lion. The lion does not see the bear. The lion does not see the dog. The tiger is not big. The tiger needs the lion. The tiger sees the lion. If the bear needs the tiger then the tiger needs the dog. If something chases the lion then it is big. If something needs the bear then it sees the dog. If something needs the lion and the lion does not see the tiger then the lion is red. If something is blue and it sees the lion then it is red. If something is big then it chases the dog. If something needs the lion and it sees the dog then the dog is not red. If something sees the dog then it is rough. If something is rough and red then it chases the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog chases the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-766_Q4", "context": "Charlie is red. Charlie is white. Erin is kind. Erin is round. Erin is white. Fiona is green. Fiona is kind. Fiona is round. Harry is furry. Harry is kind. Harry is red. Harry is white. If Harry is round and Harry is green then Harry is white. All round, red people are blue. If someone is blue and red then they are kind. If someone is furry and kind then they are blue. If someone is green then they are furry. If someone is red then they are round. All kind, white people are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-243_Q19", "context": "Bob is big. Bob is not cold. Bob is nice. Bob is rough. Bob is smart. Dave is rough. Erin is not big. Erin is cold. Erin is rough. Gary is round. All smart people are young. If Gary is round then Gary is smart. If someone is young then they are rough. Young people are big. If someone is cold and not young then they are big. Big people are nice. All young, cold people are nice. If someone is nice and young then they are not cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1145_Q12", "context": "Anne is big. Anne is cold. Erin is not green. Erin is smart. Gary is big. Gary is round. Harry is cold. Harry is green. Harry is kind. Harry is quiet. Harry is round. If Harry is cold and Harry is green then Harry is kind. If someone is cold and big then they are kind. If Gary is big then Gary is green. All kind, quiet people are smart. If someone is cold and kind then they are quiet. If someone is green then they are cold. Round, quiet people are big. If Anne is not green then Anne is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-834_Q2", "context": "The bald eagle eats the tiger. The cat chases the mouse. The cat chases the tiger. The cat is nice. The cat sees the tiger. The mouse chases the tiger. The tiger chases the bald eagle. The tiger eats the bald eagle. The tiger eats the mouse. The tiger is green. The tiger is nice. The tiger is red. The tiger sees the bald eagle. The tiger sees the mouse. If someone is nice then they eat the tiger. If someone sees the cat and they chase the bald eagle then the bald eagle sees the tiger. If someone is kind and they see the mouse then they chase the bald eagle. If someone is young then they see the mouse. If someone chases the bald eagle then the bald eagle chases the cat. If someone chases the bald eagle and they eat the tiger then the bald eagle is young. If someone sees the mouse then they are kind. If someone sees the cat and the cat is nice then the cat chases the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not eat the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-344_Q24", "context": "The bald eagle likes the rabbit. The mouse does not see the bald eagle. The rabbit is kind. The rabbit is red. The rabbit likes the bald eagle. The squirrel is nice. The squirrel sees the mouse. If something sees the squirrel then it likes the squirrel. Cold things are kind. If the rabbit likes the bald eagle then the rabbit sees the mouse. If the rabbit likes the squirrel then the squirrel is red. If the mouse chases the squirrel then the squirrel is blue. If the squirrel chases the mouse then the mouse is cold. If something is red then it sees the squirrel. If something is kind and not blue then it chases the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit sees the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-880_Q7", "context": "Anne is furry. Anne is rough. Anne is smart. Dave is not cold. Dave is rough. Erin is furry. Fiona is smart. If Dave is white then Dave is smart. All rough people are white. If Dave is red then Dave is furry. If Fiona is cold and Fiona is not white then Fiona is not furry. If Erin is rough and Erin is smart then Erin is not red. If Fiona is young and Fiona is furry then Fiona is cold. If someone is cold and not white then they are smart. If someone is furry then they are young. If someone is smart and white then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-448_Q13", "context": "Bob is quiet. Bob is white. Charlie is furry. Charlie is quiet. Dave is furry. Dave is quiet. Harry is cold. Harry is quiet. Harry is rough. Harry is round. Harry is white. Quiet things are round. All big things are furry. All round things are quiet. If something is cold then it is rough. If Harry is cold and Harry is furry then Harry is big. Big, white things are cold. All rough, round things are big. If something is cold and furry then it is quiet. If something is round and quiet then it is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-319_Q8", "context": "Anne is rough. Anne is white. Charlie is green. Fiona is big. Fiona is furry. Fiona is quiet. Fiona is white. Harry is not quiet. Harry is not rough. Harry is not smart. Harry is white. If something is green then it is quiet. Rough things are big. If something is smart and furry then it is big. All big, furry things are green. Big, quiet things are smart. If Charlie is quiet then Charlie is smart. If something is smart and not rough then it is furry. All big things are furry. If Anne is green then Anne is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-582_Q12", "context": "The bald eagle is green. The bald eagle is not round. The bald eagle likes the squirrel. The cat does not chase the rabbit. The cat is not green. The cat is not round. The cat likes the bald eagle. The cat does not like the rabbit. The cat visits the squirrel. The rabbit chases the bald eagle. The rabbit is red. The rabbit is round. The rabbit likes the cat. The rabbit likes the squirrel. The squirrel chases the cat. The squirrel visits the bald eagle. If something likes the rabbit and the rabbit likes the cat then the cat visits the bald eagle. If the rabbit likes the bald eagle then the bald eagle likes the rabbit. If the bald eagle visits the cat and the cat visits the rabbit then the bald eagle visits the squirrel. If something chases the bald eagle then the bald eagle chases the rabbit. If the squirrel likes the rabbit and the squirrel does not like the cat then the squirrel likes the bald eagle. If something is nice then it chases the cat. If something visits the bald eagle then it chases the squirrel. If something is green then it visits the cat. If the bald eagle chases the rabbit then the rabbit likes the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not chase the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-214_Q20", "context": "The bald eagle eats the bear. The bald eagle is round. The bald eagle likes the cow. The bear likes the bald eagle. The bear likes the cow. The cow is nice. The cow is rough. The cow likes the bald eagle. The rabbit eats the bear. The rabbit is cold. The rabbit likes the cow. The rabbit visits the bald eagle. The rabbit visits the bear. The rabbit visits the cow. If someone is nice and they eat the bear then the bear eats the cow. If someone likes the bald eagle then they like the bear. If someone likes the bear then they are nice. If someone is nice and they eat the cow then they are cold. If someone visits the bald eagle then they like the cow. If the rabbit eats the bear and the bear visits the cow then the cow visits the rabbit. If someone visits the cow then they like the bald eagle. Green people are cold. If someone likes the bald eagle then the bald eagle is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear eats the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-355_Q9", "context": "The bear is kind. The bear is round. The dog is red. The dog is round. The rabbit is red. The squirrel is rough. The squirrel needs the bear. If something eats the squirrel and the squirrel eats the rabbit then the squirrel is kind. If something is kind then it needs the squirrel. If something is cold and it needs the rabbit then it is round. If something needs the squirrel then it is red. All cold things are round. If the bear visits the squirrel and the squirrel eats the bear then the squirrel eats the dog. All rough things are cold. All round things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel needs the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-47_Q9", "context": "Anne is blue. Dave is blue. Dave is cold. Dave is green. Dave is nice. Dave is red. Dave is rough. Dave is young. Erin is blue. Erin is rough. Harry is red. Harry is young. If someone is nice then they are blue. All nice people are blue. All cold people are nice. Rough people are cold. If someone is rough and young then they are red. Cold, nice people are green. Red people are rough. Rough, red people are young. Green, rough people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1318_Q14", "context": "Anne is blue. Anne is rough. Anne is smart. Bob is blue. Bob is cold. Bob is nice. Gary is nice. Harry is big. Harry is blue. Harry is cold. Harry is nice. Harry is red. Harry is rough. Harry is smart. Cold, blue people are rough. All smart, nice people are blue. All nice, blue people are cold. If someone is nice then they are big. Red people are smart. All nice, red people are smart. All big, blue people are cold. If someone is big and nice then they are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-714_Q13", "context": "Bob is blue. Bob is not quiet. Bob is white. Dave is quiet. Dave is smart. Dave is white. Erin is not blue. Erin is quiet. Erin is white. Harry is green. All green people are red. All quiet, green people are blue. If Bob is quiet then Bob is not red. Green people are quiet. Blue people are not smart. If Harry is white then Harry is not big. If someone is quiet and not smart then they are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-382_Q14", "context": "The bald eagle is nice. The bald eagle needs the mouse. The mouse likes the rabbit. The mouse needs the bald eagle. The rabbit is cold. The rabbit likes the bald eagle. The rabbit likes the squirrel. The rabbit needs the mouse. The rabbit visits the squirrel. The squirrel is cold. The squirrel is nice. The squirrel needs the mouse. The squirrel visits the bald eagle. The squirrel visits the mouse. If someone needs the mouse and they are rough then they need the rabbit. All blue people are big. If someone visits the mouse and they like the rabbit then the rabbit is big. If someone needs the mouse then they are rough. If someone likes the squirrel and they like the rabbit then they are blue. If someone visits the mouse and they need the rabbit then the mouse likes the squirrel. If someone is rough then they are nice. If someone visits the rabbit then they are big.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-1013_Q22", "context": "The bald eagle chases the squirrel. The lion chases the rabbit. The lion is red. The lion sees the rabbit. The lion visits the bald eagle. The lion visits the squirrel. The rabbit is red. The rabbit visits the squirrel. The squirrel is round. The squirrel sees the lion. The squirrel visits the bald eagle. The squirrel visits the rabbit. If someone visits the lion and they are blue then they visit the rabbit. If someone visits the lion then the lion chases the rabbit. If someone is red and they see the lion then they are young. If someone is young then they chase the bald eagle. If someone chases the bald eagle and they chase the rabbit then the bald eagle visits the squirrel. If someone visits the squirrel then they are young. If the rabbit is round then the rabbit visits the bald eagle. If someone visits the squirrel then they see the rabbit. If someone visits the bald eagle and the bald eagle chases the squirrel then they visit the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion chases the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-415_Q6", "context": "The cat is blue. The cat is cold. The cat is young. The cat does not like the dog. The cat sees the mouse. The dog is rough. The dog sees the cat. The mouse likes the dog. The mouse does not see the squirrel. The mouse does not visit the dog. The mouse visits the squirrel. The squirrel is big. The squirrel is rough. The squirrel does not like the dog. The squirrel visits the dog. The squirrel does not visit the mouse. If someone likes the mouse then they are young. If someone likes the mouse and they are cold then the mouse likes the squirrel. If someone visits the cat and the cat sees the mouse then the mouse does not like the cat. If someone sees the dog then they like the dog. If someone is young then they like the squirrel. If someone is blue then they see the squirrel. If someone visits the mouse then they like the mouse. If someone likes the squirrel then they visit the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not visit the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-784_Q5", "context": "The dog is round. The dog visits the lion. The lion is blue. The lion is rough. The lion is round. The lion needs the dog. The mouse chases the dog. The mouse chases the lion. The mouse needs the squirrel. The mouse visits the squirrel. The squirrel chases the mouse. If someone visits the lion then they chase the dog. If someone chases the lion then the lion is rough. If someone is green then they are big. If someone is big then they are blue. If someone is blue then they chase the squirrel. If someone chases the dog then they are green.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-374_Q8", "context": "The cat chases the mouse. The cat chases the rabbit. The cat is rough. The cow likes the rabbit. The mouse chases the cow. The mouse is round. The mouse likes the cat. The mouse likes the rabbit. The rabbit chases the cow. The rabbit eats the mouse. The rabbit likes the mouse. If something is rough and it likes the mouse then the mouse chases the rabbit. If the rabbit eats the cow and the rabbit is kind then the cow likes the cat. If something is red then it is young. If something is young then it likes the cow. If something chases the cat and it is round then it is red. If something is rough then it eats the cat. If something is round then it chases the cat. If something likes the cow then it chases the mouse. If something likes the rabbit and the rabbit is kind then it chases the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-237_Q11", "context": "Anne is blue. Anne is cold. Anne is quiet. Anne is rough. Anne is round. Bob is quiet. Bob is smart. Dave is quiet. Dave is smart. Gary is rough. Gary is smart. If someone is smart and kind then they are rough. If Gary is rough and Gary is blue then Gary is kind. All rough people are blue. If someone is smart then they are round. If Dave is quiet and Dave is rough then Dave is kind. Cold people are kind. If someone is blue and cold then they are kind. Round people are cold. All quiet people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-934_Q2", "context": "The bear is big. The bear sees the cat. The cat sees the bear. The cat visits the bear. The cat visits the mouse. The dog chases the cat. The dog is rough. The dog visits the mouse. The mouse chases the dog. The mouse is big. The mouse sees the dog. If someone is kind then they visit the cat. If someone sees the dog and the dog sees the cat then they visit the bear. If the bear visits the cat and the bear is red then the cat chases the mouse. If someone sees the bear and they see the dog then the dog is big. If someone visits the mouse then the mouse visits the cat. If someone is rough then they visit the bear. If someone sees the mouse and they visit the mouse then they see the cat. If someone chases the mouse then the mouse sees the dog. If someone visits the bear then they see the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1002_Q16", "context": "Anne is cold. Charlie is furry. Charlie is young. Erin is cold. Erin is red. Fiona is big. Fiona is kind. Cold people are big. All cold, kind people are young. If Fiona is big and Fiona is red then Fiona is furry. Green, young people are cold. If Fiona is green then Fiona is furry. If someone is furry then they are kind. If Charlie is kind then Charlie is red. Red, young people are green. If Fiona is kind then Fiona is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-92_Q10", "context": "The bald eagle is cold. The bald eagle is kind. The bald eagle does not see the bear. The bald eagle visits the lion. The bear is big. The lion is big. The lion is not young. The squirrel eats the lion. The squirrel does not see the bald eagle. The squirrel sees the bear. The squirrel visits the bald eagle. If someone is green and big then they visit the bald eagle. If someone visits the bear and the bear is big then they visit the bald eagle. If someone visits the bald eagle and they are big then the bald eagle eats the bear. If someone eats the bear then the bear is green. If someone eats the lion then the lion eats the bear. If someone eats the lion then they are young. If someone sees the bear then they do not eat the bear. If someone is kind and they do not visit the squirrel then they are cold. If someone is green and they visit the bald eagle then they eat the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not eat the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-41_Q12", "context": "Bob is round. Charlie is cold. Charlie is round. Charlie is white. Erin is cold. Erin is quiet. Erin is round. Harry is cold. Harry is round. Harry is smart. If something is green then it is smart. Quiet, round things are big. All big, white things are cold. If something is white then it is quiet. Smart things are quiet. Round things are big. Big things are white. If something is quiet then it is green. If Charlie is round and Charlie is green then Charlie is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-520_Q10", "context": "Anne is cold. Anne is smart. Bob is big. Bob is cold. Bob is nice. Bob is not rough. Bob is smart. Charlie is not cold. Charlie is nice. Charlie is rough. Charlie is smart. Gary is quiet. Rough people are nice. Rough, big people are nice. If someone is furry and quiet then they are big. If Anne is furry and Anne is smart then Anne is quiet. All big people are furry. If someone is cold and quiet then they are rough. If Anne is smart then Anne is big. If someone is rough then they are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-1016_Q2", "context": "The bald eagle likes the cat. The bald eagle visits the cat. The cat is round. The rabbit likes the cat. The squirrel is young. The squirrel likes the cat. The squirrel needs the cat. If the rabbit is kind then the rabbit likes the cat. If someone is young then they like the squirrel. If someone is nice and they do not visit the cat then they like the rabbit. If someone likes the rabbit then they visit the rabbit. If someone needs the bald eagle then the bald eagle is young. If someone likes the cat then they are nice. If someone is young and they like the squirrel then they need the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not like the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-28_Q15", "context": "Anne is big. Anne is quiet. Anne is smart. Charlie is rough. Gary is red. Gary is white. Harry is quiet. Rough things are round. Round, white things are rough. White, red things are smart. All big things are quiet. All quiet, red things are white. Red, smart things are big. Round things are smart. Quiet things are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-593_Q8", "context": "The bear does not chase the rabbit. The bear does not eat the tiger. The bear is green. The bear is rough. The bear likes the mouse. The mouse does not chase the rabbit. The mouse chases the tiger. The mouse eats the rabbit. The mouse eats the tiger. The mouse is not blue. The mouse is red. The mouse likes the bear. The mouse likes the rabbit. The rabbit eats the mouse. The rabbit likes the tiger. The tiger likes the mouse. Rough things are red. If something is rough and it eats the tiger then the tiger is rough. If something likes the tiger then it is rough. If something eats the bear and the bear eats the tiger then the bear chases the mouse. If something is cold and red then it eats the rabbit. If something eats the bear then it is blue. If something is red then it chases the mouse. If something chases the mouse and the mouse likes the rabbit then it likes the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-445_Q23", "context": "The bald eagle is nice. The mouse chases the rabbit. The mouse eats the squirrel. The mouse needs the rabbit. The rabbit chases the bald eagle. The rabbit is nice. The rabbit needs the squirrel. The squirrel chases the bald eagle. The squirrel eats the bald eagle. The squirrel eats the mouse. The squirrel needs the mouse. If something eats the bald eagle then it chases the mouse. If something eats the squirrel then the squirrel eats the bald eagle. If something chases the mouse then it eats the rabbit. If the squirrel eats the rabbit then the rabbit eats the bald eagle. If something is cold then it needs the bald eagle. If something is cold then it eats the mouse. If the bald eagle needs the mouse then the bald eagle is cold. If something eats the squirrel and the squirrel needs the mouse then it is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not chase the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-661_Q17", "context": "Charlie is furry. Charlie is rough. Dave is big. Dave is quiet. Dave is red. Dave is smart. Erin is rough. Erin is round. Erin is smart. Gary is quiet. If someone is round and big then they are furry. Big people are furry. If someone is quiet then they are furry. Big, smart people are quiet. If someone is round and smart then they are red. All red, furry people are big. If someone is red then they are round. If someone is furry then they are smart. If Gary is smart then Gary is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-670_Q9", "context": "The bald eagle eats the dog. The bald eagle is not green. The bald eagle does not need the dog. The bald eagle needs the rabbit. The bald eagle does not visit the dog. The dog is green. The dog needs the bald eagle. The rabbit eats the squirrel. The rabbit is not young. The rabbit needs the dog. The squirrel is kind. If someone needs the squirrel then the squirrel needs the bald eagle. If someone eats the rabbit then they are young. If the dog is green and the dog needs the rabbit then the dog visits the rabbit. Nice people are not green. If the dog is green then the dog eats the bald eagle. If the dog is not young then the dog eats the bald eagle. If someone is green and they eat the dog then the dog needs the bald eagle. If someone eats the bald eagle then they need the rabbit. If someone visits the rabbit then the rabbit is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1177_Q3", "context": "Dave is cold. Dave is white. Erin is green. Erin is white. Gary is quiet. Gary is red. Harry is not kind. If something is cold then it is green. If something is kind then it is green. If something is kind then it is red. All white, quiet things are cold. All green things are not kind. If Harry is white then Harry is blue. Blue things are white. All red things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-797_Q11", "context": "The cow needs the lion. The dog eats the cow. The dog is round. The dog needs the tiger. The lion needs the dog. The lion visits the tiger. The tiger eats the cow. If something eats the cow then it visits the lion. If something visits the lion then the lion is green. If something eats the lion then the lion needs the cow. If something eats the dog then it is green. If something needs the dog and it needs the lion then the dog eats the tiger. If something eats the tiger then the tiger is green. If something is green then it eats the tiger. If something is green then it does not visit the cow. If the lion visits the dog and the dog is green then the lion does not eat the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not visit the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-317_Q16", "context": "The cow chases the dog. The cow chases the lion. The cow chases the rabbit. The cow is nice. The cow visits the dog. The dog chases the lion. The dog chases the rabbit. The dog is kind. The lion chases the dog. The lion chases the rabbit. The lion is rough. The lion visits the cow. The lion visits the rabbit. The rabbit is kind. The rabbit is round. The rabbit visits the dog. If the lion eats the dog then the dog visits the lion. If someone visits the cow and they visit the rabbit then they are round. If someone chases the dog and the dog is kind then they are red. If someone chases the rabbit and they are rough then they eat the lion. If someone chases the dog then they are rough. If someone eats the lion then they are nice. If someone is nice and kind then they chase the dog. If someone visits the rabbit and they eat the lion then the rabbit eats the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-585_Q11", "context": "Anne is quiet. Anne is smart. Bob is blue. Bob is nice. Bob is quiet. Bob is red. Bob is smart. Bob is young. Charlie is smart. Charlie is young. Harry is blue. If something is young and not blue then it is nice. If something is red then it is nice. If something is nice and smart then it is young. Red, blue things are quiet. If something is white then it is quiet. Blue things are white. Quiet, blue things are red. If Anne is white and Anne is smart then Anne is red. Quiet things are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1360_Q14", "context": "Bob is kind. Bob is rough. Bob is round. Erin is green. Erin is red. Erin is rough. Erin is smart. Gary is kind. Gary is rough. Harry is nice. Harry is rough. Harry is smart. All rough things are nice. If something is red then it is smart. Smart, red things are round. If something is green then it is kind. All nice, red things are rough. All red, round things are green. If Gary is green then Gary is kind. All kind, nice things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-420_Q9", "context": "The bear sees the lion. The cow chases the lion. The cow is kind. The cow is nice. The cow sees the lion. The lion chases the cow. The lion is not red. The squirrel is not nice. The squirrel is red. The squirrel needs the cow. The squirrel needs the lion. If the bear is blue and the bear sees the lion then the lion does not see the bear. If the bear is kind and the bear is nice then the bear does not see the cow. If something is blue and it chases the bear then it sees the cow. If something is nice and it needs the cow then it is kind. If something is cold then it needs the lion. If something needs the lion then it needs the bear. If something is blue and not kind then it is cold. If something sees the squirrel then it is cold. If something needs the bear then the bear sees the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear needs the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1416_Q7", "context": "Charlie is big. Charlie is nice. Dave is green. Dave is kind. Dave is young. Erin is green. Erin is kind. Erin is nice. Erin is young. Gary is nice. Gary is white. If something is big then it is quiet. All nice, quiet things are young. If something is kind then it is nice. If Erin is white then Erin is nice. All young, quiet things are green. White things are kind. Green, young things are quiet. All green, nice things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-98_Q19", "context": "The cat chases the squirrel. The cat eats the squirrel. The cat is rough. The cat likes the dog. The cat likes the mouse. The cat likes the squirrel. The dog is not big. The mouse eats the squirrel. The mouse is big. The mouse is kind. The squirrel chases the cat. If someone is big and they chase the dog then the dog eats the mouse. If someone likes the dog then they eat the squirrel. If someone is big then they eat the mouse. If someone eats the squirrel and the squirrel is blue then they are big. If someone is rough then they chase the mouse. If someone is round and they like the dog then they do not chase the mouse. If someone chases the dog and they are blue then they like the cat. If someone eats the mouse then they chase the dog. If someone eats the mouse and they chase the dog then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not like the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-23_Q16", "context": "Anne is round. Erin is quiet. Fiona is big. Fiona is red. Fiona is round. Fiona is young. Harry is big. Harry is not green. Harry is not round. Harry is smart. All big, red people are round. If someone is young and quiet then they are big. All red, young people are quiet. If Erin is quiet and Erin is red then Erin is young. If Anne is round and Anne is smart then Anne is not young. Round people are green. If someone is quiet then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-1004_Q2", "context": "The bald eagle chases the cat. The bald eagle is young. The cat chases the bald eagle. The cat sees the bald eagle. The cat sees the lion. The cow chases the bald eagle. The cow sees the bald eagle. The cow sees the lion. The lion is rough. The lion sees the bald eagle. If someone chases the cow then the cow visits the lion. If the cat visits the bald eagle and the cat is rough then the cat visits the cow. If someone visits the cat then they visit the lion. If the lion sees the cow and the lion sees the cat then the cat is young. If someone sees the lion and they visit the lion then the lion visits the cat. If someone visits the lion then they visit the cow. If someone chases the cat then the cat chases the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not see the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-970_Q7", "context": "The bald eagle is young. The bear chases the lion. The bear visits the bald eagle. The lion is kind. The mouse does not chase the bear. The mouse chases the lion. The mouse needs the bald eagle. The mouse needs the lion. The mouse does not visit the bear. The mouse does not visit the lion. Kind things are cold. If something needs the lion and it is young then it visits the bear. All young, green things are kind. If something chases the lion and the lion needs the mouse then it is kind. If something is cold then it needs the mouse. If something chases the mouse and the mouse visits the bear then it does not need the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-81_Q8", "context": "Bob is blue. Bob is smart. Fiona is furry. Gary is blue. Gary is kind. Gary is red. Harry is blue. Harry is kind. Harry is quiet. Harry is red. Quiet things are smart. If something is kind and quiet then it is red. If something is smart then it is blue. If something is quiet then it is smart. Kind things are red. All red things are rough. If something is furry then it is kind. If something is rough and red then it is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-838_Q9", "context": "Anne is white. Bob is round. Bob is not white. Erin is big. Erin is cold. Erin is round. Erin is smart. Erin is white. Erin is young. Gary is cold. Gary is not round. Gary is smart. If something is round then it is smart. If Gary is young then Gary is white. If something is big and cold then it is young. If something is smart and round then it is young. If Gary is smart then Gary is quiet. All big, quiet things are cold. If something is young and smart then it is big. If something is big then it is quiet. If Bob is young and Bob is not round then Bob is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1102_Q12", "context": "Anne is furry. Anne is round. Bob is not red. Bob is white. Dave is furry. Dave is white. Harry is furry. Harry is nice. Harry is quiet. Harry is round. If something is quiet then it is nice. If something is furry then it is round. If something is kind and round then it is quiet. Red things are white. Red things are kind. If something is white and round then it is kind. Nice, round things are furry. If something is white and nice then it is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-856_Q2", "context": "Bob is blue. Bob is cold. Bob is green. Bob is red. Bob is rough. Bob is round. Bob is smart. Erin is blue. Erin is red. Erin is rough. Gary is red. Gary is round. Gary is smart. Harry is blue. If someone is cold then they are green. All red, smart people are green. All round people are green. If someone is rough and cold then they are smart. All blue people are round. Cold, green people are rough. Blue, green people are round. Green people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-282_Q11", "context": "Bob is rough. Dave is cold. Dave is quiet. Erin is cold. Erin is furry. Gary is blue. Gary is cold. Gary is furry. Gary is kind. Gary is quiet. Gary is rough. Gary is young. If someone is rough then they are quiet. If Gary is quiet and Gary is rough then Gary is kind. If someone is furry and rough then they are kind. If someone is quiet and furry then they are rough. If Erin is blue and Erin is kind then Erin is cold. All blue, kind people are quiet. All young, quiet people are blue. All quiet, cold people are furry. All kind people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-929_Q4", "context": "Anne is big. Anne is cold. Anne is quiet. Erin is big. Erin is cold. Erin is smart. Fiona is big. Fiona is smart. Harry is big. Harry is blue. Quiet people are big. Quiet, blue people are cold. Red people are nice. Cold people are blue. If someone is nice and blue then they are red. If someone is smart and nice then they are quiet. All nice people are quiet. All quiet people are cold. If someone is smart then they are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-890_Q18", "context": "Anne is not blue. Anne is kind. Anne is nice. Anne is white. Fiona is blue. Fiona is white. Gary is nice. Gary is white. Harry is blue. Harry is young. Rough things are young. Blue, red things are nice. All red, rough things are nice. Young things are red. If something is blue then it is rough. All blue, red things are rough. If something is young and nice then it is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-555_Q13", "context": "The bald eagle likes the cat. The bald eagle needs the cat. The bald eagle needs the squirrel. The cat is green. The cat likes the squirrel. The lion is young. The lion likes the cat. The lion needs the cat. The squirrel is rough. The squirrel likes the bald eagle. The squirrel visits the cat. If someone is nice then they are cold. If someone needs the lion and the lion visits the cat then the lion likes the cat. If someone visits the squirrel and the squirrel needs the lion then the lion likes the squirrel. If someone visits the cat then they are nice. If someone is cold and they like the bald eagle then the bald eagle visits the cat. If the lion likes the bald eagle then the bald eagle likes the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1334_Q15", "context": "Anne is cold. Anne is nice. Anne is quiet. Erin is nice. Erin is round. Fiona is kind. Fiona is nice. Fiona is round. Gary is cold. Gary is round. Gary is young. If Anne is kind then Anne is young. Nice people are red. If someone is kind and red then they are round. All nice, young people are red. All nice, young people are quiet. If someone is nice and kind then they are cold. All nice, cold people are young. All kind, cold people are nice. Red people are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-938_Q3", "context": "Dave is big. Dave is cold. Dave is green. Dave is quiet. Dave is red. Erin is red. Fiona is blue. Fiona is quiet. Gary is green. Gary is quiet. Gary is red. If Dave is blue then Dave is rough. If someone is rough then they are green. Red people are blue. If someone is big then they are rough. If someone is quiet and cold then they are big. All blue people are big. If Gary is quiet then Gary is red. If Dave is blue and Dave is big then Dave is rough. If someone is red and green then they are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-641_Q12", "context": "The bald eagle chases the cow. The bald eagle eats the cow. The bald eagle needs the rabbit. The cat chases the rabbit. The cat eats the rabbit. The cat needs the bald eagle. The cat needs the rabbit. The cow chases the rabbit. The cow eats the cat. The cow is kind. The rabbit chases the bald eagle. The rabbit is rough. The rabbit needs the bald eagle. The rabbit needs the cow. If something eats the cat then the cat eats the cow. If something chases the cat then it eats the bald eagle. If the cat chases the rabbit and the cat is cold then the rabbit eats the cow. If the cat needs the cow then the cow needs the rabbit. If something chases the bald eagle then it is nice. If the cow is nice then the cow is kind. If the cow eats the cat and the cow is nice then the cat needs the cow. If the cat eats the cow then the cow chases the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not need the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-682_Q1", "context": "The bald eagle eats the cow. The bald eagle is young. The bald eagle needs the cat. The bald eagle sees the rabbit. The cat eats the cow. The cat eats the rabbit. The cat is cold. The cat is round. The cat sees the cow. The cow is cold. The cow needs the bald eagle. The rabbit eats the cow. The rabbit is kind. The rabbit needs the bald eagle. If someone needs the cow then they need the rabbit. If the cat eats the rabbit then the cat is kind. If someone sees the cow and they eat the rabbit then the rabbit needs the cow. If someone needs the rabbit then they are round. If the cow needs the cat then the cat needs the rabbit. If someone is round then they see the bald eagle. If someone is blue and they need the bald eagle then they are kind. If the rabbit sees the cat then the cat sees the cow. If someone sees the bald eagle and the bald eagle is young then they are young.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-575_Q6", "context": "The dog eats the mouse. The dog eats the squirrel. The dog is big. The lion eats the dog. The lion eats the squirrel. The mouse eats the lion. The mouse is kind. The mouse is round. The mouse is young. The mouse visits the lion. The mouse visits the squirrel. The squirrel sees the dog. If something visits the lion and it is rough then the lion is young. If something is kind then it sees the lion. If something eats the mouse then it is rough. If something sees the squirrel and it visits the lion then the squirrel eats the dog. If the lion is big and the lion eats the mouse then the lion eats the squirrel. If something is young then it eats the mouse. If something visits the dog and the dog visits the lion then the dog eats the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-470_Q22", "context": "The bald eagle needs the mouse. The bald eagle does not visit the lion. The cow is round. The cow does not see the bald eagle. The cow sees the mouse. The lion sees the mouse. The mouse does not need the cow. If something needs the cow then it sees the lion. If something visits the bald eagle then it is red. If the cow does not need the mouse then the cow is cold. If something visits the bald eagle then the bald eagle visits the cow. If something sees the mouse then it visits the cow. If the lion sees the bald eagle then the bald eagle does not need the mouse. If something visits the cow then it visits the bald eagle. If something visits the bald eagle then it is not young.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-33_Q13", "context": "Anne is big. Anne is furry. Anne is green. Anne is quiet. Anne is rough. Charlie is furry. Charlie is rough. Fiona is big. Fiona is green. Gary is white. Furry, quiet things are big. If something is green then it is white. All furry things are quiet. All white, green things are furry. All white, furry things are nice. If Anne is big then Anne is green. All big things are white. If something is nice and quiet then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-312_Q15", "context": "The bear is not big. The bear is cold. The bear sees the cat. The cat eats the bear. The cat visits the bear. The cow is not rough. The cow sees the mouse. The cow visits the bear. The mouse eats the cat. The mouse is not big. The mouse is kind. The mouse visits the cat. If someone is green then they eat the mouse. If someone visits the bear then they visit the mouse. If someone eats the bear and they see the mouse then the mouse does not see the cow. If the cat visits the bear then the bear is cold. If someone eats the mouse then the mouse visits the bear. If someone is green and they see the cow then the cow sees the mouse. If someone eats the bear and they see the cow then the cow is green. If someone visits the bear then they see the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not see the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-454_Q6", "context": "Bob is round. Dave is cold. Dave is green. Dave is smart. Dave is young. Erin is green. Erin is round. Erin is smart. Erin is white. Erin is young. Harry is cold. Harry is green. Harry is rough. Harry is round. Harry is smart. Harry is young. All green, white people are young. If Dave is smart and Dave is young then Dave is round. If someone is round then they are green. Young, smart people are cold. All young people are smart. Green people are white. If someone is young and rough then they are green. If someone is round and green then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-977_Q15", "context": "The bear does not chase the dog. The bear chases the lion. The bear is blue. The bear is cold. The bear sees the cow. The cow chases the bear. The cow chases the lion. The cow is not big. The cow is cold. The cow likes the bear. The cow sees the lion. The dog is big. The lion chases the bear. The lion is green. The lion likes the dog. The lion does not see the cow. If someone is cold then they see the bear. If someone sees the bear then the bear is big. If someone sees the bear and they like the bear then the bear likes the cow. If the cow likes the lion then the lion sees the cow. If someone chases the dog and the dog is green then the dog likes the cow. All big people are cold. If someone is big and they chase the lion then the lion is big.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not like the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-636_Q1", "context": "The lion chases the mouse. The lion is not blue. The lion is not nice. The lion does not visit the mouse. The mouse chases the rabbit. The mouse is not nice. The mouse is red. The mouse does not like the rabbit. The mouse visits the tiger. The rabbit chases the tiger. The rabbit is nice. The rabbit is not rough. The tiger chases the mouse. The tiger is blue. The tiger is nice. The tiger likes the mouse. If something chases the rabbit and it visits the rabbit then the rabbit visits the tiger. If something visits the tiger and the tiger is nice then it is blue. If something is red then it chases the mouse. If something is nice and it likes the rabbit then it chases the lion. If something is rough then it chases the lion. If something likes the rabbit and the rabbit visits the tiger then the tiger likes the lion. If something visits the rabbit and the rabbit likes the lion then the lion visits the tiger. If something chases the tiger and the tiger is nice then the tiger visits the mouse. If something is blue then it visits the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not visit the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-960_Q4", "context": "The bald eagle is red. The bald eagle is not round. The cow is red. The cow likes the bald eagle. The cow likes the rabbit. The cow does not like the squirrel. The cow needs the bald eagle. The cow visits the rabbit. The rabbit is green. The rabbit is red. The rabbit likes the squirrel. The rabbit does not need the cow. The rabbit needs the squirrel. The squirrel likes the cow. The squirrel likes the rabbit. The squirrel does not need the cow. If something needs the bald eagle and the bald eagle likes the cow then the bald eagle is cold. If the cow visits the squirrel then the squirrel does not visit the rabbit. If something needs the rabbit and it is round then it visits the bald eagle. If something is red then it visits the bald eagle. If something likes the rabbit then it likes the cow. If something visits the bald eagle and it is not round then it likes the rabbit. If the rabbit needs the squirrel then the squirrel likes the rabbit. If something is cold and it likes the cow then it visits the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not visit the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-803_Q6", "context": "Bob is cold. Charlie is cold. Charlie is nice. Charlie is smart. Erin is red. Erin is young. Harry is red. If someone is quiet and young then they are red. Quiet people are young. Smart people are round. If someone is nice and cold then they are young. If Erin is quiet and Erin is round then Erin is nice. All round, young people are smart. Nice, red people are cold. All red people are nice. All young, red people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-612_Q13", "context": "The dog is rough. The dog sees the lion. The dog sees the mouse. The lion sees the mouse. The mouse is red. The mouse needs the lion. The mouse sees the dog. The mouse sees the squirrel. The squirrel needs the dog. The squirrel needs the lion. The squirrel sees the dog. The squirrel visits the dog. If someone sees the mouse and the mouse sees the dog then they visit the lion. If someone visits the mouse then the mouse needs the squirrel. If the lion is kind then the lion visits the squirrel. If someone is red and kind then they need the mouse. If someone visits the lion then they are nice. If someone sees the squirrel and they are nice then the squirrel sees the mouse. If someone needs the lion then the lion is nice. If someone is rough then they see the squirrel. If the squirrel sees the mouse and the mouse is cold then the mouse visits the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not need the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-497_Q12", "context": "Anne is quiet. Dave is green. Dave is kind. Dave is red. Dave is round. Erin is rough. Fiona is green. Fiona is quiet. Fiona is red. Fiona is rough. Fiona is round. All red people are green. Kind people are round. All round people are kind. If Erin is white then Erin is red. All rough people are quiet. If someone is quiet then they are round. If Erin is green and Erin is round then Erin is red. All kind people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-280_Q6", "context": "Anne is quiet. Bob is big. Bob is cold. Bob is green. Bob is nice. Bob is quiet. Bob is white. Charlie is nice. Charlie is quiet. Erin is big. Erin is nice. Erin is white. All nice people are white. All quiet, blue people are green. Blue, cold people are quiet. Big, blue people are quiet. If someone is green and white then they are blue. If someone is quiet then they are nice. If someone is quiet and big then they are blue. All quiet, white people are big. If someone is white and quiet then they are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-373_Q5", "context": "The mouse chases the rabbit. The mouse chases the squirrel. The mouse likes the squirrel. The mouse sees the squirrel. The rabbit chases the mouse. The rabbit is green. The rabbit likes the mouse. The rabbit likes the squirrel. The squirrel chases the rabbit. The squirrel is green. The squirrel is red. The squirrel sees the mouse. The squirrel sees the rabbit. The tiger chases the squirrel. The tiger likes the mouse. The tiger likes the rabbit. If someone sees the mouse then the mouse chases the rabbit. If someone is green then they chase the mouse. If someone sees the squirrel then the squirrel is round. If someone is rough then they see the tiger. If the squirrel sees the tiger and the squirrel is red then the tiger is green. If someone is red and they chase the mouse then they are rough. If someone chases the mouse then the mouse likes the squirrel. If someone sees the mouse and the mouse likes the rabbit then the mouse likes the squirrel. If someone chases the mouse then the mouse chases the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1059_Q9", "context": "Dave is nice. Dave is quiet. Erin is nice. Erin is quiet. Fiona is young. Gary is cold. Gary is young. If someone is young then they are big. Big, nice people are red. If Dave is young and Dave is nice then Dave is red. Red, young people are nice. If someone is nice then they are quiet. If someone is big and young then they are quiet. If someone is red and round then they are cold. If someone is quiet then they are round. If someone is round then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-267_Q1", "context": "The lion eats the squirrel. The lion is blue. The lion sees the rabbit. The lion sees the squirrel. The mouse sees the lion. The rabbit eats the lion. The rabbit is young. The rabbit sees the mouse. The rabbit sees the squirrel. The squirrel is nice. The squirrel sees the rabbit. The squirrel visits the lion. If something eats the squirrel then it sees the squirrel. If something is nice then it is young. If something sees the mouse then it eats the mouse. If something sees the lion then it is green. If something eats the squirrel and the squirrel is nice then the squirrel eats the rabbit. If the lion visits the squirrel then the squirrel eats the lion. If the lion is green and the lion eats the squirrel then the lion is nice. If something sees the mouse and it visits the lion then the lion is green. If something is nice and young then it sees the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-742_Q22", "context": "The bald eagle eats the rabbit. The bald eagle eats the squirrel. The bald eagle likes the cow. The cow likes the rabbit. The rabbit is kind. The rabbit needs the bald eagle. The squirrel needs the rabbit. If someone needs the rabbit then the rabbit likes the bald eagle. If someone likes the rabbit then the rabbit eats the squirrel. If someone is red then they like the cow. If someone needs the squirrel then the squirrel is red. If someone likes the bald eagle and they are rough then the bald eagle likes the rabbit. If someone is kind and they like the bald eagle then they are young. If someone likes the bald eagle and they are young then the bald eagle needs the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit likes the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-265_Q4", "context": "The cat eats the rabbit. The cat is cold. The cat sees the dog. The dog eats the rabbit. The dog eats the tiger. The dog is nice. The dog is rough. The dog sees the cat. The rabbit eats the tiger. The rabbit is red. The tiger eats the dog. The tiger is young. All young things are nice. If something likes the tiger then it eats the cat. If something is nice then it likes the tiger. If the tiger eats the cat and the tiger likes the rabbit then the tiger sees the cat. If something sees the tiger and the tiger likes the dog then it is red. All rough things are red. If something eats the cat then the cat likes the rabbit. If something is rough and it sees the tiger then it likes the dog. If something likes the rabbit then it is young.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not like the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-509_Q9", "context": "Bob is blue. Bob is kind. Bob is smart. Bob is young. Erin is blue. Fiona is red. Fiona is not smart. Harry is blue. Harry is not kind. Harry is nice. If Erin is smart and Erin is blue then Erin is furry. Kind, blue things are smart. Blue things are smart. All blue things are smart. If something is furry and not kind then it is not red. If something is blue and young then it is not red. Furry things are young. If Erin is not red then Erin is nice. If Bob is not young and Bob is not red then Bob is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-768_Q19", "context": "The bear chases the mouse. The bear is not cold. The bear does not see the mouse. The cow chases the mouse. The cow chases the rabbit. The cow needs the mouse. The cow does not see the bear. The mouse chases the rabbit. The mouse is blue. The mouse needs the bear. The mouse sees the bear. The rabbit chases the bear. The rabbit chases the mouse. The rabbit does not need the bear. The rabbit does not see the cow. The rabbit sees the mouse. If the bear is blue and the bear needs the mouse then the bear is not big. If someone sees the bear then they are big. If someone sees the mouse then they chase the mouse. If someone is big then they need the cow. If someone chases the mouse and the mouse does not need the rabbit then the rabbit sees the mouse. If someone needs the mouse and they need the cow then the cow is blue. If someone sees the mouse then the mouse needs the bear. If someone needs the cow then the cow is big.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not need the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1203_Q10", "context": "Bob is kind. Bob is young. Dave is blue. Dave is round. Erin is young. Harry is blue. Harry is green. If something is young then it is green. All green, rough things are round. If Dave is white and Dave is green then Dave is kind. Green things are blue. If something is blue and young then it is kind. If Erin is young and Erin is kind then Erin is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-353_Q18", "context": "The bear is rough. The bear is young. The bear likes the dog. The bear likes the tiger. The bear needs the tiger. The bear visits the dog. The bear visits the mouse. The dog is big. The dog likes the mouse. The mouse likes the dog. The mouse needs the bear. The tiger is rough. The tiger needs the dog. The tiger visits the mouse. If someone needs the bear and the bear likes the tiger then they are nice. If someone is big then they need the bear. If someone needs the mouse then the mouse needs the tiger. If someone needs the dog and the dog visits the bear then the bear is big. If someone visits the bear and the bear needs the dog then the dog likes the tiger. If the tiger needs the bear and the bear is cold then the bear is young. If someone is nice then they visit the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog needs the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-813_Q6", "context": "Charlie is cold. Charlie is furry. Charlie is nice. Charlie is quiet. Charlie is white. Charlie is young. Erin is quiet. Fiona is cold. Fiona is furry. Fiona is quiet. Fiona is white. Gary is nice. Gary is white. Gary is young. All young things are nice. All white things are nice. If something is young and nice then it is cold. If Erin is young and Erin is cold then Erin is furry. If something is quiet then it is young. If Erin is furry and Erin is cold then Erin is white. If something is white and nice then it is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-611_Q12", "context": "Anne is furry. Anne is red. Anne is rough. Anne is not young. Charlie is red. Erin is cold. Erin is furry. Erin is not red. Erin is young. Harry is red. Harry is white. Rough people are furry. If someone is white and round then they are rough. Red, cold people are young. All white people are cold. If someone is young then they are round. If someone is young then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-748_Q3", "context": "The cat eats the lion. The cat likes the lion. The cat does not like the squirrel. The cat needs the lion. The lion does not need the rabbit. The rabbit is round. The squirrel is young. If something eats the squirrel and the squirrel eats the rabbit then the rabbit is nice. If something is young then it needs the rabbit. If something eats the cat then it is young. If something needs the rabbit then the rabbit eats the cat. If something needs the rabbit then it likes the cat. If something is young then it likes the lion. If the rabbit does not need the lion then the lion does not like the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel needs the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-443_Q2", "context": "Anne is white. Charlie is big. Charlie is white. Erin is big. Erin is round. Erin is young. Fiona is nice. If someone is young and nice then they are not big. If someone is nice then they are young. If someone is nice and not big then they are green. Nice, green people are not furry. Young, furry people are round. Big, nice people are round. All green people are not round. If someone is green and not furry then they are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-738_Q7", "context": "Anne is blue. Anne is rough. Charlie is nice. Charlie is rough. Charlie is white. Gary is blue. Gary is nice. Gary is rough. Gary is smart. Gary is white. Harry is blue. Harry is nice. Harry is smart. Harry is white. If something is nice then it is green. If Harry is blue then Harry is nice. Green things are blue. If something is white then it is smart. If something is red then it is nice. All nice, green things are white. All green things are rough. Rough, blue things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-956_Q12", "context": "The bald eagle is kind. The bald eagle needs the lion. The bald eagle needs the squirrel. The bald eagle visits the bear. The bear eats the bald eagle. The bear is young. The bear visits the lion. The lion eats the bear. The lion is blue. The lion is green. The lion visits the squirrel. The squirrel is big. The squirrel is young. The squirrel needs the lion. If someone needs the lion then they are green. If someone needs the bear then the bear needs the lion. If someone is green then they visit the bald eagle. If the squirrel eats the bear and the squirrel needs the lion then the bear is green. If someone visits the bald eagle then the bald eagle needs the bear. If someone eats the bald eagle and the bald eagle visits the squirrel then the bald eagle needs the squirrel. If someone is big then they need the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not visit the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-770_Q3", "context": "Anne is cold. Bob is not kind. Gary is big. Gary is blue. Gary is not furry. Gary is nice. Gary is red. Harry is big. Harry is cold. Harry is kind. Harry is nice. Harry is red. Furry things are not blue. All red, cold things are blue. Furry things are blue. Furry, big things are not nice. All cold, big things are nice. All red, blue things are kind. If Anne is kind then Anne is big. Cold things are red. Blue, big things are not furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-950_Q1", "context": "Anne is big. Anne is kind. Anne is rough. Anne is young. Bob is big. Bob is kind. Bob is rough. Charlie is rough. Fiona is blue. Fiona is rough. If someone is kind and blue then they are young. All kind people are rough. If someone is nice then they are big. If someone is blue then they are nice. If someone is blue and young then they are cold. If Charlie is cold and Charlie is kind then Charlie is young. All rough, big people are kind. If someone is blue and big then they are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-319_Q4", "context": "Anne is rough. Anne is white. Charlie is green. Fiona is big. Fiona is furry. Fiona is quiet. Fiona is white. Harry is not quiet. Harry is not rough. Harry is not smart. Harry is white. If something is green then it is quiet. Rough things are big. If something is smart and furry then it is big. All big, furry things are green. Big, quiet things are smart. If Charlie is quiet then Charlie is smart. If something is smart and not rough then it is furry. All big things are furry. If Anne is green then Anne is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-950_Q20", "context": "Anne is big. Anne is kind. Anne is rough. Anne is young. Bob is big. Bob is kind. Bob is rough. Charlie is rough. Fiona is blue. Fiona is rough. If someone is kind and blue then they are young. All kind people are rough. If someone is nice then they are big. If someone is blue then they are nice. If someone is blue and young then they are cold. If Charlie is cold and Charlie is kind then Charlie is young. All rough, big people are kind. If someone is blue and big then they are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-824_Q20", "context": "The bald eagle does not chase the bear. The bald eagle does not chase the cat. The bald eagle needs the lion. The bald eagle sees the bear. The bear chases the cat. The bear is red. The bear sees the cat. The bear sees the lion. The cat chases the lion. The lion chases the bald eagle. The lion chases the bear. The lion does not chase the cat. The lion is red. The lion needs the bald eagle. The lion sees the bald eagle. The lion sees the cat. If the bald eagle sees the cat then the bald eagle is rough. If something needs the bald eagle then the bald eagle is rough. If something sees the lion and it sees the cat then the cat sees the bear. If something is rough then it needs the bear. If something is rough then it needs the cat. If something sees the bear and it needs the bear then the bear is rough. If the lion chases the bear and the bear needs the cat then the lion is green. If something needs the cat and it needs the lion then the lion chases the bald eagle. If something is green and not rough then it needs the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle sees the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-473_Q12", "context": "The bear chases the tiger. The bear is red. The bear visits the mouse. The mouse sees the squirrel. The mouse sees the tiger. The mouse visits the bear. The mouse visits the tiger. The squirrel chases the bear. The squirrel is cold. The tiger is big. The tiger is cold. The tiger is kind. The tiger sees the squirrel. The tiger visits the mouse. If something sees the squirrel and the squirrel is big then it visits the tiger. If something is cold then it visits the mouse. If something is big and it chases the squirrel then it is kind. If something sees the squirrel and it visits the squirrel then the squirrel is big. If something visits the squirrel then it chases the tiger. If something visits the tiger then it visits the squirrel. If something is red then it visits the tiger. If something is blue and it visits the mouse then it sees the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not chase the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-39_Q2", "context": "The bear eats the cow. The bear does not visit the cow. The cow is nice. The lion eats the rabbit. The rabbit eats the cow. The rabbit eats the lion. The rabbit is green. If something chases the rabbit then it chases the bear. If the lion eats the cow and the lion is cold then the cow chases the bear. If something eats the bear then it chases the lion. If something visits the lion then the lion is nice. If something is nice then it visits the bear. If something eats the bear and the bear visits the lion then the lion visits the rabbit. If something visits the lion and it is round then the lion eats the bear. If something visits the bear then it visits the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not eat the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1226_Q12", "context": "Bob is big. Bob is round. Charlie is big. Erin is blue. Harry is blue. Harry is round. Harry is young. All young things are cold. All big, blue things are young. If something is smart then it is big. If something is big then it is kind. If something is cold and blue then it is round. If something is round and kind then it is blue. All cold things are young. All cold things are young. If Erin is blue then Erin is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-257_Q3", "context": "The bear visits the rabbit. The cat chases the bear. The cat chases the rabbit. The cat eats the bear. The cat is not green. The cat does not visit the bear. The lion eats the bear. The lion eats the cat. The lion is not round. The lion visits the bear. The lion does not visit the rabbit. The rabbit does not eat the bear. The rabbit eats the cat. The rabbit is green. The rabbit does not visit the cat. The rabbit does not visit the lion. If the cat is big then the cat visits the lion. If someone is young then they chase the bear. If someone is young and they visit the bear then the bear visits the lion. If someone is kind then they do not visit the rabbit. All kind people are green. If someone visits the lion then they eat the cat. If someone eats the cat then they are young. If someone is kind and round then they visit the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-736_Q9", "context": "Anne is green. Anne is quiet. Bob is round. Dave is blue. Dave is nice. Dave is not quiet. Erin is green. Green things are blue. If Erin is green and Erin is round then Erin is quiet. If something is quiet and blue then it is young. If something is young and furry then it is round. If something is blue then it is furry. If Erin is furry then Erin is round. Green things are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1089_Q2", "context": "Charlie is blue. Dave is blue. Dave is red. Dave is young. Fiona is big. Fiona is red. Gary is green. Blue people are round. All green people are blue. White people are big. If someone is green and white then they are big. If someone is round then they are white. If Dave is big then Dave is red. If Fiona is green and Fiona is blue then Fiona is young. Green, big people are not red. If Charlie is green and Charlie is not white then Charlie is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-304_Q9", "context": "The bear likes the squirrel. The cow does not chase the squirrel. The cow eats the lion. The cow is red. The lion chases the cow. The lion eats the cow. The lion eats the squirrel. The lion is kind. The lion is red. The lion likes the bear. The lion likes the cow. The squirrel is round. If the squirrel eats the lion and the lion eats the bear then the squirrel does not chase the lion. If something chases the lion then it eats the bear. If something likes the squirrel and the squirrel eats the bear then the squirrel eats the lion. If something likes the bear then it chases the bear. If something eats the cow then it chases the lion. If something eats the bear then the bear is rough. If something chases the cow and the cow chases the squirrel then it does not eat the cow. If something eats the bear then the bear eats the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear chases the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-910_Q13", "context": "The cow needs the mouse. The mouse needs the cow. The mouse needs the rabbit. The rabbit eats the mouse. The squirrel eats the rabbit. The squirrel is not big. The squirrel is nice. If someone sees the rabbit and the rabbit eats the mouse then the mouse is not rough. If someone needs the squirrel then they eat the cow. If someone is round then they eat the cow. If someone is rough then they need the mouse. If someone eats the cow then the cow is nice. If the mouse sees the cow then the cow needs the mouse. If someone eats the mouse and they do not need the cow then they see the cow. If someone eats the mouse and the mouse sees the cow then the mouse is not big. Nice people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-89_Q6", "context": "The bald eagle is cold. The bald eagle likes the cat. The bald eagle likes the rabbit. The cat likes the rabbit. The cat needs the rabbit. The dog eats the cat. The dog is cold. The dog is red. The dog needs the bald eagle. The rabbit eats the dog. If something eats the rabbit and it is cold then the rabbit is red. If something is round then it eats the bald eagle. If the bald eagle likes the rabbit then the rabbit likes the bald eagle. If something likes the bald eagle and the bald eagle likes the cat then it likes the cat. If the rabbit eats the bald eagle then the bald eagle likes the dog. If something likes the cat then it is round. If something is young and cold then it is round. If something eats the rabbit then the rabbit is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not like the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-483_Q14", "context": "The bear chases the lion. The bear needs the cow. The bear visits the dog. The cow needs the lion. The dog chases the cow. The dog chases the lion. The dog is big. The dog needs the bear. The dog visits the bear. The dog visits the cow. The lion chases the cow. The lion is blue. The lion needs the bear. The lion needs the cow. If someone visits the lion then they visit the bear. If the dog chases the lion and the dog chases the bear then the lion visits the bear. If someone chases the bear then they visit the cow. If someone is big then they need the bear. If someone is green then they chase the bear. If the lion chases the dog and the dog is green then the dog chases the cow. If someone is kind then they chase the cow. If someone visits the bear and the bear is kind then the bear needs the lion. If someone visits the bear then they are green.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear needs the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-390_Q22", "context": "The bear needs the cat. The bear needs the mouse. The bear visits the mouse. The cat needs the rabbit. The cat visits the mouse. The cat visits the rabbit. The mouse needs the cat. The mouse sees the bear. The rabbit is rough. The rabbit does not see the cat. The rabbit sees the mouse. The rabbit visits the bear. If someone sees the rabbit and the rabbit sees the mouse then they are nice. If someone needs the bear then they are nice. If someone visits the mouse and they do not see the bear then the bear does not see the mouse. Nice people are red. If someone sees the cat and they visit the bear then the bear is not red. If the bear is round and the bear sees the rabbit then the rabbit does not visit the mouse. If someone visits the mouse and they are red then the mouse is nice. If the mouse sees the cat then the cat is not green. If someone visits the mouse then they need the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit sees the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-721_Q10", "context": "Bob is big. Bob is cold. Bob is kind. Bob is quiet. Charlie is furry. Dave is furry. Erin is big. Erin is furry. Erin is kind. Erin is quiet. Red, cold people are big. If someone is cold and furry then they are red. Furry people are cold. If someone is cold and red then they are furry. All kind, furry people are cold. If Charlie is big then Charlie is kind. If someone is quiet and green then they are big. All cold, kind people are quiet. All quiet people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-442_Q3", "context": "Anne is white. Charlie is furry. Erin is furry. Erin is nice. Erin is red. Fiona is furry. Fiona is nice. If someone is green then they are nice. If someone is smart and white then they are red. Red people are green. All kind people are red. If someone is red and white then they are furry. If someone is smart and green then they are furry. All smart people are white. All furry people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1235_Q5", "context": "Anne is big. Anne is furry. Anne is green. Anne is quiet. Erin is young. Fiona is furry. Fiona is green. Fiona is kind. Fiona is red. Fiona is young. Harry is kind. If Fiona is kind then Fiona is big. If Fiona is young and Fiona is red then Fiona is big. Big, kind people are furry. Green, young people are furry. All kind people are red. All red people are big. If Harry is green then Harry is young. If someone is furry then they are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-462_Q18", "context": "The bear is blue. The bear needs the mouse. The bear needs the squirrel. The dog chases the bear. The dog is kind. The dog is rough. The mouse is not green. The mouse needs the squirrel. The squirrel is blue. The squirrel is kind. The squirrel needs the bear. The squirrel does not need the dog. If the bear is blue then the bear is not kind. If something chases the mouse then it chases the squirrel. If something chases the squirrel then it chases the dog. If something is green and rough then it chases the dog. If something sees the mouse and the mouse needs the bear then the bear does not see the dog. If something needs the bear then the bear chases the mouse. If something sees the dog and it does not see the mouse then the dog is blue. If something chases the dog and the dog is rough then the dog chases the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel chases the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-643_Q7", "context": "The bear does not chase the tiger. The cow chases the bear. The cow chases the squirrel. The cow chases the tiger. The cow is not kind. The cow visits the squirrel. The squirrel chases the tiger. The squirrel likes the tiger. The squirrel visits the bear. The tiger likes the bear. If something chases the tiger then it is nice. If something likes the cow and the cow does not visit the tiger then the cow does not visit the bear. If something is nice and it chases the cow then the cow visits the bear. If something is red then it chases the cow. If the squirrel chases the cow then the squirrel is nice. If something likes the squirrel and it does not like the bear then the squirrel chases the cow. If something visits the bear then it is red. If something chases the squirrel then it likes the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow visits the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-688_Q13", "context": "Anne is smart. Bob is blue. Bob is green. Bob is nice. Fiona is green. Gary is big. Gary is not smart. Smart, blue things are young. All young, blue things are big. If something is nice and not green then it is kind. If something is big then it is kind. Green things are smart. Smart things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-557_Q6", "context": "Bob is blue. Bob is furry. Bob is rough. Bob is young. Erin is blue. Erin is nice. Fiona is white. Harry is blue. Harry is rough. Harry is smart. Harry is white. Harry is young. Smart things are nice. All nice, blue things are furry. Blue, nice things are young. If something is white then it is blue. If something is white and young then it is smart. If something is furry then it is nice. If something is blue then it is furry. If something is nice then it is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-498_Q8", "context": "Anne is red. Anne is rough. Bob is red. Charlie is red. Charlie is rough. Charlie is white. Erin is red. Erin is smart. Erin is white. Erin is young. If someone is white and smart then they are young. All young people are rough. All rough, round people are smart. All quiet people are white. All rough people are quiet. If Bob is young and Bob is smart then Bob is white. If someone is white then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-602_Q18", "context": "Anne is big. Bob is big. Bob is blue. Bob is furry. Erin is blue. Erin is red. Gary is furry. Furry things are blue. Blue, young things are big. If something is red then it is not young. If Gary is blue then Gary is big. All blue, big things are red. If something is furry and not young then it is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-425_Q17", "context": "The cat likes the dog. The cat sees the dog. The cat sees the rabbit. The dog sees the lion. The lion likes the cat. The lion sees the rabbit. The rabbit likes the dog. If something is cold then it likes the lion. If something likes the lion then the lion likes the dog. If something likes the dog then it is cold. If something sees the dog and the dog eats the rabbit then it is big. If something likes the dog then the dog is cold. If something sees the cat then it is red. If something is red and it likes the dog then the dog is big. If something sees the rabbit then it sees the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-547_Q11", "context": "The lion sees the mouse. The mouse is big. The mouse is blue. The mouse is round. The mouse needs the squirrel. The mouse sees the rabbit. The rabbit is blue. The rabbit is round. The rabbit needs the mouse. The rabbit sees the lion. The rabbit sees the mouse. The squirrel is big. The squirrel is green. The squirrel needs the mouse. The squirrel sees the lion. The squirrel visits the mouse. If the lion visits the mouse then the lion needs the squirrel. If someone visits the lion then the lion visits the mouse. If the rabbit is cold and the rabbit visits the lion then the lion needs the mouse. If someone sees the lion then they see the squirrel. If someone sees the squirrel then the squirrel visits the lion. If someone is blue then they visit the mouse. If someone needs the squirrel then they are green.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-340_Q5", "context": "Bob is rough. Bob is not smart. Charlie is quiet. Charlie is red. Charlie is rough. Fiona is rough. Harry is smart. If Harry is furry then Harry is kind. Kind things are red. If Harry is furry and Harry is red then Harry is not white. If Bob is smart then Bob is quiet. If Bob is smart then Bob is not kind. If something is rough then it is furry. All smart things are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-831_Q19", "context": "The cow is red. The cow needs the lion. The cow sees the rabbit. The dog is kind. The dog likes the lion. The dog needs the cow. The dog needs the rabbit. The dog sees the rabbit. The lion is blue. The lion is kind. The lion likes the rabbit. The lion needs the dog. The lion needs the rabbit. The rabbit is kind. The rabbit needs the lion. The rabbit sees the cow. If something likes the cow then the cow likes the lion. If something likes the rabbit and it needs the rabbit then it is green. If something is blue then it sees the rabbit. If something sees the cow then the cow likes the dog. If something sees the dog then it is blue. If something likes the dog and it needs the rabbit then the rabbit sees the dog. If something likes the lion and it likes the dog then the lion sees the dog. If something likes the dog then it needs the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1007_Q13", "context": "Anne is cold. Anne is round. Charlie is big. Charlie is furry. Charlie is green. Charlie is red. Charlie is round. Charlie is young. Fiona is green. Fiona is young. Gary is cold. Gary is red. If something is furry then it is cold. Round things are furry. If Gary is green and Gary is round then Gary is big. Cold, green things are red. All red, big things are young. If Fiona is young and Fiona is green then Fiona is round. Red things are big. All green, big things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-814_Q7", "context": "Charlie is cold. Charlie is furry. Charlie is rough. Charlie is white. Dave is rough. Dave is white. Erin is cold. Gary is not cold. Gary is furry. Gary is quiet. Gary is rough. If someone is young then they are rough. Cold people are white. All white people are young. All white, furry people are quiet. All rough people are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-531_Q9", "context": "The bald eagle likes the cow. The bald eagle visits the cow. The cat is round. The cat likes the bald eagle. The cat visits the bald eagle. The cow eats the bald eagle. The cow is red. The cow visits the cat. The tiger is kind. The tiger is rough. The tiger visits the cat. The tiger visits the cow. If something visits the tiger then it likes the cat. If something is round then it visits the tiger. If the bald eagle likes the tiger and the tiger is kind then the tiger is young. If something likes the cat and the cat visits the bald eagle then the bald eagle is round. If something likes the cow and it does not eat the cat then it is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle visits the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-964_Q2", "context": "The bear eats the tiger. The bear is blue. The bear likes the dog. The bear likes the tiger. The bear needs the cow. The cow eats the tiger. The cow likes the bear. The cow needs the dog. The dog eats the tiger. The dog needs the tiger. The tiger likes the bear. The tiger likes the dog. If someone needs the bear and the bear needs the cow then the cow eats the tiger. If someone is kind then they eat the dog. If someone needs the tiger then they are big. If someone eats the dog then they like the tiger. If someone is blue then they like the cow. If someone likes the cow and they like the dog then they need the bear. If someone eats the tiger and they are big then they eat the cow. If someone needs the bear then the bear needs the tiger. If someone needs the cow and they are young then the cow is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not need the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-519_Q13", "context": "Anne is furry. Anne is green. Anne is quiet. Charlie is green. Charlie is quiet. Fiona is furry. Harry is white. If someone is nice then they are white. All nice, rough people are round. If Fiona is quiet then Fiona is green. If someone is quiet and round then they are nice. All rough people are quiet. If someone is furry then they are rough. All quiet, green people are round. If Anne is round and Anne is green then Anne is rough. Quiet people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-793_Q4", "context": "The cat is not big. The cat sees the mouse. The cat visits the dog. The dog is not cold. The dog is not nice. The dog visits the mouse. The dog visits the tiger. The mouse is cold. The mouse is not nice. The mouse sees the cat. The tiger needs the cat. The tiger does not see the cat. If someone visits the mouse then the mouse does not see the dog. If someone sees the cat then they do not see the tiger. If someone visits the dog then the dog is not nice. If the cat is blue and the cat sees the mouse then the cat does not visit the tiger. If the cat visits the mouse then the mouse is blue. If someone sees the dog then the dog needs the tiger. If someone is cold and they do not see the tiger then the tiger sees the dog. If someone needs the tiger then they are kind. If someone is kind then they need the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse sees the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-989_Q1", "context": "Anne is rough. Anne is smart. Bob is nice. Bob is smart. Gary is nice. Gary is red. Gary is not rough. Gary is smart. Gary is young. Harry is rough. If Harry is cold then Harry is not young. If someone is rough then they are cold. If someone is white then they are not smart. If someone is cold and not young then they are smart. If someone is nice and smart then they are red. If someone is red then they are nice. Smart people are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-781_Q9", "context": "Anne is blue. Anne is furry. Anne is not nice. Bob is blue. Bob is furry. Bob is nice. Bob is rough. Bob is young. Fiona is blue. Fiona is kind. Harry is furry. If Anne is rough then Anne is furry. If something is young then it is furry. If something is young then it is blue. All kind, white things are rough. If something is nice then it is kind. Furry things are white. If Harry is furry then Harry is nice. Rough things are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1024_Q13", "context": "Anne is furry. Dave is furry. Dave is white. Gary is quiet. Gary is white. Harry is quiet. Harry is white. Furry, white things are red. All furry, smart things are red. If something is big and quiet then it is smart. All smart things are furry. If something is red then it is furry. All green things are big. All quiet things are green. If Gary is furry and Gary is smart then Gary is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1104_Q16", "context": "Anne is green. Bob is nice. Bob is quiet. Bob is smart. Erin is big. Harry is not quiet. Harry is young. If something is rough then it is nice. All big things are rough. If something is quiet and big then it is not rough. Smart things are green. If something is young and nice then it is green. If Erin is rough and Erin is nice then Erin is smart. All green things are young. If Bob is rough and Bob is quiet then Bob is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-286_Q10", "context": "The bear chases the cow. The bear chases the rabbit. The bear is rough. The bear likes the mouse. The cow likes the bear. The cow visits the mouse. The mouse chases the bear. The mouse chases the cow. The mouse is cold. The mouse visits the rabbit. The rabbit chases the cow. The rabbit is big. The rabbit likes the bear. The rabbit visits the cow. If someone chases the rabbit and they visit the rabbit then they like the mouse. If someone visits the mouse and they are not blue then the mouse is cold. If someone is big and they chase the bear then the bear is big. If someone is cold then they chase the bear. If someone is big then they are cold. If someone is big then they chase the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not chase the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-303_Q18", "context": "Charlie is kind. Erin is big. Erin is blue. Erin is furry. Erin is kind. Fiona is blue. Harry is big. Harry is not blue. Harry is cold. Harry is green. Harry is kind. Harry is not round. Furry, round things are kind. All kind things are green. Big, blue things are cold. All blue things are big. If something is round and kind then it is big. Round, blue things are furry. If something is blue and cold then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-866_Q7", "context": "Anne is not quiet. Anne is white. Erin is round. Gary is blue. Gary is quiet. Gary is red. Gary is rough. Gary is round. Gary is young. Harry is not young. All blue, young people are red. All white, rough people are red. If someone is young and red then they are blue. If someone is white and round then they are rough. White people are round. All red people are round. If Gary is white and Gary is blue then Gary is not rough. If someone is red and round then they are young. If someone is round and not white then they are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-211_Q18", "context": "The bald eagle is blue. The cat chases the squirrel. The cat is rough. The cat is young. The cat sees the mouse. The cat sees the squirrel. The mouse chases the squirrel. The mouse is kind. The mouse sees the bald eagle. The squirrel chases the cat. The squirrel is young. If something needs the cat then it chases the squirrel. If something sees the cat then it needs the cat. If something sees the bald eagle and it chases the mouse then it chases the cat. If something sees the squirrel then it needs the squirrel. If something needs the squirrel and it needs the cat then the squirrel sees the cat. If something chases the squirrel then the squirrel is young. If the squirrel chases the bald eagle and the bald eagle chases the cat then the cat is rough. If something sees the mouse then it sees the cat. If the mouse needs the bald eagle then the mouse sees the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse needs the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-215_Q14", "context": "The bald eagle is green. The bald eagle is round. The bald eagle sees the tiger. The bald eagle visits the rabbit. The lion is blue. The lion is rough. The lion sees the tiger. The rabbit eats the bald eagle. The rabbit sees the bald eagle. The rabbit visits the lion. The tiger eats the rabbit. If the tiger eats the lion then the lion sees the bald eagle. If something visits the bald eagle then the bald eagle eats the lion. If something visits the lion then it eats the lion. If something eats the lion then it visits the bald eagle. If something visits the bald eagle and it sees the tiger then the tiger is not blue. If the lion visits the tiger and the lion sees the rabbit then the tiger does not eat the rabbit. If the tiger sees the bald eagle and the bald eagle sees the tiger then the bald eagle is blue. If something sees the rabbit then the rabbit is blue. If something is nice and it sees the rabbit then it visits the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle visits the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-994_Q6", "context": "Anne is furry. Anne is kind. Anne is nice. Anne is white. Charlie is nice. Charlie is not white. Fiona is not furry. Fiona is not kind. Fiona is not red. Fiona is rough. Harry is not nice. Harry is round. All round things are kind. If Charlie is rough and Charlie is furry then Charlie is red. If Fiona is red and Fiona is nice then Fiona is furry. All rough, round things are furry. All kind, nice things are rough. If something is nice then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-507_Q10", "context": "The bald eagle eats the cow. The bald eagle eats the rabbit. The bald eagle is cold. The bald eagle needs the cow. The bald eagle needs the rabbit. The cat eats the cow. The cat eats the rabbit. The cat is nice. The cow is round. The cow needs the bald eagle. The cow visits the bald eagle. The rabbit eats the cat. The rabbit visits the bald eagle. The rabbit visits the cow. If someone eats the cat and the cat needs the bald eagle then the bald eagle is round. If someone is blue and round then they visit the rabbit. If someone is blue then they need the cow. If someone needs the cow then they visit the cow. If the cow visits the rabbit and the cow is blue then the cow eats the rabbit. If someone needs the bald eagle then the bald eagle is blue. If someone visits the cat and they need the cow then they eat the cat. If someone is blue and they need the cow then the cow is blue. If someone eats the rabbit then they need the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not visit the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-289_Q24", "context": "The bear is cold. The bear is young. The bear likes the mouse. The lion is cold. The lion is nice. The lion visits the mouse. The mouse chases the bear. The mouse chases the tiger. The mouse likes the tiger. The mouse visits the bear. The tiger is cold. The tiger visits the mouse. If someone likes the tiger and they like the bear then the bear chases the tiger. If the tiger chases the bear then the tiger is nice. If someone chases the lion then they visit the tiger. If the bear chases the mouse then the bear is cold. If someone visits the mouse then they like the bear. If someone chases the bear then they are cold. If someone is round and cold then they like the mouse. If someone chases the tiger then they visit the mouse. If someone chases the mouse then the mouse likes the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse likes the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-125_Q20", "context": "The bear chases the dog. The bear is rough. The bear needs the dog. The cow is rough. The cow needs the squirrel. The dog is round. The dog needs the bear. The dog needs the cow. The squirrel chases the cow. The squirrel is nice. The squirrel is red. The squirrel likes the dog. The squirrel needs the bear. The squirrel needs the dog. If the squirrel is rough then the squirrel is nice. If something likes the bear then the bear likes the dog. All rough things are round. If something is red then it chases the cow. If the dog chases the bear then the dog needs the bear. If something is rough then it needs the dog. If something needs the cow and it likes the bear then the cow chases the dog. If something is round and it likes the dog then it likes the bear. If something is round and it needs the squirrel then the squirrel is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow chases the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-676_Q5", "context": "The bald eagle chases the bear. The bald eagle is green. The bald eagle is kind. The bald eagle sees the tiger. The bear visits the bald eagle. The mouse chases the bear. The mouse chases the tiger. The mouse is cold. The mouse visits the tiger. The tiger chases the bear. The tiger sees the mouse. If someone sees the bald eagle then they visit the mouse. If someone is green then they see the bear. If someone sees the bear then the bear sees the bald eagle. If someone visits the mouse then the mouse sees the bear. If someone is green and they see the tiger then the tiger is young. If the mouse chases the tiger and the mouse sees the bear then the tiger chases the mouse. If someone visits the mouse then the mouse chases the tiger. If the tiger is green and the tiger visits the bald eagle then the bald eagle sees the mouse. If the bear sees the tiger and the bear is big then the tiger is big.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear sees the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-627_Q4", "context": "The cat does not visit the dog. The cow likes the cat. The cow needs the dog. The cow needs the lion. The cow visits the dog. The dog needs the cow. The dog visits the cow. The lion needs the dog. The lion visits the cow. The lion visits the dog. If something likes the cow and the cow likes the cat then the cow is rough. If something is rough and not kind then it is round. If the cat needs the cow then the cat likes the cow. If something needs the lion then the lion needs the cat. If something visits the cat and it needs the dog then the cat likes the lion. If the cat visits the dog then the cat needs the cow. If something likes the lion then it needs the cow. If something visits the cow then the cow visits the cat. If something likes the lion then the lion needs the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not visit the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-542_Q13", "context": "Anne is smart. Anne is young. Charlie is quiet. Charlie is young. Dave is blue. Dave is nice. Dave is quiet. Fiona is big. Fiona is nice. Fiona is quiet. Fiona is round. Fiona is smart. If someone is smart then they are round. If someone is blue then they are smart. Blue people are young. All young people are blue. All blue, big people are nice. Round, blue people are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-380_Q7", "context": "The bald eagle chases the lion. The bald eagle visits the lion. The bear is green. The bear is red. The cow visits the lion. The lion is rough. The lion visits the bear. If someone visits the cow then the cow is kind. If someone visits the cow and they are kind then they are rough. If someone is red then they chase the bear. If someone is red then they visit the cow. If someone is red and they visit the cow then they are kind. If someone visits the cow then they like the bear. If someone chases the bald eagle then the bald eagle likes the cow. If someone is rough and they like the bear then they chase the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-50_Q14", "context": "Anne is young. Bob is cold. Bob is not quiet. Bob is red. Bob is not young. Dave is red. Erin is quiet. If someone is blue then they are young. Quiet people are young. Young people are quiet. If someone is blue and round then they are not quiet. If Erin is red then Erin is blue. Blue people are kind. Young people are cold. Quiet, cold people are blue. Kind, young people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-277_Q15", "context": "The bald eagle chases the mouse. The bald eagle chases the squirrel. The bald eagle is big. The bald eagle is blue. The bear is young. The mouse does not chase the bear. The mouse does not eat the bear. The mouse does not visit the bear. The squirrel eats the bald eagle. The squirrel eats the mouse. The squirrel visits the bald eagle. Big things are round. If something is round then it eats the squirrel. If the bear chases the squirrel then the bear eats the mouse. If something is young then it eats the bear. If something eats the squirrel then it is big. If the bald eagle chases the squirrel then the bald eagle does not chase the bear. If the mouse visits the bear then the bear visits the bald eagle. If something eats the squirrel then the squirrel is big. If something visits the bald eagle and it does not eat the bear then the bald eagle eats the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-96_Q1", "context": "Bob is cold. Dave is blue. Dave is cold. Dave is furry. Dave is quiet. Dave is white. Erin is furry. Erin is red. Fiona is cold. Fiona is furry. If something is red and cold then it is quiet. If something is big then it is blue. All blue, big things are white. If Erin is quiet then Erin is furry. If Fiona is not furry then Fiona is quiet. If Fiona is blue and Fiona is white then Fiona is quiet. If Bob is furry and Bob is cold then Bob is white. Quiet things are big. If something is furry then it is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-345_Q16", "context": "The bald eagle chases the cow. The bald eagle chases the mouse. The bald eagle is green. The bald eagle sees the mouse. The cow chases the dog. The cow likes the bald eagle. The cow likes the mouse. The dog is green. The dog is kind. The mouse likes the cow. The mouse likes the dog. If something likes the cow and the cow sees the mouse then the cow chases the mouse. If something likes the cow and the cow sees the bald eagle then the cow likes the dog. If something chases the cow and it sees the cow then the cow sees the bald eagle. If something is green then it sees the cow. If the cow likes the dog then the cow sees the dog. If the cow is kind then the cow likes the bald eagle. If something sees the dog then it chases the mouse. If something likes the dog then it sees the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog chases the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-398_Q11", "context": "Anne is red. Anne is rough. Dave is green. Dave is red. Erin is cold. Gary is cold. Gary is not white. If something is nice and kind then it is rough. Cold, white things are rough. If Erin is red and Erin is green then Erin is kind. If something is cold and not green then it is red. If Gary is rough and Gary is kind then Gary is white. All red, white things are cold. If something is red and rough then it is nice. All kind, green things are white. If something is green and red then it is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-637_Q8", "context": "The cat is green. The dog sees the cat. The dog visits the mouse. The mouse is big. The mouse visits the rabbit. The rabbit chases the mouse. The rabbit visits the dog. If something chases the dog then the dog chases the mouse. If something visits the mouse then it is green. If the cat is red and the mouse does not see the cat then the cat is young. If something sees the cat and it chases the mouse then it visits the cat. If something chases the rabbit then the rabbit is young. If something is big then it chases the rabbit. If something is young then it chases the dog. If something chases the cat then the cat does not visit the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not chase the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-662_Q21", "context": "The bald eagle visits the cow. The cow sees the mouse. The cow does not visit the bald eagle. The cow visits the tiger. The mouse is blue. The tiger needs the mouse. The tiger sees the bald eagle. The tiger sees the cow. The tiger visits the bald eagle. The tiger does not visit the cow. The tiger visits the mouse. If the cow visits the tiger then the tiger needs the cow. If someone needs the cow then they are green. If someone needs the tiger and they need the mouse then the mouse needs the cow. If someone needs the bald eagle and the bald eagle visits the tiger then the tiger sees the mouse. If someone needs the mouse and the mouse is red then they need the bald eagle. If someone is green then they need the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-2_Q19", "context": "The bear is blue. The bear is kind. The bear needs the dog. The bear needs the squirrel. The dog needs the squirrel. The rabbit eats the bear. The rabbit eats the dog. The rabbit is young. The rabbit likes the squirrel. The squirrel is not kind. The squirrel does not like the dog. The squirrel does not need the dog. If someone needs the rabbit then the rabbit is blue. If someone likes the dog and they eat the bear then the dog likes the bear. If someone needs the squirrel then they do not eat the rabbit. If someone is blue then they need the rabbit. If someone eats the squirrel then they are big. If someone is blue then they need the squirrel. If someone is big and they do not eat the squirrel then the squirrel is not big. If someone eats the bear and they do not eat the rabbit then the bear is big.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not like the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-17_Q15", "context": "Bob is quiet. Dave is smart. Dave is young. Erin is blue. Erin is furry. Erin is quiet. Erin is round. Erin is smart. Harry is blue. Harry is furry. Harry is quiet. Harry is round. If Dave is nice then Dave is blue. If Dave is furry and Dave is smart then Dave is blue. If someone is round and young then they are nice. All round people are blue. If someone is blue then they are young. If someone is quiet and smart then they are young. Young, quiet people are round. Quiet people are furry. Furry people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-435_Q19", "context": "The bear is blue. The bear is rough. The bear is young. The bear needs the lion. The bear needs the squirrel. The bear sees the tiger. The bear visits the tiger. The lion is young. The lion needs the tiger. The lion visits the squirrel. The squirrel is blue. The squirrel sees the lion. The squirrel visits the lion. The tiger needs the lion. If something sees the squirrel then it sees the tiger. If something sees the bear and it sees the tiger then the bear needs the tiger. If the squirrel visits the bear then the bear sees the lion. If the tiger sees the lion and the lion sees the squirrel then the lion sees the bear. If something is young and it visits the lion then it sees the squirrel. If something needs the squirrel then the squirrel sees the bear. If something needs the tiger then it visits the bear. If something is blue then it needs the bear. If something needs the bear and the bear visits the tiger then it sees the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not need the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-578_Q12", "context": "The bear is blue. The bear is nice. The bear sees the tiger. The dog needs the bear. The dog sees the tiger. The rabbit needs the dog. The tiger is rough. If someone is nice then they are rough. If someone is rough then they see the rabbit. All rough people are kind. If someone chases the rabbit and the rabbit is kind then they need the dog. If someone is green then they are nice. If someone is kind and they chase the bear then they chase the tiger. If someone chases the bear then they chase the rabbit. If the bear sees the rabbit then the rabbit is green. If the rabbit needs the dog then the rabbit sees the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-314_Q1", "context": "The bald eagle does not chase the bear. The bald eagle chases the lion. The bald eagle is young. The bald eagle likes the mouse. The bear is round. The bear likes the bald eagle. The bear likes the mouse. The bear sees the bald eagle. The bear sees the mouse. The lion is big. The lion likes the bear. The mouse does not chase the bald eagle. The mouse is young. The mouse likes the lion. If something sees the lion and the lion likes the bear then it likes the bald eagle. If something likes the bald eagle then it chases the bald eagle. If something is big then it chases the bald eagle. If the mouse is big then the mouse chases the lion. If something chases the bald eagle then the bald eagle likes the lion. If something chases the bald eagle then it likes the mouse. If something chases the bald eagle then the bald eagle sees the lion. If something is young and it does not chase the lion then the lion is young. If something is young and it chases the bald eagle then it does not chase the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-125_Q14", "context": "Anne is rough. Bob is blue. Bob is cold. Charlie is quiet. Charlie is not rough. Charlie is white. Gary is blue. If something is blue then it is quiet. All quiet, blue things are green. Cold, green things are not white. If Anne is green then Anne is not cold. All green things are cold. If something is quiet and not white then it is not rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-331_Q9", "context": "The bear is green. The bear is red. The bear is rough. The bear likes the tiger. The bear visits the cow. The bear visits the tiger. The cat visits the tiger. The cow is red. The cow is young. The tiger likes the cow. The tiger needs the bear. The tiger visits the cow. If someone likes the tiger then they visit the bear. If the tiger visits the bear then the tiger visits the cat. If someone visits the bear then the bear likes the cat. If the tiger likes the cat then the tiger visits the bear. If the cow likes the cat then the cow is young. If someone needs the bear then the bear likes the cow. If someone is round and they like the tiger then the tiger likes the cat. If someone visits the bear then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger visits the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-866_Q21", "context": "The cow chases the lion. The cow does not chase the mouse. The cow is big. The cow sees the mouse. The lion chases the rabbit. The lion needs the cow. The lion sees the mouse. The mouse does not chase the lion. The mouse is green. The mouse does not need the cow. The mouse sees the cow. The rabbit chases the cow. The rabbit chases the lion. The rabbit chases the mouse. The rabbit sees the cow. The rabbit sees the lion. If something is cold and it chases the rabbit then the rabbit sees the cow. If the lion is red and the lion is big then the lion needs the cow. If something needs the lion then it is cold. If something is big and it chases the rabbit then the rabbit is not big. If something needs the rabbit and the rabbit is not red then the rabbit does not need the lion. If something is cold then it sees the rabbit. If something sees the mouse then it needs the lion. If something sees the rabbit then it chases the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not chase the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1345_Q4", "context": "Charlie is green. Charlie is white. Dave is blue. Dave is green. Dave is round. Fiona is blue. Harry is round. All furry people are blue. Green, round people are kind. Green people are red. All red people are furry. If Dave is blue and Dave is kind then Dave is red. If Harry is red then Harry is furry. Kind people are round. If someone is blue and green then they are round. If Dave is round then Dave is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-917_Q9", "context": "The bald eagle needs the dog. The bear sees the dog. The dog is round. The dog sees the bald eagle. The lion is blue. The lion sees the bear. The lion visits the bear. If someone needs the bear then they are round. If someone is round then they need the lion. If someone is nice then they need the dog. If someone needs the bald eagle then the bald eagle visits the bear. If someone needs the bear then the bear is round. If someone needs the lion then they need the bear. If the lion does not visit the bear and the lion does not need the bear then the lion is not blue. If the lion visits the bald eagle and the bald eagle sees the bear then the lion is not blue. If the bear is young and the bear does not need the lion then the bear sees the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear needs the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-686_Q21", "context": "The bear chases the dog. The bear does not chase the mouse. The bear is big. The bear is blue. The cow chases the mouse. The cow likes the dog. The dog chases the bear. The dog eats the cow. The dog is big. The dog is not blue. The dog likes the bear. The dog likes the mouse. The mouse eats the cow. The mouse eats the dog. If someone eats the dog then they are rough. If someone is round and they like the dog then they like the mouse. If someone is big then they do not like the dog. If someone is rough then they are blue. If someone likes the bear then the bear is not rough. If someone is blue and they eat the dog then they like the cow. If someone is blue and they like the cow then the cow eats the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not like the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-703_Q20", "context": "The bear chases the tiger. The bear needs the tiger. The dog chases the mouse. The dog needs the bear. The dog needs the tiger. The dog visits the bear. The dog visits the mouse. The mouse is cold. The mouse is nice. The mouse is red. The tiger chases the mouse. The tiger is big. The tiger is nice. The tiger visits the mouse. If someone is nice and they visit the tiger then the tiger is red. If someone needs the dog then they chase the bear. If someone needs the tiger and they chase the dog then the tiger is young. If someone chases the bear then they chase the dog. If someone is big then they are red. If someone needs the mouse then they chase the dog. If someone is red then they need the mouse. If someone needs the bear then the bear is big. If someone visits the bear then the bear chases the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear visits the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-936_Q1", "context": "The bald eagle chases the mouse. The bald eagle is kind. The cat is nice. The cat is round. The cat likes the mouse. The cow chases the mouse. The cow is cold. The mouse chases the cat. The mouse chases the cow. The mouse is rough. The mouse does not like the bald eagle. If something chases the mouse then it likes the cow. If something is rough and it likes the bald eagle then it is round. If something likes the cow then it is round. If the cow sees the cat then the cat chases the mouse. If something is kind then it does not see the mouse. If something likes the cow and the cow is round then it sees the cat. If something sees the mouse then the mouse chases the cow. If the bald eagle is round then the bald eagle sees the cow. If something chases the cat then it is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-150_Q17", "context": "The bald eagle is young. The bald eagle sees the tiger. The bear chases the cat. The bear is big. The bear is round. The bear likes the bald eagle. The cat is not young. The cat likes the bear. The tiger chases the cat. The tiger is big. The tiger does not like the bald eagle. If someone is rough and cold then they chase the tiger. If someone chases the bear then the bear chases the tiger. If someone sees the bald eagle and they like the bear then the bear sees the tiger. If someone sees the bear then they see the bald eagle. If someone is big and round then they like the cat. If someone chases the cat and they like the cat then the cat sees the bear. If someone sees the tiger then they see the bear. If someone is young and not big then they do not like the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not see the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-436_Q8", "context": "Anne is cold. Anne is furry. Anne is red. Erin is furry. Erin is green. Erin is nice. Erin is red. Fiona is rough. Gary is green. Gary is rough. All red people are rough. If someone is furry and rough then they are nice. Red, rough people are cold. If someone is rough then they are red. If someone is cold then they are furry. All nice people are rough. If someone is cold and nice then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-895_Q2", "context": "The bald eagle is round. The bear is round. The bear likes the rabbit. The bear sees the dog. The dog is not nice. The dog sees the bear. The dog visits the rabbit. The rabbit is nice. The rabbit is rough. The rabbit does not see the bear. The rabbit visits the dog. If something visits the bald eagle and the bald eagle likes the dog then it is not rough. If something visits the dog and it likes the bear then the bear is rough. If something is nice and it sees the bald eagle then the bald eagle is cold. If something is cold then it likes the bear. If something sees the rabbit then the rabbit visits the bald eagle. If something likes the rabbit and the rabbit likes the bear then the rabbit is rough. If something is rough then it is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-156_Q17", "context": "Bob is green. Bob is nice. Charlie is green. Erin is green. Erin is kind. Gary is kind. Gary is nice. If someone is young and kind then they are quiet. All quiet people are white. If Charlie is green then Charlie is cold. All cold people are nice. If Gary is green and Gary is kind then Gary is white. Nice, cold people are kind. If someone is cold and kind then they are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-59_Q10", "context": "The cat needs the cow. The cat needs the lion. The cow is big. The cow needs the cat. The cow needs the lion. The cow sees the squirrel. The cow visits the cat. The lion is cold. The lion visits the squirrel. The squirrel needs the cow. The squirrel visits the cat. If someone is kind then they see the squirrel. If someone is big then they are cold. If someone visits the cat then they are big. If the cat visits the squirrel then the squirrel needs the cow. If someone is cold then they need the lion. If someone needs the lion then they are kind. If someone visits the squirrel and they need the lion then they are big. If someone is cold and they see the squirrel then they are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-188_Q11", "context": "The bear chases the cat. The bear chases the squirrel. The bear eats the squirrel. The bear is young. The bear sees the cow. The cat does not chase the squirrel. The cat is green. The cow chases the squirrel. The cow eats the squirrel. The cow sees the bear. The squirrel is kind. The squirrel is round. The squirrel is young. The squirrel does not see the cat. If someone chases the squirrel then they eat the cat. If someone eats the cow then the cow is blue. If someone is young then they eat the cow. If someone is blue then they eat the cow. If someone is green and they eat the cow then the cow does not see the bear. If someone sees the cow then they chase the cat. If someone chases the cow then the cow eats the squirrel. If someone eats the bear and they do not chase the squirrel then the squirrel eats the cow. If someone eats the cow and the cow eats the cat then they see the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow chases the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1063_Q13", "context": "Anne is blue. Anne is round. Anne is young. Bob is round. Bob is young. Erin is big. Harry is furry. If something is furry then it is blue. Round things are white. If Erin is blue and Erin is young then Erin is white. If Bob is rough then Bob is big. If something is blue then it is rough. If Anne is round then Anne is furry. If something is young and white then it is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-437_Q6", "context": "Anne is blue. Anne is furry. Anne is red. Anne is rough. Dave is big. Dave is blue. Dave is kind. Dave is round. Fiona is blue. Fiona is furry. Fiona is kind. Fiona is round. Harry is blue. Harry is furry. If Anne is rough and Anne is round then Anne is red. If something is kind and rough then it is red. Kind, furry things are round. Red, blue things are big. Blue, round things are rough. All big, blue things are kind. All rough things are big. All red, kind things are rough. If something is blue then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-197_Q4", "context": "The bear is blue. The bear likes the cat. The bear visits the cat. The bear does not visit the cow. The bear visits the rabbit. The cat needs the cow. The cow is blue. The rabbit is cold. The rabbit needs the bear. The rabbit needs the cat. If the rabbit is blue and the cow does not like the rabbit then the cow does not like the bear. If the cat needs the bear then the bear needs the cow. If someone likes the bear then they need the cow. If someone needs the bear and they visit the bear then the bear does not need the cat. If someone needs the cat then the cat likes the rabbit. If someone is rough then they need the bear. If someone is cold then they need the bear. If someone likes the cow and they are not big then they are young. If someone needs the cow then they are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-584_Q14", "context": "Charlie is big. Charlie is cold. Charlie is nice. Erin is red. Fiona is nice. Fiona is round. Harry is nice. If someone is round and red then they are big. All white, nice people are not big. If someone is red and big then they are green. If someone is red and white then they are not green. White people are green. If Harry is nice and Harry is cold then Harry is round. Round people are red. Nice people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-663_Q22", "context": "Anne is not smart. Anne is white. Bob is not big. Bob is quiet. Bob is red. Gary is smart. Harry is big. If Anne is smart then Anne is not white. If Anne is red and Anne is not big then Anne is quiet. All smart people are white. If Gary is quiet then Gary is big. If someone is white and smart then they are quiet. Big people are rough. All rough people are round. If someone is white and not quiet then they are not round.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-216_Q13", "context": "Charlie is green. Charlie is smart. Fiona is round. Fiona is not white. Gary is white. Harry is round. Harry is not young. All nice, smart things are white. If something is green then it is nice. All round, green things are blue. White things are young. All blue things are young. All young, nice things are round. If Fiona is green then Fiona is not blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-393_Q7", "context": "The cow visits the dog. The dog is kind. The dog is not rough. The rabbit likes the cow. The rabbit visits the squirrel. The squirrel likes the rabbit. The squirrel needs the rabbit. If something needs the cow then the cow needs the rabbit. If something likes the cow and the cow visits the dog then it likes the squirrel. All nice things are rough. If something needs the rabbit then it is blue. If something is blue then it needs the cow. If something visits the squirrel and the squirrel is nice then it needs the rabbit. If something visits the dog then the dog is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow needs the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-148_Q22", "context": "The bald eagle is green. The bald eagle is round. The bear is cold. The dog needs the bald eagle. The dog needs the lion. The lion is big. The lion is green. The lion does not like the bear. The lion likes the dog. The lion does not need the bear. If something likes the lion and it chases the lion then it is round. If something likes the dog and it likes the lion then the dog likes the lion. If the lion is green and the lion is round then the lion chases the bear. If something needs the lion and the lion does not chase the bald eagle then it chases the lion. If something likes the lion then it likes the dog. If something likes the dog then it is big. If something is cold then it likes the lion. If something likes the bear and it is round then it needs the bald eagle. If something chases the lion and the lion does not need the bald eagle then the bald eagle is not kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear chases the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-771_Q1", "context": "The bear eats the dog. The bear is kind. The bear is red. The bear likes the cow. The bear likes the lion. The bear sees the cow. The cow eats the dog. The cow sees the bear. The dog eats the bear. The dog eats the cow. The dog is nice. The dog sees the bear. The lion likes the bear. The lion likes the cow. The lion likes the dog. The lion sees the bear. If someone eats the cow and they are cold then the cow likes the dog. If someone likes the dog then the dog is cold. If someone eats the dog then they like the dog. If someone is kind then they are young. If someone is kind and young then they eat the cow. If the lion likes the bear and the bear sees the lion then the lion eats the cow. If someone eats the lion then they see the dog. If someone eats the cow then they see the lion. If the lion is young and the lion likes the bear then the bear sees the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog sees the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-21_Q9", "context": "Anne is big. Anne is green. Anne is young. Dave is green. Dave is young. Gary is blue. Gary is nice. Gary is young. Harry is blue. Harry is nice. All blue people are big. If someone is young then they are big. If someone is big and not nice then they are not green. If someone is round then they are green. If someone is young and not blue then they are not round. If someone is red then they are round. Young people are red. If someone is nice and big then they are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-706_Q16", "context": "Bob is big. Bob is red. Bob is white. Bob is young. Dave is big. Dave is quiet. Fiona is kind. Fiona is nice. Fiona is quiet. Fiona is red. Fiona is young. Harry is white. If something is kind then it is nice. All kind, white things are young. If something is big and quiet then it is kind. Young, white things are red. If something is kind and young then it is big. If Dave is nice then Dave is white. If something is young and red then it is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-551_Q22", "context": "Bob is furry. Bob is not white. Erin is green. Erin is young. Fiona is green. Fiona is round. Harry is furry. If Erin is blue then Erin is cold. If Bob is furry then Bob is not blue. All blue things are white. All green things are white. All young things are cold. Furry, round things are blue. White things are young. If Fiona is cold then Fiona is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-511_Q15", "context": "The bear chases the mouse. The bear is rough. The bear is round. The bear likes the mouse. The bear sees the mouse. The cow is nice. The mouse chases the cow. The mouse chases the rabbit. The mouse is cold. The mouse likes the bear. The mouse sees the cow. The rabbit chases the bear. The rabbit is cold. The rabbit is round. If something chases the rabbit and it sees the mouse then it likes the rabbit. If something likes the rabbit then the rabbit chases the mouse. If something chases the mouse then it likes the bear. If something is cold then it likes the cow. If something is nice and it likes the cow then the cow chases the rabbit. If something likes the bear then it chases the rabbit. If the rabbit sees the cow then the cow chases the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not like the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-17_Q8", "context": "The cow eats the tiger. The lion is round. The lion needs the tiger. The mouse needs the lion. The mouse visits the lion. The mouse visits the tiger. The tiger eats the cow. If the cow eats the lion and the lion is red then the cow eats the tiger. If someone eats the mouse and the mouse needs the cow then the mouse is big. If someone visits the mouse and they eat the lion then the mouse is red. Round people are big. If someone eats the mouse then the mouse needs the cow. If someone needs the lion and they are not round then they visit the tiger. If the tiger visits the cow and the cow is cold then the tiger does not need the mouse. If someone is big then they eat the mouse. If someone needs the mouse then they eat the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not need the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1180_Q8", "context": "Bob is cold. Bob is furry. Bob is smart. Bob is white. Charlie is furry. Erin is green. Erin is quiet. Erin is white. Gary is furry. Gary is quiet. Furry people are white. If someone is quiet then they are cold. If someone is white and round then they are quiet. If someone is white then they are round. If Charlie is cold and Charlie is furry then Charlie is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-514_Q13", "context": "The bald eagle eats the squirrel. The bald eagle is green. The bald eagle likes the dog. The bald eagle needs the rabbit. The dog is big. The dog is round. The dog needs the rabbit. The dog needs the squirrel. The rabbit likes the squirrel. The squirrel eats the bald eagle. The squirrel likes the bald eagle. The squirrel likes the rabbit. If someone is big then they eat the squirrel. If someone needs the rabbit then the rabbit likes the bald eagle. If someone is big and they like the bald eagle then the bald eagle is rough. If the bald eagle is round and the bald eagle eats the rabbit then the rabbit is blue. If someone is round and they eat the bald eagle then they eat the dog. If the dog eats the rabbit then the rabbit likes the squirrel. If someone eats the squirrel then they are green. If someone is green then they eat the rabbit. If someone likes the bald eagle then they are big.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not eat the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-846_Q2", "context": "Anne is red. Charlie is furry. Dave is blue. Dave is not cold. Dave is furry. Dave is not nice. Fiona is cold. Red, furry things are not quiet. Cold things are quiet. Cold, red things are quiet. If Fiona is furry and Fiona is cold then Fiona is not red. If Fiona is quiet then Fiona is blue. If something is furry and not green then it is not cold. If something is quiet and green then it is nice. All quiet, blue things are nice. All nice things are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1253_Q20", "context": "Charlie is furry. Dave is furry. Dave is quiet. Dave is smart. Fiona is rough. Fiona is white. Harry is cold. Harry is furry. Harry is quiet. Harry is rough. All quiet, rough things are cold. All quiet, furry things are cold. All young things are smart. All rough things are quiet. White, furry things are young. Young, furry things are quiet. If something is cold then it is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-941_Q7", "context": "The bear likes the lion. The bear sees the lion. The dog is green. The lion is cold. The lion sees the bear. The rabbit is nice. The rabbit needs the lion. If the bear needs the dog then the dog likes the lion. If someone sees the bear and they are green then the bear needs the dog. If someone likes the lion then they see the dog. If someone is round and nice then they do not need the lion. If someone sees the rabbit and they like the bear then they do not like the lion. If someone sees the dog then the dog likes the rabbit. If someone sees the bear and the bear is cold then the bear sees the dog. If someone sees the dog then they see the rabbit. If someone sees the dog then the dog sees the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear needs the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-495_Q17", "context": "Bob is furry. Bob is kind. Bob is nice. Bob is white. Charlie is big. Charlie is nice. Fiona is big. Fiona is round. Fiona is white. Harry is white. If someone is round then they are nice. If Fiona is rough then Fiona is round. All furry, big people are rough. If someone is kind and nice then they are furry. All round people are big. If someone is nice and big then they are kind. All round, big people are white. If Charlie is furry and Charlie is rough then Charlie is round. Kind people are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-131_Q4", "context": "Bob is blue. Bob is furry. Bob is smart. Fiona is furry. Fiona is kind. Fiona is smart. Gary is big. Gary is green. Harry is green. Harry is kind. All furry people are kind. Smart people are big. Blue people are green. Kind people are young. Green people are smart. If someone is young then they are blue. All blue, smart people are kind. All smart people are furry. All young people are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-95_Q2", "context": "Anne is big. Anne is blue. Anne is nice. Charlie is big. Charlie is green. Charlie is nice. Charlie is quiet. Charlie is rough. Charlie is white. Erin is white. Harry is blue. Harry is green. Harry is quiet. Harry is rough. All green, blue people are white. If someone is white then they are quiet. Big people are rough. Quiet people are green. If someone is rough and white then they are blue. Green people are big. White people are nice. All blue, white people are rough. If someone is blue then they are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-44_Q7", "context": "Anne is furry. Anne is green. Anne is not red. Anne is smart. Anne is white. Bob is blue. Bob is furry. Bob is green. Bob is red. Bob is smart. Gary is red. Harry is cold. Harry is green. Harry is red. Harry is not smart. Harry is white. All red people are white. If someone is cold and blue then they are furry. If someone is blue and cold then they are furry. If someone is white then they are furry. Blue people are green. If Gary is furry then Gary is cold. If someone is green and not white then they are blue. If someone is cold then they are blue. Smart people are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1127_Q18", "context": "Anne is furry. Anne is green. Anne is red. Bob is green. Bob is red. Bob is round. Erin is furry. Erin is quiet. Erin is rough. Erin is round. Gary is quiet. Furry, red things are green. Quiet, red things are furry. If Gary is green and Gary is furry then Gary is rough. If Bob is furry and Bob is round then Bob is quiet. If something is rough and furry then it is round. Quiet things are red. All furry, green things are young. If something is young and quiet then it is furry. If Anne is quiet then Anne is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1137_Q5", "context": "Charlie is nice. Dave is big. Dave is white. Gary is blue. Gary is furry. Gary is red. Harry is big. Harry is furry. Harry is nice. Harry is red. All nice things are big. Furry things are red. Nice, big things are red. If something is furry then it is big. Big, red things are young. Furry things are white. All nice things are blue. Red, big things are young. If something is young and blue then it is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-50_Q4", "context": "The bald eagle is red. The cat is red. The dog likes the bald eagle. The lion chases the dog. The lion is big. The lion is green. The lion is red. The lion likes the bald eagle. The lion likes the cat. The lion likes the dog. The lion needs the bald eagle. The lion needs the cat. If someone is big and they need the lion then the lion needs the dog. If someone needs the lion then the lion is cold. If someone is big and they like the bald eagle then they are kind. If someone chases the lion then they do not need the cat. If someone is kind then they need the lion. If someone needs the dog and they are big then the dog is big. If the dog likes the cat then the cat does not chase the lion. If the dog likes the bald eagle then the dog likes the lion. If someone needs the lion and they chase the dog then they are green.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not like the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-437_Q8", "context": "Anne is furry. Charlie is green. Charlie is not red. Dave is furry. Dave is green. Gary is cold. Gary is furry. Gary is green. Gary is red. Gary is rough. Green, furry people are cold. If someone is nice and not furry then they are not cold. If someone is cold then they are rough. All rough, furry people are nice. If someone is green and not furry then they are nice. All furry, nice people are smart. Smart, rough people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-288_Q2", "context": "The bear needs the squirrel. The dog is young. The dog needs the lion. The dog needs the squirrel. The dog visits the lion. The lion chases the bear. The lion is green. The lion is young. The squirrel chases the bear. The squirrel does not chase the dog. The squirrel does not chase the lion. The squirrel is young. If someone visits the bear then they visit the squirrel. If someone visits the bear then the bear is green. If the bear chases the squirrel then the squirrel does not chase the lion. If someone visits the squirrel then the squirrel needs the lion. If someone is young and they do not need the dog then the dog visits the lion. If someone visits the bear then the bear does not need the lion. If someone needs the lion then they visit the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not need the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-822_Q14", "context": "The bald eagle is cold. The bald eagle is young. The bald eagle needs the cow. The bald eagle does not see the tiger. The cow is cold. The squirrel does not visit the bald eagle. The squirrel visits the cow. The tiger is not cold. The tiger does not need the squirrel. The tiger sees the bald eagle. The tiger sees the cow. If the cow visits the bald eagle then the bald eagle does not need the tiger. If something is red and it sees the bald eagle then the bald eagle visits the cow. If something visits the cow and it needs the cow then it visits the bald eagle. If something sees the cow then it is red. If something sees the squirrel then it needs the squirrel. If something visits the bald eagle and the bald eagle needs the cow then the cow sees the squirrel. If something visits the squirrel and the squirrel is red then the squirrel does not see the tiger. If something sees the cow then it is not cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel needs the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-447_Q11", "context": "Bob is white. Erin is kind. Gary is not kind. Gary is quiet. Harry is quiet. Harry is smart. Harry is white. All white people are smart. If someone is red and white then they are smart. Cold, kind people are smart. Cold people are not red. All blue, smart people are red. If someone is smart and kind then they are blue. If someone is white and smart then they are kind. If Bob is red then Bob is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-370_Q3", "context": "Charlie is not kind. Charlie is not red. Charlie is white. Dave is white. Fiona is red. Fiona is not young. Gary is red. Young, red people are cold. Young people are cold. If Gary is kind then Gary is young. If Gary is white then Gary is not nice. If someone is nice then they are not young. If someone is white and red then they are young. All red people are kind. Cold, red people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-863_Q1", "context": "Anne is green. Charlie is red. Dave is green. Dave is quiet. Dave is not red. Dave is not smart. Dave is young. Erin is big. Erin is quiet. Erin is red. Big people are young. Rough, quiet people are young. Green, quiet people are big. If someone is red and rough then they are big. Quiet people are green. If someone is red and big then they are green. Red people are quiet. If someone is red then they are quiet. If someone is young then they are not smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-116_Q6", "context": "Charlie is kind. Charlie is red. Dave is furry. Dave is kind. Gary is red. Gary is round. Harry is furry. Furry, round people are young. All young, round people are rough. Kind people are round. If Harry is kind then Harry is red. If someone is rough and red then they are young. If someone is rough and young then they are quiet. Round, quiet people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-132_Q15", "context": "The bear eats the cat. The bear needs the cow. The bear visits the cat. The cat eats the rabbit. The cat needs the cow. The cat needs the rabbit. The cat visits the cow. The cow eats the rabbit. The cow needs the cat. The cow needs the rabbit. The rabbit eats the cat. The rabbit is big. The rabbit is red. The rabbit needs the cat. The rabbit visits the cat. The rabbit visits the cow. If something visits the cow and the cow is blue then it eats the bear. If something needs the rabbit and the rabbit needs the cow then it visits the cow. If something visits the cow then it is blue. If something eats the cat and it eats the bear then the cat is big. If something needs the bear then it visits the rabbit. If something is blue then it needs the cow. If something eats the rabbit then the rabbit needs the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not visit the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-869_Q14", "context": "The dog eats the mouse. The dog eats the rabbit. The dog is rough. The mouse is kind. The mouse sees the dog. The rabbit does not see the mouse. The tiger eats the mouse. The tiger eats the rabbit. The tiger is cold. The tiger does not like the dog. The tiger does not like the mouse. If someone eats the mouse and they do not like the tiger then the mouse sees the rabbit. If the dog is rough then the dog is not cold. If someone sees the mouse then they eat the tiger. If someone eats the tiger then the tiger is kind. If someone is red and they do not see the tiger then the tiger is not kind. If the rabbit sees the tiger then the rabbit does not see the dog. If someone eats the tiger then they are kind. If someone is kind then they see the mouse. If someone eats the rabbit and they like the dog then they are green.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-28_Q1", "context": "The bald eagle chases the tiger. The bald eagle visits the tiger. The bear visits the tiger. The cow is round. The cow visits the tiger. The tiger sees the bald eagle. The tiger visits the bear. If something is nice and rough then it sees the tiger. If the bald eagle is green then the bald eagle is nice. If something visits the bald eagle then it is rough. If something visits the cow and the cow chases the tiger then the tiger sees the bear. Round, rough things are nice. If something chases the tiger then it is green. If something sees the tiger then the tiger is cold. If something sees the bear then the bear sees the bald eagle. If something is green then it visits the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle visits the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-1025_Q20", "context": "The bald eagle is green. The bald eagle is not rough. The dog is rough. The mouse is rough. The mouse is not round. The mouse sees the rabbit. The rabbit is not green. The rabbit is kind. The rabbit needs the mouse. The rabbit sees the bald eagle. If something needs the mouse then the mouse sees the rabbit. If the rabbit needs the dog and the rabbit sees the bald eagle then the rabbit sees the dog. If something is rough and it needs the dog then the dog is round. If the bald eagle is not rough then the bald eagle sees the dog. If something needs the rabbit then the rabbit chases the dog. If something needs the rabbit and the rabbit chases the dog then the rabbit is rough. If the bald eagle chases the rabbit and the bald eagle is not big then the bald eagle chases the mouse. If something sees the dog then it needs the rabbit. If something is kind and it chases the dog then it needs the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1165_Q6", "context": "Anne is cold. Anne is green. Anne is kind. Anne is quiet. Anne is rough. Anne is smart. Anne is young. Charlie is cold. Charlie is rough. Charlie is smart. Erin is cold. Erin is quiet. Gary is cold. Gary is smart. All smart, quiet things are green. If Gary is smart then Gary is rough. If something is quiet and green then it is cold. All quiet, green things are young. Young, smart things are green. If Anne is rough and Anne is kind then Anne is young. Young, quiet things are kind. If something is rough then it is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-456_Q24", "context": "The bald eagle does not see the lion. The bear does not chase the bald eagle. The bear sees the bald eagle. The bear sees the lion. The lion is not blue. The tiger does not chase the bear. The tiger chases the lion. If the bear is green and the bear visits the lion then the lion does not visit the bald eagle. If someone sees the bald eagle and they are young then they see the bear. If someone is green and they see the bald eagle then the bald eagle is young. If someone sees the lion then they chase the tiger. If someone is young then they chase the tiger. If someone is young then they chase the lion. If someone is young then they see the bald eagle. If someone visits the bald eagle then they are green. If someone chases the tiger and they see the lion then they are green.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1226_Q5", "context": "Bob is big. Bob is round. Charlie is big. Erin is blue. Harry is blue. Harry is round. Harry is young. All young things are cold. All big, blue things are young. If something is smart then it is big. If something is big then it is kind. If something is cold and blue then it is round. If something is round and kind then it is blue. All cold things are young. All cold things are young. If Erin is blue then Erin is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-80_Q5", "context": "Anne is blue. Anne is cold. Dave is red. Dave is white. Erin is cold. Erin is nice. Erin is quiet. Erin is red. Harry is furry. Harry is red. Furry things are white. If something is red then it is furry. If Anne is blue and Anne is furry then Anne is nice. All cold, blue things are nice. Nice, blue things are red. If something is blue and white then it is quiet. If something is furry and not nice then it is quiet. If Anne is quiet and Anne is red then Anne is white.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-516_Q23", "context": "The bald eagle chases the bear. The bald eagle is big. The bald eagle is cold. The bear is green. The bear needs the bald eagle. The bear needs the rabbit. The rabbit chases the squirrel. The rabbit needs the squirrel. The squirrel eats the rabbit. The squirrel needs the bear. If someone is big and they chase the squirrel then they need the rabbit. If someone is blue and they need the squirrel then they are big. If the bald eagle eats the rabbit and the bald eagle chases the squirrel then the squirrel eats the rabbit. If the rabbit chases the bear and the bear is blue then the rabbit is green. If someone chases the squirrel then the squirrel chases the rabbit. If someone needs the rabbit and they are cold then the rabbit is blue. If someone is cold then they chase the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-511_Q20", "context": "The bear chases the lion. The bear is kind. The bear is round. The bear sees the lion. The cat does not chase the lion. The cat eats the lion. The lion eats the cat. The lion is big. The lion is blue. The lion is red. The squirrel eats the bear. The squirrel does not eat the lion. The squirrel is big. The squirrel is kind. If someone is big and they see the lion then they see the cat. If someone eats the bear and the bear does not eat the cat then the cat sees the bear. If someone eats the squirrel then they are not kind. If someone chases the cat then the cat is blue. If someone is kind then they are round. If someone is round and they chase the squirrel then they eat the lion. If someone chases the squirrel and the squirrel sees the cat then the squirrel is kind. If someone sees the cat then they chase the cat. If someone is round then they see the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-813_Q3", "context": "The bear eats the cat. The bear eats the mouse. The bear is blue. The bear likes the cat. The bear likes the cow. The bear sees the cow. The bear sees the mouse. The cat eats the cow. The cat is green. The cat likes the bear. The cat likes the cow. The cow is nice. The cow sees the mouse. The mouse eats the bear. If something sees the bear then it sees the cat. If something likes the cat and it eats the cow then the cat is green. If something is nice then it sees the bear. If something sees the cat and the cat is green then it eats the bear. If something sees the cat then the cat sees the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow sees the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-135_Q2", "context": "The bald eagle is nice. The bald eagle likes the bear. The bear chases the bald eagle. The bear is green. The mouse chases the rabbit. The mouse is blue. The rabbit chases the bald eagle. The rabbit chases the bear. The rabbit is green. The rabbit sees the mouse. If someone is red and they chase the bald eagle then they see the mouse. If someone is nice and red then they see the bear. If someone sees the bear and they see the mouse then they like the rabbit. If someone is green and they chase the mouse then they like the bald eagle. If someone is blue then they like the bald eagle. If someone sees the bear then they chase the bald eagle. If the rabbit sees the bear and the bear is nice then the bear is blue. All nice people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-726_Q4", "context": "Anne is furry. Anne is smart. Anne is white. Bob is red. Bob is white. Charlie is red. Harry is white. All cold people are big. If someone is furry then they are young. All red people are cold. Smart, white people are cold. Smart people are young. All white, young people are smart. If Bob is smart and Bob is cold then Bob is white. All white, big people are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-606_Q19", "context": "The bear eats the cow. The bear is rough. The bear needs the cow. The cow needs the bear. The dog needs the cow. The lion is nice. The lion needs the cow. If something needs the cow and it is rough then the cow is blue. If something is blue and it likes the lion then the lion is blue. If something is blue then it eats the cow. If something needs the dog and it is kind then the dog needs the cow. If something eats the dog and the dog likes the lion then the lion needs the bear. If something eats the cow then it likes the lion. If something is blue then it needs the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not eat the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-171_Q9", "context": "Anne is not nice. Anne is quiet. Anne is red. Anne is young. Erin is kind. Erin is nice. Erin is quiet. Erin is young. Fiona is red. Harry is big. Harry is not nice. Harry is quiet. If someone is red then they are young. Kind people are red. If Erin is kind and Erin is red then Erin is nice. If someone is kind then they are big. All young people are kind. If someone is big then they are green. If someone is young and green then they are quiet. If Anne is young and Anne is not kind then Anne is not green.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-213_Q10", "context": "Anne is furry. Anne is kind. Anne is nice. Anne is smart. Erin is big. Erin is furry. Erin is rough. Fiona is blue. Gary is big. Gary is rough. If someone is rough and kind then they are blue. Kind, rough people are furry. If someone is blue then they are smart. Smart, nice people are rough. If someone is big then they are furry. Blue, big people are kind. All smart people are nice. If Erin is kind then Erin is nice. Nice, rough people are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1094_Q3", "context": "Erin is blue. Erin is nice. Erin is round. Fiona is rough. Gary is blue. Gary is rough. Harry is round. If something is nice and rough then it is red. All round, rough things are red. Smart things are furry. All rough things are smart. If something is round then it is blue. All red things are blue. If Erin is smart then Erin is furry. Rough, furry things are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-922_Q6", "context": "Bob is big. Bob is nice. Bob is smart. Bob is young. Charlie is kind. Dave is cold. Gary is kind. If someone is round and cold then they are nice. Big people are cold. If someone is kind then they are young. Young people are big. All kind, round people are nice. Cold people are round. All nice people are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-66_Q21", "context": "The bald eagle chases the dog. The bald eagle needs the cat. The bald eagle visits the cat. The cat chases the rabbit. The cat does not need the rabbit. The cat visits the dog. The dog is blue. The rabbit chases the cat. The rabbit is not nice. The rabbit visits the bald eagle. If someone needs the bald eagle and the bald eagle needs the cat then the bald eagle is big. If the dog needs the cat and the dog visits the bald eagle then the dog is nice. If someone chases the rabbit and the rabbit needs the dog then they visit the rabbit. If someone is blue then they visit the rabbit. If someone is blue and they visit the rabbit then they need the dog. If someone visits the dog and they do not visit the cat then the dog chases the cat. If someone visits the rabbit then the rabbit is blue. If someone visits the dog then they chase the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not visit the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-444_Q9", "context": "The bear is green. The cat eats the rabbit. The cat is big. The cat is red. The cat needs the rabbit. The rabbit needs the tiger. The tiger is big. The tiger is nice. The tiger is rough. The tiger likes the bear. If someone is red and they like the rabbit then they need the cat. If someone likes the rabbit then the rabbit is red. If someone likes the bear then they like the tiger. If the rabbit needs the cat and the rabbit likes the tiger then the cat likes the tiger. If someone eats the rabbit and they are red then the rabbit likes the bear. If someone needs the tiger and the tiger is red then they need the rabbit. If someone needs the rabbit and they are rough then the rabbit is red. If the cat needs the tiger and the cat likes the rabbit then the tiger eats the rabbit. If someone likes the tiger then they like the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit needs the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-99_Q12", "context": "The cat likes the rabbit. The cow is young. The cow needs the tiger. The rabbit is blue. The rabbit is rough. The rabbit likes the cat. The tiger is blue. The tiger is green. The tiger likes the cow. The tiger sees the cow. The tiger sees the rabbit. If someone is green then they need the rabbit. If the cat likes the cow and the cow sees the cat then the cat sees the cow. If someone sees the rabbit then the rabbit sees the tiger. If someone needs the rabbit and the rabbit sees the tiger then they like the tiger. If someone sees the rabbit then they like the cow. If someone likes the cow then they are green. If the cow needs the tiger then the cow sees the rabbit. If someone needs the rabbit and the rabbit sees the cat then the cat likes the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not like the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-5_Q12", "context": "The bear chases the dog. The bear likes the cat. The bear likes the dog. The cat is red. The cat likes the dog. The cat sees the dog. The dog likes the bear. The dog sees the cat. The tiger is blue. The tiger is red. The tiger is young. The tiger likes the dog. If someone chases the bear then the bear likes the cat. If the bear chases the dog then the bear chases the tiger. If someone is red then they see the dog. If someone likes the dog and the dog is young then the dog is red. If someone chases the cat and the cat likes the dog then the dog is young. If the tiger chases the bear then the tiger likes the dog. If the bear chases the tiger then the tiger chases the cat. If the cat chases the tiger then the tiger sees the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not see the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-991_Q15", "context": "Charlie is round. Charlie is smart. Dave is round. Dave is white. Gary is not kind. Gary is not smart. Gary is white. Harry is furry. Harry is kind. Harry is white. All smart, rough things are furry. All big things are rough. If something is furry then it is rough. If Charlie is smart then Charlie is big. All furry, smart things are kind. Big, kind things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-609_Q9", "context": "Anne is not cold. Anne is red. Anne is rough. Anne is white. Bob is cold. Erin is not rough. Harry is white. If Erin is green and Erin is red then Erin is rough. All cold, red things are young. Rough things are not young. If something is big and rough then it is white. If something is young and cold then it is white. All young, white things are green. All cold things are red. Green, white things are not big. Big, white things are not cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-447_Q17", "context": "Bob is white. Erin is kind. Gary is not kind. Gary is quiet. Harry is quiet. Harry is smart. Harry is white. All white people are smart. If someone is red and white then they are smart. Cold, kind people are smart. Cold people are not red. All blue, smart people are red. If someone is smart and kind then they are blue. If someone is white and smart then they are kind. If Bob is red then Bob is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-245_Q6", "context": "The bear is kind. The bear needs the squirrel. The bear visits the mouse. The mouse is blue. The mouse is green. The mouse visits the bear. The rabbit is big. The rabbit is round. The rabbit needs the squirrel. The rabbit visits the squirrel. The squirrel is big. If something visits the rabbit then the rabbit likes the bear. If something needs the bear and the bear likes the mouse then the bear does not need the mouse. If something needs the bear then the bear is round. If the rabbit needs the bear then the bear is big. If something is round then it visits the rabbit. If something likes the bear then it needs the bear. If something visits the bear and the bear does not like the squirrel then it visits the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not like the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1006_Q12", "context": "Anne is young. Bob is blue. Bob is furry. Bob is quiet. Bob is young. Erin is blue. Erin is furry. Erin is quiet. Erin is white. Erin is young. Harry is blue. Harry is young. If Anne is young then Anne is quiet. Cold, white people are quiet. All quiet people are furry. White people are blue. All young, quiet people are cold. If someone is blue then they are young. If someone is young and blue then they are red. All cold people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-100_Q1", "context": "The bald eagle eats the cow. The bald eagle is not big. The cow eats the bald eagle. The cow is big. The cow is not round. The squirrel chases the cow. The squirrel eats the bald eagle. The squirrel does not eat the tiger. The squirrel is not big. The squirrel visits the tiger. The tiger chases the bald eagle. The tiger is nice. If something visits the cow then the cow does not chase the bald eagle. If the tiger chases the bald eagle then the tiger is round. If something is young then it visits the squirrel. If something visits the tiger then it does not visit the cow. If something is rough then it eats the cow. Round things are young. If something visits the squirrel then the squirrel is rough. If something eats the squirrel then the squirrel chases the tiger. If something eats the bald eagle and the bald eagle visits the cow then the bald eagle is not round.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow eats the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-703_Q1", "context": "Bob is cold. Bob is green. Bob is kind. Bob is quiet. Bob is white. Bob is young. Fiona is white. Gary is cold. Gary is kind. Gary is quiet. Gary is white. Harry is cold. Harry is green. Harry is quiet. Harry is rough. Harry is young. If someone is kind then they are cold. If someone is young and cold then they are kind. White people are kind. If someone is young then they are white. If Fiona is cold and Fiona is white then Fiona is green. All young, kind people are quiet. If someone is green then they are young. If someone is quiet then they are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-333_Q11", "context": "The bear visits the cow. The bear visits the rabbit. The cow does not visit the rabbit. The rabbit chases the bear. The rabbit chases the tiger. The tiger is blue. The tiger is young. If something is blue and it does not like the cow then the cow visits the tiger. If something visits the bear then the bear chases the cow. If something chases the cow then the cow is nice. If something visits the tiger then it likes the bear. If something likes the tiger then it does not like the bear. All nice things are blue. If something is blue then it visits the bear. If the bear is kind and the bear likes the rabbit then the rabbit is young. If something likes the cow and it is blue then it is not cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow visits the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1151_Q4", "context": "Charlie is cold. Charlie is furry. Charlie is kind. Dave is big. Erin is big. Erin is cold. Gary is kind. If someone is kind and nice then they are big. Nice, quiet people are big. If someone is kind and big then they are nice. All big people are kind. If someone is quiet and big then they are young. If someone is young and kind then they are quiet. If someone is nice then they are young. If Dave is cold then Dave is nice. If someone is quiet then they are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-531_Q9", "context": "Anne is big. Anne is green. Anne is smart. Bob is big. Bob is white. Dave is white. Dave is young. Harry is big. Harry is green. Harry is round. Harry is smart. Harry is not white. If someone is green and big then they are round. All round people are big. If someone is kind and smart then they are big. If Harry is smart then Harry is round. White, smart people are green. If Bob is green and Bob is not kind then Bob is not white. All white people are smart. If Dave is smart and Dave is green then Dave is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-580_Q3", "context": "Anne is green. Anne is white. Charlie is green. Charlie is kind. Charlie is white. Charlie is young. Gary is kind. Harry is green. Harry is nice. Harry is white. Harry is young. If something is smart then it is young. All nice, smart things are round. Smart things are green. Young, round things are white. Round, nice things are smart. If Gary is kind then Gary is green. Kind things are round. All round things are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-949_Q4", "context": "Bob is quiet. Erin is kind. Erin is quiet. Fiona is green. Fiona is red. Fiona is young. Harry is green. If someone is quiet then they are young. All young people are kind. If someone is white and not green then they are quiet. All green, smart people are quiet. All quiet, kind people are white. White people are smart. If someone is kind and not green then they are not smart. If someone is white and smart then they are not red. If someone is young and not white then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-157_Q9", "context": "Charlie is kind. Charlie is rough. Erin is quiet. Fiona is kind. Harry is kind. Harry is quiet. Harry is young. All kind people are quiet. Cold people are not big. If Erin is quiet then Erin is cold. Green, cold people are not young. If Fiona is green and Fiona is quiet then Fiona is not young. Cold, kind people are rough. If someone is green and kind then they are rough. If someone is cold and not big then they are rough. If someone is rough then they are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-363_Q5", "context": "Anne is nice. Anne is rough. Anne is smart. Anne is white. Dave is kind. Dave is red. Dave is rough. Dave is smart. Dave is white. Fiona is kind. Fiona is nice. Fiona is rough. Fiona is smart. Fiona is white. Gary is big. Gary is kind. Red, nice people are smart. Smart people are nice. If someone is red then they are kind. If someone is white then they are kind. If someone is kind and big then they are white. Nice, kind people are white. White people are smart. If someone is white and nice then they are red. All red people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-56_Q6", "context": "Bob is big. Bob is kind. Bob is nice. Bob is round. Bob is young. Dave is big. Dave is round. Erin is big. Erin is kind. Erin is red. Harry is big. If someone is red then they are kind. All young, nice people are blue. Kind, red people are nice. If Erin is young then Erin is big. If someone is blue then they are red. If Dave is round and Dave is nice then Dave is young. If someone is big and round then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-316_Q5", "context": "Anne is big. Anne is red. Bob is not rough. Bob is white. Charlie is green. Charlie is red. Charlie is white. Charlie is young. Harry is not rough. Harry is white. Harry is young. If someone is rough then they are young. If someone is white and big then they are young. All big people are young. If someone is white then they are kind. If someone is green then they are kind. If someone is green then they are red. Rough, green people are not red. Kind people are big. All young people are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-649_Q18", "context": "The cat likes the tiger. The lion sees the rabbit. The rabbit eats the lion. The rabbit eats the tiger. The rabbit likes the cat. The tiger is not cold. The tiger likes the lion. If something likes the cat then it is nice. All young things are nice. If something eats the tiger then it is nice. If something eats the cat then the cat is young. If something eats the lion then the lion eats the cat. If something sees the cat then the cat does not see the lion. If something is round then it does not like the rabbit. If something is nice then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat eats the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-974_Q12", "context": "Anne is big. Anne is young. Dave is big. Erin is big. Fiona is big. Fiona is nice. Fiona is white. Rough people are nice. All nice people are young. White people are furry. Big people are furry. Rough people are big. All white, young people are big. If someone is furry then they are rough. If someone is rough and not furry then they are smart. If someone is young then they are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-999_Q19", "context": "Bob is rough. Charlie is furry. Charlie is not nice. Charlie is not smart. Charlie is not white. Charlie is not young. Erin is furry. Erin is rough. Erin is not smart. Harry is young. Nice, rough people are white. If Erin is smart then Erin is young. All red people are nice. If someone is young then they are smart. All nice, red people are smart. If Harry is young and Harry is smart then Harry is red. All white people are rough. If someone is red and nice then they are rough. If Charlie is white then Charlie is not red.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-364_Q16", "context": "Dave is nice. Dave is round. Dave is white. Fiona is kind. Fiona is red. Fiona is not white. Gary is red. Harry is kind. Harry is not nice. Harry is white. If something is red then it is green. All green things are cold. All red, white things are kind. Cold things are kind. If something is kind and cold then it is nice. If Fiona is round then Fiona is red. Nice things are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-840_Q6", "context": "The cat eats the mouse. The cat likes the lion. The cat sees the lion. The cow does not eat the mouse. The cow is nice. The lion is not cold. The lion likes the cat. The lion sees the cow. The mouse eats the lion. The mouse does not like the cat. The mouse does not like the lion. If something sees the lion then the lion sees the cat. If the cow does not see the mouse and the mouse does not eat the lion then the mouse is blue. If something is round then it is blue. If something sees the cat and the cat is nice then the cat likes the cow. If something eats the lion and the lion sees the cat then the lion is round. If something eats the cow then it is cold. If the mouse is nice and the mouse eats the cow then the cow is not cold. If something is rough and it does not see the cat then it eats the cow. If something sees the lion and the lion is blue then it eats the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-817_Q3", "context": "The mouse eats the rabbit. The mouse is big. The mouse is red. The rabbit chases the squirrel. The rabbit eats the mouse. The rabbit is kind. The rabbit is rough. The rabbit visits the tiger. The squirrel chases the mouse. The squirrel visits the rabbit. The tiger chases the mouse. The tiger chases the squirrel. The tiger eats the mouse. The tiger eats the rabbit. If the mouse visits the squirrel and the mouse visits the rabbit then the squirrel eats the mouse. If someone chases the mouse and they eat the rabbit then they eat the tiger. If someone chases the mouse and the mouse visits the tiger then the tiger visits the mouse. If the mouse is red then the mouse visits the tiger. If the squirrel is big and the squirrel chases the rabbit then the rabbit visits the mouse. If someone visits the tiger then they visit the squirrel. If someone is rough then they chase the mouse. If someone visits the mouse then the mouse is rough. If the mouse visits the rabbit and the mouse visits the tiger then the rabbit eats the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger eats the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-1007_Q7", "context": "The bald eagle is not cold. The bald eagle likes the mouse. The bald eagle sees the mouse. The lion does not like the squirrel. The lion needs the bald eagle. The lion sees the squirrel. The mouse is not blue. The mouse likes the lion. The mouse sees the lion. The squirrel is blue. The squirrel is cold. The squirrel is not nice. The squirrel is round. The squirrel likes the mouse. The squirrel needs the lion. The squirrel does not see the lion. If something likes the squirrel and it needs the lion then the squirrel is round. If the bald eagle needs the lion and the lion sees the bald eagle then the lion does not like the bald eagle. If something needs the bald eagle then it needs the lion. If something sees the mouse then the mouse sees the bald eagle. If the bald eagle sees the lion then the bald eagle likes the lion. If something likes the lion then it needs the squirrel. If something sees the bald eagle and it sees the lion then the lion is big. If something is big and it needs the bald eagle then the bald eagle sees the lion. If something needs the bald eagle and it is not round then it sees the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle sees the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-805_Q18", "context": "The bear is not rough. The bear needs the rabbit. The bear sees the squirrel. The bear visits the rabbit. The bear visits the squirrel. The dog needs the bear. The dog visits the rabbit. The rabbit is cold. The rabbit is rough. The rabbit does not see the dog. The squirrel is red. The squirrel does not see the bear. The squirrel visits the bear. The squirrel does not visit the rabbit. If the bear visits the dog then the dog is not cold. If the rabbit visits the squirrel and the squirrel sees the dog then the squirrel needs the bear. If something needs the squirrel then it visits the dog. If something sees the bear and it is rough then the bear visits the squirrel. If something visits the dog then the dog visits the squirrel. If something visits the squirrel then it needs the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear sees the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-914_Q5", "context": "The bear is kind. The bear needs the tiger. The cat likes the rabbit. The cat needs the bear. The rabbit is big. The rabbit is kind. The rabbit likes the tiger. The rabbit sees the tiger. The tiger is big. The tiger is cold. The tiger does not need the rabbit. If the rabbit sees the cat then the cat is kind. If someone needs the bear then they like the cat. If someone needs the bear then they see the bear. If someone is big then they need the cat. If someone is blue then they see the cat. If someone is kind then they are blue. If someone sees the tiger then they are not cold. If someone is cold and they do not like the tiger then the tiger sees the rabbit. If someone needs the rabbit and they are red then they see the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit sees the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-1_Q24", "context": "The cow is not green. The cow is kind. The cow is not young. The cow sees the rabbit. The lion is not rough. The lion sees the rabbit. The lion visits the cow. The lion visits the rabbit. The mouse is green. The mouse sees the lion. The rabbit is green. The rabbit is kind. The rabbit does not need the cow. The rabbit sees the cow. If someone sees the rabbit then they see the mouse. If someone needs the cow then they need the mouse. If someone visits the lion and they visit the mouse then they need the mouse. If someone sees the rabbit and the rabbit visits the lion then the rabbit is blue. If someone needs the mouse then they are young. If someone sees the cow then they visit the cow. If someone sees the mouse then the mouse is blue. If someone is blue then they need the cow. If someone sees the lion and the lion is young then the lion does not visit the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit visits the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-364_Q5", "context": "Dave is nice. Dave is round. Dave is white. Fiona is kind. Fiona is red. Fiona is not white. Gary is red. Harry is kind. Harry is not nice. Harry is white. If something is red then it is green. All green things are cold. All red, white things are kind. Cold things are kind. If something is kind and cold then it is nice. If Fiona is round then Fiona is red. Nice things are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-229_Q19", "context": "Anne is smart. Charlie is not furry. Charlie is kind. Charlie is not quiet. Charlie is red. Charlie is smart. Erin is cold. Erin is kind. Erin is quiet. Erin is red. Erin is smart. Gary is round. All smart, quiet people are red. If someone is quiet and cold then they are red. If Anne is smart then Anne is furry. If Gary is red then Gary is round. Red, quiet people are kind. If Charlie is kind and Charlie is not cold then Charlie is red. Furry people are quiet. All furry, kind people are round. If someone is cold and not red then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-384_Q13", "context": "Anne is furry. Anne is green. Anne is young. Bob is green. Bob is round. Fiona is round. Gary is furry. Young things are big. White things are green. All smart, young things are white. If something is smart then it is young. If something is young and green then it is round. If Gary is furry then Gary is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-33_Q10", "context": "Anne is big. Anne is furry. Anne is green. Anne is quiet. Anne is rough. Charlie is furry. Charlie is rough. Fiona is big. Fiona is green. Gary is white. Furry, quiet things are big. If something is green then it is white. All furry things are quiet. All white, green things are furry. All white, furry things are nice. If Anne is big then Anne is green. All big things are white. If something is nice and quiet then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-341_Q5", "context": "Bob is cold. Erin is big. Erin is cold. Erin is green. Erin is kind. Erin is red. Erin is rough. Erin is round. Gary is kind. Gary is rough. Harry is big. Harry is cold. Harry is green. Harry is kind. Red people are round. If someone is big then they are green. If someone is round then they are rough. If someone is cold then they are big. If Erin is red then Erin is cold. If someone is rough and round then they are green. If someone is cold and green then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-549_Q19", "context": "The cow is red. The cow visits the lion. The dog likes the cow. The lion is red. The lion is rough. The lion likes the mouse. The lion sees the cow. The lion visits the cow. The lion visits the mouse. The mouse is young. The mouse likes the lion. The mouse sees the dog. If someone is rough and they visit the dog then they like the dog. If someone likes the dog and the dog likes the cow then the dog sees the cow. If someone is green then they visit the dog. If someone visits the dog then they visit the mouse. If someone likes the cow and they visit the mouse then they like the dog. If someone likes the dog and they visit the cow then they are blue. If someone sees the mouse then the mouse is young. If someone sees the cow then they visit the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not like the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-945_Q16", "context": "The bald eagle eats the cat. The bald eagle is blue. The bald eagle sees the lion. The cat is blue. The cat is rough. The cat is round. The cat sees the bald eagle. The cat sees the mouse. The lion eats the bald eagle. The lion sees the cat. The lion sees the mouse. The mouse eats the lion. The mouse is blue. The mouse is red. The mouse is round. The mouse visits the lion. If something sees the cat then it visits the cat. If something visits the mouse and the mouse visits the bald eagle then the mouse is round. If something eats the cat and it is red then it visits the mouse. If something sees the lion then it sees the cat. If something sees the bald eagle and the bald eagle eats the cat then it eats the mouse. If something sees the lion then the lion sees the bald eagle. If something eats the lion and it sees the bald eagle then it sees the lion. If something is rough and round then it visits the lion. If something visits the lion then it eats the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle visits the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-660_Q13", "context": "The bald eagle is cold. The bald eagle sees the cat. The cat eats the cow. The cow sees the rabbit. The cow visits the cat. The rabbit sees the bald eagle. The rabbit visits the cow. If someone is young then they visit the cow. If someone is cold then they visit the bald eagle. If someone is young and they do not eat the cow then they eat the bald eagle. If someone visits the bald eagle then they visit the rabbit. If someone visits the rabbit then the rabbit is cold. If the cow sees the bald eagle then the bald eagle sees the cow. If someone is young then they do not see the bald eagle. If someone eats the cat and they do not visit the bald eagle then the cat does not eat the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not visit the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1026_Q18", "context": "Bob is cold. Bob is green. Bob is nice. Charlie is cold. Charlie is red. Charlie is smart. Charlie is young. Erin is cold. Erin is green. Erin is red. Erin is young. Harry is round. All smart people are young. If someone is cold and nice then they are red. All round people are smart. If Bob is red and Bob is young then Bob is smart. Red people are green. If Harry is red and Harry is green then Harry is cold. All cold people are nice. Young people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1122_Q10", "context": "Anne is kind. Anne is nice. Anne is smart. Anne is white. Charlie is not furry. Charlie is green. Dave is not furry. Dave is not green. Dave is not nice. Dave is white. Fiona is not green. Fiona is kind. All kind, furry people are not rough. Nice, green people are rough. If someone is smart and rough then they are not white. If someone is smart then they are kind. All white people are kind. Green people are smart. If someone is white and smart then they are furry. Kind, smart people are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-493_Q4", "context": "The cow is green. The cow visits the squirrel. The dog eats the cow. The rabbit eats the dog. The rabbit is blue. The rabbit visits the dog. The squirrel eats the cow. The squirrel eats the dog. The squirrel is blue. The squirrel is cold. The squirrel is kind. The squirrel sees the cow. If something sees the dog and the dog eats the cow then the dog sees the squirrel. If something eats the cow then it sees the cow. If something sees the rabbit and it visits the dog then it eats the cow. If something is kind and it sees the rabbit then the rabbit is kind. If the rabbit sees the cow then the cow eats the dog. If something is nice then it sees the squirrel. If something eats the dog then it eats the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not see the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1337_Q15", "context": "Anne is white. Charlie is red. Charlie is smart. Dave is smart. Harry is red. Harry is smart. Harry is white. All green, smart people are cold. If someone is kind then they are green. If someone is kind then they are quiet. White people are quiet. If someone is white then they are red. Red, cold people are green. If someone is kind then they are white. If Anne is red then Anne is kind. If someone is green then they are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-423_Q17", "context": "The cat eats the mouse. The cat is red. The cat needs the mouse. The dog is green. The mouse is blue. The mouse needs the cat. The mouse needs the dog. The mouse visits the rabbit. The rabbit needs the mouse. The rabbit visits the cat. If something eats the cat then the cat needs the dog. If something eats the mouse and it needs the rabbit then it eats the dog. If something eats the dog then it is green. If something is red then it eats the dog. If something is green then it needs the mouse. If something visits the cat and the cat is blue then it is green. If something needs the dog then it needs the mouse. All green things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not need the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-804_Q14", "context": "The bald eagle visits the tiger. The cow chases the rabbit. The cow chases the tiger. The cow needs the rabbit. The rabbit chases the cow. The rabbit visits the bald eagle. The rabbit does not visit the tiger. The tiger is big. The tiger needs the rabbit. The tiger visits the bald eagle. Kind things are not young. If something visits the bald eagle then it is young. If the rabbit is young and the rabbit does not chase the tiger then the tiger needs the cow. If the tiger needs the cow and the tiger needs the rabbit then the cow visits the bald eagle. If the cow is big then the cow visits the bald eagle. If the tiger visits the bald eagle then the tiger visits the rabbit. If something is young then it needs the cow. If something chases the bald eagle and the bald eagle is cold then the bald eagle visits the cow. If something needs the tiger then it chases the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle needs the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-1040_Q6", "context": "The cat eats the cow. The cat likes the squirrel. The cat needs the cow. The cat needs the squirrel. The cow likes the cat. The cow likes the mouse. The mouse likes the cat. The squirrel eats the cat. The squirrel eats the mouse. The squirrel is cold. The squirrel is green. The squirrel is nice. The squirrel likes the cat. The squirrel likes the mouse. If something likes the cat and the cat likes the cow then the cat is round. If something is round and green then it needs the cow. If something eats the cow and it is green then it needs the mouse. If something needs the squirrel and it eats the cat then the cat is nice. If something likes the cat then it needs the cat. If something needs the mouse then the mouse is green. If something is green then it eats the cow. If something needs the cow and it eats the cat then it needs the cat. If something is green then it eats the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not need the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-547_Q4", "context": "The lion sees the mouse. The mouse is big. The mouse is blue. The mouse is round. The mouse needs the squirrel. The mouse sees the rabbit. The rabbit is blue. The rabbit is round. The rabbit needs the mouse. The rabbit sees the lion. The rabbit sees the mouse. The squirrel is big. The squirrel is green. The squirrel needs the mouse. The squirrel sees the lion. The squirrel visits the mouse. If the lion visits the mouse then the lion needs the squirrel. If someone visits the lion then the lion visits the mouse. If the rabbit is cold and the rabbit visits the lion then the lion needs the mouse. If someone sees the lion then they see the squirrel. If someone sees the squirrel then the squirrel visits the lion. If someone is blue then they visit the mouse. If someone needs the squirrel then they are green.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not see the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-93_Q5", "context": "The cat eats the dog. The cat eats the lion. The dog is red. The dog needs the lion. The dog needs the mouse. The lion needs the mouse. The mouse is red. If someone eats the mouse then the mouse eats the lion. If someone eats the lion then they eat the mouse. If the dog does not eat the cat then the cat is rough. If someone sees the lion and they are big then they see the dog. If someone is red and they eat the mouse then they see the dog. If someone sees the dog then the dog sees the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse eats the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-46_Q3", "context": "Bob is nice. Charlie is quiet. Dave is green. Fiona is cold. Fiona is green. Fiona is kind. Fiona is quiet. If someone is cold and white then they are not green. All green people are kind. Cold people are quiet. All white, nice people are quiet. If Bob is cold and Bob is furry then Bob is white. Quiet, cold people are furry. All nice people are cold. If Fiona is quiet and Fiona is white then Fiona is not nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-621_Q9", "context": "The bald eagle eats the dog. The bald eagle eats the squirrel. The bald eagle likes the dog. The bald eagle likes the tiger. The dog is round. The dog does not like the bald eagle. The squirrel eats the bald eagle. The squirrel is blue. The squirrel is round. The squirrel is young. The squirrel likes the bald eagle. The squirrel visits the dog. The squirrel does not visit the tiger. The tiger eats the dog. The tiger is nice. The tiger is round. If something eats the squirrel then it visits the squirrel. If something likes the dog then the dog is not blue. If something likes the tiger and it visits the squirrel then the squirrel eats the dog. If something eats the squirrel and it is young then it does not eat the tiger. If something is round and it visits the squirrel then it eats the tiger. If something eats the dog and it is young then the dog eats the squirrel. If something likes the dog and the dog is cold then the dog visits the squirrel. If something eats the tiger and the tiger eats the bald eagle then the bald eagle is not cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog visits the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-227_Q2", "context": "The bear is kind. The bear is rough. The cat is young. The cat needs the lion. The cat needs the rabbit. The lion is big. The lion is young. The lion needs the bear. The rabbit likes the cat. The rabbit needs the bear. If someone likes the cat and they like the rabbit then the cat is rough. If the rabbit is kind then the rabbit needs the lion. If someone sees the rabbit then the rabbit is kind. If someone sees the bear then they see the rabbit. If the cat needs the lion then the lion is big. If someone is kind then they see the bear. If someone likes the cat then the cat sees the bear. If someone needs the cat then the cat likes the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not need the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-708_Q2", "context": "The bald eagle is big. The bald eagle is nice. The cat likes the mouse. The cat sees the mouse. The cow sees the bald eagle. The mouse likes the bald eagle. The mouse sees the cow. If something sees the mouse then the mouse is kind. If something sees the bald eagle then it does not like the cat. If something is kind then it likes the cow. If the cow chases the mouse then the cow likes the bald eagle. If something is kind then it chases the mouse. If something is kind and it likes the mouse then the mouse is red. If something chases the mouse and it likes the cow then the cow is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-610_Q5", "context": "The bald eagle eats the cow. The bald eagle is red. The bald eagle needs the cow. The bear needs the rabbit. The cow is kind. The cow is red. The cow needs the bald eagle. The rabbit eats the bear. The rabbit eats the cow. The rabbit sees the cow. If something needs the bald eagle then it needs the rabbit. If the bald eagle is nice and the bald eagle is young then the bald eagle sees the cow. If the rabbit needs the cow then the cow sees the rabbit. If something eats the cow and the cow is nice then it needs the bald eagle. If something needs the rabbit then it is nice. If something sees the rabbit then it is red. If something needs the bald eagle then it eats the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-369_Q2", "context": "Dave is furry. Dave is rough. Dave is smart. Erin is quiet. Erin is rough. Fiona is cold. Fiona is not furry. Fiona is kind. Fiona is quiet. Fiona is not rough. Gary is furry. Gary is not green. Gary is quiet. Gary is not rough. If Fiona is quiet and Fiona is furry then Fiona is kind. If something is smart then it is green. If something is kind then it is not furry. All green, quiet things are cold. All rough, cold things are kind. If something is rough then it is smart. If Gary is cold then Gary is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-208_Q19", "context": "Bob is big. Bob is green. Dave is big. Erin is nice. Fiona is big. Fiona is nice. Fiona is young. Blue things are white. All nice things are green. All big, smart things are young. Nice, green things are smart. If something is nice and young then it is blue. All nice things are big. All blue, green things are young. All blue things are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-167_Q12", "context": "The cow is young. The cow visits the tiger. The lion needs the cow. The rabbit is young. The rabbit visits the lion. The tiger is young. The tiger needs the lion. If someone visits the cow then they need the lion. If someone needs the lion then the lion needs the rabbit. If someone is round and cold then they see the rabbit. If someone visits the cow then they see the tiger. If someone sees the tiger then the tiger sees the rabbit. If someone sees the rabbit then the rabbit visits the cow. If the rabbit is cold and the rabbit sees the tiger then the rabbit is young. If the lion needs the rabbit then the lion visits the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not visit the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-122_Q6", "context": "The bear is nice. The bear sees the cat. The cat is cold. The cat sees the dog. The cat sees the mouse. The dog sees the mouse. The mouse is round. If someone likes the dog then the dog is round. If the mouse likes the cat then the cat likes the dog. If someone is round then they are blue. If someone is nice and they visit the cat then they are big. If someone is blue then they like the cat. If someone visits the cat and the cat likes the dog then the dog does not see the cat. If someone sees the mouse and they do not like the dog then the dog likes the mouse. If someone is blue and they do not like the mouse then the mouse does not see the cat. If someone sees the cat then the cat likes the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not like the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-940_Q10", "context": "Bob is cold. Bob is kind. Bob is nice. Bob is white. Erin is blue. Erin is kind. Erin is nice. Fiona is blue. Gary is blue. Gary is kind. If someone is nice then they are cold. If Erin is nice and Erin is white then Erin is young. If someone is nice then they are kind. All young people are white. Cold, young people are nice. If someone is kind then they are young. White people are nice. If someone is blue then they are kind. Cold, nice people are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-580_Q9", "context": "Charlie is furry. Charlie is green. Charlie is kind. Charlie is rough. Charlie is smart. Erin is young. Gary is furry. Gary is kind. Gary is smart. Harry is rough. All rough people are kind. Rough, furry people are kind. If someone is furry then they are blue. Kind, smart people are blue. All blue, furry people are smart. If Harry is kind then Harry is furry. All kind, smart people are not young. If Harry is not kind then Harry is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-829_Q19", "context": "Charlie is kind. Charlie is red. Dave is furry. Dave is kind. Dave is rough. Gary is rough. Harry is quiet. If someone is young and red then they are quiet. If someone is red and not kind then they are quiet. If Harry is red and Harry is kind then Harry is furry. Red people are young. Rough, kind people are young. If someone is quiet and red then they are rough. Red, blue people are furry. If Harry is blue then Harry is quiet. Rough, red people are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1226_Q2", "context": "Charlie is big. Charlie is white. Dave is big. Dave is not red. Erin is white. Harry is red. Harry is white. If Harry is rough then Harry is big. If something is blue then it is round. All quiet things are round. Red things are rough. All quiet things are big. All round things are quiet. If something is white and big then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-123_Q3", "context": "The bald eagle chases the mouse. The bald eagle likes the tiger. The bald eagle sees the squirrel. The bald eagle sees the tiger. The mouse chases the squirrel. The mouse is kind. The mouse is red. The mouse is round. The mouse likes the squirrel. The squirrel is green. The squirrel is red. The squirrel likes the bald eagle. The squirrel likes the tiger. The tiger is nice. The tiger likes the bald eagle. The tiger sees the bald eagle. If someone is nice then they chase the bald eagle. If someone chases the mouse then the mouse chases the tiger. If someone likes the bald eagle then they like the mouse. If someone likes the mouse and they like the tiger then the mouse is nice. If someone chases the bald eagle then they are red. If someone chases the bald eagle then they are round. If someone likes the tiger and the tiger likes the mouse then they are nice. If someone is round then they see the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel likes the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-630_Q17", "context": "The bald eagle eats the cow. The bald eagle eats the dog. The bald eagle visits the cat. The bald eagle visits the dog. The cat is big. The cat likes the dog. The cow eats the bald eagle. The cow is red. The cow visits the cat. The dog eats the bald eagle. The dog eats the cat. The dog likes the bald eagle. If someone likes the dog then they visit the dog. If someone likes the dog then they like the cow. If someone eats the bald eagle and the bald eagle eats the cat then the cat visits the bald eagle. If someone is big then they like the dog. If the bald eagle likes the cow then the bald eagle eats the cat. If someone visits the dog then they visit the cow. If someone likes the cat and the cat is red then the cat visits the bald eagle. If the cat visits the cow and the cat visits the dog then the cow likes the dog. If someone eats the dog then they are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-459_Q10", "context": "The bald eagle does not need the cow. The bald eagle visits the cow. The cow is nice. The cow visits the bald eagle. The dog eats the bald eagle. The dog eats the lion. The dog is young. The dog needs the bald eagle. The lion is red. The lion visits the bald eagle. If something eats the cow and it visits the bald eagle then the cow eats the lion. If something needs the lion and the lion visits the bald eagle then the lion needs the bald eagle. If something visits the lion then the lion needs the bald eagle. If something eats the lion then it visits the lion. If the dog is young then the dog eats the cow. If something visits the bald eagle then it is not young. If the bald eagle is rough then the bald eagle is red. If something needs the lion and the lion needs the dog then it visits the dog. If something needs the bald eagle then it eats the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not eat the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-489_Q3", "context": "Anne is green. Anne is smart. Anne is young. Dave is blue. Dave is cold. Dave is green. Dave is smart. Erin is big. Erin is cold. Erin is smart. Erin is young. Harry is cold. If someone is cold and young then they are green. Big people are green. Cold people are big. All young people are big. All cold, round people are smart. If Erin is big and Erin is smart then Erin is cold. All smart people are young. Young, green people are big. If someone is green then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-318_Q5", "context": "Charlie is blue. Charlie is round. Erin is quiet. Fiona is blue. Fiona is kind. Fiona is quiet. Fiona is rough. Fiona is round. Fiona is young. Gary is blue. Gary is quiet. Rough, young people are round. If someone is quiet then they are round. If someone is round then they are young. All young people are blue. Round, kind people are rough. All blue people are kind. If someone is rough then they are kind. If Erin is young then Erin is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-205_Q9", "context": "Charlie is young. Erin is cold. Erin is furry. Erin is young. Fiona is blue. Fiona is green. Fiona is white. Fiona is young. Harry is blue. Harry is quiet. Harry is young. If something is cold then it is white. If something is cold and white then it is furry. Quiet things are green. If something is furry then it is green. If something is blue and furry then it is green. All young things are cold. If Fiona is furry then Fiona is young. Green, cold things are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1231_Q16", "context": "Bob is not cold. Bob is nice. Charlie is rough. Erin is nice. Erin is smart. Gary is rough. Gary is smart. Young, smart things are red. If something is cold and green then it is young. Nice things are young. Red, rough things are green. If something is young and nice then it is rough. Rough things are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1132_Q11", "context": "Anne is big. Anne is furry. Anne is green. Anne is round. Charlie is green. Charlie is kind. Erin is furry. Erin is green. Erin is round. Erin is smart. Gary is big. Gary is nice. All round people are smart. If someone is smart and green then they are kind. If someone is furry and big then they are nice. Kind people are furry. If someone is furry and kind then they are green. If someone is smart and round then they are green. If Erin is green and Erin is furry then Erin is big. If someone is nice then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-14_Q1", "context": "The dog chases the mouse. The dog eats the mouse. The dog is cold. The dog is red. The dog likes the mouse. The dog likes the rabbit. The lion chases the dog. The lion likes the dog. The mouse chases the dog. The mouse likes the dog. The rabbit chases the dog. The rabbit chases the mouse. The rabbit eats the mouse. The rabbit is red. If something eats the dog then it is green. All red things are kind. If something likes the lion then it chases the mouse. If something eats the mouse and it is green then the mouse is kind. If something chases the mouse then it eats the rabbit. If something is kind then it is green. If something is green then it likes the mouse. If something is kind then it chases the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog likes the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-36_Q9", "context": "Anne is cold. Anne is red. Anne is white. Bob is blue. Bob is cold. Bob is not green. Bob is red. Bob is not smart. Erin is green. Erin is kind. Erin is white. Fiona is blue. If Anne is cold then Anne is red. Red, blue things are cold. All green, kind things are not red. All white, blue things are red. All cold things are not green. Blue things are white. If Anne is green then Anne is not cold. If something is red and not green then it is not smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-639_Q16", "context": "The dog is not blue. The lion is not green. The lion does not like the rabbit. The lion does not see the mouse. The mouse is blue. The mouse is not kind. The mouse is round. The mouse visits the dog. The rabbit is not kind. The rabbit likes the lion. The rabbit likes the mouse. The rabbit sees the dog. If something visits the mouse then it sees the lion. If something is round then it sees the rabbit. If something likes the rabbit then it is blue. If something sees the dog then it visits the mouse. If something sees the lion then the lion sees the dog. If something is round then it likes the dog. If something visits the mouse then it likes the mouse. If something sees the lion then it likes the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog sees the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-234_Q21", "context": "The cat eats the mouse. The cat needs the rabbit. The mouse chases the cat. The mouse is blue. The mouse is round. The mouse is young. The mouse needs the cat. The rabbit chases the cat. The rabbit chases the mouse. The rabbit is blue. The rabbit is round. The rabbit needs the tiger. The tiger chases the rabbit. The tiger eats the mouse. Young people are green. If the rabbit eats the mouse then the rabbit chases the tiger. If the cat needs the mouse and the mouse needs the cat then the cat needs the tiger. If someone is green then they chase the tiger. If someone eats the rabbit then they are young. If the rabbit chases the cat and the cat is blue then the rabbit is young. If someone chases the tiger then the tiger eats the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-380_Q12", "context": "The bald eagle chases the lion. The bald eagle visits the lion. The bear is green. The bear is red. The cow visits the lion. The lion is rough. The lion visits the bear. If someone visits the cow then the cow is kind. If someone visits the cow and they are kind then they are rough. If someone is red then they chase the bear. If someone is red then they visit the cow. If someone is red and they visit the cow then they are kind. If someone visits the cow then they like the bear. If someone chases the bald eagle then the bald eagle likes the cow. If someone is rough and they like the bear then they chase the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not like the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-538_Q11", "context": "Anne is nice. Anne is quiet. Anne is young. Bob is big. Bob is kind. Bob is nice. Bob is quiet. Fiona is smart. Fiona is young. Harry is big. Harry is blue. Harry is kind. Harry is nice. Harry is quiet. Harry is smart. Harry is young. All quiet, blue people are kind. Smart, nice people are quiet. All quiet, nice people are kind. If someone is quiet and smart then they are blue. Smart, young people are big. All big people are kind. If Harry is blue and Harry is quiet then Harry is young. All kind people are nice. If Fiona is big then Fiona is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-189_Q13", "context": "Anne is blue. Anne is not round. Bob is green. Bob is red. Charlie is blue. Charlie is smart. Fiona is not round. Blue, smart people are red. If someone is smart then they are red. Round people are cold. Green people are quiet. If someone is cold and blue then they are green. If someone is quiet and blue then they are smart. Red people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-441_Q15", "context": "The bald eagle chases the mouse. The bald eagle visits the bear. The bear is rough. The bear visits the bald eagle. The bear does not visit the mouse. The mouse chases the bald eagle. The squirrel chases the bear. If something is blue then it needs the bear. If something chases the bear and it visits the bald eagle then it does not need the bear. If something visits the mouse and the mouse is blue then the mouse does not visit the bear. If something needs the mouse then the mouse visits the bald eagle. If the bear visits the squirrel then the bear needs the squirrel. If something chases the bear and the bear needs the squirrel then the squirrel needs the mouse. If something chases the bear and it visits the mouse then the bear does not visit the bald eagle. If something visits the bald eagle then it visits the squirrel. If the mouse does not visit the bear then the mouse is young.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not need the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-891_Q20", "context": "The bear is red. The cow is cold. The cow sees the bear. The lion chases the bear. The lion is not green. The tiger chases the bear. The tiger is green. If something likes the tiger and the tiger is red then it chases the tiger. If something sees the cow then it chases the cow. If something sees the lion and the lion is big then it chases the cow. If something chases the cow then the cow likes the lion. If something is big then it likes the bear. If something chases the tiger then it likes the bear. If something likes the lion and it sees the bear then the lion is big. If something is green then it sees the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-207_Q16", "context": "The cat likes the lion. The cat needs the cow. The cow eats the cat. The cow is kind. The cow likes the dog. The cow likes the lion. The cow needs the dog. The dog eats the cow. The dog likes the cow. The lion likes the dog. If something is round and it needs the cat then it is nice. If the cat is nice then the cat likes the lion. If something is round then it eats the lion. If something needs the cat then the cat likes the lion. All young things are round. If something is round then it needs the lion. If something likes the cow then the cow is young. If the cow eats the lion and the cow needs the dog then the lion is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-413_Q19", "context": "The bear eats the squirrel. The bear is nice. The bear is young. The bear sees the lion. The lion does not eat the bear. The lion is not young. The mouse is nice. The mouse does not see the bear. The squirrel eats the bear. The squirrel does not eat the mouse. If something sees the squirrel then the squirrel is young. If something is red then it chases the lion. If something sees the bear then the bear sees the mouse. If the lion is nice then the lion chases the mouse. If something is nice and it sees the squirrel then it does not chase the mouse. If something is young then it sees the lion. If something is nice and blue then it sees the squirrel. If something is young and it sees the lion then it is red. If the bear is red then the bear sees the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not see the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-770_Q5", "context": "Dave is quiet. Erin is big. Erin is rough. Fiona is quiet. Fiona is rough. Fiona is smart. Gary is blue. Quiet, red things are rough. Red, blue things are cold. If Dave is cold and Dave is big then Dave is blue. All quiet things are big. All red things are quiet. If something is big and rough then it is cold. If something is big then it is red. If Gary is red then Gary is rough. Smart things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-896_Q7", "context": "Anne is big. Anne is furry. Anne is green. Anne is quiet. Bob is cold. Bob is furry. Gary is green. Harry is big. Harry is cold. Harry is green. Harry is nice. Green things are blue. All cold things are blue. If something is blue then it is big. Big things are nice. Nice, blue things are green. If something is blue and not big then it is quiet. All nice, green things are quiet. If something is blue and not cold then it is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-784_Q23", "context": "The dog is round. The dog visits the lion. The lion is blue. The lion is rough. The lion is round. The lion needs the dog. The mouse chases the dog. The mouse chases the lion. The mouse needs the squirrel. The mouse visits the squirrel. The squirrel chases the mouse. If someone visits the lion then they chase the dog. If someone chases the lion then the lion is rough. If someone is green then they are big. If someone is big then they are blue. If someone is blue then they chase the squirrel. If someone chases the dog then they are green.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not need the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-270_Q19", "context": "The cat chases the mouse. The cat does not eat the dog. The cat eats the tiger. The cat is round. The cat visits the dog. The cat visits the tiger. The dog does not chase the cat. The dog eats the cat. The mouse does not chase the cat. The mouse does not eat the cat. The tiger visits the dog. If someone visits the tiger and they chase the tiger then they are big. If someone is rough and they visit the tiger then they eat the tiger. If someone visits the cat then they chase the tiger. If someone eats the mouse then they chase the cat. If someone visits the cat then they eat the cat. If someone eats the tiger and they are big then they are rough. If someone is cold then they visit the cat. If someone eats the tiger then they are cold. If the cat visits the dog then the dog does not visit the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not chase the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-24_Q14", "context": "The bald eagle is kind. The bald eagle is round. The bald eagle sees the tiger. The mouse is blue. The mouse is red. The squirrel eats the bald eagle. The squirrel eats the tiger. The squirrel is blue. The squirrel does not see the tiger. The tiger is not red. The tiger does not like the squirrel. If something sees the tiger then it sees the mouse. If something sees the mouse then it eats the tiger. If something likes the mouse then it likes the bald eagle. If something eats the tiger then it is round. If the mouse sees the bald eagle and the mouse does not like the tiger then the mouse sees the tiger. If the bald eagle sees the tiger and the bald eagle eats the tiger then the tiger sees the mouse. If something likes the mouse and the mouse is blue then the mouse is not round.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel likes the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-667_Q2", "context": "The dog chases the mouse. The dog is blue. The dog needs the mouse. The mouse needs the dog. The mouse needs the rabbit. The mouse needs the tiger. The rabbit is not kind. The rabbit likes the mouse. The rabbit needs the dog. The tiger does not chase the dog. The tiger is cold. The tiger is kind. The tiger is red. The tiger is rough. The tiger needs the mouse. The tiger does not need the rabbit. If the mouse is rough and the mouse likes the rabbit then the rabbit is not red. If the rabbit chases the mouse then the mouse is blue. If something needs the dog and it needs the rabbit then the dog chases the rabbit. If the dog likes the rabbit and the rabbit needs the mouse then the dog is red. If something likes the dog then the dog chases the tiger. If something likes the dog and it needs the tiger then the dog does not need the tiger. If something chases the tiger then the tiger chases the rabbit. If something chases the rabbit and the rabbit likes the mouse then it likes the dog. If something needs the dog and it is not red then it does not like the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger chases the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-334_Q4", "context": "The dog eats the tiger. The dog is rough. The dog sees the lion. The lion eats the rabbit. The lion is blue. The lion is not nice. The lion is rough. The lion likes the rabbit. The lion sees the rabbit. The lion sees the tiger. The rabbit is round. The rabbit likes the dog. The tiger eats the lion. The tiger eats the rabbit. The tiger is nice. The tiger is young. If someone is rough and they do not see the lion then the lion is nice. If someone is young and they see the rabbit then the rabbit sees the dog. If someone sees the dog then they see the tiger. If the lion likes the dog then the lion is young. If someone likes the tiger and they eat the lion then the lion likes the dog. If someone eats the rabbit and they eat the lion then they like the tiger. If the dog is round then the dog does not see the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not like the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-838_Q12", "context": "Charlie is round. Charlie is young. Dave is white. Fiona is kind. Fiona is red. Fiona is white. Fiona is young. Harry is kind. Harry is quiet. Harry is round. All blue, kind people are quiet. Kind people are blue. All white, red people are round. White people are young. If someone is red then they are white. Quiet people are blue. If someone is young then they are kind. White, blue people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-480_Q5", "context": "Anne is green. Anne is red. Anne is smart. Erin is blue. Gary is rough. Harry is red. Harry is round. If something is rough and white then it is smart. All rough, smart things are round. Blue things are smart. Blue, smart things are green. Green, round things are white. All green things are smart. If something is white and round then it is smart. Red, rough things are round. Green things are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-108_Q16", "context": "Dave is green. Erin is kind. Fiona is kind. Fiona is quiet. Fiona is white. Fiona is young. Harry is round. Green, young people are round. Round people are kind. All green, kind people are young. All kind, young people are white. All white, green people are quiet. If someone is quiet and young then they are kind. White, quiet people are red. If someone is green then they are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-808_Q2", "context": "The bear is cold. The bear is green. The bear is young. The lion is cold. The lion needs the mouse. The lion needs the rabbit. The lion sees the rabbit. The lion visits the bear. The lion visits the mouse. The mouse is round. The rabbit needs the lion. The rabbit sees the lion. The rabbit visits the bear. The rabbit visits the mouse. If something visits the mouse and the mouse is round then it is green. If something sees the rabbit then the rabbit is kind. If something is young and cold then it sees the mouse. If something needs the bear and it is cold then it is young. If something sees the bear then it needs the lion. If the lion is kind and the lion sees the bear then the bear is round. If something is kind and it sees the lion then the lion is round. If something is kind and it visits the rabbit then it is young. If something is round and cold then it needs the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not need the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-697_Q9", "context": "The bear needs the dog. The bear needs the rabbit. The dog eats the rabbit. The dog is big. The dog is round. The rabbit eats the dog. The rabbit needs the bear. The rabbit needs the dog. The tiger chases the rabbit. The tiger is blue. The tiger needs the dog. If something is rough and it needs the rabbit then it needs the dog. If something is round and big then it chases the rabbit. If something is rough then it needs the tiger. If something chases the bear and it is round then the bear is big. If the dog chases the rabbit and the rabbit eats the dog then the dog is rough. If something chases the dog then the dog is blue. If something eats the bear and the bear eats the dog then it is big. If something is big and it needs the tiger then it chases the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog chases the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-793_Q10", "context": "Anne is kind. Anne is round. Bob is nice. Charlie is quiet. Charlie is rough. Fiona is nice. Fiona is quiet. Young people are cold. All round people are kind. Round, cold people are nice. If Fiona is round and Fiona is kind then Fiona is cold. If Charlie is kind then Charlie is nice. All round, kind people are nice. Quiet people are round. If someone is cold and nice then they are young. All rough, nice people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-991_Q5", "context": "The bear is young. The bear needs the dog. The bear sees the dog. The bear sees the lion. The dog eats the mouse. The dog is kind. The dog is young. The lion eats the bear. The lion is blue. The lion is cold. The lion needs the bear. The lion needs the dog. The mouse sees the bear. The mouse sees the dog. If something eats the bear and it sees the dog then it is rough. If something eats the mouse then it sees the mouse. If the dog sees the mouse then the mouse is blue. If something eats the bear and it is kind then the bear sees the lion. If something sees the mouse then it is young. If something is blue then it needs the mouse. If something is rough and it eats the bear then it sees the bear. If something is kind then it sees the mouse. If something is blue then it is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion sees the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1076_Q5", "context": "Anne is cold. Anne is furry. Anne is kind. Anne is quiet. Anne is red. Charlie is kind. Charlie is red. Erin is big. Erin is blue. Erin is furry. Erin is kind. Erin is quiet. Erin is not red. Fiona is not cold. All red things are cold. If Charlie is cold then Charlie is blue. If something is cold and not kind then it is blue. All blue, red things are not quiet. If something is kind and not cold then it is not quiet. If something is kind and not quiet then it is furry. Furry things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1109_Q11", "context": "Bob is green. Bob is quiet. Bob is round. Bob is young. Charlie is big. Charlie is green. Charlie is kind. Charlie is young. Erin is green. Fiona is big. Fiona is blue. Fiona is green. Fiona is kind. Fiona is quiet. Fiona is round. Fiona is young. Big things are kind. If something is green and blue then it is young. If Erin is blue and Erin is young then Erin is big. All green things are blue. If something is kind and big then it is round. All kind things are big. All quiet, blue things are green. If something is round then it is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-531_Q1", "context": "Anne is big. Anne is green. Anne is smart. Bob is big. Bob is white. Dave is white. Dave is young. Harry is big. Harry is green. Harry is round. Harry is smart. Harry is not white. If someone is green and big then they are round. All round people are big. If someone is kind and smart then they are big. If Harry is smart then Harry is round. White, smart people are green. If Bob is green and Bob is not kind then Bob is not white. All white people are smart. If Dave is smart and Dave is green then Dave is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-342_Q15", "context": "Anne is round. Anne is young. Charlie is blue. Erin is quiet. Erin is round. Harry is kind. Harry is quiet. Quiet, rough people are round. If someone is young then they are big. Kind, blue people are rough. Big people are round. If someone is big and blue then they are round. All kind, rough people are big. If Charlie is round and Charlie is blue then Charlie is quiet. If someone is blue then they are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-869_Q3", "context": "The bald eagle is green. The bald eagle is nice. The bald eagle sees the rabbit. The dog needs the tiger. The rabbit sees the bald eagle. The rabbit visits the bald eagle. The rabbit visits the dog. The rabbit visits the tiger. The tiger is big. The tiger is kind. The tiger is red. The tiger sees the rabbit. Big people are red. If the rabbit visits the tiger and the rabbit visits the dog then the tiger needs the dog. If someone is red then they need the bald eagle. If someone is green then they see the bald eagle. If someone visits the bald eagle and they are red then the bald eagle is big. If someone visits the dog and they see the bald eagle then they are big. If someone sees the tiger then they need the bald eagle. If someone visits the dog and they see the bald eagle then the dog visits the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle sees the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1036_Q13", "context": "Dave is big. Dave is cold. Dave is furry. Dave is red. Dave is round. Erin is cold. Fiona is furry. Fiona is kind. Fiona is rough. Fiona is round. Harry is cold. Harry is furry. Harry is rough. Harry is round. If something is red and round then it is big. If something is kind then it is round. All furry things are rough. If something is red then it is kind. Big, round things are rough. If Dave is furry then Dave is kind. All round, big things are rough. Big things are red. If something is cold then it is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-91_Q21", "context": "The lion eats the tiger. The lion is red. The lion likes the rabbit. The lion needs the tiger. The mouse is kind. The mouse likes the lion. The mouse needs the rabbit. The rabbit eats the mouse. The rabbit likes the lion. The tiger eats the lion. The tiger eats the rabbit. The tiger is big. The tiger is nice. The tiger needs the mouse. If something needs the rabbit and the rabbit is big then it eats the mouse. If something is kind then it is big. If something is kind then it eats the mouse. If something likes the mouse and the mouse is big then it needs the mouse. If something needs the mouse then the mouse needs the lion. If the mouse needs the lion then the lion is kind. If something is big then it likes the mouse. If the tiger needs the rabbit and the rabbit eats the lion then the rabbit eats the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not eat the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-165_Q3", "context": "Bob is quiet. Bob is rough. Charlie is kind. Charlie is quiet. Fiona is quiet. Fiona is rough. Harry is red. If Fiona is red then Fiona is round. If someone is kind and big then they are not rough. All kind, round people are nice. All red people are nice. Round, nice people are big. If Fiona is quiet and Fiona is nice then Fiona is not red. If someone is red and nice then they are round. Big people are kind. If Charlie is not kind then Charlie is not rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-353_Q20", "context": "Anne is quiet. Charlie is cold. Charlie is not green. Charlie is red. Charlie is smart. Dave is cold. Dave is nice. Dave is quiet. Dave is red. Dave is smart. Erin is smart. Erin is young. If someone is quiet and not green then they are cold. If someone is quiet then they are cold. All nice people are cold. All green people are cold. If Anne is cold then Anne is nice. If someone is nice then they are young. All nice people are young. All nice, smart people are red. Young people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-853_Q3", "context": "The bald eagle chases the tiger. The bald eagle eats the cat. The bald eagle eats the cow. The bald eagle eats the tiger. The bald eagle needs the cat. The cat eats the bald eagle. The cat is green. The cat needs the tiger. The cow is cold. The cow needs the bald eagle. The cow does not need the tiger. The tiger chases the cow. The tiger does not eat the cat. The tiger eats the cow. The tiger is not blue. The tiger is red. If the cat eats the bald eagle and the cat is blue then the bald eagle is green. If someone eats the cat then the cat does not need the bald eagle. If someone is red and they need the cat then the cat does not chase the tiger. If someone is green then they chase the bald eagle. If the cow needs the bald eagle then the bald eagle eats the cow. If someone eats the cat and they chase the cat then the cat is blue. If someone chases the bald eagle then they are blue. Red people are cold. If someone is green and not blue then they do not chase the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat chases the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-114_Q12", "context": "The bald eagle chases the cow. The bald eagle chases the rabbit. The bald eagle is kind. The bald eagle is nice. The bald eagle likes the cow. The cat is kind. The cow is kind. The cow likes the cat. The cow sees the rabbit. The rabbit chases the bald eagle. The rabbit is kind. If someone chases the cat and they like the bald eagle then the bald eagle likes the cat. If someone chases the cow then the cow chases the cat. If someone chases the rabbit and they like the bald eagle then the bald eagle sees the cow. If someone is big and rough then they chase the rabbit. If someone chases the rabbit and they are nice then the rabbit is nice. If the cow chases the bald eagle and the cow is green then the bald eagle likes the rabbit. If someone is nice and they see the cow then they chase the cat. If someone likes the cat then they like the bald eagle. If the bald eagle chases the rabbit and the rabbit likes the bald eagle then the rabbit chases the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not chase the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-769_Q20", "context": "Anne is quiet. Erin is furry. Erin is green. Fiona is furry. Fiona is quiet. Fiona is red. Fiona is rough. Fiona is white. Harry is furry. Harry is quiet. Harry is white. Young people are furry. If Anne is quiet then Anne is red. Young, green people are rough. If someone is green then they are white. If someone is furry and quiet then they are white. If someone is young and white then they are rough. All red people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-399_Q17", "context": "The bald eagle eats the squirrel. The bald eagle needs the lion. The cow is blue. The cow is green. The cow is not red. The cow is not round. The cow needs the lion. The cow visits the squirrel. The lion eats the bald eagle. The lion is blue. The lion visits the squirrel. The squirrel eats the lion. The squirrel is blue. The squirrel is round. If someone is green and they do not eat the cow then they do not eat the lion. All rough people are green. If someone visits the squirrel then the squirrel is rough. If someone is round and they visit the bald eagle then the bald eagle eats the lion. If the cow eats the lion then the cow is not round. If someone is green and blue then they visit the bald eagle. If someone is green then they visit the bald eagle. If the squirrel visits the cow and the cow visits the bald eagle then the squirrel eats the bald eagle. If someone eats the lion then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-341_Q16", "context": "Bob is quiet. Fiona is big. Fiona is rough. Gary is smart. Harry is round. Harry is smart. Harry is white. Rough people are white. Quiet, cold people are white. If someone is cold and round then they are quiet. Smart people are quiet. All rough, quiet people are round. If someone is white and rough then they are cold. If someone is cold then they are smart. If someone is white and not cold then they are big. If someone is cold and not white then they are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1049_Q12", "context": "Bob is nice. Bob is white. Charlie is nice. Charlie is rough. Dave is red. Harry is quiet. Harry is young. If Dave is quiet and Dave is nice then Dave is white. If something is young then it is rough. Red things are young. If something is rough and red then it is quiet. All rough things are white. All nice things are rough. If something is nice and quiet then it is white. If something is white then it is furry. If something is furry then it is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-655_Q18", "context": "Anne is blue. Charlie is big. Dave is cold. Dave is furry. Dave is nice. Dave is young. Fiona is big. If something is cold and big then it is round. If Fiona is furry then Fiona is not big. If something is round and big then it is nice. If something is blue and big then it is cold. If something is blue then it is big. All nice things are young. If something is cold and not nice then it is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-777_Q9", "context": "The cat chases the dog. The cat chases the tiger. The cat is kind. The cat is red. The cat is young. The cat does not need the cow. The cow chases the tiger. The cow is big. The cow is kind. The cow likes the cat. The cow needs the cat. The dog needs the cow. The dog needs the tiger. The tiger is kind. The tiger likes the dog. The tiger needs the cat. If something is big and it chases the dog then the dog likes the cow. If something chases the dog and the dog is round then it needs the tiger. If something is round then it needs the tiger. If something needs the tiger then it likes the dog. If something needs the tiger and the tiger likes the cat then the tiger chases the cat. If something likes the dog then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat likes the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-308_Q8", "context": "The bald eagle eats the cow. The bear eats the bald eagle. The bear is cold. The bear is red. The cow eats the bald eagle. The dog chases the bear. The dog eats the bald eagle. If something eats the dog then the dog chases the bald eagle. If something is cold then it sees the bear. If something chases the dog and it eats the dog then the dog is nice. If something chases the cow then it is big. If something sees the bear then the bear chases the bald eagle. If something chases the dog then it chases the cow. If something chases the bald eagle then it chases the dog. If something eats the bald eagle then the bald eagle sees the bear. If something sees the dog then it chases the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not chase the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-401_Q24", "context": "The cat chases the squirrel. The cat is cold. The rabbit chases the cat. The rabbit eats the tiger. The rabbit is cold. The rabbit likes the squirrel. The squirrel does not chase the cat. The squirrel eats the rabbit. The tiger chases the rabbit. The tiger chases the squirrel. The tiger eats the cat. The tiger is cold. The tiger is green. The tiger likes the cat. The tiger likes the rabbit. The tiger likes the squirrel. If something chases the cat then it is nice. If something likes the squirrel and it is round then the squirrel eats the cat. If the cat is nice and the cat likes the rabbit then the cat chases the squirrel. If something eats the squirrel then it is round. If something eats the cat then it eats the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit chases the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-219_Q8", "context": "The bear chases the cat. The bear chases the squirrel. The bear eats the cow. The bear is round. The bear likes the cat. The cat does not eat the bear. The cat likes the bear. The cow eats the bear. The cow likes the cat. The squirrel eats the cow. The squirrel is green. If someone is green then they eat the cat. If someone chases the cow and they are not big then they eat the cat. If someone eats the cat and the cat chases the bear then the cat chases the squirrel. If someone is round then they chase the bear. If someone likes the cow and they do not eat the squirrel then the squirrel does not chase the cow. If someone eats the bear and the bear is big then they are rough. If the squirrel chases the bear and the bear does not chase the squirrel then the bear chases the cow. If someone chases the squirrel then they are green. If someone eats the cat then the cat is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not chase the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-770_Q10", "context": "Dave is quiet. Erin is big. Erin is rough. Fiona is quiet. Fiona is rough. Fiona is smart. Gary is blue. Quiet, red things are rough. Red, blue things are cold. If Dave is cold and Dave is big then Dave is blue. All quiet things are big. All red things are quiet. If something is big and rough then it is cold. If something is big then it is red. If Gary is red then Gary is rough. Smart things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-888_Q10", "context": "The bear does not eat the mouse. The bear is blue. The bear is kind. The bear is round. The bear needs the squirrel. The dog eats the bear. The dog is blue. The dog does not need the squirrel. The mouse needs the squirrel. The squirrel does not eat the dog. The squirrel is big. The squirrel is kind. The squirrel visits the dog. The squirrel visits the mouse. If the bear eats the dog and the bear is green then the bear visits the dog. If something visits the mouse and it is big then it visits the dog. If the dog visits the bear then the dog is not green. If something needs the squirrel then it needs the mouse. If something is blue then it visits the bear. If something visits the squirrel then the squirrel needs the bear. If something needs the dog and it does not eat the mouse then the dog visits the squirrel. If something eats the bear and it is not green then the bear needs the dog. If something visits the squirrel then it is not round.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not visit the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-316_Q2", "context": "The bald eagle is kind. The bald eagle is young. The bald eagle visits the lion. The cat eats the lion. The cat is rough. The cat visits the bald eagle. The cat visits the rabbit. The lion eats the cat. The lion eats the rabbit. The rabbit eats the cat. The rabbit visits the cat. If someone is rough then they see the cat. If someone sees the cat then they eat the lion. If someone visits the lion then they are blue. If the cat sees the lion and the cat eats the rabbit then the lion sees the rabbit. If someone visits the bald eagle and they visit the lion then the lion is rough. If someone sees the cat then they visit the lion. If someone visits the rabbit then the rabbit eats the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not eat the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-511_Q10", "context": "Bob is quiet. Bob is red. Bob is rough. Charlie is cold. Charlie is quiet. Dave is quiet. Harry is cold. All quiet, cold things are furry. If something is cold then it is white. If Harry is furry and Harry is white then Harry is red. If Dave is blue then Dave is furry. If something is red then it is rough. If something is white then it is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1361_Q19", "context": "Anne is cold. Anne is furry. Anne is quiet. Anne is smart. Anne is young. Erin is quiet. Erin is smart. Gary is cold. Gary is furry. Gary is quiet. Gary is smart. Harry is cold. If someone is blue and big then they are smart. Blue people are furry. If someone is young then they are big. Quiet, cold people are blue. All furry, blue people are quiet. If Erin is furry then Erin is young. Blue, big people are quiet. If someone is smart and quiet then they are cold. Blue people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-448_Q2", "context": "The cat likes the cow. The cat needs the lion. The cow visits the lion. The dog is young. The dog likes the cat. The dog needs the cow. The dog needs the lion. The lion is nice. The lion is young. The lion likes the cat. The lion does not need the dog. The lion visits the cow. If the dog does not like the cow and the dog does not visit the cow then the cow is not green. If something likes the cat then the cat is round. If something is green then it visits the dog. If something visits the dog then the dog needs the cat. If the cat needs the cow then the cat likes the lion. If the cow likes the dog then the cow visits the lion. If something likes the dog and it visits the cow then the cow does not visit the lion. If something visits the dog and the dog needs the cat then the dog is green. Nice things are green.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion needs the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-743_Q12", "context": "The bald eagle is nice. The cat is not red. The cat is not round. The cat does not like the bald eagle. The cat sees the mouse. The cat sees the tiger. The cat visits the bald eagle. The cat does not visit the mouse. The mouse sees the cat. The mouse visits the bald eagle. The mouse visits the tiger. The tiger likes the bald eagle. The tiger likes the mouse. The tiger visits the mouse. If someone sees the bald eagle and they like the tiger then the bald eagle visits the mouse. If the cat visits the mouse then the mouse visits the tiger. If someone visits the mouse then they like the tiger. If someone likes the tiger then they see the bald eagle. If someone likes the mouse then they do not see the cat. If the bald eagle does not see the tiger then the tiger is not nice. If the cat visits the mouse and the mouse likes the bald eagle then the bald eagle visits the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not see the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-759_Q4", "context": "Anne is big. Anne is blue. Anne is not nice. Anne is red. Charlie is blue. Charlie is quiet. Charlie is young. Fiona is blue. Fiona is smart. Gary is not big. Gary is nice. Gary is quiet. Gary is red. Gary is smart. Red, quiet people are young. If Fiona is blue and Fiona is young then Fiona is big. Smart people are quiet. Quiet people are red. If someone is nice and blue then they are not smart. If someone is quiet then they are smart. All big, quiet people are not nice. If Charlie is not big then Charlie is quiet. If Fiona is smart and Fiona is young then Fiona is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1134_Q10", "context": "Bob is cold. Bob is green. Bob is round. Bob is not smart. Bob is white. Charlie is cold. Charlie is rough. Charlie is round. Charlie is not smart. Charlie is white. Erin is green. Erin is round. Erin is smart. Erin is white. Harry is not rough. Harry is smart. Round people are cold. If someone is smart and rough then they are cold. If someone is cold then they are white. If Charlie is cold and Charlie is not rough then Charlie is smart. If someone is nice and green then they are round. If someone is smart and not rough then they are green. Green people are nice. If Erin is smart and Erin is not round then Erin is not white.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-150_Q12", "context": "The bald eagle is young. The bald eagle sees the tiger. The bear chases the cat. The bear is big. The bear is round. The bear likes the bald eagle. The cat is not young. The cat likes the bear. The tiger chases the cat. The tiger is big. The tiger does not like the bald eagle. If someone is rough and cold then they chase the tiger. If someone chases the bear then the bear chases the tiger. If someone sees the bald eagle and they like the bear then the bear sees the tiger. If someone sees the bear then they see the bald eagle. If someone is big and round then they like the cat. If someone chases the cat and they like the cat then the cat sees the bear. If someone sees the tiger then they see the bear. If someone is young and not big then they do not like the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not see the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1210_Q8", "context": "Anne is furry. Anne is round. Anne is white. Anne is young. Charlie is big. Charlie is red. Charlie is rough. Charlie is white. Fiona is round. Harry is furry. Round people are big. Rough, round people are white. If Charlie is furry and Charlie is red then Charlie is white. If Charlie is young and Charlie is white then Charlie is furry. All big people are red. Big, red people are rough. White people are furry. If someone is young then they are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-757_Q13", "context": "The bear is green. The bear does not see the cat. The bear does not see the rabbit. The bear visits the cat. The cat is not green. The cow eats the bear. The cow eats the cat. The cow is kind. The cow is nice. The cow visits the bear. The cow visits the rabbit. The rabbit eats the cat. If something visits the rabbit and it is green then the rabbit is kind. If the cow is kind then the cow is nice. If something sees the cow then it eats the bear. If something is green and nice then it visits the cow. All rough things are green. Kind things are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not eat the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-237_Q9", "context": "Bob is not green. Fiona is not green. Fiona is nice. Fiona is young. Gary is red. Harry is big. Harry is young. Cold people are green. Green, big people are round. If someone is young and big then they are cold. If Bob is green then Bob is big. If someone is young and not green then they are not red. If someone is round then they are red. If Harry is red and Harry is green then Harry is not nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-878_Q16", "context": "The cow is kind. The cow is nice. The cow likes the lion. The cow likes the mouse. The cow visits the mouse. The lion is big. The lion likes the mouse. The mouse visits the lion. The tiger eats the mouse. The tiger is nice. The tiger is red. The tiger likes the cow. The tiger likes the lion. The tiger visits the cow. If the mouse eats the cow and the mouse likes the tiger then the mouse likes the cow. If someone is nice then they are young. If someone eats the lion then they are big. If someone is young then they eat the mouse. If someone eats the lion and they like the mouse then the lion likes the cow. All kind, big people are red. If someone eats the mouse and they are kind then the mouse is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-875_Q22", "context": "The bear eats the cat. The bear is young. The bear sees the cat. The bear sees the dog. The cat eats the dog. The cat sees the bear. The dog eats the bear. The mouse eats the dog. The mouse is blue. The mouse is round. The mouse likes the dog. If someone is blue and they like the cat then they eat the cat. If the bear is kind and the bear likes the mouse then the mouse is young. If the bear sees the mouse and the mouse is blue then the bear likes the dog. If someone likes the cat then the cat likes the mouse. If someone likes the mouse then they are kind. If someone eats the mouse then they eat the bear. If someone is young then they like the mouse. If the bear sees the mouse then the mouse is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat likes the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-442_Q22", "context": "The bald eagle is cold. The bald eagle likes the bear. The bald eagle likes the mouse. The bald eagle sees the lion. The bald eagle visits the lion. The bear sees the lion. The bear sees the mouse. The bear visits the bald eagle. The lion is red. The mouse is big. The mouse is red. The mouse likes the bear. The mouse likes the lion. The mouse sees the lion. The mouse visits the bear. The mouse visits the lion. If something sees the mouse and it sees the lion then it likes the lion. If something visits the bald eagle and the bald eagle sees the mouse then the mouse is red. If something visits the bald eagle and the bald eagle sees the bear then it visits the bear. If something visits the lion and it is big then the lion sees the mouse. If the bear sees the mouse and the mouse likes the bald eagle then the bald eagle sees the lion. If something sees the mouse and it sees the lion then the lion is nice. If something likes the mouse and the mouse sees the bear then it sees the mouse. If the lion visits the mouse then the lion sees the bald eagle. If something likes the lion then it sees the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-773_Q8", "context": "The bear eats the mouse. The bear eats the tiger. The bear likes the mouse. The mouse eats the bear. The mouse eats the rabbit. The mouse visits the tiger. The rabbit eats the tiger. The rabbit is cold. The rabbit visits the tiger. The tiger does not eat the mouse. The tiger likes the mouse. If something eats the tiger and it visits the mouse then it visits the bear. If something likes the rabbit then it visits the bear. Blue things are round. If something visits the bear then the bear is red. If something visits the bear and it is red then it is blue. If something eats the tiger then it visits the mouse. If something is blue then it does not like the tiger. If the bear likes the tiger and the bear is not blue then the bear visits the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-705_Q13", "context": "The bald eagle eats the cow. The bald eagle needs the cow. The bald eagle needs the dog. The bald eagle needs the squirrel. The cow is kind. The dog is kind. The dog is nice. The dog needs the bald eagle. The squirrel eats the bald eagle. The squirrel eats the cow. The squirrel needs the cow. If something needs the bald eagle and the bald eagle is red then the bald eagle eats the squirrel. If something sees the squirrel then it is blue. If something needs the bald eagle and the bald eagle needs the dog then the bald eagle is kind. If something is kind then it is red. If something is nice then it sees the cow. If something eats the squirrel then the squirrel is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-14_Q7", "context": "Charlie is not nice. Dave is big. Dave is quiet. Fiona is nice. Fiona is quiet. Harry is not green. Harry is nice. If Fiona is nice then Fiona is big. If something is big then it is kind. If Fiona is big and Fiona is kind then Fiona is young. If something is quiet then it is big. All smart things are green. If something is big and young then it is green. Green things are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-307_Q18", "context": "Anne is smart. Bob is big. Gary is green. Gary is kind. Gary is round. Gary is smart. Harry is kind. If something is furry then it is big. If something is furry and big then it is round. Big things are kind. Big, kind things are furry. All round things are green. If something is green then it is rough. Furry, rough things are big. If something is round then it is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-378_Q22", "context": "The bald eagle is not cold. The bald eagle is young. The bald eagle does not need the dog. The bald eagle sees the cow. The bald eagle sees the dog. The cow chases the tiger. The cow is not young. The cow sees the tiger. The dog does not chase the cow. The dog chases the tiger. The dog is nice. The dog is young. The dog does not need the bald eagle. The dog needs the cow. The tiger is young. The tiger does not need the bald eagle. If something chases the dog then the dog sees the tiger. If something chases the dog then the dog needs the cow. If something chases the cow then it needs the bald eagle. If something needs the dog then it needs the bald eagle. If something is big then it chases the dog. If something is nice and it sees the cow then the cow is cold. If something sees the tiger then it is big. If something chases the tiger then it does not need the dog. If the tiger chases the cow then the tiger chases the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow sees the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-477_Q8", "context": "Charlie is furry. Charlie is smart. Dave is kind. Dave is nice. Dave is smart. Gary is young. Harry is furry. Furry things are red. If something is smart and not furry then it is red. Kind things are red. Smart, young things are kind. Red things are kind. If something is furry and red then it is kind. If something is smart and kind then it is green. If something is green then it is not young. If something is furry and not young then it is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-904_Q5", "context": "The bald eagle chases the cow. The bald eagle chases the squirrel. The bald eagle is green. The bald eagle is young. The bald eagle needs the squirrel. The cow is nice. The lion is green. The lion likes the squirrel. The lion needs the squirrel. The squirrel is blue. The squirrel is green. The squirrel is red. The squirrel likes the lion. The squirrel needs the lion. If someone is young then they chase the lion. If someone needs the cow then they chase the squirrel. If someone chases the cow and they are green then they chase the bald eagle. If someone chases the lion then they chase the cow. If someone likes the squirrel and the squirrel chases the cow then they chase the cow. If someone chases the lion and the lion is green then they need the bald eagle. If someone needs the squirrel then the squirrel is young. If the bald eagle needs the squirrel and the bald eagle needs the cow then the bald eagle is green. If someone likes the bald eagle and they are young then the bald eagle chases the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle needs the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-217_Q8", "context": "The bald eagle eats the cat. The bald eagle is kind. The bald eagle likes the dog. The bear eats the bald eagle. The bear is kind. The bear likes the cat. The bear sees the cat. The cat eats the dog. The cat is big. The cat does not like the bald eagle. The cat sees the dog. The dog eats the bald eagle. The dog eats the bear. The dog eats the cat. If someone is red and they see the bear then the bear sees the cat. If someone eats the cat then they like the bear. If someone eats the bear then they eat the cat. If someone eats the bald eagle then they eat the bear. If someone is big then they eat the dog. If someone sees the bald eagle then the bald eagle does not like the bear. If the dog eats the cat then the cat eats the bald eagle. If the cat likes the bear then the cat likes the dog. If someone is round then they see the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not like the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1373_Q5", "context": "Anne is red. Bob is blue. Bob is cold. Bob is nice. Bob is quiet. Bob is red. Bob is rough. Bob is smart. Charlie is cold. Charlie is smart. Harry is cold. If someone is rough and cold then they are blue. Rough people are red. If someone is cold then they are quiet. Blue, red people are nice. Nice people are blue. Cold, smart people are nice. All red people are cold. If someone is cold and quiet then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-539_Q3", "context": "Charlie is big. Charlie is green. Charlie is red. Charlie is rough. Charlie is smart. Charlie is young. Erin is not green. Erin is young. Gary is green. Gary is red. Gary is young. Harry is round. Harry is smart. Harry is young. If Charlie is young and Charlie is smart then Charlie is green. If Erin is young then Erin is smart. If something is round and young then it is rough. If something is smart then it is big. If something is red and not green then it is big. All young, green things are red. Smart, rough things are red. All big things are round. If Gary is big and Gary is rough then Gary is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-308_Q18", "context": "Anne is furry. Charlie is green. Dave is not furry. Dave is green. Erin is green. Erin is kind. Erin is quiet. Quiet, furry people are young. If Dave is furry and Dave is young then Dave is round. All young people are green. If Dave is round and Dave is young then Dave is nice. If Anne is furry then Anne is quiet. If someone is quiet and not furry then they are nice. If Anne is round then Anne is nice. If someone is young then they are round. Furry, nice people are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-806_Q15", "context": "Anne is cold. Anne is not furry. Anne is quiet. Anne is not smart. Bob is round. Dave is cold. Dave is round. Dave is smart. Dave is young. Harry is furry. Harry is round. If Bob is green and Bob is round then Bob is furry. If someone is cold and round then they are smart. If Dave is furry then Dave is not quiet. If someone is green and young then they are quiet. If Anne is smart then Anne is not green. Quiet, round people are green. If someone is round then they are green. Furry people are young. Furry, quiet people are not cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-333_Q3", "context": "The bald eagle sees the cow. The cow eats the mouse. The cow is red. The dog eats the mouse. The dog sees the mouse. The mouse sees the cow. The mouse sees the dog. If the dog sees the mouse then the dog is big. If something sees the dog and the dog needs the bald eagle then the bald eagle needs the cow. If something is red then it sees the cow. If something needs the mouse and the mouse is nice then it eats the dog. If something needs the cow then it is big. If something eats the cow then it needs the bald eagle. If something sees the dog then the dog eats the cow. If something is big then it needs the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-934_Q3", "context": "Bob is furry. Charlie is red. Charlie is not rough. Fiona is kind. Fiona is rough. Gary is red. Gary is not round. Quiet people are kind. All nice people are kind. If Bob is furry and Bob is kind then Bob is red. All furry people are nice. Red, nice people are quiet. If Bob is rough then Bob is kind. All red, nice people are round. If someone is quiet then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-243_Q11", "context": "The bald eagle eats the bear. The bald eagle eats the cat. The bald eagle is green. The bald eagle sees the bear. The bald eagle visits the bear. The bald eagle visits the rabbit. The bear eats the bald eagle. The cat is green. The cat visits the bear. The rabbit sees the bear. If something visits the cat then the cat eats the bald eagle. If something is big then it is blue. If something is blue and green then it eats the bear. If something visits the rabbit then the rabbit is green. If something is blue and it eats the bear then it is young. If something is green and it sees the bear then it is big. If something is nice and it eats the cat then it visits the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-81_Q12", "context": "Bob is blue. Bob is smart. Fiona is furry. Gary is blue. Gary is kind. Gary is red. Harry is blue. Harry is kind. Harry is quiet. Harry is red. Quiet things are smart. If something is kind and quiet then it is red. If something is smart then it is blue. If something is quiet then it is smart. Kind things are red. All red things are rough. If something is furry then it is kind. If something is rough and red then it is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-600_Q4", "context": "The bear chases the tiger. The bear does not like the tiger. The bear needs the cat. The bear needs the tiger. The cat chases the bear. The cat is big. The cow chases the bear. The cow chases the tiger. The cow likes the cat. The cow needs the tiger. The tiger is green. The tiger is young. The tiger likes the bear. The tiger likes the cat. If something likes the bear then it does not like the cow. If something chases the cat then it likes the cow. If something likes the cow then the cow needs the cat. If the tiger does not need the bear then the tiger is big. If something chases the cat then it is big. All kind things are not big. If something needs the bear then the bear likes the tiger. If something needs the cat then it chases the cat. If something likes the cat then the cat chases the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not chase the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-285_Q4", "context": "Charlie is big. Charlie is furry. Charlie is kind. Charlie is nice. Charlie is rough. Charlie is young. Erin is nice. Erin is rough. Erin is young. Fiona is furry. Fiona is kind. Gary is big. Gary is rough. Gary is white. If something is nice and kind then it is young. If something is furry then it is big. White, furry things are nice. All big things are rough. All young things are big. If Gary is white and Gary is young then Gary is furry. All young, furry things are big. If Charlie is white and Charlie is rough then Charlie is young. All rough things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-378_Q5", "context": "The bald eagle is not cold. The bald eagle is young. The bald eagle does not need the dog. The bald eagle sees the cow. The bald eagle sees the dog. The cow chases the tiger. The cow is not young. The cow sees the tiger. The dog does not chase the cow. The dog chases the tiger. The dog is nice. The dog is young. The dog does not need the bald eagle. The dog needs the cow. The tiger is young. The tiger does not need the bald eagle. If something chases the dog then the dog sees the tiger. If something chases the dog then the dog needs the cow. If something chases the cow then it needs the bald eagle. If something needs the dog then it needs the bald eagle. If something is big then it chases the dog. If something is nice and it sees the cow then the cow is cold. If something sees the tiger then it is big. If something chases the tiger then it does not need the dog. If the tiger chases the cow then the tiger chases the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow chases the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-274_Q5", "context": "Anne is smart. Charlie is cold. Charlie is green. Charlie is round. Fiona is blue. Fiona is green. Fiona is red. Fiona is smart. Harry is round. Harry is smart. All green people are cold. All white people are red. All round people are smart. Cold, round people are green. If Fiona is blue and Fiona is smart then Fiona is round. If someone is red and cold then they are blue. If Harry is round then Harry is white. If Anne is blue then Anne is round. Red people are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-797_Q20", "context": "The cat is cold. The cat is kind. The cow eats the squirrel. The lion eats the squirrel. The squirrel is green. The squirrel sees the cow. The squirrel sees the lion. If something is rough then it visits the squirrel. If something sees the squirrel then it is rough. If something visits the lion then the lion eats the squirrel. If something eats the cow and the cow is green then the cow eats the lion. If something is kind then it visits the cat. If something eats the squirrel and it is kind then it eats the lion. If the cat visits the squirrel then the squirrel is rough. If something visits the cat then it is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow visits the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-947_Q23", "context": "Charlie is cold. Charlie is furry. Charlie is green. Charlie is kind. Dave is cold. Dave is kind. Gary is furry. Gary is red. Harry is cold. Harry is young. If Charlie is red then Charlie is kind. If someone is young then they are green. All nice, cold people are kind. If Gary is furry then Gary is nice. All young people are green. If Dave is kind and Dave is nice then Dave is cold. If someone is red and young then they are green. All nice people are young. Green, furry people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-182_Q8", "context": "The bald eagle visits the cow. The cat is young. The cat visits the cow. The cow eats the bald eagle. The cow sees the bald eagle. The cow visits the bald eagle. The lion visits the cow. If something is round and it sees the bald eagle then the bald eagle is round. If something is young and it sees the cat then it eats the lion. If something visits the cow then it visits the cat. If something eats the lion then the lion is young. If something is young then it sees the cat. If the lion is young then the lion sees the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-230_Q6", "context": "Anne is cold. Erin is big. Erin is cold. Erin is kind. Gary is cold. Harry is cold. Harry is young. If someone is young then they are cold. If someone is green and kind then they are young. If someone is green then they are big. Young, blue people are nice. Young, cold people are blue. Blue, big people are cold. If someone is cold and big then they are kind. If someone is cold then they are green. Cold, young people are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-518_Q20", "context": "The cow chases the mouse. The cow eats the tiger. The cow is cold. The lion chases the mouse. The mouse does not chase the lion. The mouse eats the tiger. The mouse is green. The mouse is young. The tiger eats the mouse. The tiger is kind. The tiger needs the cow. If someone needs the mouse and the mouse is nice then the mouse does not chase the cow. If the cow is green then the cow chases the lion. If someone chases the cow and the cow eats the tiger then the cow is green. If someone eats the mouse then they chase the cow. If someone chases the lion then the lion does not eat the cow. If someone needs the mouse then they chase the lion. If someone chases the lion then the lion needs the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1036_Q3", "context": "Dave is big. Dave is cold. Dave is furry. Dave is red. Dave is round. Erin is cold. Fiona is furry. Fiona is kind. Fiona is rough. Fiona is round. Harry is cold. Harry is furry. Harry is rough. Harry is round. If something is red and round then it is big. If something is kind then it is round. All furry things are rough. If something is red then it is kind. Big, round things are rough. If Dave is furry then Dave is kind. All round, big things are rough. Big things are red. If something is cold then it is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-292_Q21", "context": "The bald eagle chases the dog. The bald eagle is not blue. The bald eagle is kind. The bald eagle visits the dog. The bear does not chase the dog. The bear is kind. The bear sees the bald eagle. The bear visits the bald eagle. The bear does not visit the dog. The dog does not chase the bear. The dog is blue. The dog is kind. The dog is rough. The dog sees the bald eagle. The lion sees the bald eagle. The lion visits the bear. If something visits the lion and it does not see the bald eagle then it chases the lion. If something is rough then it chases the lion. Kind, young things are rough. If something is blue then it is rough. If the dog is rough and the dog visits the lion then the dog visits the bald eagle. If something visits the bear and it sees the bear then the bear is young. If something chases the lion then the lion sees the bear. If the lion is kind and the lion chases the bald eagle then the bald eagle is young. If something sees the bald eagle then it does not chase the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not chase the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-761_Q1", "context": "The bald eagle eats the cow. The bald eagle eats the dog. The cat eats the bald eagle. The cat eats the cow. The cat does not eat the dog. The cat is big. The cat needs the cow. The cat needs the dog. The cow is green. The cow is red. The cow sees the cat. The dog sees the bald eagle. If the bald eagle is big and the dog does not see the bald eagle then the bald eagle does not eat the cat. If something is big then it needs the bald eagle. If the cow eats the bald eagle and the bald eagle sees the cow then the bald eagle sees the dog. If something needs the bald eagle then it sees the cow. If something sees the cow then the cow is big. If something needs the dog and the dog does not see the cat then the cat is red. If something needs the dog then the dog is rough. If something is rough and it needs the cow then it sees the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat needs the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-580_Q12", "context": "Charlie is furry. Charlie is green. Charlie is kind. Charlie is rough. Charlie is smart. Erin is young. Gary is furry. Gary is kind. Gary is smart. Harry is rough. All rough people are kind. Rough, furry people are kind. If someone is furry then they are blue. Kind, smart people are blue. All blue, furry people are smart. If Harry is kind then Harry is furry. All kind, smart people are not young. If Harry is not kind then Harry is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-833_Q14", "context": "Anne is quiet. Anne is young. Bob is not blue. Bob is kind. Bob is rough. Charlie is not blue. Charlie is kind. Charlie is quiet. Charlie is not rough. Gary is kind. Gary is white. White things are red. If something is blue and kind then it is not quiet. Kind, rough things are not blue. All white, red things are young. If Charlie is blue and Charlie is young then Charlie is kind. If something is red and young then it is rough. If something is young then it is white. If Charlie is rough and Charlie is blue then Charlie is white. All rough things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-729_Q3", "context": "The cow is big. The cow is red. The cow sees the squirrel. The dog eats the cow. The dog likes the tiger. The dog sees the squirrel. The squirrel is blue. The squirrel is rough. The tiger is big. The tiger is blue. The tiger likes the dog. The tiger sees the dog. If something sees the tiger then it is red. If something likes the dog and it is big then the dog is round. If something is big and red then it sees the cow. If the tiger is big and the tiger sees the dog then the tiger eats the squirrel. If something is big then it sees the tiger. If something is red and rough then it is blue. If something eats the dog and the dog likes the squirrel then the squirrel likes the dog. If something likes the dog and it sees the tiger then the dog is big.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow sees the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-694_Q8", "context": "The bear sees the dog. The bear visits the dog. The bear visits the lion. The cat is green. The cat sees the lion. The cat visits the bear. The cat visits the lion. The dog is kind. The dog needs the bear. The dog needs the cat. The dog sees the lion. The lion needs the dog. If something needs the lion then it needs the bear. If something visits the dog then the dog needs the bear. If something needs the bear and the bear sees the dog then it needs the cat. If something sees the dog and it is red then the dog sees the cat. If the bear sees the cat then the cat visits the dog. If something visits the lion then it is red. If something sees the cat then the cat needs the lion. If something visits the bear then it is young.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not need the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-436_Q20", "context": "The bear chases the squirrel. The bear eats the squirrel. The bear eats the tiger. The bear is kind. The bear is red. The bear needs the lion. The bear needs the squirrel. The lion chases the bear. The lion chases the squirrel. The lion chases the tiger. The lion eats the squirrel. The lion needs the bear. The lion needs the squirrel. The squirrel eats the lion. The squirrel eats the tiger. The tiger is nice. If the bear is blue then the bear needs the lion. If something needs the lion and the lion is blue then it chases the tiger. If something eats the bear and it eats the squirrel then it needs the squirrel. If something chases the tiger then it is nice. If the bear eats the tiger and the tiger needs the bear then the tiger eats the lion. If something is rough then it eats the tiger. All nice things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger eats the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-350_Q7", "context": "The bald eagle is big. The bald eagle is blue. The bald eagle visits the tiger. The cow likes the bald eagle. The squirrel is blue. The squirrel is red. The squirrel sees the bald eagle. The squirrel sees the cow. The tiger likes the squirrel. The tiger sees the squirrel. If the cow visits the bald eagle then the bald eagle likes the squirrel. If someone is rough then they visit the bald eagle. If someone sees the tiger and the tiger is green then they like the cow. If someone visits the tiger and the tiger is green then the tiger is blue. If someone likes the cow then the cow visits the squirrel. If the squirrel sees the bald eagle and the squirrel visits the tiger then the tiger is blue. If someone likes the bald eagle then the bald eagle likes the cow. If someone visits the squirrel then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-458_Q3", "context": "Charlie is rough. Charlie is white. Dave is quiet. Erin is smart. Erin is white. Fiona is nice. Fiona is rough. If Fiona is kind and Fiona is not rough then Fiona is not nice. White, cold people are smart. If someone is quiet then they are white. Kind people are cold. White people are kind. If Dave is white then Dave is kind. If someone is white and not kind then they are not nice. All smart people are nice. If Charlie is not kind and Charlie is not white then Charlie is not nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-1_Q10", "context": "The bald eagle sees the bear. The bear is red. The bear is round. The bear likes the cow. The bear needs the cow. The cow is rough. The cow likes the bald eagle. The cow likes the bear. The cow needs the bear. The lion likes the cow. The lion needs the bear. If something sees the cow and the cow is kind then it likes the bear. If something is red then it sees the bald eagle. If something sees the bear and the bear likes the bald eagle then the bald eagle sees the lion. If something sees the bald eagle and it is round then it sees the lion. If something likes the bear and the bear is kind then it needs the lion. If something needs the bear then it is kind. If something sees the lion then it sees the cow. If something likes the bear and it is round then it likes the bald eagle. If something needs the cow and it likes the bald eagle then it is red.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not like the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1414_Q3", "context": "Bob is kind. Bob is rough. Charlie is blue. Charlie is cold. Charlie is furry. Charlie is kind. Charlie is nice. Charlie is rough. Charlie is smart. Gary is blue. Gary is cold. Gary is kind. Gary is nice. Gary is rough. Harry is nice. Harry is rough. If something is cold then it is blue. All kind things are furry. Kind, blue things are smart. If Harry is furry and Harry is smart then Harry is cold. All nice, kind things are cold. Furry things are nice. Cold, blue things are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1023_Q17", "context": "Dave is nice. Erin is blue. Erin is green. Erin is nice. Erin is red. Erin is smart. Erin is young. Fiona is blue. Harry is blue. Harry is green. Harry is round. Nice things are young. If Dave is red then Dave is blue. Round, nice things are green. If something is young then it is nice. If Harry is blue and Harry is round then Harry is green. Smart things are red. Green, nice things are red. If something is young and nice then it is round. Young, round things are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1311_Q10", "context": "Anne is nice. Anne is white. Bob is furry. Charlie is kind. Charlie is rough. Charlie is smart. Dave is white. All white, nice people are rough. All white people are blue. All kind, white people are smart. Furry people are nice. If someone is rough then they are blue. All white people are kind. If Dave is white and Dave is smart then Dave is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-632_Q15", "context": "The bald eagle is big. The bear sees the squirrel. The rabbit sees the squirrel. The rabbit visits the squirrel. The squirrel chases the bear. The squirrel is cold. The squirrel is green. If something sees the bear and the bear sees the squirrel then the bear is cold. If the bear visits the squirrel then the bear visits the rabbit. If something is green then it sees the bear. If something visits the squirrel then it sees the bald eagle. Cold things are green. If something sees the squirrel and the squirrel visits the bald eagle then the bald eagle is green. If something sees the bear then it sees the bald eagle. If something chases the bald eagle and it sees the bald eagle then it chases the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not chase the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-530_Q1", "context": "Bob is furry. Bob is quiet. Bob is round. Bob is white. Erin is white. Fiona is big. Harry is kind. If something is white then it is quiet. Nice things are white. Kind, furry things are big. If Bob is kind then Bob is white. Quiet, round things are white. If something is quiet and big then it is round. All quiet things are furry. If something is furry then it is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1316_Q9", "context": "Anne is nice. Anne is rough. Bob is round. Bob is white. Bob is young. Erin is white. Harry is rough. Harry is round. Harry is white. Harry is young. All rough people are quiet. All rough, round people are furry. Young, white people are round. All nice, white people are young. If someone is quiet then they are white. Rough, white people are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-633_Q9", "context": "Bob is furry. Bob is green. Bob is red. Bob is rough. Charlie is furry. Charlie is kind. Dave is furry. Dave is red. Erin is cold. Erin is furry. Erin is red. If something is kind and blue then it is rough. If something is cold and blue then it is kind. If Bob is cold and Bob is red then Bob is blue. Kind, rough things are red. All red things are cold. Blue things are furry. If something is cold then it is blue. If something is furry and rough then it is green. If something is rough and cold then it is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-799_Q8", "context": "The bald eagle is round. The bear is rough. The bear is round. The dog is round. The dog sees the bear. The dog sees the rabbit. The dog visits the bear. The rabbit is nice. The rabbit is rough. The rabbit sees the dog. The rabbit visits the dog. If the bald eagle sees the bear and the bald eagle sees the dog then the bald eagle needs the rabbit. All nice things are young. If something visits the bald eagle then the bald eagle is rough. If something is kind and it visits the dog then it is nice. If something is young then it sees the bear. If the dog visits the bald eagle then the bald eagle visits the dog. If something visits the dog and it sees the dog then it needs the dog. If something visits the bald eagle then the bald eagle is kind. If something visits the dog then the dog visits the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-215_Q9", "context": "Anne is cold. Anne is nice. Anne is white. Charlie is cold. Charlie is furry. Charlie is kind. Charlie is red. Charlie is rough. Fiona is red. Harry is kind. Harry is red. All nice, red people are cold. If Anne is nice and Anne is red then Anne is rough. If Fiona is nice then Fiona is white. If someone is kind and white then they are nice. If someone is furry and kind then they are white. Cold people are rough. If Anne is nice then Anne is white. If Harry is red then Harry is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-879_Q9", "context": "Anne is green. Anne is red. Bob is furry. Bob is white. Erin is big. Erin is white. Fiona is green. All rough, furry people are quiet. All furry people are green. If Fiona is rough and Fiona is red then Fiona is quiet. If someone is white then they are red. If someone is red and green then they are rough. If someone is red then they are big. If someone is red then they are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1002_Q10", "context": "Anne is cold. Charlie is furry. Charlie is young. Erin is cold. Erin is red. Fiona is big. Fiona is kind. Cold people are big. All cold, kind people are young. If Fiona is big and Fiona is red then Fiona is furry. Green, young people are cold. If Fiona is green then Fiona is furry. If someone is furry then they are kind. If Charlie is kind then Charlie is red. Red, young people are green. If Fiona is kind then Fiona is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-752_Q16", "context": "The bear likes the squirrel. The bear sees the dog. The bear sees the squirrel. The dog is nice. The squirrel chases the bear. The squirrel chases the dog. The squirrel is big. The squirrel is green. The squirrel is round. The squirrel likes the dog. The squirrel sees the dog. The squirrel sees the tiger. The tiger chases the bear. The tiger chases the squirrel. The tiger is green. The tiger sees the squirrel. If something chases the bear and the bear is round then the bear chases the squirrel. If something chases the squirrel and it chases the dog then the dog is big. If the squirrel is kind and the squirrel sees the tiger then the squirrel is nice. If something is kind then it chases the squirrel. If something is kind then it likes the squirrel. All big things are kind. If something chases the tiger then it is big. If something chases the bear and the bear chases the dog then the dog chases the bear. If something chases the tiger then the tiger sees the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-623_Q9", "context": "The cow chases the dog. The cow chases the tiger. The cow is young. The dog eats the cow. The dog eats the tiger. The dog is kind. The dog needs the cow. The squirrel is green. The squirrel is young. The squirrel needs the cow. The tiger chases the cow. The tiger chases the squirrel. The tiger eats the squirrel. The tiger is green. The tiger needs the dog. The tiger needs the squirrel. If someone is kind then they chase the cow. If someone eats the dog and they need the cow then the cow needs the tiger. If someone is green and they eat the dog then they need the squirrel. If someone eats the tiger and they are green then they are round. If someone chases the cow then they eat the dog. If someone chases the cow and they chase the dog then they are green. If someone needs the tiger and the tiger chases the squirrel then the squirrel is kind. Round people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-287_Q16", "context": "Bob is big. Bob is cold. Bob is green. Bob is kind. Bob is young. Erin is big. Fiona is big. Fiona is cold. Fiona is kind. Fiona is young. Gary is cold. Gary is red. If someone is green then they are cold. If Bob is young then Bob is kind. All big people are green. All kind, big people are cold. All round people are young. Cold people are green. All green, big people are kind. Cold, big people are round. If someone is young and kind then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-365_Q3", "context": "Bob is nice. Bob is smart. Bob is white. Bob is young. Charlie is furry. Charlie is smart. Dave is blue. Dave is smart. Dave is white. Gary is not furry. If Gary is not smart then Gary is not young. If Charlie is smart then Charlie is not blue. If someone is round then they are nice. If someone is furry and not blue then they are round. If Charlie is nice then Charlie is round. If someone is furry and nice then they are young. If Bob is young and Bob is nice then Bob is not round. If someone is smart and young then they are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-44_Q5", "context": "Anne is furry. Anne is green. Anne is not red. Anne is smart. Anne is white. Bob is blue. Bob is furry. Bob is green. Bob is red. Bob is smart. Gary is red. Harry is cold. Harry is green. Harry is red. Harry is not smart. Harry is white. All red people are white. If someone is cold and blue then they are furry. If someone is blue and cold then they are furry. If someone is white then they are furry. Blue people are green. If Gary is furry then Gary is cold. If someone is green and not white then they are blue. If someone is cold then they are blue. Smart people are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1009_Q20", "context": "Bob is green. Bob is young. Dave is cold. Dave is rough. Erin is young. Gary is green. Gary is smart. All cold, green people are rough. All cold, rough people are young. Rough people are round. If Bob is smart then Bob is big. All green people are smart. All green, smart people are young. If someone is round then they are young. All big people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1036_Q9", "context": "Dave is big. Dave is cold. Dave is furry. Dave is red. Dave is round. Erin is cold. Fiona is furry. Fiona is kind. Fiona is rough. Fiona is round. Harry is cold. Harry is furry. Harry is rough. Harry is round. If something is red and round then it is big. If something is kind then it is round. All furry things are rough. If something is red then it is kind. Big, round things are rough. If Dave is furry then Dave is kind. All round, big things are rough. Big things are red. If something is cold then it is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-381_Q1", "context": "Anne is cold. Fiona is red. Fiona is smart. Fiona is young. Gary is cold. Gary is furry. Gary is kind. Gary is red. Gary is young. Harry is furry. Cold people are red. Rough, red people are furry. All kind people are rough. If someone is red then they are smart. Smart people are kind. All young, red people are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-886_Q4", "context": "Anne is cold. Anne is furry. Anne is green. Anne is kind. Anne is red. Anne is round. Charlie is green. Erin is blue. Erin is furry. Harry is blue. Harry is cold. Harry is furry. Harry is green. Harry is kind. Harry is red. Harry is round. All kind people are red. Red people are kind. All green, red people are kind. If someone is kind and green then they are furry. If someone is red and kind then they are green. Kind, green people are round. If someone is furry and cold then they are red. Kind people are furry. All blue people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-930_Q4", "context": "Bob is furry. Bob is white. Dave is not kind. Dave is nice. Erin is nice. Erin is white. Harry is blue. Harry is cold. Harry is furry. Harry is white. If something is kind then it is not blue. All furry things are white. If Bob is white then Bob is kind. If Harry is white and Harry is quiet then Harry is not cold. If Bob is not blue then Bob is quiet. All cold things are nice. All quiet things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-494_Q8", "context": "The bear needs the cat. The cat is kind. The cat needs the rabbit. The cat does not visit the rabbit. The mouse is blue. The mouse needs the cat. The rabbit is rough. If something is big then it sees the bear. If something visits the cat and it sees the mouse then the mouse sees the bear. If the cat sees the bear then the cat is kind. If something is big and it sees the bear then the bear is rough. All rough things are big. If something is kind and it does not visit the mouse then the mouse is rough. If something visits the cat and the cat visits the rabbit then it needs the cat. If something needs the cat and the cat sees the mouse then the cat does not need the bear. If something is kind and it sees the cat then it is not round.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-981_Q19", "context": "The dog visits the squirrel. The lion is blue. The lion is green. The lion needs the rabbit. The rabbit is blue. The rabbit visits the dog. The squirrel is green. The squirrel is kind. The squirrel is round. The squirrel needs the dog. The squirrel needs the rabbit. If the lion is blue then the lion chases the dog. If something needs the squirrel then it is round. If something visits the lion and the lion needs the dog then the dog needs the lion. If something is green and round then it needs the lion. If the squirrel needs the lion then the squirrel visits the rabbit. If the squirrel chases the lion and the squirrel visits the dog then the squirrel is green. If something is round and it chases the dog then the dog needs the lion. If something needs the dog and it chases the dog then it chases the lion. If something visits the rabbit and it needs the lion then the lion needs the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-73_Q8", "context": "The cat chases the tiger. The cat is cold. The cat is round. The cat needs the tiger. The cat sees the tiger. The cow chases the cat. The dog chases the cat. The dog sees the cow. The tiger is cold. The tiger sees the cat. If someone is cold then they are big. If someone chases the dog and they are big then they see the cow. If someone sees the dog then they are young. If someone sees the cat and they are big then the cat is cold. If someone sees the cow and they see the tiger then the tiger sees the dog. If someone needs the cat then the cat chases the tiger. All rough people are cold. If someone is big then they chase the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not see the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-96_Q9", "context": "Anne is cold. Anne is green. Anne is rough. Dave is big. Dave is cold. Dave is green. Dave is rough. Dave is young. Fiona is big. Fiona is cold. Harry is cold. Harry is kind. Harry is rough. Harry is white. Cold people are rough. All rough, green people are white. Green, white people are kind. If someone is cold then they are rough. Young people are rough. If someone is green and big then they are white. If someone is cold then they are big. If someone is rough and big then they are young. All big, young people are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-601_Q14", "context": "The dog eats the tiger. The lion eats the squirrel. The squirrel eats the dog. The squirrel is kind. The squirrel does not need the tiger. The tiger eats the squirrel. The tiger needs the lion. If the squirrel eats the tiger then the tiger eats the dog. If someone eats the dog then they are young. If someone eats the tiger then they are young. If someone needs the dog and they like the squirrel then they are green. If someone is young then they eat the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-247_Q23", "context": "The bear is blue. The bear needs the squirrel. The bear sees the cat. The cat is rough. The cat needs the bear. The cat needs the rabbit. The rabbit is blue. The rabbit is green. The rabbit is rough. The squirrel is kind. If the cat needs the rabbit and the rabbit is kind then the cat is young. If something is blue then it sees the rabbit. If something sees the rabbit then it is kind. If something is green then it needs the cat. If something needs the rabbit and the rabbit chases the squirrel then it chases the squirrel. If something is young then it sees the rabbit. If something is blue then it chases the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not chase the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-393_Q16", "context": "The bald eagle is big. The bear is red. The bear needs the bald eagle. The bear sees the bald eagle. The bear visits the bald eagle. The dog sees the tiger. The dog visits the bald eagle. The dog visits the tiger. The tiger is red. The tiger needs the bald eagle. The tiger needs the bear. The tiger needs the dog. The tiger sees the bald eagle. The tiger sees the dog. If someone needs the bear then the bear sees the tiger. If someone needs the bald eagle then they are big. If someone is red and they need the tiger then they see the bear. If someone sees the dog then they are blue. If someone is blue and they see the bald eagle then they need the tiger. If someone sees the bear and they are big then they are round. If the tiger is round and the tiger needs the bald eagle then the bald eagle sees the bear. If the dog visits the bear then the bear needs the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear needs the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-886_Q2", "context": "Anne is cold. Anne is furry. Anne is green. Anne is kind. Anne is red. Anne is round. Charlie is green. Erin is blue. Erin is furry. Harry is blue. Harry is cold. Harry is furry. Harry is green. Harry is kind. Harry is red. Harry is round. All kind people are red. Red people are kind. All green, red people are kind. If someone is kind and green then they are furry. If someone is red and kind then they are green. Kind, green people are round. If someone is furry and cold then they are red. Kind people are furry. All blue people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-440_Q7", "context": "The bear eats the tiger. The bear is big. The cat is blue. The cat is nice. The cat does not see the bear. The cat sees the tiger. The cat visits the tiger. The rabbit visits the cat. The tiger is big. The tiger visits the cat. If something is blue and it eats the rabbit then it visits the tiger. If something is big then it visits the rabbit. All big things are nice. If something visits the rabbit and it does not see the bear then the bear is rough. If something eats the bear and it is nice then it is blue. If something is nice then it is rough. If something sees the cat and it sees the tiger then the tiger is big. If something is rough then it visits the cat. If something visits the cat then it eats the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear visits the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-519_Q21", "context": "The bald eagle is blue. The bald eagle is rough. The bald eagle needs the squirrel. The rabbit is not rough. The rabbit is round. The rabbit does not like the squirrel. The rabbit likes the tiger. The rabbit sees the squirrel. The rabbit sees the tiger. The squirrel does not need the rabbit. The squirrel sees the tiger. The tiger is rough. The tiger does not like the rabbit. The tiger does not need the bald eagle. The tiger needs the squirrel. The tiger sees the squirrel. If someone needs the tiger then the tiger is round. All rough, blue people are round. If the bald eagle is round then the bald eagle does not like the tiger. If someone is rough then they are cold. If someone is cold and they see the squirrel then they like the bald eagle. If someone sees the rabbit then the rabbit needs the squirrel. If someone likes the bald eagle and the bald eagle is cold then the bald eagle sees the tiger. If someone likes the tiger then they are blue. If the bald eagle sees the tiger then the bald eagle sees the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not like the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-845_Q7", "context": "Anne is blue. Anne is red. Bob is green. Bob is quiet. Bob is red. Gary is blue. Gary is quiet. Gary is red. Gary is smart. Harry is furry. Harry is smart. If something is red then it is green. All green, kind things are furry. Kind, quiet things are green. Green things are blue. Smart things are kind. If something is kind then it is red. If something is blue then it is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-406_Q6", "context": "Charlie is nice. Charlie is smart. Charlie is young. Dave is big. Dave is nice. Dave is quiet. Dave is round. Dave is young. Gary is round. Harry is round. Harry is smart. If Harry is smart then Harry is young. If someone is nice then they are cold. All cold people are big. All quiet people are cold. If someone is round and big then they are quiet. If someone is round and big then they are young. If someone is young then they are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-139_Q16", "context": "The bald eagle eats the dog. The bald eagle is not young. The bear does not eat the bald eagle. The bear is cold. The bear is green. The bear does not need the bald eagle. The bear needs the dog. The bear sees the bald eagle. The dog is not kind. The squirrel eats the dog. The squirrel is green. The squirrel is red. The squirrel needs the dog. The squirrel sees the bear. If someone sees the bear and the bear is not kind then the bear is not young. If someone eats the dog and they need the bear then the bear needs the squirrel. If someone is cold then they need the bear. If someone sees the bald eagle and the bald eagle is cold then they need the bear. If someone is cold and they need the bear then they eat the squirrel. If someone eats the squirrel then the squirrel is cold. If the dog sees the bald eagle then the dog does not see the squirrel. If the dog sees the squirrel and the squirrel eats the bald eagle then the squirrel sees the bear. If someone needs the bear and they are not cold then the bear does not see the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle eats the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1311_Q7", "context": "Anne is nice. Anne is white. Bob is furry. Charlie is kind. Charlie is rough. Charlie is smart. Dave is white. All white, nice people are rough. All white people are blue. All kind, white people are smart. Furry people are nice. If someone is rough then they are blue. All white people are kind. If Dave is white and Dave is smart then Dave is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-457_Q5", "context": "Bob is big. Bob is blue. Bob is cold. Bob is green. Bob is quiet. Bob is rough. Bob is smart. Charlie is quiet. Erin is big. Fiona is cold. Fiona is smart. If Charlie is blue and Charlie is rough then Charlie is quiet. If Erin is blue and Erin is quiet then Erin is green. All rough, blue people are cold. Smart people are cold. Quiet, cold people are big. All green, smart people are big. If Charlie is quiet then Charlie is smart. If someone is blue and quiet then they are green. Big people are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-315_Q12", "context": "Anne is blue. Anne is red. Anne is round. Anne is smart. Anne is white. Erin is blue. Erin is round. Erin is white. Fiona is blue. Fiona is smart. Gary is green. Gary is round. All blue people are rough. All rough people are red. If someone is blue then they are round. If Gary is round then Gary is blue. All red people are white. White, blue people are smart. All smart, rough people are white. Smart people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-84_Q10", "context": "Bob is blue. Bob is cold. Bob is red. Bob is round. Charlie is big. Charlie is cold. Charlie is furry. Charlie is quiet. Charlie is red. Charlie is round. Erin is blue. Erin is cold. Erin is furry. Erin is quiet. Erin is red. Harry is cold. If Charlie is quiet and Charlie is round then Charlie is blue. Red people are blue. If someone is quiet then they are round. If Bob is round then Bob is red. All big, furry people are quiet. Big people are furry. Cold people are blue. If someone is red and furry then they are round. If Harry is blue then Harry is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-359_Q2", "context": "The bald eagle needs the tiger. The cow needs the tiger. The cow sees the tiger. The cow visits the tiger. The dog is nice. The dog needs the cow. The dog sees the bald eagle. The dog sees the cow. The tiger is blue. The tiger needs the cow. The tiger needs the dog. If someone visits the cow then they are blue. If someone visits the dog then they see the bald eagle. If someone is rough then they visit the bald eagle. If someone is blue then they visit the tiger. If someone needs the dog then the dog is rough. If someone visits the tiger then they visit the bald eagle. If someone visits the bald eagle and the bald eagle sees the tiger then they see the bald eagle. If someone sees the cow then they need the bald eagle. If someone needs the tiger and the tiger visits the bald eagle then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-536_Q20", "context": "The bald eagle chases the cow. The bald eagle eats the tiger. The bald eagle does not like the cat. The cat chases the tiger. The cat eats the bald eagle. The cat likes the bald eagle. The cow does not chase the bald eagle. The cow chases the cat. The cow does not eat the tiger. The tiger chases the cow. The tiger is round. If someone likes the bald eagle then they eat the bald eagle. If someone is green then they like the cat. If the cat chases the cow then the cat is rough. If someone eats the bald eagle then they eat the cow. If someone is big then they chase the cow. If someone is rough and they chase the cow then the cow eats the bald eagle. If the bald eagle does not like the cat then the cat is big.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-44_Q11", "context": "Charlie is blue. Charlie is furry. Erin is cold. Erin is furry. Erin is nice. Erin is smart. Erin is young. Gary is cold. Gary is furry. Gary is smart. Harry is nice. Harry is white. All nice people are smart. Young people are white. All smart people are furry. If someone is young and furry then they are blue. All white, furry people are young. If someone is blue then they are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-51_Q3", "context": "Charlie is big. Charlie is cold. Charlie is furry. Charlie is green. Charlie is not rough. Charlie is not smart. Dave is not big. Dave is cold. Dave is green. Dave is quiet. Erin is smart. Harry is green. All big things are cold. All green things are furry. If something is rough and green then it is furry. Cold things are furry. Smart things are big. Cold, furry things are green. All quiet things are not rough. All furry, cold things are quiet. Green, smart things are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-684_Q12", "context": "Anne is rough. Anne is young. Dave is cold. Erin is not rough. Erin is not young. Fiona is big. Fiona is rough. All young people are cold. If someone is young and quiet then they are big. Cold people are quiet. If Anne is quiet and Anne is cold then Anne is young. All big, rough people are kind. If someone is rough and kind then they are young. All quiet, big people are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-582_Q9", "context": "Anne is blue. Anne is furry. Dave is blue. Dave is furry. Erin is big. Erin is furry. Erin is green. Erin is round. Erin is young. Harry is big. Harry is green. Harry is young. All blue people are young. Blue people are furry. All green people are cold. All green, young people are cold. All young people are green. If someone is cold and not blue then they are green. If someone is cold then they are big. Big people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-204_Q8", "context": "Anne is kind. Charlie is big. Charlie is not kind. Charlie is rough. Erin is nice. Gary is big. Gary is cold. Green things are cold. All kind things are not cold. If something is big and cold then it is young. Big things are green. Rough, nice things are big. Green things are big. Nice things are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-477_Q16", "context": "The bald eagle likes the bear. The bear is kind. The bear likes the bald eagle. The dog chases the bald eagle. The dog is red. The tiger chases the bear. The tiger is round. If something sees the tiger then it chases the bear. If something likes the bear then it likes the bald eagle. If something is kind then it likes the bald eagle. If something is red and it chases the bear then the bear chases the bald eagle. If something sees the dog then it sees the tiger. Red things are round. If something chases the bald eagle then it sees the dog. If the bear chases the bald eagle and the bald eagle does not like the bear then the bear chases the dog. If something likes the dog then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle sees the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-1037_Q1", "context": "The bear eats the mouse. The bear is red. The bear is rough. The bear likes the cat. The bear needs the mouse. The bear needs the tiger. The cat eats the bear. The mouse eats the tiger. The mouse is red. The tiger likes the bear. If something is rough and red then it likes the tiger. If something is red then it likes the cat. If something needs the bear and the bear eats the cat then the cat is rough. If something is round then it needs the cat. If something likes the tiger and it eats the tiger then it is round. If something needs the cat then the cat is round. If the bear eats the mouse and the mouse is red then the mouse likes the tiger. If the cat is round and the cat does not eat the bear then the bear eats the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-31_Q3", "context": "The bald eagle is blue. The bald eagle does not like the tiger. The bald eagle visits the cat. The bald eagle visits the tiger. The cat likes the bald eagle. The cat does not like the tiger. The dog is round. The dog likes the bald eagle. The dog visits the tiger. The tiger is young. The tiger visits the dog. If something needs the cat then the cat is blue. If something likes the cat then it needs the cat. If something needs the bald eagle then it is not rough. If something likes the cat and it does not like the bald eagle then the bald eagle is not rough. If something is blue then it likes the cat. If the tiger visits the cat then the cat does not need the bald eagle. If the bald eagle is not rough and the bald eagle does not need the cat then the cat is not rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle likes the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1174_Q4", "context": "Bob is not green. Bob is round. Charlie is kind. Charlie is round. Fiona is not cold. Fiona is kind. Gary is green. Kind, blue things are not round. If something is quiet and white then it is not round. If Fiona is blue and Fiona is not cold then Fiona is quiet. Blue things are green. If Gary is green then Gary is cold. Green, white things are not kind. If something is quiet and blue then it is white. All cold, green things are quiet. Green, quiet things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-445_Q15", "context": "The bald eagle is nice. The mouse chases the rabbit. The mouse eats the squirrel. The mouse needs the rabbit. The rabbit chases the bald eagle. The rabbit is nice. The rabbit needs the squirrel. The squirrel chases the bald eagle. The squirrel eats the bald eagle. The squirrel eats the mouse. The squirrel needs the mouse. If something eats the bald eagle then it chases the mouse. If something eats the squirrel then the squirrel eats the bald eagle. If something chases the mouse then it eats the rabbit. If the squirrel eats the rabbit then the rabbit eats the bald eagle. If something is cold then it needs the bald eagle. If something is cold then it eats the mouse. If the bald eagle needs the mouse then the bald eagle is cold. If something eats the squirrel and the squirrel needs the mouse then it is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not eat the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-5_Q9", "context": "The bald eagle does not eat the bear. The bald eagle is not green. The bald eagle is not red. The bald eagle is rough. The bald eagle likes the mouse. The bald eagle likes the rabbit. The bald eagle does not need the bear. The bald eagle needs the mouse. The bald eagle does not need the rabbit. The bear likes the rabbit. The mouse eats the bald eagle. The mouse is not red. The mouse does not need the bear. The rabbit is kind. The rabbit does not need the bear. The rabbit does not need the mouse. If someone likes the bear then they need the bald eagle. If someone is rough then they like the rabbit. If someone is nice and they need the bald eagle then they need the bear. If someone likes the mouse then they eat the mouse. If someone eats the mouse then the mouse eats the rabbit. If someone likes the rabbit then the rabbit does not need the mouse. If someone needs the bald eagle then the bald eagle does not like the bear. If someone eats the rabbit then they like the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse needs the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-719_Q1", "context": "The bear sees the dog. The dog eats the mouse. The dog eats the squirrel. The dog is cold. The dog likes the mouse. The dog likes the squirrel. The dog sees the bear. The dog sees the mouse. The mouse eats the squirrel. The mouse sees the dog. The squirrel eats the bear. The squirrel is blue. The squirrel sees the bear. The squirrel sees the dog. If something likes the bear then the bear likes the squirrel. If something likes the bear then the bear is cold. If something eats the dog then the dog likes the bear. If the mouse eats the dog and the mouse sees the dog then the mouse is round. If something is young then it eats the dog. If the squirrel sees the bear and the bear is cold then the bear sees the mouse. If something sees the mouse and it is cold then the mouse is young.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog likes the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-593_Q15", "context": "Charlie is big. Erin is kind. Gary is cold. Gary is furry. Gary is nice. Gary is red. Gary is young. Harry is cold. Harry is furry. Harry is red. All kind people are young. If Erin is young and Erin is big then Erin is red. Cold people are big. All nice, young people are furry. Nice people are cold. All cold people are nice. All cold, nice people are kind. If someone is big then they are cold. Young, big people are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1171_Q2", "context": "Bob is round. Charlie is rough. Charlie is white. Gary is blue. Gary is kind. Gary is smart. Harry is white. All smart, round things are kind. If Harry is rough then Harry is smart. If something is quiet then it is not smart. If something is blue then it is rough. If something is smart then it is round. All white things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-957_Q6", "context": "The lion is nice. The lion needs the tiger. The lion visits the tiger. The mouse does not eat the tiger. The rabbit is green. The rabbit is kind. The rabbit is rough. The tiger is cold. The tiger is kind. The tiger does not visit the rabbit. If something is green and it eats the tiger then the tiger eats the rabbit. If the mouse visits the tiger and the lion does not eat the mouse then the mouse does not visit the lion. If something needs the rabbit then it is cold. If something is rough then it eats the tiger. If something needs the mouse then it needs the rabbit. If something visits the rabbit and the rabbit is cold then it does not visit the tiger. If something eats the rabbit then the rabbit needs the mouse. If something eats the rabbit then the rabbit needs the tiger. If something is kind and it eats the tiger then the tiger visits the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not eat the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1334_Q16", "context": "Anne is cold. Anne is nice. Anne is quiet. Erin is nice. Erin is round. Fiona is kind. Fiona is nice. Fiona is round. Gary is cold. Gary is round. Gary is young. If Anne is kind then Anne is young. Nice people are red. If someone is kind and red then they are round. All nice, young people are red. All nice, young people are quiet. If someone is nice and kind then they are cold. All nice, cold people are young. All kind, cold people are nice. Red people are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-181_Q18", "context": "The bald eagle is green. The bald eagle is kind. The bald eagle is nice. The bald eagle likes the mouse. The cat is young. The cat likes the mouse. The cat likes the squirrel. The cat needs the bald eagle. The mouse eats the squirrel. The mouse needs the squirrel. The squirrel eats the cat. The squirrel eats the mouse. The squirrel is kind. The squirrel likes the cat. The squirrel likes the mouse. The squirrel needs the mouse. If something is green and it eats the bald eagle then it likes the squirrel. If the mouse likes the squirrel and the mouse needs the bald eagle then the mouse is round. If the bald eagle likes the cat and the bald eagle likes the mouse then the bald eagle eats the mouse. If something is green then it eats the bald eagle. If something eats the mouse and it eats the bald eagle then the bald eagle needs the mouse. If something eats the bald eagle then it likes the bald eagle. If something needs the cat then it needs the mouse. If something needs the bald eagle and the bald eagle likes the squirrel then the squirrel is green. If the squirrel is nice then the squirrel likes the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse needs the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-988_Q18", "context": "The bald eagle is big. The bald eagle likes the bear. The bald eagle does not need the bear. The bear is round. The bear visits the cat. The cat does not like the tiger. The cat does not visit the bear. The tiger is nice. The tiger likes the bear. The tiger visits the bald eagle. The tiger visits the cat. If something is big then it needs the bald eagle. If something needs the bald eagle then it is round. If something visits the bald eagle and the bald eagle visits the cat then the cat visits the bald eagle. If something needs the bald eagle and it visits the cat then the bald eagle visits the bear. If something visits the bear then the bear visits the tiger. If something is red and it likes the bear then it visits the cat. If something is round then it visits the cat. If something is red and it visits the tiger then the tiger visits the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-537_Q4", "context": "Erin is kind. Fiona is blue. Fiona is not quiet. Fiona is not white. Gary is quiet. Harry is blue. Harry is not kind. Harry is rough. Harry is round. Harry is white. If Gary is rough and Gary is not kind then Gary is not quiet. All round things are quiet. All quiet things are rough. All round things are rough. All red things are round. All quiet things are blue. Kind things are white. All kind, white things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-265_Q5", "context": "The cat eats the rabbit. The cat is cold. The cat sees the dog. The dog eats the rabbit. The dog eats the tiger. The dog is nice. The dog is rough. The dog sees the cat. The rabbit eats the tiger. The rabbit is red. The tiger eats the dog. The tiger is young. All young things are nice. If something likes the tiger then it eats the cat. If something is nice then it likes the tiger. If the tiger eats the cat and the tiger likes the rabbit then the tiger sees the cat. If something sees the tiger and the tiger likes the dog then it is red. All rough things are red. If something eats the cat then the cat likes the rabbit. If something is rough and it sees the tiger then it likes the dog. If something likes the rabbit then it is young.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger likes the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1035_Q2", "context": "Anne is cold. Anne is kind. Anne is round. Anne is smart. Bob is cold. Bob is round. Bob is smart. Bob is white. Dave is red. Fiona is white. If Dave is red then Dave is smart. If someone is round and rough then they are white. If Bob is cold then Bob is rough. Smart people are cold. All kind people are rough. Cold, red people are kind. All red, kind people are rough. Rough people are cold. If someone is cold then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-557_Q1", "context": "Bob is blue. Bob is furry. Bob is rough. Bob is young. Erin is blue. Erin is nice. Fiona is white. Harry is blue. Harry is rough. Harry is smart. Harry is white. Harry is young. Smart things are nice. All nice, blue things are furry. Blue, nice things are young. If something is white then it is blue. If something is white and young then it is smart. If something is furry then it is nice. If something is blue then it is furry. If something is nice then it is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-719_Q6", "context": "Anne is big. Anne is blue. Anne is cold. Anne is furry. Anne is kind. Anne is nice. Anne is young. Bob is furry. Dave is furry. Harry is big. Harry is blue. Harry is cold. Harry is furry. Harry is kind. Harry is nice. Harry is young. Blue things are young. All cold, young things are blue. Big things are kind. Furry, kind things are cold. Cold things are blue. All young things are big. Furry things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-445_Q12", "context": "Bob is furry. Charlie is furry. Charlie is green. Charlie is nice. Charlie is rough. Charlie is young. Dave is nice. Dave is smart. Harry is green. Harry is rough. If Harry is young and Harry is furry then Harry is quiet. If someone is green and furry then they are nice. Furry, young people are rough. If someone is young then they are nice. All nice, green people are young. If someone is quiet and rough then they are furry. If someone is smart then they are quiet. If someone is rough then they are smart. All smart, furry people are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-247_Q13", "context": "Bob is cold. Bob is furry. Bob is kind. Bob is nice. Bob is white. Bob is young. Charlie is furry. Charlie is nice. Gary is kind. Gary is nice. Harry is blue. If something is white then it is kind. If something is blue and kind then it is young. If something is white then it is nice. If something is kind and white then it is blue. Young things are nice. Blue, kind things are furry. If something is cold then it is white. All cold, furry things are white. Nice things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-792_Q14", "context": "The bald eagle likes the bear. The bear is kind. The bear likes the lion. The bear likes the tiger. The bear sees the bald eagle. The bear visits the tiger. The lion visits the bear. The tiger is cold. The tiger likes the bear. The tiger sees the bald eagle. The tiger visits the bear. If something sees the bear then it is cold. If something visits the bear and it is cold then it likes the lion. If something is cold then it visits the bear. If the tiger is big and the tiger likes the bear then the tiger likes the bald eagle. If something likes the bear then the bear sees the tiger. If something is round then it visits the lion. If the tiger sees the bald eagle and the tiger likes the lion then the bald eagle sees the bear. If something sees the lion then it visits the lion. If something is nice and it sees the bald eagle then the bald eagle is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-1012_Q19", "context": "The bald eagle is young. The bald eagle likes the rabbit. The bald eagle needs the rabbit. The bald eagle does not visit the rabbit. The bald eagle visits the squirrel. The rabbit is green. The rabbit is kind. The squirrel likes the tiger. The tiger visits the bald eagle. The tiger visits the rabbit. If something likes the squirrel then it visits the tiger. If something is round then it does not visit the bald eagle. If something is kind then it visits the bald eagle. If something is green then it likes the squirrel. If the squirrel likes the rabbit then the rabbit needs the tiger. If something visits the tiger then the tiger is green. If something visits the squirrel and the squirrel is round then the squirrel does not visit the bald eagle. If something needs the tiger and the tiger does not visit the bald eagle then the tiger is young. If something is young then it visits the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-489_Q12", "context": "The bald eagle likes the squirrel. The cow eats the squirrel. The cow likes the lion. The cow likes the squirrel. The lion is nice. The squirrel likes the bald eagle. The squirrel visits the lion. If someone eats the squirrel then the squirrel eats the lion. If someone visits the cow and the cow eats the squirrel then the squirrel visits the cow. If someone likes the bald eagle and the bald eagle is blue then the bald eagle is nice. If someone likes the cow then the cow eats the lion. If someone visits the lion and the lion eats the cow then the cow is big. If someone eats the lion and they eat the squirrel then they visit the lion. If someone eats the lion then they like the cow. If someone visits the lion and they eat the squirrel then the lion visits the cow. If someone eats the lion then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not visit the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-44_Q14", "context": "The cat is red. The cat is rough. The cat needs the tiger. The cat visits the cow. The cow is green. The rabbit is kind. The rabbit visits the cat. The rabbit visits the tiger. The tiger visits the cat. The tiger visits the rabbit. If something is rough and green then it likes the tiger. If the rabbit visits the cat then the cat likes the rabbit. If something likes the rabbit then the rabbit likes the tiger. If something likes the rabbit then it is green. If something needs the rabbit then the rabbit needs the cow. If something likes the cow and it visits the cow then the cow visits the cat. If something visits the rabbit then the rabbit needs the cat. If the cat likes the tiger then the cat likes the cow. If something needs the cow then it is big.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-2_Q8", "context": "Charlie is red. Charlie is young. Erin is furry. Fiona is not nice. Fiona is red. Fiona is round. Harry is big. All furry people are nice. If someone is furry then they are not kind. Nice, big people are red. If someone is red and round then they are young. If Harry is big and Harry is nice then Harry is not round. If someone is furry and not kind then they are big. If Fiona is big and Fiona is furry then Fiona is nice. Red, nice people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-120_Q7", "context": "Bob is blue. Bob is cold. Bob is green. Bob is quiet. Bob is rough. Bob is smart. Charlie is blue. Charlie is cold. Charlie is quiet. Charlie is smart. Dave is green. Dave is quiet. Dave is smart. Harry is white. Blue people are green. If someone is white then they are blue. Green people are cold. Rough, white people are quiet. If someone is blue and rough then they are white. If someone is cold then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1065_Q3", "context": "Bob is kind. Dave is blue. Dave is cold. Dave is kind. Dave is round. Dave is smart. Fiona is big. Harry is kind. Harry is smart. Harry is white. If Dave is cold then Dave is big. All white people are cold. Big people are cold. Cold people are round. If someone is round then they are smart. Cold, blue people are kind. All round, smart people are big. Blue people are white. All kind people are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-184_Q3", "context": "The bald eagle is round. The bald eagle sees the cow. The bald eagle sees the tiger. The cow does not chase the squirrel. The squirrel chases the tiger. The squirrel likes the cow. The squirrel likes the tiger. The squirrel sees the bald eagle. The squirrel sees the cow. The tiger chases the cow. The tiger is not rough. If something is kind and it sees the bald eagle then the bald eagle is round. If something chases the cow and it likes the bald eagle then the bald eagle likes the tiger. If something is round then it likes the bald eagle. If something chases the squirrel and it is rough then it is blue. If something is round and it sees the tiger then it is blue. If something is round and it likes the bald eagle then the bald eagle chases the cow. If something likes the tiger and it sees the tiger then the tiger is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle likes the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-102_Q18", "context": "The cow is rough. The cow visits the mouse. The mouse likes the cow. The mouse does not like the squirrel. The rabbit needs the cow. The squirrel is big. The squirrel does not need the cow. If something likes the mouse then the mouse is big. If something likes the cow then the cow is cold. If something needs the rabbit then it does not visit the rabbit. If something needs the rabbit then it does not like the squirrel. If something is green then it likes the mouse. If something is rough and kind then it does not like the cow. If the mouse is not kind and the mouse does not need the squirrel then the mouse visits the cow. If something is big then it is green. If something needs the cow then the cow visits the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit visits the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-470_Q3", "context": "The cat chases the lion. The cat is round. The cat sees the dog. The cat sees the lion. The cat sees the mouse. The cat visits the lion. The dog chases the mouse. The dog is cold. The dog is young. The dog visits the mouse. The lion chases the cat. The lion chases the dog. The lion sees the mouse. The lion visits the cat. The mouse chases the lion. The mouse sees the dog. If the dog sees the mouse then the mouse chases the cat. If something is round then it sees the cat. If the mouse sees the dog then the mouse visits the cat. If something visits the cat and the cat sees the mouse then it chases the cat. If the dog sees the mouse and the mouse chases the lion then the lion visits the dog. If something sees the cat then it is cold. If something chases the cat then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-36_Q10", "context": "Anne is cold. Anne is red. Anne is white. Bob is blue. Bob is cold. Bob is not green. Bob is red. Bob is not smart. Erin is green. Erin is kind. Erin is white. Fiona is blue. If Anne is cold then Anne is red. Red, blue things are cold. All green, kind things are not red. All white, blue things are red. All cold things are not green. Blue things are white. If Anne is green then Anne is not cold. If something is red and not green then it is not smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-452_Q15", "context": "The cat is cold. The cat is green. The cat is kind. The cat is young. The dog chases the cat. The dog is big. The dog needs the lion. The lion eats the cat. The lion eats the mouse. The lion needs the mouse. The mouse chases the dog. The mouse eats the dog. The mouse eats the lion. The mouse is green. The mouse needs the cat. The mouse needs the lion. If something is green and it needs the cat then it is young. If the mouse eats the dog and the mouse is young then the mouse is big. If the lion chases the dog and the dog is cold then the lion eats the cat. If the dog is young and the dog chases the lion then the lion chases the mouse. If something is cold and it eats the mouse then it needs the mouse. If something needs the lion and the lion is big then it chases the dog. If the lion chases the cat then the lion needs the cat. If something is cold and it eats the lion then the lion is big. If something is big then it is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not need the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-527_Q5", "context": "Bob is rough. Charlie is furry. Charlie is quiet. Charlie is round. Dave is blue. Dave is furry. Dave is green. Dave is quiet. Dave is smart. Gary is rough. Gary is round. Gary is smart. If Dave is green then Dave is smart. If someone is rough then they are blue. If Charlie is blue then Charlie is rough. Rough, furry people are round. If someone is rough and green then they are quiet. Smart, green people are furry. All quiet, furry people are round. If someone is rough then they are green. All green, quiet people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-903_Q19", "context": "Anne is red. Bob is blue. Bob is cold. Bob is quiet. Bob is red. Bob is round. Bob is young. Charlie is blue. Charlie is red. Erin is blue. If something is red then it is white. If something is young then it is round. If something is round and blue then it is young. If something is quiet and blue then it is white. If something is cold and quiet then it is round. All red things are white. Cold things are quiet. If something is white then it is cold. If Bob is blue then Bob is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1133_Q11", "context": "Bob is blue. Dave is quiet. Dave is red. Dave is smart. Gary is blue. Gary is green. Gary is quiet. Gary is smart. Harry is green. Harry is quiet. Harry is red. If Bob is quiet and Bob is kind then Bob is smart. All kind things are green. Quiet, red things are kind. If something is green then it is quiet. If Bob is blue then Bob is kind. If Harry is young then Harry is kind. If something is blue then it is young. If something is smart and green then it is blue. All kind, smart things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-595_Q16", "context": "Charlie is rough. Dave is cold. Dave is quiet. Gary is cold. Gary is quiet. Gary is young. Harry is green. Harry is quiet. Harry is rough. Harry is round. Harry is smart. Harry is young. If Gary is green and Gary is young then Gary is rough. Rough people are smart. If Charlie is smart then Charlie is cold. If someone is quiet then they are round. If someone is cold then they are young. All quiet people are round. If someone is young and rough then they are round. If someone is round then they are green. If Gary is young and Gary is round then Gary is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-194_Q7", "context": "Anne is furry. Anne is red. Anne is white. Charlie is red. Dave is white. Fiona is big. Fiona is nice. Nice things are furry. Kind, nice things are white. Red, white things are nice. All red things are kind. If Dave is nice and Dave is big then Dave is red. White things are nice. All white, furry things are red. If something is kind and red then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1022_Q6", "context": "Charlie is not furry. Charlie is smart. Charlie is not white. Charlie is not young. Dave is not white. Fiona is rough. Harry is not furry. All smart things are not cold. If Fiona is rough then Fiona is young. All furry, white things are smart. Young things are furry. Furry, young things are white. If something is young and kind then it is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-424_Q2", "context": "The bald eagle is round. The bald eagle needs the cow. The bear chases the cow. The bear is blue. The bear is cold. The bear needs the tiger. The bear visits the cow. The cow is blue. The tiger chases the bear. The tiger needs the bear. The tiger needs the cow. Big things are young. If something chases the bald eagle and the bald eagle needs the tiger then it is cold. If something visits the tiger then the tiger visits the cow. If something is young and it chases the cow then the cow needs the tiger. If something is blue and it needs the tiger then it is big. If something chases the bald eagle and the bald eagle is round then the bald eagle does not chase the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-921_Q21", "context": "The cat does not eat the squirrel. The cat does not need the dog. The cow is kind. The cow does not see the cat. The cow sees the dog. The dog is big. The dog needs the cat. The dog needs the squirrel. The squirrel eats the dog. The squirrel is kind. The squirrel does not need the cat. The squirrel does not need the cow. If the cow eats the dog then the dog eats the cat. If someone needs the dog then the dog needs the cat. If someone needs the squirrel then the squirrel does not eat the cow. If someone is nice and they need the squirrel then the squirrel eats the cat. If someone sees the squirrel and the squirrel eats the dog then they eat the cat. If someone is round and they do not eat the cow then they eat the cat. If someone eats the cat then the cat is nice. If someone is nice then they see the squirrel. If someone is big then they see the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not see the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-747_Q5", "context": "Dave is big. Erin is blue. Erin is smart. Erin is young. Fiona is nice. Fiona is smart. Harry is smart. Rough things are cold. Smart, young things are rough. If Dave is nice and Dave is big then Dave is young. If Erin is blue and Erin is cold then Erin is smart. Rough, blue things are smart. All big things are nice. If something is big and cold then it is blue. Nice, young things are rough. If something is rough then it is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-675_Q7", "context": "Charlie is blue. Charlie is quiet. Charlie is rough. Dave is rough. Erin is red. Harry is quiet. Harry is red. All red people are round. Kind people are rough. All quiet, blue people are kind. Blue people are kind. Round, red people are blue. If Erin is blue and Erin is rough then Erin is quiet. All smart people are blue. Quiet, smart people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-531_Q3", "context": "The bald eagle chases the cow. The bald eagle is big. The bald eagle is blue. The bald eagle is nice. The bald eagle likes the cow. The bald eagle likes the rabbit. The cow needs the rabbit. The dog needs the bald eagle. The rabbit is blue. The rabbit is cold. The rabbit is nice. If something needs the rabbit and the rabbit likes the dog then the rabbit needs the bald eagle. If something is blue then it chases the cow. If something chases the dog then the dog chases the cow. If something is blue and young then it chases the dog. If something chases the cow and it chases the dog then the cow likes the bald eagle. If something needs the bald eagle then the bald eagle is young. If something likes the bald eagle then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-18_Q7", "context": "The dog chases the rabbit. The dog likes the mouse. The dog likes the rabbit. The mouse is green. The mouse is round. The mouse likes the tiger. The mouse sees the dog. The rabbit chases the mouse. The rabbit is round. The rabbit likes the dog. The tiger chases the mouse. The tiger likes the rabbit. The tiger sees the dog. The tiger sees the rabbit. If someone sees the dog and the dog sees the mouse then the mouse is green. If someone likes the dog then they chase the dog. If someone is round and they see the tiger then the tiger likes the mouse. If the mouse sees the rabbit and the rabbit is green then the mouse chases the tiger. If someone likes the mouse then they like the dog. If someone chases the dog then they see the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog sees the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-918_Q2", "context": "Erin is kind. Erin is nice. Erin is white. Fiona is not blue. Fiona is kind. Fiona is nice. Fiona is not rough. Fiona is round. Gary is not blue. Gary is white. Harry is not green. Harry is nice. Harry is round. Harry is not white. If Harry is white then Harry is not kind. If something is rough then it is not round. If something is white and not blue then it is rough. If something is rough and not round then it is nice. If something is nice and not white then it is kind. All nice, white things are kind. If something is blue and rough then it is green. Kind things are not green. If something is round and not kind then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-252_Q19", "context": "The bald eagle is rough. The bald eagle is round. The bald eagle likes the mouse. The bald eagle sees the mouse. The bald eagle sees the squirrel. The bald eagle sees the tiger. The bald eagle visits the tiger. The mouse likes the tiger. The mouse sees the bald eagle. The squirrel is cold. The squirrel sees the bald eagle. The squirrel sees the tiger. The squirrel visits the bald eagle. The tiger is cold. Round things are nice. If something sees the squirrel and it visits the mouse then it visits the squirrel. If something is young then it is round. If something likes the tiger then it visits the mouse. If something is nice then it likes the squirrel. If something visits the bald eagle and it is round then the bald eagle sees the squirrel. If something is rough and it likes the squirrel then the squirrel is young. If something likes the mouse then it likes the bald eagle. Rough things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not like the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-239_Q15", "context": "The bald eagle sees the bear. The bald eagle visits the bear. The bald eagle does not visit the dog. The bald eagle visits the squirrel. The bear is rough. The bear likes the bald eagle. The bear likes the dog. The bear likes the squirrel. The bear visits the bald eagle. The dog likes the bald eagle. The dog sees the bald eagle. The dog does not see the bear. The dog sees the squirrel. The dog visits the bear. The squirrel is cold. The squirrel is green. If someone sees the squirrel then they like the bear. If someone likes the bear then they are cold. If the bald eagle likes the bear and the bear is green then the bald eagle likes the squirrel. Kind people are big. If the dog sees the bald eagle then the bald eagle sees the bear. If someone sees the dog then they see the squirrel. If someone is cold then they do not see the dog. If someone sees the bald eagle and they do not see the dog then the dog is big. Big people are not rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not like the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-796_Q15", "context": "Anne is green. Anne is quiet. Anne is round. Bob is green. Bob is quiet. Charlie is cold. Erin is smart. All smart, round people are cold. Cold, smart people are white. White, smart people are rough. If Erin is rough then Erin is green. All cold people are smart. Green people are cold. If Erin is quiet and Erin is round then Erin is rough. If Anne is cold and Anne is green then Anne is rough. Rough, green people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-441_Q7", "context": "Anne is big. Anne is not white. Fiona is nice. Fiona is young. Gary is big. Harry is big. Harry is furry. Harry is kind. Harry is rough. Harry is young. All rough things are young. All rough things are furry. All kind, furry things are not white. All young, big things are kind. All young, nice things are kind. If something is kind then it is rough. If something is nice and big then it is rough. Big things are nice. If Anne is not big then Anne is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-723_Q22", "context": "The bald eagle eats the cow. The cow eats the bald eagle. The cow is red. The dog does not eat the bald eagle. The dog does not eat the squirrel. The dog is green. The dog is red. The dog does not need the cow. The squirrel eats the dog. The squirrel is red. If something eats the cow then it likes the cow. If something likes the squirrel then the squirrel does not need the cow. If the dog likes the cow and the dog needs the squirrel then the squirrel does not need the cow. If something eats the squirrel then the squirrel eats the cow. If something likes the cow then it eats the squirrel. If something eats the dog then it needs the squirrel. If the squirrel likes the cow then the cow needs the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle likes the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-429_Q23", "context": "The cat is blue. The cat likes the dog. The cat does not need the cow. The cat needs the rabbit. The cow needs the dog. The cow needs the rabbit. The dog chases the rabbit. The dog needs the cat. The rabbit does not chase the cat. The rabbit chases the dog. The rabbit needs the cat. If the rabbit chases the dog and the dog needs the cow then the dog chases the cow. If someone needs the cow then the cow likes the dog. If someone is round and they chase the rabbit then the rabbit likes the cat. If someone is blue then they chase the cow. If someone likes the rabbit then they chase the rabbit. If someone chases the cow then the cow is round. If the cat likes the dog then the dog does not need the cow. If someone chases the rabbit then they need the rabbit. If the cow is round then the cow likes the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-964_Q24", "context": "Dave is nice. Fiona is cold. Fiona is nice. Gary is cold. Gary is red. Gary is rough. Harry is nice. If someone is rough then they are red. If someone is green and kind then they are red. If someone is white and not cold then they are red. If Fiona is nice and Fiona is green then Fiona is kind. If Dave is rough then Dave is red. If someone is red and kind then they are rough. If someone is red and rough then they are white. All cold people are green. If Gary is nice then Gary is not rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-400_Q8", "context": "Anne is round. Dave is kind. Dave is white. Fiona is kind. Fiona is white. Harry is not big. Harry is green. White things are green. Green things are not big. If something is round then it is white. If Dave is white and Dave is round then Dave is green. If something is white and kind then it is furry. If something is round and not big then it is kind. If something is round and not furry then it is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-483_Q4", "context": "Bob is big. Bob is kind. Bob is nice. Bob is rough. Bob is round. Bob is young. Charlie is big. Erin is nice. Gary is big. Gary is furry. Gary is kind. Gary is nice. Gary is rough. Gary is round. All round things are young. All round things are nice. If something is young then it is kind. All big, kind things are nice. All rough things are young. If something is big and nice then it is kind. Big things are rough. Rough, nice things are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1252_Q10", "context": "Bob is big. Bob is furry. Bob is green. Bob is red. Charlie is big. Charlie is furry. Dave is cold. Dave is furry. Dave is nice. Dave is red. Dave is round. Fiona is green. Furry, red things are round. Furry things are big. Green things are furry. All cold, big things are red. Round, red things are cold. Cold, round things are nice. All green things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1186_Q11", "context": "Anne is not furry. Anne is not red. Charlie is smart. Charlie is young. Dave is furry. Dave is young. Gary is cold. All kind, green things are cold. All kind, young things are green. If something is furry and red then it is green. Furry things are green. All young things are kind. If something is cold then it is red. If something is kind then it is young. Red, kind things are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-23_Q16", "context": "Dave is big. Dave is blue. Fiona is big. Fiona is kind. Fiona is young. Gary is kind. Harry is big. Harry is kind. Harry is quiet. Harry is rough. Harry is white. Harry is young. If Harry is blue then Harry is big. If Gary is big then Gary is white. Quiet things are rough. If Fiona is kind and Fiona is big then Fiona is young. Rough, blue things are quiet. If something is blue then it is kind. If something is blue and rough then it is white. Blue, white things are young. If something is big and kind then it is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-172_Q7", "context": "Anne is furry. Anne is kind. Dave is white. Erin is big. Erin is not furry. Erin is rough. Gary is green. Green things are rough. All white things are red. Rough, big things are red. Green, big things are red. If something is kind then it is white. If something is red then it is big. If Anne is big and Anne is kind then Anne is green. If something is kind and not white then it is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-378_Q8", "context": "Anne is quiet. Bob is big. Bob is kind. Charlie is blue. Harry is cold. Harry is furry. Harry is rough. Furry things are quiet. Quiet, rough things are kind. If something is blue and cold then it is big. Big, quiet things are furry. Cold, kind things are rough. Cold things are quiet. If something is blue then it is cold. If something is blue and big then it is quiet. All furry things are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-682_Q8", "context": "Bob is rough. Dave is blue. Dave is rough. Dave is round. Fiona is blue. Fiona is nice. Fiona is red. Fiona is rough. Fiona is round. Gary is blue. If someone is blue then they are rough. All red people are smart. If someone is smart then they are round. If someone is blue and red then they are young. Young people are red. If someone is rough then they are young. If Fiona is red then Fiona is round. Young, round people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1022_Q8", "context": "Charlie is not furry. Charlie is smart. Charlie is not white. Charlie is not young. Dave is not white. Fiona is rough. Harry is not furry. All smart things are not cold. If Fiona is rough then Fiona is young. All furry, white things are smart. Young things are furry. Furry, young things are white. If something is young and kind then it is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-688_Q8", "context": "Anne is smart. Bob is blue. Bob is green. Bob is nice. Fiona is green. Gary is big. Gary is not smart. Smart, blue things are young. All young, blue things are big. If something is nice and not green then it is kind. If something is big then it is kind. Green things are smart. Smart things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-968_Q23", "context": "Charlie is young. Erin is not white. Erin is young. Gary is rough. Gary is young. Harry is green. Harry is young. All green people are cold. If someone is cold then they are not kind. If Harry is rough then Harry is white. If Harry is not kind then Harry is rough. All white, green people are red. If someone is white and not rough then they are young. All green, red people are young. Green people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-240_Q12", "context": "Anne is young. Bob is furry. Bob is kind. Charlie is not furry. Charlie is green. Fiona is cold. Fiona is green. Fiona is quiet. Fiona is rough. Fiona is young. All rough, kind people are furry. If someone is kind then they are furry. If someone is rough and young then they are kind. All young, furry people are cold. All young people are green. All quiet, furry people are rough. All green people are rough. If someone is rough and kind then they are quiet. If someone is furry and rough then they are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1196_Q13", "context": "Anne is green. Anne is kind. Anne is rough. Anne is smart. Anne is white. Charlie is green. Charlie is white. Gary is quiet. Gary is smart. Harry is green. Harry is kind. Harry is quiet. Harry is smart. Harry is white. All kind people are rough. All young, green people are kind. If someone is quiet then they are young. Young, rough people are white. If Charlie is young then Charlie is smart. Kind, white people are green. If Anne is smart then Anne is rough. If someone is young then they are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-745_Q2", "context": "Bob is nice. Bob is red. Bob is smart. Dave is red. Dave is white. Fiona is nice. Gary is nice. If someone is smart and red then they are nice. Red people are big. Nice people are green. Nice, big people are white. If someone is red and rough then they are smart. All green, rough people are white. All big people are red. If Fiona is white then Fiona is rough. If someone is nice then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-189_Q4", "context": "Anne is blue. Anne is not round. Bob is green. Bob is red. Charlie is blue. Charlie is smart. Fiona is not round. Blue, smart people are red. If someone is smart then they are red. Round people are cold. Green people are quiet. If someone is cold and blue then they are green. If someone is quiet and blue then they are smart. Red people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-72_Q2", "context": "The bald eagle visits the cow. The cat is rough. The cat needs the bald eagle. The cow is big. The cow is nice. The cow is not rough. The dog visits the cat. If someone chases the bald eagle and the bald eagle needs the cat then they do not visit the cat. If someone needs the dog then they are blue. If the cow does not visit the dog then the cow needs the dog. If someone visits the bald eagle then the bald eagle does not visit the dog. If someone is big and rough then they chase the bald eagle. If someone is blue then they do not chase the bald eagle. If someone visits the cow then they need the dog. If someone needs the bald eagle and the bald eagle is blue then they need the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-9_Q8", "context": "The bear sees the tiger. The bear visits the rabbit. The cat sees the bear. The rabbit needs the bear. The tiger is rough. The tiger needs the cat. The tiger needs the rabbit. If something sees the bear then it is kind. If something visits the tiger and it is green then the tiger sees the cat. If the tiger visits the bear then the tiger is round. If something is round and it visits the cat then the cat is kind. If something visits the tiger then the tiger needs the rabbit. If something is round and it sees the bear then the bear is rough. If something visits the tiger and the tiger visits the cat then the tiger sees the rabbit. All kind things are round. If something is rough then it is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1139_Q15", "context": "Erin is kind. Erin is red. Erin is rough. Fiona is big. Fiona is blue. Fiona is green. Fiona is kind. Gary is green. Gary is kind. Gary is rough. Harry is big. Kind people are rough. If Erin is big then Erin is red. If Fiona is nice then Fiona is kind. All red, big people are nice. Big people are kind. If someone is blue and big then they are kind. Rough people are blue. All nice, blue people are red. If someone is blue then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-864_Q11", "context": "The lion is nice. The lion likes the tiger. The mouse chases the lion. The mouse is blue. The mouse is cold. The mouse likes the tiger. The squirrel chases the mouse. The squirrel chases the tiger. The squirrel is blue. The squirrel likes the lion. The squirrel likes the mouse. The squirrel visits the tiger. The tiger chases the lion. The tiger is nice. If someone likes the mouse and they like the squirrel then they are cold. If someone chases the mouse and they like the lion then they chase the squirrel. If someone likes the tiger and the tiger visits the mouse then the mouse is young. If the lion is blue then the lion is nice. If someone chases the lion and the lion likes the squirrel then the lion likes the mouse. If someone is kind and they like the mouse then the mouse chases the squirrel. If someone chases the squirrel then they like the squirrel. If someone visits the tiger then the tiger is blue. If someone likes the squirrel then the squirrel is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse likes the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-791_Q20", "context": "The bear is young. The bear likes the cow. The bear likes the rabbit. The bear visits the cow. The cow is blue. The cow likes the lion. The lion is blue. The rabbit eats the bear. The rabbit likes the bear. The rabbit likes the lion. If someone eats the cow then the cow visits the rabbit. If someone likes the bear then the bear visits the rabbit. If the bear visits the rabbit then the rabbit eats the cow. If someone visits the rabbit and the rabbit is round then they eat the rabbit. If someone visits the rabbit then they are rough. If someone is rough then they eat the rabbit. If the rabbit visits the lion and the rabbit is young then the lion visits the cow. If someone is young then they visit the cow. If someone eats the bear then the bear is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear eats the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-36_Q17", "context": "The bald eagle visits the squirrel. The bear is big. The bear likes the cat. The cat eats the bear. The cat likes the bald eagle. The squirrel likes the bear. The squirrel visits the bald eagle. If someone likes the bald eagle then the bald eagle visits the bear. If someone is blue and they eat the bald eagle then they are red. If someone visits the bear and they like the bear then the bear is blue. If someone is round then they are rough. If someone visits the bear and they visit the squirrel then the squirrel visits the bear. If someone visits the cat then the cat is big. If someone is blue then they are round. If someone is big and they eat the cat then the cat is big.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-737_Q4", "context": "The cat is big. The cat needs the tiger. The cat sees the dog. The dog is rough. The mouse needs the tiger. The tiger is blue. The tiger sees the mouse. If the cat is blue then the cat is kind. If something is big and kind then it visits the cat. If something is round then it sees the mouse. If something is blue then it needs the dog. If something is big then it is round. If the tiger visits the dog then the tiger visits the mouse. If something is round and it sees the mouse then the mouse is big. If something sees the tiger then the tiger needs the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not need the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-744_Q17", "context": "Anne is blue. Anne is not red. Anne is young. Bob is young. Erin is not red. Fiona is blue. Fiona is nice. If someone is red and blue then they are big. If someone is nice then they are big. All blue, young people are cold. Red, nice people are not cold. If Erin is big and Erin is blue then Erin is nice. All cold, blue people are not red. Red people are nice. If someone is blue and big then they are young. If someone is big and not red then they are not smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-441_Q10", "context": "The cow chases the tiger. The cow sees the tiger. The dog is round. The mouse chases the tiger. The mouse is big. The mouse is green. The mouse likes the tiger. The tiger is round. The tiger likes the dog. The tiger likes the mouse. The tiger sees the dog. If something is nice and it chases the cow then the cow likes the dog. If something sees the dog and the dog is green then it sees the cow. If the mouse likes the tiger then the tiger chases the cow. If the tiger chases the cow then the cow is green. If something is green then it chases the dog. If something chases the dog then it is cold. If something sees the mouse then the mouse is round. If something is cold and it sees the tiger then it is nice. If something sees the mouse and the mouse sees the tiger then the mouse likes the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-830_Q6", "context": "Dave is green. Dave is red. Erin is not green. Gary is not red. Harry is nice. Harry is red. Harry is rough. All red people are nice. Rough, green people are nice. All blue people are nice. All big, green people are smart. Blue, red people are big. Smart, red people are rough. If someone is red and nice then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-973_Q13", "context": "The bald eagle chases the mouse. The bald eagle eats the cat. The bald eagle is not nice. The bald eagle is round. The bald eagle is young. The cat is red. The mouse eats the cat. The rabbit eats the bald eagle. The rabbit eats the mouse. The rabbit is kind. The rabbit is round. The rabbit visits the cat. If something visits the rabbit and the rabbit visits the cat then the cat is round. If something visits the bald eagle and the bald eagle chases the mouse then it visits the rabbit. If something eats the cat then the cat is not kind. If something chases the bald eagle and it visits the bald eagle then the bald eagle does not eat the cat. If the mouse is not young then the mouse does not eat the bald eagle. If something is round then it visits the bald eagle. If the bald eagle is young then the bald eagle chases the rabbit. If something is red and not round then it eats the bald eagle. If something is young then it does not eat the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not visit the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1083_Q16", "context": "Charlie is nice. Charlie is red. Fiona is round. Fiona is white. Gary is round. Harry is red. Harry is rough. All round, red things are nice. Nice, kind things are red. If something is round then it is kind. If something is rough and red then it is young. If something is white then it is round. All nice, red things are rough. Young, white things are round. All kind things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-964_Q23", "context": "Dave is nice. Fiona is cold. Fiona is nice. Gary is cold. Gary is red. Gary is rough. Harry is nice. If someone is rough then they are red. If someone is green and kind then they are red. If someone is white and not cold then they are red. If Fiona is nice and Fiona is green then Fiona is kind. If Dave is rough then Dave is red. If someone is red and kind then they are rough. If someone is red and rough then they are white. All cold people are green. If Gary is nice then Gary is not rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-374_Q23", "context": "The cat chases the mouse. The cat chases the rabbit. The cat is rough. The cow likes the rabbit. The mouse chases the cow. The mouse is round. The mouse likes the cat. The mouse likes the rabbit. The rabbit chases the cow. The rabbit eats the mouse. The rabbit likes the mouse. If something is rough and it likes the mouse then the mouse chases the rabbit. If the rabbit eats the cow and the rabbit is kind then the cow likes the cat. If something is red then it is young. If something is young then it likes the cow. If something chases the cat and it is round then it is red. If something is rough then it eats the cat. If something is round then it chases the cat. If something likes the cow then it chases the mouse. If something likes the rabbit and the rabbit is kind then it chases the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-282_Q17", "context": "The bald eagle chases the rabbit. The bald eagle is cold. The bald eagle is nice. The bald eagle is not round. The bald eagle is young. The bald eagle sees the rabbit. The bear is blue. The bear does not see the bald eagle. The dog chases the bear. The dog does not chase the rabbit. The dog eats the rabbit. The dog is blue. The dog is young. The dog sees the bald eagle. The rabbit chases the dog. The rabbit sees the bear. If something eats the rabbit and it sees the bear then the rabbit is round. If something is round then it is not blue. If something eats the bear and the bear does not see the rabbit then it is blue. Blue things are young. If something sees the bear and it eats the bald eagle then it eats the rabbit. If something chases the dog then it sees the bald eagle. If the rabbit eats the bald eagle then the bald eagle chases the rabbit. If something sees the bald eagle then it eats the bald eagle. If something is round and it chases the rabbit then the rabbit chases the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not see the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-322_Q8", "context": "The bear chases the rabbit. The cat needs the rabbit. The dog chases the cat. The dog is big. The dog is cold. The rabbit eats the cat. The rabbit does not need the cat. If something eats the bear then it eats the rabbit. If something eats the dog then it chases the bear. If something chases the bear then the bear needs the rabbit. If something needs the rabbit then it eats the dog. If something is big and it eats the dog then it does not chase the dog. If the rabbit chases the bear then the rabbit needs the dog. If something is cold and not big then it does not eat the bear. If the bear chases the cat and the bear chases the dog then the dog does not need the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not need the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-315_Q12", "context": "The bear chases the mouse. The bear eats the tiger. The bear needs the mouse. The dog does not chase the bear. The dog does not eat the bear. The dog needs the tiger. The mouse does not chase the bear. The mouse eats the dog. The mouse eats the tiger. The mouse is blue. The mouse is cold. The tiger does not eat the mouse. The tiger is cold. The tiger needs the dog. If something needs the bear then the bear is cold. If something is cold then it is red. If something eats the tiger and it needs the bear then the tiger does not eat the dog. If something eats the bear and the bear is kind then it does not eat the dog. If the mouse chases the bear then the mouse eats the dog. If the tiger chases the dog then the tiger eats the bear. If something is red then it needs the bear. If something chases the mouse then the mouse eats the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not need the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-996_Q2", "context": "The cat chases the lion. The cat is blue. The cat needs the lion. The cat needs the rabbit. The cow is green. The cow needs the cat. The lion is green. The lion likes the rabbit. The rabbit chases the cow. The rabbit likes the lion. The rabbit needs the cow. The rabbit needs the lion. If someone is green and they like the lion then they chase the cat. If someone likes the lion then the lion is red. If someone likes the lion and they need the rabbit then they chase the cow. If someone needs the rabbit and the rabbit likes the lion then the lion is blue. If someone needs the cat then they like the rabbit. If someone chases the cat then they are nice. If someone is nice then they need the rabbit. If someone is red then they like the lion. If someone is blue and green then they like the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not chase the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-231_Q11", "context": "The bald eagle is kind. The bald eagle likes the rabbit. The bald eagle needs the rabbit. The cat is rough. The cat likes the rabbit. The rabbit likes the tiger. The rabbit needs the bald eagle. The rabbit needs the tiger. The rabbit sees the bald eagle. The rabbit sees the tiger. The tiger is nice. The tiger is rough. The tiger needs the cat. The tiger sees the rabbit. If the cat sees the tiger then the cat is nice. If something is rough and it likes the rabbit then it needs the tiger. If something is nice then it needs the cat. If the rabbit needs the cat then the cat sees the tiger. If something sees the tiger then it is nice. If the cat is kind then the cat is red. If something is rough and it sees the cat then the cat is red.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat needs the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-402_Q13", "context": "Anne is big. Dave is blue. Erin is not furry. Fiona is big. Fiona is furry. Fiona is kind. Fiona is quiet. All blue, quiet things are green. Blue, furry things are green. If something is green and young then it is not quiet. Green, young things are not quiet. Kind, blue things are furry. If something is kind then it is furry. If something is blue and big then it is kind. Blue things are kind. Furry, green things are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1318_Q13", "context": "Anne is blue. Anne is rough. Anne is smart. Bob is blue. Bob is cold. Bob is nice. Gary is nice. Harry is big. Harry is blue. Harry is cold. Harry is nice. Harry is red. Harry is rough. Harry is smart. Cold, blue people are rough. All smart, nice people are blue. All nice, blue people are cold. If someone is nice then they are big. Red people are smart. All nice, red people are smart. All big, blue people are cold. If someone is big and nice then they are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-333_Q5", "context": "The bear visits the cow. The bear visits the rabbit. The cow does not visit the rabbit. The rabbit chases the bear. The rabbit chases the tiger. The tiger is blue. The tiger is young. If something is blue and it does not like the cow then the cow visits the tiger. If something visits the bear then the bear chases the cow. If something chases the cow then the cow is nice. If something visits the tiger then it likes the bear. If something likes the tiger then it does not like the bear. All nice things are blue. If something is blue then it visits the bear. If the bear is kind and the bear likes the rabbit then the rabbit is young. If something likes the cow and it is blue then it is not cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear chases the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-951_Q12", "context": "The bear is nice. The cow eats the squirrel. The cow is green. The mouse eats the bear. The squirrel is not green. The squirrel is nice. The squirrel needs the cow. If someone is round then they do not like the cow. If someone likes the squirrel and the squirrel needs the cow then the cow is nice. If someone is nice then they need the squirrel. If someone likes the mouse then they need the squirrel. If someone eats the cow and the cow needs the bear then they are not green. If someone likes the squirrel then they eat the mouse. If someone likes the squirrel and the squirrel needs the mouse then the squirrel is not green. If someone needs the squirrel then they like the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not like the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-458_Q16", "context": "The bald eagle chases the lion. The bald eagle is blue. The bald eagle is rough. The bald eagle needs the lion. The bald eagle sees the squirrel. The cow chases the lion. The cow chases the squirrel. The cow is blue. The cow is rough. The cow needs the squirrel. The lion is blue. The lion needs the cow. The lion sees the squirrel. The squirrel chases the cow. The squirrel is kind. The squirrel is round. If something sees the bald eagle and it needs the squirrel then it is kind. If the cow sees the squirrel and the cow needs the bald eagle then the squirrel sees the bald eagle. If the cow sees the bald eagle and the bald eagle is nice then the cow needs the lion. If something sees the bald eagle then the bald eagle is nice. If something needs the bald eagle then the bald eagle sees the cow. If something chases the cow and it needs the cow then it sees the squirrel. If something needs the cow and it is rough then it sees the lion. If something sees the cow then the cow sees the squirrel. If something is blue then it needs the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-117_Q17", "context": "The cow is green. The cow is nice. The cow is red. The cow is round. The cow sees the tiger. The lion sees the tiger. The squirrel eats the cow. The squirrel is nice. The squirrel sees the tiger. The tiger chases the squirrel. If something sees the squirrel then it sees the cow. If something is nice then it sees the squirrel. If the squirrel chases the cow and the cow is round then the cow sees the squirrel. If something chases the cow and the cow sees the tiger then the tiger sees the lion. If something sees the cow then it chases the lion. If something sees the tiger then the tiger sees the lion. If something chases the lion then the lion sees the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not see the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-523_Q15", "context": "The bear chases the tiger. The bear visits the tiger. The cow chases the bear. The cow does not chase the tiger. The cow sees the dog. The cow visits the dog. The dog is cold. The dog sees the bear. The dog sees the tiger. The tiger is round. The tiger sees the cow. The tiger visits the dog. If something chases the cow then it is cold. If something is rough then it sees the tiger. If something sees the bear and the bear sees the tiger then the tiger sees the dog. If something visits the dog then it is rough. If something visits the bear then it is rough. If something chases the bear and it is not round then the bear chases the dog. If something chases the tiger and the tiger is rough then it visits the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1259_Q4", "context": "Bob is round. Erin is blue. Erin is green. Erin is nice. Fiona is blue. Fiona is green. Fiona is nice. Harry is cold. Harry is nice. Harry is white. Harry is young. All nice things are cold. All nice things are blue. All round, green things are young. Cold, blue things are young. Cold, white things are green. All nice things are cold. All round things are nice. Young things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-20_Q24", "context": "The cat is green. The cow is young. The cow likes the lion. The cow needs the cat. The dog sees the lion. The lion needs the cow. The lion sees the cat. If someone likes the lion then they like the dog. If someone is young then they like the cow. If the cow is young and the cow sees the dog then the dog is young. If someone likes the cow then they see the dog. If someone sees the cat then the cat is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog sees the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1138_Q12", "context": "Anne is blue. Anne is furry. Anne is round. Bob is cold. Bob is young. Erin is blue. Erin is cold. Erin is furry. Erin is rough. Erin is round. Gary is green. Gary is round. If someone is blue and round then they are rough. If someone is green and rough then they are furry. Young people are green. All blue, cold people are rough. Furry, green people are blue. Cold, green people are blue. If someone is furry and young then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-98_Q3", "context": "The bald eagle is green. The bald eagle likes the cow. The bald eagle needs the mouse. The cat is green. The cat needs the bald eagle. The cat needs the mouse. The cow eats the cat. The cow eats the mouse. The cow is cold. The cow is green. The cow is nice. The cow likes the cat. The mouse eats the bald eagle. The mouse likes the cow. The mouse needs the bald eagle. The mouse needs the cat. If someone needs the bald eagle then the bald eagle needs the cow. If someone needs the cat and they eat the bald eagle then they are nice. If someone needs the mouse and the mouse is nice then they are red. If someone needs the bald eagle and the bald eagle is cold then they eat the cow. If someone eats the cow then they eat the bald eagle. If someone likes the bald eagle and they are green then the bald eagle eats the mouse. If someone needs the bald eagle and they like the cow then the bald eagle is green. All red people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle needs the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-509_Q13", "context": "The cow visits the dog. The dog needs the cow. The dog needs the tiger. The dog sees the cow. The dog sees the tiger. The dog visits the cow. The mouse needs the cow. The mouse needs the dog. The tiger is big. The tiger is blue. The tiger visits the mouse. If someone is nice then they see the dog. If someone is big and they need the tiger then the tiger sees the mouse. If someone is green and big then they are nice. If someone is blue then they need the tiger. If someone is green then they visit the cow. If someone sees the mouse then they are green. If someone is green then they see the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-794_Q1", "context": "The dog eats the mouse. The dog is kind. The dog is nice. The dog likes the tiger. The lion eats the mouse. The lion is red. The mouse chases the dog. The mouse chases the lion. The mouse chases the tiger. The mouse eats the dog. The mouse is nice. The mouse is rough. The mouse likes the lion. The tiger eats the mouse. The tiger is rough. The tiger likes the dog. If someone chases the tiger and they are red then they eat the tiger. If someone chases the dog then the dog is kind. If someone eats the dog then they eat the mouse. If someone eats the tiger then they like the tiger. If the mouse eats the lion then the mouse is red. If someone is nice and they like the tiger then they chase the tiger. If the mouse likes the tiger then the tiger eats the dog. If someone eats the mouse then they chase the dog. If someone likes the lion and the lion chases the dog then they eat the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger eats the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-920_Q10", "context": "Anne is kind. Anne is nice. Anne is round. Bob is big. Bob is kind. Bob is red. Charlie is blue. Charlie is kind. Charlie is nice. Charlie is red. Dave is red. If someone is white and kind then they are big. If someone is red then they are nice. Nice people are kind. If someone is white then they are kind. If Bob is red then Bob is nice. If Bob is blue then Bob is red. If someone is nice and kind then they are white. All big, white people are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-759_Q20", "context": "The cow is round. The cow is young. The cow needs the squirrel. The cow sees the dog. The dog is round. The dog likes the cow. The dog sees the squirrel. The squirrel is red. The squirrel needs the tiger. The squirrel sees the dog. The tiger is red. The tiger likes the cow. The tiger needs the cow. The tiger needs the dog. The tiger sees the cow. The tiger sees the squirrel. If someone is round then they are young. If someone needs the cow then they like the cow. If someone likes the tiger and the tiger likes the squirrel then they like the dog. If someone is round and they see the squirrel then they see the cow. If someone is young and they need the cow then the cow is nice. If someone is round and they see the squirrel then the squirrel needs the cow. If someone sees the tiger and the tiger likes the squirrel then the tiger is young. If the squirrel likes the cow then the squirrel is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger needs the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-733_Q17", "context": "Anne is quiet. Anne is smart. Anne is young. Bob is furry. Bob is green. Charlie is nice. Fiona is furry. Fiona is green. Fiona is rough. Fiona is smart. Fiona is young. If something is green and rough then it is smart. If something is nice and not green then it is young. If something is smart and rough then it is young. If something is nice then it is not furry. If Anne is green and Anne is young then Anne is not nice. All young, green things are not nice. All green things are rough. If Bob is not nice then Bob is not quiet. If Anne is young and Anne is not nice then Anne is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-406_Q3", "context": "Anne is not cold. Bob is quiet. Bob is rough. Bob is white. Dave is cold. Dave is quiet. Fiona is cold. Fiona is kind. Fiona is nice. Fiona is rough. All quiet, kind people are white. Quiet, blue people are kind. If someone is white and cold then they are kind. All quiet people are blue. If someone is white then they are rough. If someone is rough then they are nice. If someone is cold and not quiet then they are nice. If someone is blue and not rough then they are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-679_Q5", "context": "Anne is smart. Bob is round. Fiona is young. Harry is blue. Harry is nice. Harry is round. Harry is young. If someone is smart and young then they are furry. If someone is round then they are blue. If someone is round and blue then they are smart. Furry, smart people are round. Smart, furry people are young. If someone is smart then they are young. All furry, round people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-873_Q4", "context": "Anne is nice. Anne is round. Anne is white. Bob is furry. Bob is white. Erin is big. Erin is furry. Erin is round. Erin is white. Erin is young. Gary is kind. Gary is young. If something is young then it is kind. If Gary is young then Gary is nice. If something is young and nice then it is kind. All furry things are big. All kind things are round. If something is nice and big then it is young. Big things are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-846_Q3", "context": "The bald eagle is round. The bald eagle likes the tiger. The cat likes the bald eagle. The cat likes the mouse. The mouse eats the bald eagle. The mouse visits the cat. The tiger visits the cat. If someone eats the bald eagle then they are rough. If someone is round then they eat the mouse. If the mouse is green and the mouse likes the tiger then the mouse is rough. If someone visits the tiger and they like the cat then the tiger is green. If someone is red and they eat the tiger then they visit the tiger. If someone eats the mouse and the mouse is rough then the mouse is red. If someone is rough then they like the cat. If someone is rough and red then they eat the tiger. If someone eats the bald eagle then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-358_Q11", "context": "Charlie is not cold. Fiona is smart. Gary is cold. Gary is kind. Gary is round. Harry is cold. Harry is kind. Harry is rough. Harry is round. Harry is smart. If something is cold then it is rough. Round things are blue. If Harry is smart then Harry is blue. If Harry is cold and Harry is quiet then Harry is round. All smart things are cold. Cold things are round. Blue things are quiet. All smart, quiet things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-646_Q21", "context": "Bob is nice. Charlie is not kind. Charlie is nice. Charlie is round. Dave is cold. Dave is young. Erin is cold. Erin is red. Erin is not round. Erin is young. Kind, nice things are cold. If something is red then it is cold. Nice things are round. If Bob is round and Bob is big then Bob is red. If something is round then it is big. Cold things are young. If Dave is big then Dave is cold. If Erin is young and Erin is kind then Erin is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-5_Q2", "context": "Dave is nice. Dave is not rough. Dave is round. Fiona is green. Fiona is round. Gary is white. Harry is big. Harry is nice. Harry is quiet. Harry is rough. Green, quiet things are white. Green, rough things are white. All green things are rough. If Gary is green then Gary is not quiet. Big things are nice. All green things are round. All white things are big. If Fiona is nice then Fiona is not quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1012_Q10", "context": "Bob is nice. Bob is rough. Dave is big. Dave is furry. Dave is green. Dave is not nice. Dave is not red. Dave is rough. Dave is white. Fiona is big. Fiona is not nice. Fiona is rough. Gary is nice. Gary is red. All red, green things are furry. Big things are rough. If Fiona is furry then Fiona is not rough. All furry things are big. If something is nice then it is big. Nice, rough things are green. Furry things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-788_Q20", "context": "The dog chases the tiger. The dog is blue. The dog visits the squirrel. The lion chases the squirrel. The lion eats the dog. The lion is big. The lion visits the tiger. The squirrel eats the lion. The squirrel is blue. The tiger does not chase the lion. The tiger chases the squirrel. The tiger eats the lion. If something eats the tiger and it chases the tiger then it visits the tiger. If something eats the tiger then it eats the squirrel. If something is blue then it eats the tiger. If something chases the lion and the lion visits the tiger then the lion is nice. If something visits the squirrel and the squirrel visits the dog then the squirrel eats the tiger. If something is big then it does not visit the dog. If something visits the squirrel and it chases the lion then it does not eat the lion. If something is cold then it does not chase the tiger. If something chases the tiger and it eats the squirrel then the tiger is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-952_Q17", "context": "The bear is red. The bear sees the squirrel. The bear does not visit the lion. The bear visits the squirrel. The dog is not red. The lion does not see the squirrel. The squirrel chases the dog. The squirrel is blue. The squirrel is not nice. The squirrel visits the lion. If someone sees the squirrel and the squirrel is young then the squirrel does not chase the bear. If someone chases the dog then the dog sees the squirrel. All cold people are young. If someone visits the lion and they are young then the lion is cold. If the dog chases the lion and the lion is blue then the dog sees the lion. If the dog sees the squirrel then the squirrel is cold. If someone is nice and they see the dog then the dog chases the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not see the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-366_Q17", "context": "The bald eagle chases the squirrel. The bald eagle chases the tiger. The bald eagle eats the tiger. The bald eagle is red. The bald eagle sees the tiger. The dog chases the squirrel. The dog is big. The dog is red. The dog is round. The squirrel chases the bald eagle. The squirrel is big. The squirrel is red. The squirrel sees the tiger. The tiger eats the dog. The tiger is big. The tiger is rough. If the squirrel is red and the squirrel eats the bald eagle then the squirrel chases the tiger. If someone chases the squirrel and they see the squirrel then the squirrel eats the bald eagle. If someone is red then they are rough. If someone is rough and they chase the tiger then they see the squirrel. If the dog is green and the dog chases the bald eagle then the bald eagle is round. If someone is big and they chase the dog then the dog sees the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not eat the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-591_Q17", "context": "The bald eagle eats the squirrel. The bald eagle is not kind. The cow eats the mouse. The cow is kind. The cow does not like the bald eagle. The cow does not like the squirrel. The mouse likes the cow. The mouse visits the cow. The squirrel does not like the bald eagle. The squirrel likes the mouse. If something visits the squirrel then it is not rough. Nice things are kind. If something is blue then it eats the mouse. If the squirrel eats the cow and the squirrel likes the bald eagle then the bald eagle is not blue. If something eats the cow and it is rough then it visits the squirrel. If something visits the bald eagle then the bald eagle eats the mouse. If something eats the mouse then it eats the bald eagle. If something is rough then it does not eat the bald eagle. If something eats the bald eagle and the bald eagle is not kind then it visits the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not eat the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-388_Q2", "context": "Anne is furry. Anne is nice. Anne is round. Bob is big. Charlie is big. Charlie is round. Harry is cold. All cold, young things are rough. If something is big then it is rough. Furry, cold things are young. Nice things are young. All furry, cold things are round. Round, cold things are nice. Cold things are young. If something is rough then it is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-379_Q17", "context": "The bald eagle is young. The bald eagle sees the squirrel. The cow needs the mouse. The cow sees the bald eagle. The mouse is red. The mouse is round. The squirrel needs the bald eagle. If someone sees the bald eagle then they eat the squirrel. If someone sees the mouse and they eat the squirrel then the squirrel is kind. If someone eats the bald eagle then the bald eagle eats the mouse. If someone needs the bald eagle then they eat the squirrel. If someone is young and they eat the bald eagle then the bald eagle is round. If someone is kind then they eat the squirrel. If someone is kind and they need the bald eagle then the bald eagle is kind. If someone eats the squirrel then they see the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not eat the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-116_Q9", "context": "Charlie is kind. Charlie is red. Dave is furry. Dave is kind. Gary is red. Gary is round. Harry is furry. Furry, round people are young. All young, round people are rough. Kind people are round. If Harry is kind then Harry is red. If someone is rough and red then they are young. If someone is rough and young then they are quiet. Round, quiet people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1379_Q1", "context": "Bob is kind. Bob is nice. Bob is quiet. Bob is white. Charlie is quiet. Charlie is white. Gary is kind. Gary is red. Gary is smart. Gary is white. Harry is nice. Harry is white. If something is quiet and red then it is kind. All nice, white things are red. All white things are smart. If something is smart then it is red. All kind things are nice. If something is nice and white then it is furry. If something is furry then it is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-720_Q24", "context": "The bear eats the cow. The bear eats the mouse. The bear is round. The cow chases the dog. The cow does not eat the bear. The cow is round. The cow needs the mouse. The dog is red. The mouse chases the dog. The mouse eats the bear. If something chases the bear and it eats the dog then the dog chases the cow. If something chases the bear then the bear chases the dog. If something is red and not nice then it is round. If something chases the dog then it needs the dog. If something is cold and not red then it does not eat the mouse. If something eats the mouse and the mouse is kind then the mouse eats the cow. If something needs the dog then it chases the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog needs the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-826_Q1", "context": "The bald eagle is not red. The bald eagle likes the cow. The bald eagle needs the cow. The cow chases the bald eagle. The cow chases the lion. The cow is blue. The cow is rough. The cow does not like the squirrel. The cow does not need the bald eagle. The cow needs the squirrel. The lion is red. The lion is rough. The lion likes the bald eagle. The lion likes the squirrel. The squirrel chases the lion. The squirrel needs the bald eagle. If something chases the squirrel then it needs the lion. If something chases the cow and the cow needs the lion then the lion chases the squirrel. If something is red then it needs the squirrel. If something chases the squirrel then the squirrel chases the cow. If something likes the cow and it chases the lion then it is young. If something needs the squirrel then it chases the cow. If something chases the squirrel and the squirrel needs the lion then it does not like the lion. If something chases the cow then the cow chases the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-922_Q4", "context": "Bob is big. Bob is nice. Bob is smart. Bob is young. Charlie is kind. Dave is cold. Gary is kind. If someone is round and cold then they are nice. Big people are cold. If someone is kind then they are young. Young people are big. All kind, round people are nice. Cold people are round. All nice people are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-999_Q7", "context": "The bald eagle is kind. The bald eagle likes the bear. The bear likes the bald eagle. The bear likes the cat. The bear likes the mouse. The bear needs the bald eagle. The cat eats the bald eagle. The cat eats the mouse. The cat likes the bear. The cat needs the bald eagle. The cat needs the bear. The mouse is red. The mouse is round. The mouse needs the bear. If the bald eagle is blue and the bald eagle eats the bear then the bald eagle likes the bear. If the bald eagle needs the bear then the bear is blue. If someone likes the mouse then they need the cat. If the bald eagle needs the cat then the cat is kind. If someone needs the bald eagle and they like the cat then the cat is young. If the cat likes the mouse and the cat eats the bear then the bear needs the cat. If the bald eagle is round and the bald eagle is young then the bald eagle needs the cat. If someone is kind then they like the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-345_Q10", "context": "The bald eagle chases the cow. The bald eagle chases the mouse. The bald eagle is green. The bald eagle sees the mouse. The cow chases the dog. The cow likes the bald eagle. The cow likes the mouse. The dog is green. The dog is kind. The mouse likes the cow. The mouse likes the dog. If something likes the cow and the cow sees the mouse then the cow chases the mouse. If something likes the cow and the cow sees the bald eagle then the cow likes the dog. If something chases the cow and it sees the cow then the cow sees the bald eagle. If something is green then it sees the cow. If the cow likes the dog then the cow sees the dog. If the cow is kind then the cow likes the bald eagle. If something sees the dog then it chases the mouse. If something likes the dog then it sees the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not see the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-999_Q5", "context": "Bob is rough. Charlie is furry. Charlie is not nice. Charlie is not smart. Charlie is not white. Charlie is not young. Erin is furry. Erin is rough. Erin is not smart. Harry is young. Nice, rough people are white. If Erin is smart then Erin is young. All red people are nice. If someone is young then they are smart. All nice, red people are smart. If Harry is young and Harry is smart then Harry is red. All white people are rough. If someone is red and nice then they are rough. If Charlie is white then Charlie is not red.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1333_Q10", "context": "Dave is cold. Dave is red. Dave is rough. Dave is white. Fiona is quiet. Gary is cold. Gary is quiet. Gary is rough. Harry is cold. Harry is green. Harry is red. Harry is white. If someone is round and cold then they are rough. If Dave is green then Dave is cold. If someone is quiet and green then they are rough. If Fiona is rough and Fiona is red then Fiona is white. If Gary is quiet and Gary is round then Gary is red. If Fiona is round then Fiona is cold. If Fiona is red then Fiona is round. All quiet people are red. Red people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-130_Q15", "context": "Bob is cold. Bob is red. Charlie is nice. Charlie is red. Dave is nice. Dave is rough. Harry is green. Harry is quiet. Harry is red. Harry is rough. If someone is cold and red then they are green. Green, nice people are red. All red, quiet people are blue. Rough, green people are quiet. If someone is green then they are rough. If Harry is red then Harry is cold. Blue people are quiet. Red people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-55_Q3", "context": "Anne is blue. Anne is kind. Anne is red. Anne is rough. Bob is round. Charlie is blue. Charlie is cold. Charlie is kind. Charlie is red. Charlie is rough. Harry is rough. If something is rough then it is furry. Rough, red things are blue. If something is red then it is round. If something is furry then it is red. Round, blue things are cold. If something is cold and red then it is blue. If something is furry and cold then it is round. Blue, cold things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-553_Q21", "context": "The bald eagle eats the tiger. The bald eagle is red. The bald eagle is round. The dog eats the bald eagle. The dog likes the tiger. The squirrel is big. The squirrel is blue. The squirrel likes the dog. The squirrel sees the tiger. The tiger sees the squirrel. If something is kind then it eats the bald eagle. If something is red then it eats the bald eagle. If something is blue and kind then it likes the dog. If something eats the bald eagle then it sees the bald eagle. If something likes the tiger and it sees the bald eagle then the tiger is big. If something is big and it likes the tiger then the tiger sees the bald eagle. All red things are round. If something is big then it is red. If something eats the bald eagle then the bald eagle is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not see the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1144_Q3", "context": "Dave is quiet. Erin is quiet. Gary is cold. Gary is furry. Gary is red. Harry is quiet. Harry is rough. Quiet people are red. All kind people are nice. Cold, red people are kind. Red people are kind. If someone is furry then they are quiet. If Harry is nice and Harry is red then Harry is cold. Nice people are kind. All cold people are furry. All kind, cold people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-427_Q5", "context": "Anne is big. Anne is smart. Bob is big. Bob is cold. Bob is rough. Bob is white. Charlie is big. Charlie is blue. Charlie is cold. Charlie is white. Gary is cold. Gary is rough. If someone is cold then they are nice. Cold, blue people are white. If someone is big then they are rough. White people are rough. If someone is rough then they are cold. All nice, rough people are blue. Blue people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-432_Q15", "context": "Charlie is furry. Dave is blue. Dave is red. Dave is round. Dave is white. Erin is blue. Gary is quiet. If something is furry and not quiet then it is not big. All furry, round things are big. If something is furry and quiet then it is big. If something is red and white then it is blue. If something is round and quiet then it is white. All red, furry things are round. All quiet things are furry. Big things are red. If Dave is quiet then Dave is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-456_Q9", "context": "The bald eagle does not see the lion. The bear does not chase the bald eagle. The bear sees the bald eagle. The bear sees the lion. The lion is not blue. The tiger does not chase the bear. The tiger chases the lion. If the bear is green and the bear visits the lion then the lion does not visit the bald eagle. If someone sees the bald eagle and they are young then they see the bear. If someone is green and they see the bald eagle then the bald eagle is young. If someone sees the lion then they chase the tiger. If someone is young then they chase the tiger. If someone is young then they chase the lion. If someone is young then they see the bald eagle. If someone visits the bald eagle then they are green. If someone chases the tiger and they see the lion then they are green.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle sees the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1078_Q8", "context": "Anne is green. Anne is red. Anne is rough. Anne is round. Anne is young. Charlie is quiet. Erin is red. Erin is rough. Harry is rough. Harry is young. Green, young things are kind. All red things are rough. All red, kind things are rough. All quiet things are young. Rough things are green. All kind, round things are green. All young things are red. If something is green and kind then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1144_Q22", "context": "Bob is big. Bob is white. Charlie is kind. Charlie is not white. Charlie is young. Dave is big. Erin is not nice. If someone is young and green then they are kind. All white, green people are kind. Kind people are not nice. If someone is blue then they are nice. White people are young. If Dave is big then Dave is white. White, young people are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-753_Q4", "context": "Bob is cold. Bob is kind. Bob is smart. Charlie is cold. Charlie is red. Dave is blue. Dave is red. Dave is round. Dave is white. Gary is cold. Cold things are round. All red, cold things are kind. All blue things are round. All smart things are round. If something is white then it is red. All cold, round things are blue. If something is blue and smart then it is white. If something is white and cold then it is smart. Cold, blue things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-892_Q18", "context": "The bear is big. The bear sees the lion. The cow eats the rabbit. The lion eats the bear. The rabbit eats the bear. The rabbit eats the cow. The rabbit eats the lion. If something is blue then it sees the rabbit. If something sees the cow then it is green. If something eats the cow then the cow is not blue. If the rabbit is not big then the rabbit sees the bear. If the lion sees the rabbit and the rabbit sees the bear then the rabbit likes the cow. If the bear likes the cow then the bear likes the rabbit. If something sees the rabbit then the rabbit sees the lion. If something sees the lion then it is blue. If something is young then it eats the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-576_Q15", "context": "The cow is young. The cow likes the dog. The cow visits the squirrel. The dog likes the cow. The dog visits the squirrel. The lion is nice. The lion likes the cow. The lion visits the squirrel. The squirrel eats the dog. The squirrel is green. The squirrel is young. The squirrel likes the dog. If someone visits the cow then the cow visits the dog. If someone eats the squirrel then the squirrel visits the cow. If someone visits the dog then the dog is nice. If someone visits the dog and they eat the cow then they visit the cow. If someone is young then they eat the squirrel. If the squirrel likes the lion then the squirrel visits the dog. If someone is nice then they visit the lion. If someone is green then they eat the lion. If someone likes the cow then the cow likes the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not visit the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-158_Q1", "context": "The cow eats the rabbit. The cow is kind. The cow needs the tiger. The cow visits the mouse. The mouse needs the tiger. The rabbit is blue. The rabbit is cold. The rabbit is kind. The rabbit is nice. The rabbit visits the mouse. The tiger eats the mouse. If something needs the tiger then it visits the tiger. If something is blue then it needs the tiger. If the tiger needs the mouse then the mouse needs the rabbit. If something is nice and it visits the tiger then the tiger is blue. If something needs the tiger and it visits the cow then it does not visit the rabbit. If something needs the cow and it visits the cow then it is not blue. If something needs the cow and the cow visits the tiger then the tiger does not need the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse needs the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-163_Q2", "context": "Anne is big. Anne is quiet. Anne is young. Dave is quiet. Gary is green. Gary is not nice. Harry is big. All rough, green things are big. Young things are big. If something is kind then it is young. Quiet things are rough. Big, rough things are kind. All rough things are green. All kind things are green. If Anne is big and Anne is nice then Anne is not green.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-982_Q10", "context": "Anne is furry. Anne is quiet. Anne is round. Dave is green. Erin is not blue. Gary is nice. Gary is quiet. All nice things are round. Furry things are kind. Green things are nice. All kind things are blue. If something is round and nice then it is furry. If something is green and not kind then it is quiet. If something is nice and not blue then it is not quiet. Round things are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-36_Q5", "context": "The bald eagle visits the squirrel. The bear is big. The bear likes the cat. The cat eats the bear. The cat likes the bald eagle. The squirrel likes the bear. The squirrel visits the bald eagle. If someone likes the bald eagle then the bald eagle visits the bear. If someone is blue and they eat the bald eagle then they are red. If someone visits the bear and they like the bear then the bear is blue. If someone is round then they are rough. If someone visits the bear and they visit the squirrel then the squirrel visits the bear. If someone visits the cat then the cat is big. If someone is blue then they are round. If someone is big and they eat the cat then the cat is big.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel visits the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-37_Q9", "context": "Bob is big. Erin is rough. Erin is young. Fiona is big. Fiona is blue. Fiona is nice. Fiona is red. Fiona is rough. Fiona is white. Fiona is young. Gary is rough. Gary is white. Nice people are blue. If someone is rough then they are red. White, rough people are young. All blue people are white. If Gary is young then Gary is white. If someone is white and young then they are big. If someone is red then they are big. Red people are big. If someone is big then they are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-435_Q11", "context": "The bald eagle does not like the mouse. The bald eagle needs the mouse. The dog is rough. The dog sees the squirrel. The mouse is cold. The mouse is not nice. The mouse likes the bald eagle. The mouse does not like the dog. The mouse does not like the squirrel. The squirrel does not need the bald eagle. The squirrel needs the mouse. If someone sees the bald eagle and they are not cold then the bald eagle does not need the squirrel. If someone needs the dog and they like the mouse then the mouse is rough. If someone needs the squirrel then they are not rough. If someone likes the squirrel and they like the mouse then they see the squirrel. If someone sees the mouse then the mouse is nice. If someone is rough then they need the dog. If someone needs the dog then they like the mouse. If someone is nice and they need the dog then they like the dog. If someone sees the bald eagle and the bald eagle is not cold then the bald eagle likes the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse likes the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-475_Q21", "context": "Anne is blue. Bob is nice. Charlie is quiet. Charlie is smart. Charlie is not young. Harry is not nice. Harry is young. Green people are young. If someone is big then they are young. If someone is smart and big then they are not quiet. Nice, blue people are quiet. If someone is smart then they are quiet. If Bob is not nice then Bob is smart. All young people are green. Nice people are big. If someone is nice and green then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-676_Q6", "context": "The bald eagle is kind. The bald eagle is nice. The bald eagle needs the cat. The cat needs the squirrel. The lion is kind. The squirrel does not see the cat. The squirrel visits the bald eagle. If something sees the cat then it visits the cat. If something is red then it visits the cat. If something needs the lion then it does not visit the cat. If something visits the cat then the cat is kind. If the cat is red and the cat visits the bald eagle then the bald eagle does not visit the cat. If something visits the squirrel and the squirrel sees the cat then it visits the bald eagle. If something is kind then it sees the cat. If something visits the squirrel and it does not see the lion then the lion is not cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not visit the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-946_Q13", "context": "The bear eats the rabbit. The bear eats the tiger. The bear is kind. The bear is nice. The bear needs the rabbit. The cat is round. The rabbit chases the bear. The rabbit eats the cat. The rabbit is green. The rabbit is nice. The rabbit needs the bear. The tiger is round. If something is young and round then it needs the tiger. If something chases the tiger then the tiger is young. If something chases the rabbit and the rabbit chases the bear then it is nice. If something needs the tiger then it is nice. If something eats the cat and it needs the rabbit then the rabbit eats the bear. If something eats the tiger and it is kind then the tiger chases the bear. If something is nice then it chases the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not need the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1189_Q14", "context": "Anne is not cold. Anne is nice. Anne is red. Bob is nice. Bob is not red. Dave is kind. Harry is not green. Harry is not kind. Harry is red. Harry is rough. Harry is young. If something is red and kind then it is young. Red, green things are young. If something is rough then it is not kind. Green things are cold. If something is cold and red then it is nice. If Dave is young then Dave is green. Kind things are red. If Bob is red and Bob is young then Bob is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1164_Q6", "context": "Anne is cold. Anne is round. Erin is furry. Gary is furry. Gary is smart. Harry is not cold. Harry is furry. If Anne is smart then Anne is cold. All young, cold things are green. All furry things are green. Young, kind things are not furry. All kind, round things are smart. If something is round and not young then it is smart. Furry, green things are kind. All kind things are round. If Erin is green and Erin is smart then Erin is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1175_Q4", "context": "Anne is cold. Charlie is nice. Dave is quiet. Erin is blue. Erin is not cold. Erin is not red. Erin is smart. All blue, nice people are not smart. If someone is round then they are smart. If someone is cold then they are red. If Erin is quiet then Erin is red. If someone is red and nice then they are quiet. If someone is quiet then they are blue. Red people are round. If someone is blue and quiet then they are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-911_Q23", "context": "The bald eagle chases the squirrel. The bald eagle is cold. The cat chases the squirrel. The cat visits the bald eagle. The squirrel chases the cat. The squirrel is cold. The squirrel is rough. The squirrel is round. The squirrel visits the bald eagle. The tiger chases the bald eagle. The tiger likes the squirrel. The tiger visits the cat. If someone visits the bald eagle and they visit the squirrel then the squirrel is cold. If someone chases the cat and the cat visits the tiger then they like the tiger. If someone visits the cat then the cat chases the bald eagle. If someone likes the cat and the cat is blue then they are blue. If someone likes the tiger and they are round then the tiger visits the bald eagle. All round people are blue. If someone chases the cat then the cat visits the tiger. If someone chases the squirrel then they are nice. If someone visits the cat and they visit the bald eagle then they chase the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not chase the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-866_Q8", "context": "The bear eats the cow. The cow eats the mouse. The cow eats the squirrel. The cow is kind. The mouse is cold. The mouse is nice. The mouse likes the bear. The mouse sees the cow. The squirrel eats the bear. The squirrel eats the cow. The squirrel eats the mouse. The squirrel sees the cow. If something sees the bear then it eats the squirrel. If the squirrel is cold and the squirrel eats the bear then the bear is kind. If the mouse is kind and the mouse likes the squirrel then the squirrel is cold. If something likes the squirrel then it is kind. All red, kind things are blue. If something is kind then it likes the squirrel. If something is nice then it likes the squirrel. If something is cold and it likes the bear then the bear sees the cow. If something is red and nice then it sees the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-771_Q12", "context": "Anne is round. Charlie is kind. Charlie is round. Erin is nice. Erin is rough. Erin is round. Harry is nice. Young things are rough. All round things are young. If Harry is round and Harry is quiet then Harry is rough. Young, kind things are nice. Young, nice things are cold. If something is round and not young then it is not kind. All rough, round things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-487_Q12", "context": "Anne is big. Anne is green. Anne is quiet. Erin is rough. Fiona is cold. Fiona is rough. Harry is rough. Rough, smart people are nice. Cold, quiet people are big. All smart people are rough. All quiet people are big. If Fiona is nice then Fiona is green. If someone is green then they are nice. Cold people are green. All rough people are cold. If someone is nice then they are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-492_Q18", "context": "The bald eagle eats the dog. The bald eagle needs the cow. The bald eagle visits the dog. The bald eagle visits the tiger. The cow is blue. The cow visits the dog. The dog eats the bald eagle. The dog eats the cow. The dog is not green. The dog is young. The dog needs the tiger. The dog does not visit the bald eagle. The dog visits the cow. The dog visits the tiger. The tiger eats the cow. The tiger is not kind. If something needs the dog and it visits the dog then the dog visits the cow. If something visits the dog then it is cold. If something needs the tiger and the tiger visits the bald eagle then the tiger is not blue. If something is young then it visits the cow. If something is blue and it eats the tiger then the tiger visits the dog. If something is cold then it eats the tiger. If something eats the dog and it does not need the cow then it is not kind. Green things are young. If something needs the bald eagle and it visits the tiger then the bald eagle is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-217_Q1", "context": "The bald eagle eats the cat. The bald eagle is kind. The bald eagle likes the dog. The bear eats the bald eagle. The bear is kind. The bear likes the cat. The bear sees the cat. The cat eats the dog. The cat is big. The cat does not like the bald eagle. The cat sees the dog. The dog eats the bald eagle. The dog eats the bear. The dog eats the cat. If someone is red and they see the bear then the bear sees the cat. If someone eats the cat then they like the bear. If someone eats the bear then they eat the cat. If someone eats the bald eagle then they eat the bear. If someone is big then they eat the dog. If someone sees the bald eagle then the bald eagle does not like the bear. If the dog eats the cat then the cat eats the bald eagle. If the cat likes the bear then the cat likes the dog. If someone is round then they see the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog eats the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-344_Q12", "context": "Anne is cold. Anne is not smart. Charlie is quiet. Erin is not quiet. Erin is not white. Gary is quiet. Gary is round. If Gary is cold and Gary is quiet then Gary is smart. All big things are cold. All smart things are round. If Gary is quiet and Gary is green then Gary is white. White things are big. Quiet, round things are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-85_Q18", "context": "Dave is big. Dave is kind. Erin is cold. Erin is smart. Gary is kind. Harry is green. Harry is smart. Kind things are cold. If something is kind and young then it is big. All kind, cold things are furry. If Gary is furry and Gary is green then Gary is young. Young things are green. If something is furry and cold then it is smart. If something is green and cold then it is furry. Kind, young things are smart. If something is smart and big then it is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-465_Q12", "context": "The cat is nice. The cat needs the lion. The lion is round. The lion likes the cat. The lion sees the rabbit. The rabbit is cold. The rabbit sees the lion. The squirrel is cold. The squirrel needs the lion. The squirrel sees the rabbit. If something needs the lion then it is nice. If something likes the lion and it sees the squirrel then the squirrel sees the rabbit. If something is nice then it needs the cat. If the squirrel needs the lion and the squirrel is kind then the lion needs the cat. If something needs the cat and the cat is nice then it is kind. If something likes the squirrel then the squirrel likes the rabbit. If something likes the cat then the cat needs the rabbit. If something is kind then it likes the rabbit. All kind, round things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-512_Q9", "context": "Anne is rough. Bob is kind. Bob is nice. Bob is round. Bob is white. Charlie is furry. Charlie is kind. Charlie is nice. Charlie is round. Gary is rough. If someone is round and furry then they are nice. If someone is white and furry then they are round. If Charlie is blue and Charlie is nice then Charlie is furry. If someone is furry then they are white. All white people are kind. All rough people are furry. If someone is white and nice then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1146_Q16", "context": "Anne is red. Charlie is blue. Charlie is green. Charlie is red. Fiona is green. Fiona is young. Gary is young. If someone is blue and red then they are green. If someone is red and furry then they are young. Furry people are blue. Rough people are red. Young people are rough. If someone is furry then they are red. If Charlie is cold and Charlie is green then Charlie is blue. All green people are cold. If someone is rough and red then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-697_Q6", "context": "Charlie is big. Charlie is nice. Charlie is rough. Charlie is round. Charlie is smart. Charlie is young. Dave is young. Erin is quiet. Harry is big. Harry is smart. Harry is young. All young things are round. If Dave is nice and Dave is quiet then Dave is big. If something is round and big then it is rough. If something is round then it is big. Nice things are smart. Quiet things are rough. If something is rough then it is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1047_Q10", "context": "Anne is blue. Bob is white. Charlie is big. Charlie is kind. Charlie is white. Harry is kind. Harry is nice. All green people are white. Blue people are nice. If Harry is rough and Harry is white then Harry is nice. If someone is nice then they are kind. If Anne is kind then Anne is green. All kind people are blue. If someone is nice and white then they are rough. If Charlie is rough then Charlie is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1388_Q4", "context": "Bob is nice. Charlie is furry. Charlie is round. Charlie is white. Erin is nice. Erin is red. Erin is rough. Harry is furry. Harry is nice. Harry is red. Harry is rough. Harry is round. If something is red and rough then it is white. If something is round then it is rough. All nice things are red. If Bob is round and Bob is red then Bob is nice. White things are round. White, rough things are nice. Rough, red things are quiet. All red, nice things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-579_Q12", "context": "The cow eats the mouse. The cow needs the dog. The dog eats the cow. The dog eats the mouse. The dog is blue. The dog is young. The mouse eats the dog. The mouse is rough. The mouse sees the dog. The squirrel needs the dog. The squirrel sees the cow. If someone needs the squirrel then the squirrel needs the cow. If someone needs the dog then the dog sees the mouse. If someone needs the cow then the cow sees the mouse. If someone is red and they eat the squirrel then they are kind. If someone eats the dog and they are rough then the dog is rough. If someone is young then they need the dog. If someone sees the mouse and they need the mouse then they are kind. If someone sees the mouse then they need the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not need the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1184_Q11", "context": "Anne is furry. Anne is smart. Charlie is big. Erin is big. Erin is cold. Erin is furry. Erin is kind. Erin is nice. Erin is quiet. Erin is smart. Harry is kind. Harry is nice. Cold things are nice. If Charlie is kind and Charlie is smart then Charlie is nice. If something is big and quiet then it is nice. If something is kind and quiet then it is cold. If something is smart then it is furry. If something is furry then it is big. If something is big then it is quiet. All nice things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-699_Q9", "context": "Anne is kind. Bob is furry. Bob is rough. Bob is round. Dave is blue. Dave is furry. Dave is kind. Dave is quiet. Dave is rough. Dave is round. Dave is smart. Gary is blue. Gary is furry. Gary is smart. If someone is furry and round then they are smart. All smart, blue people are round. All quiet people are round. All round people are smart. If Bob is kind then Bob is furry. If someone is kind then they are blue. All kind, blue people are quiet. All rough, blue people are quiet. All smart people are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1099_Q3", "context": "Bob is not red. Bob is not white. Dave is green. Dave is not red. Fiona is green. Gary is rough. Gary is smart. All round people are blue. All rough people are white. Smart, green people are rough. If someone is round and blue then they are green. Green, white people are round. If someone is green then they are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-882_Q12", "context": "The cat is big. The cat is green. The cat is young. The cat does not see the squirrel. The cat visits the cow. The cow is red. The cow sees the cat. The mouse is blue. The mouse is not young. The mouse likes the squirrel. The mouse sees the squirrel. The squirrel is blue. The squirrel does not like the cat. The squirrel likes the cow. The squirrel likes the mouse. The squirrel visits the cow. If someone is green and they like the squirrel then they like the cow. If someone is red then they visit the mouse. If the mouse visits the cow then the cow is young. If someone visits the mouse and they are green then the mouse is green. If someone likes the cow then they are green. If the squirrel visits the cow and the cow sees the squirrel then the squirrel is young. If the squirrel is green then the squirrel is red. If someone is red and they like the cat then the cat visits the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not like the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1285_Q7", "context": "Bob is blue. Bob is cold. Bob is quiet. Bob is red. Bob is smart. Bob is young. Fiona is blue. Fiona is red. Fiona is smart. Fiona is young. Gary is young. Harry is red. Red, cold people are blue. If someone is quiet then they are furry. If someone is red and smart then they are young. All cold, young people are quiet. If someone is quiet and smart then they are furry. All young, furry people are cold. All quiet, young people are red. All quiet people are red. If someone is young then they are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-512_Q4", "context": "Anne is cold. Charlie is green. Charlie is young. Erin is quiet. Erin is smart. Erin is young. Harry is not young. If Charlie is young then Charlie is smart. If someone is smart then they are round. If Harry is not green then Harry is round. All rough, smart people are cold. All quiet people are rough. If someone is cold and not round then they are quiet. Round people are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1310_Q15", "context": "Anne is green. Anne is smart. Bob is nice. Bob is red. Bob is rough. Bob is young. Charlie is cold. Charlie is green. Harry is cold. Harry is green. Harry is rough. Harry is smart. All young people are rough. All red people are nice. If someone is smart then they are red. All smart, nice people are cold. Cold, green people are young. All young people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-674_Q15", "context": "The bald eagle is red. The bald eagle is rough. The bald eagle needs the rabbit. The cat needs the bald eagle. The cat sees the mouse. The cat visits the bald eagle. The cat visits the mouse. The cat visits the rabbit. The mouse is rough. The mouse needs the cat. The rabbit needs the bald eagle. The rabbit needs the cat. The rabbit sees the mouse. The rabbit visits the bald eagle. If something needs the mouse and it is kind then the mouse sees the cat. If something is kind and it visits the rabbit then the rabbit visits the mouse. If something is kind then it needs the cat. If something sees the cat then the cat needs the mouse. If something needs the cat and the cat sees the rabbit then the rabbit sees the cat. If something needs the mouse then it is big. If something needs the cat then the cat is red. If something is red and it sees the mouse then it sees the rabbit. If something visits the mouse and it is blue then it visits the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-515_Q3", "context": "The cow is rough. The cow likes the mouse. The cow likes the tiger. The cow needs the tiger. The dog visits the cow. The mouse likes the dog. The mouse visits the cow. The mouse visits the dog. The tiger is round. The tiger visits the cow. If something visits the mouse then the mouse is big. If something needs the dog then the dog is round. If something is big then it visits the tiger. If something visits the tiger then it is rough. If something visits the dog then it visits the mouse. If something is big and rough then it likes the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse visits the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-328_Q22", "context": "The cow chases the mouse. The cow needs the mouse. The dog chases the cow. The dog chases the mouse. The dog is kind. The dog is round. The dog likes the cow. The dog likes the lion. The dog likes the mouse. The lion chases the cow. The lion is big. The lion is red. The mouse chases the dog. The mouse is red. If someone likes the dog then the dog chases the lion. If someone needs the lion then they like the dog. If the dog needs the lion and the dog needs the cow then the cow chases the mouse. If someone is round and they chase the mouse then they need the lion. If the cow likes the lion and the lion likes the cow then the cow likes the dog. If someone is blue then they chase the lion. If the mouse likes the lion and the mouse chases the dog then the lion is blue. If the dog chases the lion then the lion is blue. If someone is kind and they need the cow then the cow likes the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse likes the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-150_Q1", "context": "Anne is green. Anne is white. Bob is cold. Bob is green. Bob is nice. Bob is round. Bob is white. Dave is cold. Dave is round. Dave is white. Gary is round. All round people are white. All cold people are nice. If Anne is nice and Anne is round then Anne is green. Green people are round. If Bob is round then Bob is nice. White people are cold. If Gary is kind and Gary is white then Gary is green. All nice people are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-758_Q8", "context": "Charlie is big. Charlie is cold. Charlie is kind. Charlie is red. Charlie is rough. Charlie is round. Charlie is not young. Dave is kind. Dave is rough. Fiona is cold. Fiona is young. Gary is red. If someone is kind and big then they are round. If someone is cold and kind then they are round. Red people are kind. If Gary is cold then Gary is big. If Gary is round and Gary is not young then Gary is not rough. If someone is cold then they are red. All round people are rough. If someone is round and rough then they are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-932_Q8", "context": "The dog chases the rabbit. The dog is blue. The dog likes the tiger. The dog needs the lion. The dog needs the tiger. The lion chases the dog. The lion is big. The lion likes the dog. The lion likes the tiger. The rabbit chases the lion. The rabbit is big. The rabbit is rough. The tiger chases the dog. The tiger is round. The tiger likes the rabbit. The tiger needs the dog. If something chases the rabbit then it is blue. If something is blue and it needs the lion then it needs the tiger. If something chases the dog then the dog is big. If something likes the lion and it likes the dog then the dog is cold. If something chases the dog and it is blue then it is cold. If something chases the lion then the lion chases the rabbit. If something chases the dog then it needs the rabbit. If something chases the tiger and the tiger is blue then the tiger needs the dog. If something is cold and it likes the tiger then it likes the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-418_Q10", "context": "Anne is red. Bob is kind. Bob is white. Erin is cold. Erin is kind. Gary is rough. Gary is smart. If someone is smart then they are red. Blue, red people are kind. All red, smart people are cold. If Erin is blue then Erin is red. All white people are kind. Cold, rough people are white. If someone is kind and white then they are blue. All cold, rough people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-121_Q12", "context": "Dave is green. Dave is nice. Dave is quiet. Dave is rough. Dave is round. Dave is young. Erin is green. Erin is quiet. Erin is round. Gary is rough. Harry is young. Young things are round. If Dave is quiet and Dave is nice then Dave is rough. Round things are green. If Gary is green then Gary is round. If something is nice and round then it is red. If something is quiet then it is nice. If Harry is green then Harry is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-96_Q6", "context": "Bob is cold. Dave is blue. Dave is cold. Dave is furry. Dave is quiet. Dave is white. Erin is furry. Erin is red. Fiona is cold. Fiona is furry. If something is red and cold then it is quiet. If something is big then it is blue. All blue, big things are white. If Erin is quiet then Erin is furry. If Fiona is not furry then Fiona is quiet. If Fiona is blue and Fiona is white then Fiona is quiet. If Bob is furry and Bob is cold then Bob is white. Quiet things are big. If something is furry then it is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-129_Q8", "context": "Anne is kind. Anne is nice. Anne is red. Anne is white. Charlie is nice. Gary is kind. Harry is young. All nice people are furry. If someone is young then they are red. If Gary is white and Gary is young then Gary is furry. Red people are kind. If someone is big then they are nice. If someone is nice and young then they are white. All kind people are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-1033_Q1", "context": "The cat is big. The cat does not visit the mouse. The lion chases the tiger. The lion is kind. The lion needs the tiger. The lion visits the mouse. The mouse does not need the cat. The tiger needs the lion. The tiger does not visit the cat. The tiger visits the lion. If the tiger chases the mouse and the tiger does not need the mouse then the tiger chases the lion. If someone needs the cat then they visit the cat. If someone is kind then they need the cat. If someone is green then they are kind. If someone needs the cat then the cat is green. If the mouse is red and the mouse needs the tiger then the tiger visits the mouse. If someone visits the mouse and they chase the mouse then they need the tiger. If someone needs the tiger and the tiger needs the lion then they are big. If someone needs the mouse and they do not need the cat then the cat is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion chases the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-337_Q11", "context": "The bear is round. The cat chases the mouse. The cat is round. The cat needs the squirrel. The cat visits the mouse. The cat visits the squirrel. The mouse needs the squirrel. The mouse visits the cat. The squirrel chases the cat. The squirrel needs the bear. The squirrel visits the mouse. If something needs the cat then it is round. If something visits the cat and the cat visits the mouse then the mouse chases the squirrel. If something needs the bear then the bear is rough. If something visits the squirrel and the squirrel is rough then the squirrel visits the mouse. If something is rough then it visits the squirrel. If something visits the squirrel then it needs the bear. If something chases the squirrel then it needs the cat. If something visits the squirrel then it is cold. If something needs the bear then it chases the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear needs the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-923_Q15", "context": "Bob is green. Bob is nice. Charlie is green. Charlie is nice. Charlie is red. Charlie is round. Charlie is not white. Dave is green. Dave is nice. Dave is red. Fiona is not nice. Fiona is white. All quiet, white things are nice. If something is white then it is not quiet. If something is white and not quiet then it is round. If something is young then it is round. All round, red things are not young. If something is round then it is green. If something is red then it is green. All round things are green. Green things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1089_Q5", "context": "Dave is smart. Erin is kind. Erin is quiet. Erin is round. Fiona is kind. Gary is quiet. Gary is round. Round, blue people are quiet. If someone is kind then they are big. Smart people are nice. All smart, nice people are blue. If someone is blue then they are round. If someone is smart and kind then they are big. Round, kind people are big. All big, nice people are kind. Blue, quiet people are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-649_Q11", "context": "The cat likes the tiger. The lion sees the rabbit. The rabbit eats the lion. The rabbit eats the tiger. The rabbit likes the cat. The tiger is not cold. The tiger likes the lion. If something likes the cat then it is nice. All young things are nice. If something eats the tiger then it is nice. If something eats the cat then the cat is young. If something eats the lion then the lion eats the cat. If something sees the cat then the cat does not see the lion. If something is round then it does not like the rabbit. If something is nice then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not like the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-796_Q6", "context": "Anne is green. Anne is quiet. Anne is round. Bob is green. Bob is quiet. Charlie is cold. Erin is smart. All smart, round people are cold. Cold, smart people are white. White, smart people are rough. If Erin is rough then Erin is green. All cold people are smart. Green people are cold. If Erin is quiet and Erin is round then Erin is rough. If Anne is cold and Anne is green then Anne is rough. Rough, green people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-466_Q21", "context": "The cow is cold. The cow is kind. The cow is young. The cow likes the lion. The cow likes the squirrel. The lion eats the mouse. The lion sees the cow. The mouse eats the lion. The mouse likes the cow. The mouse likes the lion. The mouse likes the squirrel. The mouse sees the cow. The squirrel eats the mouse. The squirrel is rough. The squirrel is young. The squirrel likes the cow. All cold things are rough. If something sees the lion and it sees the mouse then the mouse is young. If something is rough and it eats the lion then the lion sees the mouse. If something sees the squirrel and it likes the lion then the squirrel eats the lion. Rough things are kind. If something is rough and it sees the cow then it sees the squirrel. If something eats the lion then it likes the squirrel. If something sees the cow then it is cold. If something eats the lion and the lion is kind then the lion is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not eat the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1117_Q12", "context": "Anne is round. Bob is furry. Bob is quiet. Erin is quiet. Gary is nice. Gary is quiet. Gary is round. Red, round things are furry. All quiet, furry things are blue. If something is nice and red then it is blue. Big things are quiet. All quiet, big things are round. Round things are big. If something is furry then it is nice. If something is quiet then it is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-749_Q11", "context": "Anne is green. Anne is red. Anne is smart. Anne is young. Dave is kind. Fiona is not blue. Fiona is red. Fiona is not young. Harry is not green. Harry is not kind. Harry is smart. Harry is young. All blue things are not green. Blue things are round. Kind things are young. All young, kind things are blue. If something is green then it is not kind. If something is round then it is red. All smart things are red. If something is red then it is smart. If Dave is green then Dave is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-629_Q11", "context": "The bald eagle is blue. The bear eats the bald eagle. The bear is not nice. The bear is young. The squirrel eats the bald eagle. The squirrel does not need the tiger. The tiger sees the bald eagle. If someone is nice and round then they see the bald eagle. If someone eats the bear then the bear is green. If someone is blue then they eat the bear. If the bald eagle eats the tiger and the bald eagle does not need the bear then the tiger needs the bear. If someone eats the tiger and the tiger eats the bear then they eat the bald eagle. If the squirrel does not see the bear then the squirrel does not need the bear. If someone is green then they are blue. If someone eats the bear then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-52_Q2", "context": "The bear is kind. The bear does not need the mouse. The bear does not visit the cow. The cow is green. The cow does not visit the mouse. The lion chases the bear. The lion chases the mouse. The lion is not kind. The lion is round. The mouse is kind. If something visits the bear and it does not chase the bear then the bear does not visit the mouse. If something is green and it visits the lion then the lion is green. If something needs the mouse and the mouse is round then it does not visit the lion. If something chases the bear then it visits the lion. If something is round then it needs the cow. If something visits the lion then it is nice. If something is nice then it does not visit the mouse. If something needs the bear then the bear chases the mouse. If something visits the lion and the lion does not visit the mouse then the mouse needs the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not chase the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-689_Q8", "context": "The bald eagle eats the cow. The bald eagle likes the rabbit. The cat eats the cow. The cat eats the rabbit. The cat likes the bald eagle. The cow eats the bald eagle. The cow is young. The cow likes the cat. The cow likes the rabbit. The rabbit needs the cat. If something eats the cat then the cat needs the bald eagle. If something needs the cow and the cow is young then the cow is round. If something needs the cat then the cat is cold. Young, round things are red. If something is round then it eats the cow. If something eats the cat then it needs the cow. If something is cold then it eats the cat. If the bald eagle eats the cat and the bald eagle is round then the cat eats the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not need the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-578_Q3", "context": "The bear is blue. The bear is nice. The bear sees the tiger. The dog needs the bear. The dog sees the tiger. The rabbit needs the dog. The tiger is rough. If someone is nice then they are rough. If someone is rough then they see the rabbit. All rough people are kind. If someone chases the rabbit and the rabbit is kind then they need the dog. If someone is green then they are nice. If someone is kind and they chase the bear then they chase the tiger. If someone chases the bear then they chase the rabbit. If the bear sees the rabbit then the rabbit is green. If the rabbit needs the dog then the rabbit sees the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger sees the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-473_Q20", "context": "Bob is nice. Dave is furry. Dave is kind. Dave is red. Dave is smart. Dave is white. Dave is young. Erin is kind. Erin is white. Harry is furry. Harry is smart. If someone is red then they are nice. All smart people are furry. Kind, furry people are young. Kind, white people are smart. If Erin is young and Erin is red then Erin is nice. Smart people are white. All young, white people are red. Young people are red. If someone is red then they are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-62_Q2", "context": "The bear does not chase the cat. The cat eats the bear. The cat eats the cow. The cat is blue. The cow does not eat the cat. The cow is not blue. The cow needs the bear. The rabbit chases the cat. The rabbit chases the cow. The rabbit eats the bear. The rabbit is red. The rabbit is young. If the rabbit is young then the rabbit needs the cow. If the bear chases the rabbit and the bear is young then the bear does not eat the rabbit. If someone needs the cow and the cow needs the bear then they chase the cow. If someone needs the cow then they chase the bear. If someone needs the cat then they eat the rabbit. If someone is nice then they need the cat. If someone chases the bear and they are red then they are nice. If someone is young then they are red. If someone needs the bear and they do not chase the bear then the bear eats the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not eat the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-657_Q3", "context": "The bald eagle chases the tiger. The bald eagle eats the cow. The bald eagle eats the tiger. The bald eagle is rough. The cat chases the bald eagle. The cat chases the tiger. The cat eats the cow. The cat is kind. The cow chases the cat. The cow is rough. The cow sees the cat. The tiger sees the cow. If someone sees the cow then the cow chases the bald eagle. If someone chases the bald eagle then the bald eagle eats the cow. If someone is cold then they eat the bald eagle. If the cow is rough and the cow eats the tiger then the tiger is cold. If someone is nice then they do not see the tiger. If the cow eats the tiger and the cow is kind then the tiger is blue. If someone sees the cat then they eat the tiger. If someone eats the bald eagle then they see the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow chases the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-417_Q10", "context": "The dog is not big. The dog is kind. The dog needs the lion. The dog needs the mouse. The lion is big. The lion needs the mouse. The lion visits the rabbit. The mouse likes the lion. The mouse visits the dog. The rabbit is blue. The rabbit is cold. If someone visits the mouse then the mouse is cold. If someone is cold and they like the rabbit then they like the mouse. If someone is cold then they need the dog. If someone needs the mouse and they visit the lion then they do not need the dog. If someone likes the mouse and they need the lion then they are round. If someone needs the dog then they visit the mouse. If someone needs the rabbit and they need the mouse then the rabbit is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not need the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-256_Q15", "context": "Anne is big. Anne is cold. Anne is nice. Anne is red. Anne is young. Bob is kind. Fiona is young. Harry is big. Harry is cold. Harry is kind. Harry is nice. Harry is quiet. Harry is red. Harry is young. Kind people are red. Red, kind people are nice. If someone is young then they are quiet. If someone is big and quiet then they are young. If someone is red and cold then they are quiet. If Fiona is red then Fiona is quiet. All quiet, big people are kind. All nice people are cold. If someone is nice then they are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-772_Q1", "context": "The cat eats the dog. The dog chases the cat. The lion is rough. The lion needs the cat. The tiger does not chase the cat. The tiger eats the lion. The tiger needs the cat. All young people are cold. If someone is big and they eat the tiger then they chase the lion. If the lion eats the dog then the lion is red. If the lion is cold and the lion chases the tiger then the tiger is rough. If someone chases the lion and the lion eats the dog then the dog does not need the lion. Rough people are young. If someone is young then they chase the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not chase the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1381_Q1", "context": "Charlie is furry. Charlie is round. Charlie is young. Erin is big. Erin is nice. Erin is rough. Erin is young. Fiona is big. Fiona is nice. Harry is big. Harry is nice. If something is young then it is kind. All kind things are young. If something is nice and rough then it is furry. If something is nice then it is young. Rough, kind things are furry. All round things are rough. If something is young and kind then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-520_Q1", "context": "Anne is cold. Anne is smart. Bob is big. Bob is cold. Bob is nice. Bob is not rough. Bob is smart. Charlie is not cold. Charlie is nice. Charlie is rough. Charlie is smart. Gary is quiet. Rough people are nice. Rough, big people are nice. If someone is furry and quiet then they are big. If Anne is furry and Anne is smart then Anne is quiet. All big people are furry. If someone is cold and quiet then they are rough. If Anne is smart then Anne is big. If someone is rough then they are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-917_Q22", "context": "Anne is young. Dave is nice. Dave is smart. Erin is nice. Fiona is big. Fiona is blue. Fiona is white. All young people are smart. If Erin is young and Erin is smart then Erin is blue. All smart people are big. If someone is young and furry then they are blue. If Erin is smart then Erin is not furry. Young, big people are not furry. If someone is nice and not furry then they are not white. If someone is young and not furry then they are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1235_Q8", "context": "Anne is blue. Anne is not furry. Anne is kind. Anne is quiet. Charlie is not blue. Charlie is red. Gary is big. Gary is cold. Gary is furry. Gary is quiet. Harry is big. If someone is furry and big then they are quiet. All cold people are furry. All big people are cold. Quiet people are kind. All cold, kind people are not blue. If someone is cold and not kind then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-601_Q2", "context": "Bob is blue. Bob is green. Charlie is rough. Fiona is big. Fiona is green. Fiona is rough. Harry is green. Harry is nice. Harry is rough. Harry is young. If someone is rough then they are green. If Harry is nice and Harry is big then Harry is smart. All big, smart people are rough. Green people are blue. If someone is green then they are young. If someone is nice and rough then they are big. If someone is big then they are smart. If someone is young then they are nice. All young people are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1098_Q9", "context": "Anne is not big. Anne is kind. Anne is white. Erin is big. Erin is nice. Erin is rough. Erin is smart. Erin is white. Gary is big. Gary is smart. Harry is nice. If someone is nice then they are smart. All nice, rough people are kind. If someone is big and not smart then they are not white. If someone is round then they are white. All smart people are round. All big, white people are round. All round, white people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-247_Q4", "context": "The bear is blue. The bear needs the squirrel. The bear sees the cat. The cat is rough. The cat needs the bear. The cat needs the rabbit. The rabbit is blue. The rabbit is green. The rabbit is rough. The squirrel is kind. If the cat needs the rabbit and the rabbit is kind then the cat is young. If something is blue then it sees the rabbit. If something sees the rabbit then it is kind. If something is green then it needs the cat. If something needs the rabbit and the rabbit chases the squirrel then it chases the squirrel. If something is young then it sees the rabbit. If something is blue then it chases the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not see the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-958_Q12", "context": "The bear chases the mouse. The cat chases the bear. The cat is blue. The cat is rough. The cat needs the bear. The mouse is big. The mouse is blue. The mouse needs the bear. The rabbit chases the mouse. The rabbit needs the bear. If something eats the cat and it is kind then the cat chases the bear. If something needs the bear then it is kind. If something needs the cat and the cat is nice then it chases the cat. If something is big then it needs the mouse. If something chases the cat and it needs the rabbit then the rabbit is kind. If the cat chases the bear and the cat is big then the cat eats the rabbit. If something needs the mouse then it eats the cat. If something chases the bear then it is big. If something is kind then it chases the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not eat the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-893_Q8", "context": "Bob is cold. Erin is kind. Erin is young. Fiona is kind. Fiona is red. Fiona is rough. Fiona is white. Harry is not cold. Harry is white. Harry is not young. If something is kind and cold then it is red. Rough things are red. If something is young then it is white. All rough, red things are young. Furry, rough things are cold. If Fiona is rough then Fiona is cold. All furry things are rough. If something is cold then it is furry. If Fiona is red then Fiona is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-685_Q16", "context": "Dave is green. Erin is furry. Fiona is blue. Fiona is furry. Harry is blue. Harry is smart. Harry is white. If someone is big then they are blue. All furry, kind people are big. If someone is furry then they are white. White, smart people are kind. All big people are kind. If Dave is blue then Dave is kind. If someone is green then they are furry. If someone is kind then they are big. If someone is white then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-896_Q12", "context": "Anne is big. Anne is furry. Anne is green. Anne is quiet. Bob is cold. Bob is furry. Gary is green. Harry is big. Harry is cold. Harry is green. Harry is nice. Green things are blue. All cold things are blue. If something is blue then it is big. Big things are nice. Nice, blue things are green. If something is blue and not big then it is quiet. All nice, green things are quiet. If something is blue and not cold then it is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-577_Q13", "context": "The bald eagle is nice. The bear is round. The bear likes the lion. The bear does not like the tiger. The bear does not need the lion. The bear visits the tiger. The lion is not blue. The lion likes the bear. The tiger is not kind. The tiger likes the lion. If someone needs the bald eagle and the bald eagle is kind then they like the lion. If someone is nice and they need the bald eagle then they visit the bear. If someone visits the bald eagle then the bald eagle needs the bear. If the bald eagle likes the bear and the bear needs the tiger then the bear is round. If someone needs the bear and they are nice then the bear likes the bald eagle. If someone visits the bald eagle then they are not red. If someone likes the tiger then they visit the bald eagle. If the lion likes the bear then the lion likes the tiger. If someone is round and they like the bald eagle then the bald eagle visits the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not like the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-139_Q12", "context": "The bald eagle eats the dog. The bald eagle is not young. The bear does not eat the bald eagle. The bear is cold. The bear is green. The bear does not need the bald eagle. The bear needs the dog. The bear sees the bald eagle. The dog is not kind. The squirrel eats the dog. The squirrel is green. The squirrel is red. The squirrel needs the dog. The squirrel sees the bear. If someone sees the bear and the bear is not kind then the bear is not young. If someone eats the dog and they need the bear then the bear needs the squirrel. If someone is cold then they need the bear. If someone sees the bald eagle and the bald eagle is cold then they need the bear. If someone is cold and they need the bear then they eat the squirrel. If someone eats the squirrel then the squirrel is cold. If the dog sees the bald eagle then the dog does not see the squirrel. If the dog sees the squirrel and the squirrel eats the bald eagle then the squirrel sees the bear. If someone needs the bear and they are not cold then the bear does not see the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not eat the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-322_Q1", "context": "The bear chases the rabbit. The cat needs the rabbit. The dog chases the cat. The dog is big. The dog is cold. The rabbit eats the cat. The rabbit does not need the cat. If something eats the bear then it eats the rabbit. If something eats the dog then it chases the bear. If something chases the bear then the bear needs the rabbit. If something needs the rabbit then it eats the dog. If something is big and it eats the dog then it does not chase the dog. If the rabbit chases the bear then the rabbit needs the dog. If something is cold and not big then it does not eat the bear. If the bear chases the cat and the bear chases the dog then the dog does not need the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat needs the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-323_Q2", "context": "Anne is quiet. Anne is round. Erin is round. Gary is green. Gary is round. Harry is rough. Harry is young. If Anne is green and Anne is round then Anne is nice. All kind, nice people are rough. Quiet, kind people are young. Kind people are round. Quiet, green people are kind. If someone is round then they are quiet. Kind people are quiet. If someone is young then they are nice. All round, nice people are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-255_Q4", "context": "Bob is big. Bob is blue. Bob is green. Bob is kind. Bob is rough. Bob is smart. Bob is young. Charlie is big. Charlie is kind. Dave is big. Dave is blue. Dave is green. Dave is young. Erin is green. If someone is green and kind then they are rough. If Bob is young and Bob is smart then Bob is big. If someone is rough and young then they are blue. Blue people are rough. If someone is kind and smart then they are big. If someone is young and smart then they are kind. All blue, green people are smart. All green people are kind. If someone is green and rough then they are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-692_Q2", "context": "The cat is not green. The cow eats the cat. The cow eats the lion. The cow is red. The lion sees the cat. The lion visits the tiger. The tiger eats the cat. The tiger eats the lion. The tiger does not visit the cow. The tiger does not visit the lion. If something eats the cat and it visits the tiger then the cat sees the lion. If the cat sees the lion then the cat visits the tiger. Big things are green. Rough, green things are not big. If the cat visits the tiger then the tiger is big. If something visits the tiger then it eats the cat. If something is green then it does not visit the tiger. If something eats the tiger and the tiger eats the cat then it does not visit the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not visit the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-672_Q2", "context": "The bear is cold. The cat is blue. The cat is rough. The cat needs the rabbit. The cat does not see the dog. The cat sees the rabbit. The dog is blue. The dog is round. The dog does not need the bear. The dog needs the rabbit. The dog sees the bear. The dog visits the rabbit. The rabbit is blue. The rabbit sees the cat. If someone visits the dog then the dog visits the rabbit. If someone needs the dog then they need the bear. If the rabbit is nice then the rabbit is rough. If someone sees the cat then they are not nice. If someone is cold and they visit the cat then the cat sees the bear. If someone is rough then they need the dog. If someone needs the bear and they are rough then the bear is rough. If someone is nice and they do not see the dog then the dog is cold. If someone visits the rabbit and they are not rough then they visit the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not see the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-241_Q4", "context": "The bald eagle is nice. The bald eagle is round. The cat does not see the squirrel. The cat visits the lion. The lion likes the squirrel. The lion sees the squirrel. The squirrel is not rough. The squirrel is round. The squirrel likes the cat. The squirrel sees the cat. The squirrel visits the cat. If something visits the cat then it is cold. If something likes the cat then it visits the lion. If something sees the bald eagle then it likes the lion. If something is nice then it likes the lion. If something is cold then it sees the squirrel. If something likes the lion then it sees the lion. If the squirrel visits the lion and the lion sees the squirrel then the squirrel sees the bald eagle. If something sees the bald eagle then the bald eagle visits the cat. If something sees the lion then the lion visits the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-869_Q10", "context": "The bald eagle is green. The bald eagle is nice. The bald eagle sees the rabbit. The dog needs the tiger. The rabbit sees the bald eagle. The rabbit visits the bald eagle. The rabbit visits the dog. The rabbit visits the tiger. The tiger is big. The tiger is kind. The tiger is red. The tiger sees the rabbit. Big people are red. If the rabbit visits the tiger and the rabbit visits the dog then the tiger needs the dog. If someone is red then they need the bald eagle. If someone is green then they see the bald eagle. If someone visits the bald eagle and they are red then the bald eagle is big. If someone visits the dog and they see the bald eagle then they are big. If someone sees the tiger then they need the bald eagle. If someone visits the dog and they see the bald eagle then the dog visits the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-773_Q11", "context": "Anne is blue. Anne is round. Dave is big. Dave is not blue. Dave is kind. Dave is not nice. Dave is smart. Fiona is nice. Fiona is rough. Gary is blue. Gary is rough. Gary is smart. If something is blue then it is not kind. Kind, nice things are blue. Smart, nice things are blue. If something is nice then it is smart. If something is nice and not kind then it is round. If something is nice and round then it is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-222_Q10", "context": "Charlie is red. Charlie is round. Charlie is young. Erin is not young. Gary is round. Harry is cold. Harry is kind. If someone is red and not young then they are kind. Young people are kind. Red people are kind. Furry people are cold. If someone is round then they are red. If Erin is young and Erin is green then Erin is round. If Charlie is green then Charlie is red. Kind people are furry. All cold, round people are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-846_Q14", "context": "The bald eagle likes the mouse. The dog eats the mouse. The dog is blue. The dog is nice. The dog is rough. The mouse does not eat the dog. The mouse likes the dog. The mouse likes the rabbit. The mouse does not visit the rabbit. The rabbit eats the dog. The rabbit is red. If something eats the dog then it visits the rabbit. If something is nice and rough then it visits the dog. If something eats the bald eagle then it is nice. If something is nice and it eats the rabbit then the rabbit is cold. If something likes the bald eagle and the bald eagle eats the mouse then the bald eagle eats the dog. If something is rough and it does not like the rabbit then the rabbit visits the dog. If something likes the dog and the dog visits the rabbit then the dog eats the rabbit. If something is blue and it visits the dog then it eats the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-488_Q14", "context": "The cat visits the rabbit. The cat visits the tiger. The cow is green. The cow is nice. The cow is rough. The cow needs the rabbit. The rabbit is rough. The tiger is green. The tiger is nice. The tiger is round. The tiger visits the cow. If someone visits the rabbit then the rabbit needs the tiger. If someone visits the cat then they need the rabbit. If someone is nice then they chase the rabbit. If someone is kind then they need the rabbit. If someone is round and they chase the rabbit then the rabbit is green. If someone visits the rabbit and the rabbit is green then they are kind. If someone needs the rabbit then they are round. If someone is rough then they need the cow. If someone visits the rabbit and the rabbit visits the cat then the rabbit chases the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit chases the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-234_Q13", "context": "Bob is nice. Charlie is rough. Erin is furry. Erin is nice. Fiona is blue. Fiona is nice. Fiona is white. All rough things are nice. If Fiona is not rough then Fiona is furry. All furry things are green. Nice things are quiet. If something is green then it is quiet. All quiet, nice things are furry. If something is quiet and green then it is blue. If something is green and not nice then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-581_Q10", "context": "Bob is furry. Bob is green. Charlie is furry. Charlie is green. Charlie is red. Charlie is round. Erin is blue. Erin is red. Erin is round. Harry is furry. Harry is round. Green, red people are blue. Blue people are quiet. If someone is furry then they are rough. If Erin is green then Erin is furry. All red, furry people are quiet. If Bob is rough and Bob is quiet then Bob is round. Rough people are furry. All rough, round people are red. All rough people are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-973_Q18", "context": "The bear is green. The bear needs the cow. The bear sees the cat. The bear sees the mouse. The cat is red. The cat sees the cow. The cow is green. The cow likes the bear. The cow needs the cat. The cow sees the bear. The cow sees the mouse. The mouse is nice. The mouse likes the cat. The mouse needs the cow. If someone likes the cat and they need the cow then the cow is nice. If someone likes the mouse then the mouse is green. If someone is cold then they like the mouse. All red people are cold. If someone sees the cat then the cat needs the mouse. All green people are cold. If someone is red then they are nice. If someone likes the mouse and they see the cow then they are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow needs the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-932_Q12", "context": "The dog chases the rabbit. The dog is blue. The dog likes the tiger. The dog needs the lion. The dog needs the tiger. The lion chases the dog. The lion is big. The lion likes the dog. The lion likes the tiger. The rabbit chases the lion. The rabbit is big. The rabbit is rough. The tiger chases the dog. The tiger is round. The tiger likes the rabbit. The tiger needs the dog. If something chases the rabbit then it is blue. If something is blue and it needs the lion then it needs the tiger. If something chases the dog then the dog is big. If something likes the lion and it likes the dog then the dog is cold. If something chases the dog and it is blue then it is cold. If something chases the lion then the lion chases the rabbit. If something chases the dog then it needs the rabbit. If something chases the tiger and the tiger is blue then the tiger needs the dog. If something is cold and it likes the tiger then it likes the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-748_Q8", "context": "Bob is blue. Bob is cold. Bob is green. Bob is quiet. Bob is rough. Bob is round. Bob is young. Dave is blue. Dave is cold. Dave is green. Dave is quiet. Dave is rough. Dave is round. Erin is green. Erin is rough. Gary is round. If something is green then it is young. Young things are cold. Round things are rough. All quiet things are round. If something is rough then it is green. If something is cold then it is quiet. All quiet things are round. Rough, green things are young. If Bob is quiet then Bob is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-608_Q9", "context": "The cat chases the mouse. The cat chases the rabbit. The cat is cold. The cat is rough. The cat likes the mouse. The cat likes the rabbit. The cat likes the squirrel. The mouse is young. The rabbit is round. The rabbit likes the mouse. The squirrel chases the rabbit. The squirrel is round. The squirrel is young. The squirrel needs the cat. If someone likes the mouse then they chase the rabbit. If someone likes the mouse then they chase the squirrel. If the mouse likes the squirrel then the mouse likes the rabbit. If someone is big and they like the mouse then the mouse chases the rabbit. All young, rough people are big. If someone is big then they chase the cat. If someone chases the mouse then they are young. If someone chases the rabbit then they like the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse likes the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-85_Q11", "context": "The bald eagle is green. The bald eagle likes the bear. The bald eagle visits the mouse. The bear eats the cow. The bear is blue. The bear visits the mouse. The cow eats the bald eagle. The cow eats the mouse. The cow is green. The cow is kind. The cow likes the bald eagle. The cow likes the bear. The cow visits the bear. The mouse eats the bear. If someone visits the mouse then they are green. If someone visits the cow and the cow likes the mouse then they visit the mouse. All red people are kind. If someone visits the cow then they eat the bald eagle. If someone eats the bald eagle and the bald eagle likes the mouse then the bald eagle is big. If someone is red and big then they like the mouse. If someone eats the bald eagle then they are red. If someone is green then they visit the cow. If the bald eagle likes the cow then the cow eats the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-639_Q17", "context": "Anne is cold. Erin is green. Erin is not nice. Fiona is cold. Fiona is green. Harry is cold. Harry is green. If something is nice and rough then it is kind. All rough, round things are kind. All round things are nice. Cold things are round. All nice, red things are rough. If Erin is kind and Erin is red then Erin is green. Nice, cold things are red. If Anne is green then Anne is not cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-459_Q5", "context": "The bald eagle does not need the cow. The bald eagle visits the cow. The cow is nice. The cow visits the bald eagle. The dog eats the bald eagle. The dog eats the lion. The dog is young. The dog needs the bald eagle. The lion is red. The lion visits the bald eagle. If something eats the cow and it visits the bald eagle then the cow eats the lion. If something needs the lion and the lion visits the bald eagle then the lion needs the bald eagle. If something visits the lion then the lion needs the bald eagle. If something eats the lion then it visits the lion. If the dog is young then the dog eats the cow. If something visits the bald eagle then it is not young. If the bald eagle is rough then the bald eagle is red. If something needs the lion and the lion needs the dog then it visits the dog. If something needs the bald eagle then it eats the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion needs the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-844_Q15", "context": "The cat sees the mouse. The dog sees the mouse. The dog sees the rabbit. The dog visits the rabbit. The mouse is kind. The mouse is round. The rabbit eats the cat. The rabbit is green. The rabbit is kind. The rabbit sees the dog. If someone visits the mouse then they are round. If someone eats the dog then the dog sees the rabbit. If someone eats the cat then they visit the mouse. If someone eats the rabbit and they visit the mouse then they are green. If someone is round then they eat the rabbit. If someone sees the mouse then the mouse eats the cat. If someone eats the dog and the dog is green then the dog eats the cat. If someone is green then they see the mouse. If someone sees the mouse then they eat the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not eat the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-698_Q10", "context": "Anne is furry. Dave is kind. Dave is smart. Fiona is furry. Fiona is smart. Fiona is white. Harry is nice. If Fiona is smart then Fiona is not nice. If something is nice and white then it is furry. White things are furry. Nice things are furry. Rough, smart things are white. All furry things are smart. White things are cold. If Dave is not rough then Dave is cold. If Harry is furry and Harry is smart then Harry is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-454_Q9", "context": "Bob is round. Dave is cold. Dave is green. Dave is smart. Dave is young. Erin is green. Erin is round. Erin is smart. Erin is white. Erin is young. Harry is cold. Harry is green. Harry is rough. Harry is round. Harry is smart. Harry is young. All green, white people are young. If Dave is smart and Dave is young then Dave is round. If someone is round then they are green. Young, smart people are cold. All young people are smart. Green people are white. If someone is young and rough then they are green. If someone is round and green then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-825_Q9", "context": "The cat eats the lion. The cat is nice. The cat is rough. The cat sees the squirrel. The lion eats the squirrel. The lion is rough. The lion needs the squirrel. The rabbit needs the cat. The rabbit sees the cat. The rabbit sees the lion. The squirrel eats the rabbit. The squirrel is nice. The squirrel is rough. The squirrel needs the cat. The squirrel needs the lion. The squirrel needs the rabbit. If someone sees the rabbit then the rabbit is blue. If someone sees the rabbit then they are blue. If someone needs the lion then they eat the rabbit. If someone is blue then they need the lion. If someone eats the lion then they need the lion. If someone sees the squirrel then they eat the rabbit. If someone needs the cat and the cat needs the lion then the cat sees the rabbit. If someone is green and they need the rabbit then they are nice. If the lion needs the cat then the cat is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit needs the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-882_Q10", "context": "The cat is big. The cat is green. The cat is young. The cat does not see the squirrel. The cat visits the cow. The cow is red. The cow sees the cat. The mouse is blue. The mouse is not young. The mouse likes the squirrel. The mouse sees the squirrel. The squirrel is blue. The squirrel does not like the cat. The squirrel likes the cow. The squirrel likes the mouse. The squirrel visits the cow. If someone is green and they like the squirrel then they like the cow. If someone is red then they visit the mouse. If the mouse visits the cow then the cow is young. If someone visits the mouse and they are green then the mouse is green. If someone likes the cow then they are green. If the squirrel visits the cow and the cow sees the squirrel then the squirrel is young. If the squirrel is green then the squirrel is red. If someone is red and they like the cat then the cat visits the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1034_Q9", "context": "Anne is big. Anne is cold. Anne is nice. Anne is quiet. Anne is rough. Anne is white. Charlie is not cold. Fiona is cold. Fiona is white. Gary is big. Gary is blue. Blue things are big. If Fiona is blue and Fiona is white then Fiona is not big. If Fiona is big then Fiona is quiet. If something is white then it is cold. Blue, nice things are cold. Blue things are rough. All cold, white things are nice. All quiet things are white. Rough, blue things are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1023_Q4", "context": "Bob is big. Bob is not nice. Bob is white. Charlie is cold. Charlie is rough. Charlie is white. Erin is not big. Erin is white. Gary is cold. Gary is round. All furry, white things are big. Cold, white things are furry. If something is white and big then it is not nice. Round things are rough. If something is cold and rough then it is white.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1158_Q10", "context": "Charlie is big. Charlie is blue. Charlie is not furry. Charlie is young. Dave is blue. Dave is furry. Dave is not quiet. Dave is white. Gary is furry. Harry is nice. If Dave is white and Dave is big then Dave is young. All nice people are big. All white people are nice. Furry people are nice. If someone is young and not quiet then they are nice. Young, big people are white. If someone is blue then they are young. Quiet people are young. If someone is big then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1077_Q7", "context": "Charlie is cold. Charlie is rough. Dave is cold. Dave is furry. Fiona is furry. Harry is cold. Harry is kind. If something is red then it is kind. All furry things are nice. If something is kind and red then it is quiet. Red, kind things are cold. If something is cold then it is red. Quiet, red things are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-745_Q3", "context": "Charlie is round. Dave is big. Dave is cold. Erin is big. Harry is big. Harry is cold. Harry is young. All young people are round. Round, cold people are green. White people are green. If someone is white then they are green. All white people are not quiet. All white, big people are not quiet. If someone is cold then they are young. All green, round people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-563_Q20", "context": "Bob is not cold. Charlie is not blue. Charlie is red. Charlie is smart. Dave is blue. Erin is big. Erin is not cold. If something is green and big then it is smart. All smart, rough things are cold. If something is green then it is cold. All rough things are big. Blue things are green. All rough things are blue. If Dave is blue and Dave is cold then Dave is rough. Smart things are red. If Charlie is blue and Charlie is not red then Charlie is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-607_Q6", "context": "The bear is big. The bear is green. The cat chases the cow. The cat is red. The cat visits the rabbit. The cow chases the cat. The cow needs the bear. The cow visits the rabbit. The rabbit is big. The rabbit needs the bear. The rabbit needs the cow. If someone is red then they chase the bear. If someone is green and they need the cow then they need the cat. If someone needs the bear and they are kind then the bear chases the cat. If the bear is big then the bear visits the cow. If someone visits the rabbit and they chase the bear then the bear needs the cow. If someone is green and they chase the cow then the cow chases the bear. If someone needs the cat then they need the rabbit. If someone needs the rabbit then the rabbit is red. If someone is rough and they need the cow then they need the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not need the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-498_Q14", "context": "The cow eats the lion. The cow is green. The cow is kind. The lion needs the rabbit. The mouse is young. The rabbit eats the lion. The rabbit is green. The rabbit likes the lion. The rabbit likes the mouse. The rabbit needs the lion. The rabbit needs the mouse. If someone needs the cow and the cow eats the mouse then the mouse is round. If the mouse likes the cow then the cow is young. If someone needs the rabbit then they need the mouse. If someone likes the mouse then they eat the rabbit. If someone needs the cow and they eat the rabbit then the cow likes the lion. If someone needs the cow and the cow is rough then they are round. If someone is rough and green then they need the cow. If the cow likes the lion then the cow is green. If someone likes the lion then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow eats the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-471_Q1", "context": "The bear eats the cow. The bear is blue. The bear visits the cow. The cow is big. The cow visits the lion. The lion eats the bear. The tiger visits the bear. If the tiger visits the bear and the tiger eats the bear then the bear chases the lion. If someone chases the cow then they are blue. If someone visits the cow then they chase the bear. If someone eats the bear and the bear is young then they are red. If someone chases the bear and the bear chases the tiger then the bear chases the lion. If someone eats the lion and the lion eats the tiger then they visit the tiger. If someone eats the cow and they chase the bear then they chase the tiger. If the bear is blue and the bear chases the lion then the lion chases the cow. If someone chases the cow and they eat the tiger then the tiger visits the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear eats the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-186_Q1", "context": "The bear is round. The bear likes the cat. The cat chases the bear. The dog is red. The dog is rough. The dog is round. The tiger is blue. If something is red then it chases the cat. If something is cold then it chases the tiger. If something likes the bear then the bear likes the tiger. If something sees the dog and the dog is red then the dog is round. If something likes the bear and the bear likes the dog then the bear sees the dog. If something is red and it chases the cat then it likes the bear. If the cat chases the dog and the dog is red then the dog is rough. If something likes the tiger then it is red. If something sees the bear then it likes the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-279_Q7", "context": "Bob is kind. Bob is smart. Dave is nice. Erin is smart. Harry is kind. Harry is round. Harry is smart. Round things are cold. All green, smart things are round. All rough, cold things are green. Nice things are rough. Smart things are cold. All cold things are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-942_Q7", "context": "Anne is blue. Bob is not big. Bob is blue. Bob is rough. Bob is not young. Charlie is not big. Charlie is blue. Fiona is not cold. Fiona is furry. Fiona is white. Fiona is young. If Anne is blue and Anne is furry then Anne is white. If Anne is blue then Anne is furry. If Charlie is white and Charlie is cold then Charlie is big. If something is white and not furry then it is young. White, blue things are rough. Young, rough things are white. White, cold things are big. If Charlie is furry and Charlie is rough then Charlie is young. White, rough things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-390_Q18", "context": "Bob is red. Bob is rough. Charlie is quiet. Charlie is not rough. Dave is rough. Gary is green. Gary is round. Quiet, red things are furry. If something is furry and quiet then it is round. If something is white and not rough then it is round. All red things are quiet. Rough things are quiet. If Dave is green then Dave is not white. Quiet, rough things are red. If something is quiet then it is red. All round things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-66_Q5", "context": "Bob is big. Bob is cold. Bob is red. Dave is big. Dave is cold. Dave is white. Fiona is big. Fiona is nice. Gary is red. Gary is young. If Bob is nice then Bob is young. All nice, big people are young. If someone is green then they are big. Big, green people are nice. If someone is green then they are big. If someone is white and young then they are red. Cold, red people are green. All cold people are white. If someone is young and nice then they are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-267_Q17", "context": "The lion eats the squirrel. The lion is blue. The lion sees the rabbit. The lion sees the squirrel. The mouse sees the lion. The rabbit eats the lion. The rabbit is young. The rabbit sees the mouse. The rabbit sees the squirrel. The squirrel is nice. The squirrel sees the rabbit. The squirrel visits the lion. If something eats the squirrel then it sees the squirrel. If something is nice then it is young. If something sees the mouse then it eats the mouse. If something sees the lion then it is green. If something eats the squirrel and the squirrel is nice then the squirrel eats the rabbit. If the lion visits the squirrel then the squirrel eats the lion. If the lion is green and the lion eats the squirrel then the lion is nice. If something sees the mouse and it visits the lion then the lion is green. If something is nice and young then it sees the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not eat the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1067_Q8", "context": "Charlie is furry. Charlie is green. Fiona is big. Fiona is cold. Fiona is green. Gary is furry. Gary is green. Gary is young. Harry is big. Harry is green. Harry is white. Harry is young. All big people are white. If Fiona is furry then Fiona is green. If someone is white and cold then they are nice. All nice, white people are young. If someone is furry then they are young. If Gary is green then Gary is nice. White, furry people are nice. Young people are big. If someone is young and nice then they are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-42_Q3", "context": "Anne is rough. Charlie is blue. Charlie is kind. Charlie is rough. Charlie is smart. Fiona is red. Gary is red. If something is rough then it is kind. All blue, red things are young. All young, blue things are white. All white, rough things are blue. If something is rough then it is smart. Blue, rough things are red. All young things are red. Smart, kind things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-969_Q21", "context": "The lion chases the tiger. The lion eats the rabbit. The lion eats the squirrel. The lion is nice. The lion needs the tiger. The rabbit chases the tiger. The rabbit eats the tiger. The rabbit does not need the tiger. The squirrel eats the rabbit. The squirrel eats the tiger. The squirrel is blue. The squirrel is red. The tiger eats the rabbit. The tiger does not eat the squirrel. If something eats the squirrel then it is blue. If something needs the lion then the lion chases the rabbit. If the lion chases the rabbit then the rabbit eats the squirrel. If the rabbit is blue then the rabbit is nice. If something eats the rabbit and it chases the squirrel then the rabbit is not nice. If something chases the squirrel then it is nice. If something needs the tiger then it needs the lion. If something needs the rabbit and the rabbit needs the squirrel then it needs the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-550_Q6", "context": "The bald eagle is blue. The bald eagle is nice. The bald eagle is rough. The bald eagle likes the cat. The bald eagle needs the cow. The bald eagle visits the cow. The cat is blue. The cat likes the squirrel. The cow needs the bald eagle. The squirrel is kind. The squirrel is nice. The squirrel likes the bald eagle. If something visits the bald eagle then it likes the squirrel. If something likes the squirrel then the squirrel is nice. If something needs the squirrel and it visits the cow then the squirrel visits the bald eagle. If something likes the cat then it needs the squirrel. If something visits the bald eagle then the bald eagle is blue. If something is kind and it likes the squirrel then the squirrel likes the cat. If the bald eagle needs the squirrel and the squirrel is rough then the bald eagle is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not visit the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-727_Q21", "context": "The bear eats the dog. The bear eats the tiger. The dog is round. The lion eats the dog. The lion visits the bear. The tiger eats the bear. The tiger is round. If someone eats the bear then they like the tiger. If someone eats the lion and the lion visits the bear then the bear visits the dog. If someone is round and blue then they are big. If someone visits the bear then the bear likes the tiger. If the bear eats the lion then the lion likes the bear. If someone is round then they are blue. If someone likes the tiger then they eat the lion. If someone eats the bear and they eat the lion then the bear is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not visit the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-142_Q21", "context": "The cat eats the rabbit. The cat is blue. The cow chases the cat. The cow eats the rabbit. The rabbit chases the cow. The rabbit sees the cat. The squirrel sees the cow. Blue things are not cold. If something eats the rabbit then it is nice. If something sees the cow then it sees the rabbit. If something is round then it chases the rabbit. If the cow sees the rabbit then the rabbit is blue. If something sees the cat and the cat chases the rabbit then the cat chases the squirrel. If something is nice then it sees the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-707_Q8", "context": "Charlie is kind. Charlie is nice. Fiona is kind. Fiona is nice. Fiona is red. Fiona is rough. Gary is blue. Gary is green. Gary is red. Harry is blue. Harry is green. Harry is nice. If something is rough and nice then it is blue. If Charlie is green then Charlie is smart. If something is nice then it is green. All smart things are red. All blue, green things are kind. All green, kind things are nice. If Gary is red then Gary is smart. If something is red and smart then it is rough. All kind, rough things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-358_Q3", "context": "Bob is big. Dave is quiet. Dave is red. Dave is white. Gary is red. Gary is white. Harry is blue. If someone is quiet then they are nice. If someone is blue and big then they are nice. If someone is nice then they are red. All young people are quiet. All big people are young. All young, blue people are white. All nice people are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-779_Q1", "context": "Anne is rough. Anne is smart. Dave is furry. Fiona is big. Fiona is blue. Fiona is furry. Fiona is white. Harry is big. Harry is blue. Harry is round. Harry is smart. Harry is white. If someone is white then they are blue. All blue, furry people are smart. Furry people are blue. If Dave is smart and Dave is big then Dave is white. All smart, rough people are round. Furry, white people are rough. All furry people are big. All round people are white. Blue, rough people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-961_Q8", "context": "The lion is big. The lion is rough. The lion likes the rabbit. The lion sees the rabbit. The lion sees the squirrel. The mouse is big. The mouse needs the lion. The rabbit likes the squirrel. The rabbit needs the lion. The rabbit needs the squirrel. The rabbit sees the mouse. The squirrel is young. If something sees the squirrel then it needs the lion. If something needs the lion then it likes the squirrel. If the lion is young then the lion likes the rabbit. If something likes the rabbit and the rabbit is rough then the rabbit needs the lion. If something needs the rabbit then it is red. If the mouse likes the squirrel then the squirrel needs the mouse. If something needs the mouse and it is young then the mouse likes the lion. If something likes the lion then it needs the rabbit. If the lion needs the mouse and the mouse needs the squirrel then the lion likes the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not like the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-141_Q11", "context": "Charlie is furry. Charlie is rough. Dave is blue. Dave is furry. Dave is white. Erin is nice. Erin is rough. Erin is smart. Harry is blue. Harry is cold. Harry is furry. Harry is white. White, nice things are rough. All cold, smart things are white. If something is white and rough then it is nice. Rough things are smart. All furry, blue things are nice. All nice, rough things are cold. If something is smart then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-699_Q24", "context": "The dog eats the squirrel. The dog likes the rabbit. The dog likes the tiger. The dog sees the squirrel. The dog sees the tiger. The rabbit is kind. The rabbit sees the squirrel. The squirrel eats the rabbit. The tiger eats the dog. The tiger sees the dog. If something likes the rabbit and the rabbit is rough then it eats the tiger. If something eats the tiger then the tiger is kind. If the tiger is rough then the tiger does not like the dog. If something is rough and not round then it sees the rabbit. All kind things are rough. If something eats the rabbit then the rabbit is nice. If something is rough then it eats the squirrel. If something likes the rabbit and the rabbit sees the tiger then the tiger sees the dog. If something eats the tiger then the tiger likes the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger eats the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-646_Q10", "context": "Bob is nice. Charlie is not kind. Charlie is nice. Charlie is round. Dave is cold. Dave is young. Erin is cold. Erin is red. Erin is not round. Erin is young. Kind, nice things are cold. If something is red then it is cold. Nice things are round. If Bob is round and Bob is big then Bob is red. If something is round then it is big. Cold things are young. If Dave is big then Dave is cold. If Erin is young and Erin is kind then Erin is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-678_Q3", "context": "Anne is big. Anne is furry. Anne is rough. Erin is furry. Erin is red. Erin is rough. Erin is round. Fiona is red. Fiona is young. Harry is rough. If something is rough and smart then it is furry. All red, rough things are big. Smart, furry things are round. Rough things are young. All furry, big things are red. All furry, big things are smart. Rough things are furry. If Erin is big and Erin is young then Erin is smart. All young things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-676_Q15", "context": "Anne is kind. Charlie is white. Dave is blue. Dave is kind. Dave is white. Erin is kind. Erin is young. Young, kind people are big. If someone is kind then they are blue. If someone is kind and big then they are young. If someone is blue and kind then they are big. If someone is white and blue then they are cold. Big people are smart. All white, blue people are smart. All young, smart people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-238_Q14", "context": "The cat chases the lion. The cat needs the lion. The cat needs the mouse. The lion chases the cat. The lion is big. The lion is red. The lion is rough. The lion likes the rabbit. The lion needs the cat. The mouse needs the lion. The rabbit is red. The rabbit likes the lion. If someone needs the lion and the lion likes the rabbit then the rabbit chases the mouse. Big people are red. If someone is rough then they are cold. If someone needs the rabbit and they are round then the rabbit likes the mouse. If someone needs the cat and they like the lion then the lion needs the mouse. If someone is red and they chase the mouse then they are rough. If someone likes the cat then they need the mouse. If someone is cold then they need the cat. If someone chases the lion and the lion is big then they chase the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse needs the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-958_Q12", "context": "Anne is cold. Anne is furry. Anne is green. Dave is not green. Dave is nice. Erin is cold. Harry is furry. If something is young then it is furry. Cold things are furry. All big, kind things are young. If something is kind then it is young. Young, kind things are big. If something is cold then it is green. If something is furry then it is nice. All furry, big things are cold. If Harry is furry then Harry is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-522_Q23", "context": "The bear is kind. The bear is young. The lion is blue. The lion is kind. The mouse is blue. The rabbit is red. The rabbit is not young. If someone is kind then they eat the lion. If someone eats the bear and they eat the lion then the lion is cold. If someone visits the mouse then the mouse does not eat the bear. If someone is kind then they eat the mouse. If someone eats the lion then they are red. If someone visits the lion and the lion needs the mouse then they visit the mouse. If someone visits the bear and the bear eats the mouse then the mouse needs the lion. If someone eats the mouse and they are red then the mouse is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not eat the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-438_Q15", "context": "The bear is round. The bear likes the rabbit. The bear needs the rabbit. The cow is not green. The cow is kind. The cow needs the tiger. The cow sees the tiger. The rabbit is green. The rabbit is kind. The rabbit likes the tiger. The rabbit needs the tiger. The tiger is green. The tiger needs the cow. The tiger does not see the cow. All kind things are not round. If something needs the bear then the bear likes the cow. If something is green and it needs the rabbit then the rabbit is green. If something likes the rabbit then it is rough. If something needs the bear and it likes the tiger then the tiger is round. If the rabbit likes the tiger and the rabbit is not round then the tiger is round. If something is round then it is blue. If something is blue then it likes the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not like the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-700_Q11", "context": "The bald eagle chases the bear. The bald eagle chases the dog. The bald eagle likes the squirrel. The bear is not kind. The bear is rough. The bear visits the squirrel. The dog is blue. The dog is green. The dog visits the bald eagle. The squirrel chases the dog. The squirrel likes the bear. The squirrel likes the dog. If something chases the bear and it visits the bear then it does not chase the bald eagle. If something is kind and it visits the squirrel then the squirrel is blue. If something is green then it visits the bear. If the dog visits the bear then the dog chases the squirrel. If something visits the dog and it is nice then the dog is blue. If something likes the squirrel and the squirrel visits the bear then it is blue. If something chases the squirrel then the squirrel is green. If the dog visits the bear and the bear does not like the dog then the dog likes the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-866_Q3", "context": "Anne is not quiet. Anne is white. Erin is round. Gary is blue. Gary is quiet. Gary is red. Gary is rough. Gary is round. Gary is young. Harry is not young. All blue, young people are red. All white, rough people are red. If someone is young and red then they are blue. If someone is white and round then they are rough. White people are round. All red people are round. If Gary is white and Gary is blue then Gary is not rough. If someone is red and round then they are young. If someone is round and not white then they are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-151_Q4", "context": "The bear is big. The cat is not blue. The cat is green. The cat needs the bear. The cat sees the bear. The cow likes the cat. The cow likes the rabbit. The cow sees the rabbit. The rabbit is green. The rabbit needs the bear. The rabbit sees the bear. If someone sees the cow then they are rough. If someone likes the cow then the cow does not see the rabbit. If someone sees the rabbit and they see the cow then they are round. If the cow is green then the cow sees the cat. If someone is green then they see the cat. If someone is green and they like the rabbit then they need the bear. If someone sees the cat and they are green then they need the cat. If someone sees the rabbit and they do not like the cow then the cow is not green. If someone likes the rabbit and the rabbit needs the cat then they are green.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not see the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-169_Q9", "context": "The bear eats the cow. The bear is big. The bear is cold. The bear visits the cow. The bear visits the mouse. The cow sees the mouse. The cow visits the bear. The dog eats the cow. The dog is big. The dog is kind. The dog is round. The dog sees the bear. The dog sees the cow. The dog visits the bear. The mouse is kind. The mouse visits the bear. If someone visits the cow and they visit the dog then the cow is kind. All blue people are round. If someone sees the bear then they eat the cow. If someone sees the cow then they are blue. If someone is round and they visit the bear then they eat the dog. If someone is round then they see the bear. If someone is kind then they see the cow. If someone sees the cow and they visit the mouse then the cow visits the dog. If someone is kind then they see the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse sees the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-589_Q21", "context": "The bear is young. The cow likes the bear. The cow sees the squirrel. The lion is cold. The lion is nice. The lion sees the cow. The squirrel needs the lion. If someone is nice then they like the cow. If someone likes the lion then they like the squirrel. If someone likes the bear then the bear likes the lion. If someone likes the cow and the cow likes the bear then they see the squirrel. If the lion sees the squirrel then the squirrel is nice. If the cow is cold then the cow sees the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not see the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-152_Q4", "context": "The bald eagle is green. The bald eagle is round. The bald eagle needs the rabbit. The bald eagle sees the cow. The bald eagle sees the rabbit. The cow needs the bald eagle. The cow does not need the squirrel. The rabbit chases the cow. The rabbit is cold. The squirrel is round. The squirrel needs the bald eagle. The squirrel needs the cow. If something sees the rabbit then it chases the bald eagle. If something is green then it does not see the squirrel. If something needs the bald eagle and it is cold then it sees the squirrel. If something sees the bald eagle then the bald eagle needs the squirrel. If something sees the squirrel and it is red then the squirrel does not need the bald eagle. If something needs the bald eagle and it is not red then the bald eagle chases the cow. If something sees the rabbit and it needs the rabbit then the rabbit needs the bald eagle. If something sees the bald eagle then it is cold. If something needs the rabbit and the rabbit sees the squirrel then the squirrel sees the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle sees the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-1041_Q8", "context": "The cow is cold. The dog is young. The dog sees the cow. The dog visits the cow. The rabbit does not eat the dog. The rabbit does not eat the squirrel. The rabbit is cold. The rabbit visits the squirrel. The squirrel is cold. The squirrel is not round. If someone visits the squirrel then the squirrel eats the rabbit. If someone eats the cow then the cow sees the dog. If the dog sees the cow and the dog eats the cow then the cow does not eat the dog. If someone is round and red then they eat the cow. If someone eats the rabbit then they eat the cow. If someone visits the rabbit then the rabbit visits the dog. If someone sees the dog then they eat the rabbit. If someone sees the squirrel and the squirrel sees the cow then the cow sees the squirrel. If someone eats the squirrel and they see the squirrel then the squirrel does not see the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not see the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-143_Q14", "context": "The cat is blue. The cat sees the lion. The cat visits the squirrel. The cow is not blue. The cow likes the cat. The lion is green. The squirrel is blue. The squirrel likes the cat. The squirrel likes the cow. The squirrel sees the lion. All green things are kind. If something visits the squirrel and it sees the squirrel then it sees the cat. If the lion sees the cat then the cat is green. If something is green then it visits the cat. If something is green and kind then it visits the cow. If something sees the lion then the lion sees the cat. If something is kind then it sees the squirrel. If something is kind then it likes the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow sees the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-707_Q14", "context": "The bear is rough. The bear needs the cow. The bear needs the tiger. The bear sees the dog. The cow is cold. The cow is green. The cow needs the tiger. The cow sees the dog. The dog is cold. The dog sees the tiger. The tiger eats the bear. The tiger is cold. The tiger needs the bear. The tiger sees the cow. If something eats the tiger then the tiger is young. If something is cold and it needs the tiger then it eats the dog. If the tiger sees the cow then the tiger eats the cow. If something needs the bear and the bear sees the dog then the dog is green. If something needs the dog then the dog needs the tiger. If something eats the dog then it needs the dog. If something sees the tiger then the tiger is cold. If something eats the cow then it is cold. If something needs the cow and the cow needs the bear then the bear needs the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-823_Q6", "context": "Charlie is furry. Charlie is green. Charlie is nice. Charlie is quiet. Charlie is rough. Charlie is white. Erin is green. Fiona is nice. Fiona is rough. Fiona is white. Fiona is young. Harry is furry. Harry is rough. Harry is white. Rough things are furry. If something is quiet then it is white. If Harry is green and Harry is rough then Harry is nice. White things are young. Rough things are young. If something is rough and green then it is quiet. If something is green then it is quiet. Rough, furry things are white. If something is green and young then it is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-316_Q20", "context": "Anne is big. Charlie is furry. Charlie is nice. Dave is big. Dave is smart. Dave is young. Fiona is young. Young things are cold. If something is furry then it is cold. All round, young things are big. If Fiona is smart then Fiona is young. If Fiona is big then Fiona is smart. If something is smart and round then it is nice. Young, cold things are big. Smart things are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-212_Q17", "context": "The cow is nice. The cow visits the mouse. The cow does not visit the tiger. The lion sees the cow. The mouse is green. The mouse does not like the cow. The mouse does not like the tiger. The mouse sees the cow. The mouse sees the lion. The tiger does not like the cow. The tiger does not like the lion. If something sees the mouse then the mouse visits the tiger. If something likes the cow then it sees the mouse. If something visits the tiger and it sees the lion then the lion sees the tiger. If something visits the mouse then it is blue. If something is cold then it likes the cow. If something sees the cow and it visits the lion then the cow is red. Blue things are cold. If the mouse sees the lion and the lion does not visit the mouse then the mouse likes the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-114_Q13", "context": "Anne is cold. Anne is smart. Dave is big. Dave is cold. Dave is rough. Dave is smart. Erin is kind. Erin is rough. Fiona is big. Fiona is cold. Fiona is rough. Cold things are green. All green things are white. All smart things are cold. If Erin is white and Erin is big then Erin is kind. All green things are big. Kind things are white. If something is big then it is rough. White things are green. Big, white things are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-608_Q18", "context": "Charlie is nice. Erin is red. Erin is rough. Gary is young. Harry is furry. Harry is nice. Harry is rough. All rough people are quiet. Young people are furry. All rough people are quiet. If Gary is nice and Gary is quiet then Gary is furry. If someone is quiet and red then they are green. If someone is furry then they are red. If someone is nice then they are rough. All rough, quiet people are green. Red, young people are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-32_Q4", "context": "The bald eagle likes the bear. The bald eagle sees the lion. The bear is green. The bear likes the bald eagle. The bear visits the bald eagle. The bear visits the tiger. The lion sees the bald eagle. The lion sees the bear. The lion visits the tiger. The tiger likes the lion. The tiger sees the bald eagle. The tiger sees the lion. If someone sees the bear then the bear likes the tiger. If someone visits the bald eagle then the bald eagle is blue. If someone visits the bald eagle and the bald eagle is red then the bald eagle visits the bear. If someone is green then they like the tiger. If someone likes the lion then they are green. If someone sees the bear then the bear visits the lion. If someone likes the tiger then they visit the lion. If someone is green and they see the bald eagle then the bald eagle likes the lion. If someone is young then they see the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not like the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-707_Q15", "context": "Charlie is not green. Charlie is kind. Charlie is not round. Dave is furry. Dave is kind. Erin is cold. Erin is not green. Erin is not kind. Erin is young. Harry is cold. Harry is round. Harry is young. If something is big then it is round. If something is furry then it is cold. All cold things are big. If something is cold and young then it is not green. If something is furry and not round then it is young. All furry, round things are young. If something is cold and not young then it is kind. Furry, green things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1147_Q7", "context": "Anne is blue. Anne is green. Anne is kind. Anne is quiet. Anne is rough. Bob is round. Dave is blue. Dave is green. Dave is nice. Dave is quiet. Harry is green. Harry is nice. If Harry is blue and Harry is rough then Harry is quiet. Kind, round things are rough. If Dave is quiet then Dave is round. If Bob is green and Bob is blue then Bob is rough. Quiet, green things are blue. All nice, green things are kind. If something is quiet then it is round. All green, blue things are quiet. Kind things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-665_Q17", "context": "Anne is blue. Anne is not rough. Anne is young. Charlie is not big. Charlie is green. Charlie is white. Charlie is not young. Dave is rough. Harry is big. Harry is not round. If someone is rough then they are young. If Harry is blue and Harry is not big then Harry is green. All blue people are green. If someone is young then they are blue. If Dave is green and Dave is big then Dave is not rough. If Harry is young then Harry is not rough. Round, young people are white. If someone is big and not rough then they are not round. All green, young people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-239_Q11", "context": "Charlie is round. Dave is furry. Dave is white. Fiona is furry. Fiona is rough. Fiona is smart. Harry is smart. If someone is white and smart then they are red. If someone is round then they are furry. All smart, red people are rough. If someone is round and furry then they are big. Round, big people are white. If someone is round and white then they are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-29_Q18", "context": "Bob is smart. Erin is cold. Erin is furry. Erin is kind. Erin is quiet. Erin is white. Gary is furry. Gary is kind. Gary is quiet. Gary is smart. Harry is furry. If someone is smart then they are kind. If someone is kind then they are smart. All white, smart people are cold. If someone is kind and cold then they are furry. If someone is furry and blue then they are kind. All cold people are kind. White, furry people are quiet. All quiet people are kind. All kind people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-849_Q11", "context": "Bob is big. Bob is quiet. Bob is young. Dave is red. Erin is furry. Erin is quiet. Erin is rough. Erin is round. Harry is quiet. Harry is round. If Dave is quiet and Dave is young then Dave is big. Rough, round things are big. Rough, quiet things are furry. If something is rough and round then it is furry. If something is red then it is young. If something is rough then it is round. If something is young then it is rough. If something is big then it is quiet. Round, quiet things are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-216_Q10", "context": "Bob is cold. Bob is white. Bob is young. Erin is white. Erin is young. Gary is kind. Gary is round. Harry is kind. Harry is rough. Harry is round. Harry is young. If someone is white then they are rough. If someone is cold and rough then they are young. If someone is round and kind then they are young. If someone is kind and young then they are smart. If someone is smart then they are white. If someone is young and rough then they are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-458_Q17", "context": "Bob is green. Charlie is big. Charlie is green. Charlie is kind. Charlie is smart. Fiona is big. Fiona is furry. Fiona is nice. Fiona is smart. Harry is big. White, big people are green. Green people are smart. All nice people are kind. All big people are nice. Furry, white people are kind. Kind, big people are white. If Bob is furry and Bob is big then Bob is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-67_Q10", "context": "Anne is big. Anne is furry. Bob is white. Charlie is furry. Charlie is not rough. Gary is big. Gary is rough. If Gary is cold and Gary is big then Gary is smart. All rough people are cold. If someone is big then they are cold. All rough, smart people are white. If Bob is smart and Bob is not big then Bob is cold. All rough, nice people are furry. If someone is white and not cold then they are not nice. All smart, white people are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-140_Q4", "context": "The dog chases the tiger. The dog eats the mouse. The dog visits the lion. The lion chases the mouse. The lion chases the tiger. The lion is kind. The lion visits the mouse. The lion visits the tiger. The mouse chases the lion. The mouse chases the tiger. The tiger chases the mouse. If someone eats the tiger and they are red then they visit the mouse. If someone chases the mouse then they visit the dog. If someone chases the tiger and the tiger visits the dog then the tiger eats the mouse. If the mouse visits the dog then the dog chases the tiger. If someone chases the mouse and they eat the mouse then the mouse eats the tiger. If someone chases the dog then the dog visits the lion. If the mouse eats the lion and the lion visits the dog then the mouse chases the tiger. If someone eats the tiger then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not visit the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-265_Q11", "context": "The cat eats the rabbit. The cat is cold. The cat sees the dog. The dog eats the rabbit. The dog eats the tiger. The dog is nice. The dog is rough. The dog sees the cat. The rabbit eats the tiger. The rabbit is red. The tiger eats the dog. The tiger is young. All young things are nice. If something likes the tiger then it eats the cat. If something is nice then it likes the tiger. If the tiger eats the cat and the tiger likes the rabbit then the tiger sees the cat. If something sees the tiger and the tiger likes the dog then it is red. All rough things are red. If something eats the cat then the cat likes the rabbit. If something is rough and it sees the tiger then it likes the dog. If something likes the rabbit then it is young.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-55_Q20", "context": "Bob is cold. Erin is blue. Fiona is big. Fiona is not round. Fiona is white. Harry is not blue. Harry is not white. All quiet people are big. Cold people are big. If someone is blue then they are big. White, cold people are blue. If someone is white and cold then they are blue. White, blue people are quiet. If someone is round and quiet then they are kind. All quiet, white people are round. All big people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-501_Q3", "context": "The bear chases the squirrel. The bear is blue. The bear sees the mouse. The cow chases the bear. The cow chases the squirrel. The cow eats the bear. The cow sees the mouse. The mouse chases the cow. The mouse is rough. The squirrel is green. If something sees the mouse and the mouse chases the cow then the cow is rough. If something eats the mouse then it is cold. If the squirrel is blue and the squirrel sees the cow then the squirrel is nice. If something chases the cow and the cow is nice then it eats the squirrel. If something is rough then it is blue. If something sees the bear and the bear is green then the bear chases the squirrel. If something is cold then it sees the cow. If something eats the mouse and the mouse sees the bear then the mouse is green. If something is blue then it eats the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-32_Q15", "context": "The lion chases the squirrel. The lion chases the tiger. The lion eats the squirrel. The lion is blue. The lion is nice. The lion is red. The rabbit chases the lion. The rabbit does not eat the squirrel. The rabbit is young. The rabbit likes the tiger. The squirrel chases the rabbit. The tiger chases the lion. The tiger eats the squirrel. The tiger is green. If something eats the tiger then it eats the lion. If something is green then it eats the lion. If the lion eats the rabbit then the rabbit is nice. If something is nice and it does not eat the squirrel then it is blue. If something is blue then it eats the rabbit. If the lion chases the squirrel then the squirrel is not green. If the rabbit chases the lion then the rabbit likes the squirrel. If something eats the rabbit then it is not green.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not eat the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-676_Q7", "context": "The bald eagle is kind. The bald eagle is nice. The bald eagle needs the cat. The cat needs the squirrel. The lion is kind. The squirrel does not see the cat. The squirrel visits the bald eagle. If something sees the cat then it visits the cat. If something is red then it visits the cat. If something needs the lion then it does not visit the cat. If something visits the cat then the cat is kind. If the cat is red and the cat visits the bald eagle then the bald eagle does not visit the cat. If something visits the squirrel and the squirrel sees the cat then it visits the bald eagle. If something is kind then it sees the cat. If something visits the squirrel and it does not see the lion then the lion is not cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-857_Q1", "context": "The bear chases the lion. The bear is blue. The bear is nice. The cat chases the bear. The cat needs the bear. The cat sees the bear. The cat sees the tiger. The lion is blue. The tiger does not chase the lion. The tiger sees the bear. If something chases the cat and the cat is not cold then it needs the bear. If something chases the bear and the bear is nice then the bear chases the tiger. If something chases the lion and it sees the cat then it is not blue. If the bear needs the cat then the cat does not need the lion. If something sees the lion then the lion is rough. If something needs the lion then it needs the cat. If the bear chases the tiger then the bear sees the lion. If something is rough then it needs the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1267_Q11", "context": "Bob is blue. Bob is furry. Bob is round. Bob is young. Charlie is quiet. Charlie is round. Dave is kind. Dave is round. Gary is blue. Gary is cold. If Charlie is cold then Charlie is furry. All round, blue people are kind. All young, cold people are round. If someone is round and kind then they are young. All kind, blue people are cold. If someone is furry then they are cold. If Gary is quiet then Gary is young. Blue people are furry. All furry people are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-14_Q17", "context": "Charlie is kind. Charlie is smart. Charlie is young. Dave is quiet. Dave is smart. Fiona is quiet. Fiona is young. Harry is furry. Harry is nice. Harry is round. Harry is smart. Furry, kind things are round. All smart things are nice. If Charlie is furry and Charlie is round then Charlie is smart. All nice things are furry. If something is nice and furry then it is kind. Quiet, furry things are smart. If something is kind then it is smart. Round, smart things are young. All smart, furry things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-670_Q6", "context": "The bald eagle eats the dog. The bald eagle is not green. The bald eagle does not need the dog. The bald eagle needs the rabbit. The bald eagle does not visit the dog. The dog is green. The dog needs the bald eagle. The rabbit eats the squirrel. The rabbit is not young. The rabbit needs the dog. The squirrel is kind. If someone needs the squirrel then the squirrel needs the bald eagle. If someone eats the rabbit then they are young. If the dog is green and the dog needs the rabbit then the dog visits the rabbit. Nice people are not green. If the dog is green then the dog eats the bald eagle. If the dog is not young then the dog eats the bald eagle. If someone is green and they eat the dog then the dog needs the bald eagle. If someone eats the bald eagle then they need the rabbit. If someone visits the rabbit then the rabbit is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not need the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-414_Q1", "context": "The bald eagle chases the squirrel. The bald eagle is not kind. The cow does not chase the squirrel. The cow is not green. The rabbit chases the bald eagle. The rabbit chases the cow. The rabbit chases the squirrel. The rabbit eats the bald eagle. The rabbit visits the bald eagle. The squirrel does not eat the bald eagle. The squirrel visits the cow. If someone is kind then they eat the squirrel. If someone chases the cow then they are kind. If someone eats the squirrel then the squirrel chases the cow. If someone eats the rabbit then the rabbit chases the cow. If someone eats the rabbit and the rabbit is blue then the rabbit is not green. If someone eats the squirrel then the squirrel does not chase the bald eagle. If someone visits the squirrel then the squirrel is not round.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit visits the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-1040_Q8", "context": "The cat eats the cow. The cat likes the squirrel. The cat needs the cow. The cat needs the squirrel. The cow likes the cat. The cow likes the mouse. The mouse likes the cat. The squirrel eats the cat. The squirrel eats the mouse. The squirrel is cold. The squirrel is green. The squirrel is nice. The squirrel likes the cat. The squirrel likes the mouse. If something likes the cat and the cat likes the cow then the cat is round. If something is round and green then it needs the cow. If something eats the cow and it is green then it needs the mouse. If something needs the squirrel and it eats the cat then the cat is nice. If something likes the cat then it needs the cat. If something needs the mouse then the mouse is green. If something is green then it eats the cow. If something needs the cow and it eats the cat then it needs the cat. If something is green then it eats the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-789_Q4", "context": "Anne is big. Anne is green. Anne is white. Bob is big. Charlie is big. Charlie is blue. Charlie is smart. Charlie is white. Fiona is big. Fiona is furry. Big people are blue. Blue, green people are smart. If someone is smart then they are white. All blue, red people are green. If someone is blue and furry then they are red. If Bob is furry and Bob is green then Bob is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-281_Q3", "context": "Anne is not round. Anne is young. Bob is quiet. Bob is white. Gary is not kind. Harry is smart. Harry is white. All young, quiet things are smart. White things are kind. If something is round then it is furry. If something is quiet and furry then it is young. If something is kind then it is round. If Anne is furry then Anne is not white.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-106_Q10", "context": "The cat is green. The cat likes the tiger. The cat sees the mouse. The cat does not see the tiger. The mouse chases the cat. The mouse chases the tiger. The mouse is green. The mouse is round. The mouse sees the cat. The mouse sees the rabbit. The rabbit is not red. The rabbit is round. The rabbit does not like the cat. The rabbit likes the mouse. The tiger likes the cat. The tiger sees the rabbit. If something likes the cat and the cat sees the mouse then it is rough. If something chases the mouse then the mouse likes the tiger. If something sees the rabbit then it likes the cat. If something is rough then it chases the mouse. If something likes the tiger then it chases the rabbit. If something is red then it chases the rabbit. If something chases the rabbit then it does not like the rabbit. If something sees the tiger and the tiger is green then it chases the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not chase the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-1024_Q7", "context": "The dog is round. The dog sees the rabbit. The rabbit is kind. The rabbit is red. The rabbit sees the dog. The rabbit sees the tiger. The rabbit visits the tiger. The squirrel is blue. The squirrel is kind. The tiger sees the dog. The tiger visits the dog. If the squirrel is blue and the squirrel eats the dog then the squirrel eats the rabbit. If someone eats the rabbit then the rabbit is round. If someone eats the rabbit and the rabbit visits the squirrel then the squirrel visits the tiger. If someone is round then they visit the rabbit. If the dog visits the squirrel then the squirrel is blue. If someone visits the tiger then the tiger is cold. If someone visits the tiger then they are cold. If someone is cold and kind then they visit the squirrel. If someone is kind then they eat the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-278_Q16", "context": "Charlie is big. Charlie is not blue. Charlie is rough. Dave is furry. Erin is quiet. Erin is rough. Gary is young. If someone is young and big then they are not nice. If someone is furry and not young then they are big. All rough, quiet people are big. If someone is blue then they are quiet. All quiet, nice people are not furry. All rough, blue people are furry. If someone is young then they are rough. Furry, blue people are rough. If someone is rough and young then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-246_Q9", "context": "The bald eagle is rough. The bald eagle needs the cow. The bald eagle needs the mouse. The cat is not nice. The cat likes the mouse. The cat visits the cow. The cow needs the cat. The mouse is not blue. The mouse is rough. The mouse is young. The mouse needs the cat. If something needs the cow and the cow needs the mouse then the cow visits the mouse. If something visits the mouse and the mouse is rough then it visits the cow. If something is nice then it visits the cat. If something needs the cow then the cow is rough. If something likes the mouse then it needs the mouse. If something is rough then it likes the mouse. If something needs the cat and the cat visits the mouse then the cat is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow visits the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-615_Q12", "context": "The bear eats the mouse. The bear eats the tiger. The bear sees the tiger. The bear visits the lion. The lion eats the mouse. The lion is blue. The lion is cold. The mouse sees the tiger. The tiger eats the bear. The tiger is blue. The tiger is cold. If someone sees the mouse then they eat the tiger. If someone eats the mouse and they see the mouse then they visit the mouse. If someone visits the mouse then the mouse sees the lion. If someone visits the mouse then the mouse is blue. If someone eats the bear then the bear sees the lion. If someone sees the lion then they see the mouse. If someone eats the tiger and the tiger is cold then the tiger is red.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not see the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1092_Q10", "context": "Anne is rough. Bob is rough. Bob is smart. Fiona is round. Gary is kind. Gary is rough. Gary is not round. Red people are smart. If someone is round and blue then they are kind. If someone is furry then they are red. All round people are blue. If someone is kind then they are furry. All round people are not rough. If Fiona is rough and Fiona is kind then Fiona is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-15_Q2", "context": "The cat needs the lion. The lion is blue. The lion is round. The squirrel eats the lion. The squirrel eats the tiger. The tiger is rough. The tiger is round. If the cat visits the tiger and the cat is round then the cat is rough. If something eats the squirrel and it eats the cat then the squirrel eats the cat. If something is red then it visits the squirrel. If the cat eats the lion and the cat is round then the cat needs the squirrel. If something visits the squirrel and it visits the tiger then the squirrel eats the lion. If something is round then it is red. If something is green then it eats the tiger. If something needs the tiger and the tiger eats the cat then it eats the lion. If something visits the squirrel then the squirrel is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1417_Q12", "context": "Anne is big. Anne is kind. Anne is quiet. Anne is round. Dave is quiet. Dave is red. Fiona is red. Fiona is round. Gary is big. Gary is cold. All cold people are round. Cold people are smart. Kind, quiet people are cold. If someone is round then they are quiet. Quiet people are kind. All cold, big people are kind. If Gary is cold and Gary is round then Gary is quiet. Smart people are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-627_Q17", "context": "The cat does not visit the dog. The cow likes the cat. The cow needs the dog. The cow needs the lion. The cow visits the dog. The dog needs the cow. The dog visits the cow. The lion needs the dog. The lion visits the cow. The lion visits the dog. If something likes the cow and the cow likes the cat then the cow is rough. If something is rough and not kind then it is round. If the cat needs the cow then the cat likes the cow. If something needs the lion then the lion needs the cat. If something visits the cat and it needs the dog then the cat likes the lion. If the cat visits the dog then the cat needs the cow. If something likes the lion then it needs the cow. If something visits the cow then the cow visits the cat. If something likes the lion then the lion needs the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not need the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-168_Q18", "context": "Dave is blue. Dave is nice. Erin is rough. Gary is not green. Gary is nice. Gary is rough. Harry is rough. Nice things are white. If Harry is white then Harry is nice. Nice, white things are rough. If something is red and green then it is round. If something is rough and red then it is round. If something is white and not rough then it is not red. Rough things are red. If Dave is rough and Dave is round then Dave is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-783_Q12", "context": "The bear likes the mouse. The bear likes the tiger. The bear sees the lion. The lion likes the bear. The lion likes the tiger. The lion needs the bear. The lion does not see the mouse. The mouse is nice. The mouse likes the bear. The mouse likes the tiger. The mouse sees the bear. The tiger likes the lion. If someone is red then they are cold. All big people are nice. If someone needs the bear then they are red. If someone is cold then they do not see the bear. If the lion likes the tiger and the lion is cold then the tiger needs the bear. If someone sees the bear then the bear likes the tiger. If someone needs the bear then they like the lion. If someone needs the tiger and the tiger does not see the bear then they like the bear. If the bear is not red then the bear does not see the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-157_Q13", "context": "Charlie is kind. Charlie is rough. Erin is quiet. Fiona is kind. Harry is kind. Harry is quiet. Harry is young. All kind people are quiet. Cold people are not big. If Erin is quiet then Erin is cold. Green, cold people are not young. If Fiona is green and Fiona is quiet then Fiona is not young. Cold, kind people are rough. If someone is green and kind then they are rough. If someone is cold and not big then they are rough. If someone is rough then they are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-928_Q13", "context": "Bob is green. Bob is quiet. Charlie is quiet. Charlie is white. Erin is furry. Erin is young. Fiona is not rough. White, green things are rough. All cold things are white. Cold, rough things are white. White things are furry. All quiet, rough things are furry. If something is white and furry then it is green. All furry things are cold. Rough things are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-532_Q1", "context": "The bear chases the cow. The bear eats the cow. The bear is red. The cow eats the bear. The cow eats the tiger. The cow visits the mouse. The mouse does not chase the tiger. The mouse is not cold. The mouse is not nice. The mouse is red. The mouse is round. The mouse is young. The mouse visits the tiger. The tiger does not chase the mouse. If the bear visits the mouse then the mouse eats the cow. If something eats the mouse and it visits the bear then it visits the mouse. If something visits the tiger then the tiger does not eat the bear. If something eats the bear then the bear chases the mouse. If something visits the mouse and it is round then the mouse is young. If something is red then it is young. If something is young then it eats the tiger. If something is young and it eats the cow then it is nice. If the bear is nice and the tiger does not eat the bear then the tiger is red.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse visits the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-949_Q8", "context": "Bob is quiet. Erin is kind. Erin is quiet. Fiona is green. Fiona is red. Fiona is young. Harry is green. If someone is quiet then they are young. All young people are kind. If someone is white and not green then they are quiet. All green, smart people are quiet. All quiet, kind people are white. White people are smart. If someone is kind and not green then they are not smart. If someone is white and smart then they are not red. If someone is young and not white then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-355_Q3", "context": "The bear is kind. The bear is round. The dog is red. The dog is round. The rabbit is red. The squirrel is rough. The squirrel needs the bear. If something eats the squirrel and the squirrel eats the rabbit then the squirrel is kind. If something is kind then it needs the squirrel. If something is cold and it needs the rabbit then it is round. If something needs the squirrel then it is red. All cold things are round. If the bear visits the squirrel and the squirrel eats the bear then the squirrel eats the dog. All rough things are cold. All round things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-208_Q13", "context": "The bald eagle is big. The bald eagle is cold. The cat is kind. The cat needs the tiger. The lion sees the cat. The tiger is kind. The tiger is red. If something needs the cat then the cat sees the lion. If something is kind and green then it needs the tiger. If something needs the cat then the cat likes the bald eagle. If something is green then it likes the cat. If something is red then it likes the lion. If something is kind then it sees the bald eagle. If something is red and it sees the bald eagle then it needs the cat. If the cat is cold and the cat likes the bald eagle then the cat is green. If something needs the tiger then it is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not need the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-896_Q2", "context": "The bald eagle chases the squirrel. The bald eagle is big. The bald eagle likes the squirrel. The bald eagle needs the tiger. The dog needs the bald eagle. The squirrel chases the bald eagle. The squirrel needs the bald eagle. The tiger chases the bald eagle. The tiger chases the dog. The tiger likes the bald eagle. If something is green then it chases the dog. If something is red and big then it chases the dog. If something needs the bald eagle then it is green. If something chases the dog then it needs the squirrel. If something needs the squirrel then it chases the bald eagle. If something chases the tiger and it needs the bald eagle then it is young. If the bald eagle is big and the bald eagle is red then the bald eagle needs the tiger. Young things are red. If something likes the squirrel then it is young.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1391_Q10", "context": "Anne is green. Charlie is big. Charlie is quiet. Charlie is rough. Charlie is smart. Charlie is white. Fiona is big. Fiona is furry. Fiona is smart. Harry is big. Harry is furry. Harry is quiet. Green things are quiet. Rough, quiet things are smart. If something is green and quiet then it is rough. Big, rough things are furry. If something is white then it is big. Quiet things are rough. If Charlie is big then Charlie is quiet. All green, furry things are white. Quiet, smart things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-210_Q2", "context": "Bob is quiet. Bob is rough. Charlie is rough. Dave is green. Dave is not rough. Dave is smart. Gary is green. Gary is nice. Gary is red. Gary is rough. Gary is not round. Gary is smart. If something is green and smart then it is nice. All red things are green. All smart things are green. All green, rough things are smart. If something is nice then it is quiet. If Dave is smart and Dave is nice then Dave is not red. If something is rough then it is red. If something is green and not smart then it is round. If Charlie is green and Charlie is not nice then Charlie is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-770_Q17", "context": "Dave is quiet. Erin is big. Erin is rough. Fiona is quiet. Fiona is rough. Fiona is smart. Gary is blue. Quiet, red things are rough. Red, blue things are cold. If Dave is cold and Dave is big then Dave is blue. All quiet things are big. All red things are quiet. If something is big and rough then it is cold. If something is big then it is red. If Gary is red then Gary is rough. Smart things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-84_Q15", "context": "The cow is blue. The cow is round. The cow likes the lion. The cow visits the tiger. The lion is cold. The lion is nice. The lion likes the squirrel. The squirrel is round. The squirrel sees the lion. The squirrel visits the cow. The tiger likes the cow. The tiger likes the squirrel. If something is cold then it visits the tiger. If something visits the tiger then it is nice. If something sees the tiger and it is young then it is blue. If something is nice then it sees the tiger. If something likes the squirrel and it likes the cow then it visits the tiger. If something is nice and it sees the tiger then it is young. If the cow is cold and the cow visits the lion then the lion sees the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not see the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-880_Q2", "context": "Anne is furry. Anne is rough. Anne is smart. Dave is not cold. Dave is rough. Erin is furry. Fiona is smart. If Dave is white then Dave is smart. All rough people are white. If Dave is red then Dave is furry. If Fiona is cold and Fiona is not white then Fiona is not furry. If Erin is rough and Erin is smart then Erin is not red. If Fiona is young and Fiona is furry then Fiona is cold. If someone is cold and not white then they are smart. If someone is furry then they are young. If someone is smart and white then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-846_Q5", "context": "Bob is big. Bob is cold. Bob is furry. Bob is green. Bob is kind. Bob is nice. Charlie is cold. Charlie is nice. Erin is green. Erin is kind. Fiona is big. Fiona is furry. Nice, green things are furry. All kind things are nice. All nice things are round. All green, round things are kind. Cold things are green. All nice, kind things are green. Cold things are nice. If something is round then it is cold. If something is big then it is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-371_Q1", "context": "Anne is red. Anne is round. Charlie is not big. Charlie is kind. Erin is round. Gary is kind. Gary is round. Furry, white things are round. If Gary is big and Gary is furry then Gary is nice. If something is kind then it is white. All white, kind things are furry. If something is nice and kind then it is red. All furry things are kind. All round, red things are kind. Round things are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-833_Q16", "context": "The cat does not chase the cow. The cat chases the mouse. The cat eats the cow. The cat eats the tiger. The cat is rough. The cat is round. The cow chases the mouse. The cow eats the mouse. The cow is round. The mouse chases the cat. The mouse is rough. The tiger is young. The tiger needs the cat. The tiger does not need the cow. If someone chases the tiger and they eat the tiger then they chase the cat. If someone needs the mouse then they are red. If someone chases the mouse then they need the mouse. If someone is round then they eat the tiger. If someone chases the cow then they chase the mouse. If someone needs the mouse then the mouse chases the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger chases the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-167_Q7", "context": "Bob is young. Charlie is green. Charlie is rough. Charlie is round. Erin is quiet. Erin is round. Gary is green. Gary is quiet. Gary is round. Gary is white. Round things are young. All quiet, white things are green. All quiet, rough things are white. If Charlie is white and Charlie is green then Charlie is round. If Gary is young then Gary is round. Young, green things are rough. All green, young things are big. Quiet, young things are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-74_Q12", "context": "The bear is green. The bear is not kind. The bear likes the lion. The bear likes the mouse. The bear needs the lion. The bear sees the squirrel. The lion sees the bear. The mouse is not kind. The mouse is not round. The mouse likes the bear. The mouse needs the squirrel. The mouse does not see the squirrel. The squirrel is not big. The squirrel is green. The squirrel needs the lion. The squirrel sees the lion. If someone is young then they are not big. If the bear does not need the mouse then the mouse is not young. If someone likes the mouse and the mouse is big then the mouse is round. If someone sees the mouse then the mouse sees the bear. If someone needs the lion and they do not need the mouse then they see the bear. If someone likes the squirrel and they are not round then they do not need the lion. If someone sees the mouse and they are not round then they like the squirrel. If someone sees the bear then they see the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse needs the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-867_Q10", "context": "Bob is blue. Bob is furry. Bob is round. Charlie is smart. Erin is smart. Harry is nice. Harry is round. If something is quiet then it is nice. If something is blue and smart then it is furry. If Charlie is smart and Charlie is rough then Charlie is blue. If something is nice then it is rough. Nice things are quiet. Smart things are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-944_Q7", "context": "The cow is not round. The cow sees the dog. The cow visits the dog. The cow visits the rabbit. The dog visits the cow. The rabbit is green. The rabbit sees the tiger. The rabbit visits the cow. The rabbit visits the tiger. The tiger chases the rabbit. The tiger is not red. The tiger does not see the cow. The tiger visits the cow. The tiger does not visit the rabbit. If something sees the rabbit and it visits the cow then the rabbit does not visit the dog. If something chases the tiger then it chases the dog. If the rabbit visits the tiger and the rabbit chases the dog then the dog sees the tiger. If the rabbit chases the cow and the rabbit is not young then the cow does not visit the rabbit. If something sees the tiger then it chases the tiger. If something sees the rabbit then it is red. If something sees the rabbit and the rabbit chases the tiger then the tiger visits the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog sees the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-339_Q17", "context": "Bob is not rough. Bob is not smart. Fiona is cold. Fiona is smart. Gary is quiet. Gary is rough. Harry is kind. If someone is rough then they are green. All cold people are quiet. All cold, round people are rough. If someone is smart and not cold then they are rough. All quiet people are round. If someone is green then they are round. All green, quiet people are not kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1114_Q9", "context": "Bob is not blue. Bob is cold. Bob is kind. Charlie is cold. Charlie is green. Gary is kind. Harry is green. Green people are blue. All green, red people are not nice. If someone is blue and not green then they are not cold. If someone is rough then they are cold. If Bob is blue and Bob is cold then Bob is kind. All blue people are rough. All cold people are red. Nice, blue people are kind. If Gary is not rough then Gary is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-210_Q5", "context": "Bob is quiet. Bob is rough. Charlie is rough. Dave is green. Dave is not rough. Dave is smart. Gary is green. Gary is nice. Gary is red. Gary is rough. Gary is not round. Gary is smart. If something is green and smart then it is nice. All red things are green. All smart things are green. All green, rough things are smart. If something is nice then it is quiet. If Dave is smart and Dave is nice then Dave is not red. If something is rough then it is red. If something is green and not smart then it is round. If Charlie is green and Charlie is not nice then Charlie is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-122_Q22", "context": "The bear is nice. The bear sees the cat. The cat is cold. The cat sees the dog. The cat sees the mouse. The dog sees the mouse. The mouse is round. If someone likes the dog then the dog is round. If the mouse likes the cat then the cat likes the dog. If someone is round then they are blue. If someone is nice and they visit the cat then they are big. If someone is blue then they like the cat. If someone visits the cat and the cat likes the dog then the dog does not see the cat. If someone sees the mouse and they do not like the dog then the dog likes the mouse. If someone is blue and they do not like the mouse then the mouse does not see the cat. If someone sees the cat then the cat likes the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear sees the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-937_Q6", "context": "Bob is blue. Erin is furry. Fiona is blue. Fiona is furry. Fiona is red. Fiona is young. Gary is blue. Gary is cold. Gary is green. Gary is quiet. Gary is red. Gary is young. All furry things are young. If something is blue then it is quiet. If Bob is quiet and Bob is blue then Bob is green. If something is green then it is red. If Fiona is cold and Fiona is quiet then Fiona is red. Red things are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-272_Q7", "context": "The bald eagle eats the cow. The bald eagle is red. The cat eats the cow. The cat does not visit the bald eagle. The cat visits the cow. The cow is nice. The cow is red. The dog eats the cat. The dog likes the cow. The dog visits the bald eagle. If the cat is kind then the cat visits the cow. If someone eats the cat and they are red then the cat likes the cow. If someone eats the bald eagle then they are red. If someone is blue then they visit the bald eagle. If the cat likes the dog then the cat does not eat the cow. If someone is red then they are nice. If someone likes the cow then they eat the bald eagle. If the cat eats the cow and the cat does not visit the bald eagle then the cow visits the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat likes the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-782_Q13", "context": "The bald eagle is kind. The bald eagle is red. The bald eagle visits the squirrel. The dog does not eat the bald eagle. The dog is red. The dog likes the bald eagle. The dog visits the bald eagle. The squirrel eats the dog. The squirrel visits the tiger. The tiger is not kind. The tiger is red. The tiger likes the dog. If something eats the tiger and it eats the bald eagle then the tiger does not like the bald eagle. If something likes the squirrel then the squirrel likes the bald eagle. If something is big then it does not visit the squirrel. If something is round then it likes the dog. If something is cold then it likes the squirrel. If something likes the bald eagle then it is cold. If something eats the bald eagle and the bald eagle is not round then it is red. If something is round then it eats the tiger. If something eats the tiger then the tiger does not like the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not like the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-332_Q17", "context": "Anne is kind. Anne is nice. Bob is green. Bob is rough. Bob is white. Erin is cold. Erin is kind. Erin is rough. Gary is green. Gary is nice. Gary is white. Smart, white people are green. If Anne is green and Anne is nice then Anne is rough. If someone is smart then they are white. All white, kind people are cold. If Gary is nice then Gary is smart. All rough, nice people are cold. If someone is kind then they are white. If someone is cold then they are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-837_Q1", "context": "Anne is big. Anne is rough. Bob is big. Bob is red. Dave is big. Dave is blue. Dave is rough. Fiona is big. Fiona is cold. Fiona is red. All blue people are big. Quiet, big people are rough. Rough people are red. Big people are cold. All blue, cold people are red. All green people are quiet. All quiet people are big. Cold people are green. If someone is rough then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-227_Q5", "context": "Anne is big. Anne is furry. Anne is not red. Anne is rough. Bob is big. Bob is furry. Bob is green. Bob is kind. Bob is nice. Bob is red. Bob is rough. Gary is green. Gary is nice. Gary is rough. Harry is furry. Harry is red. All green people are big. Rough people are big. If Anne is not furry then Anne is not green. If someone is rough and green then they are kind. All furry people are green. Furry, nice people are green. If someone is nice then they are rough. Big people are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1191_Q5", "context": "Anne is blue. Anne is round. Erin is quiet. Fiona is kind. Fiona is quiet. Fiona is round. Harry is blue. Harry is furry. Harry is kind. Harry is quiet. Harry is round. All quiet people are blue. All furry, blue people are kind. Blue people are smart. Furry people are quiet. Rough people are smart. All furry, kind people are rough. All smart people are furry. All kind people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-549_Q11", "context": "The dog does not see the rabbit. The mouse is cold. The mouse is red. The mouse needs the dog. The mouse does not need the rabbit. The mouse needs the tiger. The rabbit is big. The rabbit needs the dog. The rabbit sees the mouse. The tiger needs the mouse. If someone is red then they are kind. If someone sees the tiger then they eat the mouse. If someone eats the tiger and the tiger needs the mouse then the tiger is red. If someone sees the mouse then they eat the rabbit. If someone is kind then they eat the tiger. Red people are not green. If someone sees the tiger then they are green. If the tiger eats the mouse and the tiger eats the rabbit then the tiger sees the dog. If the mouse is kind then the mouse eats the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger eats the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-66_Q2", "context": "The bald eagle chases the dog. The bald eagle needs the cat. The bald eagle visits the cat. The cat chases the rabbit. The cat does not need the rabbit. The cat visits the dog. The dog is blue. The rabbit chases the cat. The rabbit is not nice. The rabbit visits the bald eagle. If someone needs the bald eagle and the bald eagle needs the cat then the bald eagle is big. If the dog needs the cat and the dog visits the bald eagle then the dog is nice. If someone chases the rabbit and the rabbit needs the dog then they visit the rabbit. If someone is blue then they visit the rabbit. If someone is blue and they visit the rabbit then they need the dog. If someone visits the dog and they do not visit the cat then the dog chases the cat. If someone visits the rabbit then the rabbit is blue. If someone visits the dog then they chase the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat needs the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-456_Q20", "context": "Anne is rough. Bob is quiet. Charlie is nice. Charlie is not round. Gary is kind. Gary is quiet. Gary is rough. Round, quiet things are kind. All rough things are kind. If something is smart then it is not white. If Bob is quiet then Bob is round. All kind things are rough. Kind, smart things are quiet. If Charlie is rough then Charlie is nice. If something is kind and rough then it is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-648_Q18", "context": "The bald eagle is kind. The bald eagle likes the tiger. The bald eagle needs the mouse. The bald eagle sees the dog. The bald eagle sees the mouse. The bald eagle sees the tiger. The dog is blue. The dog is kind. The dog is nice. The dog is rough. The dog needs the mouse. The dog needs the tiger. The dog sees the mouse. The mouse is kind. The tiger likes the bald eagle. The tiger likes the mouse. If someone is kind then they see the mouse. Young people are blue. If someone likes the bald eagle then they like the mouse. If someone is young and they need the tiger then the tiger sees the dog. If someone sees the tiger and the tiger is young then they need the bald eagle. If someone likes the tiger and the tiger likes the mouse then the tiger is blue. All blue people are kind. If someone sees the mouse and they like the bald eagle then they are young. If someone is blue and they see the dog then the dog likes the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse needs the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-862_Q14", "context": "Bob is green. Bob is young. Fiona is kind. Gary is green. Gary is kind. Harry is red. Harry is smart. All green things are kind. All kind things are young. All smart things are quiet. If something is quiet and smart then it is green. Quiet things are smart. If Bob is blue and Bob is kind then Bob is smart. If Harry is kind and Harry is blue then Harry is smart. All young, kind things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-395_Q2", "context": "The bald eagle is kind. The bald eagle is rough. The bald eagle likes the cat. The cat is round. The cat likes the bald eagle. The cat likes the tiger. The cat needs the tiger. The lion is rough. The lion needs the cat. The tiger chases the bald eagle. The tiger is big. The tiger is kind. The tiger is round. The tiger likes the cat. The tiger likes the lion. The tiger needs the bald eagle. If the cat likes the tiger then the cat likes the lion. If the cat needs the lion then the lion likes the bald eagle. If something chases the tiger and it chases the lion then it is big. If something chases the lion then it needs the lion. If something likes the bald eagle then it chases the lion. If something chases the lion then it is kind. If something needs the lion then it likes the lion. If something likes the cat and it chases the lion then it chases the tiger. If something chases the lion and it needs the cat then the cat likes the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-117_Q19", "context": "The cow is green. The cow is nice. The cow is red. The cow is round. The cow sees the tiger. The lion sees the tiger. The squirrel eats the cow. The squirrel is nice. The squirrel sees the tiger. The tiger chases the squirrel. If something sees the squirrel then it sees the cow. If something is nice then it sees the squirrel. If the squirrel chases the cow and the cow is round then the cow sees the squirrel. If something chases the cow and the cow sees the tiger then the tiger sees the lion. If something sees the cow then it chases the lion. If something sees the tiger then the tiger sees the lion. If something chases the lion then the lion sees the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not see the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1423_Q11", "context": "Anne is nice. Anne is rough. Fiona is furry. Fiona is nice. Fiona is red. Gary is red. Gary is white. Harry is green. Harry is nice. Harry is rough. Harry is white. All rough, nice things are furry. Furry, red things are kind. Rough things are kind. If Gary is kind and Gary is furry then Gary is nice. Nice, white things are furry. All white things are rough. If something is green and white then it is furry. Kind, red things are green. All nice things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-203_Q2", "context": "The cat is young. The cat does not visit the squirrel. The cow chases the mouse. The cow is green. The cow is round. The cow visits the squirrel. The mouse chases the cat. The mouse is blue. The mouse is red. The squirrel is young. If someone is red then they chase the cow. If someone is red and they chase the cow then they chase the squirrel. If someone chases the squirrel then the squirrel is red. If someone sees the cat then they do not visit the mouse. If someone chases the squirrel then the squirrel is not blue. If someone visits the cow and the cow is not red then the cow is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-573_Q10", "context": "The bald eagle is young. The bald eagle visits the cow. The cow eats the tiger. The cow is green. The cow is rough. The mouse is green. The tiger does not see the cow. If someone is kind then they visit the mouse. If someone is young and they eat the tiger then the tiger is young. If someone visits the mouse and they do not visit the tiger then the tiger eats the cow. If someone is green then they eat the tiger. If someone eats the cow then they eat the tiger. If someone sees the tiger and they are rough then the tiger visits the cow. If someone is young then they eat the cow. If someone eats the tiger then they are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not eat the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-170_Q20", "context": "The dog eats the lion. The dog eats the squirrel. The dog is red. The dog is round. The lion is big. The lion is rough. The squirrel eats the dog. The squirrel is red. The tiger chases the dog. The tiger eats the squirrel. The tiger is rough. The tiger needs the dog. If someone chases the squirrel and they need the dog then they eat the dog. If someone eats the lion and the lion is big then they are round. If someone chases the tiger and they chase the lion then they are kind. If someone needs the lion then the lion needs the dog. If someone eats the squirrel then they need the lion. If someone chases the squirrel and they eat the dog then the dog is big. If the squirrel chases the lion then the squirrel is rough. If someone is big then they chase the squirrel. If someone is red and they eat the dog then the dog needs the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger chases the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-142_Q3", "context": "The cat eats the rabbit. The cat is blue. The cow chases the cat. The cow eats the rabbit. The rabbit chases the cow. The rabbit sees the cat. The squirrel sees the cow. Blue things are not cold. If something eats the rabbit then it is nice. If something sees the cow then it sees the rabbit. If something is round then it chases the rabbit. If the cow sees the rabbit then the rabbit is blue. If something sees the cat and the cat chases the rabbit then the cat chases the squirrel. If something is nice then it sees the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel sees the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-818_Q1", "context": "The cow visits the lion. The lion eats the rabbit. The lion is young. The lion needs the rabbit. The rabbit eats the lion. The rabbit eats the squirrel. The rabbit is green. The rabbit is nice. The rabbit needs the lion. The rabbit visits the cow. The rabbit visits the squirrel. The squirrel eats the rabbit. The squirrel is nice. The squirrel needs the cow. The squirrel needs the rabbit. The squirrel visits the rabbit. If something needs the lion and the lion eats the cow then it visits the squirrel. If something visits the squirrel then it eats the rabbit. If something visits the squirrel and it eats the rabbit then the squirrel eats the cow. If something visits the cow then it is red. If the squirrel eats the lion then the lion visits the cow. If something visits the cow then the cow eats the squirrel. If something eats the cow then it eats the lion. If something needs the cow and it is green then it eats the lion. If something needs the lion and it eats the rabbit then it visits the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion needs the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-236_Q3", "context": "The bald eagle is cold. The dog needs the bald eagle. The dog sees the lion. The lion eats the bald eagle. The lion eats the tiger. The lion is cold. The lion does not need the bald eagle. The lion sees the bald eagle. The tiger is big. The tiger is cold. If something eats the lion then it eats the dog. If something is rough then it sees the lion. If something is young then it eats the lion. If something is cold and it eats the dog then the dog is big. If the lion needs the dog then the dog does not need the bald eagle. If something eats the lion and the lion is cold then the lion does not need the dog. If something sees the lion then the lion sees the dog. Big things are young. If the tiger does not see the lion then the tiger is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion sees the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-913_Q19", "context": "The bald eagle eats the cow. The bald eagle does not see the mouse. The cat chases the cow. The cat does not chase the mouse. The cat is not rough. The cat sees the mouse. The cow chases the cat. The cow sees the mouse. The mouse eats the cow. The mouse is green. The mouse is round. If someone eats the bald eagle and the bald eagle sees the cat then they are green. If someone eats the cow and the cow chases the cat then the cat is cold. If someone eats the cat then they do not chase the cat. If someone sees the mouse and they eat the cat then the mouse is cold. If the cat does not see the mouse and the mouse is not green then the mouse eats the cow. If someone is cold then they see the bald eagle. If someone sees the bald eagle and they are round then they eat the cow. If someone is cold then they eat the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not see the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-951_Q17", "context": "The bear is nice. The cow eats the squirrel. The cow is green. The mouse eats the bear. The squirrel is not green. The squirrel is nice. The squirrel needs the cow. If someone is round then they do not like the cow. If someone likes the squirrel and the squirrel needs the cow then the cow is nice. If someone is nice then they need the squirrel. If someone likes the mouse then they need the squirrel. If someone eats the cow and the cow needs the bear then they are not green. If someone likes the squirrel then they eat the mouse. If someone likes the squirrel and the squirrel needs the mouse then the squirrel is not green. If someone needs the squirrel then they like the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not like the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-893_Q9", "context": "Bob is cold. Erin is kind. Erin is young. Fiona is kind. Fiona is red. Fiona is rough. Fiona is white. Harry is not cold. Harry is white. Harry is not young. If something is kind and cold then it is red. Rough things are red. If something is young then it is white. All rough, red things are young. Furry, rough things are cold. If Fiona is rough then Fiona is cold. All furry things are rough. If something is cold then it is furry. If Fiona is red then Fiona is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-454_Q4", "context": "Bob is round. Dave is cold. Dave is green. Dave is smart. Dave is young. Erin is green. Erin is round. Erin is smart. Erin is white. Erin is young. Harry is cold. Harry is green. Harry is rough. Harry is round. Harry is smart. Harry is young. All green, white people are young. If Dave is smart and Dave is young then Dave is round. If someone is round then they are green. Young, smart people are cold. All young people are smart. Green people are white. If someone is young and rough then they are green. If someone is round and green then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-998_Q4", "context": "The bald eagle sees the squirrel. The cat eats the bald eagle. The cat is not cold. The dog is green. The dog is red. The dog sees the cat. The squirrel does not chase the bald eagle. If someone eats the squirrel then the squirrel is young. If someone chases the squirrel and they do not eat the bald eagle then the squirrel chases the dog. If someone chases the cat then they see the squirrel. If someone is red then they are cold. Young people are cold. If someone sees the cat and they see the bald eagle then the cat is not red. If someone is cold then they eat the squirrel. If someone chases the bald eagle and the bald eagle chases the dog then the bald eagle is cold. If someone sees the dog then the dog is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-929_Q20", "context": "The cow is rough. The cow sees the mouse. The cow sees the tiger. The cow visits the mouse. The cow does not visit the tiger. The dog is not young. The dog does not need the tiger. The dog does not see the cow. The dog visits the mouse. The mouse is not green. The mouse needs the dog. The mouse sees the cow. The tiger is green. The tiger does not see the cow. The tiger sees the mouse. The tiger visits the mouse. If someone sees the tiger then they need the cow. If someone visits the dog then they need the cow. If someone visits the cow and they do not need the dog then the cow visits the tiger. If someone needs the cow then they visit the dog. If someone is rough then they need the tiger. If the tiger is red and the tiger is not young then the tiger sees the cow. If someone visits the dog then the dog sees the tiger. If someone sees the tiger and they need the tiger then they do not see the cow. If someone visits the mouse and the mouse sees the dog then the dog sees the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow needs the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-379_Q6", "context": "Bob is rough. Bob is young. Charlie is red. Gary is big. Gary is blue. Gary is red. Gary is rough. Harry is nice. Harry is red. Harry is rough. Red, big things are nice. Blue, young things are cold. All blue, nice things are rough. All cold, blue things are big. All big, blue things are rough. If Charlie is blue then Charlie is young. If something is red then it is blue. If something is cold then it is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-405_Q9", "context": "Charlie is blue. Dave is round. Dave is white. Fiona is blue. Fiona is nice. Harry is nice. Harry is round. If someone is blue then they are nice. All nice people are big. All furry people are round. If Fiona is round and Fiona is nice then Fiona is quiet. White people are furry. All white, blue people are furry. If someone is big and not nice then they are white. If someone is quiet then they are white. If someone is big then they are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-204_Q9", "context": "Anne is kind. Charlie is white. Fiona is kind. Fiona is red. Fiona is smart. Fiona is white. Gary is cold. Gary is kind. Gary is quiet. Gary is red. Gary is round. Gary is white. All round people are smart. If someone is quiet then they are cold. All white people are red. All smart, kind people are cold. All kind people are round. If Charlie is white and Charlie is round then Charlie is smart. If someone is quiet and smart then they are white. If Gary is smart then Gary is white. All cold people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-990_Q7", "context": "The bear needs the squirrel. The cow eats the bear. The cow is cold. The cow likes the bear. The cow needs the bear. The cow needs the squirrel. The dog eats the squirrel. The dog is not nice. The dog is red. The dog is young. The dog likes the bear. The dog likes the squirrel. The dog needs the squirrel. The squirrel eats the dog. The squirrel is not young. The squirrel likes the dog. If something likes the dog then it likes the cow. If something likes the squirrel and the squirrel likes the cow then the cow needs the bear. If something eats the dog then it is cold. If something is cold then it is round. If something eats the cow then it eats the dog. If something likes the bear and the bear is not red then the bear does not need the squirrel. If something is round and it needs the bear then the bear eats the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear eats the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-617_Q9", "context": "Bob is big. Bob is nice. Charlie is smart. Charlie is young. Erin is cold. Erin is green. Erin is smart. Erin is not young. Gary is big. Gary is rough. If Charlie is young then Charlie is nice. All nice, rough things are cold. All nice, young things are big. Big things are rough. All cold things are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-692_Q7", "context": "Anne is big. Anne is not nice. Charlie is big. Charlie is red. Gary is green. Gary is red. Harry is blue. Harry is nice. Harry is red. Harry is smart. If Gary is green then Gary is nice. If Harry is red and Harry is nice then Harry is big. All white people are big. Nice people are white. If someone is white and smart then they are blue. If someone is white and big then they are smart. If someone is green and not nice then they are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-350_Q4", "context": "Erin is not young. Fiona is blue. Fiona is not furry. Fiona is kind. Gary is not furry. Gary is not nice. Harry is red. Furry things are white. All kind, red things are white. If Gary is white then Gary is nice. White things are young. If something is furry and young then it is nice. If Erin is red and Erin is young then Erin is kind. If something is red then it is furry. Furry, nice things are blue. If Erin is furry and Erin is white then Erin is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-153_Q6", "context": "Anne is smart. Anne is white. Bob is rough. Bob is smart. Fiona is big. Gary is kind. Gary is rough. If Bob is blue then Bob is big. If something is big and kind then it is green. All smart things are white. Green, white things are rough. If something is big then it is rough. If something is green then it is smart. If something is smart and not big then it is kind. All rough, smart things are kind. All rough things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-712_Q12", "context": "The bald eagle likes the squirrel. The bald eagle sees the mouse. The bald eagle visits the mouse. The cow likes the bald eagle. The mouse is not cold. The mouse is nice. The mouse likes the squirrel. The mouse sees the squirrel. The squirrel is kind. The squirrel is nice. The squirrel likes the cow. The squirrel visits the cow. If someone is kind then they are rough. If someone likes the bald eagle and they are rough then the bald eagle is kind. If the mouse sees the bald eagle then the bald eagle visits the squirrel. If someone is rough then they like the bald eagle. If someone visits the mouse then the mouse visits the cow. If someone is big and they visit the mouse then they are cold. If the mouse likes the bald eagle then the mouse does not see the squirrel. If someone visits the cow and the cow visits the squirrel then they like the cow. If someone sees the cow then the cow does not visit the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not like the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-873_Q10", "context": "Anne is nice. Anne is round. Anne is white. Bob is furry. Bob is white. Erin is big. Erin is furry. Erin is round. Erin is white. Erin is young. Gary is kind. Gary is young. If something is young then it is kind. If Gary is young then Gary is nice. If something is young and nice then it is kind. All furry things are big. All kind things are round. If something is nice and big then it is young. Big things are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-349_Q7", "context": "Dave is cold. Dave is kind. Dave is round. Dave is white. Dave is young. Fiona is cold. Fiona is furry. Fiona is kind. Fiona is round. Fiona is smart. Fiona is white. Fiona is young. Gary is smart. Gary is young. Harry is furry. Harry is round. If someone is kind and young then they are smart. If someone is smart then they are round. Young, furry people are kind. All furry people are white. Cold, furry people are white. If Harry is white and Harry is kind then Harry is young. If someone is cold then they are young. All white people are furry. Round, white people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-678_Q4", "context": "The dog chases the lion. The dog is not blue. The dog likes the rabbit. The dog does not visit the rabbit. The dog visits the tiger. The lion likes the tiger. The rabbit chases the lion. The rabbit chases the tiger. The rabbit is cold. The rabbit likes the lion. The rabbit visits the tiger. The tiger visits the dog. If something chases the tiger then it is big. If something likes the dog then the dog visits the tiger. If something likes the rabbit and it does not chase the tiger then it is green. If something is big and it chases the rabbit then it is green. If something visits the dog and the dog likes the lion then it chases the rabbit. If something is red then it visits the dog. If something is red and it likes the rabbit then it likes the tiger. If something visits the tiger then it likes the lion. If something chases the rabbit and the rabbit is cold then the rabbit visits the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-634_Q2", "context": "The bald eagle eats the cow. The bald eagle eats the lion. The bald eagle is nice. The bald eagle is red. The bald eagle is rough. The bald eagle likes the cow. The bear is young. The bear likes the cow. The cow likes the bald eagle. The lion eats the bald eagle. The lion is rough. If someone needs the bear and the bear is young then the bear needs the cow. If someone eats the bald eagle and the bald eagle is young then the bald eagle likes the cow. If the lion needs the bear then the lion eats the bear. If someone is red then they need the lion. If someone is green and they need the bear then they need the cow. If someone needs the bear and the bear needs the cow then the bear is red. If someone is red and they need the lion then they need the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not eat the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-463_Q6", "context": "The cat is not green. The cat sees the lion. The cat visits the lion. The cow is blue. The cow sees the cat. The cow visits the cat. The cow visits the mouse. The lion eats the mouse. The lion is big. The lion is cold. The lion visits the cow. The mouse visits the cow. If someone sees the cat then they are green. If the cat eats the mouse and the mouse sees the lion then the mouse visits the cow. If someone is rough then they see the mouse. If someone is green and they see the mouse then the mouse visits the cat. If someone visits the cat then they see the cow. If someone eats the mouse and the mouse eats the cat then the cat does not eat the mouse. If someone visits the cat then they visit the lion. If someone is blue then they eat the cow. If someone sees the cow then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-605_Q4", "context": "Anne is furry. Anne is nice. Bob is kind. Bob is quiet. Charlie is kind. Charlie is quiet. Charlie is white. Charlie is young. Dave is furry. Dave is rough. White, quiet people are rough. Kind people are furry. Young, rough people are white. All furry, quiet people are rough. Rough, kind people are nice. If someone is nice then they are young. If someone is rough then they are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1139_Q9", "context": "Anne is round. Charlie is green. Charlie is nice. Charlie is young. Dave is big. Dave is cold. Dave is green. Dave is round. Harry is big. Harry is green. Harry is round. All round, young things are big. All round, green things are nice. Round, young things are nice. If something is nice and round then it is green. If Anne is kind and Anne is big then Anne is cold. All round things are green. If Anne is big then Anne is kind. Green, nice things are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-86_Q8", "context": "The bald eagle eats the cow. The bald eagle does not see the squirrel. The cow is red. The cow visits the dog. The dog eats the cow. The dog is nice. The dog is red. The dog is rough. The squirrel eats the cow. The squirrel is round. The squirrel sees the cow. The squirrel sees the dog. If something sees the squirrel and the squirrel sees the dog then the squirrel visits the cow. If something is rough then it sees the squirrel. If something sees the dog then it is not young. If something is round and it visits the bald eagle then the bald eagle sees the dog. If the cow eats the dog and the dog eats the bald eagle then the cow sees the dog. If something visits the cow then it visits the bald eagle. If something sees the bald eagle and it is not rough then the bald eagle is red. If something eats the bald eagle then the bald eagle is young. If something sees the bald eagle and it visits the bald eagle then it is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not visit the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-377_Q14", "context": "The bald eagle chases the rabbit. The bald eagle likes the cow. The bear chases the rabbit. The bear is green. The cow chases the bald eagle. The cow chases the rabbit. The cow is kind. The cow likes the bald eagle. The rabbit chases the bear. The rabbit likes the bear. The rabbit needs the bear. If someone likes the cow and they are green then the cow chases the bald eagle. If someone likes the bald eagle then they are young. If someone chases the bear then they are kind. If someone likes the bear then they like the rabbit. If someone needs the rabbit then the rabbit likes the bald eagle. If someone is young then they need the bald eagle. If someone is nice then they chase the bald eagle. If the cow needs the bald eagle then the bald eagle needs the rabbit. If someone is nice and young then they need the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit chases the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-47_Q8", "context": "The bear chases the tiger. The bear eats the rabbit. The bear eats the tiger. The bear is red. The rabbit chases the bear. The squirrel is green. The tiger chases the rabbit. The tiger does not eat the rabbit. The tiger eats the squirrel. The tiger is cold. The tiger needs the squirrel. If something is green and it chases the bear then it is red. If something eats the rabbit and it chases the rabbit then the rabbit is green. If something chases the rabbit and it is green then it needs the tiger. If something is red then it chases the rabbit. If something needs the rabbit and it is not cold then it does not eat the rabbit. If something eats the tiger and it chases the squirrel then the squirrel eats the rabbit. If something eats the squirrel and the squirrel is blue then the squirrel eats the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-319_Q2", "context": "The cow chases the mouse. The cow is green. The cow sees the lion. The dog is kind. The dog sees the mouse. The lion is green. The lion is kind. The mouse chases the lion. The mouse needs the cow. The mouse sees the dog. The mouse sees the lion. If someone needs the cow then they need the dog. If someone needs the lion and they need the mouse then they are young. If someone is red then they need the mouse. If someone sees the dog and the dog chases the cow then they are green. If someone sees the mouse and the mouse needs the dog then the dog is red. If someone needs the mouse and the mouse sees the dog then they need the cow. If someone chases the dog and the dog is green then they are young. If someone sees the lion and the lion chases the dog then they are green. If the mouse chases the cow and the mouse is young then the mouse chases the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-282_Q16", "context": "Anne is green. Dave is big. Dave is not red. Erin is big. Erin is kind. Erin is red. Erin is round. Fiona is big. Fiona is not green. Fiona is red. If someone is kind then they are not quiet. If someone is big and green then they are white. If someone is red and quiet then they are not white. Round people are big. All white people are round. Green people are round. Big, white people are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-637_Q15", "context": "The cat is green. The dog sees the cat. The dog visits the mouse. The mouse is big. The mouse visits the rabbit. The rabbit chases the mouse. The rabbit visits the dog. If something chases the dog then the dog chases the mouse. If something visits the mouse then it is green. If the cat is red and the mouse does not see the cat then the cat is young. If something sees the cat and it chases the mouse then it visits the cat. If something chases the rabbit then the rabbit is young. If something is big then it chases the rabbit. If something is young then it chases the dog. If something chases the cat then the cat does not visit the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-436_Q9", "context": "The bear chases the squirrel. The bear eats the squirrel. The bear eats the tiger. The bear is kind. The bear is red. The bear needs the lion. The bear needs the squirrel. The lion chases the bear. The lion chases the squirrel. The lion chases the tiger. The lion eats the squirrel. The lion needs the bear. The lion needs the squirrel. The squirrel eats the lion. The squirrel eats the tiger. The tiger is nice. If the bear is blue then the bear needs the lion. If something needs the lion and the lion is blue then it chases the tiger. If something eats the bear and it eats the squirrel then it needs the squirrel. If something chases the tiger then it is nice. If the bear eats the tiger and the tiger needs the bear then the tiger eats the lion. If something is rough then it eats the tiger. All nice things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-220_Q8", "context": "The bald eagle chases the lion. The bald eagle is big. The bald eagle needs the mouse. The cow chases the bald eagle. The cow is not red. The cow does not need the mouse. The cow sees the bald eagle. The cow does not see the mouse. The lion chases the bald eagle. The lion needs the bald eagle. The mouse needs the lion. If something chases the mouse then it sees the cow. If something is red then it does not need the lion. If something needs the bald eagle then it chases the mouse. If something sees the bald eagle then the bald eagle needs the lion. If something sees the cow then the cow chases the lion. If something sees the cow then the cow chases the lion. If something sees the cow and it needs the bald eagle then the cow needs the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not chase the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-122_Q9", "context": "Anne is big. Anne is nice. Anne is young. Bob is big. Bob is blue. Bob is furry. Bob is nice. Bob is red. Bob is white. Bob is young. Erin is furry. Fiona is big. Fiona is blue. Fiona is furry. Fiona is red. Fiona is young. Nice, big people are young. If someone is nice then they are white. If Erin is furry then Erin is white. All white, furry people are big. If someone is young then they are furry. Big people are nice. All young people are blue. Blue, red people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-817_Q5", "context": "The bear eats the mouse. The bear is rough. The bear sees the squirrel. The lion eats the mouse. The lion is young. The lion likes the squirrel. The mouse is rough. The squirrel eats the lion. The squirrel is nice. The squirrel likes the mouse. The squirrel sees the lion. The squirrel sees the mouse. If someone eats the lion then they are kind. If someone is nice and they do not see the mouse then they do not like the lion. If someone sees the mouse and they do not eat the mouse then they like the lion. If someone is kind then they see the bear. If someone is nice and not cold then they eat the bear. If someone sees the bear then the bear eats the lion. If the squirrel eats the mouse then the squirrel is kind. If someone is kind and they do not see the mouse then the mouse likes the lion. If someone is rough and they do not eat the bear then the bear does not like the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel sees the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-540_Q11", "context": "The bear eats the mouse. The bear visits the dog. The bear visits the mouse. The dog eats the bear. The dog eats the mouse. The dog is blue. The dog is round. The dog needs the mouse. The dog visits the tiger. The mouse needs the bear. The tiger eats the dog. The tiger visits the dog. If someone is cold and they need the mouse then they eat the mouse. If someone is red then they visit the bear. If someone needs the mouse then the mouse needs the bear. If someone visits the tiger then the tiger eats the mouse. All red, blue people are rough. If someone visits the bear and they are red then the bear needs the mouse. If someone is rough then they eat the tiger. If the dog visits the tiger and the dog needs the bear then the bear is round. If someone needs the mouse and they eat the mouse then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear visits the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-1039_Q7", "context": "The cat needs the squirrel. The cat sees the squirrel. The dog is not young. The dog likes the cat. The dog likes the tiger. The dog needs the squirrel. The squirrel is red. The squirrel is round. The squirrel likes the tiger. The squirrel sees the cat. The squirrel does not see the dog. The tiger is not kind. The tiger does not like the cat. The tiger likes the squirrel. The tiger does not need the squirrel. The tiger sees the squirrel. If something is nice then it needs the tiger. If something likes the tiger and the tiger is red then it likes the cat. If something sees the tiger then it is nice. If the squirrel needs the tiger then the tiger is young. If something likes the squirrel and the squirrel is kind then the squirrel sees the tiger. If something is red then it is kind. If something sees the dog and the dog likes the tiger then the dog does not like the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-625_Q8", "context": "The bald eagle does not eat the cat. The bald eagle is not blue. The bear eats the cat. The bear is big. The bear is young. The cat eats the bald eagle. The cat is rough. The cat needs the bear. The cat does not visit the bald eagle. The dog eats the bear. The dog is nice. If something visits the bear and the bear needs the dog then the dog is rough. If the bald eagle visits the cat and the cat eats the bald eagle then the cat is blue. If something is blue and nice then it visits the bear. If something visits the bear then the bear needs the dog. If something needs the cat and the cat needs the bear then the bear needs the dog. If the cat is blue then the cat visits the bear. If something is rough then it is blue. If the bear is big then the bear visits the cat. If the dog does not visit the bear then the dog does not visit the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not need the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-522_Q1", "context": "Bob is quiet. Dave is blue. Dave is nice. Dave is quiet. Gary is nice. Harry is cold. Harry is quiet. All nice things are green. If something is green then it is furry. Green, quiet things are nice. Nice, young things are quiet. All furry, blue things are nice. All furry, green things are blue. All furry, young things are nice. If Dave is blue and Dave is young then Dave is nice. Green, blue things are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1082_Q10", "context": "Anne is young. Dave is kind. Dave is red. Dave is white. Dave is young. Erin is blue. Erin is green. Harry is green. Harry is kind. Harry is nice. Kind things are nice. If something is kind then it is young. If something is blue then it is red. All red things are white. If something is white then it is kind. Young things are blue. If something is white and nice then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-313_Q1", "context": "The bear is green. The bear sees the cow. The bear visits the squirrel. The cow visits the dog. The dog chases the bear. The dog does not visit the cow. The squirrel is not nice. If the squirrel sees the cow and the squirrel is nice then the squirrel does not chase the dog. If someone is cold and they do not see the squirrel then they visit the dog. If someone sees the bear then the bear does not visit the cow. If someone is green then they chase the cow. If someone chases the squirrel and the squirrel visits the cow then the cow does not visit the squirrel. If someone chases the dog then the dog is green. If someone chases the cow then they chase the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear sees the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-888_Q1", "context": "Charlie is rough. Dave is furry. Dave is rough. Erin is smart. Fiona is furry. Fiona is quiet. Fiona is white. Smart, blue people are rough. All blue people are white. All nice people are smart. If someone is furry then they are nice. Rough, blue people are nice. If someone is quiet then they are blue. If Erin is smart and Erin is white then Erin is nice. Furry, smart people are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-427_Q11", "context": "Anne is big. Anne is smart. Bob is big. Bob is cold. Bob is rough. Bob is white. Charlie is big. Charlie is blue. Charlie is cold. Charlie is white. Gary is cold. Gary is rough. If someone is cold then they are nice. Cold, blue people are white. If someone is big then they are rough. White people are rough. If someone is rough then they are cold. All nice, rough people are blue. Blue people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-232_Q3", "context": "The bald eagle is blue. The bald eagle is young. The bald eagle does not visit the cat. The cat is not blue. The dog is not young. The squirrel eats the cat. The squirrel eats the dog. The squirrel is cold. The squirrel is young. The squirrel needs the dog. The squirrel visits the bald eagle. If someone is young and rough then they visit the dog. If the dog needs the bald eagle and the dog needs the squirrel then the bald eagle needs the cat. All young people are rough. If the bald eagle visits the dog then the dog visits the bald eagle. If someone eats the bald eagle then they are cold. If someone visits the squirrel and the squirrel needs the cat then they eat the bald eagle. If someone visits the bald eagle then they eat the bald eagle. If someone eats the dog and they do not visit the dog then the dog is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel eats the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-429_Q18", "context": "The cat is blue. The cat likes the dog. The cat does not need the cow. The cat needs the rabbit. The cow needs the dog. The cow needs the rabbit. The dog chases the rabbit. The dog needs the cat. The rabbit does not chase the cat. The rabbit chases the dog. The rabbit needs the cat. If the rabbit chases the dog and the dog needs the cow then the dog chases the cow. If someone needs the cow then the cow likes the dog. If someone is round and they chase the rabbit then the rabbit likes the cat. If someone is blue then they chase the cow. If someone likes the rabbit then they chase the rabbit. If someone chases the cow then the cow is round. If the cat likes the dog then the dog does not need the cow. If someone chases the rabbit then they need the rabbit. If the cow is round then the cow likes the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow likes the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-550_Q21", "context": "The bald eagle is blue. The bald eagle is nice. The bald eagle is rough. The bald eagle likes the cat. The bald eagle needs the cow. The bald eagle visits the cow. The cat is blue. The cat likes the squirrel. The cow needs the bald eagle. The squirrel is kind. The squirrel is nice. The squirrel likes the bald eagle. If something visits the bald eagle then it likes the squirrel. If something likes the squirrel then the squirrel is nice. If something needs the squirrel and it visits the cow then the squirrel visits the bald eagle. If something likes the cat then it needs the squirrel. If something visits the bald eagle then the bald eagle is blue. If something is kind and it likes the squirrel then the squirrel likes the cat. If the bald eagle needs the squirrel and the squirrel is rough then the bald eagle is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not like the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-204_Q5", "context": "Anne is kind. Charlie is big. Charlie is not kind. Charlie is rough. Erin is nice. Gary is big. Gary is cold. Green things are cold. All kind things are not cold. If something is big and cold then it is young. Big things are green. Rough, nice things are big. Green things are big. Nice things are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-492_Q12", "context": "The bald eagle eats the dog. The bald eagle needs the cow. The bald eagle visits the dog. The bald eagle visits the tiger. The cow is blue. The cow visits the dog. The dog eats the bald eagle. The dog eats the cow. The dog is not green. The dog is young. The dog needs the tiger. The dog does not visit the bald eagle. The dog visits the cow. The dog visits the tiger. The tiger eats the cow. The tiger is not kind. If something needs the dog and it visits the dog then the dog visits the cow. If something visits the dog then it is cold. If something needs the tiger and the tiger visits the bald eagle then the tiger is not blue. If something is young then it visits the cow. If something is blue and it eats the tiger then the tiger visits the dog. If something is cold then it eats the tiger. If something eats the dog and it does not need the cow then it is not kind. Green things are young. If something needs the bald eagle and it visits the tiger then the bald eagle is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not eat the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1281_Q6", "context": "Bob is furry. Bob is green. Bob is kind. Bob is rough. Bob is round. Dave is cold. Dave is furry. Dave is green. Dave is kind. Erin is green. Gary is cold. Gary is furry. Gary is green. Gary is kind. Gary is rough. Gary is young. If something is young and green then it is rough. Rough, young things are furry. If something is cold then it is round. If something is green then it is young. If Bob is young then Bob is round. All cold things are green. All kind things are young. Furry, green things are cold. If Dave is rough then Dave is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-441_Q21", "context": "The bald eagle chases the mouse. The bald eagle visits the bear. The bear is rough. The bear visits the bald eagle. The bear does not visit the mouse. The mouse chases the bald eagle. The squirrel chases the bear. If something is blue then it needs the bear. If something chases the bear and it visits the bald eagle then it does not need the bear. If something visits the mouse and the mouse is blue then the mouse does not visit the bear. If something needs the mouse then the mouse visits the bald eagle. If the bear visits the squirrel then the bear needs the squirrel. If something chases the bear and the bear needs the squirrel then the squirrel needs the mouse. If something chases the bear and it visits the mouse then the bear does not visit the bald eagle. If something visits the bald eagle then it visits the squirrel. If the mouse does not visit the bear then the mouse is young.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not chase the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-25_Q1", "context": "Charlie is blue. Charlie is cold. Charlie is kind. Charlie is not round. Dave is big. Dave is blue. Dave is not cold. Dave is smart. Fiona is big. Fiona is round. Harry is not red. If something is round then it is cold. If something is red and big then it is smart. If something is big and cold then it is smart. If something is cold then it is smart. Round, smart things are kind. If something is round then it is big. If something is red and not round then it is big. All blue things are red. All kind, smart things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-753_Q20", "context": "The bald eagle chases the tiger. The bald eagle is young. The bald eagle visits the tiger. The cat is not big. The cat is green. The cat does not visit the bald eagle. The cow is not big. The cow is green. The cow is not rough. The tiger chases the bald eagle. The tiger chases the cow. The tiger does not visit the cow. If someone eats the cat then the cat is young. If someone is rough then they eat the cat. All young people are rough. If someone eats the cat and they are rough then they are green. If the tiger is blue and the tiger chases the bald eagle then the tiger eats the cow. If someone is big and not green then they chase the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1358_Q1", "context": "Charlie is kind. Charlie is red. Charlie is young. Dave is big. Dave is blue. Dave is red. Dave is young. Erin is big. Erin is kind. Erin is quiet. Erin is red. Erin is young. Gary is blue. Gary is young. If someone is quiet and young then they are kind. Young, red people are big. If someone is kind and red then they are young. All kind, young people are round. Big people are quiet. Blue people are red. If Charlie is young and Charlie is big then Charlie is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-223_Q9", "context": "The bald eagle is cold. The bald eagle is nice. The bald eagle is round. The cow is rough. The cow sees the squirrel. The cow visits the mouse. The mouse needs the squirrel. The mouse sees the bald eagle. The mouse visits the bald eagle. The squirrel visits the cow. If someone is round then they need the bald eagle. If the cow needs the bald eagle then the bald eagle is round. If someone sees the squirrel then they need the bald eagle. If someone visits the cow and the cow is blue then the cow visits the squirrel. If someone sees the cow then the cow is round. If someone is round then they visit the cow. If someone visits the cow then they are blue. If someone needs the squirrel and they see the cow then they are cold. If someone needs the squirrel then the squirrel sees the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-565_Q8", "context": "Anne is quiet. Bob is quiet. Charlie is green. Charlie is round. Charlie is young. Harry is quiet. Harry is round. All round, quiet things are not rough. Quiet things are round. If something is quiet and not rough then it is green. All green things are white. If something is kind and green then it is white. Young things are white. If Anne is white and Anne is quiet then Anne is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1185_Q5", "context": "Anne is quiet. Anne is rough. Anne is white. Bob is rough. Bob is smart. Charlie is quiet. Charlie is young. Dave is quiet. Dave is smart. Dave is young. Quiet people are big. Quiet people are young. If someone is rough then they are white. White people are smart. All smart, white people are nice. If someone is white then they are big. If someone is smart then they are rough. Big people are rough. If someone is rough then they are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-599_Q23", "context": "The dog is round. The dog sees the mouse. The mouse sees the rabbit. The rabbit chases the mouse. The rabbit eats the tiger. The rabbit sees the tiger. The tiger is young. If someone chases the rabbit then the rabbit sees the tiger. If someone is young and blue then they are cold. If the dog is round and the dog is rough then the dog sees the mouse. If someone chases the tiger and the tiger is blue then they are young. If someone sees the dog then the dog is young. If someone chases the dog and the dog sees the tiger then the dog is young. If someone chases the rabbit then they see the dog. If someone is round and they see the mouse then the mouse sees the rabbit. If someone is young then they chase the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not chase the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-213_Q4", "context": "Anne is quiet. Anne is red. Dave is rough. Erin is cold. Erin is rough. Fiona is cold. Fiona is green. If Fiona is kind and Fiona is nice then Fiona is rough. All nice things are kind. All green, cold things are red. If something is red then it is nice. If Anne is rough and Anne is green then Anne is kind. If something is quiet and not nice then it is rough. Kind things are rough. Rough things are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-885_Q10", "context": "The bear is cold. The bear is red. The bear does not need the cat. The bear sees the lion. The cat is not cold. The cat is not round. The cat does not see the lion. The cat sees the mouse. The lion visits the bear. The mouse is red. The mouse is not rough. If something is kind then it sees the cat. If something visits the bear then it is kind. If something is rough and it needs the mouse then the mouse visits the bear. If something sees the cat then the cat visits the bear. If something sees the cat and the cat visits the bear then the bear does not visit the lion. If something sees the mouse and it does not need the mouse then the mouse needs the cat. If something visits the lion and it does not see the mouse then the mouse is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-278_Q3", "context": "The cow is young. The cow likes the rabbit. The cow visits the rabbit. The cow visits the tiger. The dog likes the tiger. The dog sees the rabbit. The dog sees the tiger. The rabbit likes the dog. The rabbit sees the dog. The rabbit visits the dog. The rabbit visits the tiger. The tiger is red. The tiger sees the cow. The tiger sees the rabbit. If something likes the rabbit then the rabbit likes the tiger. If something likes the tiger then it is big. If something visits the rabbit and it is young then the rabbit sees the tiger. If something visits the rabbit then the rabbit visits the tiger. If something visits the tiger and it visits the cow then the cow likes the rabbit. If something visits the tiger then the tiger is young. If something likes the dog and it is big then the dog is round. If something visits the cow then it visits the rabbit. If something is round and it sees the rabbit then it visits the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-869_Q16", "context": "The dog eats the mouse. The dog eats the rabbit. The dog is rough. The mouse is kind. The mouse sees the dog. The rabbit does not see the mouse. The tiger eats the mouse. The tiger eats the rabbit. The tiger is cold. The tiger does not like the dog. The tiger does not like the mouse. If someone eats the mouse and they do not like the tiger then the mouse sees the rabbit. If the dog is rough then the dog is not cold. If someone sees the mouse then they eat the tiger. If someone eats the tiger then the tiger is kind. If someone is red and they do not see the tiger then the tiger is not kind. If the rabbit sees the tiger then the rabbit does not see the dog. If someone eats the tiger then they are kind. If someone is kind then they see the mouse. If someone eats the rabbit and they like the dog then they are green.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog eats the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-774_Q11", "context": "The cow chases the mouse. The cow eats the dog. The cow sees the dog. The dog chases the cow. The dog chases the mouse. The mouse is kind. The tiger chases the dog. If something chases the cow then the cow is blue. If something sees the cow then it eats the mouse. If something eats the dog then it sees the cow. If something is blue and it sees the dog then the dog is kind. If something is kind then it eats the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog eats the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-244_Q3", "context": "The bald eagle eats the cat. The bald eagle is nice. The cat is kind. The cat needs the tiger. The squirrel eats the bald eagle. The squirrel is kind. The squirrel visits the bald eagle. The tiger eats the cat. The tiger eats the squirrel. The tiger visits the cat. If something needs the bald eagle then the bald eagle is kind. If the squirrel eats the cat then the cat eats the tiger. If something eats the squirrel and it eats the tiger then it needs the cat. If something visits the squirrel and the squirrel is blue then the squirrel needs the tiger. If something is kind then it visits the tiger. If something is nice and kind then it visits the cat. If something is kind and it eats the tiger then the tiger eats the cat. If something visits the tiger then it needs the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat visits the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-973_Q7", "context": "The bald eagle chases the mouse. The bald eagle eats the cat. The bald eagle is not nice. The bald eagle is round. The bald eagle is young. The cat is red. The mouse eats the cat. The rabbit eats the bald eagle. The rabbit eats the mouse. The rabbit is kind. The rabbit is round. The rabbit visits the cat. If something visits the rabbit and the rabbit visits the cat then the cat is round. If something visits the bald eagle and the bald eagle chases the mouse then it visits the rabbit. If something eats the cat then the cat is not kind. If something chases the bald eagle and it visits the bald eagle then the bald eagle does not eat the cat. If the mouse is not young then the mouse does not eat the bald eagle. If something is round then it visits the bald eagle. If the bald eagle is young then the bald eagle chases the rabbit. If something is red and not round then it eats the bald eagle. If something is young then it does not eat the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1236_Q3", "context": "Charlie is blue. Charlie is kind. Charlie is rough. Dave is cold. Erin is red. Erin is rough. Gary is furry. Kind people are furry. If Dave is kind then Dave is furry. If someone is furry and red then they are quiet. Cold people are blue. If someone is rough then they are quiet. All blue people are quiet. All cold, quiet people are red. If Dave is red then Dave is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-469_Q9", "context": "Bob is big. Bob is cold. Fiona is big. Fiona is blue. Gary is big. Harry is big. Harry is not round. All blue people are furry. All blue, cold people are furry. Furry, cold people are nice. Round, kind people are nice. If someone is furry then they are kind. All furry people are kind. If someone is kind and big then they are round. Furry, nice people are not cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-281_Q8", "context": "The lion eats the mouse. The mouse is big. The mouse likes the tiger. The rabbit does not chase the tiger. The rabbit is big. The rabbit likes the tiger. The tiger is not big. If someone likes the tiger then they are blue. If someone is young then they eat the mouse. If someone is rough then they are cold. If someone is rough and they eat the mouse then they do not like the mouse. If someone is cold then they chase the lion. If someone is rough and they like the rabbit then they eat the tiger. All cold people are young. If someone likes the tiger then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not chase the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-940_Q6", "context": "Bob is cold. Bob is kind. Bob is nice. Bob is white. Erin is blue. Erin is kind. Erin is nice. Fiona is blue. Gary is blue. Gary is kind. If someone is nice then they are cold. If Erin is nice and Erin is white then Erin is young. If someone is nice then they are kind. All young people are white. Cold, young people are nice. If someone is kind then they are young. White people are nice. If someone is blue then they are kind. Cold, nice people are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1374_Q12", "context": "Bob is blue. Bob is furry. Erin is furry. Erin is quiet. Erin is red. Erin is white. Fiona is quiet. Fiona is red. Fiona is round. Fiona is white. Harry is blue. Harry is kind. Harry is red. Harry is white. If something is round then it is white. Red, white things are kind. Quiet, round things are furry. If something is red and kind then it is quiet. Blue things are round. All blue, white things are red. If something is red then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-411_Q8", "context": "The bear eats the cat. The cat likes the squirrel. The cat visits the squirrel. The rabbit is cold. The rabbit is young. The rabbit likes the squirrel. The rabbit visits the bear. The rabbit visits the squirrel. The squirrel is cold. The squirrel visits the rabbit. If the rabbit likes the squirrel then the rabbit is blue. If someone is blue then they like the cat. If someone eats the bear then the bear is rough. If someone is rough then they like the rabbit. If someone likes the cat and they are young then the cat eats the bear. If someone is red and cold then they eat the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not eat the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-685_Q14", "context": "Dave is green. Erin is furry. Fiona is blue. Fiona is furry. Harry is blue. Harry is smart. Harry is white. If someone is big then they are blue. All furry, kind people are big. If someone is furry then they are white. White, smart people are kind. All big people are kind. If Dave is blue then Dave is kind. If someone is green then they are furry. If someone is kind then they are big. If someone is white then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-517_Q21", "context": "The bear sees the dog. The dog eats the lion. The dog is blue. The dog is round. The dog needs the squirrel. The lion needs the dog. The lion needs the squirrel. The squirrel does not eat the bear. The squirrel eats the dog. The squirrel does not see the bear. If something sees the lion then the lion does not need the dog. If the bear needs the squirrel and the squirrel does not eat the dog then the bear is not red. If something eats the squirrel and it is not big then the squirrel eats the lion. If something sees the dog then the dog needs the bear. If something needs the dog and it is not red then the dog does not see the squirrel. If something sees the squirrel and it eats the lion then the lion is blue. If something is blue and it eats the bear then it sees the dog. If something is blue then it sees the squirrel. If the lion is blue and the lion sees the squirrel then the squirrel is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not eat the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-378_Q12", "context": "The bear eats the cow. The bear is rough. The bear needs the cow. The bear needs the lion. The cow is big. The cow is blue. The cow is green. The cow sees the dog. The dog is kind. The dog is rough. The lion eats the dog. The lion is blue. The lion is rough. The lion needs the bear. The lion needs the cow. The lion sees the cow. If someone is kind and they need the cow then they see the dog. If someone sees the cow then the cow is blue. If someone needs the cow then they eat the dog. If someone sees the cow and they are green then the cow eats the lion. If the cow needs the lion then the lion eats the bear. If someone needs the bear then they eat the lion. If someone eats the lion then they are green. If someone eats the lion and the lion eats the dog then they need the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not eat the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-259_Q4", "context": "The bear is big. The cat is big. The cat visits the bear. The cat visits the lion. The lion is nice. The lion likes the bear. The lion sees the cat. The lion sees the tiger. The tiger is cold. The tiger sees the cat. If the cat is kind then the cat sees the bear. If something is cold then it sees the lion. If something sees the bear then the bear is nice. If something sees the cat and the cat is blue then the cat sees the bear. If something is nice then it likes the lion. If something likes the lion then it sees the bear. If something visits the bear then the bear is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-450_Q9", "context": "Anne is big. Anne is quiet. Charlie is big. Dave is big. Dave is white. Gary is big. Gary is white. Quiet things are nice. If something is white and nice then it is rough. Kind, big things are quiet. Rough, kind things are furry. If something is white then it is kind. If Anne is quiet then Anne is white. All kind things are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-224_Q9", "context": "Anne is rough. Charlie is blue. Charlie is smart. Erin is blue. Erin is not quiet. Gary is not kind. Gary is not rough. All quiet, furry things are not young. If something is rough then it is young. All kind, smart things are young. If something is young then it is blue. If something is quiet and kind then it is blue. If something is kind then it is quiet. Blue, young things are kind. Quiet things are smart. If Charlie is kind and Charlie is quiet then Charlie is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-376_Q9", "context": "Anne is blue. Anne is young. Bob is not big. Bob is round. Charlie is blue. Erin is cold. Erin is young. Young people are round. Cold people are round. If Anne is quiet then Anne is white. All big people are quiet. Young, round people are big. All white people are not cold. If someone is big and not white then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-194_Q18", "context": "The cat does not chase the rabbit. The cat does not eat the cow. The cat is not blue. The cat does not like the rabbit. The cow chases the rabbit. The cow eats the cat. The cow is nice. The cow is red. The cow does not like the rabbit. The lion is nice. The rabbit eats the cat. The rabbit likes the cow. If someone chases the rabbit then they are blue. If someone likes the cat and the cat is red then the cat does not eat the lion. If someone eats the rabbit then they eat the lion. If someone eats the cat and the cat eats the cow then the cat is nice. If someone eats the cow then they eat the rabbit. If someone likes the cow then they eat the cow. If someone eats the lion then the lion eats the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow eats the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-359_Q18", "context": "The bear chases the cat. The bear eats the cat. The bear is red. The cat eats the bear. The cat is green. The cat is young. The cat visits the rabbit. The cat visits the tiger. The rabbit eats the cat. The rabbit eats the tiger. The rabbit is not round. The rabbit visits the bear. The tiger chases the rabbit. The tiger eats the rabbit. The tiger is not green. The tiger visits the cat. All red people are green. If someone is green then they are red. If the tiger eats the cat then the cat does not chase the bear. If the tiger is young and the tiger eats the bear then the bear eats the cat. If the rabbit visits the cat and the cat chases the bear then the cat eats the rabbit. If someone visits the cat and the cat is red then they eat the cat. If someone is kind then they chase the rabbit. If someone visits the cat and they are kind then the cat chases the rabbit. If someone eats the cat and the cat does not chase the bear then the cat is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-134_Q8", "context": "The cat chases the squirrel. The cat is big. The cat is green. The cow likes the squirrel. The rabbit chases the squirrel. The rabbit is blue. The rabbit is green. The rabbit likes the squirrel. The squirrel is blue. The squirrel is round. The squirrel does not need the cat. If someone is round then they are green. If someone chases the cat then they are big. If the cat likes the cow and the cat does not need the squirrel then the cat does not like the squirrel. If someone is big then they chase the cat. If someone chases the cow then the cow chases the cat. If someone chases the cat then the cat likes the rabbit. If someone likes the rabbit then the rabbit chases the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not chase the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-945_Q21", "context": "The cat does not eat the dog. The dog sees the rabbit. The mouse is big. The mouse is round. The rabbit eats the cat. The rabbit is round. The rabbit likes the dog. If the cat sees the dog and the cat is rough then the cat likes the mouse. If someone likes the rabbit then they see the mouse. If someone sees the cat and they like the dog then the cat likes the rabbit. If someone eats the cat then the cat is blue. If someone is round then they see the cat. If someone likes the mouse then the mouse eats the dog. If someone sees the mouse then the mouse likes the rabbit. If the cat likes the mouse then the mouse likes the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-97_Q1", "context": "The bear sees the dog. The cow chases the bear. The cow is young. The cow needs the bear. The cow needs the lion. The dog is cold. The dog is not rough. The lion chases the bear. The lion needs the bear. The lion needs the cow. The lion sees the cow. If someone is rough then they see the bear. If someone sees the bear then the bear needs the dog. If someone needs the lion and the lion needs the bear then they are rough. If someone sees the bear then they are big. If someone chases the dog then the dog sees the lion. If someone sees the lion then they are cold. If someone is big then they chase the dog. If someone chases the lion and they are not rough then they chase the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion sees the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-80_Q17", "context": "Anne is kind. Anne is round. Anne is smart. Charlie is big. Gary is blue. Gary is green. Gary is kind. Gary is smart. Harry is green. Harry is kind. Harry is quiet. Smart, kind people are round. All round people are smart. Blue, green people are big. Quiet, kind people are green. Round, quiet people are kind. Big people are round. Smart people are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1362_Q1", "context": "Anne is cold. Bob is cold. Bob is smart. Erin is nice. Erin is quiet. Erin is smart. Fiona is rough. All smart, kind things are cold. Quiet, nice things are kind. Cold, quiet things are kind. If something is cold and smart then it is white. If something is white and kind then it is nice. If Fiona is kind and Fiona is cold then Fiona is rough. All cold, white things are quiet. All cold things are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-46_Q1", "context": "The bald eagle eats the squirrel. The cat visits the cow. The cow eats the cat. The cow eats the squirrel. The cow visits the squirrel. The squirrel eats the cow. The squirrel sees the cow. If someone is cold then they see the bald eagle. If the cat is round and the cat sees the cow then the cow eats the bald eagle. If someone visits the bald eagle then they eat the bald eagle. All red people are cold. If someone sees the cow then they see the cat. Blue, cold people are young. If someone is young and they visit the cow then the cow visits the bald eagle. If someone visits the cow then they are cold. If someone visits the cow and they see the bald eagle then the cow is red.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat visits the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-878_Q11", "context": "The cow is kind. The cow is nice. The cow likes the lion. The cow likes the mouse. The cow visits the mouse. The lion is big. The lion likes the mouse. The mouse visits the lion. The tiger eats the mouse. The tiger is nice. The tiger is red. The tiger likes the cow. The tiger likes the lion. The tiger visits the cow. If the mouse eats the cow and the mouse likes the tiger then the mouse likes the cow. If someone is nice then they are young. If someone eats the lion then they are big. If someone is young then they eat the mouse. If someone eats the lion and they like the mouse then the lion likes the cow. All kind, big people are red. If someone eats the mouse and they are kind then the mouse is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse eats the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-862_Q6", "context": "The bear chases the mouse. The bear sees the lion. The lion sees the squirrel. The mouse is nice. The squirrel chases the bear. The squirrel needs the lion. The squirrel sees the bear. If something is big then it needs the lion. If something sees the mouse then it needs the lion. If something needs the squirrel then the squirrel sees the lion. If something sees the squirrel then the squirrel sees the mouse. If something chases the squirrel and the squirrel sees the lion then the lion chases the squirrel. If something needs the bear then the bear is round. If the bear sees the lion then the lion chases the squirrel. If something sees the lion then it is red. If something is red then it needs the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not need the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-480_Q6", "context": "The cat sees the dog. The cat visits the mouse. The dog sees the mouse. The dog visits the mouse. The mouse eats the dog. The mouse is big. The mouse is kind. The mouse is rough. The mouse sees the cat. The mouse visits the rabbit. The rabbit eats the cat. If something visits the mouse then it visits the rabbit. If something sees the mouse and it is big then it sees the cat. If something is cold then it eats the rabbit. If something sees the cat then it is cold. If something is cold then it eats the mouse. If something eats the cat then it is rough. If something eats the rabbit and it visits the rabbit then the rabbit sees the cat. If something visits the mouse and it sees the mouse then it is kind. If something visits the dog and it eats the rabbit then the dog sees the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not eat the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-981_Q10", "context": "The bald eagle eats the cat. The bald eagle does not visit the tiger. The cat is round. The lion does not eat the tiger. The tiger is nice. The tiger needs the bald eagle. The tiger visits the cat. If someone is nice then they visit the bald eagle. If someone eats the cat and they are not green then the cat is red. If someone needs the tiger then they are not nice. If someone eats the bald eagle then the bald eagle is nice. If someone visits the bald eagle then they eat the bald eagle. If someone is green and they eat the tiger then the tiger needs the bald eagle. If someone eats the lion and they need the lion then the lion visits the tiger. If someone is green and not young then they eat the lion. If someone needs the tiger and the tiger does not eat the bald eagle then they eat the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not visit the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-985_Q20", "context": "The cat eats the squirrel. The cat is red. The cat is rough. The cat likes the squirrel. The cat visits the squirrel. The mouse is cold. The mouse is red. The mouse is rough. The mouse likes the cat. The mouse visits the cat. The rabbit eats the mouse. The rabbit eats the squirrel. The rabbit is red. The rabbit is rough. The rabbit visits the mouse. The squirrel eats the rabbit. If someone is red and they visit the rabbit then they eat the mouse. If someone visits the squirrel then the squirrel likes the mouse. If the rabbit visits the squirrel and the rabbit likes the mouse then the squirrel is red. If someone eats the rabbit and the rabbit eats the mouse then they are red. If someone likes the squirrel then they eat the rabbit. If someone is rough then they like the squirrel. If someone visits the rabbit and they eat the squirrel then the squirrel is rough. If someone likes the squirrel then they are kind. If someone is kind then they visit the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-798_Q18", "context": "Anne is big. Anne is red. Anne is white. Dave is furry. Dave is rough. Erin is not blue. Erin is red. Fiona is not big. Fiona is blue. Fiona is red. Fiona is white. White people are green. Green people are red. Furry people are big. All big people are blue. If someone is white and not furry then they are blue. Blue, rough people are white. If Anne is big then Anne is not rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-554_Q5", "context": "The cow is cold. The cow likes the mouse. The mouse visits the squirrel. The mouse visits the tiger. The squirrel is big. The squirrel is round. The squirrel likes the mouse. The squirrel likes the tiger. The tiger is blue. The tiger needs the mouse. The tiger visits the cow. The tiger visits the mouse. If someone is round and they like the tiger then they visit the tiger. If someone needs the cow then the cow is cold. If someone visits the tiger and they are blue then they need the squirrel. If someone visits the mouse then they need the cow. If someone is round then they like the tiger. If someone likes the mouse then they need the squirrel. If someone is round then they like the cow. If someone visits the mouse then the mouse needs the tiger. If someone needs the cow and they visit the cow then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-480_Q5", "context": "Bob is rough. Bob is smart. Dave is big. Dave is smart. Erin is not furry. Harry is round. Harry is smart. Quiet, furry things are big. All smart, rough things are big. If Dave is blue and Dave is quiet then Dave is rough. All round, furry things are smart. All smart things are quiet. If something is rough then it is quiet. If something is round and smart then it is blue. Quiet, smart things are round. All rough things are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-89_Q17", "context": "The bear likes the cat. The bear needs the lion. The cat likes the bear. The cat likes the lion. The cat needs the lion. The cat sees the tiger. The lion does not like the cat. The lion does not like the tiger. The lion sees the cat. The tiger needs the bear. The tiger does not see the lion. If the tiger needs the bear and the tiger likes the cat then the cat is rough. If something needs the tiger then it likes the cat. If the cat sees the bear then the cat needs the lion. If the tiger sees the bear then the tiger is rough. If something likes the bear then it needs the tiger. If something needs the bear then it needs the lion. If something is rough then it is green. If the cat is blue then the cat needs the bear. If something needs the bear then it likes the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not need the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-446_Q23", "context": "The bald eagle chases the tiger. The bald eagle is not kind. The bald eagle does not see the squirrel. The bald eagle visits the mouse. The bald eagle visits the squirrel. The mouse is cold. The mouse is kind. The mouse sees the tiger. The squirrel is cold. The squirrel is kind. The squirrel is rough. The squirrel visits the mouse. The tiger chases the bald eagle. The tiger sees the squirrel. If the squirrel does not see the bald eagle then the bald eagle does not chase the tiger. If someone is kind then they are round. If someone is kind and they visit the tiger then the tiger does not chase the squirrel. If someone is round then they chase the tiger. If someone chases the squirrel and the squirrel sees the tiger then they are cold. If someone chases the mouse then the mouse does not chase the squirrel. If someone chases the squirrel and they do not visit the tiger then they visit the squirrel. If someone is round and kind then they do not visit the squirrel. If the mouse chases the tiger then the tiger is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not see the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-944_Q14", "context": "Charlie is quiet. Erin is cold. Erin is rough. Gary is not quiet. Gary is young. Harry is not big. Harry is not cold. All young things are cold. If something is rough then it is young. If Erin is big then Erin is young. If Charlie is kind then Charlie is quiet. If something is quiet then it is rough. Kind things are big. Nice things are quiet. If something is cold and rough then it is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-362_Q24", "context": "The bald eagle does not chase the cow. The bald eagle chases the tiger. The bald eagle eats the tiger. The bald eagle needs the cow. The bald eagle needs the tiger. The bear chases the cow. The bear chases the tiger. The bear is cold. The bear needs the cow. The cow chases the bald eagle. The tiger eats the cow. The tiger is nice. The tiger is red. The tiger needs the bear. If the tiger needs the bald eagle and the tiger does not need the cow then the tiger chases the bald eagle. If someone is round then they eat the cow. If the cow eats the bear then the bear chases the tiger. If the bald eagle eats the cow then the cow needs the tiger. If someone chases the cow then they eat the bald eagle. If someone chases the bald eagle and the bald eagle does not need the bear then the bear chases the bald eagle. If someone needs the tiger then they are round. If someone chases the tiger then they need the tiger. If the bear eats the cow and the bear is not round then the cow is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle chases the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-498_Q23", "context": "The cow eats the lion. The cow is green. The cow is kind. The lion needs the rabbit. The mouse is young. The rabbit eats the lion. The rabbit is green. The rabbit likes the lion. The rabbit likes the mouse. The rabbit needs the lion. The rabbit needs the mouse. If someone needs the cow and the cow eats the mouse then the mouse is round. If the mouse likes the cow then the cow is young. If someone needs the rabbit then they need the mouse. If someone likes the mouse then they eat the rabbit. If someone needs the cow and they eat the rabbit then the cow likes the lion. If someone needs the cow and the cow is rough then they are round. If someone is rough and green then they need the cow. If the cow likes the lion then the cow is green. If someone likes the lion then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-132_Q6", "context": "The cat is rough. The cow is green. The rabbit chases the cat. The rabbit eats the cow. The rabbit does not eat the squirrel. The rabbit is green. The squirrel chases the rabbit. The squirrel eats the cow. The squirrel likes the cow. The squirrel likes the rabbit. If something is round then it is not big. If something eats the squirrel and the squirrel likes the cat then it is rough. Big things are rough. If something chases the cow then it chases the cat. If something chases the cat and it chases the rabbit then the cat chases the rabbit. If something is blue and it chases the rabbit then the rabbit is rough. If something chases the rabbit then it chases the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not chase the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-750_Q5", "context": "Anne is not cold. Anne is rough. Dave is furry. Dave is round. Gary is red. Gary is round. Harry is cold. Harry is not furry. Harry is kind. Harry is round. If Gary is big then Gary is cold. If Dave is not cold then Dave is furry. If Harry is big then Harry is kind. Rough people are big. If Anne is rough then Anne is round. If Gary is cold and Gary is big then Gary is rough. If Gary is cold then Gary is furry. If someone is red then they are rough. If someone is furry then they are not kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-210_Q11", "context": "The bald eagle eats the dog. The bald eagle is nice. The dog chases the tiger. The dog eats the bald eagle. The dog is kind. The dog sees the tiger. The squirrel eats the dog. The squirrel is kind. The tiger eats the bald eagle. The tiger is kind. The tiger is nice. If something is big then it eats the dog. If the bald eagle chases the dog then the dog is nice. If something is young and it eats the dog then the dog sees the tiger. If the tiger eats the bald eagle and the bald eagle is kind then the tiger is green. If something is nice and it eats the bald eagle then it eats the squirrel. If something sees the bald eagle then the bald eagle chases the dog. If something sees the squirrel then the squirrel is big. If something eats the squirrel then it sees the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog eats the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-336_Q17", "context": "The bald eagle is big. The cat does not eat the bald eagle. The cat needs the bald eagle. The cat visits the bald eagle. The cat visits the tiger. The rabbit eats the cat. The rabbit eats the tiger. The rabbit is red. The tiger is big. The tiger does not visit the bald eagle. If the cat is blue and the cat visits the bald eagle then the cat is rough. If someone eats the bald eagle and the bald eagle is red then the bald eagle does not visit the tiger. If someone needs the rabbit and they do not eat the cat then the cat is blue. If someone needs the tiger then the tiger eats the bald eagle. If someone eats the bald eagle then they eat the tiger. If someone eats the rabbit and the rabbit needs the cat then the rabbit eats the tiger. If someone eats the bald eagle then they need the rabbit. If someone needs the bald eagle then they need the tiger. If someone needs the rabbit and the rabbit eats the tiger then the rabbit needs the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not eat the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-580_Q5", "context": "The cat is round. The cat visits the rabbit. The cow eats the squirrel. The cow is young. The cow visits the squirrel. The rabbit eats the cat. The rabbit does not eat the cow. The rabbit is cold. The rabbit is round. The rabbit visits the cat. The rabbit visits the squirrel. The squirrel eats the rabbit. The squirrel is round. The squirrel is young. The squirrel visits the cat. The squirrel visits the rabbit. If someone is round and young then they chase the squirrel. If someone is cold and they chase the cat then the cat is not round. If the cow is big then the cow eats the rabbit. If someone is young and they eat the rabbit then they do not visit the squirrel. If someone chases the rabbit then they are cold. If someone eats the squirrel then they are young. If someone chases the squirrel then they chase the rabbit. If someone chases the rabbit then the rabbit eats the squirrel. If someone chases the cow then the cow does not chase the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel chases the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1410_Q4", "context": "Bob is cold. Bob is furry. Dave is furry. Dave is white. Gary is furry. Gary is green. Gary is nice. Harry is blue. Harry is cold. Harry is furry. Harry is white. Harry is young. All furry, nice things are blue. If something is white then it is nice. If Bob is blue and Bob is white then Bob is furry. If something is furry then it is green. If Harry is green then Harry is furry. All furry, young things are white. Young, nice things are green. All nice, green things are white. All green things are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-612_Q11", "context": "The dog is rough. The dog sees the lion. The dog sees the mouse. The lion sees the mouse. The mouse is red. The mouse needs the lion. The mouse sees the dog. The mouse sees the squirrel. The squirrel needs the dog. The squirrel needs the lion. The squirrel sees the dog. The squirrel visits the dog. If someone sees the mouse and the mouse sees the dog then they visit the lion. If someone visits the mouse then the mouse needs the squirrel. If the lion is kind then the lion visits the squirrel. If someone is red and kind then they need the mouse. If someone visits the lion then they are nice. If someone sees the squirrel and they are nice then the squirrel sees the mouse. If someone needs the lion then the lion is nice. If someone is rough then they see the squirrel. If the squirrel sees the mouse and the mouse is cold then the mouse visits the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-861_Q3", "context": "Bob is furry. Bob is smart. Fiona is furry. Fiona is red. Fiona is smart. Gary is furry. Gary is quiet. Gary is red. Gary is rough. Gary is round. Harry is big. Quiet people are big. If someone is big and smart then they are quiet. All round people are big. If Gary is smart and Gary is round then Gary is big. Big people are furry. Round people are rough. If someone is red then they are round. Quiet people are red. If Harry is furry then Harry is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-27_Q2", "context": "Bob is furry. Bob is quiet. Dave is quiet. Erin is big. Erin is cold. Erin is kind. Erin is quiet. Fiona is furry. Fiona is nice. Fiona is quiet. Fiona is round. Furry, cold things are kind. All quiet things are big. All quiet, big things are nice. Furry things are round. If something is furry and big then it is round. All furry, big things are cold. If Erin is big then Erin is quiet. All cold, quiet things are furry. Nice things are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-477_Q6", "context": "The bald eagle likes the bear. The bear is kind. The bear likes the bald eagle. The dog chases the bald eagle. The dog is red. The tiger chases the bear. The tiger is round. If something sees the tiger then it chases the bear. If something likes the bear then it likes the bald eagle. If something is kind then it likes the bald eagle. If something is red and it chases the bear then the bear chases the bald eagle. If something sees the dog then it sees the tiger. Red things are round. If something chases the bald eagle then it sees the dog. If the bear chases the bald eagle and the bald eagle does not like the bear then the bear chases the dog. If something likes the dog then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not see the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-765_Q21", "context": "The bald eagle eats the lion. The bald eagle is blue. The bald eagle is young. The bear chases the lion. The bear eats the squirrel. The bear is round. The bear does not like the bald eagle. The bear likes the squirrel. The lion is not blue. The lion is rough. The lion likes the bald eagle. The squirrel is round. The squirrel is not young. The squirrel likes the lion. If someone likes the lion then they chase the bald eagle. If someone chases the squirrel and they chase the bald eagle then they like the bald eagle. If someone eats the bear then the bear likes the lion. If someone chases the bald eagle then they eat the bear. If someone eats the lion then the lion does not eat the bear. If someone eats the bear and they chase the bear then the bear is not rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1171_Q16", "context": "Bob is round. Charlie is rough. Charlie is white. Gary is blue. Gary is kind. Gary is smart. Harry is white. All smart, round things are kind. If Harry is rough then Harry is smart. If something is quiet then it is not smart. If something is blue then it is rough. If something is smart then it is round. All white things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-834_Q14", "context": "Bob is blue. Bob is furry. Dave is furry. Dave is rough. Dave is smart. Fiona is blue. Fiona is young. Gary is furry. Gary is rough. Gary is young. If Dave is blue then Dave is smart. All rough, smart things are cold. Blue, cold things are furry. If Fiona is blue then Fiona is cold. If something is furry and cold then it is smart. All young, green things are rough. If something is rough and cold then it is blue. Cold, smart things are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1136_Q3", "context": "Anne is big. Anne is quiet. Anne is red. Anne is rough. Bob is big. Bob is cold. Bob is nice. Bob is quiet. Bob is red. Bob is rough. Erin is big. Erin is quiet. Harry is big. Harry is cold. Harry is red. Harry is rough. All big, nice people are cold. All rough, cold people are blue. All red people are rough. Cold, big people are red. If someone is red and big then they are quiet. If Anne is quiet and Anne is red then Anne is rough. All red people are big. All quiet people are red. If someone is red and rough then they are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-401_Q13", "context": "The bear chases the cat. The bear is round. The cat chases the rabbit. The cat eats the tiger. The cat is big. The rabbit is nice. The tiger eats the bear. The tiger is big. The tiger needs the bear. The tiger needs the cat. If the cat eats the bear then the cat needs the rabbit. If someone is big then they chase the rabbit. All nice people are red. If someone needs the rabbit then they are big. If someone needs the bear and they need the cat then the bear is nice. If someone is red then they need the rabbit. If someone needs the bear and they are cold then the bear is cold. If someone eats the tiger then the tiger needs the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-469_Q9", "context": "Anne is cold. Anne is young. Bob is big. Bob is furry. Bob is quiet. Dave is big. Dave is cold. Dave is quiet. Dave is young. Gary is big. Gary is smart. Cold, quiet things are smart. If something is quiet and smart then it is big. All smart things are kind. If Anne is smart and Anne is cold then Anne is kind. Big, quiet things are smart. All young things are big. Kind, big things are furry. If something is big then it is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-545_Q6", "context": "The bald eagle sees the dog. The bald eagle sees the mouse. The bald eagle sees the squirrel. The dog chases the bald eagle. The dog is kind. The dog is not rough. The dog sees the mouse. The mouse is not young. The mouse sees the bald eagle. The squirrel does not need the dog. The squirrel sees the dog. If the mouse chases the bald eagle then the bald eagle chases the mouse. If something sees the dog then the dog needs the bald eagle. If something is young and it sees the mouse then the mouse chases the bald eagle. If something sees the mouse and the mouse does not see the squirrel then it is young. If something needs the squirrel then it is young. If something is kind and it sees the bald eagle then it is young. If something is cold then it sees the mouse. If something chases the mouse then it needs the mouse. If something sees the mouse then it sees the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-242_Q21", "context": "The bald eagle eats the rabbit. The bald eagle is round. The bald eagle sees the cat. The bald eagle sees the rabbit. The bald eagle visits the cat. The bald eagle visits the rabbit. The bear is rough. The bear is round. The bear visits the rabbit. The cat eats the bald eagle. The cat sees the rabbit. The cat visits the rabbit. The rabbit is rough. The rabbit is round. The rabbit sees the bald eagle. The rabbit visits the bald eagle. If someone visits the bald eagle and the bald eagle visits the bear then the bald eagle sees the rabbit. If someone visits the cat then they are rough. If someone visits the bald eagle then they eat the rabbit. If someone visits the bald eagle then they are rough. If someone is green then they see the bear. If someone sees the cat then they are green. If someone is nice and round then they visit the bald eagle. If someone sees the bear then the bear sees the cat. If someone is round and they see the bear then they eat the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-424_Q12", "context": "The bald eagle chases the lion. The bald eagle eats the squirrel. The lion chases the squirrel. The lion eats the tiger. The squirrel eats the bald eagle. The squirrel eats the tiger. The squirrel is big. The squirrel is cold. The squirrel is nice. The tiger chases the bald eagle. The tiger chases the squirrel. The tiger eats the squirrel. If the lion is blue then the lion chases the bald eagle. If someone eats the bald eagle and they eat the lion then the lion is big. If someone eats the bald eagle then the bald eagle is nice. If someone eats the bald eagle and the bald eagle is nice then they eat the lion. If the squirrel visits the tiger then the tiger is nice. If someone is big then they eat the bald eagle. If someone visits the lion and they visit the tiger then the lion visits the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not eat the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-339_Q7", "context": "Bob is not rough. Bob is not smart. Fiona is cold. Fiona is smart. Gary is quiet. Gary is rough. Harry is kind. If someone is rough then they are green. All cold people are quiet. All cold, round people are rough. If someone is smart and not cold then they are rough. All quiet people are round. If someone is green then they are round. All green, quiet people are not kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1259_Q12", "context": "Bob is round. Erin is blue. Erin is green. Erin is nice. Fiona is blue. Fiona is green. Fiona is nice. Harry is cold. Harry is nice. Harry is white. Harry is young. All nice things are cold. All nice things are blue. All round, green things are young. Cold, blue things are young. Cold, white things are green. All nice things are cold. All round things are nice. Young things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-662_Q11", "context": "The cat eats the rabbit. The cat is red. The cat is rough. The cat visits the cow. The cow eats the cat. The cow is red. The cow is young. The cow needs the rabbit. The rabbit eats the cow. The rabbit is kind. The rabbit is nice. The rabbit needs the squirrel. The squirrel needs the rabbit. The squirrel visits the cat. If something needs the rabbit then it eats the cow. If something is nice and it visits the cat then the cat needs the cow. If the cow eats the squirrel then the squirrel is nice. If something needs the cow then it eats the cow. If something is kind and rough then it visits the cat. If the cow eats the rabbit then the rabbit needs the squirrel. If something eats the cow then it eats the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat eats the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-557_Q12", "context": "Anne is big. Anne is green. Anne is not red. Anne is rough. Anne is not young. Erin is big. Erin is furry. Erin is green. Erin is nice. Erin is red. Erin is rough. Fiona is nice. Gary is furry. Gary is nice. Young people are nice. Big, rough people are furry. All big people are furry. Rough people are green. Red, green people are big. Nice people are red. If someone is big and not nice then they are red. If someone is red then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-11_Q14", "context": "Bob is nice. Bob is quiet. Bob is rough. Bob is smart. Dave is rough. Dave is smart. Fiona is white. Gary is rough. Gary is round. Gary is smart. Gary is white. All kind things are quiet. If something is quiet then it is nice. Smart things are round. If something is nice and white then it is kind. If Dave is white then Dave is kind. If Fiona is smart and Fiona is nice then Fiona is kind. All nice, quiet things are white. All smart, round things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-716_Q5", "context": "The cat sees the tiger. The mouse is big. The mouse is green. The rabbit eats the cat. The tiger is big. The tiger is rough. The tiger does not like the cat. If someone eats the cat then they see the tiger. If someone sees the cat then the cat is not kind. If someone eats the mouse then the mouse eats the cat. If someone sees the mouse and the mouse does not like the cat then they are not rough. If someone likes the tiger then the tiger likes the cat. If someone eats the mouse then they are not red. If someone sees the tiger then they eat the mouse. If someone likes the rabbit and the rabbit sees the tiger then they are kind. If someone sees the rabbit and they do not like the mouse then they are green.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-896_Q14", "context": "Anne is big. Anne is furry. Anne is green. Anne is quiet. Bob is cold. Bob is furry. Gary is green. Harry is big. Harry is cold. Harry is green. Harry is nice. Green things are blue. All cold things are blue. If something is blue then it is big. Big things are nice. Nice, blue things are green. If something is blue and not big then it is quiet. All nice, green things are quiet. If something is blue and not cold then it is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-595_Q6", "context": "The bald eagle is kind. The bald eagle likes the tiger. The bald eagle needs the dog. The dog chases the bald eagle. The dog is blue. The dog needs the tiger. The lion chases the tiger. The lion needs the bald eagle. The tiger chases the bald eagle. The tiger chases the dog. The tiger likes the dog. If someone is kind and they like the lion then the lion is kind. If someone is nice then they chase the tiger. If someone chases the bald eagle and they are nice then the bald eagle is cold. If someone likes the dog then the dog is not nice. If someone likes the lion then they like the bald eagle. If someone is kind then they like the lion. If someone likes the bald eagle then they are not green.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-856_Q11", "context": "The bald eagle eats the bear. The bear needs the cow. The cow eats the bald eagle. The cow eats the lion. The cow is rough. The cow likes the bald eagle. The cow likes the lion. The cow needs the lion. The lion is kind. The lion is nice. The lion is young. The lion likes the bald eagle. The lion likes the bear. The lion needs the bear. If something needs the bear and the bear likes the bald eagle then it is green. If something is rough and kind then it needs the bald eagle. If something is nice and rough then it needs the cow. If something is young and green then it is rough. If something eats the bald eagle then the bald eagle needs the bear. If something likes the bald eagle then it likes the cow. If something eats the bald eagle and the bald eagle needs the bear then the bear likes the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion needs the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-287_Q22", "context": "The bald eagle chases the cow. The bald eagle chases the mouse. The bald eagle is kind. The cow chases the mouse. The cow is round. The mouse is kind. The mouse is not round. The mouse likes the cow. The tiger does not chase the mouse. The tiger is rough. The tiger likes the mouse. The tiger needs the bald eagle. If someone chases the cow then the cow needs the tiger. If the mouse needs the cow then the mouse is not rough. If someone likes the tiger and they like the cow then the cow does not like the tiger. If someone chases the bald eagle then the bald eagle is cold. If someone needs the tiger then they like the bald eagle. If the bald eagle likes the tiger then the tiger needs the mouse. If someone is cold then they chase the tiger. If someone needs the tiger then they chase the bald eagle. If someone chases the tiger then the tiger is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle needs the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-979_Q10", "context": "The cat is cold. The cat is not red. The dog visits the cat. The mouse visits the squirrel. The squirrel chases the cat. The squirrel chases the mouse. The squirrel visits the mouse. If someone is red then they chase the squirrel. If someone chases the mouse then the mouse chases the dog. If someone chases the dog then the dog needs the mouse. If someone needs the mouse then the mouse is red. If the dog needs the mouse then the mouse needs the dog. If someone chases the squirrel then they are cold. If the squirrel is young then the squirrel visits the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not chase the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1391_Q15", "context": "Anne is green. Charlie is big. Charlie is quiet. Charlie is rough. Charlie is smart. Charlie is white. Fiona is big. Fiona is furry. Fiona is smart. Harry is big. Harry is furry. Harry is quiet. Green things are quiet. Rough, quiet things are smart. If something is green and quiet then it is rough. Big, rough things are furry. If something is white then it is big. Quiet things are rough. If Charlie is big then Charlie is quiet. All green, furry things are white. Quiet, smart things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-927_Q15", "context": "The cat eats the dog. The cat likes the squirrel. The cat does not visit the dog. The dog is cold. The dog does not like the cat. The dog visits the lion. The dog visits the squirrel. The lion eats the dog. The lion does not like the dog. The lion visits the cat. The squirrel eats the cat. The squirrel is cold. The squirrel is kind. The squirrel is rough. The squirrel likes the cat. The squirrel likes the dog. If something is cold then it eats the squirrel. If something eats the cat and it is nice then the cat eats the lion. If something likes the cat and it likes the lion then the lion is rough. If the squirrel eats the cat then the squirrel is not young. If something eats the squirrel then it is not young. If the cat eats the lion then the lion is young. If something eats the squirrel then it is nice. If something eats the lion and it does not visit the dog then it is nice. If something eats the lion then it is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-401_Q12", "context": "Anne is big. Anne is round. Bob is red. Dave is cold. Dave is red. Dave is young. Harry is big. Harry is red. Harry is round. Harry is white. White, round people are cold. Big, young people are white. White, cold people are nice. If Anne is nice and Anne is round then Anne is red. Red people are young. If someone is young and nice then they are round. All young people are round. If someone is big then they are young. If Dave is cold then Dave is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1059_Q1", "context": "Anne is blue. Anne is furry. Anne is quiet. Erin is young. Gary is quiet. Harry is furry. Harry is quiet. Blue, kind things are furry. All kind things are smart. Young things are blue. If something is blue then it is kind. White, blue things are young. If Anne is white then Anne is not young. Smart, young things are quiet. Quiet, young things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-452_Q15", "context": "Charlie is green. Dave is not green. Dave is kind. Dave is red. Fiona is blue. Fiona is not kind. Gary is quiet. If Fiona is young then Fiona is not red. All green people are blue. If someone is young then they are blue. All blue people are young. All young people are not red. If Charlie is not red then Charlie is nice. Nice, green people are not kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-454_Q10", "context": "The cat is big. The cat visits the tiger. The lion eats the tiger. The lion is big. The lion does not visit the cat. The lion does not visit the squirrel. The lion visits the tiger. The squirrel eats the tiger. The squirrel is not big. The squirrel is not red. The squirrel likes the tiger. The tiger visits the squirrel. If something is red and it visits the squirrel then the squirrel is nice. If something visits the cat then it is red. If something is red then it likes the squirrel. If something visits the tiger and the tiger likes the squirrel then it is nice. If something eats the cat then the cat is big. If something likes the tiger then it eats the cat. If something eats the tiger and it eats the cat then the tiger visits the cat. If something likes the squirrel and it is big then it does not visit the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not like the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-331_Q8", "context": "Bob is not cold. Bob is quiet. Charlie is not blue. Charlie is cold. Charlie is smart. Erin is big. Gary is round. If someone is green and cold then they are big. Smart people are cold. If someone is big then they are not quiet. Round people are smart. All cold people are round. If someone is cold then they are green. If someone is quiet and not cold then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-675_Q5", "context": "The cat eats the dog. The cat is rough. The cat visits the dog. The dog is green. The dog sees the cat. The dog sees the squirrel. The mouse eats the dog. The mouse sees the cat. The mouse visits the dog. The squirrel is round. The squirrel visits the mouse. If someone sees the mouse and the mouse is rough then the mouse visits the dog. If someone visits the squirrel then they eat the squirrel. If someone visits the cat then the cat is green. If someone is green and they eat the squirrel then the squirrel visits the cat. If someone is green then they visit the squirrel. If someone sees the mouse then the mouse eats the cat. If someone sees the squirrel then they are young.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog eats the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-512_Q2", "context": "Anne is cold. Charlie is green. Charlie is young. Erin is quiet. Erin is smart. Erin is young. Harry is not young. If Charlie is young then Charlie is smart. If someone is smart then they are round. If Harry is not green then Harry is round. All rough, smart people are cold. All quiet people are rough. If someone is cold and not round then they are quiet. Round people are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-885_Q6", "context": "Anne is green. Bob is furry. Bob is green. Bob is nice. Bob is quiet. Bob is smart. Dave is furry. Dave is quiet. Dave is smart. Harry is nice. Smart people are furry. All smart, round people are green. Green, quiet people are cold. Quiet, round people are smart. Nice people are smart. Furry people are quiet. If someone is nice and furry then they are green. If someone is cold and quiet then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-893_Q6", "context": "Anne is red. Anne is smart. Bob is young. Charlie is big. Charlie is green. Charlie is round. Charlie is smart. Gary is big. Gary is green. Gary is red. Gary is round. Gary is smart. Gary is white. Gary is young. If Charlie is young then Charlie is smart. All young things are green. If something is green then it is big. All smart things are red. If something is big then it is round. Round things are smart. If Anne is green and Anne is smart then Anne is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-746_Q9", "context": "The bald eagle is kind. The bald eagle needs the rabbit. The bear chases the tiger. The bear is blue. The bear is kind. The bear likes the bald eagle. The bear likes the tiger. The rabbit chases the bear. The rabbit is young. The rabbit needs the tiger. The tiger is big. The tiger needs the rabbit. If something chases the bald eagle then the bald eagle likes the rabbit. If something chases the bear then the bear needs the bald eagle. If the bald eagle chases the tiger and the tiger chases the bear then the tiger likes the rabbit. If something likes the rabbit and it needs the rabbit then the rabbit needs the bald eagle. If something is red and big then it needs the rabbit. If something likes the tiger and it needs the bald eagle then the tiger chases the bald eagle. If something chases the bear then it likes the bald eagle. If the tiger likes the bald eagle and the bald eagle needs the bear then the tiger chases the bear. If the rabbit needs the bald eagle then the bald eagle is big.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit needs the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-723_Q3", "context": "Anne is green. Anne is not nice. Bob is white. Dave is smart. Gary is big. Gary is cold. Gary is rough. Nice, white things are rough. If something is white and not smart then it is rough. All cold things are nice. All rough, green things are nice. If something is smart then it is nice. All smart, big things are cold. Nice things are white. If Anne is green and Anne is nice then Anne is rough. If something is rough then it is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-759_Q7", "context": "Charlie is quiet. Charlie is red. Charlie is rough. Charlie is round. Charlie is smart. Charlie is white. Dave is round. Erin is red. Erin is round. Erin is smart. Erin is white. Gary is red. Gary is rough. Gary is round. Gary is smart. Gary is white. If someone is red and rough then they are smart. Red, smart people are round. If someone is big then they are round. Big, round people are red. All big, rough people are red. If Dave is white and Dave is round then Dave is rough. Big, smart people are quiet. All round people are big. If someone is red then they are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-940_Q16", "context": "The bald eagle is cold. The bald eagle visits the cow. The bear is nice. The bear is round. The bear likes the cow. The bear needs the bald eagle. The bear visits the cat. The cat likes the bald eagle. The cat likes the bear. The cow is red. The cow is round. The cow needs the bear. If the bear is cold then the bear is round. If someone visits the cat then the cat is nice. If someone is red then they like the cat. If someone is round then they need the cat. Nice people are round. If someone likes the bear and they need the cat then they are red. If someone is red then they visit the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-543_Q1", "context": "Charlie is cold. Charlie is round. Charlie is white. Dave is cold. Dave is kind. Fiona is round. Fiona is white. Fiona is young. Harry is kind. Harry is quiet. Harry is white. Harry is young. Young people are quiet. If someone is cold then they are rough. All quiet people are round. Young, kind people are cold. All round, rough people are white. All rough people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-190_Q18", "context": "The bear eats the dog. The bear eats the lion. The bear likes the rabbit. The bear needs the rabbit. The dog eats the lion. The dog is kind. The dog likes the lion. The lion eats the bear. The lion needs the dog. The rabbit likes the lion. If the lion needs the dog and the lion eats the dog then the dog is blue. If someone eats the bear then they eat the lion. If the dog eats the rabbit and the dog eats the bear then the rabbit needs the bear. If someone is rough and they like the lion then they like the bear. If someone is blue then they like the lion. If someone eats the lion then they are rough. If someone likes the bear and they like the lion then the bear is blue. If someone likes the dog and the dog needs the bear then the bear eats the rabbit. If someone likes the dog and the dog likes the lion then the dog is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-932_Q16", "context": "Anne is cold. Anne is green. Bob is big. Bob is kind. Fiona is cold. Gary is green. Gary is not red. Cold, big things are kind. All green, big things are red. All smart, kind things are green. All cold things are smart. Smart things are big. If Fiona is cold and Fiona is not smart then Fiona is not red.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-676_Q13", "context": "Anne is kind. Charlie is white. Dave is blue. Dave is kind. Dave is white. Erin is kind. Erin is young. Young, kind people are big. If someone is kind then they are blue. If someone is kind and big then they are young. If someone is blue and kind then they are big. If someone is white and blue then they are cold. Big people are smart. All white, blue people are smart. All young, smart people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-870_Q7", "context": "The bald eagle does not eat the bear. The bald eagle is nice. The bear eats the tiger. The bear is big. The bear is blue. The bear is not nice. The bear is young. The mouse does not eat the bear. The tiger eats the bear. The tiger does not eat the mouse. If something is young then it needs the tiger. If the mouse does not eat the bald eagle then the mouse does not chase the bald eagle. If something needs the tiger then the tiger needs the mouse. If something needs the tiger and it eats the bear then the tiger is blue. If something needs the mouse then it is young. If the mouse is young and the bald eagle does not eat the mouse then the bald eagle chases the tiger. If something chases the bald eagle then it chases the tiger. If something chases the mouse then the mouse eats the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-741_Q8", "context": "The cat needs the mouse. The cat sees the lion. The cat sees the mouse. The cow eats the mouse. The cow needs the cat. The cow sees the lion. The lion eats the mouse. The lion is blue. The lion is kind. The lion is nice. The lion needs the cow. The lion needs the mouse. The mouse is blue. The mouse is kind. The mouse is nice. The mouse is round. If something is red and it eats the mouse then the mouse sees the cat. If something eats the mouse and it is red then the mouse eats the cat. If something sees the mouse then it needs the lion. If something sees the cat then the cat sees the cow. If something sees the cow then the cow sees the mouse. If something needs the lion then it sees the cat. If the lion is round and the lion needs the cat then the cat is kind. If something needs the cow then it sees the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not see the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-326_Q14", "context": "Charlie is furry. Charlie is quiet. Charlie is smart. Erin is blue. Gary is round. Gary is white. Harry is blue. Harry is furry. Harry is quiet. Harry is smart. Harry is white. All blue, round things are smart. All smart things are furry. All white, big things are blue. Quiet things are blue. If something is round and white then it is quiet. Furry things are big. If something is smart then it is furry. If Gary is furry then Gary is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-720_Q6", "context": "The bear eats the cow. The bear eats the mouse. The bear is round. The cow chases the dog. The cow does not eat the bear. The cow is round. The cow needs the mouse. The dog is red. The mouse chases the dog. The mouse eats the bear. If something chases the bear and it eats the dog then the dog chases the cow. If something chases the bear then the bear chases the dog. If something is red and not nice then it is round. If something chases the dog then it needs the dog. If something is cold and not red then it does not eat the mouse. If something eats the mouse and the mouse is kind then the mouse eats the cow. If something needs the dog then it chases the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not chase the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-381_Q12", "context": "The cat chases the lion. The cat does not chase the rabbit. The cat eats the rabbit. The cat visits the dog. The dog chases the cat. The dog chases the rabbit. The dog is young. The lion does not chase the cat. The lion is cold. The lion is young. The lion visits the cat. The rabbit chases the cat. The rabbit is young. The rabbit visits the cat. If someone eats the dog then the dog is kind. If someone visits the dog then they eat the dog. If someone is big then they visit the dog. If someone visits the dog and they are big then the dog is green. All kind people are big. If the dog visits the rabbit then the rabbit visits the lion. If the cat is cold and the rabbit does not visit the cat then the rabbit chases the lion. If someone visits the lion and the lion is kind then the lion eats the cat. If someone chases the lion and they are not green then they do not eat the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-405_Q22", "context": "The bear chases the cat. The bear likes the cat. The bear visits the dog. The cat chases the bear. The cat chases the dog. The cat chases the squirrel. The cat is rough. The cat likes the dog. The dog visits the bear. The squirrel visits the bear. If something chases the cat and the cat is nice then it is big. If something likes the squirrel then the squirrel is red. If the dog visits the squirrel then the dog visits the bear. If the cat likes the bear then the cat is big. If something visits the squirrel then it visits the bear. If something likes the squirrel then it chases the squirrel. If something is red then it likes the squirrel. If something likes the cat then it is red.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel likes the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-428_Q4", "context": "Charlie is not cold. Charlie is not green. Charlie is red. Dave is big. Erin is quiet. Erin is red. Harry is not rough. All quiet things are young. If something is quiet and cold then it is green. Big, cold things are green. If Charlie is rough then Charlie is young. All young things are cold. If Erin is rough and Erin is cold then Erin is not big. All cold, green things are rough. Big things are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-726_Q9", "context": "The bear visits the cow. The bear visits the tiger. The cow chases the bear. The cow eats the bear. The cow is not blue. The cow visits the lion. The lion chases the bear. The lion chases the cow. The lion eats the bear. The lion does not eat the tiger. The tiger chases the lion. The tiger does not eat the bear. If someone visits the cow then they visit the lion. If someone is nice then they visit the lion. If someone is red then they eat the lion. If someone visits the cow then they chase the cow. If someone visits the lion then they are nice. If someone is nice and they do not chase the bear then the bear eats the cow. If someone eats the cow then the cow visits the tiger. If the tiger chases the lion and the tiger is round then the tiger visits the lion. If the bear visits the lion and the bear is nice then the lion visits the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion visits the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-239_Q7", "context": "Charlie is round. Dave is furry. Dave is white. Fiona is furry. Fiona is rough. Fiona is smart. Harry is smart. If someone is white and smart then they are red. If someone is round then they are furry. All smart, red people are rough. If someone is round and furry then they are big. Round, big people are white. If someone is round and white then they are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-573_Q7", "context": "Bob is cold. Bob is kind. Bob is quiet. Charlie is cold. Dave is big. Dave is cold. Dave is quiet. Dave is red. Erin is big. Erin is furry. Erin is green. Erin is kind. Red people are green. All green, furry people are kind. All red, green people are quiet. Big, green people are furry. If someone is quiet then they are furry. All cold people are red. If Bob is quiet and Bob is red then Bob is big. If someone is big and furry then they are red. If someone is furry then they are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-843_Q4", "context": "Charlie is cold. Charlie is round. Charlie is young. Erin is big. Gary is big. Gary is young. Harry is big. Harry is cold. Harry is quiet. Harry is red. Harry is round. Harry is young. If Harry is big and Harry is red then Harry is round. All quiet things are young. Rough, young things are red. If Erin is big then Erin is young. All big, cold things are round. If Charlie is rough then Charlie is round. Big, round things are rough. Big, young things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-224_Q5", "context": "Anne is big. Anne is furry. Bob is furry. Erin is kind. Harry is furry. Harry is kind. Harry is round. If someone is young and round then they are big. All big, furry people are young. All furry people are big. If someone is kind and young then they are red. Red, round people are quiet. Young, big people are red. If someone is big and red then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-605_Q15", "context": "The cow chases the dog. The cow needs the dog. The cow visits the squirrel. The dog chases the mouse. The dog is blue. The dog is young. The dog needs the cow. The mouse needs the squirrel. The mouse visits the squirrel. The squirrel is rough. The squirrel is young. If the cow visits the squirrel then the cow is young. If something is big and green then it chases the cow. If the dog needs the cow and the cow is green then the dog is big. All young things are green. If something chases the cow and the cow visits the squirrel then the cow visits the mouse. If something needs the squirrel and the squirrel needs the mouse then it is green. If something visits the mouse and the mouse is green then the mouse needs the dog. If something needs the dog and the dog is rough then the dog needs the squirrel. If something is blue and big then it chases the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not chase the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-313_Q3", "context": "Charlie is quiet. Dave is blue. Dave is kind. Erin is not young. Fiona is green. Fiona is round. Fiona is young. If someone is quiet then they are round. Round, blue people are kind. All green, young people are kind. All green people are smart. If someone is kind then they are smart. Smart, young people are blue. If someone is quiet and round then they are blue. Round, smart people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-295_Q12", "context": "Anne is furry. Anne is not green. Anne is quiet. Anne is smart. Charlie is cold. Charlie is green. Charlie is quiet. Charlie is smart. Dave is cold. Dave is not green. Fiona is furry. Fiona is green. Fiona is nice. Fiona is not quiet. If someone is smart then they are quiet. Nice, smart people are quiet. If someone is quiet then they are nice. If Dave is cold then Dave is smart. If someone is nice then they are red. If someone is red and nice then they are furry. If Dave is not nice then Dave is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1193_Q5", "context": "Anne is red. Anne is young. Charlie is red. Charlie is white. Dave is round. Fiona is red. Fiona is smart. White, round people are blue. Young, green people are white. If someone is red then they are green. If someone is green and young then they are white. If someone is round and green then they are young. If someone is green then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-984_Q1", "context": "The bald eagle eats the dog. The bald eagle sees the dog. The bald eagle visits the bear. The bear eats the bald eagle. The bear eats the rabbit. The bear sees the rabbit. The dog eats the bear. The dog does not eat the rabbit. The dog is big. The dog is blue. The dog sees the bald eagle. The dog sees the bear. The dog does not visit the rabbit. The rabbit eats the bald eagle. The rabbit eats the bear. The rabbit eats the dog. If the bear is red then the bear is blue. If someone visits the rabbit and the rabbit eats the dog then the rabbit does not eat the bear. All big, green people are red. If someone eats the bald eagle then they are green. If someone is blue then they eat the bear. If someone is green then they are big. If someone eats the bald eagle and they are not green then the bald eagle visits the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog eats the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-291_Q10", "context": "Anne is rough. Anne is round. Charlie is round. Erin is blue. Erin is round. Fiona is quiet. Fiona is round. If Erin is quiet and Erin is cold then Erin is rough. Rough people are kind. If someone is quiet then they are cold. If Erin is smart then Erin is quiet. Blue people are smart. All quiet, round people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-834_Q21", "context": "The bald eagle chases the mouse. The bald eagle is blue. The bald eagle is round. The bald eagle does not see the cow. The bear chases the cow. The bear eats the bald eagle. The bear eats the cow. The bear is big. The cow does not eat the bald eagle. The cow sees the mouse. The mouse chases the bald eagle. The mouse chases the cow. The mouse eats the bald eagle. The mouse eats the bear. If something sees the mouse and it sees the cow then the mouse is not nice. If something sees the bear then it is big. If something chases the bear then the bear is round. If something is big then it chases the bear. If something chases the mouse and it is nice then it does not chase the cow. If something is blue and it chases the bear then it is nice. If something eats the bald eagle and it is round then the bald eagle chases the bear. If something sees the cow then it does not see the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not see the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-180_Q15", "context": "The bear chases the tiger. The bear is cold. The bear likes the tiger. The dog chases the tiger. The dog likes the mouse. The dog needs the tiger. The mouse chases the dog. The mouse is green. The mouse is round. The mouse likes the tiger. The tiger chases the mouse. The tiger is round. The tiger likes the bear. The tiger needs the bear. If something chases the dog then it likes the tiger. If something needs the bear then it is young. If something needs the dog and the dog likes the mouse then the dog needs the bear. If something is young then it needs the dog. If something needs the dog and it needs the bear then it is nice. If something chases the mouse and it likes the tiger then it likes the dog. If something needs the dog and the dog is round then the dog needs the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not like the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1061_Q5", "context": "Anne is blue. Anne is green. Anne is young. Dave is blue. Dave is green. Dave is white. Dave is young. Erin is green. Harry is blue. Harry is green. Harry is nice. Harry is white. If something is cold then it is round. If something is nice then it is blue. All young, round things are nice. If something is green and blue then it is young. All young things are cold. All green things are blue. Young, white things are nice. All cold things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1240_Q15", "context": "Bob is big. Bob is round. Fiona is big. Fiona is cold. Fiona is green. Fiona is smart. Gary is cold. Gary is nice. Harry is cold. Harry is round. Harry is smart. Harry is young. If Fiona is round then Fiona is big. Young people are smart. All cold, big people are nice. Smart people are green. All smart, green people are cold. All big, green people are round. If someone is round then they are young. If someone is round and young then they are big. All young people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-775_Q10", "context": "The cow is blue. The cow is round. The cow is young. The cow likes the rabbit. The cow likes the squirrel. The cow visits the lion. The lion does not eat the cow. The lion is big. The lion does not visit the squirrel. The rabbit eats the squirrel. The squirrel eats the cow. The squirrel eats the rabbit. The squirrel likes the cow. The squirrel likes the rabbit. If something eats the squirrel then the squirrel is round. If something eats the lion then the lion likes the squirrel. If something likes the squirrel and the squirrel eats the cow then it likes the rabbit. If something likes the cow then the cow eats the lion. If something visits the cow and the cow likes the squirrel then it likes the cow. If something likes the rabbit then it visits the cow. If something visits the squirrel then the squirrel visits the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not visit the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-259_Q2", "context": "Anne is blue. Anne is young. Charlie is furry. Charlie is round. Fiona is blue. Fiona is cold. Fiona is furry. Fiona is round. Fiona is smart. Gary is cold. Gary is round. All blue people are green. If someone is furry then they are smart. If someone is smart then they are round. All round, young people are cold. All smart, green people are young. All green, young people are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-723_Q20", "context": "The bald eagle likes the tiger. The bald eagle needs the lion. The bald eagle needs the squirrel. The bald eagle needs the tiger. The bald eagle visits the tiger. The lion likes the squirrel. The lion likes the tiger. The lion needs the bald eagle. The lion needs the tiger. The lion visits the squirrel. The squirrel is big. The squirrel is rough. The squirrel needs the tiger. The tiger likes the squirrel. The tiger needs the lion. The tiger visits the bald eagle. If someone likes the lion and they like the squirrel then the squirrel visits the tiger. If someone visits the squirrel and they visit the bald eagle then they need the lion. If someone needs the lion and the lion is round then they like the lion. If the squirrel needs the tiger and the tiger likes the squirrel then the tiger is rough. If someone is blue and they need the lion then the lion is kind. If someone needs the tiger then they visit the bald eagle. If someone needs the squirrel then the squirrel needs the bald eagle. If someone needs the bald eagle then they are blue. If someone is kind and they like the tiger then they like the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-152_Q14", "context": "The cat is big. The cat needs the lion. The cat visits the lion. The cow is cold. The cow is kind. The cow is round. The cow needs the lion. The lion is cold. The lion likes the cat. The lion likes the cow. The lion needs the cat. The rabbit is cold. The rabbit likes the cat. The rabbit needs the cat. If something needs the cat and it needs the lion then it visits the cow. If something needs the cow then the cow visits the lion. If something visits the cat then it is kind. If something visits the cat then the cat likes the cow. If something is kind then it needs the cat. If something visits the lion and it visits the cow then the lion needs the cow. If something is round and it visits the cow then it needs the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat visits the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-109_Q2", "context": "The bald eagle needs the tiger. The dog eats the bald eagle. The dog is green. The dog is rough. The dog is round. The dog likes the tiger. The dog needs the lion. The lion eats the bald eagle. The lion is green. The lion needs the dog. The tiger eats the lion. The tiger needs the lion. If something needs the bald eagle then it likes the dog. If something likes the dog and the dog needs the lion then the lion is blue. If something eats the dog then the dog needs the bald eagle. If something needs the bald eagle and the bald eagle likes the dog then the dog needs the lion. If the tiger eats the lion then the lion likes the dog. If something is blue then it eats the dog. If something needs the lion then the lion needs the dog. If something needs the dog and it needs the lion then the lion is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-866_Q15", "context": "Anne is not quiet. Anne is white. Erin is round. Gary is blue. Gary is quiet. Gary is red. Gary is rough. Gary is round. Gary is young. Harry is not young. All blue, young people are red. All white, rough people are red. If someone is young and red then they are blue. If someone is white and round then they are rough. White people are round. All red people are round. If Gary is white and Gary is blue then Gary is not rough. If someone is red and round then they are young. If someone is round and not white then they are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-802_Q5", "context": "Charlie is nice. Dave is green. Fiona is cold. Fiona is nice. Fiona is young. Gary is cold. Gary is not white. All green people are smart. Big, cold people are nice. Smart people are big. Big people are green. If Charlie is nice then Charlie is green. If Charlie is cold then Charlie is white. All nice, big people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-650_Q5", "context": "The bald eagle eats the squirrel. The bear eats the squirrel. The bear is blue. The bear sees the bald eagle. The squirrel is blue. The squirrel is nice. The squirrel needs the bear. The squirrel sees the bald eagle. The tiger eats the bald eagle. The tiger eats the bear. The tiger needs the bald eagle. The tiger needs the squirrel. If someone sees the squirrel then they are green. If someone is blue then they need the bald eagle. If someone is green then they need the tiger. If someone is nice then they see the tiger. If someone sees the tiger then they see the squirrel. If someone is nice then they eat the tiger. If someone needs the tiger and the tiger eats the bald eagle then the tiger is nice. If someone needs the tiger and the tiger needs the bald eagle then they see the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel sees the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-562_Q14", "context": "The bald eagle is not kind. The bald eagle is nice. The bald eagle sees the dog. The cat is green. The cat sees the bald eagle. The cat does not see the mouse. The dog chases the bald eagle. The dog is not kind. The dog is nice. The dog does not see the cat. The dog does not see the mouse. The mouse chases the dog. The mouse needs the bald eagle. The mouse sees the dog. If someone is nice then they are not cold. Nice people are rough. If someone chases the bald eagle and they chase the dog then the bald eagle does not need the dog. If someone is rough then they chase the cat. If someone is rough then they need the cat. If the dog needs the cat then the cat is nice. If someone chases the cat and they are not green then they need the mouse. If someone sees the cat then the cat needs the mouse. If someone sees the mouse then the mouse needs the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse needs the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-210_Q20", "context": "The bald eagle eats the dog. The bald eagle is nice. The dog chases the tiger. The dog eats the bald eagle. The dog is kind. The dog sees the tiger. The squirrel eats the dog. The squirrel is kind. The tiger eats the bald eagle. The tiger is kind. The tiger is nice. If something is big then it eats the dog. If the bald eagle chases the dog then the dog is nice. If something is young and it eats the dog then the dog sees the tiger. If the tiger eats the bald eagle and the bald eagle is kind then the tiger is green. If something is nice and it eats the bald eagle then it eats the squirrel. If something sees the bald eagle then the bald eagle chases the dog. If something sees the squirrel then the squirrel is big. If something eats the squirrel then it sees the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-860_Q6", "context": "Anne is red. Anne is white. Charlie is smart. Erin is furry. Erin is nice. Erin is round. Fiona is cold. Fiona is red. Fiona is round. Fiona is smart. If someone is white and round then they are cold. If someone is round then they are white. If Charlie is cold and Charlie is white then Charlie is furry. Smart people are round. All round, nice people are white. If someone is furry and smart then they are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-361_Q4", "context": "The bear likes the lion. The bear likes the tiger. The lion chases the rabbit. The lion chases the tiger. The lion is blue. The lion is cold. The lion is rough. The lion likes the bear. The lion visits the bear. The lion does not visit the rabbit. The rabbit is big. The rabbit is not cold. The rabbit likes the bear. The rabbit likes the lion. The rabbit visits the tiger. The tiger does not like the rabbit. If something chases the rabbit and the rabbit visits the tiger then it is blue. If something visits the tiger then it chases the rabbit. If something chases the rabbit then it chases the bear. If something likes the bear and the bear is blue then it likes the rabbit. If something is blue then it likes the tiger. If something chases the bear then the bear visits the tiger. If something is rough then it likes the lion. If something visits the bear and the bear likes the tiger then the bear likes the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not chase the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-245_Q18", "context": "The bear is kind. The bear needs the squirrel. The bear visits the mouse. The mouse is blue. The mouse is green. The mouse visits the bear. The rabbit is big. The rabbit is round. The rabbit needs the squirrel. The rabbit visits the squirrel. The squirrel is big. If something visits the rabbit then the rabbit likes the bear. If something needs the bear and the bear likes the mouse then the bear does not need the mouse. If something needs the bear then the bear is round. If the rabbit needs the bear then the bear is big. If something is round then it visits the rabbit. If something likes the bear then it needs the bear. If something visits the bear and the bear does not like the squirrel then it visits the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse visits the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-514_Q4", "context": "Charlie is not big. Charlie is not white. Dave is not cold. Dave is red. Gary is red. Gary is white. Harry is not big. Harry is blue. Harry is cold. Harry is kind. Harry is red. Harry is round. If Dave is big then Dave is kind. If someone is red and not cold then they are big. If someone is big and kind then they are not round. Blue, red people are not white. If someone is red and not round then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-541_Q24", "context": "The cat is green. The cat visits the lion. The cat visits the mouse. The cat visits the tiger. The lion is kind. The mouse likes the cat. The mouse likes the lion. The tiger is rough. The tiger likes the cat. The tiger needs the cat. If someone visits the tiger and they need the cat then they are blue. If someone likes the lion and they like the mouse then the lion likes the cat. If someone is green and they like the cat then they are blue. If someone visits the cat then the cat likes the mouse. If someone likes the cat then they visit the cat. If someone likes the mouse then they like the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion needs the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1083_Q19", "context": "Anne is kind. Anne is smart. Charlie is smart. Charlie is young. Dave is young. Harry is quiet. Harry is round. If someone is blue and not smart then they are quiet. If someone is round then they are quiet. Kind people are blue. If someone is young then they are red. If someone is blue then they are round. If Harry is kind and Harry is quiet then Harry is not round. If someone is round and smart then they are kind. If someone is blue then they are kind. All red people are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-762_Q17", "context": "The bear is cold. The bear is kind. The bear needs the rabbit. The mouse is big. The mouse is red. The mouse needs the bear. The rabbit eats the bear. The rabbit eats the squirrel. The rabbit is red. The rabbit visits the bear. The rabbit visits the mouse. The squirrel eats the bear. The squirrel needs the bear. The squirrel visits the mouse. If the bear is cold then the bear needs the mouse. If something needs the mouse and it needs the bear then it visits the squirrel. If something eats the mouse and the mouse is kind then it eats the bear. If something eats the rabbit then the rabbit is cold. If something is cold then it is red. If something is cold then it needs the bear. If the bear needs the mouse and the bear visits the squirrel then the mouse eats the rabbit. If the bear visits the rabbit and the rabbit needs the mouse then the mouse is red. If the rabbit needs the mouse then the mouse eats the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not eat the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-857_Q19", "context": "Charlie is cold. Charlie is quiet. Dave is round. Gary is green. Gary is rough. Harry is cold. Harry is not young. Blue things are round. Rough things are young. All cold things are blue. All round things are green. Green, quiet things are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-814_Q23", "context": "The bear is green. The bear is kind. The bear does not see the cat. The bear visits the rabbit. The cat is round. The cat visits the bear. The rabbit likes the bear. The rabbit sees the bear. The squirrel is big. The squirrel sees the cat. The squirrel sees the rabbit. The squirrel visits the rabbit. If someone is rough then they see the cat. If the squirrel sees the rabbit then the rabbit is big. If someone visits the cat and they are rough then they do not see the rabbit. If the rabbit sees the cat and the rabbit is rough then the cat is big. If someone is rough and they like the bear then the bear does not like the squirrel. All big people are rough. If the squirrel visits the cat then the squirrel is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not see the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-526_Q1", "context": "Bob is kind. Erin is big. Erin is green. Erin is kind. Erin is red. Erin is rough. Fiona is big. Fiona is blue. Fiona is rough. Harry is blue. Harry is rough. Red people are rough. If Erin is rough and Erin is blue then Erin is big. All big people are rough. If someone is big then they are red. If someone is big and rough then they are young. Blue people are red. Green, kind people are blue. Red people are big. Kind people are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-642_Q3", "context": "The dog is kind. The dog likes the lion. The dog likes the tiger. The lion needs the dog. The mouse is nice. The tiger is blue. The tiger likes the mouse. If someone sees the tiger then they see the dog. If someone likes the dog and the dog is not blue then they see the dog. If someone is young then they see the dog. If someone needs the tiger then they see the tiger. If someone is blue then they see the tiger. If the mouse sees the tiger then the tiger sees the mouse. If someone sees the tiger then the tiger needs the mouse. If someone needs the mouse then the mouse needs the tiger. If someone needs the dog and they see the tiger then they do not need the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger sees the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-988_Q18", "context": "The cat eats the cow. The cat is young. The cow eats the cat. The cow is big. The cow is young. The cow sees the lion. The cow visits the dog. The dog eats the cat. The dog visits the cow. The dog visits the lion. The lion eats the cow. The lion is red. If something visits the cat and it sees the dog then the dog eats the lion. If the cat sees the cow and the cow eats the cat then the cat visits the cow. If something is red and it visits the dog then it visits the cow. If something sees the dog and the dog sees the cat then the dog is cold. If something visits the dog and the dog visits the cat then the cat sees the lion. If something sees the cow then it visits the cat. If something sees the lion then it sees the dog. If something sees the dog and the dog eats the cat then the dog sees the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow visits the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-581_Q5", "context": "Anne is red. Anne is young. Dave is cold. Dave is red. Dave is rough. Erin is rough. Erin is smart. Gary is green. Gary is quiet. Gary is red. Gary is smart. If Erin is cold and Erin is green then Erin is quiet. If someone is red and not young then they are rough. If someone is smart and quiet then they are rough. If someone is green then they are quiet. Quiet, green people are cold. Young, quiet people are green. Cold people are smart. If Anne is young then Anne is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-393_Q12", "context": "The bald eagle is big. The bear is red. The bear needs the bald eagle. The bear sees the bald eagle. The bear visits the bald eagle. The dog sees the tiger. The dog visits the bald eagle. The dog visits the tiger. The tiger is red. The tiger needs the bald eagle. The tiger needs the bear. The tiger needs the dog. The tiger sees the bald eagle. The tiger sees the dog. If someone needs the bear then the bear sees the tiger. If someone needs the bald eagle then they are big. If someone is red and they need the tiger then they see the bear. If someone sees the dog then they are blue. If someone is blue and they see the bald eagle then they need the tiger. If someone sees the bear and they are big then they are round. If the tiger is round and the tiger needs the bald eagle then the bald eagle sees the bear. If the dog visits the bear then the bear needs the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not see the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-583_Q5", "context": "Dave is big. Fiona is cold. Gary is not nice. Gary is round. Gary is white. Harry is not blue. Harry is nice. If Gary is blue and Gary is not nice then Gary is not white. Blue people are round. If someone is white and blue then they are not round. All cold people are round. Nice people are rough. Rough people are cold. All round, rough people are big. Big people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-978_Q13", "context": "Anne is big. Anne is white. Bob is big. Bob is nice. Bob is red. Bob is white. Dave is not red. Dave is not round. Dave is not white. Harry is nice. Harry is white. All round things are nice. All nice things are blue. All red, big things are not kind. If something is big and red then it is white. If something is white then it is round. Nice things are round. If Dave is nice and Dave is white then Dave is blue. All white, blue things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-753_Q16", "context": "Anne is big. Anne is blue. Anne is red. Fiona is big. Gary is blue. Gary is not red. Harry is kind. All young people are white. All kind people are young. All big, red people are blue. All red, white people are blue. Big people are blue. If someone is blue and young then they are quiet. Blue people are quiet. If someone is red and not big then they are quiet. All quiet people are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-982_Q1", "context": "Anne is furry. Bob is cold. Bob is green. Bob is rough. Bob is round. Erin is cold. Erin is furry. Erin is green. Fiona is cold. Fiona is furry. Fiona is rough. Fiona is round. Fiona is white. Fiona is young. If someone is green then they are young. If someone is furry then they are white. Furry people are rough. Cold people are round. If someone is white then they are cold. White people are rough. Furry, green people are round. Round people are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-434_Q2", "context": "Bob is nice. Charlie is smart. Erin is big. Erin is cold. Erin is nice. Erin is round. Gary is green. Gary is nice. Gary is rough. Gary is smart. All round, big people are not rough. Smart, nice people are rough. All big people are green. Nice, green people are cold. If Gary is big and Gary is not smart then Gary is cold. If Charlie is smart then Charlie is nice. If someone is nice and rough then they are big. All green people are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1113_Q12", "context": "Anne is cold. Anne is furry. Anne is kind. Anne is rough. Charlie is nice. Dave is red. Harry is kind. If something is rough then it is nice. Cold, kind things are red. If something is rough and cold then it is red. All nice things are furry. If something is kind then it is rough. If Dave is kind and Dave is furry then Dave is smart. Furry, kind things are cold. If something is smart and not kind then it is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-234_Q4", "context": "The cat eats the mouse. The cat needs the rabbit. The mouse chases the cat. The mouse is blue. The mouse is round. The mouse is young. The mouse needs the cat. The rabbit chases the cat. The rabbit chases the mouse. The rabbit is blue. The rabbit is round. The rabbit needs the tiger. The tiger chases the rabbit. The tiger eats the mouse. Young people are green. If the rabbit eats the mouse then the rabbit chases the tiger. If the cat needs the mouse and the mouse needs the cat then the cat needs the tiger. If someone is green then they chase the tiger. If someone eats the rabbit then they are young. If the rabbit chases the cat and the cat is blue then the rabbit is young. If someone chases the tiger then the tiger eats the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-244_Q5", "context": "Anne is cold. Anne is green. Anne is nice. Anne is rough. Anne is round. Anne is young. Bob is young. Dave is green. Dave is nice. Gary is cold. Gary is furry. Gary is rough. Gary is round. Gary is young. If someone is rough then they are cold. Furry, round people are young. Nice people are round. Furry people are rough. If someone is young then they are nice. Furry people are green. If someone is round and nice then they are furry. Furry, cold people are green. Green people are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1276_Q3", "context": "Anne is kind. Bob is kind. Bob is rough. Charlie is big. Charlie is blue. Charlie is rough. Harry is rough. If Anne is rough and Anne is smart then Anne is kind. Quiet people are rough. Smart people are furry. All rough people are kind. If someone is blue and kind then they are furry. If someone is furry and smart then they are big. If someone is kind and furry then they are quiet. Kind people are big. All big people are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1299_Q4", "context": "Anne is nice. Bob is big. Bob is nice. Bob is round. Charlie is nice. Charlie is red. Erin is cold. Red, big things are round. If something is cold and kind then it is big. If Anne is white and Anne is nice then Anne is cold. Big things are kind. If something is kind and red then it is white. All nice things are round. If something is round and cold then it is big. All round, red things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-643_Q4", "context": "The bear does not chase the tiger. The cow chases the bear. The cow chases the squirrel. The cow chases the tiger. The cow is not kind. The cow visits the squirrel. The squirrel chases the tiger. The squirrel likes the tiger. The squirrel visits the bear. The tiger likes the bear. If something chases the tiger then it is nice. If something likes the cow and the cow does not visit the tiger then the cow does not visit the bear. If something is nice and it chases the cow then the cow visits the bear. If something is red then it chases the cow. If the squirrel chases the cow then the squirrel is nice. If something likes the squirrel and it does not like the bear then the squirrel chases the cow. If something visits the bear then it is red. If something chases the squirrel then it likes the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-868_Q7", "context": "Anne is big. Anne is blue. Anne is kind. Anne is rough. Bob is blue. Bob is kind. Bob is red. Fiona is red. Fiona is rough. Harry is blue. Harry is rough. Kind, rough people are young. All rough people are kind. If someone is young then they are white. If someone is big and white then they are red. All young, white people are blue. Big, white people are young. All blue, rough people are big. If Anne is kind and Anne is blue then Anne is white.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-114_Q14", "context": "The bald eagle chases the cow. The bald eagle chases the rabbit. The bald eagle is kind. The bald eagle is nice. The bald eagle likes the cow. The cat is kind. The cow is kind. The cow likes the cat. The cow sees the rabbit. The rabbit chases the bald eagle. The rabbit is kind. If someone chases the cat and they like the bald eagle then the bald eagle likes the cat. If someone chases the cow then the cow chases the cat. If someone chases the rabbit and they like the bald eagle then the bald eagle sees the cow. If someone is big and rough then they chase the rabbit. If someone chases the rabbit and they are nice then the rabbit is nice. If the cow chases the bald eagle and the cow is green then the bald eagle likes the rabbit. If someone is nice and they see the cow then they chase the cat. If someone likes the cat then they like the bald eagle. If the bald eagle chases the rabbit and the rabbit likes the bald eagle then the rabbit chases the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit chases the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-301_Q5", "context": "Dave is cold. Dave is smart. Fiona is round. Gary is kind. Gary is quiet. Harry is not cold. Harry is round. If someone is rough and smart then they are green. If someone is green then they are quiet. Round people are rough. All round, green people are rough. If someone is quiet then they are kind. If someone is rough then they are smart. If Gary is quiet then Gary is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-609_Q12", "context": "Bob is nice. Bob is quiet. Bob is red. Bob is rough. Bob is round. Charlie is furry. Charlie is kind. Charlie is nice. Charlie is quiet. Charlie is rough. Charlie is round. Dave is rough. Harry is furry. Harry is quiet. If Bob is furry and Bob is quiet then Bob is rough. Nice things are rough. Kind, round things are red. If Bob is furry and Bob is quiet then Bob is round. If something is quiet and kind then it is red. If something is quiet then it is nice. If something is rough then it is round. If Harry is nice and Harry is round then Harry is kind. If Charlie is nice then Charlie is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-926_Q11", "context": "Anne is green. Anne is not kind. Anne is not red. Bob is blue. Bob is green. Bob is white. Erin is blue. Erin is red. Erin is rough. Erin is smart. Gary is smart. Gary is white. Kind, green things are not red. If something is green and white then it is not red. If something is blue then it is green. If something is rough and not smart then it is blue. All kind things are rough. If something is red then it is rough. If Gary is rough then Gary is blue. All white things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1418_Q12", "context": "Anne is round. Charlie is nice. Charlie is round. Charlie is smart. Dave is cold. Dave is nice. Dave is red. Dave is young. Fiona is cold. Fiona is nice. Fiona is red. Fiona is round. If someone is big then they are smart. If Anne is nice and Anne is cold then Anne is red. All red people are young. All young, nice people are red. If Charlie is smart then Charlie is big. All round people are big. All cold people are nice. All smart people are cold. Big people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-943_Q10", "context": "Charlie is green. Charlie is red. Charlie is white. Erin is green. Gary is smart. Gary is white. Harry is green. Harry is quiet. Harry is red. Harry is white. If someone is furry then they are red. Quiet people are furry. If someone is furry and quiet then they are smart. Green people are white. All green, white people are quiet. Red people are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-429_Q24", "context": "Anne is cold. Erin is big. Erin is green. Gary is white. Harry is big. Harry is not cold. Harry is young. If something is young and cold then it is big. All cold, smart things are big. If Gary is smart and Gary is green then Gary is big. If something is white then it is green. All cold things are green. If Anne is big and Anne is young then Anne is kind. Green, cold things are young. All kind, cold things are smart. If something is big and cold then it is not white.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1074_Q14", "context": "Anne is cold. Anne is not rough. Bob is nice. Charlie is white. Charlie is young. Harry is not white. Harry is young. All nice people are cold. Rough people are nice. If Harry is young and Harry is not white then Harry is rough. If someone is cold and not young then they are not green. Green people are furry. Young, white people are furry. If Anne is nice and Anne is green then Anne is cold. If Harry is rough and Harry is cold then Harry is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-422_Q7", "context": "The bear chases the lion. The bear eats the cow. The bear sees the lion. The cow chases the lion. The cow sees the bear. The lion chases the bear. The lion is red. The lion is rough. The lion sees the cow. The squirrel eats the bear. If something is big and it sees the bear then it eats the lion. If something eats the lion then the lion eats the squirrel. If something chases the cow then the cow chases the squirrel. If something chases the bear then it chases the squirrel. If something sees the cow then the cow is big. If something eats the lion then the lion eats the bear. If something eats the cow and the cow eats the squirrel then the cow eats the lion. If something chases the lion and it sees the lion then the lion chases the bear. If something eats the squirrel then it chases the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion eats the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-301_Q6", "context": "Dave is cold. Dave is smart. Fiona is round. Gary is kind. Gary is quiet. Harry is not cold. Harry is round. If someone is rough and smart then they are green. If someone is green then they are quiet. Round people are rough. All round, green people are rough. If someone is quiet then they are kind. If someone is rough then they are smart. If Gary is quiet then Gary is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-58_Q16", "context": "The dog chases the rabbit. The dog eats the mouse. The dog eats the rabbit. The dog is not nice. The mouse eats the dog. The rabbit chases the dog. The rabbit chases the tiger. The rabbit eats the tiger. The rabbit is blue. The tiger chases the dog. The tiger chases the mouse. If someone likes the tiger then the tiger likes the rabbit. If someone eats the tiger and the tiger likes the mouse then the mouse is round. If someone chases the mouse then they are round. If someone likes the mouse then they eat the rabbit. If someone chases the rabbit then they chase the tiger. If someone is round then they like the mouse. If the rabbit is nice and the rabbit is rough then the rabbit does not like the dog. If someone is nice and not round then they eat the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse eats the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-965_Q7", "context": "Bob is nice. Erin is big. Erin is smart. Fiona is green. Fiona is nice. Fiona is quiet. Fiona is round. Harry is green. Harry is quiet. Harry is round. If something is smart and green then it is big. All nice things are blue. All smart things are green. All blue things are smart. If Erin is blue and Erin is quiet then Erin is green. Smart things are nice. All big things are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-549_Q10", "context": "The cow is red. The cow visits the lion. The dog likes the cow. The lion is red. The lion is rough. The lion likes the mouse. The lion sees the cow. The lion visits the cow. The lion visits the mouse. The mouse is young. The mouse likes the lion. The mouse sees the dog. If someone is rough and they visit the dog then they like the dog. If someone likes the dog and the dog likes the cow then the dog sees the cow. If someone is green then they visit the dog. If someone visits the dog then they visit the mouse. If someone likes the cow and they visit the mouse then they like the dog. If someone likes the dog and they visit the cow then they are blue. If someone sees the mouse then the mouse is young. If someone sees the cow then they visit the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not visit the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-817_Q18", "context": "Charlie is big. Charlie is kind. Dave is big. Dave is blue. Dave is kind. Dave is quiet. Dave is red. Dave is rough. Dave is young. Erin is blue. Harry is big. Harry is red. Harry is rough. Harry is young. If Erin is blue and Erin is rough then Erin is red. If Dave is kind then Dave is red. All blue, kind people are quiet. If someone is quiet then they are big. If someone is rough and red then they are kind. If someone is young then they are big. Red, kind people are quiet. Blue people are rough. If Harry is quiet then Harry is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-26_Q9", "context": "Bob is kind. Bob is rough. Bob is young. Charlie is big. Charlie is furry. Charlie is kind. Charlie is nice. Fiona is furry. Fiona is young. Gary is big. Gary is blue. Gary is rough. If something is nice and rough then it is big. Furry things are rough. All big things are rough. Young, kind things are rough. If something is big and furry then it is kind. All young, kind things are rough. If something is blue and rough then it is nice. Rough things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-799_Q14", "context": "Charlie is big. Charlie is furry. Charlie is white. Charlie is young. Fiona is rough. Gary is big. Gary is rough. Harry is furry. Harry is rough. Harry is smart. Harry is white. Big things are white. Young things are blue. All blue, young things are big. If Gary is white and Gary is smart then Gary is blue. Big things are white. All rough things are furry. Furry things are young. If something is big and rough then it is furry. Big, white things are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1238_Q12", "context": "Charlie is green. Charlie is kind. Charlie is nice. Charlie is round. Charlie is white. Dave is white. Erin is kind. Erin is round. Fiona is nice. Fiona is young. If Dave is green and Dave is round then Dave is nice. All nice things are kind. All round, white things are young. All young things are green. Big things are round. If something is white then it is round. Green, young things are white. If something is big and kind then it is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-151_Q4", "context": "Anne is not blue. Anne is cold. Charlie is cold. Fiona is cold. Fiona is rough. Harry is blue. Harry is not nice. Big, cold things are not white. If something is cold and not blue then it is big. If something is red and not white then it is rough. Red things are rough. If something is big and not white then it is nice. All white things are not nice. If something is white and not blue then it is nice. Nice things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-918_Q17", "context": "Anne is blue. Anne is nice. Charlie is furry. Charlie is white. Dave is red. Fiona is furry. Fiona is green. Fiona is nice. Fiona is smart. Fiona is white. If someone is blue then they are green. Red people are smart. If Anne is furry and Anne is white then Anne is green. If someone is green and white then they are red. All blue people are furry. If someone is white then they are blue. All smart, green people are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-317_Q19", "context": "The cow chases the dog. The cow chases the lion. The cow chases the rabbit. The cow is nice. The cow visits the dog. The dog chases the lion. The dog chases the rabbit. The dog is kind. The lion chases the dog. The lion chases the rabbit. The lion is rough. The lion visits the cow. The lion visits the rabbit. The rabbit is kind. The rabbit is round. The rabbit visits the dog. If the lion eats the dog then the dog visits the lion. If someone visits the cow and they visit the rabbit then they are round. If someone chases the dog and the dog is kind then they are red. If someone chases the rabbit and they are rough then they eat the lion. If someone chases the dog then they are rough. If someone eats the lion then they are nice. If someone is nice and kind then they chase the dog. If someone visits the rabbit and they eat the lion then the rabbit eats the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not eat the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1208_Q12", "context": "Bob is furry. Bob is red. Bob is rough. Charlie is blue. Charlie is red. Gary is quiet. Gary is young. Harry is blue. Harry is furry. Harry is red. All furry, quiet things are kind. If something is young and rough then it is blue. If Gary is rough and Gary is quiet then Gary is blue. If Bob is quiet then Bob is young. All young, quiet things are rough. If something is young and blue then it is quiet. If something is rough then it is furry. If Bob is kind then Bob is quiet. All red things are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1153_Q15", "context": "Anne is big. Anne is nice. Anne is rough. Bob is big. Bob is rough. Charlie is big. Charlie is blue. Charlie is nice. Charlie is smart. Harry is big. Harry is blue. Harry is nice. Harry is smart. Harry is white. Big things are nice. Blue things are smart. If something is white then it is furry. Rough, smart things are white. All nice, big things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-6_Q19", "context": "The cat does not eat the tiger. The cat likes the tiger. The dog does not need the squirrel. The squirrel eats the tiger. The squirrel does not need the cat. The tiger eats the cat. The tiger likes the dog. If someone likes the squirrel then they do not eat the cat. If someone needs the dog then the dog eats the tiger. If someone eats the cat then they need the dog. If someone needs the dog then they are nice. If someone eats the dog and the dog does not like the cat then they are not big. If someone likes the dog and the dog eats the tiger then the dog eats the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-514_Q2", "context": "Anne is big. Anne is cold. Anne is furry. Anne is smart. Anne is young. Bob is cold. Bob is kind. Bob is young. Gary is kind. Harry is big. Smart things are big. All big things are red. If Bob is furry then Bob is young. If Harry is red then Harry is smart. Smart, young things are kind. All smart things are young. All kind, cold things are red. Kind things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-420_Q6", "context": "Charlie is kind. Erin is nice. Erin is white. Fiona is cold. Fiona is furry. Fiona is not kind. Fiona is nice. Fiona is rough. Fiona is white. Harry is kind. Harry is rough. Nice people are cold. If someone is cold then they are furry. Kind people are nice. If someone is furry then they are not young. All furry, cold people are white. If someone is kind and not young then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-944_Q4", "context": "Charlie is quiet. Erin is cold. Erin is rough. Gary is not quiet. Gary is young. Harry is not big. Harry is not cold. All young things are cold. If something is rough then it is young. If Erin is big then Erin is young. If Charlie is kind then Charlie is quiet. If something is quiet then it is rough. Kind things are big. Nice things are quiet. If something is cold and rough then it is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1030_Q17", "context": "Charlie is round. Charlie is smart. Charlie is white. Dave is blue. Dave is smart. Fiona is cold. Fiona is quiet. Fiona is smart. Harry is cold. Harry is furry. Harry is round. Harry is white. If someone is cold and white then they are furry. All quiet, blue people are round. If Charlie is quiet then Charlie is blue. If someone is white then they are cold. If Fiona is cold and Fiona is white then Fiona is quiet. If someone is furry and smart then they are quiet. All smart, blue people are white. If someone is round and smart then they are cold. If Charlie is furry then Charlie is white.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-85_Q15", "context": "Dave is big. Dave is kind. Erin is cold. Erin is smart. Gary is kind. Harry is green. Harry is smart. Kind things are cold. If something is kind and young then it is big. All kind, cold things are furry. If Gary is furry and Gary is green then Gary is young. Young things are green. If something is furry and cold then it is smart. If something is green and cold then it is furry. Kind, young things are smart. If something is smart and big then it is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-186_Q3", "context": "Charlie is nice. Dave is white. Fiona is green. Fiona is quiet. Gary is kind. Gary is quiet. Gary is white. All cold people are white. Kind, cold people are smart. If Fiona is white and Fiona is kind then Fiona is nice. Kind, green people are cold. All green, quiet people are smart. If someone is kind and nice then they are green. If someone is smart then they are kind. If someone is cold then they are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-944_Q8", "context": "Charlie is blue. Charlie is cold. Charlie is furry. Charlie is green. Charlie is kind. Charlie is smart. Dave is blue. Dave is kind. Fiona is blue. Fiona is green. Fiona is quiet. Gary is kind. If Charlie is blue then Charlie is kind. All smart, quiet things are green. If Fiona is kind and Fiona is furry then Fiona is cold. Quiet, blue things are furry. Blue things are quiet. If Gary is kind then Gary is blue. Cold things are furry. All blue, furry things are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-510_Q22", "context": "The bear is round. The bear needs the tiger. The bear visits the tiger. The cat needs the bear. The cat needs the tiger. The cat visits the tiger. The mouse chases the bear. The mouse chases the cat. The mouse is rough. The mouse needs the cat. The tiger chases the bear. The tiger is nice. The tiger needs the mouse. The tiger visits the bear. If something is round then it visits the mouse. If something chases the tiger and the tiger visits the bear then the tiger chases the mouse. Nice, rough things are round. If something needs the bear and it visits the tiger then the tiger is nice. If something visits the mouse then it chases the tiger. If something chases the mouse then the mouse is nice. If something chases the cat then the cat chases the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger needs the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-303_Q24", "context": "The cat is blue. The cow is round. The cow needs the cat. The dog is nice. The dog is round. The dog needs the cat. The dog needs the rabbit. The dog sees the cat. The rabbit needs the dog. The rabbit sees the cow. Round people are kind. If the cow needs the dog then the dog chases the cat. If someone sees the cow and they are blue then the cow chases the rabbit. Kind people are rough. If someone is blue then they see the cat. If someone chases the cat then the cat sees the rabbit. If someone is nice and they need the dog then the dog needs the cat. If someone is round then they see the rabbit. If someone is rough then they need the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog needs the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-648_Q11", "context": "The bald eagle is kind. The bald eagle likes the tiger. The bald eagle needs the mouse. The bald eagle sees the dog. The bald eagle sees the mouse. The bald eagle sees the tiger. The dog is blue. The dog is kind. The dog is nice. The dog is rough. The dog needs the mouse. The dog needs the tiger. The dog sees the mouse. The mouse is kind. The tiger likes the bald eagle. The tiger likes the mouse. If someone is kind then they see the mouse. Young people are blue. If someone likes the bald eagle then they like the mouse. If someone is young and they need the tiger then the tiger sees the dog. If someone sees the tiger and the tiger is young then they need the bald eagle. If someone likes the tiger and the tiger likes the mouse then the tiger is blue. All blue people are kind. If someone sees the mouse and they like the bald eagle then they are young. If someone is blue and they see the dog then the dog likes the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle needs the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-658_Q13", "context": "The cat visits the rabbit. The cow is nice. The rabbit eats the cow. The rabbit likes the cow. The rabbit likes the squirrel. The squirrel is big. The squirrel does not visit the cat. If something is big and not young then it does not visit the cat. If something is nice and big then it likes the squirrel. If something visits the cat and the cat visits the cow then it likes the squirrel. If something eats the cat then it is nice. If the cat is nice then the cat is not red. If something likes the cat then the cat likes the squirrel. If something likes the squirrel then it likes the cat. If the cow likes the rabbit then the cow eats the squirrel. If something likes the squirrel then it eats the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not eat the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-629_Q13", "context": "The bald eagle is big. The bald eagle is young. The bald eagle likes the rabbit. The cow eats the bald eagle. The cow is cold. The lion eats the rabbit. The lion is cold. The lion is young. The lion likes the bald eagle. The rabbit eats the cow. The rabbit is big. The rabbit is rough. The rabbit likes the bald eagle. The rabbit likes the lion. If something is kind and it likes the lion then the lion eats the cow. If something eats the rabbit and it eats the cow then the cow eats the lion. If something eats the lion and it is rough then the lion likes the rabbit. If something chases the rabbit and the rabbit likes the cow then the rabbit chases the bald eagle. If something eats the bald eagle and the bald eagle likes the rabbit then it eats the rabbit. If something is young then it eats the lion. If something eats the lion then it is kind. If something eats the lion then it likes the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-444_Q2", "context": "The bear is green. The cat eats the rabbit. The cat is big. The cat is red. The cat needs the rabbit. The rabbit needs the tiger. The tiger is big. The tiger is nice. The tiger is rough. The tiger likes the bear. If someone is red and they like the rabbit then they need the cat. If someone likes the rabbit then the rabbit is red. If someone likes the bear then they like the tiger. If the rabbit needs the cat and the rabbit likes the tiger then the cat likes the tiger. If someone eats the rabbit and they are red then the rabbit likes the bear. If someone needs the tiger and the tiger is red then they need the rabbit. If someone needs the rabbit and they are rough then the rabbit is red. If the cat needs the tiger and the cat likes the rabbit then the tiger eats the rabbit. If someone likes the tiger then they like the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-365_Q8", "context": "Bob is nice. Bob is smart. Bob is white. Bob is young. Charlie is furry. Charlie is smart. Dave is blue. Dave is smart. Dave is white. Gary is not furry. If Gary is not smart then Gary is not young. If Charlie is smart then Charlie is not blue. If someone is round then they are nice. If someone is furry and not blue then they are round. If Charlie is nice then Charlie is round. If someone is furry and nice then they are young. If Bob is young and Bob is nice then Bob is not round. If someone is smart and young then they are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-503_Q7", "context": "The bald eagle does not eat the squirrel. The bald eagle is green. The bald eagle is young. The bald eagle likes the squirrel. The bald eagle likes the tiger. The bear does not eat the bald eagle. The bear is big. The bear is young. The bear likes the squirrel. The squirrel eats the bear. The squirrel does not like the bald eagle. The squirrel does not see the bear. The tiger is not rough. The tiger likes the bald eagle. If something sees the bald eagle then it sees the squirrel. If something is young and it eats the bear then the bear eats the tiger. If the bear sees the squirrel then the squirrel sees the bald eagle. If something sees the bear then the bear sees the bald eagle. If something is young then it sees the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear sees the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-302_Q18", "context": "Dave is blue. Dave is smart. Erin is green. Erin is rough. Gary is blue. Gary is round. Harry is blue. Harry is nice. Harry is not quiet. Harry is not rough. Nice, rough things are not quiet. Rough things are quiet. If something is quiet then it is not nice. If something is blue and not nice then it is not smart. All nice things are not smart. If Erin is rough and Erin is not nice then Erin is round. If Erin is round then Erin is blue. If something is blue and round then it is green. Quiet, nice things are not green.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-837_Q10", "context": "Anne is big. Anne is furry. Bob is big. Bob is young. Charlie is big. Harry is quiet. Harry is young. Young things are furry. Quiet, blue things are furry. If something is blue and furry then it is young. Young, quiet things are cold. If Bob is young and Bob is blue then Bob is round. All furry, big things are blue. If something is round then it is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-724_Q16", "context": "The cow chases the mouse. The cow sees the mouse. The mouse is big. The mouse is nice. The mouse visits the cow. The mouse visits the squirrel. The squirrel is blue. The squirrel is nice. The squirrel sees the cow. The squirrel sees the mouse. The squirrel visits the mouse. The tiger is cold. If someone is big then they chase the cow. If someone sees the cow then the cow visits the squirrel. If the cow sees the squirrel then the cow visits the tiger. If someone sees the tiger then they chase the cow. All cold people are big. All nice people are blue. If someone visits the mouse then they are cold. If someone is big and they see the cow then the cow visits the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-317_Q5", "context": "Bob is red. Bob is rough. Fiona is cold. Fiona is red. Gary is cold. Gary is nice. Gary is red. Gary is smart. Harry is cold. Harry is furry. Harry is red. Harry is smart. If something is red and furry then it is blue. Cold things are nice. If something is rough and smart then it is furry. If something is rough then it is smart. If Bob is blue and Bob is furry then Bob is smart. If something is cold then it is smart. If something is nice and blue then it is cold. If Gary is cold and Gary is smart then Gary is rough. All blue things are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-67_Q11", "context": "Bob is cold. Bob is kind. Bob is quiet. Dave is big. Erin is cold. Harry is big. Harry is round. All big, kind things are red. If something is round and blue then it is cold. All kind, round things are big. Blue things are round. All red things are quiet. All cold things are red. If something is big then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-893_Q2", "context": "Anne is red. Anne is smart. Bob is young. Charlie is big. Charlie is green. Charlie is round. Charlie is smart. Gary is big. Gary is green. Gary is red. Gary is round. Gary is smart. Gary is white. Gary is young. If Charlie is young then Charlie is smart. All young things are green. If something is green then it is big. All smart things are red. If something is big then it is round. Round things are smart. If Anne is green and Anne is smart then Anne is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-46_Q19", "context": "The bald eagle eats the squirrel. The cat visits the cow. The cow eats the cat. The cow eats the squirrel. The cow visits the squirrel. The squirrel eats the cow. The squirrel sees the cow. If someone is cold then they see the bald eagle. If the cat is round and the cat sees the cow then the cow eats the bald eagle. If someone visits the bald eagle then they eat the bald eagle. All red people are cold. If someone sees the cow then they see the cat. Blue, cold people are young. If someone is young and they visit the cow then the cow visits the bald eagle. If someone visits the cow then they are cold. If someone visits the cow and they see the bald eagle then the cow is red.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1194_Q13", "context": "Bob is big. Bob is smart. Dave is blue. Dave is white. Gary is rough. Harry is blue. Harry is nice. If Harry is rough then Harry is young. All young people are big. If someone is blue and rough then they are smart. All blue people are smart. White people are blue. All white, rough people are not blue. Nice, big people are not white. All smart, nice people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-785_Q14", "context": "Bob is blue. Bob is furry. Bob is kind. Bob is rough. Bob is white. Erin is blue. Erin is red. Fiona is blue. Fiona is red. Gary is furry. Gary is white. If Fiona is white then Fiona is not smart. Smart, rough things are kind. If something is blue and kind then it is smart. All rough, blue things are smart. If something is kind and red then it is furry. If something is kind then it is furry. All red things are furry. Kind, red things are not white. All furry, blue things are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-590_Q20", "context": "The bear chases the cat. The bear does not chase the lion. The bear chases the tiger. The bear visits the lion. The cat chases the tiger. The cat visits the lion. The lion visits the bear. The lion visits the cat. The tiger chases the lion. The tiger is not kind. The tiger needs the lion. If someone chases the lion then they do not visit the tiger. If someone chases the cat and the cat needs the lion then the lion visits the cat. If someone chases the cat then they are young. If someone needs the bear then the bear visits the cat. If someone chases the cat then the cat chases the tiger. If someone visits the cat then they are nice. If someone visits the cat and they are nice then they need the bear. If someone chases the cat and they do not visit the cat then the cat does not visit the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-629_Q3", "context": "The bald eagle is big. The bald eagle is young. The bald eagle likes the rabbit. The cow eats the bald eagle. The cow is cold. The lion eats the rabbit. The lion is cold. The lion is young. The lion likes the bald eagle. The rabbit eats the cow. The rabbit is big. The rabbit is rough. The rabbit likes the bald eagle. The rabbit likes the lion. If something is kind and it likes the lion then the lion eats the cow. If something eats the rabbit and it eats the cow then the cow eats the lion. If something eats the lion and it is rough then the lion likes the rabbit. If something chases the rabbit and the rabbit likes the cow then the rabbit chases the bald eagle. If something eats the bald eagle and the bald eagle likes the rabbit then it eats the rabbit. If something is young then it eats the lion. If something eats the lion then it is kind. If something eats the lion then it likes the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion eats the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-790_Q8", "context": "Anne is blue. Anne is furry. Anne is rough. Anne is smart. Anne is white. Anne is young. Bob is blue. Bob is furry. Dave is furry. Erin is blue. Erin is furry. Erin is rough. All blue things are young. All smart, blue things are white. All round, furry things are rough. If something is furry and young then it is round. If Dave is round and Dave is furry then Dave is young. If something is young and rough then it is smart. Blue things are furry. All young, furry things are round. Smart things are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-579_Q11", "context": "Bob is big. Bob is kind. Charlie is kind. Charlie is white. Charlie is young. Dave is furry. Dave is red. Dave is white. Dave is young. Harry is cold. Harry is kind. Harry is red. If Harry is kind then Harry is red. All big, kind people are red. Furry people are cold. All furry, young people are big. If someone is white then they are furry. All big, red people are furry. Cold, young people are big. If someone is young then they are white. Cold people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-994_Q23", "context": "The bald eagle chases the lion. The bald eagle is rough. The bald eagle visits the dog. The dog is cold. The dog visits the bald eagle. The lion chases the dog. The lion is green. The squirrel chases the dog. The squirrel likes the bald eagle. The squirrel visits the bald eagle. The squirrel visits the dog. If something visits the dog and the dog likes the bald eagle then the bald eagle visits the lion. If something is round and it visits the squirrel then the squirrel is rough. If something visits the lion then it chases the lion. If something visits the squirrel then it is round. If something chases the lion and it visits the lion then it is big. If something visits the dog then the dog visits the squirrel. If something chases the bald eagle and the bald eagle is green then it is round. If something is round then it visits the lion. If the bald eagle likes the squirrel then the bald eagle chases the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not like the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-706_Q1", "context": "The bald eagle does not chase the bear. The bald eagle eats the bear. The bear chases the cow. The cow eats the bald eagle. The cow is cold. The cow is green. The squirrel chases the bald eagle. If someone is green then they chase the bear. If someone is blue then they eat the cow. If the bald eagle chases the bear and the bald eagle is nice then the bald eagle eats the cow. If someone chases the bear then the bear is green. If someone visits the squirrel then the squirrel visits the cow. If the bald eagle is green then the bald eagle is not nice. If someone chases the bear then they are blue. If someone visits the cow and the cow is kind then the cow eats the squirrel. If someone is nice then they chase the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel chases the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-265_Q8", "context": "The cat eats the rabbit. The cat is cold. The cat sees the dog. The dog eats the rabbit. The dog eats the tiger. The dog is nice. The dog is rough. The dog sees the cat. The rabbit eats the tiger. The rabbit is red. The tiger eats the dog. The tiger is young. All young things are nice. If something likes the tiger then it eats the cat. If something is nice then it likes the tiger. If the tiger eats the cat and the tiger likes the rabbit then the tiger sees the cat. If something sees the tiger and the tiger likes the dog then it is red. All rough things are red. If something eats the cat then the cat likes the rabbit. If something is rough and it sees the tiger then it likes the dog. If something likes the rabbit then it is young.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not eat the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-106_Q16", "context": "The cat is green. The cat likes the tiger. The cat sees the mouse. The cat does not see the tiger. The mouse chases the cat. The mouse chases the tiger. The mouse is green. The mouse is round. The mouse sees the cat. The mouse sees the rabbit. The rabbit is not red. The rabbit is round. The rabbit does not like the cat. The rabbit likes the mouse. The tiger likes the cat. The tiger sees the rabbit. If something likes the cat and the cat sees the mouse then it is rough. If something chases the mouse then the mouse likes the tiger. If something sees the rabbit then it likes the cat. If something is rough then it chases the mouse. If something likes the tiger then it chases the rabbit. If something is red then it chases the rabbit. If something chases the rabbit then it does not like the rabbit. If something sees the tiger and the tiger is green then it chases the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat chases the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1010_Q11", "context": "Anne is big. Anne is furry. Anne is rough. Anne is smart. Anne is young. Charlie is big. Charlie is furry. Charlie is green. Charlie is nice. Charlie is rough. Charlie is smart. Charlie is young. Erin is furry. Erin is nice. Erin is rough. Gary is furry. If Erin is nice then Erin is green. If something is furry then it is young. If something is green then it is smart. Young things are rough. All young, smart things are nice. All big, nice things are green. If Erin is smart and Erin is green then Erin is nice. Big, young things are nice. Young, furry things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1048_Q9", "context": "Charlie is blue. Dave is blue. Dave is green. Dave is quiet. Dave is rough. Dave is young. Erin is blue. Harry is blue. Harry is quiet. Harry is rough. Harry is young. All quiet things are green. Big, round things are blue. Green things are round. If something is big then it is young. All blue things are quiet. Round things are big. All rough, quiet things are big. All young, green things are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-1002_Q8", "context": "The bear chases the squirrel. The bear is cold. The bear is red. The bear is rough. The bear likes the squirrel. The bear needs the tiger. The cat is red. The cat needs the squirrel. The squirrel chases the cat. The squirrel chases the tiger. The squirrel needs the cat. The tiger chases the cat. The tiger likes the bear. The tiger likes the squirrel. If someone is cold then they need the cat. If someone needs the tiger and they like the cat then the tiger is red. If someone is red then they like the tiger. If someone chases the bear then the bear likes the cat. If someone chases the tiger and the tiger likes the squirrel then the squirrel needs the cat. If someone is rough and they like the tiger then the tiger chases the bear. If someone is rough then they need the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not like the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-720_Q9", "context": "Anne is smart. Charlie is blue. Charlie is green. Charlie is rough. Charlie is white. Dave is blue. Dave is kind. Dave is rough. Dave is smart. Dave is white. Erin is green. Erin is rough. All green people are blue. All kind, white people are quiet. Smart people are green. If Anne is blue then Anne is rough. If someone is rough then they are kind. If someone is kind then they are rough. Quiet, blue people are rough. If Anne is blue and Anne is quiet then Anne is rough. All blue people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-842_Q4", "context": "Bob is nice. Bob is quiet. Bob is rough. Erin is furry. Erin is nice. Fiona is kind. Harry is round. If something is white and rough then it is furry. Quiet things are rough. If Harry is furry and Harry is white then Harry is nice. All kind things are quiet. All furry things are round. If something is kind and rough then it is white. Furry, nice things are kind. If something is nice then it is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-739_Q10", "context": "Anne is not blue. Anne is furry. Charlie is round. Fiona is blue. Gary is not cold. Gary is not furry. Gary is not round. All blue people are white. All furry, blue people are white. All cold people are not furry. Round, quiet people are blue. If Anne is round and Anne is red then Anne is not furry. If someone is white then they are round. Round people are red. If someone is quiet then they are cold. Round people are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-973_Q4", "context": "The bear is green. The bear needs the cow. The bear sees the cat. The bear sees the mouse. The cat is red. The cat sees the cow. The cow is green. The cow likes the bear. The cow needs the cat. The cow sees the bear. The cow sees the mouse. The mouse is nice. The mouse likes the cat. The mouse needs the cow. If someone likes the cat and they need the cow then the cow is nice. If someone likes the mouse then the mouse is green. If someone is cold then they like the mouse. All red people are cold. If someone sees the cat then the cat needs the mouse. All green people are cold. If someone is red then they are nice. If someone likes the mouse and they see the cow then they are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-820_Q1", "context": "The bald eagle sees the rabbit. The bald eagle visits the tiger. The mouse sees the tiger. The mouse visits the bald eagle. The rabbit is blue. The rabbit is young. The tiger likes the bald eagle. The tiger likes the rabbit. The tiger sees the rabbit. The tiger visits the bald eagle. If something is blue then it visits the rabbit. If the mouse is young then the mouse visits the tiger. If something sees the mouse then the mouse is green. If something sees the bald eagle then it sees the tiger. If something visits the rabbit then it sees the bald eagle. If the mouse is green then the mouse is rough. If something sees the bald eagle and it visits the rabbit then the bald eagle sees the rabbit. If something sees the bald eagle then it sees the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger likes the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-475_Q4", "context": "The dog chases the squirrel. The dog is green. The dog is young. The dog visits the rabbit. The lion chases the squirrel. The lion likes the squirrel. The rabbit likes the lion. The squirrel chases the lion. The squirrel is blue. The squirrel is green. If the rabbit is kind then the rabbit chases the dog. If something chases the squirrel then it is kind. If something is green and it chases the rabbit then the rabbit likes the squirrel. If something likes the squirrel then it is blue. Young things are green. If the dog is kind then the dog chases the rabbit. If the squirrel visits the rabbit then the rabbit chases the squirrel. If the rabbit chases the squirrel then the squirrel is kind. If something is blue then it visits the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-552_Q1", "context": "The lion chases the rabbit. The lion chases the squirrel. The lion is red. The lion likes the mouse. The lion likes the squirrel. The lion needs the rabbit. The mouse chases the rabbit. The rabbit chases the lion. The rabbit chases the squirrel. The rabbit is red. The rabbit is rough. The squirrel is cold. The squirrel is nice. The squirrel is rough. The squirrel likes the lion. The squirrel likes the mouse. If something likes the rabbit then it needs the rabbit. If something likes the lion and the lion chases the squirrel then it likes the rabbit. If something needs the rabbit then the rabbit likes the squirrel. Red things are blue. If something needs the lion and it chases the rabbit then the rabbit is nice. If something is nice and it likes the mouse then the mouse chases the squirrel. If something chases the lion and it needs the rabbit then the rabbit needs the mouse. If something is blue then it likes the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-648_Q11", "context": "Anne is big. Anne is kind. Anne is smart. Anne is white. Fiona is big. Fiona is white. Gary is big. Gary is blue. Gary is green. Gary is kind. Gary is red. Gary is smart. Gary is white. Harry is red. All green people are kind. Big people are smart. If Fiona is kind then Fiona is red. All big, smart people are green. All blue people are smart. If someone is kind and red then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-215_Q7", "context": "Bob is not round. Charlie is blue. Charlie is green. Charlie is not round. Fiona is red. Harry is kind. Harry is not red. If something is red then it is kind. White things are kind. White, blue things are furry. All kind, blue things are furry. Kind, red things are white. If something is white then it is blue. If Harry is kind then Harry is white. If Harry is kind then Harry is round. All furry things are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-244_Q11", "context": "The bald eagle eats the cat. The bald eagle is nice. The cat is kind. The cat needs the tiger. The squirrel eats the bald eagle. The squirrel is kind. The squirrel visits the bald eagle. The tiger eats the cat. The tiger eats the squirrel. The tiger visits the cat. If something needs the bald eagle then the bald eagle is kind. If the squirrel eats the cat then the cat eats the tiger. If something eats the squirrel and it eats the tiger then it needs the cat. If something visits the squirrel and the squirrel is blue then the squirrel needs the tiger. If something is kind then it visits the tiger. If something is nice and kind then it visits the cat. If something is kind and it eats the tiger then the tiger eats the cat. If something visits the tiger then it needs the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle needs the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-427_Q6", "context": "Anne is big. Anne is smart. Bob is big. Bob is cold. Bob is rough. Bob is white. Charlie is big. Charlie is blue. Charlie is cold. Charlie is white. Gary is cold. Gary is rough. If someone is cold then they are nice. Cold, blue people are white. If someone is big then they are rough. White people are rough. If someone is rough then they are cold. All nice, rough people are blue. Blue people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-848_Q17", "context": "The bald eagle likes the rabbit. The bald eagle likes the squirrel. The rabbit chases the squirrel. The rabbit needs the bald eagle. The rabbit needs the squirrel. The squirrel is young. The tiger chases the bald eagle. The tiger chases the squirrel. The tiger likes the bald eagle. The tiger likes the rabbit. The tiger needs the squirrel. If someone is young then they need the tiger. If someone is young and they need the tiger then they are kind. If the bald eagle chases the tiger then the bald eagle likes the squirrel. If someone chases the rabbit then they are red. If someone likes the squirrel then they chase the squirrel. If someone needs the tiger and they are big then the tiger chases the squirrel. If someone chases the rabbit then they chase the squirrel. If someone is red then they chase the rabbit. All kind people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not need the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-735_Q6", "context": "The cow chases the tiger. The cow is red. The cow is rough. The lion eats the tiger. The lion is big. The squirrel eats the lion. The squirrel is big. The squirrel is green. The tiger chases the lion. The tiger is not big. The tiger is not blue. The tiger is not green. The tiger is not red. The tiger sees the squirrel. If someone sees the squirrel then the squirrel eats the cow. If someone eats the cow then they are not rough. If the cow does not eat the lion then the cow chases the tiger. If someone sees the lion and the lion chases the tiger then they see the tiger. If someone is blue then they chase the tiger. If the squirrel sees the lion and the squirrel chases the tiger then the squirrel is red. If someone sees the lion and the lion sees the tiger then the lion chases the tiger. If someone is big and not rough then they are blue. If someone is blue and big then they see the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1425_Q6", "context": "Anne is cold. Anne is furry. Anne is nice. Anne is rough. Anne is smart. Anne is white. Bob is cold. Bob is nice. Charlie is smart. Erin is cold. Erin is furry. Erin is nice. Erin is rough. Erin is round. Erin is smart. Erin is white. Round people are rough. If someone is round then they are furry. If Anne is nice then Anne is cold. If someone is nice and rough then they are white. All round, rough people are smart. If Charlie is smart then Charlie is round. Furry people are nice. All white people are cold. If Anne is rough then Anne is white.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-673_Q23", "context": "The bald eagle is rough. The bald eagle is not young. The bald eagle needs the cow. The bald eagle needs the tiger. The bear chases the bald eagle. The bear chases the cow. The bear is nice. The bear needs the bald eagle. The cow is not round. The cow visits the tiger. The tiger needs the bear. The tiger does not visit the bald eagle. If something needs the cow then the cow chases the bear. If something chases the cow and it does not need the cow then the cow is not cold. If something needs the bald eagle and it does not need the tiger then the tiger needs the bald eagle. If something visits the tiger then it is not round. If something is nice and it chases the tiger then the tiger chases the cow. If something chases the cow and the cow chases the bear then it chases the tiger. If something chases the tiger then it is nice. If something visits the tiger and it does not chase the tiger then it visits the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not need the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1194_Q8", "context": "Bob is big. Bob is smart. Dave is blue. Dave is white. Gary is rough. Harry is blue. Harry is nice. If Harry is rough then Harry is young. All young people are big. If someone is blue and rough then they are smart. All blue people are smart. White people are blue. All white, rough people are not blue. Nice, big people are not white. All smart, nice people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-986_Q9", "context": "The bald eagle eats the squirrel. The cow eats the lion. The cow eats the squirrel. The cow is rough. The cow likes the squirrel. The cow needs the bald eagle. The cow needs the squirrel. The lion is blue. The lion is cold. The lion is kind. The lion is red. The lion is rough. The lion likes the cow. The lion needs the bald eagle. The squirrel is rough. The squirrel needs the lion. If someone needs the lion and the lion likes the bald eagle then the lion is rough. If someone is cold then they need the lion. If someone eats the bald eagle and the bald eagle is kind then the bald eagle likes the cow. If someone likes the lion then the lion is kind. If someone likes the cow and the cow is kind then the cow eats the bald eagle. If someone likes the bald eagle then they are kind. If someone likes the cow then the cow likes the bald eagle. If someone eats the bald eagle then the bald eagle is cold. If someone needs the cow then they are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1212_Q14", "context": "Anne is blue. Anne is furry. Anne is kind. Anne is quiet. Erin is kind. Erin is quiet. Fiona is blue. Fiona is furry. Fiona is nice. Fiona is quiet. Fiona is rough. Fiona is round. Harry is quiet. Harry is round. If Harry is furry then Harry is quiet. If someone is blue and nice then they are rough. Nice, quiet people are furry. If someone is quiet and furry then they are round. Kind people are nice. If someone is round then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-39_Q8", "context": "The bald eagle is kind. The bald eagle is nice. The bald eagle is young. The bald eagle visits the cat. The bald eagle visits the cow. The bear eats the cow. The bear is kind. The cat is kind. The cat likes the bald eagle. The cat likes the bear. The cow eats the cat. If something is nice and it visits the bear then it likes the bald eagle. If something eats the bald eagle then it eats the bear. If something likes the bear then it visits the bear. If something eats the cat and it is nice then it visits the bear. If something likes the bald eagle then it eats the bald eagle. If the bald eagle visits the cow then the cow eats the cat. If the bald eagle eats the cat then the bald eagle is kind. Young things are kind. If something likes the bald eagle then the bald eagle likes the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not like the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-325_Q14", "context": "The dog is big. The dog is nice. The dog likes the lion. The dog visits the lion. The lion is round. The lion needs the dog. The lion does not visit the tiger. The squirrel needs the dog. The tiger needs the dog. The tiger does not visit the dog. If something visits the tiger then it likes the tiger. If something needs the tiger and the tiger needs the squirrel then the tiger is not young. If the dog likes the tiger then the tiger visits the lion. If something visits the lion then it visits the tiger. If the squirrel likes the dog and the dog is round then the squirrel is nice. If the dog does not need the tiger then the dog is young. If something needs the tiger then the tiger needs the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-696_Q10", "context": "Anne is round. Charlie is furry. Charlie is quiet. Charlie is not round. Charlie is smart. Erin is red. Fiona is quiet. Fiona is red. Fiona is not rough. Fiona is not round. Fiona is not smart. Red people are green. Rough people are smart. If Charlie is red and Charlie is green then Charlie is smart. If someone is rough and not round then they are red. Smart, round people are red. If someone is round then they are rough. If someone is furry and red then they are quiet. All green, rough people are not furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-308_Q2", "context": "The bald eagle eats the cow. The bear eats the bald eagle. The bear is cold. The bear is red. The cow eats the bald eagle. The dog chases the bear. The dog eats the bald eagle. If something eats the dog then the dog chases the bald eagle. If something is cold then it sees the bear. If something chases the dog and it eats the dog then the dog is nice. If something chases the cow then it is big. If something sees the bear then the bear chases the bald eagle. If something chases the dog then it chases the cow. If something chases the bald eagle then it chases the dog. If something eats the bald eagle then the bald eagle sees the bear. If something sees the dog then it chases the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-680_Q16", "context": "Anne is white. Bob is big. Bob is green. Bob is young. Erin is green. Erin is nice. Erin is quiet. Erin is young. Harry is quiet. Harry is smart. All quiet people are smart. White people are big. If someone is white and not smart then they are not young. If someone is smart then they are young. All green, quiet people are white. Young people are nice. If someone is nice then they are green. If someone is quiet and not smart then they are not green.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-704_Q11", "context": "Anne is big. Anne is rough. Dave is big. Dave is blue. Dave is rough. Dave is round. Dave is young. Fiona is cold. Fiona is furry. Fiona is young. Gary is young. If someone is blue and big then they are furry. If someone is blue and young then they are big. Round people are cold. Round, rough people are cold. All rough, cold people are blue. Cold people are rough. If Dave is young then Dave is big. If someone is young then they are round. If someone is big then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1406_Q17", "context": "Charlie is red. Erin is big. Erin is furry. Erin is kind. Erin is nice. Erin is young. Fiona is kind. Fiona is red. Fiona is young. Gary is big. Rough people are red. If someone is furry and red then they are young. Kind people are rough. All kind people are nice. If Gary is red then Gary is furry. If someone is big then they are kind. If Charlie is rough then Charlie is furry. If someone is young and big then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-160_Q10", "context": "The bald eagle needs the squirrel. The bald eagle needs the tiger. The lion likes the bald eagle. The lion sees the bald eagle. The lion sees the tiger. The squirrel likes the bald eagle. The squirrel needs the lion. The squirrel needs the tiger. The tiger is cold. The tiger needs the lion. The tiger sees the bald eagle. The tiger sees the lion. If someone likes the bald eagle and they need the bald eagle then they see the tiger. If someone sees the tiger and the tiger is cold then they are red. If someone likes the lion then they like the bald eagle. If the tiger likes the squirrel and the tiger likes the bald eagle then the bald eagle is cold. If someone sees the tiger then they like the squirrel. If someone sees the bald eagle then they see the tiger. If the bald eagle needs the tiger and the tiger sees the bald eagle then the tiger is big. If someone likes the squirrel then they like the lion. If the squirrel sees the bald eagle and the bald eagle sees the tiger then the tiger is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not like the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1255_Q3", "context": "Anne is cold. Anne is smart. Dave is furry. Dave is kind. Dave is smart. Gary is furry. Harry is cold. All blue, kind things are cold. All round things are furry. Furry things are kind. If Gary is round then Gary is smart. All cold things are round. All furry, smart things are white. All kind things are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-869_Q9", "context": "The bald eagle is green. The bald eagle is nice. The bald eagle sees the rabbit. The dog needs the tiger. The rabbit sees the bald eagle. The rabbit visits the bald eagle. The rabbit visits the dog. The rabbit visits the tiger. The tiger is big. The tiger is kind. The tiger is red. The tiger sees the rabbit. Big people are red. If the rabbit visits the tiger and the rabbit visits the dog then the tiger needs the dog. If someone is red then they need the bald eagle. If someone is green then they see the bald eagle. If someone visits the bald eagle and they are red then the bald eagle is big. If someone visits the dog and they see the bald eagle then they are big. If someone sees the tiger then they need the bald eagle. If someone visits the dog and they see the bald eagle then the dog visits the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-276_Q1", "context": "The bald eagle chases the cow. The bald eagle is cold. The bald eagle is red. The bald eagle needs the cow. The cow chases the bald eagle. The cow needs the bald eagle. The cow needs the lion. The cow sees the bald eagle. The cow sees the mouse. The lion chases the bald eagle. The lion chases the cow. The lion sees the mouse. The mouse chases the lion. The mouse is big. The mouse is cold. The mouse is round. If someone is round then they need the cow. If the bald eagle sees the lion and the bald eagle is red then the bald eagle sees the cow. If someone is young then they need the cow. If someone is cold then they see the lion. If someone is round then they see the bald eagle. If someone needs the bald eagle and the bald eagle sees the lion then they chase the lion. If someone chases the lion then they chase the mouse. If the cow chases the mouse and the cow needs the bald eagle then the bald eagle is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-639_Q9", "context": "Anne is cold. Erin is green. Erin is not nice. Fiona is cold. Fiona is green. Harry is cold. Harry is green. If something is nice and rough then it is kind. All rough, round things are kind. All round things are nice. Cold things are round. All nice, red things are rough. If Erin is kind and Erin is red then Erin is green. Nice, cold things are red. If Anne is green then Anne is not cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-991_Q10", "context": "Charlie is furry. Charlie is kind. Charlie is nice. Charlie is rough. Charlie is round. Charlie is young. Dave is furry. Erin is furry. Erin is nice. Erin is rough. Erin is round. Erin is young. Gary is nice. Gary is rough. If Erin is nice and Erin is furry then Erin is rough. Young, kind things are round. All quiet things are kind. All kind, round things are furry. Kind, rough things are round. If something is nice and rough then it is young. If Erin is nice and Erin is rough then Erin is furry. All kind things are quiet. If something is young and rough then it is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-832_Q8", "context": "Bob is rough. Dave is cold. Dave is kind. Erin is cold. Erin is not rough. Erin is smart. Harry is green. If someone is rough then they are furry. All furry people are smart. If someone is smart and blue then they are cold. Cold people are kind. Smart people are blue. If someone is rough and kind then they are blue. All smart, furry people are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1158_Q7", "context": "Anne is blue. Anne is nice. Anne is white. Dave is big. Dave is kind. Dave is white. Fiona is big. Fiona is blue. Gary is blue. Gary is nice. If something is green then it is furry. Kind, big things are furry. Green, nice things are furry. Furry things are white. If something is white and green then it is blue. Big things are kind. If something is green then it is nice. If Fiona is white then Fiona is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-218_Q1", "context": "The bald eagle likes the mouse. The cat eats the bald eagle. The cat eats the mouse. The cat is kind. The cat is red. The cat likes the tiger. The mouse eats the cat. The tiger eats the bald eagle. The tiger eats the mouse. The tiger is kind. The tiger is red. If someone is round and they eat the mouse then the mouse is red. If someone eats the tiger and the tiger needs the cat then they like the mouse. If someone needs the tiger and the tiger is round then they are red. All young people are round. All young people are cold. If someone eats the bald eagle then they eat the cat. If someone is red then they are young. If the bald eagle likes the mouse and the mouse does not eat the tiger then the mouse needs the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle likes the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-384_Q10", "context": "The cow chases the tiger. The cow eats the dog. The cow is red. The cow is round. The cow likes the lion. The dog eats the cow. The lion likes the tiger. The tiger is green. The tiger is nice. The tiger is red. If someone chases the lion then they eat the tiger. If someone is nice then they are green. If someone chases the tiger and they are young then the tiger eats the lion. If someone eats the tiger then the tiger chases the lion. If someone chases the lion then the lion likes the dog. If someone eats the cow and the cow chases the tiger then the cow chases the dog. If the dog is young then the dog is round. If someone chases the dog then they chase the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not chase the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-991_Q9", "context": "Charlie is round. Charlie is smart. Dave is round. Dave is white. Gary is not kind. Gary is not smart. Gary is white. Harry is furry. Harry is kind. Harry is white. All smart, rough things are furry. All big things are rough. If something is furry then it is rough. If Charlie is smart then Charlie is big. All furry, smart things are kind. Big, kind things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-431_Q5", "context": "The bald eagle eats the rabbit. The bald eagle is young. The dog does not like the mouse. The mouse is green. The mouse sees the dog. The rabbit eats the mouse. The rabbit is round. If someone sees the mouse then they like the mouse. If someone likes the mouse then the mouse is young. If someone eats the dog and they are round then they do not see the bald eagle. If someone sees the mouse then they see the bald eagle. If someone is young then they see the mouse. If the dog is kind then the dog does not see the bald eagle. If someone sees the rabbit then the rabbit likes the mouse. If someone sees the mouse and the mouse eats the rabbit then the mouse eats the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle likes the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-588_Q10", "context": "Anne is furry. Charlie is big. Charlie is kind. Charlie is quiet. Erin is quiet. Harry is big. Harry is green. If someone is white and kind then they are furry. If Anne is white then Anne is blue. Quiet, green people are white. All blue people are quiet. Green, big people are quiet. If someone is quiet then they are big. If someone is blue and quiet then they are big. Blue people are kind. If someone is white then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-530_Q5", "context": "The bald eagle likes the lion. The bald eagle sees the squirrel. The dog is round. The lion likes the dog. The lion sees the bald eagle. The squirrel likes the dog. The squirrel sees the lion. If something sees the dog and it does not like the lion then it is not green. If the lion is round and the lion chases the dog then the lion sees the bald eagle. If something is big and it likes the lion then it sees the lion. If something is blue and it does not like the bald eagle then the bald eagle chases the dog. If something is big then it chases the bald eagle. If something likes the dog then it is big. If the bald eagle chases the dog and the dog sees the lion then the lion sees the dog. If something sees the bald eagle and it chases the bald eagle then the bald eagle likes the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion chases the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-250_Q4", "context": "The bald eagle chases the rabbit. The lion chases the bald eagle. The rabbit eats the bald eagle. The squirrel eats the lion. The squirrel eats the rabbit. The squirrel is big. The squirrel needs the bald eagle. If someone eats the bald eagle then the bald eagle is red. If the bald eagle is big and the bald eagle chases the lion then the lion eats the squirrel. If someone eats the lion and the lion eats the rabbit then the rabbit chases the bald eagle. If someone needs the squirrel and they chase the rabbit then the rabbit eats the squirrel. If someone chases the squirrel then they are round. If someone eats the bald eagle then they need the squirrel. If someone chases the lion then they need the lion. If someone needs the lion then the lion eats the bald eagle. If someone needs the squirrel then the squirrel chases the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not need the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-926_Q16", "context": "The bald eagle eats the bear. The bald eagle is nice. The bear does not need the cow. The cow eats the bald eagle. The cow is not green. The cow sees the bald eagle. The cow sees the bear. The cow does not see the rabbit. The rabbit eats the bald eagle. The rabbit is not blue. The rabbit needs the cow. If something eats the cow then the cow is blue. If something eats the rabbit and the rabbit eats the cow then the cow is big. If something eats the rabbit and it eats the bald eagle then it needs the bear. If the rabbit does not see the bald eagle then the rabbit needs the bald eagle. If something is big then it eats the cow. If the rabbit needs the cow then the rabbit is big. If something sees the bald eagle and it is blue then the bald eagle eats the rabbit. If something is green then it needs the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit needs the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-741_Q14", "context": "Anne is green. Anne is rough. Anne is smart. Charlie is furry. Charlie is red. Dave is quiet. Fiona is not green. All quiet, rough things are not smart. If something is rough then it is furry. Green things are red. If something is kind then it is not red. All red things are rough. If something is quiet then it is green. Red, furry things are not kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-759_Q5", "context": "Anne is big. Anne is blue. Anne is not nice. Anne is red. Charlie is blue. Charlie is quiet. Charlie is young. Fiona is blue. Fiona is smart. Gary is not big. Gary is nice. Gary is quiet. Gary is red. Gary is smart. Red, quiet people are young. If Fiona is blue and Fiona is young then Fiona is big. Smart people are quiet. Quiet people are red. If someone is nice and blue then they are not smart. If someone is quiet then they are smart. All big, quiet people are not nice. If Charlie is not big then Charlie is quiet. If Fiona is smart and Fiona is young then Fiona is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1050_Q16", "context": "Bob is cold. Bob is red. Dave is blue. Dave is kind. Erin is cold. Erin is not red. Erin is not rough. Erin is white. Harry is blue. Harry is not red. If someone is blue then they are rough. If someone is rough then they are cold. Blue, rough people are cold. If Harry is cold then Harry is blue. If someone is big and rough then they are kind. If someone is red and not cold then they are big. If someone is blue and cold then they are big. Blue, cold people are big. All blue, kind people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-635_Q7", "context": "The bear likes the cow. The bear visits the tiger. The cow is big. The cow is red. The cow does not visit the tiger. The mouse likes the bear. The mouse needs the tiger. The mouse visits the cow. The mouse does not visit the tiger. The tiger needs the bear. The tiger needs the mouse. If something is young then it does not like the bear. If something is young then it likes the bear. If something likes the tiger then it visits the mouse. If something likes the cow then it does not need the tiger. If something visits the cow then it likes the tiger. If something likes the cow and it visits the mouse then the mouse visits the cow. If something visits the mouse and the mouse likes the tiger then the tiger visits the cow. If something needs the bear and the bear does not need the tiger then the bear likes the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger visits the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-186_Q13", "context": "The bear is round. The bear likes the cat. The cat chases the bear. The dog is red. The dog is rough. The dog is round. The tiger is blue. If something is red then it chases the cat. If something is cold then it chases the tiger. If something likes the bear then the bear likes the tiger. If something sees the dog and the dog is red then the dog is round. If something likes the bear and the bear likes the dog then the bear sees the dog. If something is red and it chases the cat then it likes the bear. If the cat chases the dog and the dog is red then the dog is rough. If something likes the tiger then it is red. If something sees the bear then it likes the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not like the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-58_Q4", "context": "The dog chases the rabbit. The dog eats the mouse. The dog eats the rabbit. The dog is not nice. The mouse eats the dog. The rabbit chases the dog. The rabbit chases the tiger. The rabbit eats the tiger. The rabbit is blue. The tiger chases the dog. The tiger chases the mouse. If someone likes the tiger then the tiger likes the rabbit. If someone eats the tiger and the tiger likes the mouse then the mouse is round. If someone chases the mouse then they are round. If someone likes the mouse then they eat the rabbit. If someone chases the rabbit then they chase the tiger. If someone is round then they like the mouse. If the rabbit is nice and the rabbit is rough then the rabbit does not like the dog. If someone is nice and not round then they eat the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-903_Q20", "context": "Anne is red. Bob is blue. Bob is cold. Bob is quiet. Bob is red. Bob is round. Bob is young. Charlie is blue. Charlie is red. Erin is blue. If something is red then it is white. If something is young then it is round. If something is round and blue then it is young. If something is quiet and blue then it is white. If something is cold and quiet then it is round. All red things are white. Cold things are quiet. If something is white then it is cold. If Bob is blue then Bob is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-41_Q2", "context": "Anne is green. Bob is nice. Bob is red. Bob is white. Bob is young. Fiona is green. Harry is furry. Harry is green. Harry is nice. Harry is red. Harry is not white. Harry is young. All green things are furry. If Fiona is green then Fiona is furry. All furry things are not white. If Anne is white then Anne is kind. All nice, green things are young. If something is young and not green then it is red. If something is furry and not white then it is kind. If Fiona is green and Fiona is kind then Fiona is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-458_Q5", "context": "The bald eagle chases the lion. The bald eagle is blue. The bald eagle is rough. The bald eagle needs the lion. The bald eagle sees the squirrel. The cow chases the lion. The cow chases the squirrel. The cow is blue. The cow is rough. The cow needs the squirrel. The lion is blue. The lion needs the cow. The lion sees the squirrel. The squirrel chases the cow. The squirrel is kind. The squirrel is round. If something sees the bald eagle and it needs the squirrel then it is kind. If the cow sees the squirrel and the cow needs the bald eagle then the squirrel sees the bald eagle. If the cow sees the bald eagle and the bald eagle is nice then the cow needs the lion. If something sees the bald eagle then the bald eagle is nice. If something needs the bald eagle then the bald eagle sees the cow. If something chases the cow and it needs the cow then it sees the squirrel. If something needs the cow and it is rough then it sees the lion. If something sees the cow then the cow sees the squirrel. If something is blue then it needs the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle sees the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-348_Q11", "context": "Charlie is red. Charlie is smart. Dave is nice. Dave is quiet. Dave is red. Dave is round. Dave is smart. Erin is nice. Erin is smart. Gary is kind. Gary is nice. Gary is red. If Charlie is smart and Charlie is round then Charlie is blue. If Charlie is red then Charlie is round. If someone is quiet then they are nice. Round, blue people are kind. If someone is round and blue then they are kind. If someone is blue and quiet then they are round. If someone is kind and round then they are quiet. If someone is quiet then they are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-86_Q15", "context": "The bald eagle eats the cow. The bald eagle does not see the squirrel. The cow is red. The cow visits the dog. The dog eats the cow. The dog is nice. The dog is red. The dog is rough. The squirrel eats the cow. The squirrel is round. The squirrel sees the cow. The squirrel sees the dog. If something sees the squirrel and the squirrel sees the dog then the squirrel visits the cow. If something is rough then it sees the squirrel. If something sees the dog then it is not young. If something is round and it visits the bald eagle then the bald eagle sees the dog. If the cow eats the dog and the dog eats the bald eagle then the cow sees the dog. If something visits the cow then it visits the bald eagle. If something sees the bald eagle and it is not rough then the bald eagle is red. If something eats the bald eagle then the bald eagle is young. If something sees the bald eagle and it visits the bald eagle then it is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not see the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-108_Q1", "context": "Dave is green. Erin is kind. Fiona is kind. Fiona is quiet. Fiona is white. Fiona is young. Harry is round. Green, young people are round. Round people are kind. All green, kind people are young. All kind, young people are white. All white, green people are quiet. If someone is quiet and young then they are kind. White, quiet people are red. If someone is green then they are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-173_Q18", "context": "Anne is rough. Anne is not young. Bob is blue. Bob is green. Fiona is rough. Harry is rough. Harry is young. If Fiona is kind and Fiona is rough then Fiona is not blue. All rough people are cold. If someone is blue and cold then they are not kind. If someone is green and blue then they are rough. If someone is round and blue then they are young. If someone is blue and not kind then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-976_Q4", "context": "The bald eagle is cold. The bald eagle is kind. The bald eagle needs the bear. The bald eagle needs the mouse. The bald eagle sees the bear. The bald eagle visits the rabbit. The bear is cold. The bear needs the mouse. The bear needs the rabbit. The bear sees the bald eagle. The bear visits the bald eagle. The bear visits the mouse. The mouse is cold. The mouse needs the rabbit. The mouse visits the bear. The rabbit visits the bald eagle. If the mouse visits the rabbit and the rabbit sees the bear then the mouse is blue. If someone is blue and they see the rabbit then they are green. If someone is cold then they see the rabbit. If someone needs the bear then they are cold. If someone sees the bald eagle then they are cold. If someone sees the rabbit then the rabbit needs the bald eagle. If someone sees the rabbit and the rabbit needs the bald eagle then the rabbit needs the bear. If someone sees the mouse and the mouse sees the bear then they are rough. If someone is rough then they need the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not see the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-812_Q24", "context": "The bald eagle needs the squirrel. The cat sees the squirrel. The rabbit sees the cat. The squirrel is blue. The squirrel is not cold. The squirrel is green. The squirrel is nice. The squirrel likes the rabbit. The squirrel does not need the bald eagle. The squirrel sees the cat. If the squirrel is cold and the squirrel likes the rabbit then the squirrel needs the cat. If something is nice then it likes the bald eagle. If something needs the cat and it does not need the rabbit then the cat does not see the rabbit. If something needs the cat then the cat is nice. If something is big then it is blue. If something likes the bald eagle then it needs the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat needs the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-470_Q7", "context": "The cat chases the lion. The cat is round. The cat sees the dog. The cat sees the lion. The cat sees the mouse. The cat visits the lion. The dog chases the mouse. The dog is cold. The dog is young. The dog visits the mouse. The lion chases the cat. The lion chases the dog. The lion sees the mouse. The lion visits the cat. The mouse chases the lion. The mouse sees the dog. If the dog sees the mouse then the mouse chases the cat. If something is round then it sees the cat. If the mouse sees the dog then the mouse visits the cat. If something visits the cat and the cat sees the mouse then it chases the cat. If the dog sees the mouse and the mouse chases the lion then the lion visits the dog. If something sees the cat then it is cold. If something chases the cat then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-377_Q14", "context": "Anne is green. Erin is blue. Erin is cold. Erin is green. Erin is quiet. Erin is young. Gary is blue. Gary is furry. Gary is round. Gary is not young. Harry is quiet. Harry is not round. If Erin is round then Erin is not blue. Quiet things are cold. If something is green and not round then it is cold. All cold things are young. Quiet things are green. If something is green then it is quiet. If something is furry and young then it is blue. If Anne is young then Anne is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-967_Q9", "context": "Anne is round. Anne is smart. Bob is blue. Bob is cold. Bob is furry. Bob is green. Charlie is cold. Charlie is green. Charlie is round. Charlie is smart. Gary is green. Gary is quiet. If something is quiet and furry then it is cold. If Bob is blue and Bob is green then Bob is smart. All round, blue things are furry. If Gary is green then Gary is smart. If Bob is round then Bob is smart. If something is cold then it is quiet. Smart things are blue. If something is round and blue then it is green. Blue, green things are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-287_Q11", "context": "The bald eagle chases the cow. The bald eagle chases the mouse. The bald eagle is kind. The cow chases the mouse. The cow is round. The mouse is kind. The mouse is not round. The mouse likes the cow. The tiger does not chase the mouse. The tiger is rough. The tiger likes the mouse. The tiger needs the bald eagle. If someone chases the cow then the cow needs the tiger. If the mouse needs the cow then the mouse is not rough. If someone likes the tiger and they like the cow then the cow does not like the tiger. If someone chases the bald eagle then the bald eagle is cold. If someone needs the tiger then they like the bald eagle. If the bald eagle likes the tiger then the tiger needs the mouse. If someone is cold then they chase the tiger. If someone needs the tiger then they chase the bald eagle. If someone chases the tiger then the tiger is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-55_Q4", "context": "Bob is cold. Erin is blue. Fiona is big. Fiona is not round. Fiona is white. Harry is not blue. Harry is not white. All quiet people are big. Cold people are big. If someone is blue then they are big. White, cold people are blue. If someone is white and cold then they are blue. White, blue people are quiet. If someone is round and quiet then they are kind. All quiet, white people are round. All big people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-858_Q12", "context": "The bear is kind. The cow is young. The cow likes the bear. The cow sees the dog. The cow sees the mouse. The dog likes the mouse. The dog sees the cow. The dog sees the mouse. The mouse is kind. The mouse sees the bear. If the dog sees the bear then the bear likes the mouse. If something likes the mouse then it sees the bear. If something needs the mouse then the mouse sees the bear. If something needs the bear and the bear is round then the bear needs the mouse. If something sees the bear then it likes the dog. If something likes the dog and the dog sees the bear then the dog is young. If something sees the cow and it likes the cow then it needs the dog. If something likes the dog and the dog sees the bear then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-415_Q19", "context": "The bear eats the rabbit. The bear is rough. The mouse eats the squirrel. The mouse needs the rabbit. The rabbit is cold. The rabbit needs the bear. The rabbit needs the mouse. The squirrel is big. The squirrel is nice. The squirrel is red. The squirrel needs the bear. The squirrel needs the mouse. If someone needs the squirrel and they like the rabbit then the rabbit is big. If someone likes the rabbit then the rabbit is red. If someone eats the squirrel then they need the bear. Red people are rough. If someone needs the bear and they eat the mouse then the mouse needs the bear. If someone is red and rough then they like the rabbit. If someone eats the bear and the bear needs the mouse then they like the squirrel. If someone likes the mouse and the mouse likes the bear then the mouse eats the bear. If the bear eats the rabbit then the bear needs the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-792_Q4", "context": "Anne is kind. Bob is furry. Bob is green. Bob is quiet. Bob is round. Bob is white. Charlie is cold. Charlie is furry. Charlie is kind. Charlie is round. Charlie is white. Fiona is quiet. Fiona is round. Fiona is white. If something is kind and round then it is white. If something is white and furry then it is green. If something is green and cold then it is round. All kind things are quiet. All cold, round things are quiet. Cold, green things are round. Quiet, kind things are green. If something is round then it is kind. All green, quiet things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-372_Q18", "context": "The bald eagle is big. The bald eagle is green. The bald eagle needs the lion. The bald eagle sees the dog. The cat needs the lion. The dog chases the lion. The dog is big. The dog sees the cat. The lion is big. The lion is not blue. The lion needs the cat. If something needs the cat then it does not chase the cat. If something chases the bald eagle and the bald eagle sees the lion then the bald eagle is not green. If something is green then it needs the cat. If something needs the lion then it is kind. Kind things are red. If something needs the dog and it needs the lion then the dog sees the cat. If something needs the bald eagle then the bald eagle does not see the lion. If something is red then it is green. If the dog is not kind and the dog is not big then the dog is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-991_Q2", "context": "The cat chases the squirrel. The cat eats the squirrel. The cat is not nice. The cat is not round. The cat needs the tiger. The rabbit chases the squirrel. The rabbit eats the squirrel. The rabbit does not need the cat. The squirrel does not chase the tiger. The tiger needs the squirrel. If something eats the tiger then it does not chase the cat. If something needs the tiger and the tiger needs the squirrel then it is big. If something is rough then it is nice. If something is nice and it does not chase the tiger then it is green. If the cat needs the squirrel then the squirrel is rough. If something needs the cat then the cat eats the squirrel. If the tiger is round then the tiger is nice. If something chases the tiger and the tiger needs the squirrel then the tiger is nice. If something is big then it needs the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel chases the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-404_Q3", "context": "Bob is blue. Bob is not smart. Charlie is big. Charlie is not rough. Charlie is smart. Erin is red. Erin is not rough. Harry is big. Harry is blue. Harry is rough. All green things are smart. All young, big things are green. If something is big and not rough then it is green. All red things are big. Young things are not big. If something is blue then it is not young. If Bob is young then Bob is big. If Charlie is young then Charlie is big. All big, smart things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-612_Q15", "context": "The cat chases the cow. The cat is rough. The cat needs the rabbit. The cow does not chase the cat. The cow chases the rabbit. The cow eats the cat. The cow eats the mouse. The mouse chases the cow. The mouse is red. The mouse needs the cow. The rabbit is big. The rabbit needs the cow. If someone needs the rabbit then they chase the mouse. If the cow needs the rabbit and the rabbit eats the cow then the cow is young. Red people are young. If someone is young and they chase the rabbit then they eat the cat. All red people are big. If someone chases the mouse then the mouse is rough. If someone eats the cat and they chase the cow then the cat is kind. If someone chases the mouse and they do not chase the cow then the cow is big. If someone is rough then they chase the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not chase the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-474_Q8", "context": "The cow eats the dog. The cow likes the mouse. The dog eats the squirrel. The dog likes the cow. The dog likes the mouse. The dog visits the cow. The mouse eats the dog. The squirrel is green. The squirrel is round. The squirrel likes the mouse. The squirrel visits the dog. The squirrel visits the mouse. If someone is round then they like the squirrel. If someone is round and they like the squirrel then the squirrel eats the dog. If someone eats the cow then the cow likes the squirrel. If the cow eats the dog and the cow is big then the cow likes the squirrel. If someone eats the mouse then they are round. If the squirrel likes the dog then the dog likes the mouse. If someone is blue and green then they are nice. If someone eats the dog and they are round then the dog eats the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not eat the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-367_Q8", "context": "The bear chases the squirrel. The bear is big. The bear needs the tiger. The lion chases the bear. The lion is nice. The lion visits the tiger. The squirrel is big. The squirrel needs the tiger. The tiger chases the squirrel. The tiger is green. If someone needs the squirrel and the squirrel is green then the squirrel is kind. If the tiger needs the bear and the tiger chases the bear then the bear visits the lion. If someone is green and they chase the squirrel then they chase the bear. If someone chases the bear then they need the bear. If someone is round and they chase the bear then they chase the lion. If someone is round and green then they need the lion. If someone visits the bear then they chase the lion. If someone is big and they visit the lion then they visit the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not visit the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-188_Q7", "context": "Anne is kind. Anne is red. Anne is round. Charlie is round. Erin is red. Fiona is kind. Fiona is round. If something is kind and round then it is smart. If Fiona is blue then Fiona is round. All red things are quiet. Quiet, blue things are kind. Smart things are red. Quiet things are blue. If something is quiet and blue then it is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-448_Q14", "context": "The cat likes the cow. The cat needs the lion. The cow visits the lion. The dog is young. The dog likes the cat. The dog needs the cow. The dog needs the lion. The lion is nice. The lion is young. The lion likes the cat. The lion does not need the dog. The lion visits the cow. If the dog does not like the cow and the dog does not visit the cow then the cow is not green. If something likes the cat then the cat is round. If something is green then it visits the dog. If something visits the dog then the dog needs the cat. If the cat needs the cow then the cat likes the lion. If the cow likes the dog then the cow visits the lion. If something likes the dog and it visits the cow then the cow does not visit the lion. If something visits the dog and the dog needs the cat then the dog is green. Nice things are green.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-629_Q3", "context": "The bald eagle is blue. The bear eats the bald eagle. The bear is not nice. The bear is young. The squirrel eats the bald eagle. The squirrel does not need the tiger. The tiger sees the bald eagle. If someone is nice and round then they see the bald eagle. If someone eats the bear then the bear is green. If someone is blue then they eat the bear. If the bald eagle eats the tiger and the bald eagle does not need the bear then the tiger needs the bear. If someone eats the tiger and the tiger eats the bear then they eat the bald eagle. If the squirrel does not see the bear then the squirrel does not need the bear. If someone is green then they are blue. If someone eats the bear then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle eats the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1094_Q13", "context": "Anne is young. Dave is big. Erin is blue. Erin is red. Gary is red. Gary is smart. Gary is young. If Anne is rough then Anne is blue. If someone is big then they are smart. If Anne is round and Anne is blue then Anne is red. If someone is blue then they are round. If someone is young then they are rough. If Anne is blue and Anne is red then Anne is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-216_Q4", "context": "Charlie is green. Charlie is smart. Fiona is round. Fiona is not white. Gary is white. Harry is round. Harry is not young. All nice, smart things are white. If something is green then it is nice. All round, green things are blue. White things are young. All blue things are young. All young, nice things are round. If Fiona is green then Fiona is not blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-152_Q6", "context": "Bob is white. Charlie is kind. Charlie is red. Charlie is white. Dave is nice. Dave is red. Dave is round. Dave is young. Erin is red. Erin is white. All nice things are furry. All round, furry things are white. If something is kind then it is nice. All furry, nice things are round. All red things are kind. Nice things are furry. White, furry things are kind. If something is round and furry then it is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-911_Q8", "context": "The bald eagle chases the cat. The cat is not green. The cat is round. The cat likes the bald eagle. The dog does not chase the squirrel. The dog does not visit the cat. The squirrel is green. The squirrel is young. The squirrel likes the dog. The squirrel does not visit the bald eagle. If the cat visits the squirrel and the cat is round then the squirrel is red. If the cat likes the squirrel then the cat does not visit the dog. If the cat visits the dog and the dog visits the cat then the dog chases the bald eagle. If someone chases the cat then they do not like the bald eagle. If someone chases the cat then the cat is red. If someone chases the dog then they visit the squirrel. If someone is red then they chase the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not visit the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-628_Q17", "context": "The cow likes the rabbit. The cow visits the mouse. The mouse eats the squirrel. The mouse is blue. The mouse is nice. The mouse is round. The mouse likes the cow. The rabbit likes the mouse. The rabbit does not visit the mouse. The squirrel eats the cow. The squirrel eats the rabbit. The squirrel is not young. If something visits the cow then it is green. If something visits the mouse then the mouse does not eat the rabbit. If something is blue then it is round. If something likes the squirrel and it does not eat the rabbit then the rabbit eats the squirrel. If something is round then it likes the mouse. If something likes the cow and it eats the squirrel then the cow visits the squirrel. If something eats the mouse then it is blue. If something likes the mouse then it is blue. If something visits the squirrel then it eats the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not eat the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-570_Q15", "context": "Bob is red. Charlie is red. Dave is quiet. Dave is young. Erin is green. Erin is quiet. Erin is white. If something is red and young then it is smart. If something is green then it is quiet. Cold things are white. If something is white then it is young. If Dave is white and Dave is quiet then Dave is not smart. If Charlie is red then Charlie is white. Young things are green. All young, quiet things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-578_Q15", "context": "The bear is blue. The bear is nice. The bear sees the tiger. The dog needs the bear. The dog sees the tiger. The rabbit needs the dog. The tiger is rough. If someone is nice then they are rough. If someone is rough then they see the rabbit. All rough people are kind. If someone chases the rabbit and the rabbit is kind then they need the dog. If someone is green then they are nice. If someone is kind and they chase the bear then they chase the tiger. If someone chases the bear then they chase the rabbit. If the bear sees the rabbit then the rabbit is green. If the rabbit needs the dog then the rabbit sees the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-159_Q12", "context": "The bear is rough. The bear needs the cow. The cow visits the bear. The cow visits the dog. The dog is young. The dog visits the cow. The squirrel eats the bear. If something is cold then it does not visit the bear. If something visits the dog then it needs the squirrel. If something is cold then it needs the squirrel. If something eats the dog then the dog eats the squirrel. If something needs the bear and the bear does not eat the dog then the dog needs the squirrel. If the squirrel is rough and the squirrel visits the cow then the squirrel eats the bear. If something needs the squirrel then the squirrel is cold. If the squirrel is cold and the squirrel visits the cow then the squirrel does not need the bear. If something needs the squirrel then it visits the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel needs the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-911_Q5", "context": "The bald eagle chases the squirrel. The bald eagle is cold. The cat chases the squirrel. The cat visits the bald eagle. The squirrel chases the cat. The squirrel is cold. The squirrel is rough. The squirrel is round. The squirrel visits the bald eagle. The tiger chases the bald eagle. The tiger likes the squirrel. The tiger visits the cat. If someone visits the bald eagle and they visit the squirrel then the squirrel is cold. If someone chases the cat and the cat visits the tiger then they like the tiger. If someone visits the cat then the cat chases the bald eagle. If someone likes the cat and the cat is blue then they are blue. If someone likes the tiger and they are round then the tiger visits the bald eagle. All round people are blue. If someone chases the cat then the cat visits the tiger. If someone chases the squirrel then they are nice. If someone visits the cat and they visit the bald eagle then they chase the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel likes the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-68_Q5", "context": "Charlie is quiet. Charlie is young. Erin is blue. Erin is rough. Gary is blue. Gary is red. Gary is rough. Harry is blue. Harry is quiet. Harry is young. All nice things are not blue. If Erin is cold then Erin is red. If something is quiet then it is not nice. Blue things are red. All nice, young things are not quiet. All red, cold things are quiet. All young things are cold. If something is red then it is young. If Harry is quiet and Harry is young then Harry is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-343_Q11", "context": "The bear eats the lion. The bear eats the squirrel. The bear is young. The bear does not need the dog. The dog chases the bear. The dog chases the lion. The dog eats the squirrel. The dog is not big. The dog is red. The dog needs the bear. The lion is young. The squirrel eats the bear. The squirrel eats the lion. The squirrel is green. The squirrel needs the bear. The squirrel needs the dog. If the dog chases the bear and the bear needs the lion then the bear is rough. If someone is red then they eat the squirrel. If someone is young then they eat the squirrel. If someone is young and they need the lion then they are green. If someone chases the bear then they are green. If someone needs the bear and the bear does not need the lion then the lion eats the dog. If someone needs the squirrel then the squirrel is red. If someone is red then they eat the dog. If someone eats the dog and the dog needs the bear then they need the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel needs the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-189_Q12", "context": "The cat is blue. The cat visits the lion. The cow eats the cat. The cow eats the lion. The cow eats the tiger. The cow is blue. The cow is rough. The cow needs the tiger. The lion eats the cow. The lion is not blue. The lion is kind. The lion visits the cow. The tiger eats the lion. The tiger does not need the cat. If something is red and not kind then it does not need the tiger. If something is kind and it eats the lion then it needs the tiger. If something visits the cow and the cow eats the lion then it needs the cow. If something eats the cow then it needs the cow. If something is rough then it visits the cow. If something is kind and it eats the cow then the cow eats the cat. If something needs the cow and it eats the cat then the cat is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not need the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-632_Q9", "context": "The bald eagle is big. The bear sees the squirrel. The rabbit sees the squirrel. The rabbit visits the squirrel. The squirrel chases the bear. The squirrel is cold. The squirrel is green. If something sees the bear and the bear sees the squirrel then the bear is cold. If the bear visits the squirrel then the bear visits the rabbit. If something is green then it sees the bear. If something visits the squirrel then it sees the bald eagle. Cold things are green. If something sees the squirrel and the squirrel visits the bald eagle then the bald eagle is green. If something sees the bear then it sees the bald eagle. If something chases the bald eagle and it sees the bald eagle then it chases the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear sees the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1206_Q16", "context": "Anne is blue. Anne is cold. Anne is rough. Anne is round. Anne is smart. Bob is cold. Bob is smart. Bob is young. Fiona is round. Gary is cold. Gary is smart. All round, smart things are quiet. All round things are quiet. All blue things are round. All blue, quiet things are young. If something is quiet then it is blue. All young, cold things are rough. If Bob is young and Bob is blue then Bob is round. If Fiona is rough and Fiona is blue then Fiona is smart. Round things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-641_Q20", "context": "The bald eagle eats the squirrel. The bear eats the squirrel. The bear is red. The bear likes the mouse. The bear needs the bald eagle. The mouse likes the squirrel. The squirrel eats the bear. The squirrel is young. The squirrel likes the bald eagle. The squirrel needs the bald eagle. The squirrel needs the bear. If the squirrel likes the bald eagle and the squirrel is red then the squirrel eats the mouse. If something eats the squirrel then it needs the squirrel. If something eats the mouse then the mouse needs the squirrel. If something needs the squirrel then the squirrel likes the mouse. If something is rough then it likes the mouse. If the bear needs the squirrel and the bear does not eat the bald eagle then the bear eats the squirrel. Young things are red. If something eats the bear then it is not blue. If something needs the squirrel then it is young.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle needs the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-222_Q21", "context": "The bear is not blue. The bear likes the squirrel. The bear visits the cat. The bear visits the tiger. The cat eats the bear. The squirrel likes the cat. The squirrel likes the tiger. The squirrel visits the cat. The tiger is blue. The tiger is rough. The tiger is round. If someone is big and they visit the bear then they like the tiger. If someone visits the bear and they do not like the squirrel then they are round. If someone visits the cat then they are round. If someone is big and they eat the cat then the cat is blue. If someone eats the cat and they are blue then they are big. If someone is round and they like the bear then the bear does not like the tiger. If someone visits the cat and they like the tiger then the cat eats the bear. If someone is round and they do not eat the squirrel then the squirrel does not eat the cat. If someone is blue then they eat the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not eat the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-600_Q23", "context": "The bear chases the tiger. The bear does not like the tiger. The bear needs the cat. The bear needs the tiger. The cat chases the bear. The cat is big. The cow chases the bear. The cow chases the tiger. The cow likes the cat. The cow needs the tiger. The tiger is green. The tiger is young. The tiger likes the bear. The tiger likes the cat. If something likes the bear then it does not like the cow. If something chases the cat then it likes the cow. If something likes the cow then the cow needs the cat. If the tiger does not need the bear then the tiger is big. If something chases the cat then it is big. All kind things are not big. If something needs the bear then the bear likes the tiger. If something needs the cat then it chases the cat. If something likes the cat then the cat chases the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not need the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-946_Q7", "context": "Anne is furry. Anne is nice. Anne is rough. Bob is kind. Bob is quiet. Bob is rough. Dave is furry. Dave is smart. Harry is nice. Harry is quiet. Harry is not smart. All quiet things are kind. Quiet, furry things are red. All nice things are red. Furry things are nice. Kind things are rough. Kind, quiet things are rough. All red things are quiet. If something is rough and not nice then it is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-124_Q22", "context": "Anne is round. Anne is smart. Bob is green. Dave is green. Dave is quiet. Erin is furry. Erin is green. Erin is rough. Erin is round. Erin is white. If someone is green and white then they are furry. Round, green people are white. All quiet, smart people are furry. All furry people are white. All green, quiet people are round. If someone is round and furry then they are smart. Quiet, smart people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-146_Q5", "context": "The bald eagle is nice. The bald eagle is young. The bald eagle likes the cow. The bald eagle needs the squirrel. The cat is nice. The cat is round. The cat needs the cow. The cow likes the cat. The cow needs the bald eagle. The squirrel eats the cat. The squirrel likes the cat. If something is big and it likes the cow then the cow is young. If something needs the squirrel and it eats the cat then the squirrel eats the cat. All young things are big. If something needs the cat then it likes the cat. If something needs the cat then it eats the cat. If something is big then it is nice. If something is nice and young then it likes the squirrel. If something likes the squirrel then it is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-112_Q11", "context": "The cat sees the cow. The cow is blue. The cow likes the tiger. The cow sees the cat. The cow sees the tiger. The squirrel is big. The squirrel is blue. The squirrel is nice. The squirrel is young. The tiger sees the cat. The tiger sees the squirrel. Blue things are big. If something visits the squirrel and the squirrel is young then the squirrel sees the cat. If something visits the tiger then it sees the squirrel. If something is nice then it sees the cow. If something visits the tiger then the tiger visits the cow. If something sees the cow then it visits the tiger. If something likes the cow then it is young. If something visits the cow then the cow is nice. If something visits the cow then it likes the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow visits the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1044_Q7", "context": "Anne is green. Erin is blue. Erin is not green. Erin is kind. Erin is red. Erin is round. Fiona is big. Fiona is kind. Fiona is red. Harry is kind. Harry is round. All big, kind things are green. If something is round and green then it is blue. All smart things are round. If something is round and blue then it is red. If Harry is smart and Harry is round then Harry is kind. If something is green then it is smart. All blue, red things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-965_Q1", "context": "The bald eagle is not nice. The bald eagle needs the rabbit. The bald eagle visits the mouse. The bear is blue. The bear sees the rabbit. The mouse is blue. The mouse visits the bear. The mouse visits the rabbit. The rabbit sees the bald eagle. The rabbit sees the bear. If someone is round then they see the mouse. If someone sees the rabbit then the rabbit is round. If someone visits the rabbit and the rabbit needs the bear then the rabbit visits the bear. If the rabbit sees the bear then the bear sees the rabbit. If someone sees the rabbit and the rabbit is not blue then they need the mouse. If someone needs the bear and the bear sees the rabbit then the bear sees the mouse. If someone sees the mouse then they need the bear. If someone needs the bear then the bear sees the bald eagle. If the mouse needs the rabbit and the mouse is rough then the rabbit is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle needs the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-795_Q1", "context": "The bald eagle is not green. The bear is green. The bear is kind. The bear needs the bald eagle. The bear needs the tiger. The mouse is not blue. The mouse needs the bald eagle. The mouse visits the bald eagle. The mouse visits the bear. The tiger sees the bald eagle. If someone is young then they need the tiger. If someone needs the tiger and they need the bear then the bear is kind. If someone sees the bald eagle then they visit the bald eagle. If the bald eagle visits the mouse then the bald eagle sees the tiger. If someone visits the bald eagle then the bald eagle does not see the tiger. If someone needs the bald eagle then the bald eagle is young. If someone visits the mouse then the mouse is not blue. If someone visits the bald eagle then they do not visit the tiger. If someone needs the tiger then they see the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-670_Q4", "context": "The cow is kind. The cow is nice. The cow visits the dog. The cow visits the squirrel. The dog chases the tiger. The dog needs the cow. The dog visits the tiger. The squirrel is cold. The squirrel is green. The squirrel is kind. The tiger visits the squirrel. If someone is nice and they need the cow then they are cold. If someone needs the dog then the dog is nice. If someone chases the tiger then the tiger visits the dog. If someone visits the tiger and the tiger visits the dog then the tiger visits the cow. If someone visits the cow then they need the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not visit the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-471_Q22", "context": "The bear is blue. The bear visits the rabbit. The cat chases the bear. The cat chases the squirrel. The cat does not eat the rabbit. The cat is cold. The rabbit eats the bear. The rabbit eats the squirrel. The rabbit is cold. The rabbit is not rough. The squirrel visits the bear. If someone eats the bear then they chase the rabbit. If someone chases the squirrel and the squirrel is not big then the squirrel chases the cat. If the bear visits the rabbit then the bear is kind. If someone chases the rabbit and the rabbit eats the squirrel then they visit the cat. If someone eats the squirrel then the squirrel eats the cat. If someone visits the rabbit and they eat the bear then the rabbit is not blue. If someone chases the bear and the bear chases the rabbit then they do not chase the cat. If someone eats the squirrel then the squirrel does not eat the bear. If someone chases the rabbit and the rabbit visits the cat then the cat eats the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear visits the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-125_Q12", "context": "Anne is smart. Charlie is green. Charlie is quiet. Charlie is white. Dave is cold. Dave is green. Dave is kind. Dave is quiet. Dave is smart. Dave is white. Harry is cold. Harry is kind. Harry is quiet. Harry is red. Harry is smart. Harry is white. All green things are red. Quiet things are cold. If something is quiet and kind then it is cold. All red, white things are smart. Cold things are white. All smart things are green. All white, quiet things are kind. If something is green then it is quiet. If something is quiet and kind then it is white.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-343_Q9", "context": "Anne is cold. Anne is quiet. Anne is smart. Bob is blue. Bob is not cold. Bob is rough. Bob is round. Bob is smart. Bob is young. Charlie is round. Harry is blue. All young, round people are smart. If Harry is smart then Harry is not cold. All young people are round. If someone is blue then they are rough. Rough people are young. If Bob is round then Bob is young. If Anne is blue then Anne is not quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-646_Q13", "context": "Anne is furry. Anne is round. Anne is smart. Anne is white. Erin is furry. Erin is kind. Erin is round. Gary is cold. Harry is cold. Harry is kind. Harry is rough. Harry is white. Round, cold things are white. If Gary is cold then Gary is kind. If something is kind and cold then it is white. Rough things are smart. If something is kind and white then it is rough. If Gary is rough and Gary is white then Gary is round. Kind, smart things are furry. Rough things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-671_Q22", "context": "Anne is quiet. Anne is not smart. Bob is big. Bob is red. Charlie is red. Charlie is young. Fiona is quiet. All big people are quiet. If someone is quiet then they are not kind. If someone is quiet and young then they are not blue. If someone is big and not kind then they are smart. If someone is big and not quiet then they are smart. Quiet, smart people are young. If someone is smart then they are young. All blue people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-124_Q1", "context": "The cow is big. The cow likes the rabbit. The cow likes the squirrel. The cow visits the lion. The cow visits the rabbit. The lion visits the rabbit. The rabbit is nice. The rabbit is young. The rabbit likes the cow. The rabbit sees the lion. The rabbit sees the squirrel. The rabbit visits the cow. The squirrel likes the lion. The squirrel likes the rabbit. The squirrel visits the cow. The squirrel visits the lion. If someone is nice then they like the squirrel. If someone sees the lion then they like the rabbit. If someone is young then they see the squirrel. If someone visits the lion and the lion likes the rabbit then they see the cow. If someone sees the cow then they are nice. If someone likes the rabbit then the rabbit is cold. If someone is cold and they see the lion then the lion likes the rabbit. If the rabbit likes the cow and the cow visits the squirrel then the squirrel likes the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel likes the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-488_Q2", "context": "Anne is not green. Anne is not quiet. Bob is big. Bob is kind. Dave is big. Dave is nice. Dave is quiet. Dave is red. Gary is furry. Gary is nice. If someone is green and furry then they are red. All kind, quiet people are red. If someone is quiet and big then they are not green. Quiet, kind people are not green. Quiet, red people are not green. Furry, kind people are green. If someone is furry and nice then they are not quiet. If someone is kind and red then they are nice. If someone is kind then they are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-529_Q13", "context": "The bald eagle is red. The bear is young. The bear does not like the bald eagle. The bear does not see the cow. The bear visits the lion. The cow is green. The cow likes the bald eagle. The cow likes the bear. The lion is big. The lion is blue. The lion likes the bald eagle. The lion visits the bear. If the bald eagle sees the bear and the bear does not like the lion then the bear likes the cow. If something is green then it visits the cow. If something visits the lion and the lion is blue then it is blue. If something is big then it visits the bald eagle. If something sees the bear then it visits the bald eagle. If the lion visits the bald eagle then the bald eagle visits the lion. If the bear is big and the bear visits the bald eagle then the bear is red. If something sees the cow then it is not big. If something is blue then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-704_Q10", "context": "The mouse chases the rabbit. The rabbit is cold. The rabbit is young. The squirrel chases the rabbit. The squirrel chases the tiger. The squirrel is round. The squirrel is young. The squirrel likes the mouse. The squirrel likes the rabbit. The squirrel likes the tiger. The squirrel needs the mouse. The squirrel needs the tiger. The tiger likes the mouse. The tiger likes the squirrel. The tiger needs the mouse. The tiger needs the rabbit. If something needs the tiger then it is nice. If something is nice then it chases the rabbit. If something chases the mouse then the mouse chases the rabbit. If something likes the squirrel and the squirrel needs the rabbit then the rabbit needs the tiger. If something is nice then it needs the rabbit. If something likes the squirrel and it chases the squirrel then it is nice. If something likes the rabbit and the rabbit likes the mouse then the rabbit needs the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-580_Q10", "context": "The cat is round. The cat visits the rabbit. The cow eats the squirrel. The cow is young. The cow visits the squirrel. The rabbit eats the cat. The rabbit does not eat the cow. The rabbit is cold. The rabbit is round. The rabbit visits the cat. The rabbit visits the squirrel. The squirrel eats the rabbit. The squirrel is round. The squirrel is young. The squirrel visits the cat. The squirrel visits the rabbit. If someone is round and young then they chase the squirrel. If someone is cold and they chase the cat then the cat is not round. If the cow is big then the cow eats the rabbit. If someone is young and they eat the rabbit then they do not visit the squirrel. If someone chases the rabbit then they are cold. If someone eats the squirrel then they are young. If someone chases the squirrel then they chase the rabbit. If someone chases the rabbit then the rabbit eats the squirrel. If someone chases the cow then the cow does not chase the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-931_Q15", "context": "Anne is kind. Anne is white. Bob is blue. Bob is young. Fiona is furry. Fiona is kind. Fiona is not white. Harry is blue. Harry is not kind. Harry is quiet. Harry is white. All kind things are young. All white, quiet things are blue. If Harry is nice then Harry is blue. If Harry is nice then Harry is furry. Young things are quiet. If something is blue then it is white. All blue things are nice. Blue, nice things are furry. If something is blue and not young then it is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-1008_Q11", "context": "The bald eagle chases the bear. The bald eagle is nice. The bear sees the lion. The bear sees the squirrel. The lion needs the bald eagle. The lion needs the bear. The lion needs the squirrel. The lion sees the bald eagle. The squirrel is blue. The squirrel sees the bald eagle. The squirrel sees the bear. The squirrel sees the lion. If someone sees the squirrel and they are nice then they need the bald eagle. If someone sees the bear then they chase the squirrel. If someone is cold then they chase the lion. If someone needs the squirrel and they are blue then they see the bear. If someone needs the lion then they chase the bald eagle. If someone sees the squirrel then they chase the bear. If someone sees the squirrel and they see the bald eagle then the bald eagle chases the squirrel. If someone chases the squirrel then they see the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle needs the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-991_Q7", "context": "The bear is young. The bear needs the dog. The bear sees the dog. The bear sees the lion. The dog eats the mouse. The dog is kind. The dog is young. The lion eats the bear. The lion is blue. The lion is cold. The lion needs the bear. The lion needs the dog. The mouse sees the bear. The mouse sees the dog. If something eats the bear and it sees the dog then it is rough. If something eats the mouse then it sees the mouse. If the dog sees the mouse then the mouse is blue. If something eats the bear and it is kind then the bear sees the lion. If something sees the mouse then it is young. If something is blue then it needs the mouse. If something is rough and it eats the bear then it sees the bear. If something is kind then it sees the mouse. If something is blue then it is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-738_Q13", "context": "The bear is kind. The bear needs the squirrel. The cow is cold. The cow is kind. The cow is nice. The cow sees the bear. The rabbit eats the bear. The rabbit eats the cow. The rabbit is round. The squirrel eats the bear. The squirrel eats the rabbit. The squirrel needs the bear. The squirrel needs the rabbit. The squirrel sees the cow. If someone needs the rabbit then they need the bear. If someone sees the rabbit then they eat the squirrel. If someone eats the rabbit then they eat the squirrel. If someone eats the bear and they eat the squirrel then they need the rabbit. If someone sees the squirrel then the squirrel is round. If someone sees the rabbit and the rabbit is green then they see the squirrel. If someone is kind and they need the cow then they are cold. If someone eats the bear and they are nice then the bear sees the rabbit. If someone is kind then they eat the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not see the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-467_Q15", "context": "The bald eagle is round. The bald eagle likes the mouse. The bald eagle likes the rabbit. The cow eats the mouse. The cow likes the bald eagle. The mouse eats the rabbit. The mouse is green. The mouse needs the rabbit. The rabbit eats the bald eagle. The rabbit eats the cow. The rabbit eats the mouse. The rabbit is big. The rabbit likes the cow. The rabbit needs the cow. If someone likes the rabbit then they eat the cow. If someone is big then they like the rabbit. If someone is kind and they need the cow then the cow is rough. If someone is green and they eat the bald eagle then the bald eagle is kind. Kind people are big. All round people are kind. If the bald eagle needs the cow then the cow is kind. If someone is round then they need the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-952_Q2", "context": "Anne is young. Dave is blue. Dave is kind. Erin is smart. Erin is white. Erin is young. Fiona is smart. Kind, green things are blue. Smart things are young. Nice, young things are blue. All blue things are white. All young, smart things are green. If something is white then it is blue. If something is green then it is kind. Nice things are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-224_Q5", "context": "Anne is rough. Charlie is blue. Charlie is smart. Erin is blue. Erin is not quiet. Gary is not kind. Gary is not rough. All quiet, furry things are not young. If something is rough then it is young. All kind, smart things are young. If something is young then it is blue. If something is quiet and kind then it is blue. If something is kind then it is quiet. Blue, young things are kind. Quiet things are smart. If Charlie is kind and Charlie is quiet then Charlie is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-973_Q12", "context": "The bald eagle chases the mouse. The bald eagle eats the cat. The bald eagle is not nice. The bald eagle is round. The bald eagle is young. The cat is red. The mouse eats the cat. The rabbit eats the bald eagle. The rabbit eats the mouse. The rabbit is kind. The rabbit is round. The rabbit visits the cat. If something visits the rabbit and the rabbit visits the cat then the cat is round. If something visits the bald eagle and the bald eagle chases the mouse then it visits the rabbit. If something eats the cat then the cat is not kind. If something chases the bald eagle and it visits the bald eagle then the bald eagle does not eat the cat. If the mouse is not young then the mouse does not eat the bald eagle. If something is round then it visits the bald eagle. If the bald eagle is young then the bald eagle chases the rabbit. If something is red and not round then it eats the bald eagle. If something is young then it does not eat the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not visit the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-330_Q11", "context": "Bob is cold. Bob is kind. Bob is nice. Bob is rough. Bob is white. Charlie is big. Charlie is blue. Charlie is cold. Charlie is rough. Charlie is white. Dave is big. Dave is kind. Dave is nice. Dave is rough. Dave is white. Fiona is rough. If Fiona is blue then Fiona is white. If Charlie is kind then Charlie is blue. If something is cold then it is nice. Nice things are blue. All white, cold things are rough. All blue, cold things are nice. Kind things are cold. Rough things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-778_Q12", "context": "The bear chases the cat. The bear needs the cat. The bear sees the cat. The bear sees the tiger. The cat chases the tiger. The cat is kind. The cat is red. The cat needs the tiger. The mouse is kind. The mouse needs the bear. The mouse sees the bear. The tiger sees the mouse. Kind, cold people are green. If someone chases the tiger then they see the bear. If someone needs the cat and the cat chases the mouse then they are kind. If someone is kind then they see the cat. If the tiger sees the cat then the cat is red. If someone sees the mouse and the mouse is green then they see the cat. If someone sees the cat and they see the mouse then the cat chases the mouse. If someone is kind then they see the mouse. If someone sees the mouse then they chase the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not chase the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-239_Q9", "context": "The lion is cold. The lion is young. The mouse chases the tiger. The rabbit chases the tiger. The rabbit is nice. The tiger is red. The tiger is young. If someone likes the rabbit then the rabbit is young. If someone is nice then they eat the mouse. If someone is young then they eat the rabbit. If someone likes the mouse then they like the rabbit. If someone eats the rabbit then they like the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit eats the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-969_Q11", "context": "Anne is big. Anne is round. Bob is nice. Fiona is big. Gary is green. Gary is quiet. Gary is round. All big people are round. Green, furry people are round. Quiet people are furry. All green, big people are blue. If Fiona is round then Fiona is quiet. All furry, quiet people are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-1005_Q6", "context": "The bald eagle likes the cow. The bald eagle sees the cow. The cow is red. The cow likes the bald eagle. The cow likes the rabbit. The cow needs the squirrel. The rabbit is blue. The rabbit is nice. The rabbit likes the cow. The rabbit needs the bald eagle. The squirrel is big. The squirrel is kind. The squirrel likes the rabbit. The squirrel sees the cow. If someone is red then they see the rabbit. If someone needs the squirrel then the squirrel is kind. If someone is big and they like the cow then they see the squirrel. If someone sees the bald eagle then the bald eagle is red. If someone is red and they see the rabbit then they see the bald eagle. If the bald eagle sees the cow then the cow needs the bald eagle. If someone is big then they like the rabbit. If someone needs the squirrel and the squirrel needs the rabbit then the squirrel needs the cow. If someone needs the squirrel then the squirrel is red.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not see the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-246_Q24", "context": "The bald eagle is rough. The bald eagle needs the cow. The bald eagle needs the mouse. The cat is not nice. The cat likes the mouse. The cat visits the cow. The cow needs the cat. The mouse is not blue. The mouse is rough. The mouse is young. The mouse needs the cat. If something needs the cow and the cow needs the mouse then the cow visits the mouse. If something visits the mouse and the mouse is rough then it visits the cow. If something is nice then it visits the cat. If something needs the cow then the cow is rough. If something likes the mouse then it needs the mouse. If something is rough then it likes the mouse. If something needs the cat and the cat visits the mouse then the cat is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat needs the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-415_Q7", "context": "Anne is cold. Anne is furry. Anne is not green. Anne is red. Anne is not rough. Anne is round. Bob is rough. Dave is blue. Dave is rough. Harry is green. Harry is rough. Red, round people are cold. All cold, round people are blue. If someone is furry then they are blue. If someone is cold then they are blue. If someone is green then they are round. All red, blue people are furry. Rough, blue people are red. If Bob is green then Bob is cold. Rough people are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1200_Q12", "context": "Erin is furry. Erin is red. Erin is young. Fiona is big. Fiona is young. Gary is furry. Gary is red. Gary is round. Harry is cold. Harry is round. Harry is young. If someone is big then they are young. If someone is furry and big then they are red. Cold, furry people are green. If someone is red and big then they are furry. All round people are cold. If someone is big then they are furry. If someone is red then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-904_Q13", "context": "The bald eagle chases the cow. The bald eagle chases the squirrel. The bald eagle is green. The bald eagle is young. The bald eagle needs the squirrel. The cow is nice. The lion is green. The lion likes the squirrel. The lion needs the squirrel. The squirrel is blue. The squirrel is green. The squirrel is red. The squirrel likes the lion. The squirrel needs the lion. If someone is young then they chase the lion. If someone needs the cow then they chase the squirrel. If someone chases the cow and they are green then they chase the bald eagle. If someone chases the lion then they chase the cow. If someone likes the squirrel and the squirrel chases the cow then they chase the cow. If someone chases the lion and the lion is green then they need the bald eagle. If someone needs the squirrel then the squirrel is young. If the bald eagle needs the squirrel and the bald eagle needs the cow then the bald eagle is green. If someone likes the bald eagle and they are young then the bald eagle chases the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not chase the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-436_Q2", "context": "Anne is cold. Anne is furry. Anne is red. Erin is furry. Erin is green. Erin is nice. Erin is red. Fiona is rough. Gary is green. Gary is rough. All red people are rough. If someone is furry and rough then they are nice. Red, rough people are cold. If someone is rough then they are red. If someone is cold then they are furry. All nice people are rough. If someone is cold and nice then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-355_Q4", "context": "The bear is kind. The bear is round. The dog is red. The dog is round. The rabbit is red. The squirrel is rough. The squirrel needs the bear. If something eats the squirrel and the squirrel eats the rabbit then the squirrel is kind. If something is kind then it needs the squirrel. If something is cold and it needs the rabbit then it is round. If something needs the squirrel then it is red. All cold things are round. If the bear visits the squirrel and the squirrel eats the bear then the squirrel eats the dog. All rough things are cold. All round things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not need the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1393_Q14", "context": "Charlie is smart. Dave is rough. Dave is round. Erin is green. Fiona is cold. Fiona is green. Fiona is nice. Cold, blue things are rough. All green, cold things are blue. If something is smart then it is nice. All round things are rough. Round things are cold. All nice things are round. All rough things are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-351_Q12", "context": "Bob is blue. Charlie is rough. Gary is big. Gary is blue. Gary is kind. Gary is rough. Gary is white. Harry is big. Harry is rough. Harry is white. Harry is young. All kind things are big. Green, big things are young. Green things are rough. If Harry is kind and Harry is green then Harry is young. If Bob is kind then Bob is big. If something is rough and green then it is big. All young things are kind. All kind, blue things are big. If something is blue then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-7_Q1", "context": "The bald eagle eats the dog. The bald eagle is not round. The bald eagle sees the bear. The bear eats the lion. The bear is young. The bear needs the dog. The dog eats the bald eagle. The dog needs the bear. The dog sees the lion. The lion eats the dog. The lion is round. The lion needs the bald eagle. The lion sees the bear. The lion sees the dog. If something needs the lion then it sees the bald eagle. If something needs the bald eagle then the bald eagle needs the dog. If something is round and nice then it needs the lion. If something sees the bear and it is nice then the bear is round. If something eats the bald eagle and the bald eagle is not round then it is rough. All round things are nice. If something eats the bear then the bear is not young.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion sees the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-474_Q12", "context": "The bald eagle chases the cat. The bald eagle likes the cat. The bald eagle likes the cow. The cat chases the bald eagle. The cat is not cold. The cat sees the bald eagle. The cat sees the cow. The cat sees the tiger. The cow chases the bald eagle. The cow is cold. The cow is rough. The cow does not like the cat. The cow sees the cat. The tiger chases the bald eagle. The tiger is big. The tiger sees the bald eagle. If the tiger likes the bald eagle then the tiger likes the cow. If something likes the tiger then the tiger likes the bald eagle. If something is nice then it is blue. If something is nice and it likes the tiger then the tiger is rough. If the cow is cold then the cow is nice. If something is blue then it likes the tiger. If the tiger chases the cow and the tiger sees the bald eagle then the cow chases the cat. If something is cold and it chases the cat then the cat likes the tiger. If something chases the cow then it is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not like the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-580_Q12", "context": "The cat is round. The cat visits the rabbit. The cow eats the squirrel. The cow is young. The cow visits the squirrel. The rabbit eats the cat. The rabbit does not eat the cow. The rabbit is cold. The rabbit is round. The rabbit visits the cat. The rabbit visits the squirrel. The squirrel eats the rabbit. The squirrel is round. The squirrel is young. The squirrel visits the cat. The squirrel visits the rabbit. If someone is round and young then they chase the squirrel. If someone is cold and they chase the cat then the cat is not round. If the cow is big then the cow eats the rabbit. If someone is young and they eat the rabbit then they do not visit the squirrel. If someone chases the rabbit then they are cold. If someone eats the squirrel then they are young. If someone chases the squirrel then they chase the rabbit. If someone chases the rabbit then the rabbit eats the squirrel. If someone chases the cow then the cow does not chase the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not chase the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-614_Q4", "context": "Bob is smart. Bob is young. Charlie is green. Charlie is quiet. Charlie is rough. Charlie is white. Charlie is young. Gary is quiet. Harry is green. Harry is quiet. Harry is smart. All rough people are smart. Quiet people are smart. Quiet, big people are young. Young, quiet people are green. If Gary is smart then Gary is white. If someone is quiet and white then they are big. Green people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-180_Q6", "context": "The bear chases the tiger. The bear is cold. The bear likes the tiger. The dog chases the tiger. The dog likes the mouse. The dog needs the tiger. The mouse chases the dog. The mouse is green. The mouse is round. The mouse likes the tiger. The tiger chases the mouse. The tiger is round. The tiger likes the bear. The tiger needs the bear. If something chases the dog then it likes the tiger. If something needs the bear then it is young. If something needs the dog and the dog likes the mouse then the dog needs the bear. If something is young then it needs the dog. If something needs the dog and it needs the bear then it is nice. If something chases the mouse and it likes the tiger then it likes the dog. If something needs the dog and the dog is round then the dog needs the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not need the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-457_Q20", "context": "Bob is big. Bob is blue. Bob is cold. Bob is green. Bob is quiet. Bob is rough. Bob is smart. Charlie is quiet. Erin is big. Fiona is cold. Fiona is smart. If Charlie is blue and Charlie is rough then Charlie is quiet. If Erin is blue and Erin is quiet then Erin is green. All rough, blue people are cold. Smart people are cold. Quiet, cold people are big. All green, smart people are big. If Charlie is quiet then Charlie is smart. If someone is blue and quiet then they are green. Big people are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1348_Q2", "context": "Anne is blue. Anne is nice. Anne is red. Charlie is green. Charlie is red. Charlie is white. Charlie is young. Erin is blue. Erin is green. Erin is nice. Gary is green. Gary is young. All green, nice people are kind. White, green people are nice. Blue people are white. If Charlie is nice and Charlie is kind then Charlie is green. All red people are nice. If someone is green then they are blue. If Erin is red and Erin is white then Erin is kind. Young, kind people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-883_Q5", "context": "The bald eagle chases the cat. The bald eagle is young. The bear is cold. The bear visits the bald eagle. The cat does not chase the bear. The cat is not big. The cat visits the lion. The lion does not need the cat. The lion does not visit the bear. The lion visits the cat. If someone is nice and they need the cat then the cat is nice. If someone is cold then they chase the lion. If someone needs the cat then they are big. If someone is young then they need the bald eagle. If someone needs the bear then the bear chases the cat. If someone is young and they visit the bald eagle then they need the bear. If someone is young and they do not visit the bear then the bear visits the lion. If someone chases the cat then they are red. If someone chases the lion then they are young.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-628_Q7", "context": "The bald eagle chases the cat. The bald eagle is rough. The bald eagle needs the squirrel. The cat chases the rabbit. The cat is cold. The cat is rough. The cat needs the rabbit. The cat visits the bald eagle. The rabbit chases the cat. The rabbit is rough. The rabbit needs the cat. The squirrel chases the rabbit. The squirrel is cold. The squirrel is red. The squirrel is rough. The squirrel needs the rabbit. If someone visits the cat and the cat is green then they chase the bald eagle. If the cat visits the rabbit then the rabbit visits the cat. If someone visits the bald eagle then they chase the squirrel. If the bald eagle chases the cat then the cat visits the rabbit. If someone needs the cat then they need the rabbit. If someone visits the cat and the cat visits the squirrel then the squirrel visits the bald eagle. If someone chases the squirrel then they visit the squirrel. If the rabbit needs the squirrel and the squirrel chases the cat then the rabbit chases the bald eagle. If someone needs the bald eagle then they are big.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel visits the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-147_Q11", "context": "The cat chases the rabbit. The cat eats the rabbit. The cat eats the squirrel. The cat is nice. The mouse eats the cat. The mouse is kind. The rabbit chases the squirrel. The rabbit eats the cat. The rabbit does not eat the squirrel. The rabbit is green. The rabbit does not need the cat. The squirrel chases the rabbit. The squirrel eats the mouse. The squirrel is kind. If something needs the cat then it eats the mouse. If something chases the squirrel then it does not eat the mouse. If something needs the rabbit and it is red then the rabbit is red. If something needs the mouse then the mouse eats the rabbit. If the cat eats the mouse then the cat is red. If something needs the mouse and it needs the squirrel then the mouse needs the cat. If something eats the mouse and the mouse eats the rabbit then the mouse needs the cat. If the mouse needs the squirrel and the mouse eats the rabbit then the squirrel needs the mouse. If something eats the mouse then it needs the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse needs the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-388_Q7", "context": "Dave is cold. Dave is kind. Dave is not red. Erin is furry. Erin is not round. Fiona is kind. Fiona is white. Harry is furry. Harry is green. Harry is white. All kind, furry things are not red. All round, furry things are red. If something is green then it is cold. All furry things are cold. If something is cold then it is green. If Erin is furry and Erin is green then Erin is kind. If something is green and not red then it is white.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-492_Q5", "context": "The bald eagle eats the dog. The bald eagle needs the cow. The bald eagle visits the dog. The bald eagle visits the tiger. The cow is blue. The cow visits the dog. The dog eats the bald eagle. The dog eats the cow. The dog is not green. The dog is young. The dog needs the tiger. The dog does not visit the bald eagle. The dog visits the cow. The dog visits the tiger. The tiger eats the cow. The tiger is not kind. If something needs the dog and it visits the dog then the dog visits the cow. If something visits the dog then it is cold. If something needs the tiger and the tiger visits the bald eagle then the tiger is not blue. If something is young then it visits the cow. If something is blue and it eats the tiger then the tiger visits the dog. If something is cold then it eats the tiger. If something eats the dog and it does not need the cow then it is not kind. Green things are young. If something needs the bald eagle and it visits the tiger then the bald eagle is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow eats the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-236_Q11", "context": "The bald eagle is cold. The dog needs the bald eagle. The dog sees the lion. The lion eats the bald eagle. The lion eats the tiger. The lion is cold. The lion does not need the bald eagle. The lion sees the bald eagle. The tiger is big. The tiger is cold. If something eats the lion then it eats the dog. If something is rough then it sees the lion. If something is young then it eats the lion. If something is cold and it eats the dog then the dog is big. If the lion needs the dog then the dog does not need the bald eagle. If something eats the lion and the lion is cold then the lion does not need the dog. If something sees the lion then the lion sees the dog. Big things are young. If the tiger does not see the lion then the tiger is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-504_Q2", "context": "The cow is red. The cow sees the lion. The dog eats the tiger. The dog is red. The dog is round. The dog sees the tiger. The dog visits the lion. The lion is not red. The lion sees the cow. The tiger is big. If someone eats the lion then the lion eats the tiger. If the lion visits the dog then the lion eats the dog. If someone sees the cow and they eat the lion then the lion visits the dog. If someone eats the tiger then they eat the lion. If someone is big then they do not see the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not visit the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-719_Q21", "context": "The bear sees the dog. The dog eats the mouse. The dog eats the squirrel. The dog is cold. The dog likes the mouse. The dog likes the squirrel. The dog sees the bear. The dog sees the mouse. The mouse eats the squirrel. The mouse sees the dog. The squirrel eats the bear. The squirrel is blue. The squirrel sees the bear. The squirrel sees the dog. If something likes the bear then the bear likes the squirrel. If something likes the bear then the bear is cold. If something eats the dog then the dog likes the bear. If the mouse eats the dog and the mouse sees the dog then the mouse is round. If something is young then it eats the dog. If the squirrel sees the bear and the bear is cold then the bear sees the mouse. If something sees the mouse and it is cold then the mouse is young.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-497_Q5", "context": "The bald eagle chases the bear. The bald eagle sees the cow. The bald eagle visits the bear. The bald eagle visits the rabbit. The bear is not red. The bear is young. The cow chases the bald eagle. The rabbit is kind. The rabbit is nice. The rabbit sees the cow. The rabbit does not visit the bald eagle. If something sees the rabbit then the rabbit chases the bald eagle. If something is young then it does not visit the cow. If the bald eagle sees the bear and the bear sees the bald eagle then the bald eagle visits the rabbit. If the bald eagle is not rough then the bald eagle visits the cow. If something sees the rabbit then it sees the bear. If something chases the bald eagle then it sees the rabbit. If the cow sees the bear then the bear is rough. If something chases the rabbit then it is not young. If something visits the rabbit and the rabbit sees the bear then the bear does not visit the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit chases the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-916_Q11", "context": "The bear is not young. The dog is red. The dog is young. The dog does not need the bear. The dog sees the squirrel. The dog sees the tiger. The squirrel chases the dog. The squirrel is cold. The squirrel needs the tiger. The squirrel does not see the tiger. The tiger is rough. The tiger needs the bear. The tiger needs the squirrel. The tiger sees the squirrel. If something chases the squirrel then the squirrel is not red. If something chases the bear then it is nice. Red things are nice. If something sees the squirrel then the squirrel is nice. If something is nice then it chases the bear. If something is nice then it does not need the dog. If something is young and rough then it needs the bear. If something chases the bear then the bear is red. If something needs the dog and it is not nice then the dog needs the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear chases the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1152_Q14", "context": "Anne is young. Bob is blue. Bob is quiet. Bob is young. Charlie is big. Charlie is blue. Charlie is quiet. Charlie is rough. Charlie is young. Erin is smart. Smart people are rough. Furry people are rough. Smart people are quiet. All young people are furry. Quiet people are big. Rough, young people are blue. All blue, young people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-473_Q9", "context": "The bald eagle chases the dog. The bald eagle eats the dog. The bald eagle is rough. The bald eagle does not need the cat. The cat chases the dog. The cat does not eat the cow. The cow chases the cat. The cow does not eat the cat. The cow eats the dog. The cow is nice. The cow needs the cat. The cow needs the dog. The dog does not chase the bald eagle. The dog chases the cow. The dog does not eat the cat. The dog eats the cow. If someone needs the cow then they eat the cat. All nice people are not green. If the cow is young then the cow chases the cat. If someone eats the dog then they are nice. If someone chases the dog and they are not green then the dog needs the bald eagle. If someone needs the dog and they eat the dog then they eat the cow. If someone needs the bald eagle then the bald eagle needs the dog. If someone needs the dog and they do not eat the dog then they chase the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle needs the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-61_Q9", "context": "Anne is blue. Anne is green. Anne is quiet. Anne is red. Anne is white. Dave is blue. Dave is quiet. Dave is red. Erin is red. Fiona is green. If something is white and green then it is nice. If something is nice and quiet then it is big. All quiet things are red. If something is big then it is green. If something is green then it is white. If something is nice then it is quiet. If something is red and white then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-760_Q7", "context": "The bald eagle eats the rabbit. The bald eagle is nice. The bald eagle is round. The bald eagle sees the rabbit. The bear eats the tiger. The bear sees the tiger. The rabbit eats the bear. The rabbit is cold. The tiger eats the bear. The tiger is green. The tiger is round. If the tiger visits the bald eagle and the tiger is kind then the bald eagle is cold. If something is round then it is nice. If something eats the rabbit and the rabbit visits the bald eagle then it is cold. If something is kind then it visits the bald eagle. If something is nice and cold then it visits the rabbit. If something eats the bear then it is round. Cold things are kind. If something eats the bald eagle then the bald eagle eats the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-887_Q2", "context": "The cow is round. The cow visits the mouse. The mouse is blue. The mouse is round. The mouse needs the cow. The mouse needs the rabbit. The mouse needs the squirrel. The mouse visits the squirrel. The rabbit is kind. The rabbit sees the squirrel. The rabbit visits the mouse. The squirrel is big. If something is blue and big then it does not need the mouse. If something is big and kind then it visits the rabbit. If something needs the squirrel and it does not need the cow then the cow needs the squirrel. If something sees the squirrel and it visits the mouse then it is blue. If the mouse is big and the mouse needs the cow then the cow sees the squirrel. All blue things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not need the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-756_Q5", "context": "Anne is cold. Anne is quiet. Anne is smart. Anne is young. Erin is green. Erin is quiet. Erin is young. Fiona is furry. Fiona is smart. Fiona is young. Harry is kind. Harry is young. Kind people are green. If someone is green then they are not cold. All green people are kind. If someone is young and smart then they are furry. All cold, smart people are furry. Quiet, smart people are young. Furry, kind people are quiet. If someone is cold and not kind then they are smart. If someone is kind and not cold then they are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-657_Q16", "context": "Charlie is big. Charlie is blue. Charlie is quiet. Charlie is red. Charlie is young. Dave is big. Dave is blue. Dave is cold. Dave is red. Dave is young. Fiona is rough. Harry is cold. Harry is red. Harry is young. If Dave is blue then Dave is quiet. Young people are quiet. If Charlie is quiet and Charlie is young then Charlie is cold. Rough, cold people are young. All big, blue people are cold. If someone is big then they are quiet. All quiet, cold people are big. All big people are blue. All rough people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-443_Q8", "context": "Bob is blue. Bob is cold. Charlie is blue. Charlie is rough. Dave is big. Dave is green. Dave is red. Dave is rough. Gary is big. Gary is quiet. Gary is red. Gary is rough. If something is cold then it is rough. Rough, quiet things are red. All big things are green. If something is green and quiet then it is rough. Rough, green things are quiet. All rough things are big. All quiet, cold things are rough. Red, rough things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-605_Q3", "context": "Anne is furry. Anne is nice. Bob is kind. Bob is quiet. Charlie is kind. Charlie is quiet. Charlie is white. Charlie is young. Dave is furry. Dave is rough. White, quiet people are rough. Kind people are furry. Young, rough people are white. All furry, quiet people are rough. Rough, kind people are nice. If someone is nice then they are young. If someone is rough then they are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-248_Q21", "context": "The bald eagle is nice. The bald eagle needs the cow. The bald eagle visits the cow. The bald eagle visits the squirrel. The cow is green. The cow is kind. The dog eats the squirrel. The dog needs the bald eagle. The dog visits the squirrel. The squirrel eats the cow. The squirrel eats the dog. If someone eats the cow then they need the squirrel. If someone eats the squirrel then the squirrel is green. If someone visits the bald eagle then they need the bald eagle. If someone is cold and they visit the squirrel then they eat the bald eagle. If the cow is big and the cow is kind then the cow eats the dog. All big people are cold. If someone is green and they visit the cow then they eat the bald eagle. If someone eats the dog then the dog is big. If someone eats the bald eagle and they are cold then the bald eagle eats the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1164_Q18", "context": "Anne is cold. Anne is round. Erin is furry. Gary is furry. Gary is smart. Harry is not cold. Harry is furry. If Anne is smart then Anne is cold. All young, cold things are green. All furry things are green. Young, kind things are not furry. All kind, round things are smart. If something is round and not young then it is smart. Furry, green things are kind. All kind things are round. If Erin is green and Erin is smart then Erin is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1253_Q2", "context": "Charlie is furry. Dave is furry. Dave is quiet. Dave is smart. Fiona is rough. Fiona is white. Harry is cold. Harry is furry. Harry is quiet. Harry is rough. All quiet, rough things are cold. All quiet, furry things are cold. All young things are smart. All rough things are quiet. White, furry things are young. Young, furry things are quiet. If something is cold then it is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-457_Q1", "context": "Bob is big. Bob is blue. Bob is cold. Bob is green. Bob is quiet. Bob is rough. Bob is smart. Charlie is quiet. Erin is big. Fiona is cold. Fiona is smart. If Charlie is blue and Charlie is rough then Charlie is quiet. If Erin is blue and Erin is quiet then Erin is green. All rough, blue people are cold. Smart people are cold. Quiet, cold people are big. All green, smart people are big. If Charlie is quiet then Charlie is smart. If someone is blue and quiet then they are green. Big people are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-387_Q2", "context": "Anne is green. Bob is green. Dave is not big. Dave is not green. Dave is nice. Dave is young. Harry is smart. Nice, cold things are not big. If something is green then it is big. If something is cold and young then it is not nice. If something is young and cold then it is nice. All smart things are nice. Big things are nice. Round, big things are smart. All young things are round. Nice things are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-87_Q6", "context": "Bob is blue. Bob is furry. Bob is rough. Bob is not smart. Bob is not young. Dave is furry. Dave is kind. Dave is red. Dave is young. Erin is young. Gary is blue. Gary is kind. Gary is rough. Gary is smart. Kind things are red. If Erin is furry and Erin is young then Erin is smart. All rough things are kind. All young things are rough. If something is red then it is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1_Q12", "context": "Anne is kind. Charlie is not kind. Fiona is red. Fiona is not rough. Fiona is smart. Gary is quiet. Gary is smart. Red people are smart. If someone is furry then they are red. All quiet people are rough. Rough people are furry. If someone is smart and rough then they are kind. If Anne is kind and Anne is furry then Anne is red. Kind people are quiet. Furry, kind people are young. Smart people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-107_Q20", "context": "Anne is big. Anne is cold. Dave is big. Erin is big. Erin is cold. Erin is red. Gary is white. All green things are cold. Cold things are red. If Erin is nice then Erin is red. If something is big then it is green. Red things are white. If something is white and big then it is red. If something is white then it is rough. If Anne is rough then Anne is red. All big, nice things are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-804_Q19", "context": "The cat eats the mouse. The cow chases the lion. The cow eats the lion. The cow eats the mouse. The cow sees the cat. The lion chases the cat. The lion eats the cat. The lion sees the cat. The mouse chases the cat. The mouse chases the lion. The mouse is red. If someone sees the lion then they eat the cow. If someone sees the lion then the lion is big. If someone is kind then they see the lion. If someone is red and they eat the lion then they are green. If someone is young then they chase the cat. If someone chases the cow and the cow is kind then they are red. If someone eats the cat then the cat is kind. If someone eats the cat then they see the cow. If someone eats the cow then the cow eats the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not eat the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-188_Q12", "context": "The bear is green. The bear is rough. The bear sees the dog. The bear sees the tiger. The bear visits the cat. The cat is red. The cat likes the tiger. The cat sees the dog. The dog likes the bear. The dog likes the tiger. The dog sees the bear. The dog sees the tiger. The dog visits the cat. The tiger likes the bear. The tiger likes the dog. The tiger visits the cat. If something is rough then it likes the cat. If something likes the bear and it is red then the bear is young. If something visits the dog then the dog likes the bear. If something sees the cat and the cat is nice then it is green. If the dog visits the bear then the dog likes the cat. If something sees the bear and the bear likes the cat then the cat is rough. If something is red and it likes the cat then it likes the bear. If something sees the bear and the bear likes the cat then the cat visits the tiger. If something is red and it likes the cat then the cat is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-553_Q7", "context": "The cat is not nice. The cat sees the cow. The cow chases the cat. The cow is big. The cow is nice. The cow is rough. The cow sees the mouse. The lion is red. The lion is rough. The lion does not like the cat. The mouse is rough. If someone sees the cow and they chase the mouse then they like the cat. If someone likes the mouse then the mouse chases the cat. If someone chases the mouse then they like the mouse. If someone likes the cat then they do not chase the lion. If someone likes the cat and they are not nice then they are not young. If someone chases the cat then they chase the mouse. If the cat is not big then the cat does not chase the mouse. If the mouse sees the cat and the cat does not chase the mouse then the mouse sees the lion. If someone sees the cow and they do not like the cat then the cow likes the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse chases the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-717_Q1", "context": "The bald eagle chases the squirrel. The bald eagle likes the tiger. The bald eagle visits the tiger. The cow chases the bald eagle. The cow is big. The cow likes the bald eagle. The cow likes the squirrel. The cow visits the bald eagle. The squirrel chases the bald eagle. The squirrel is green. The squirrel likes the tiger. The tiger is blue. If the cow visits the squirrel then the cow chases the tiger. If something likes the squirrel and it chases the bald eagle then the squirrel likes the cow. If something likes the bald eagle and the bald eagle likes the tiger then the tiger is kind. If something chases the cow and the cow visits the bald eagle then the cow is green. If something likes the cow then it chases the tiger. If something is green and it chases the tiger then it chases the cow. If the cow chases the tiger then the tiger is green. If something is green then it chases the squirrel. If something chases the tiger and it visits the tiger then the tiger likes the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-732_Q22", "context": "The bald eagle does not need the mouse. The bald eagle sees the lion. The dog needs the lion. The dog needs the mouse. The lion chases the dog. The lion is nice. The mouse is big. If something chases the mouse and it sees the mouse then it is big. If something sees the dog then it is young. If something is young then it is red. If the lion chases the dog and the lion is nice then the dog is young. If something chases the dog then it sees the mouse. If something is red then it chases the mouse. If something needs the bald eagle then the bald eagle is not big. If the lion sees the dog and the dog does not need the lion then the lion sees the bald eagle. If something needs the lion then the lion sees the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-337_Q1", "context": "The bald eagle eats the lion. The bald eagle is cold. The bald eagle is green. The bald eagle is nice. The cat chases the bald eagle. The cat needs the bald eagle. The cat needs the rabbit. The lion does not eat the cat. The lion eats the rabbit. The lion is nice. The lion needs the bald eagle. The lion needs the cat. The lion needs the rabbit. The rabbit is cold. If something eats the bald eagle then it needs the lion. If something is blue then it chases the lion. If the lion needs the bald eagle and the lion is young then the bald eagle does not eat the cat. If something chases the bald eagle then it is green. If something needs the cat then it is not young. If something is green and it chases the bald eagle then the bald eagle is blue. If something eats the bald eagle then the bald eagle is not blue. If something chases the lion then it needs the cat. If something needs the cat then it eats the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion needs the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-270_Q13", "context": "The bald eagle is green. The bald eagle is young. The bald eagle needs the bear. The bald eagle needs the cow. The bear is kind. The bear is rough. The cow is rough. The cow is round. The cow likes the mouse. The cow needs the bald eagle. The cow needs the mouse. The cow sees the bald eagle. The mouse is round. The mouse needs the bear. If something likes the bald eagle then it is green. If something is round then it likes the bear. If the mouse needs the cow then the mouse needs the bald eagle. If the bear is young and the bear needs the bald eagle then the bald eagle likes the bear. If something needs the bear then it is round. If the bald eagle likes the bear then the bear is green. If something sees the bald eagle then it likes the bald eagle. Green, kind things are round.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not need the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-320_Q3", "context": "Anne is white. Bob is furry. Bob is nice. Bob is white. Fiona is furry. Fiona is kind. Fiona is nice. Harry is furry. Harry is nice. Harry is white. If someone is big then they are kind. If Anne is furry and Anne is big then Anne is nice. All nice, big people are blue. All blue people are cold. All kind, white people are cold. If Harry is white then Harry is big. If Anne is cold then Anne is big. If someone is white then they are big. If someone is kind then they are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-551_Q10", "context": "Bob is furry. Bob is not white. Erin is green. Erin is young. Fiona is green. Fiona is round. Harry is furry. If Erin is blue then Erin is cold. If Bob is furry then Bob is not blue. All blue things are white. All green things are white. All young things are cold. Furry, round things are blue. White things are young. If Fiona is cold then Fiona is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-918_Q10", "context": "The cow is green. The cow is young. The dog visits the cow. The lion chases the dog. The lion chases the tiger. The lion eats the cow. The lion eats the dog. The lion is kind. The lion visits the cow. The lion visits the dog. The tiger eats the dog. The tiger visits the cow. If someone is young and they chase the dog then the dog visits the lion. If someone is young and they eat the tiger then they eat the dog. If someone chases the cow then they chase the dog. If the lion is green then the lion visits the tiger. If the lion eats the tiger and the lion visits the tiger then the tiger chases the cow. If someone visits the cow then the cow chases the dog. If someone chases the dog and the dog visits the lion then they eat the lion. If the dog eats the lion then the lion eats the dog. If someone visits the lion and the lion eats the dog then they chase the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not chase the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-283_Q11", "context": "The cat is cold. The cat sees the rabbit. The cow is kind. The cow sees the mouse. The mouse is kind. The mouse is rough. The rabbit eats the cat. The rabbit is cold. The rabbit is not kind. The rabbit does not see the cat. If someone needs the cow then the cow needs the rabbit. If someone is cold then they need the cow. If someone is red then they do not eat the mouse. If someone is green then they do not need the cat. If someone is rough and they need the rabbit then the rabbit is not green. If someone is kind and they eat the mouse then the mouse needs the rabbit. If someone eats the cow then the cow is red. If someone needs the rabbit then the rabbit eats the cow. If someone is kind and they need the cow then they see the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not eat the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-938_Q16", "context": "Anne is young. Bob is furry. Erin is cold. Erin is green. Harry is green. Harry is quiet. Harry is young. Young things are quiet. Smart, quiet things are green. Quiet things are cold. If something is green then it is cold. If something is furry then it is young. All cold, furry things are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-580_Q20", "context": "The cat chases the dog. The cat chases the lion. The cat chases the squirrel. The cat needs the lion. The dog eats the squirrel. The dog is red. The dog needs the lion. The lion is young. The lion needs the cat. The squirrel eats the cat. The squirrel eats the dog. If something needs the squirrel and it is young then it eats the cat. If the cat is green and the cat needs the lion then the lion needs the cat. If something chases the cat then it chases the squirrel. If something is blue then it needs the cat. If something is red then it chases the cat. If something needs the cat and the cat chases the lion then the lion eats the cat. If something eats the dog and the dog chases the squirrel then it is red. If something is green then it chases the cat. If something is young and it chases the cat then the cat needs the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion needs the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1114_Q5", "context": "Bob is not blue. Bob is cold. Bob is kind. Charlie is cold. Charlie is green. Gary is kind. Harry is green. Green people are blue. All green, red people are not nice. If someone is blue and not green then they are not cold. If someone is rough then they are cold. If Bob is blue and Bob is cold then Bob is kind. All blue people are rough. All cold people are red. Nice, blue people are kind. If Gary is not rough then Gary is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-270_Q2", "context": "The bald eagle is green. The bald eagle is young. The bald eagle needs the bear. The bald eagle needs the cow. The bear is kind. The bear is rough. The cow is rough. The cow is round. The cow likes the mouse. The cow needs the bald eagle. The cow needs the mouse. The cow sees the bald eagle. The mouse is round. The mouse needs the bear. If something likes the bald eagle then it is green. If something is round then it likes the bear. If the mouse needs the cow then the mouse needs the bald eagle. If the bear is young and the bear needs the bald eagle then the bald eagle likes the bear. If something needs the bear then it is round. If the bald eagle likes the bear then the bear is green. If something sees the bald eagle then it likes the bald eagle. Green, kind things are round.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not need the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-127_Q4", "context": "Charlie is not blue. Charlie is not furry. Charlie is white. Charlie is young. Dave is furry. Dave is quiet. Fiona is quiet. Fiona is smart. Harry is kind. Harry is not smart. Harry is white. If something is young and kind then it is blue. Kind things are young. If something is white and kind then it is not smart. If something is furry and quiet then it is kind. Blue, kind things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-741_Q15", "context": "Anne is green. Anne is rough. Anne is smart. Charlie is furry. Charlie is red. Dave is quiet. Fiona is not green. All quiet, rough things are not smart. If something is rough then it is furry. Green things are red. If something is kind then it is not red. All red things are rough. If something is quiet then it is green. Red, furry things are not kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-756_Q1", "context": "The bear eats the rabbit. The bear eats the tiger. The bear is blue. The bear is round. The bear needs the rabbit. The bear needs the tiger. The bear sees the cow. The bear sees the tiger. The cow eats the rabbit. The cow needs the bear. The rabbit is blue. The rabbit needs the cow. The tiger is young. The tiger needs the cow. All green people are blue. If someone eats the bear then they see the tiger. If someone needs the cow and they see the tiger then they eat the bear. If someone sees the rabbit then they see the tiger. If someone needs the cow then they are green. If someone eats the tiger and they see the cow then the tiger is kind. If someone is blue then they see the rabbit. If someone sees the rabbit then the rabbit is kind. If someone eats the rabbit then they eat the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear sees the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-114_Q21", "context": "The bald eagle chases the cow. The bald eagle chases the rabbit. The bald eagle is kind. The bald eagle is nice. The bald eagle likes the cow. The cat is kind. The cow is kind. The cow likes the cat. The cow sees the rabbit. The rabbit chases the bald eagle. The rabbit is kind. If someone chases the cat and they like the bald eagle then the bald eagle likes the cat. If someone chases the cow then the cow chases the cat. If someone chases the rabbit and they like the bald eagle then the bald eagle sees the cow. If someone is big and rough then they chase the rabbit. If someone chases the rabbit and they are nice then the rabbit is nice. If the cow chases the bald eagle and the cow is green then the bald eagle likes the rabbit. If someone is nice and they see the cow then they chase the cat. If someone likes the cat then they like the bald eagle. If the bald eagle chases the rabbit and the rabbit likes the bald eagle then the rabbit chases the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not see the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-359_Q5", "context": "The bald eagle needs the tiger. The cow needs the tiger. The cow sees the tiger. The cow visits the tiger. The dog is nice. The dog needs the cow. The dog sees the bald eagle. The dog sees the cow. The tiger is blue. The tiger needs the cow. The tiger needs the dog. If someone visits the cow then they are blue. If someone visits the dog then they see the bald eagle. If someone is rough then they visit the bald eagle. If someone is blue then they visit the tiger. If someone needs the dog then the dog is rough. If someone visits the tiger then they visit the bald eagle. If someone visits the bald eagle and the bald eagle sees the tiger then they see the bald eagle. If someone sees the cow then they need the bald eagle. If someone needs the tiger and the tiger visits the bald eagle then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog visits the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-685_Q3", "context": "Anne is green. Anne is not rough. Anne is smart. Anne is white. Charlie is green. Charlie is kind. Charlie is quiet. Charlie is smart. Fiona is kind. Fiona is white. Gary is red. Smart, quiet people are green. Rough, red people are green. If someone is white and green then they are smart. If someone is green and kind then they are smart. All kind people are red. If Anne is smart and Anne is kind then Anne is not white. If someone is red then they are rough. All smart people are white. All smart people are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-1008_Q2", "context": "The bald eagle chases the squirrel. The bald eagle sees the tiger. The mouse chases the tiger. The mouse likes the squirrel. The mouse likes the tiger. The mouse sees the bald eagle. The squirrel is green. The squirrel is red. The tiger is not blue. The tiger likes the mouse. If someone sees the bald eagle and they like the squirrel then the bald eagle sees the squirrel. If someone sees the mouse then the mouse likes the bald eagle. If someone is red then they do not like the bald eagle. If the tiger does not like the squirrel then the tiger does not chase the bald eagle. If someone likes the bald eagle then the bald eagle likes the squirrel. If someone chases the squirrel and they like the squirrel then they are red. If someone chases the mouse and they are not blue then the mouse chases the squirrel. If someone sees the squirrel then the squirrel sees the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not chase the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1291_Q11", "context": "Anne is red. Anne is smart. Dave is furry. Dave is green. Dave is round. Fiona is round. Fiona is smart. Gary is furry. Gary is kind. Gary is round. Gary is smart. If someone is green then they are furry. Young people are kind. Round people are green. Furry people are red. All red, round people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-545_Q12", "context": "Charlie is furry. Charlie is nice. Charlie is not young. Dave is nice. Dave is white. Erin is cold. Erin is not white. Harry is not cold. Harry is rough. Harry is young. If Erin is nice then Erin is not rough. If Dave is furry then Dave is rough. All smart things are young. If something is white and furry then it is smart. If something is young and not nice then it is smart. Nice things are rough. If Charlie is rough and Charlie is smart then Charlie is young. If something is furry and young then it is cold. If something is nice and rough then it is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-416_Q14", "context": "Bob is cold. Erin is cold. Erin is kind. Gary is kind. Gary is rough. Gary is round. Gary is young. Harry is not kind. Harry is round. Harry is young. If someone is young and cold then they are furry. All cold people are young. If someone is cold and kind then they are round. If Harry is quiet and Harry is cold then Harry is round. If someone is quiet then they are kind. If Gary is quiet then Gary is not cold. Furry people are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-903_Q20", "context": "The bald eagle likes the rabbit. The bald eagle needs the mouse. The bald eagle needs the rabbit. The bald eagle visits the dog. The dog is big. The dog is cold. The dog is green. The dog visits the mouse. The mouse visits the dog. The rabbit likes the dog. The rabbit likes the mouse. The rabbit needs the bald eagle. If the mouse likes the bald eagle then the mouse is green. If something needs the rabbit and the rabbit is nice then the rabbit needs the dog. If something likes the dog and it needs the dog then it likes the rabbit. If something visits the bald eagle then it likes the dog. If something likes the mouse and the mouse visits the rabbit then it is nice. If something is green then it needs the dog. If something likes the rabbit then it visits the mouse. If something likes the mouse then the mouse visits the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle visits the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-904_Q1", "context": "The bald eagle chases the bear. The bald eagle needs the tiger. The bear is not cold. The bear needs the bald eagle. The mouse chases the bear. The mouse is blue. The mouse likes the bear. The tiger chases the bear. The tiger is blue. The tiger is kind. The tiger does not like the bear. If the tiger likes the bald eagle then the bald eagle does not need the tiger. If something is big then it likes the tiger. If something likes the tiger then the tiger chases the mouse. If something chases the bear then the bear is big. If something is nice and it needs the bear then the bear chases the mouse. If the bald eagle is blue then the bald eagle is big. If something chases the mouse then it is big. If the bald eagle likes the bear and the bald eagle likes the tiger then the bald eagle needs the bear. If the mouse is kind then the mouse needs the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not like the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-821_Q22", "context": "The bald eagle is big. The bald eagle needs the tiger. The mouse eats the rabbit. The mouse does not like the rabbit. The mouse needs the bald eagle. The rabbit likes the bald eagle. The tiger eats the bald eagle. The tiger eats the mouse. The tiger does not like the mouse. The tiger likes the rabbit. The tiger needs the bald eagle. If something likes the bald eagle then it eats the rabbit. If something is big then it likes the rabbit. If something likes the rabbit then the rabbit likes the tiger. If something is big and it needs the rabbit then the rabbit eats the tiger. If the tiger is young and the tiger eats the bald eagle then the tiger eats the rabbit. If something is round then it eats the mouse. If something likes the rabbit then it does not eat the tiger. If the rabbit likes the tiger and the tiger eats the mouse then the rabbit is big. If something likes the rabbit then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit needs the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-363_Q12", "context": "The bald eagle chases the cat. The bald eagle chases the lion. The bald eagle chases the squirrel. The bald eagle is big. The bald eagle is round. The bald eagle visits the cat. The bald eagle visits the squirrel. The cat needs the lion. The lion chases the bald eagle. The lion chases the cat. The lion chases the squirrel. The lion is nice. The lion is round. The lion needs the squirrel. The lion visits the squirrel. The squirrel chases the lion. If something needs the bald eagle then it is big. If something chases the bald eagle then it needs the bald eagle. If something is round then it needs the lion. Red things are round. If something visits the bald eagle and the bald eagle chases the squirrel then the bald eagle chases the lion. If something chases the lion and the lion needs the bald eagle then it is nice. If something is nice then it is red. If something chases the lion and the lion is round then the lion is red.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not need the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-904_Q6", "context": "The bald eagle chases the bear. The bald eagle needs the tiger. The bear is not cold. The bear needs the bald eagle. The mouse chases the bear. The mouse is blue. The mouse likes the bear. The tiger chases the bear. The tiger is blue. The tiger is kind. The tiger does not like the bear. If the tiger likes the bald eagle then the bald eagle does not need the tiger. If something is big then it likes the tiger. If something likes the tiger then the tiger chases the mouse. If something chases the bear then the bear is big. If something is nice and it needs the bear then the bear chases the mouse. If the bald eagle is blue then the bald eagle is big. If something chases the mouse then it is big. If the bald eagle likes the bear and the bald eagle likes the tiger then the bald eagle needs the bear. If the mouse is kind then the mouse needs the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not like the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-259_Q12", "context": "The bear is big. The cat is big. The cat visits the bear. The cat visits the lion. The lion is nice. The lion likes the bear. The lion sees the cat. The lion sees the tiger. The tiger is cold. The tiger sees the cat. If the cat is kind then the cat sees the bear. If something is cold then it sees the lion. If something sees the bear then the bear is nice. If something sees the cat and the cat is blue then the cat sees the bear. If something is nice then it likes the lion. If something likes the lion then it sees the bear. If something visits the bear then the bear is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not see the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-237_Q21", "context": "The cat eats the mouse. The cat is nice. The cat visits the dog. The cat visits the mouse. The cat visits the rabbit. The dog eats the cat. The dog needs the rabbit. The dog visits the mouse. The mouse eats the cat. The mouse is nice. The mouse visits the cat. The rabbit is blue. The rabbit is round. The rabbit needs the mouse. If something is big and it visits the mouse then it visits the rabbit. If something eats the dog then the dog needs the cat. If the rabbit is nice and the rabbit is big then the rabbit needs the dog. If something is big then it visits the dog. If something is blue then it eats the rabbit. If something eats the rabbit and the rabbit is round then it is big. If something visits the dog then it visits the mouse. If something eats the cat and it is big then the cat is big.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1141_Q6", "context": "Charlie is nice. Charlie is round. Dave is nice. Erin is furry. Erin is red. Erin is round. Harry is round. All kind, nice people are furry. All round people are kind. If someone is nice then they are round. If someone is cold then they are big. If someone is furry and nice then they are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-517_Q13", "context": "Bob is big. Bob is rough. Dave is big. Dave is blue. Dave is quiet. Dave is smart. Dave is white. Fiona is big. Fiona is not white. Harry is rough. All round things are rough. If something is big and quiet then it is blue. Rough things are blue. Quiet things are round. Smart things are round. Big things are smart. If Bob is blue then Bob is smart. If Dave is smart then Dave is round. All blue, big things are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1384_Q11", "context": "Anne is big. Anne is red. Anne is smart. Charlie is big. Charlie is cold. Charlie is furry. Charlie is quiet. Charlie is red. Charlie is rough. Charlie is smart. Dave is cold. Dave is furry. Dave is quiet. Dave is rough. Dave is smart. Harry is rough. Quiet, smart things are big. Rough things are quiet. If Harry is rough and Harry is cold then Harry is furry. If something is furry and big then it is quiet. All big things are rough. If Harry is quiet then Harry is smart. If something is furry then it is red. Big, quiet things are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-7_Q15", "context": "Anne is furry. Bob is not furry. Bob is smart. Erin is green. Erin is smart. Gary is green. Gary is red. Green things are quiet. Red things are not smart. All furry things are white. If something is furry and quiet then it is red. If Gary is green and Gary is red then Gary is blue. Red, green things are furry. If something is white then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-419_Q24", "context": "The bald eagle is kind. The bald eagle likes the cat. The cat is kind. The cat likes the lion. The lion chases the mouse. The mouse chases the bald eagle. The mouse visits the bald eagle. If something is round then it likes the bald eagle. If something is red then it likes the cat. If something is round and it likes the bald eagle then it chases the bald eagle. If something likes the lion and it visits the lion then the lion is blue. If something likes the bald eagle then the bald eagle is round. If something is kind and blue then it likes the mouse. If something is blue and it chases the cat then the cat is rough. If something likes the mouse then it is rough. If something likes the lion then the lion is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse visits the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-82_Q13", "context": "Anne is big. Anne is kind. Anne is smart. Anne is white. Charlie is round. Gary is big. Gary is furry. Gary is rough. Gary is smart. Harry is white. If something is white then it is furry. If Harry is smart then Harry is not round. If Anne is round then Anne is kind. All big things are rough. If something is smart and white then it is big. If Anne is furry then Anne is smart. All furry things are smart. If Anne is rough then Anne is round. If Harry is rough and Harry is white then Harry is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1306_Q16", "context": "Dave is red. Dave is rough. Dave is smart. Erin is rough. Fiona is green. Gary is cold. Gary is green. Gary is red. Gary is rough. Gary is smart. Gary is white. Gary is young. If someone is white and green then they are cold. All rough people are red. Red, young people are green. If someone is cold and red then they are white. Red, rough people are young. If someone is green and young then they are white. All white people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-791_Q10", "context": "Anne is red. Charlie is not red. Charlie is round. Erin is not blue. Erin is cold. Erin is green. Erin is quiet. Fiona is blue. Fiona is green. Fiona is round. If someone is round then they are green. If someone is nice and quiet then they are green. Nice people are round. Quiet, blue people are cold. Round, red people are blue. Green people are quiet. Red people are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-610_Q17", "context": "The bald eagle eats the cow. The bald eagle is red. The bald eagle needs the cow. The bear needs the rabbit. The cow is kind. The cow is red. The cow needs the bald eagle. The rabbit eats the bear. The rabbit eats the cow. The rabbit sees the cow. If something needs the bald eagle then it needs the rabbit. If the bald eagle is nice and the bald eagle is young then the bald eagle sees the cow. If the rabbit needs the cow then the cow sees the rabbit. If something eats the cow and the cow is nice then it needs the bald eagle. If something needs the rabbit then it is nice. If something sees the rabbit then it is red. If something needs the bald eagle then it eats the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not see the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-217_Q2", "context": "The bear likes the mouse. The bear visits the dog. The dog is red. The dog sees the bear. The dog sees the mouse. The mouse is nice. The mouse sees the dog. The tiger is blue. The tiger is nice. The tiger is red. The tiger likes the mouse. If the tiger likes the bear then the tiger sees the mouse. If someone is red then they see the dog. If the mouse likes the dog then the mouse sees the tiger. If someone likes the mouse and they like the bear then the mouse likes the dog. If someone visits the bear then the bear is red. If the bear sees the dog then the bear sees the tiger. If someone is kind and they see the mouse then the mouse is red. If the dog sees the mouse then the mouse visits the bear. If someone sees the tiger and the tiger is red then they are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not see the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1231_Q12", "context": "Charlie is cold. Charlie is green. Erin is big. Gary is cold. Harry is quiet. Harry is white. Harry is young. All big people are quiet. Cold, young people are big. If Erin is kind then Erin is big. If someone is green then they are big. All quiet, cold people are white. If someone is white and young then they are green. If Harry is cold then Harry is big. All white people are young. All young people are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-667_Q5", "context": "The dog chases the mouse. The dog is blue. The dog needs the mouse. The mouse needs the dog. The mouse needs the rabbit. The mouse needs the tiger. The rabbit is not kind. The rabbit likes the mouse. The rabbit needs the dog. The tiger does not chase the dog. The tiger is cold. The tiger is kind. The tiger is red. The tiger is rough. The tiger needs the mouse. The tiger does not need the rabbit. If the mouse is rough and the mouse likes the rabbit then the rabbit is not red. If the rabbit chases the mouse then the mouse is blue. If something needs the dog and it needs the rabbit then the dog chases the rabbit. If the dog likes the rabbit and the rabbit needs the mouse then the dog is red. If something likes the dog then the dog chases the tiger. If something likes the dog and it needs the tiger then the dog does not need the tiger. If something chases the tiger then the tiger chases the rabbit. If something chases the rabbit and the rabbit likes the mouse then it likes the dog. If something needs the dog and it is not red then it does not like the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog likes the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-79_Q11", "context": "Charlie is nice. Fiona is nice. Fiona is white. Gary is green. Gary is kind. Harry is furry. Harry is kind. If something is big and furry then it is blue. If Harry is green and Harry is kind then Harry is big. Kind, furry things are big. If something is white and nice then it is blue. Nice, kind things are white. Furry things are green. Blue things are furry. Nice things are kind. All big, kind things are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1018_Q11", "context": "Bob is quiet. Bob is not rough. Bob is not round. Charlie is not kind. Charlie is smart. Erin is blue. Harry is rough. If Charlie is smart and Charlie is rough then Charlie is not kind. All kind people are round. All quiet, blue people are round. All kind people are smart. If someone is blue and kind then they are smart. If someone is round then they are kind. Blue people are white. If Erin is white then Erin is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-953_Q11", "context": "The mouse sees the rabbit. The rabbit does not like the mouse. The squirrel is round. The squirrel likes the tiger. The tiger chases the rabbit. The tiger chases the squirrel. The tiger likes the squirrel. If something is nice and it chases the mouse then the mouse likes the squirrel. If something is round then it is kind. If something chases the squirrel then it sees the rabbit. If something is young then it likes the tiger. If something likes the tiger then it chases the squirrel. If something chases the squirrel and it sees the rabbit then the rabbit is young. If something likes the mouse and it is not kind then it chases the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit sees the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-55_Q1", "context": "Anne is blue. Anne is kind. Anne is red. Anne is rough. Bob is round. Charlie is blue. Charlie is cold. Charlie is kind. Charlie is red. Charlie is rough. Harry is rough. If something is rough then it is furry. Rough, red things are blue. If something is red then it is round. If something is furry then it is red. Round, blue things are cold. If something is cold and red then it is blue. If something is furry and cold then it is round. Blue, cold things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1238_Q18", "context": "Charlie is green. Charlie is kind. Charlie is nice. Charlie is round. Charlie is white. Dave is white. Erin is kind. Erin is round. Fiona is nice. Fiona is young. If Dave is green and Dave is round then Dave is nice. All nice things are kind. All round, white things are young. All young things are green. Big things are round. If something is white then it is round. Green, young things are white. If something is big and kind then it is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-658_Q6", "context": "The cat visits the rabbit. The cow is nice. The rabbit eats the cow. The rabbit likes the cow. The rabbit likes the squirrel. The squirrel is big. The squirrel does not visit the cat. If something is big and not young then it does not visit the cat. If something is nice and big then it likes the squirrel. If something visits the cat and the cat visits the cow then it likes the squirrel. If something eats the cat then it is nice. If the cat is nice then the cat is not red. If something likes the cat then the cat likes the squirrel. If something likes the squirrel then it likes the cat. If the cow likes the rabbit then the cow eats the squirrel. If something likes the squirrel then it eats the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not like the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-734_Q2", "context": "Bob is not big. Bob is green. Bob is smart. Dave is green. Fiona is big. Fiona is not smart. Gary is big. If something is blue then it is rough. If something is smart then it is red. Green things are blue. Rough things are smart. If something is green and not blue then it is big. Red things are not big. If something is rough and big then it is kind. If something is smart and not blue then it is kind. If something is blue then it is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-501_Q16", "context": "Bob is not round. Charlie is big. Gary is big. Gary is kind. Gary is red. Gary is not round. Harry is big. Kind, big things are white. If something is quiet then it is white. If something is young and red then it is kind. All white things are not round. Quiet, young things are big. All young things are red. If Bob is young and Bob is red then Bob is quiet. White, red things are quiet. All big things are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-125_Q15", "context": "The bear chases the dog. The bear is rough. The bear needs the dog. The cow is rough. The cow needs the squirrel. The dog is round. The dog needs the bear. The dog needs the cow. The squirrel chases the cow. The squirrel is nice. The squirrel is red. The squirrel likes the dog. The squirrel needs the bear. The squirrel needs the dog. If the squirrel is rough then the squirrel is nice. If something likes the bear then the bear likes the dog. All rough things are round. If something is red then it chases the cow. If the dog chases the bear then the dog needs the bear. If something is rough then it needs the dog. If something needs the cow and it likes the bear then the cow chases the dog. If something is round and it likes the dog then it likes the bear. If something is round and it needs the squirrel then the squirrel is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not chase the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-366_Q13", "context": "The bald eagle chases the tiger. The bald eagle is red. The bald eagle is round. The bald eagle needs the lion. The bald eagle needs the tiger. The bear is red. The lion is red. The tiger is round. The tiger is not young. The tiger needs the bald eagle. If something chases the lion then it chases the bear. If something chases the tiger then the tiger chases the lion. If something needs the tiger then it needs the lion. If something is round then it does not visit the bear. If something chases the bear then the bear is round. If something is round then it needs the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not chase the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1045_Q5", "context": "Bob is nice. Charlie is not quiet. Charlie is rough. Erin is kind. Erin is quiet. Gary is quiet. Gary is rough. If something is smart then it is rough. Smart, rough things are kind. All kind, white things are not furry. Quiet things are smart. All nice things are smart. Rough, kind things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-64_Q11", "context": "The bald eagle needs the lion. The bald eagle needs the squirrel. The bear is round. The bear needs the lion. The bear needs the squirrel. The lion eats the bear. The lion is blue. The lion likes the bald eagle. The squirrel eats the bald eagle. The squirrel is blue. The squirrel likes the bear. If the bald eagle likes the squirrel and the squirrel likes the bear then the bald eagle is round. If someone needs the lion and they eat the squirrel then they like the squirrel. If someone is round and they like the bald eagle then the bald eagle is blue. If someone eats the squirrel then they eat the lion. If someone is blue and they eat the squirrel then they eat the bear. If someone eats the lion then the lion is round. If someone needs the bear and they eat the squirrel then the squirrel likes the bear. If someone needs the squirrel then they eat the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle eats the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1222_Q5", "context": "Bob is kind. Charlie is kind. Charlie is nice. Charlie is young. Fiona is nice. Fiona is quiet. Harry is kind. Big, nice things are kind. All nice things are big. Young things are cold. Kind things are blue. All blue things are young. All blue things are kind. If Bob is big and Bob is kind then Bob is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-501_Q7", "context": "Bob is not round. Charlie is big. Gary is big. Gary is kind. Gary is red. Gary is not round. Harry is big. Kind, big things are white. If something is quiet then it is white. If something is young and red then it is kind. All white things are not round. Quiet, young things are big. All young things are red. If Bob is young and Bob is red then Bob is quiet. White, red things are quiet. All big things are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1269_Q11", "context": "Dave is kind. Dave is white. Dave is young. Fiona is quiet. Fiona is rough. Fiona is smart. Fiona is white. Fiona is young. Gary is kind. Harry is kind. Harry is quiet. White things are big. If Harry is quiet then Harry is rough. All big things are smart. If something is young and kind then it is rough. All kind things are white. All quiet, rough things are young. All smart things are rough. If something is big and rough then it is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1057_Q10", "context": "Anne is big. Anne is not blue. Anne is kind. Anne is rough. Bob is white. Erin is kind. Harry is green. If Anne is white then Anne is young. Blue, white people are rough. If someone is young then they are rough. White people are big. All big people are green. If Harry is green and Harry is white then Harry is young. If Anne is not white then Anne is green. Green people are kind. Kind, green people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-778_Q12", "context": "Anne is big. Anne is quiet. Erin is not cold. Erin is green. Erin is not quiet. Fiona is red. Harry is big. If Anne is green then Anne is cold. If someone is red then they are nice. If someone is white and big then they are nice. All red, big people are nice. Quiet, big people are green. All red people are big. If Fiona is green then Fiona is quiet. All cold, green people are red. Nice people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-332_Q3", "context": "The bear chases the dog. The bear is cold. The bear likes the dog. The bear likes the rabbit. The dog chases the bear. The dog is big. The dog is round. The dog needs the rabbit. The rabbit chases the dog. The rabbit is green. The rabbit needs the squirrel. The squirrel chases the bear. The squirrel chases the rabbit. The squirrel is big. The squirrel likes the bear. The squirrel needs the rabbit. If something chases the dog and the dog needs the squirrel then the squirrel needs the dog. If something chases the bear and it is nice then it likes the squirrel. If something is cold then it needs the dog. If something is nice and it chases the dog then the dog likes the bear. If something is round then it needs the squirrel. All green, big things are round. If something needs the dog then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog needs the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-207_Q10", "context": "Anne is cold. Anne is furry. Bob is big. Bob is blue. Bob is kind. Bob is rough. Charlie is big. Charlie is furry. Erin is blue. Erin is cold. Erin is furry. All smart, rough people are furry. If someone is cold and smart then they are furry. If someone is kind and blue then they are smart. All smart, rough people are cold. If someone is smart and furry then they are rough. If someone is big then they are kind. All kind, big people are blue. All rough, cold people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-681_Q2", "context": "Charlie is blue. Charlie is not furry. Charlie is not green. Charlie is round. Dave is round. Erin is big. Erin is blue. Erin is furry. Erin is green. Fiona is quiet. If something is quiet then it is green. If something is round then it is big. If something is green then it is big. Quiet, big things are blue. If Erin is rough then Erin is round. All big, blue things are rough. Rough things are round. If Charlie is not big then Charlie is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-193_Q9", "context": "The bald eagle is not blue. The bald eagle is green. The bald eagle needs the cow. The bald eagle needs the dog. The bear eats the bald eagle. The bear eats the cow. The bear does not visit the cow. The cow eats the bear. The cow is cold. The cow is rough. The dog eats the bald eagle. The dog is cold. If something visits the bear then the bear is green. All green things are round. If something is green and not blue then it is round. If something is green then it does not visit the cow. If the bear is round and the bear eats the dog then the dog is round. If something is round and green then it visits the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-254_Q11", "context": "The bear is blue. The bear is red. The bear sees the cow. The bear sees the mouse. The cow chases the mouse. The cow eats the bear. The cow is big. The cow is blue. The cow sees the bear. The mouse chases the bear. The mouse chases the cow. The mouse is red. The mouse sees the squirrel. The squirrel chases the bear. The squirrel sees the cow. The squirrel sees the mouse. If something sees the cow and the cow eats the squirrel then the squirrel sees the bear. If something eats the bear then it chases the mouse. If something sees the mouse and it eats the bear then it sees the squirrel. If something sees the cow and it sees the squirrel then the cow sees the mouse. If something sees the squirrel and the squirrel is round then the squirrel sees the cow. If something eats the cow and it is round then the cow sees the squirrel. If something eats the mouse then it eats the bear. If something is blue and it sees the mouse then it eats the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow eats the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1194_Q16", "context": "Bob is big. Bob is cold. Bob is kind. Bob is smart. Dave is big. Dave is cold. Dave is green. Dave is kind. Dave is quiet. Dave is smart. Fiona is big. Fiona is rough. Harry is green. Harry is kind. All cold, big things are quiet. All kind, big things are green. Smart things are cold. Green, quiet things are smart. If something is rough and green then it is kind. All big things are smart. Quiet, smart things are kind. If Bob is smart and Bob is rough then Bob is kind. If Bob is kind then Bob is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-71_Q12", "context": "Charlie is kind. Charlie is quiet. Erin is kind. Erin is white. Fiona is quiet. Fiona is rough. Fiona is young. Gary is blue. Gary is kind. Gary is rough. Gary is young. If Gary is quiet and Gary is rough then Gary is white. Furry, rough things are white. All kind, quiet things are furry. Blue things are rough. White, furry things are kind. Blue things are furry. If something is white then it is young. If Erin is white then Erin is kind. All furry things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1200_Q8", "context": "Anne is big. Anne is blue. Anne is not furry. Erin is red. Gary is big. Gary is blue. Gary is furry. Harry is blue. Harry is furry. Harry is green. Harry is white. Furry things are young. If Harry is red and Harry is furry then Harry is not green. If something is big and red then it is furry. All red things are big. All furry things are big. All red, green things are white. If something is blue and not furry then it is not white. If Harry is red and Harry is white then Harry is young. If something is young then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-46_Q24", "context": "The bear likes the dog. The bear likes the tiger. The bear sees the rabbit. The dog is nice. The dog likes the tiger. The dog needs the tiger. The rabbit does not like the dog. The tiger is green. The tiger is not kind. The tiger is red. The tiger needs the rabbit. If someone needs the tiger then they like the rabbit. If someone sees the rabbit then the rabbit sees the bear. If someone likes the rabbit and the rabbit is rough then the rabbit does not like the tiger. If someone needs the bear and they are nice then they need the tiger. If someone needs the bear then the bear needs the tiger. If the tiger needs the rabbit then the tiger needs the bear. If someone is green and they need the rabbit then the rabbit likes the bear. If someone is red and they like the dog then they need the dog. If someone likes the rabbit then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-323_Q9", "context": "Bob is big. Bob is cold. Bob is kind. Bob is rough. Charlie is furry. Charlie is kind. Dave is white. Harry is big. Harry is blue. Harry is kind. Harry is rough. All big people are blue. Cold people are furry. White people are big. Kind people are cold. All kind people are rough. If Charlie is furry and Charlie is big then Charlie is white. If someone is blue then they are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-112_Q10", "context": "Anne is white. Charlie is white. Dave is cold. Dave is round. Dave is young. Fiona is cold. Fiona is round. Fiona is smart. Fiona is white. Fiona is young. If something is quiet and white then it is smart. If something is cold then it is round. If something is young and round then it is red. Smart, quiet things are cold. Smart things are young. Young, white things are smart. Young things are quiet. All white things are smart. Quiet things are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-110_Q18", "context": "The bald eagle is green. The bald eagle needs the dog. The bear chases the bald eagle. The bear is blue. The bear is kind. The bear is rough. The bear needs the bald eagle. The bear needs the dog. The bear visits the dog. The bear visits the tiger. The dog is big. The dog needs the bald eagle. The dog needs the tiger. The tiger needs the dog. Rough people are big. If someone chases the dog then they are rough. If someone is rough and they need the bear then the bear needs the tiger. If someone is kind then they need the bald eagle. If someone needs the bear and they need the bald eagle then the bear is green. If someone visits the tiger then the tiger is blue. Rough people are kind. If someone needs the bald eagle and they are rough then they chase the tiger. If someone needs the bald eagle then the bald eagle chases the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger chases the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-674_Q8", "context": "Charlie is rough. Dave is big. Dave is blue. Dave is green. Erin is quiet. Erin is young. Fiona is quiet. If Fiona is rough then Fiona is kind. If Erin is young then Erin is kind. If something is kind then it is blue. If Charlie is kind and Charlie is blue then Charlie is not young. If something is blue and rough then it is quiet. If something is green and not young then it is big. If something is blue and young then it is big. If Erin is big and Erin is blue then Erin is rough. Rough, blue things are not green.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-244_Q10", "context": "The bald eagle eats the cat. The bald eagle is nice. The cat is kind. The cat needs the tiger. The squirrel eats the bald eagle. The squirrel is kind. The squirrel visits the bald eagle. The tiger eats the cat. The tiger eats the squirrel. The tiger visits the cat. If something needs the bald eagle then the bald eagle is kind. If the squirrel eats the cat then the cat eats the tiger. If something eats the squirrel and it eats the tiger then it needs the cat. If something visits the squirrel and the squirrel is blue then the squirrel needs the tiger. If something is kind then it visits the tiger. If something is nice and kind then it visits the cat. If something is kind and it eats the tiger then the tiger eats the cat. If something visits the tiger then it needs the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not visit the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1261_Q8", "context": "Dave is cold. Dave is furry. Dave is green. Dave is smart. Erin is cold. Erin is furry. Erin is green. Erin is kind. Erin is quiet. Erin is smart. Fiona is kind. Fiona is quiet. Gary is cold. Gary is furry. Gary is green. Gary is smart. If Fiona is green then Fiona is furry. All smart, green things are furry. All smart, cold things are green. If something is quiet and kind then it is smart. All quiet things are smart. Smart, quiet things are cold. All cold, furry things are blue. If Gary is green and Gary is quiet then Gary is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-213_Q18", "context": "Anne is furry. Anne is kind. Anne is nice. Anne is smart. Erin is big. Erin is furry. Erin is rough. Fiona is blue. Gary is big. Gary is rough. If someone is rough and kind then they are blue. Kind, rough people are furry. If someone is blue then they are smart. Smart, nice people are rough. If someone is big then they are furry. Blue, big people are kind. All smart people are nice. If Erin is kind then Erin is nice. Nice, rough people are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-267_Q9", "context": "Anne is rough. Dave is not big. Dave is round. Fiona is big. Fiona is rough. Gary is cold. Gary is rough. Rough people are nice. Red people are cold. If someone is nice then they are rough. Big, round people are rough. All big, white people are round. If someone is nice then they are red. All cold people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-179_Q9", "context": "The cat is nice. The cat is round. The cat sees the tiger. The lion eats the rabbit. The lion eats the tiger. The lion is blue. The lion is round. The rabbit is blue. The rabbit is nice. The rabbit is round. The rabbit sees the cat. The rabbit sees the tiger. The tiger is nice. The tiger likes the rabbit. If someone likes the cat then the cat likes the lion. If someone eats the tiger then the tiger is round. If someone is blue then they eat the tiger. If someone eats the rabbit then the rabbit likes the lion. If someone eats the rabbit then they like the rabbit. If someone likes the lion then they like the cat. If someone sees the rabbit and the rabbit sees the tiger then they like the tiger. If someone likes the cat then they are young.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat likes the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-85_Q13", "context": "Dave is red. Dave is smart. Fiona is nice. Fiona is round. Gary is nice. Gary is not round. Gary is smart. Gary is white. Harry is nice. Harry is red. If something is round and quiet then it is white. All smart, round things are white. All quiet things are white. White things are blue. If Harry is round then Harry is quiet. Red things are round. If Harry is blue then Harry is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1127_Q15", "context": "Charlie is white. Dave is furry. Gary is furry. Gary is not round. Gary is smart. Gary is white. Harry is furry. Harry is kind. Harry is round. Harry is smart. Harry is white. All nice people are furry. If Charlie is smart then Charlie is round. If someone is kind and smart then they are blue. Round people are blue. If Charlie is white then Charlie is smart. If someone is kind then they are round. If someone is furry and not white then they are not round. All kind, round people are nice. All blue people are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-672_Q9", "context": "The bald eagle is nice. The bald eagle visits the bear. The bald eagle visits the lion. The bear chases the lion. The bear is red. The bear visits the lion. The bear visits the rabbit. The lion needs the rabbit. The rabbit is green. The rabbit is nice. The rabbit needs the lion. If someone is green then they visit the bald eagle. If someone is cold then they need the lion. If someone is red then they visit the bear. If someone is nice then they visit the bear. If someone needs the bald eagle and the bald eagle visits the lion then the bald eagle is green. If someone chases the rabbit then they are green. If the bear needs the lion then the bear is big. If someone visits the bald eagle then they need the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle visits the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-927_Q12", "context": "The cat eats the dog. The cat likes the squirrel. The cat does not visit the dog. The dog is cold. The dog does not like the cat. The dog visits the lion. The dog visits the squirrel. The lion eats the dog. The lion does not like the dog. The lion visits the cat. The squirrel eats the cat. The squirrel is cold. The squirrel is kind. The squirrel is rough. The squirrel likes the cat. The squirrel likes the dog. If something is cold then it eats the squirrel. If something eats the cat and it is nice then the cat eats the lion. If something likes the cat and it likes the lion then the lion is rough. If the squirrel eats the cat then the squirrel is not young. If something eats the squirrel then it is not young. If the cat eats the lion then the lion is young. If something eats the squirrel then it is nice. If something eats the lion and it does not visit the dog then it is nice. If something eats the lion then it is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not eat the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-18_Q5", "context": "The dog chases the rabbit. The dog likes the mouse. The dog likes the rabbit. The mouse is green. The mouse is round. The mouse likes the tiger. The mouse sees the dog. The rabbit chases the mouse. The rabbit is round. The rabbit likes the dog. The tiger chases the mouse. The tiger likes the rabbit. The tiger sees the dog. The tiger sees the rabbit. If someone sees the dog and the dog sees the mouse then the mouse is green. If someone likes the dog then they chase the dog. If someone is round and they see the tiger then the tiger likes the mouse. If the mouse sees the rabbit and the rabbit is green then the mouse chases the tiger. If someone likes the mouse then they like the dog. If someone chases the dog then they see the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog chases the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-238_Q8", "context": "The bald eagle eats the lion. The bald eagle eats the tiger. The bald eagle likes the rabbit. The lion is big. The lion is kind. The lion visits the bald eagle. The rabbit eats the tiger. The rabbit likes the bald eagle. The tiger eats the rabbit. The tiger is kind. The tiger is red. The tiger likes the lion. The tiger visits the bald eagle. The tiger visits the lion. If someone eats the rabbit and the rabbit visits the lion then the rabbit is blue. If someone eats the bald eagle and the bald eagle likes the lion then the lion is cold. If someone eats the rabbit and they eat the tiger then the rabbit visits the tiger. If the lion likes the rabbit and the rabbit eats the lion then the rabbit does not eat the tiger. If someone likes the bald eagle and the bald eagle is kind then they like the rabbit. If someone likes the rabbit then they like the tiger. If someone likes the tiger then they are kind. If someone visits the tiger then the tiger does not like the bald eagle. If someone is cold then they eat the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not like the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-25_Q7", "context": "Charlie is blue. Charlie is cold. Charlie is kind. Charlie is not round. Dave is big. Dave is blue. Dave is not cold. Dave is smart. Fiona is big. Fiona is round. Harry is not red. If something is round then it is cold. If something is red and big then it is smart. If something is big and cold then it is smart. If something is cold then it is smart. Round, smart things are kind. If something is round then it is big. If something is red and not round then it is big. All blue things are red. All kind, smart things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-274_Q7", "context": "Anne is smart. Charlie is cold. Charlie is green. Charlie is round. Fiona is blue. Fiona is green. Fiona is red. Fiona is smart. Harry is round. Harry is smart. All green people are cold. All white people are red. All round people are smart. Cold, round people are green. If Fiona is blue and Fiona is smart then Fiona is round. If someone is red and cold then they are blue. If Harry is round then Harry is white. If Anne is blue then Anne is round. Red people are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-753_Q2", "context": "The bald eagle chases the tiger. The bald eagle is young. The bald eagle visits the tiger. The cat is not big. The cat is green. The cat does not visit the bald eagle. The cow is not big. The cow is green. The cow is not rough. The tiger chases the bald eagle. The tiger chases the cow. The tiger does not visit the cow. If someone eats the cat then the cat is young. If someone is rough then they eat the cat. All young people are rough. If someone eats the cat and they are rough then they are green. If the tiger is blue and the tiger chases the bald eagle then the tiger eats the cow. If someone is big and not green then they chase the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-819_Q5", "context": "The bald eagle is round. The dog is young. The dog sees the lion. The lion is round. The lion is young. The lion likes the dog. The lion sees the bald eagle. The mouse is kind. The mouse is round. The mouse is young. The mouse likes the bald eagle. If something sees the lion then the lion chases the dog. If something likes the bald eagle and the bald eagle chases the mouse then the bald eagle is rough. If something is young and it likes the dog then the dog likes the bald eagle. If something sees the bald eagle then the bald eagle chases the lion. If something is cold and it likes the dog then it is round. If something is cold and it sees the bald eagle then the bald eagle sees the mouse. If something chases the lion and it is round then the lion sees the mouse. If something likes the lion and it is round then it chases the dog. If something sees the mouse then it is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion sees the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-335_Q24", "context": "The bald eagle eats the bear. The bald eagle is kind. The bald eagle is nice. The bear eats the rabbit. The rabbit does not eat the bald eagle. The rabbit eats the squirrel. The rabbit is big. The rabbit is not young. The rabbit likes the bald eagle. The squirrel eats the bear. The squirrel is young. The squirrel likes the rabbit. If someone eats the bald eagle and the bald eagle is nice then the bald eagle is big. If the bear eats the rabbit and the bear likes the bald eagle then the rabbit eats the bear. If the rabbit likes the bear then the bear chases the rabbit. Young people are kind. If someone chases the squirrel and they eat the rabbit then they are kind. If someone chases the bear then the bear chases the squirrel. If someone likes the squirrel then they like the bald eagle. If someone likes the rabbit then the rabbit chases the bear. If someone is kind and they eat the rabbit then the rabbit likes the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit chases the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-100_Q2", "context": "The bald eagle eats the cow. The bald eagle is not big. The cow eats the bald eagle. The cow is big. The cow is not round. The squirrel chases the cow. The squirrel eats the bald eagle. The squirrel does not eat the tiger. The squirrel is not big. The squirrel visits the tiger. The tiger chases the bald eagle. The tiger is nice. If something visits the cow then the cow does not chase the bald eagle. If the tiger chases the bald eagle then the tiger is round. If something is young then it visits the squirrel. If something visits the tiger then it does not visit the cow. If something is rough then it eats the cow. Round things are young. If something visits the squirrel then the squirrel is rough. If something eats the squirrel then the squirrel chases the tiger. If something eats the bald eagle and the bald eagle visits the cow then the bald eagle is not round.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-703_Q6", "context": "The bear chases the tiger. The bear needs the tiger. The dog chases the mouse. The dog needs the bear. The dog needs the tiger. The dog visits the bear. The dog visits the mouse. The mouse is cold. The mouse is nice. The mouse is red. The tiger chases the mouse. The tiger is big. The tiger is nice. The tiger visits the mouse. If someone is nice and they visit the tiger then the tiger is red. If someone needs the dog then they chase the bear. If someone needs the tiger and they chase the dog then the tiger is young. If someone chases the bear then they chase the dog. If someone is big then they are red. If someone needs the mouse then they chase the dog. If someone is red then they need the mouse. If someone needs the bear then the bear is big. If someone visits the bear then the bear chases the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not chase the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-927_Q16", "context": "The cat eats the dog. The cat likes the squirrel. The cat does not visit the dog. The dog is cold. The dog does not like the cat. The dog visits the lion. The dog visits the squirrel. The lion eats the dog. The lion does not like the dog. The lion visits the cat. The squirrel eats the cat. The squirrel is cold. The squirrel is kind. The squirrel is rough. The squirrel likes the cat. The squirrel likes the dog. If something is cold then it eats the squirrel. If something eats the cat and it is nice then the cat eats the lion. If something likes the cat and it likes the lion then the lion is rough. If the squirrel eats the cat then the squirrel is not young. If something eats the squirrel then it is not young. If the cat eats the lion then the lion is young. If something eats the squirrel then it is nice. If something eats the lion and it does not visit the dog then it is nice. If something eats the lion then it is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion eats the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-6_Q9", "context": "The cat does not eat the tiger. The cat likes the tiger. The dog does not need the squirrel. The squirrel eats the tiger. The squirrel does not need the cat. The tiger eats the cat. The tiger likes the dog. If someone likes the squirrel then they do not eat the cat. If someone needs the dog then the dog eats the tiger. If someone eats the cat then they need the dog. If someone needs the dog then they are nice. If someone eats the dog and the dog does not like the cat then they are not big. If someone likes the dog and the dog eats the tiger then the dog eats the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog needs the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-540_Q19", "context": "Anne is blue. Anne is kind. Bob is not blue. Bob is round. Erin is cold. Erin is nice. Fiona is not nice. Round, kind things are not red. Blue, nice things are young. If something is red then it is young. All young, cold things are round. Blue things are cold. Cold things are nice. If Bob is red and Bob is blue then Bob is young. If Erin is red then Erin is blue. If Anne is not kind then Anne is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-86_Q11", "context": "The bear chases the rabbit. The bear eats the lion. The bear eats the mouse. The bear eats the rabbit. The bear visits the lion. The bear visits the mouse. The lion chases the bear. The lion chases the mouse. The lion eats the mouse. The lion visits the bear. The lion visits the mouse. The mouse is young. The mouse visits the bear. The rabbit chases the bear. The rabbit chases the mouse. The rabbit eats the mouse. If someone is green then they chase the bear. If the rabbit visits the lion and the lion eats the mouse then the mouse eats the bear. If someone visits the lion then they visit the bear. If someone chases the mouse then the mouse is kind. If the rabbit visits the mouse then the mouse eats the bear. Round, blue people are green. If someone visits the bear then they are blue. All blue people are round. If someone chases the mouse then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear chases the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-119_Q11", "context": "The cow is young. The cow sees the tiger. The lion likes the cow. The lion needs the cow. The lion sees the cow. The lion sees the rabbit. The rabbit is blue. The rabbit likes the cow. The tiger is green. The tiger likes the lion. The tiger needs the cow. All green things are blue. If something is big then it is not green. If something likes the cow then it is green. If something likes the tiger then the tiger sees the rabbit. If something is big and it needs the tiger then the tiger needs the lion. If the cow is cold and the cow is young then the cow is green. If something is blue and it sees the cow then the cow is cold. If something likes the cow then the cow sees the rabbit. If something sees the lion and the lion does not see the tiger then it is big.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-550_Q3", "context": "Anne is blue. Anne is cold. Bob is furry. Gary is furry. Gary is round. Harry is blue. Harry is round. Rough, round things are green. If something is blue and furry then it is rough. Rough, round things are kind. If Harry is kind and Harry is round then Harry is rough. If something is rough then it is round. All cold things are blue. Blue, rough things are furry. Round, cold things are blue. If something is furry then it is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-501_Q19", "context": "The bear eats the rabbit. The bear is red. The bear is round. The bear sees the rabbit. The cat sees the tiger. The rabbit sees the bear. The tiger eats the bear. The tiger eats the cat. The tiger is green. The tiger is red. The tiger is rough. If something is green and it needs the cat then the cat needs the tiger. If something sees the rabbit then it needs the cat. If something sees the cat then it needs the cat. If the cat needs the bear and the cat needs the rabbit then the cat does not see the bear. If something is rough and green then it sees the rabbit. If something is big then it sees the cat. If something needs the tiger then the tiger is big. If something sees the tiger and it does not need the tiger then it eats the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not need the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-343_Q20", "context": "The bald eagle is rough. The bald eagle is young. The bald eagle visits the cat. The bald eagle visits the lion. The cat eats the bald eagle. The cat is blue. The cat is red. The cat visits the bald eagle. The cat visits the cow. The cow is red. The lion eats the cow. If something eats the cow then it visits the lion. If something visits the cow then it likes the cat. If something likes the cat then it is blue. If something visits the lion and it eats the cat then the lion is blue. If something is blue then it eats the cat. If something likes the lion and it is round then it visits the cat. If the cat likes the lion then the lion likes the bald eagle. If something visits the lion and the lion is blue then it likes the lion. If something visits the cow and it eats the cat then it visits the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow eats the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-332_Q23", "context": "The bear chases the dog. The bear is cold. The bear likes the dog. The bear likes the rabbit. The dog chases the bear. The dog is big. The dog is round. The dog needs the rabbit. The rabbit chases the dog. The rabbit is green. The rabbit needs the squirrel. The squirrel chases the bear. The squirrel chases the rabbit. The squirrel is big. The squirrel likes the bear. The squirrel needs the rabbit. If something chases the dog and the dog needs the squirrel then the squirrel needs the dog. If something chases the bear and it is nice then it likes the squirrel. If something is cold then it needs the dog. If something is nice and it chases the dog then the dog likes the bear. If something is round then it needs the squirrel. All green, big things are round. If something needs the dog then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not like the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-829_Q4", "context": "Charlie is kind. Charlie is red. Dave is furry. Dave is kind. Dave is rough. Gary is rough. Harry is quiet. If someone is young and red then they are quiet. If someone is red and not kind then they are quiet. If Harry is red and Harry is kind then Harry is furry. Red people are young. Rough, kind people are young. If someone is quiet and red then they are rough. Red, blue people are furry. If Harry is blue then Harry is quiet. Rough, red people are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-849_Q3", "context": "Bob is big. Bob is quiet. Bob is young. Dave is red. Erin is furry. Erin is quiet. Erin is rough. Erin is round. Harry is quiet. Harry is round. If Dave is quiet and Dave is young then Dave is big. Rough, round things are big. Rough, quiet things are furry. If something is rough and round then it is furry. If something is red then it is young. If something is rough then it is round. If something is young then it is rough. If something is big then it is quiet. Round, quiet things are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-724_Q4", "context": "Bob is green. Bob is round. Erin is big. Erin is blue. Erin is green. Erin is nice. Erin is smart. Fiona is big. Gary is green. Gary is round. If someone is cold then they are blue. Nice people are cold. If someone is round then they are cold. Big people are nice. If someone is cold and nice then they are big. If someone is blue then they are round. Green, blue people are cold. All round, nice people are green. Nice people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-467_Q11", "context": "The bald eagle is round. The bald eagle likes the mouse. The bald eagle likes the rabbit. The cow eats the mouse. The cow likes the bald eagle. The mouse eats the rabbit. The mouse is green. The mouse needs the rabbit. The rabbit eats the bald eagle. The rabbit eats the cow. The rabbit eats the mouse. The rabbit is big. The rabbit likes the cow. The rabbit needs the cow. If someone likes the rabbit then they eat the cow. If someone is big then they like the rabbit. If someone is kind and they need the cow then the cow is rough. If someone is green and they eat the bald eagle then the bald eagle is kind. Kind people are big. All round people are kind. If the bald eagle needs the cow then the cow is kind. If someone is round then they need the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow eats the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-758_Q14", "context": "Charlie is big. Charlie is cold. Charlie is kind. Charlie is red. Charlie is rough. Charlie is round. Charlie is not young. Dave is kind. Dave is rough. Fiona is cold. Fiona is young. Gary is red. If someone is kind and big then they are round. If someone is cold and kind then they are round. Red people are kind. If Gary is cold then Gary is big. If Gary is round and Gary is not young then Gary is not rough. If someone is cold then they are red. All round people are rough. If someone is round and rough then they are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-438_Q7", "context": "Anne is blue. Anne is rough. Erin is blue. Erin is cold. Gary is round. Harry is red. Harry is rough. Big, rough things are cold. If Gary is blue and Gary is quiet then Gary is red. All red things are cold. Round, big things are blue. If something is round and blue then it is quiet. If something is round then it is big. Red things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-36_Q6", "context": "The bald eagle visits the squirrel. The bear is big. The bear likes the cat. The cat eats the bear. The cat likes the bald eagle. The squirrel likes the bear. The squirrel visits the bald eagle. If someone likes the bald eagle then the bald eagle visits the bear. If someone is blue and they eat the bald eagle then they are red. If someone visits the bear and they like the bear then the bear is blue. If someone is round then they are rough. If someone visits the bear and they visit the squirrel then the squirrel visits the bear. If someone visits the cat then the cat is big. If someone is blue then they are round. If someone is big and they eat the cat then the cat is big.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not visit the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-860_Q10", "context": "Anne is not nice. Anne is rough. Charlie is cold. Charlie is rough. Charlie is white. Fiona is cold. Harry is rough. If Charlie is rough then Charlie is quiet. Rough people are blue. All cold people are quiet. All blue, white people are quiet. All cold people are young. All blue people are white. Quiet, rough people are cold. If Anne is white then Anne is not nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-272_Q13", "context": "Bob is cold. Erin is red. Fiona is not blue. Fiona is quiet. Harry is blue. Harry is quiet. Harry is red. If someone is kind and cold then they are not quiet. All blue people are quiet. All red, cold people are green. Green people are smart. If someone is red then they are cold. Smart people are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-667_Q21", "context": "The bald eagle eats the bear. The bald eagle is blue. The bald eagle is kind. The bald eagle is rough. The bald eagle likes the lion. The bear is big. The bear likes the lion. The dog chases the lion. The dog eats the bald eagle. The dog likes the lion. The lion chases the bear. The lion is kind. The lion is rough. The lion likes the bear. If the bald eagle likes the dog then the dog likes the bald eagle. If something eats the dog and the dog likes the lion then the lion eats the bear. If something likes the lion then the lion likes the bear. If something eats the bear then it is round. If something is round then it eats the dog. If the bald eagle likes the lion then the bald eagle chases the bear. If something chases the bear then it is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not chase the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-218_Q1", "context": "The bald eagle chases the rabbit. The bald eagle eats the rabbit. The bald eagle eats the tiger. The bald eagle is red. The bald eagle needs the tiger. The bear chases the bald eagle. The bear is red. The bear needs the tiger. The rabbit chases the bald eagle. The rabbit chases the tiger. The rabbit eats the bald eagle. The rabbit is red. The tiger eats the rabbit. The tiger is round. If something chases the rabbit and the rabbit is kind then the rabbit needs the bear. If something is rough then it is kind. If something eats the bald eagle and the bald eagle needs the rabbit then the rabbit is kind. If something chases the rabbit and the rabbit chases the tiger then it is rough. If something eats the rabbit then it is young. If something is kind then it needs the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit chases the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-422_Q4", "context": "The bald eagle eats the squirrel. The bald eagle likes the squirrel. The bald eagle visits the cat. The cat likes the bald eagle. The cat likes the cow. The cat likes the squirrel. The cat visits the bald eagle. The cow is red. The cow likes the bald eagle. The cow does not visit the bald eagle. The squirrel eats the bald eagle. The squirrel is kind. The squirrel is rough. The squirrel does not like the cat. If someone eats the bald eagle then they are big. If someone visits the cow then they eat the bald eagle. If the squirrel visits the cat and the squirrel eats the cow then the cow visits the squirrel. If someone is kind then they visit the cow. If the cow eats the squirrel then the cow does not visit the bald eagle. If someone is kind then they like the cow. If someone eats the bald eagle and the bald eagle eats the squirrel then the bald eagle is kind. If someone likes the squirrel and they are big then the squirrel visits the cat. If someone likes the cat then the cat does not visit the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1076_Q6", "context": "Anne is cold. Anne is furry. Anne is kind. Anne is quiet. Anne is red. Charlie is kind. Charlie is red. Erin is big. Erin is blue. Erin is furry. Erin is kind. Erin is quiet. Erin is not red. Fiona is not cold. All red things are cold. If Charlie is cold then Charlie is blue. If something is cold and not kind then it is blue. All blue, red things are not quiet. If something is kind and not cold then it is not quiet. If something is kind and not quiet then it is furry. Furry things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1366_Q9", "context": "Anne is quiet. Anne is young. Dave is blue. Dave is round. Dave is white. Dave is young. Fiona is rough. Fiona is round. Gary is blue. Gary is white. If Dave is rough and Dave is white then Dave is blue. Young people are round. White people are quiet. All quiet people are nice. All rough, young people are blue. If Fiona is round then Fiona is white. All nice people are young. Quiet people are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-31_Q21", "context": "The bald eagle is blue. The bald eagle does not like the tiger. The bald eagle visits the cat. The bald eagle visits the tiger. The cat likes the bald eagle. The cat does not like the tiger. The dog is round. The dog likes the bald eagle. The dog visits the tiger. The tiger is young. The tiger visits the dog. If something needs the cat then the cat is blue. If something likes the cat then it needs the cat. If something needs the bald eagle then it is not rough. If something likes the cat and it does not like the bald eagle then the bald eagle is not rough. If something is blue then it likes the cat. If the tiger visits the cat then the cat does not need the bald eagle. If the bald eagle is not rough and the bald eagle does not need the cat then the cat is not rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not visit the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-859_Q22", "context": "Anne is not furry. Charlie is kind. Charlie is red. Dave is big. Dave is furry. Fiona is cold. Fiona is not furry. Fiona is kind. Fiona is nice. Fiona is red. Fiona is smart. If something is furry and cold then it is nice. Furry, smart things are nice. All smart, kind things are nice. If Charlie is red and Charlie is furry then Charlie is smart. Cold things are red. If something is nice then it is cold. Big things are smart. Cold, red things are kind. If Charlie is not furry then Charlie is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-34_Q6", "context": "The bear is rough. The bear is round. The bear visits the dog. The dog eats the mouse. The dog visits the bear. The lion needs the mouse. The lion visits the dog. The mouse eats the dog. The mouse eats the lion. The mouse is cold. The mouse visits the lion. If something eats the dog and the dog needs the bear then the bear needs the dog. If something visits the dog then it is young. If the bear eats the mouse and the mouse needs the bear then the bear visits the dog. If something is rough and it visits the dog then it needs the dog. If something eats the bear then it is rough. If something needs the lion then the lion eats the bear. If something eats the mouse then the mouse needs the lion. If the lion is young and the lion needs the dog then the lion visits the bear. If something eats the lion and it eats the mouse then the mouse needs the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not eat the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-227_Q10", "context": "Anne is blue. Anne is white. Charlie is big. Charlie is red. Charlie is round. Charlie is white. Charlie is young. Erin is nice. Erin is young. Harry is big. Harry is young. If something is red and blue then it is nice. All young things are big. All white, young things are nice. If something is nice and round then it is young. All nice, white things are round. Blue, big things are white. If something is blue then it is red. All big, young things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-619_Q12", "context": "Anne is kind. Bob is red. Charlie is kind. Charlie is rough. Charlie is round. Charlie is young. Erin is young. All kind people are young. If someone is nice and rough then they are red. If someone is smart then they are rough. If Anne is kind and Anne is nice then Anne is smart. Young people are nice. If someone is red and nice then they are rough. All red, nice people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-374_Q6", "context": "Bob is kind. Bob is not rough. Charlie is rough. Fiona is cold. Harry is not kind. Harry is rough. Harry is not young. If Charlie is green and Charlie is quiet then Charlie is not cold. Round, young things are green. All cold things are round. If something is round and green then it is quiet. If Fiona is rough then Fiona is young. If something is cold and round then it is rough. If something is green then it is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-933_Q6", "context": "The bear chases the dog. The bear chases the rabbit. The bear likes the dog. The bear likes the rabbit. The bear sees the squirrel. The dog is red. The dog likes the squirrel. The rabbit chases the bear. The rabbit is round. The rabbit is young. The rabbit likes the dog. The rabbit likes the squirrel. The rabbit sees the bear. The squirrel chases the bear. The squirrel is round. The squirrel likes the bear. Big people are green. If someone is green and they see the bear then they chase the squirrel. If someone chases the squirrel then the squirrel likes the rabbit. If someone chases the rabbit then they are big. If the rabbit likes the dog then the rabbit is red. If the rabbit is round and the rabbit is red then the rabbit is big. If someone sees the rabbit then they like the rabbit. Young people are round. If someone chases the bear then they see the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-391_Q10", "context": "Bob is red. Bob is rough. Bob is not smart. Charlie is round. Charlie is smart. Dave is not red. Gary is smart. All blue people are quiet. If someone is round then they are quiet. Quiet people are not blue. If someone is smart then they are round. If someone is smart and not blue then they are not red. If someone is red and not smart then they are rough. All blue, smart people are rough. Round, young people are not rough. If someone is smart and not red then they are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-839_Q1", "context": "The bald eagle chases the cat. The bald eagle is red. The bald eagle does not see the cat. The bear does not chase the cat. The bear sees the cat. The bear does not visit the mouse. The cat chases the bald eagle. The cat is red. The cat is not rough. The cat is round. The cat is young. The mouse is not red. The mouse is young. The mouse visits the bear. If the cat sees the bear then the bear is red. If someone sees the bear then they are blue. Blue people are young. If someone is blue then they are young. If someone is red then they see the bear. If someone chases the bald eagle and the bald eagle does not see the bear then they see the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear sees the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-171_Q22", "context": "The cow is green. The cow sees the dog. The cow sees the squirrel. The dog likes the squirrel. The dog sees the squirrel. The rabbit is rough. The rabbit likes the dog. The rabbit sees the squirrel. The squirrel is big. The squirrel likes the cow. The squirrel likes the rabbit. If someone likes the squirrel then the squirrel is rough. If someone chases the cow and the cow is big then the cow is green. If the rabbit is green then the rabbit sees the cow. If someone chases the rabbit then they like the dog. If someone is rough then they chase the rabbit. If someone likes the squirrel and the squirrel chases the rabbit then they are rough. If someone likes the dog and they are big then the dog likes the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow likes the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-776_Q11", "context": "The cat is big. The cat likes the tiger. The lion likes the mouse. The mouse is rough. The mouse needs the cat. The mouse needs the lion. The mouse visits the cat. The tiger is blue. The tiger visits the cat. The tiger visits the lion. If something is blue then it likes the mouse. If something is green and rough then it likes the lion. If something needs the tiger and the tiger is nice then it is rough. If something visits the cat then it is nice. If something needs the tiger then the tiger is green. If something needs the cat then the cat needs the tiger. If something is green and it likes the mouse then it needs the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger likes the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-300_Q19", "context": "The bear eats the rabbit. The bear likes the rabbit. The bear likes the squirrel. The bear does not see the rabbit. The bear sees the tiger. The rabbit likes the bear. The rabbit sees the squirrel. The squirrel is big. The squirrel does not see the rabbit. The tiger is kind. The tiger is young. If something sees the rabbit then the rabbit does not like the bear. If something is kind then it sees the bear. If something sees the squirrel then it is not rough. If the squirrel eats the rabbit and the squirrel does not see the tiger then the tiger does not see the rabbit. If something sees the bear and the bear is kind then it eats the tiger. If something eats the tiger then it is young. If something sees the bear and the bear sees the tiger then the bear is kind. If the squirrel is blue and the squirrel likes the tiger then the squirrel is not kind. If the bear eats the rabbit then the rabbit does not eat the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not eat the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-289_Q11", "context": "Bob is big. Bob is blue. Bob is green. Bob is quiet. Bob is round. Dave is big. Dave is blue. Dave is green. Dave is quiet. Dave is round. Dave is smart. Fiona is big. Fiona is blue. Fiona is round. Harry is green. Harry is kind. All smart things are green. Green things are blue. If something is blue then it is smart. Quiet things are round. Smart, green things are blue. If something is green then it is kind. If something is green and big then it is quiet. Smart things are big. If Harry is quiet then Harry is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-569_Q20", "context": "The cat is blue. The cat likes the tiger. The cat sees the rabbit. The cat sees the tiger. The cat does not visit the tiger. The dog is not blue. The dog is cold. The dog likes the cat. The dog visits the tiger. The rabbit likes the cat. The rabbit does not see the cat. The tiger is not red. The tiger visits the cat. The tiger visits the rabbit. If something is cold then it visits the dog. If something sees the cat and it visits the cat then the cat visits the tiger. Young things are cold. If something sees the cat then the cat is young. If the cat is nice and the cat does not like the rabbit then the cat does not visit the dog. If something is cold then it sees the cat. If something is blue and it visits the dog then the dog sees the rabbit. If the rabbit likes the dog and the dog is blue then the dog visits the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit likes the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-488_Q18", "context": "The cat visits the rabbit. The cat visits the tiger. The cow is green. The cow is nice. The cow is rough. The cow needs the rabbit. The rabbit is rough. The tiger is green. The tiger is nice. The tiger is round. The tiger visits the cow. If someone visits the rabbit then the rabbit needs the tiger. If someone visits the cat then they need the rabbit. If someone is nice then they chase the rabbit. If someone is kind then they need the rabbit. If someone is round and they chase the rabbit then the rabbit is green. If someone visits the rabbit and the rabbit is green then they are kind. If someone needs the rabbit then they are round. If someone is rough then they need the cow. If someone visits the rabbit and the rabbit visits the cat then the rabbit chases the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger needs the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-591_Q13", "context": "The cat eats the tiger. The cat is green. The rabbit eats the squirrel. The rabbit is cold. The rabbit needs the cat. The rabbit needs the tiger. The squirrel eats the tiger. The squirrel is green. The squirrel needs the cat. The tiger eats the cat. The tiger is cold. The tiger needs the rabbit. If someone sees the cat and the cat needs the tiger then the tiger eats the cat. If someone eats the squirrel and they are red then the squirrel is cold. If someone sees the rabbit then they are round. If someone is cold then they see the tiger. If someone needs the squirrel and they see the cat then the cat eats the rabbit. If someone sees the rabbit and the rabbit sees the cat then the cat sees the tiger. If someone sees the tiger then they are red. If the cat is cold then the cat is green. If someone is green and cold then they see the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-983_Q17", "context": "The bald eagle does not eat the lion. The lion eats the mouse. The mouse does not chase the lion. The mouse eats the bald eagle. The mouse visits the lion. The squirrel chases the bald eagle. The squirrel chases the mouse. The squirrel eats the lion. The squirrel eats the mouse. The squirrel is not green. The squirrel is round. The squirrel visits the mouse. If someone is young and green then they eat the mouse. If someone is green then they eat the mouse. If the bald eagle visits the mouse then the mouse is green. If someone chases the squirrel and the squirrel eats the lion then the squirrel chases the mouse. If someone eats the mouse then they visit the mouse. If someone eats the mouse and they are kind then they eat the squirrel. If someone chases the bald eagle then the bald eagle is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-900_Q5", "context": "The bear is not green. The bear is young. The bear sees the tiger. The dog needs the mouse. The mouse is big. The mouse needs the bear. The mouse needs the dog. The mouse needs the tiger. The tiger is not big. The tiger is not young. The tiger needs the dog. The tiger sees the mouse. If someone needs the dog then they see the mouse. If the tiger needs the dog then the dog is big. If someone eats the dog then they eat the tiger. If someone is rough and they need the mouse then they eat the tiger. If someone sees the mouse then they do not eat the dog. If someone is big then they eat the bear. If someone eats the bear then they need the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not eat the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-431_Q1", "context": "Anne is furry. Anne is quiet. Erin is blue. Erin is furry. Erin is quiet. Gary is big. Gary is blue. Gary is furry. Gary is nice. Gary is quiet. Gary is round. Harry is red. Big, red things are furry. If something is big and blue then it is nice. All quiet things are furry. All furry things are round. Big, furry things are blue. All nice things are quiet. Red things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-704_Q13", "context": "The bald eagle chases the bear. The bald eagle is blue. The bald eagle is not cold. The bald eagle is green. The bear chases the squirrel. The bear likes the bald eagle. The bear likes the mouse. The mouse is blue. The mouse is young. The squirrel is rough. If the bald eagle chases the mouse then the mouse eats the bald eagle. If something chases the bald eagle and it is blue then the bald eagle chases the mouse. If something eats the bald eagle and it is young then it is green. If something likes the squirrel then it chases the bald eagle. If something is young then it likes the squirrel. If something likes the bear then it does not eat the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-289_Q19", "context": "The bear is cold. The bear is young. The bear likes the mouse. The lion is cold. The lion is nice. The lion visits the mouse. The mouse chases the bear. The mouse chases the tiger. The mouse likes the tiger. The mouse visits the bear. The tiger is cold. The tiger visits the mouse. If someone likes the tiger and they like the bear then the bear chases the tiger. If the tiger chases the bear then the tiger is nice. If someone chases the lion then they visit the tiger. If the bear chases the mouse then the bear is cold. If someone visits the mouse then they like the bear. If someone chases the bear then they are cold. If someone is round and cold then they like the mouse. If someone chases the tiger then they visit the mouse. If someone chases the mouse then the mouse likes the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-701_Q5", "context": "Anne is big. Anne is rough. Anne is round. Anne is smart. Anne is white. Charlie is rough. Charlie is smart. Dave is big. Dave is not rough. Dave is white. Fiona is smart. All young, green people are big. All rough people are round. All young people are green. If Dave is smart and Dave is round then Dave is not white. If someone is big then they are white. If someone is round and not smart then they are not rough. If someone is round and rough then they are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-445_Q8", "context": "The bald eagle is nice. The mouse chases the rabbit. The mouse eats the squirrel. The mouse needs the rabbit. The rabbit chases the bald eagle. The rabbit is nice. The rabbit needs the squirrel. The squirrel chases the bald eagle. The squirrel eats the bald eagle. The squirrel eats the mouse. The squirrel needs the mouse. If something eats the bald eagle then it chases the mouse. If something eats the squirrel then the squirrel eats the bald eagle. If something chases the mouse then it eats the rabbit. If the squirrel eats the rabbit then the rabbit eats the bald eagle. If something is cold then it needs the bald eagle. If something is cold then it eats the mouse. If the bald eagle needs the mouse then the bald eagle is cold. If something eats the squirrel and the squirrel needs the mouse then it is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not eat the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-1025_Q3", "context": "The bald eagle is green. The bald eagle is not rough. The dog is rough. The mouse is rough. The mouse is not round. The mouse sees the rabbit. The rabbit is not green. The rabbit is kind. The rabbit needs the mouse. The rabbit sees the bald eagle. If something needs the mouse then the mouse sees the rabbit. If the rabbit needs the dog and the rabbit sees the bald eagle then the rabbit sees the dog. If something is rough and it needs the dog then the dog is round. If the bald eagle is not rough then the bald eagle sees the dog. If something needs the rabbit then the rabbit chases the dog. If something needs the rabbit and the rabbit chases the dog then the rabbit is rough. If the bald eagle chases the rabbit and the bald eagle is not big then the bald eagle chases the mouse. If something sees the dog then it needs the rabbit. If something is kind and it chases the dog then it needs the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle sees the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-787_Q23", "context": "The cow eats the dog. The cow is not cold. The dog is rough. The squirrel does not chase the dog. The squirrel eats the dog. The squirrel is cold. The squirrel is rough. The squirrel sees the dog. The tiger chases the cow. The tiger is red. If something sees the tiger then the tiger chases the squirrel. If something chases the tiger then it is cold. If something is green then it sees the tiger. If the tiger sees the dog and the dog sees the cow then the dog sees the tiger. If something sees the tiger and it does not see the squirrel then the squirrel eats the dog. If something is green and it sees the tiger then the tiger sees the dog. If the tiger is red then the tiger is not cold. If something sees the dog then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not see the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-93_Q8", "context": "Anne is young. Bob is furry. Bob is nice. Charlie is kind. Charlie is white. Harry is blue. Harry is furry. If Harry is kind and Harry is nice then Harry is white. If something is round and furry then it is white. If something is white then it is nice. If something is young then it is nice. All nice things are young. All blue things are round. Young, furry things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-241_Q12", "context": "Bob is furry. Charlie is kind. Charlie is nice. Dave is quiet. Dave is rough. Erin is furry. Erin is nice. If something is quiet and blue then it is furry. If Dave is rough and Dave is quiet then Dave is blue. All big things are nice. Nice, kind things are rough. If something is furry and rough then it is big. Big, nice things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-809_Q1", "context": "Anne is kind. Anne is white. Bob is green. Bob is quiet. Bob is smart. Fiona is green. Fiona is kind. Harry is furry. Harry is quiet. Harry is smart. Kind things are quiet. Quiet, green things are smart. If something is furry then it is smart. All smart things are white. If something is furry then it is quiet. Furry things are green. Big, quiet things are furry. All quiet, white things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-86_Q15", "context": "The bear chases the rabbit. The bear eats the lion. The bear eats the mouse. The bear eats the rabbit. The bear visits the lion. The bear visits the mouse. The lion chases the bear. The lion chases the mouse. The lion eats the mouse. The lion visits the bear. The lion visits the mouse. The mouse is young. The mouse visits the bear. The rabbit chases the bear. The rabbit chases the mouse. The rabbit eats the mouse. If someone is green then they chase the bear. If the rabbit visits the lion and the lion eats the mouse then the mouse eats the bear. If someone visits the lion then they visit the bear. If someone chases the mouse then the mouse is kind. If the rabbit visits the mouse then the mouse eats the bear. Round, blue people are green. If someone visits the bear then they are blue. All blue people are round. If someone chases the mouse then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not visit the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-21_Q14", "context": "Bob is rough. Bob is round. Bob is young. Dave is quiet. Dave is white. Erin is green. Erin is quiet. Erin is rough. Erin is round. Erin is white. Harry is blue. Harry is quiet. Harry is round. Harry is young. If Harry is green and Harry is quiet then Harry is young. Green things are quiet. Rough things are white. All round, rough things are white. If something is round then it is young. Blue things are round. If something is white then it is rough. Green things are blue. White, rough things are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-851_Q6", "context": "Anne is red. Anne is round. Bob is nice. Bob is smart. Bob is white. Dave is blue. Dave is nice. Dave is red. Dave is round. Dave is smart. Erin is round. Furry things are red. If Anne is white and Anne is blue then Anne is red. If something is smart and white then it is furry. White things are smart. All blue things are nice. If Bob is smart then Bob is white. Red things are blue. If Erin is round and Erin is smart then Erin is blue. All nice things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-893_Q2", "context": "Bob is cold. Erin is kind. Erin is young. Fiona is kind. Fiona is red. Fiona is rough. Fiona is white. Harry is not cold. Harry is white. Harry is not young. If something is kind and cold then it is red. Rough things are red. If something is young then it is white. All rough, red things are young. Furry, rough things are cold. If Fiona is rough then Fiona is cold. All furry things are rough. If something is cold then it is furry. If Fiona is red then Fiona is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-500_Q7", "context": "The bear chases the lion. The bear eats the cow. The bear is big. The bear is round. The bear sees the lion. The cat sees the cow. The cow eats the cat. The lion chases the cat. The lion eats the bear. The lion is nice. If something is nice then it eats the bear. If something sees the bear then the bear chases the cow. If something eats the bear then it sees the cow. If something eats the lion and the lion chases the cat then the lion is big. If something chases the cat then it sees the bear. If something chases the cow then the cow eats the lion. If something is big and it sees the cow then it eats the cow. If something is cold and it eats the cow then the cow chases the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow eats the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1351_Q1", "context": "Anne is green. Anne is young. Bob is furry. Bob is green. Bob is round. Bob is white. Bob is young. Dave is furry. Erin is cold. Erin is furry. Erin is green. Erin is young. All young, green things are furry. If something is furry then it is big. If Dave is cold then Dave is young. Big, young things are cold. Big, white things are young. All cold things are round. White things are green. All cold things are big. All round things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-736_Q13", "context": "The bear chases the cow. The bear is rough. The cow chases the bear. The cow chases the dog. The cow visits the lion. The dog visits the cow. The lion does not chase the dog. The lion is cold. The lion is red. The lion does not need the cow. The lion visits the bear. The lion visits the cow. If something is red then it needs the dog. If something needs the dog and it is red then it visits the dog. If something needs the dog then the dog is red. If something chases the lion and the lion visits the bear then the bear is green. If something visits the dog then the dog needs the cow. If something needs the cow then the cow is red. If something needs the dog then the dog is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not need the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-722_Q1", "context": "Anne is furry. Anne is kind. Anne is quiet. Anne is rough. Anne is round. Anne is smart. Bob is kind. Bob is quiet. Bob is red. Bob is rough. Dave is red. Dave is round. Gary is kind. Gary is rough. If Anne is rough and Anne is round then Anne is red. If Bob is round and Bob is red then Bob is kind. All kind, rough people are round. All quiet people are furry. Furry, kind people are red. Red people are furry. If someone is kind and quiet then they are smart. All smart people are quiet. All rough, round people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1103_Q3", "context": "Charlie is furry. Fiona is big. Fiona is smart. Gary is red. Harry is big. Harry is furry. Harry is green. Red, smart things are rough. If something is smart then it is green. If something is red then it is smart. Big things are smart. Furry, green things are not quiet. All rough, big things are furry. If Charlie is red then Charlie is green. If something is green and rough then it is big. If Gary is not furry then Gary is not quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-274_Q2", "context": "Anne is smart. Charlie is cold. Charlie is green. Charlie is round. Fiona is blue. Fiona is green. Fiona is red. Fiona is smart. Harry is round. Harry is smart. All green people are cold. All white people are red. All round people are smart. Cold, round people are green. If Fiona is blue and Fiona is smart then Fiona is round. If someone is red and cold then they are blue. If Harry is round then Harry is white. If Anne is blue then Anne is round. Red people are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-941_Q11", "context": "The bear likes the lion. The bear sees the lion. The dog is green. The lion is cold. The lion sees the bear. The rabbit is nice. The rabbit needs the lion. If the bear needs the dog then the dog likes the lion. If someone sees the bear and they are green then the bear needs the dog. If someone likes the lion then they see the dog. If someone is round and nice then they do not need the lion. If someone sees the rabbit and they like the bear then they do not like the lion. If someone sees the dog then the dog likes the rabbit. If someone sees the bear and the bear is cold then the bear sees the dog. If someone sees the dog then they see the rabbit. If someone sees the dog then the dog sees the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog sees the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1035_Q8", "context": "Anne is big. Anne is cold. Anne is not green. Anne is rough. Anne is young. Charlie is big. Charlie is cold. Charlie is not furry. Charlie is young. Erin is big. Erin is cold. Gary is young. If Gary is rough then Gary is furry. All blue people are rough. If Gary is young then Gary is big. Big people are cold. If someone is blue and furry then they are not green. If someone is cold then they are blue. All cold people are young. If Charlie is rough and Charlie is green then Charlie is not big.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-265_Q8", "context": "Anne is big. Anne is young. Charlie is big. Charlie is green. Gary is green. Gary is red. Gary is young. Harry is big. Harry is green. Harry is red. Harry is round. If someone is kind and round then they are red. Big, red people are young. If someone is young then they are round. If Charlie is green then Charlie is kind. If someone is red and green then they are kind. All kind people are rough. If someone is kind and rough then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-606_Q11", "context": "The bear eats the squirrel. The bear likes the cow. The cow eats the bear. The cow does not eat the squirrel. The cow is big. The cow visits the bear. The cow visits the dog. The cow does not visit the squirrel. The dog likes the cow. The dog visits the squirrel. The squirrel eats the cow. The squirrel is young. If something is young and it visits the bear then the bear eats the cow. If something eats the squirrel and the squirrel is rough then it is nice. If something visits the squirrel and it eats the cow then the squirrel eats the bear. If something is rough then it likes the dog. If something eats the squirrel then it is rough. If something likes the dog then the dog eats the squirrel. If something eats the bear and the bear visits the squirrel then it is red.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog likes the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-838_Q11", "context": "The bear is rough. The cat is nice. The cat needs the bear. The cat sees the bear. The cat visits the dog. The cat visits the mouse. The dog needs the mouse. The dog visits the cat. The dog visits the mouse. The mouse is green. The mouse is rough. If someone is nice then they see the cat. If someone needs the mouse and the mouse visits the cat then the cat needs the dog. If someone sees the dog then they are nice. If the dog visits the cat and the dog is rough then the dog needs the mouse. If someone sees the cat and they are green then they visit the cat. If someone is rough then they need the dog. If someone visits the mouse then the mouse sees the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat needs the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-115_Q7", "context": "The cat is kind. The cat needs the lion. The cat sees the lion. The cat sees the tiger. The dog is rough. The dog needs the cat. The lion needs the cat. The lion sees the tiger. The lion visits the tiger. The tiger needs the dog. The tiger visits the dog. If someone is blue and they need the lion then the lion visits the cat. If someone visits the cat and the cat needs the tiger then they need the dog. Kind, round people are green. If someone visits the dog then the dog sees the cat. If someone needs the cat and the cat is green then they are kind. Kind people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-736_Q20", "context": "Anne is green. Anne is quiet. Bob is round. Dave is blue. Dave is nice. Dave is not quiet. Erin is green. Green things are blue. If Erin is green and Erin is round then Erin is quiet. If something is quiet and blue then it is young. If something is young and furry then it is round. If something is blue then it is furry. If Erin is furry then Erin is round. Green things are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-48_Q10", "context": "Bob is furry. Bob is rough. Bob is round. Dave is round. Erin is big. Erin is cold. Erin is smart. Fiona is cold. Fiona is quiet. Fiona is smart. If something is round then it is cold. Quiet things are rough. All rough, furry things are big. If Dave is furry then Dave is rough. If Erin is quiet and Erin is not cold then Erin is furry. All rough things are furry. Cold things are quiet. All big, round things are quiet. If something is cold and not quiet then it is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-211_Q22", "context": "The bald eagle does not chase the squirrel. The bald eagle likes the cat. The cat likes the rabbit. The cat sees the bald eagle. The cat does not see the squirrel. The rabbit is kind. The rabbit is red. The squirrel chases the cat. The squirrel is cold. The squirrel is young. The squirrel sees the bald eagle. If something chases the squirrel and it does not see the rabbit then it does not chase the cat. If the squirrel sees the rabbit and the squirrel does not like the cat then the cat does not chase the rabbit. If something chases the bald eagle then the bald eagle is cold. If something is cold then it likes the squirrel. If something likes the squirrel and it is cold then it sees the cat. If something chases the bald eagle then it chases the rabbit. If the squirrel is cold then the squirrel sees the cat. If something likes the squirrel and it chases the cat then the cat chases the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit sees the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-1032_Q17", "context": "The bald eagle chases the bear. The bald eagle is young. The bald eagle likes the bear. The bear chases the bald eagle. The bear chases the cow. The bear eats the cow. The bear is kind. The bear is red. The bear likes the bald eagle. The cow chases the bear. The cow likes the bald eagle. The squirrel is nice. If someone chases the squirrel then they like the cow. If someone is young then they chase the squirrel. If someone is red and green then they like the bear. If someone is young and they chase the bald eagle then they are green. If someone likes the cow and they like the bear then the bear chases the squirrel. If someone chases the squirrel and they like the cow then they like the squirrel. If someone chases the squirrel and the squirrel is red then the squirrel likes the bald eagle. If someone is kind and they chase the squirrel then they eat the cow. If the bear is green and the bear eats the bald eagle then the bear likes the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not eat the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-1013_Q20", "context": "The cow is kind. The cow sees the dog. The cow does not see the squirrel. The dog chases the cow. The dog chases the mouse. The dog is cold. The mouse does not chase the squirrel. The mouse is kind. The mouse sees the cow. The mouse sees the squirrel. The squirrel is cold. The squirrel is kind. The squirrel needs the cow. The squirrel needs the mouse. The squirrel sees the cow. The squirrel sees the mouse. If something needs the mouse then the mouse does not chase the cow. If something needs the squirrel then it chases the dog. If something is nice then it is round. If something sees the mouse and it chases the squirrel then the mouse is red. If something is red then it needs the mouse. If something sees the dog and it is nice then the dog chases the squirrel. If something needs the cow then the cow is nice. If something chases the squirrel then it sees the mouse. If something is kind and it does not need the squirrel then the squirrel needs the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse chases the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-208_Q10", "context": "The bald eagle is big. The bald eagle is cold. The cat is kind. The cat needs the tiger. The lion sees the cat. The tiger is kind. The tiger is red. If something needs the cat then the cat sees the lion. If something is kind and green then it needs the tiger. If something needs the cat then the cat likes the bald eagle. If something is green then it likes the cat. If something is red then it likes the lion. If something is kind then it sees the bald eagle. If something is red and it sees the bald eagle then it needs the cat. If the cat is cold and the cat likes the bald eagle then the cat is green. If something needs the tiger then it is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-733_Q2", "context": "Anne is quiet. Anne is smart. Anne is young. Bob is furry. Bob is green. Charlie is nice. Fiona is furry. Fiona is green. Fiona is rough. Fiona is smart. Fiona is young. If something is green and rough then it is smart. If something is nice and not green then it is young. If something is smart and rough then it is young. If something is nice then it is not furry. If Anne is green and Anne is young then Anne is not nice. All young, green things are not nice. All green things are rough. If Bob is not nice then Bob is not quiet. If Anne is young and Anne is not nice then Anne is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-683_Q7", "context": "Dave is red. Fiona is red. Gary is red. Gary is white. Harry is green. Harry is red. Harry is round. All red things are green. If something is white and green then it is kind. Red things are rough. If something is rough then it is white. If something is kind then it is round. All green, white things are rough. If something is green then it is red. Furry things are rough. All round, red things are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-526_Q2", "context": "The bald eagle eats the dog. The bald eagle likes the bear. The bald eagle sees the bear. The bear eats the dog. The bear is rough. The bear is round. The bear likes the rabbit. The dog is not big. The dog likes the rabbit. The rabbit sees the dog. If someone eats the bear and the bear is rough then they eat the rabbit. If the rabbit does not like the dog then the dog is not round. If the dog sees the rabbit and the dog likes the rabbit then the dog eats the bald eagle. If someone is rough and they see the bald eagle then the bald eagle eats the bear. If someone eats the rabbit then they see the bald eagle. If someone eats the bald eagle and they are not kind then the bald eagle does not like the dog. If someone sees the bear then the bear eats the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not like the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-841_Q14", "context": "Anne is big. Anne is nice. Anne is rough. Anne is round. Anne is young. Bob is nice. Charlie is big. Charlie is kind. Erin is big. Erin is rough. All kind people are rough. If Charlie is young then Charlie is rough. If someone is big then they are young. Rough, blue people are big. All nice people are blue. Rough people are kind. All blue, nice people are kind. All round people are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-230_Q11", "context": "Anne is cold. Anne is kind. Anne is smart. Erin is not cold. Erin is green. Erin is kind. Erin is red. Erin is smart. Erin is not white. Fiona is not cold. Fiona is not kind. Harry is white. All red people are kind. All red, cold people are kind. If someone is cold and not smart then they are kind. All rough, cold people are green. If someone is cold and green then they are red. If someone is white then they are cold. If someone is cold then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-778_Q3", "context": "Anne is big. Anne is quiet. Erin is not cold. Erin is green. Erin is not quiet. Fiona is red. Harry is big. If Anne is green then Anne is cold. If someone is red then they are nice. If someone is white and big then they are nice. All red, big people are nice. Quiet, big people are green. All red people are big. If Fiona is green then Fiona is quiet. All cold, green people are red. Nice people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-283_Q19", "context": "The cat is cold. The cat sees the rabbit. The cow is kind. The cow sees the mouse. The mouse is kind. The mouse is rough. The rabbit eats the cat. The rabbit is cold. The rabbit is not kind. The rabbit does not see the cat. If someone needs the cow then the cow needs the rabbit. If someone is cold then they need the cow. If someone is red then they do not eat the mouse. If someone is green then they do not need the cat. If someone is rough and they need the rabbit then the rabbit is not green. If someone is kind and they eat the mouse then the mouse needs the rabbit. If someone eats the cow then the cow is red. If someone needs the rabbit then the rabbit eats the cow. If someone is kind and they need the cow then they see the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not see the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-966_Q13", "context": "Anne is cold. Dave is blue. Erin is blue. Erin is cold. Erin is green. Erin is nice. Erin is white. Harry is furry. Harry is green. Harry is young. Furry, nice people are green. Cold people are nice. Blue, young people are white. If someone is cold then they are young. White people are cold. All blue people are cold. If someone is white and blue then they are green. Green people are furry. All white people are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-165_Q2", "context": "Bob is quiet. Bob is rough. Charlie is kind. Charlie is quiet. Fiona is quiet. Fiona is rough. Harry is red. If Fiona is red then Fiona is round. If someone is kind and big then they are not rough. All kind, round people are nice. All red people are nice. Round, nice people are big. If Fiona is quiet and Fiona is nice then Fiona is not red. If someone is red and nice then they are round. Big people are kind. If Charlie is not kind then Charlie is not rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-540_Q3", "context": "The bear needs the cow. The cat does not need the bear. The cat sees the bear. The cat sees the cow. The cow sees the bear. The lion is kind. The lion needs the cow. If someone eats the cow then they see the cow. If someone is nice and they need the cat then the cat is green. If someone sees the cat and they eat the lion then the lion is nice. If someone is kind then they eat the lion. If someone eats the bear then they eat the cow. If someone sees the cow then they need the cat. If someone eats the lion then they eat the bear. If someone eats the lion and they are nice then they do not need the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion eats the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1223_Q11", "context": "Charlie is furry. Dave is furry. Dave is green. Dave is round. Erin is quiet. Erin is rough. Erin is round. Erin is smart. Harry is green. Harry is smart. Furry, quiet things are kind. Rough things are kind. All quiet, furry things are round. If Erin is quiet then Erin is kind. If something is furry and round then it is rough. If something is green then it is smart. If something is furry then it is smart. If something is smart and rough then it is green. All smart things are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-570_Q17", "context": "The bald eagle is kind. The bald eagle is not nice. The bald eagle sees the rabbit. The bald eagle visits the cow. The bald eagle visits the lion. The cow does not chase the bald eagle. The cow is nice. The lion chases the rabbit. The rabbit chases the cow. The rabbit is kind. If someone sees the lion then the lion chases the cow. If someone sees the cow then the cow chases the bald eagle. If someone visits the rabbit then they chase the lion. If someone sees the lion then they visit the rabbit. If someone chases the cow then they see the lion. If someone sees the rabbit then the rabbit chases the bald eagle. If someone is round and blue then they do not chase the bald eagle. If someone is kind then they see the rabbit. If someone is kind and they do not chase the cow then the cow visits the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not see the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-297_Q18", "context": "Charlie is quiet. Dave is quiet. Dave is white. Dave is young. Erin is red. Erin is young. Fiona is big. Fiona is red. Fiona is rough. Fiona is young. All red people are quiet. If Erin is blue and Erin is white then Erin is rough. If someone is red and white then they are blue. If someone is white and red then they are quiet. All quiet people are big. All big people are white. If Fiona is quiet and Fiona is white then Fiona is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-464_Q19", "context": "The lion is young. The lion needs the tiger. The mouse eats the squirrel. The squirrel is kind. The squirrel needs the tiger. The tiger is red. The tiger needs the squirrel. If someone eats the squirrel then they chase the lion. If someone chases the mouse and they are red then they are big. If someone needs the lion then the lion chases the squirrel. If someone needs the squirrel then they need the tiger. If someone chases the tiger then the tiger eats the squirrel. If someone chases the lion then they chase the tiger. If someone needs the mouse and the mouse needs the squirrel then the mouse chases the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not eat the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-604_Q13", "context": "Charlie is kind. Charlie is rough. Dave is kind. Dave is quiet. Dave is rough. Dave is young. Fiona is cold. Fiona is kind. Fiona is red. Gary is quiet. If something is rough then it is young. Quiet things are cold. If something is young and rough then it is quiet. If something is cold then it is smart. Quiet, cold things are kind. Smart things are red. Kind, quiet things are young. If Fiona is red and Fiona is young then Fiona is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-994_Q4", "context": "Anne is big. Dave is big. Dave is blue. Erin is green. Erin is smart. Fiona is red. Fiona is young. Blue things are smart. All red, nice things are blue. All big things are blue. If something is big and nice then it is green. Red things are green. If Fiona is green then Fiona is nice. If something is green and big then it is nice. If Fiona is young then Fiona is green. If something is smart then it is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-242_Q10", "context": "Charlie is cold. Dave is big. Dave is cold. Dave is furry. Dave is kind. Erin is kind. Gary is big. Gary is green. Gary is kind. Gary is quiet. If Charlie is cold and Charlie is quiet then Charlie is kind. If someone is big and furry then they are green. If someone is cold then they are furry. If someone is green and kind then they are furry. If Charlie is nice and Charlie is furry then Charlie is quiet. All kind, big people are quiet. If someone is cold and furry then they are big. Cold, big people are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-37_Q5", "context": "Bob is big. Erin is rough. Erin is young. Fiona is big. Fiona is blue. Fiona is nice. Fiona is red. Fiona is rough. Fiona is white. Fiona is young. Gary is rough. Gary is white. Nice people are blue. If someone is rough then they are red. White, rough people are young. All blue people are white. If Gary is young then Gary is white. If someone is white and young then they are big. If someone is red then they are big. Red people are big. If someone is big then they are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1361_Q3", "context": "Anne is cold. Anne is furry. Anne is quiet. Anne is smart. Anne is young. Erin is quiet. Erin is smart. Gary is cold. Gary is furry. Gary is quiet. Gary is smart. Harry is cold. If someone is blue and big then they are smart. Blue people are furry. If someone is young then they are big. Quiet, cold people are blue. All furry, blue people are quiet. If Erin is furry then Erin is young. Blue, big people are quiet. If someone is smart and quiet then they are cold. Blue people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-239_Q3", "context": "Charlie is round. Dave is furry. Dave is white. Fiona is furry. Fiona is rough. Fiona is smart. Harry is smart. If someone is white and smart then they are red. If someone is round then they are furry. All smart, red people are rough. If someone is round and furry then they are big. Round, big people are white. If someone is round and white then they are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-951_Q4", "context": "Anne is white. Dave is big. Dave is green. Dave is smart. Erin is cold. Erin is green. Harry is white. All cold people are white. If someone is smart and kind then they are round. If someone is big then they are kind. White people are big. All kind people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-881_Q8", "context": "The bear eats the tiger. The bear is big. The bear likes the cat. The bear likes the tiger. The cat is green. The cat likes the bear. The cat visits the tiger. The squirrel is rough. The squirrel likes the tiger. The tiger does not visit the cat. If the tiger is rough and the tiger visits the squirrel then the tiger is green. If the bear eats the cat and the bear is young then the bear does not like the cat. If someone eats the bear then they eat the cat. If someone visits the tiger then they visit the squirrel. If someone eats the cat and the cat visits the tiger then the cat is big. If the tiger likes the bear and the tiger likes the squirrel then the bear likes the tiger. If someone likes the bear then they are green. If someone is big then they eat the bear. If the cat does not eat the bear then the bear eats the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-944_Q6", "context": "Charlie is quiet. Erin is cold. Erin is rough. Gary is not quiet. Gary is young. Harry is not big. Harry is not cold. All young things are cold. If something is rough then it is young. If Erin is big then Erin is young. If Charlie is kind then Charlie is quiet. If something is quiet then it is rough. Kind things are big. Nice things are quiet. If something is cold and rough then it is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-338_Q10", "context": "Charlie is round. Dave is cold. Dave is nice. Dave is round. Dave is white. Gary is nice. Gary is round. Gary is white. Harry is kind. Harry is not nice. Harry is smart. If something is nice then it is white. If Charlie is round then Charlie is red. Smart things are kind. All round, cold things are kind. If something is round and red then it is nice. If something is red and white then it is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-450_Q24", "context": "The bear chases the dog. The bear eats the dog. The bear eats the squirrel. The bear is young. The dog is young. The lion is green. The lion visits the dog. The squirrel eats the dog. The squirrel eats the lion. The squirrel visits the bear. If something is young then it chases the dog. If something is round and it chases the dog then it eats the lion. If something chases the dog then it chases the squirrel. If the lion chases the squirrel then the lion eats the bear. All cold things are round. If something eats the dog and the dog eats the lion then it chases the lion. If something chases the squirrel then it is cold. If something chases the squirrel then the squirrel chases the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear chases the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-233_Q8", "context": "Anne is nice. Anne is red. Anne is smart. Dave is blue. Dave is kind. Erin is blue. Erin is green. Erin is kind. Erin is quiet. Erin is red. Erin is smart. Harry is kind. Harry is nice. Harry is red. If something is quiet then it is green. If Dave is blue and Dave is green then Dave is smart. Red things are quiet. All blue things are nice. If Erin is red and Erin is green then Erin is nice. If Dave is nice then Dave is red. If Erin is blue and Erin is quiet then Erin is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1123_Q9", "context": "Anne is furry. Anne is quiet. Dave is cold. Dave is not green. Dave is red. Dave is round. Fiona is furry. Fiona is green. Gary is cold. Gary is round. All smart things are red. If something is cold then it is red. If something is quiet then it is green. Red, furry things are cold. All quiet things are round. If something is smart then it is furry. Furry things are smart. If Fiona is green and Fiona is cold then Fiona is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1128_Q10", "context": "Anne is big. Anne is blue. Anne is cold. Anne is rough. Dave is rough. Fiona is big. Fiona is blue. Fiona is cold. Fiona is furry. Fiona is quiet. Fiona is rough. Harry is cold. Harry is furry. Harry is white. If Harry is cold then Harry is rough. Rough things are blue. If something is big and furry then it is cold. If Harry is big and Harry is furry then Harry is rough. If Anne is furry and Anne is blue then Anne is rough. If Dave is blue then Dave is furry. If something is furry then it is big. Blue, cold things are quiet. If something is quiet and furry then it is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-833_Q7", "context": "The bear chases the squirrel. The bear visits the mouse. The bear visits the rabbit. The mouse chases the rabbit. The rabbit chases the squirrel. The rabbit is blue. The rabbit is young. The rabbit visits the squirrel. The squirrel eats the mouse. The squirrel eats the rabbit. If something is green then it is cold. If something visits the mouse then the mouse visits the bear. If something is cold then it chases the mouse. If something chases the mouse then the mouse is cold. If something is young then it is green. If something is cold and it chases the bear then it is blue. If something is green and it eats the mouse then it chases the mouse. If something is young then it visits the bear. If something eats the bear then the bear is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit chases the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-247_Q12", "context": "Bob is cold. Bob is furry. Bob is kind. Bob is nice. Bob is white. Bob is young. Charlie is furry. Charlie is nice. Gary is kind. Gary is nice. Harry is blue. If something is white then it is kind. If something is blue and kind then it is young. If something is white then it is nice. If something is kind and white then it is blue. Young things are nice. Blue, kind things are furry. If something is cold then it is white. All cold, furry things are white. Nice things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-550_Q9", "context": "The bald eagle is blue. The bald eagle is nice. The bald eagle is rough. The bald eagle likes the cat. The bald eagle needs the cow. The bald eagle visits the cow. The cat is blue. The cat likes the squirrel. The cow needs the bald eagle. The squirrel is kind. The squirrel is nice. The squirrel likes the bald eagle. If something visits the bald eagle then it likes the squirrel. If something likes the squirrel then the squirrel is nice. If something needs the squirrel and it visits the cow then the squirrel visits the bald eagle. If something likes the cat then it needs the squirrel. If something visits the bald eagle then the bald eagle is blue. If something is kind and it likes the squirrel then the squirrel likes the cat. If the bald eagle needs the squirrel and the squirrel is rough then the bald eagle is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel likes the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-762_Q6", "context": "Anne is big. Anne is rough. Dave is not kind. Erin is white. Harry is kind. Harry is not quiet. Harry is not rough. If Anne is white and Anne is kind then Anne is round. White, round things are rough. All kind, nice things are rough. Nice things are round. All white things are nice. If something is white and rough then it is kind. If Dave is rough and Dave is big then Dave is quiet. If something is rough and kind then it is big. If something is quiet and not round then it is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-535_Q6", "context": "The bear chases the mouse. The bear is blue. The bear is red. The dog chases the bear. The dog needs the mouse. The mouse is big. The mouse is blue. The mouse is round. The mouse needs the bear. The tiger is big. If something chases the bear then it sees the dog. If something sees the mouse and the mouse needs the tiger then it is red. If something sees the dog then it sees the mouse. If something sees the dog then it chases the bear. If something sees the mouse then the mouse chases the bear. If something needs the bear then it sees the tiger. If something needs the bear then it is cold. If the bear needs the mouse and the bear is cold then the bear sees the tiger. If something needs the tiger and it is big then the tiger is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not see the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-683_Q8", "context": "Dave is red. Fiona is red. Gary is red. Gary is white. Harry is green. Harry is red. Harry is round. All red things are green. If something is white and green then it is kind. Red things are rough. If something is rough then it is white. If something is kind then it is round. All green, white things are rough. If something is green then it is red. Furry things are rough. All round, red things are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-287_Q9", "context": "The cat chases the tiger. The cat is big. The cat likes the rabbit. The rabbit is nice. The squirrel likes the rabbit. The squirrel sees the cat. The squirrel sees the tiger. The tiger is nice. The tiger is rough. The tiger likes the cat. If someone likes the tiger then the tiger sees the cat. If someone chases the rabbit then they see the squirrel. If the tiger sees the cat then the cat chases the rabbit. If someone sees the rabbit then the rabbit is big. If someone chases the tiger then the tiger sees the rabbit. If someone is big and they like the cat then the cat chases the rabbit. If someone likes the cat then they are kind. If someone chases the rabbit then the rabbit likes the tiger. If someone is kind then they are big.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat sees the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-340_Q1", "context": "Bob is rough. Bob is not smart. Charlie is quiet. Charlie is red. Charlie is rough. Fiona is rough. Harry is smart. If Harry is furry then Harry is kind. Kind things are red. If Harry is furry and Harry is red then Harry is not white. If Bob is smart then Bob is quiet. If Bob is smart then Bob is not kind. If something is rough then it is furry. All smart things are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-871_Q6", "context": "Anne is quiet. Anne is white. Bob is big. Dave is furry. Dave is rough. Dave is white. Harry is nice. Harry is quiet. Harry is rough. Harry is smart. Furry people are rough. If Harry is furry and Harry is rough then Harry is nice. All rough people are white. If Anne is nice and Anne is furry then Anne is white. All furry, white people are nice. Nice people are quiet. All big people are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-903_Q3", "context": "The bald eagle likes the rabbit. The bald eagle needs the mouse. The bald eagle needs the rabbit. The bald eagle visits the dog. The dog is big. The dog is cold. The dog is green. The dog visits the mouse. The mouse visits the dog. The rabbit likes the dog. The rabbit likes the mouse. The rabbit needs the bald eagle. If the mouse likes the bald eagle then the mouse is green. If something needs the rabbit and the rabbit is nice then the rabbit needs the dog. If something likes the dog and it needs the dog then it likes the rabbit. If something visits the bald eagle then it likes the dog. If something likes the mouse and the mouse visits the rabbit then it is nice. If something is green then it needs the dog. If something likes the rabbit then it visits the mouse. If something likes the mouse then the mouse visits the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle visits the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-130_Q4", "context": "Bob is cold. Bob is red. Charlie is nice. Charlie is red. Dave is nice. Dave is rough. Harry is green. Harry is quiet. Harry is red. Harry is rough. If someone is cold and red then they are green. Green, nice people are red. All red, quiet people are blue. Rough, green people are quiet. If someone is green then they are rough. If Harry is red then Harry is cold. Blue people are quiet. Red people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-181_Q17", "context": "Anne is nice. Anne is not smart. Bob is furry. Bob is green. Dave is smart. Erin is big. Erin is nice. All young things are furry. Furry, big things are young. If Dave is blue then Dave is young. If something is smart then it is blue. Young, green things are nice. Furry, smart things are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-471_Q8", "context": "The bear eats the cow. The bear is blue. The bear visits the cow. The cow is big. The cow visits the lion. The lion eats the bear. The tiger visits the bear. If the tiger visits the bear and the tiger eats the bear then the bear chases the lion. If someone chases the cow then they are blue. If someone visits the cow then they chase the bear. If someone eats the bear and the bear is young then they are red. If someone chases the bear and the bear chases the tiger then the bear chases the lion. If someone eats the lion and the lion eats the tiger then they visit the tiger. If someone eats the cow and they chase the bear then they chase the tiger. If the bear is blue and the bear chases the lion then the lion chases the cow. If someone chases the cow and they eat the tiger then the tiger visits the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not chase the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-763_Q5", "context": "Bob is big. Bob is furry. Bob is quiet. Bob is rough. Charlie is big. Charlie is not green. Charlie is kind. Charlie is quiet. Charlie is not red. Erin is green. Harry is quiet. Harry is red. If something is furry and kind then it is quiet. Red things are furry. All furry things are kind. If something is red and rough then it is green. If Bob is furry then Bob is green. All furry, kind things are big. Quiet, red things are big. If Erin is big and Erin is red then Erin is not rough. If something is green then it is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1143_Q1", "context": "Anne is not white. Erin is white. Erin is young. Fiona is blue. Harry is blue. Harry is furry. Harry is nice. All quiet, nice people are white. If someone is cold then they are white. If someone is nice and not cold then they are quiet. Blue people are quiet. All white, cold people are quiet. All white, nice people are not young. If someone is blue and furry then they are nice. If someone is quiet then they are blue. All blue, quiet people are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-327_Q17", "context": "The bear eats the squirrel. The bear is young. The bear likes the rabbit. The cow is big. The cow is young. The cow needs the squirrel. The rabbit is rough. The rabbit is young. The rabbit likes the squirrel. The rabbit needs the cow. The rabbit needs the squirrel. The squirrel likes the bear. If something eats the cow then it is nice. If the rabbit is young and the rabbit eats the bear then the rabbit eats the squirrel. If something likes the squirrel and it is big then the squirrel needs the bear. If something eats the squirrel and the squirrel needs the cow then it needs the squirrel. If something likes the squirrel and the squirrel is blue then the squirrel eats the cow. If something is blue and it likes the squirrel then it eats the cow. If something is nice then it needs the cow. If something likes the bear then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-477_Q5", "context": "Bob is nice. Bob is red. Bob is rough. Bob is round. Charlie is red. Charlie is rough. Erin is nice. Erin is quiet. Erin is red. Erin is rough. Erin is round. Erin is smart. Gary is nice. Gary is red. All quiet, round things are rough. All quiet things are rough. If Gary is rough then Gary is blue. All smart, nice things are quiet. If Gary is rough and Gary is quiet then Gary is smart. If something is nice and blue then it is round. If something is smart then it is quiet. If something is nice then it is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1018_Q13", "context": "Bob is quiet. Bob is not rough. Bob is not round. Charlie is not kind. Charlie is smart. Erin is blue. Harry is rough. If Charlie is smart and Charlie is rough then Charlie is not kind. All kind people are round. All quiet, blue people are round. All kind people are smart. If someone is blue and kind then they are smart. If someone is round then they are kind. Blue people are white. If Erin is white then Erin is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-368_Q7", "context": "Dave is cold. Erin is blue. Erin is round. Erin is young. Fiona is blue. Fiona is round. Fiona is young. Harry is blue. Harry is not cold. Harry is young. If someone is blue and big then they are kind. All cold people are nice. All big people are blue. Cold, kind people are young. If someone is nice then they are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-512_Q16", "context": "The bear needs the dog. The dog does not chase the rabbit. The rabbit needs the bear. The rabbit visits the dog. The tiger is round. The tiger is young. The tiger needs the rabbit. If someone visits the bear then the bear chases the dog. If someone chases the dog then the dog is young. If someone needs the bear and the bear does not chase the rabbit then the rabbit needs the tiger. If someone chases the rabbit then they need the dog. If someone chases the tiger then the tiger needs the rabbit. If someone is young then they need the tiger. If the dog visits the bear then the bear chases the tiger. If someone is young then they visit the bear. If someone needs the dog then the dog is big.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear needs the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-731_Q11", "context": "Anne is red. Anne is round. Charlie is cold. Fiona is red. Fiona is white. Harry is not cold. Harry is white. Cold people are white. All white people are smart. If Anne is big and Anne is white then Anne is furry. If someone is smart then they are furry. If someone is cold and smart then they are furry. All furry, white people are big. If someone is big and white then they are not round. If Harry is not round then Harry is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-21_Q21", "context": "The cat does not need the cow. The cow chases the lion. The cow chases the mouse. The lion does not chase the cat. The lion does not chase the cow. The lion needs the cat. The mouse is big. If something needs the lion and the lion is young then the lion does not chase the cat. If something chases the lion and it is round then the lion is green. If something visits the cat then it needs the cat. If something needs the mouse then it is young. If something visits the cat and it does not chase the cow then it is young. All round, big things are rough. If something is big and it visits the mouse then it does not visit the lion. If something needs the cat then it needs the mouse. If something needs the mouse then the mouse visits the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not visit the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1323_Q2", "context": "Anne is big. Anne is blue. Anne is kind. Anne is red. Anne is round. Anne is white. Charlie is blue. Fiona is big. Fiona is blue. Fiona is kind. Fiona is red. Fiona is round. Fiona is white. Gary is big. Gary is quiet. Gary is white. All white things are kind. If something is blue then it is kind. All red, white things are round. Blue, big things are quiet. If something is round and blue then it is red. All red things are quiet. All quiet things are round. Round things are white. If something is kind then it is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-260_Q2", "context": "Bob is round. Bob is young. Charlie is nice. Charlie is quiet. Erin is big. Fiona is red. Fiona is young. If someone is quiet then they are nice. If someone is nice then they are kind. Big people are nice. Kind people are round. If someone is round then they are quiet. Quiet people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-546_Q6", "context": "Charlie is not cold. Charlie is quiet. Erin is furry. Erin is quiet. Gary is big. Gary is furry. Gary is quiet. Gary is rough. Harry is nice. Harry is quiet. If Erin is furry and Erin is cold then Erin is blue. If something is furry then it is cold. If something is quiet and not cold then it is blue. If something is blue and quiet then it is big. Big things are nice. If Harry is big and Harry is rough then Harry is quiet. If something is furry and nice then it is rough. If Gary is rough and Gary is big then Gary is not blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-378_Q8", "context": "The bald eagle is not cold. The bald eagle is young. The bald eagle does not need the dog. The bald eagle sees the cow. The bald eagle sees the dog. The cow chases the tiger. The cow is not young. The cow sees the tiger. The dog does not chase the cow. The dog chases the tiger. The dog is nice. The dog is young. The dog does not need the bald eagle. The dog needs the cow. The tiger is young. The tiger does not need the bald eagle. If something chases the dog then the dog sees the tiger. If something chases the dog then the dog needs the cow. If something chases the cow then it needs the bald eagle. If something needs the dog then it needs the bald eagle. If something is big then it chases the dog. If something is nice and it sees the cow then the cow is cold. If something sees the tiger then it is big. If something chases the tiger then it does not need the dog. If the tiger chases the cow then the tiger chases the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not see the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-348_Q3", "context": "Anne is white. Anne is young. Bob is young. Fiona is not cold. Fiona is not smart. Gary is not quiet. Gary is white. Quiet, green people are white. If someone is green and not quiet then they are cold. If someone is young then they are green. Quiet, cold people are green. All white people are young. All blue people are young. All cold people are blue. All blue people are not smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-316_Q11", "context": "Anne is big. Anne is red. Bob is not rough. Bob is white. Charlie is green. Charlie is red. Charlie is white. Charlie is young. Harry is not rough. Harry is white. Harry is young. If someone is rough then they are young. If someone is white and big then they are young. All big people are young. If someone is white then they are kind. If someone is green then they are kind. If someone is green then they are red. Rough, green people are not red. Kind people are big. All young people are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-559_Q1", "context": "The dog is green. The dog needs the tiger. The lion chases the rabbit. The lion needs the dog. The lion needs the tiger. The lion visits the dog. The rabbit does not chase the lion. The rabbit is green. The tiger is big. The tiger does not need the lion. The tiger visits the lion. If something is big and it needs the tiger then the tiger is young. If the rabbit needs the dog and the dog is young then the rabbit visits the dog. If something is green then it visits the tiger. If the tiger needs the dog then the tiger is green. If something visits the lion then the lion visits the dog. If something needs the tiger and it visits the dog then it is not big. If the dog does not chase the tiger and the dog is not red then the dog is young. If something visits the tiger then the tiger needs the dog. If something visits the tiger then it chases the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-790_Q11", "context": "Anne is blue. Anne is furry. Anne is rough. Anne is smart. Anne is white. Anne is young. Bob is blue. Bob is furry. Dave is furry. Erin is blue. Erin is furry. Erin is rough. All blue things are young. All smart, blue things are white. All round, furry things are rough. If something is furry and young then it is round. If Dave is round and Dave is furry then Dave is young. If something is young and rough then it is smart. Blue things are furry. All young, furry things are round. Smart things are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-595_Q18", "context": "Anne is quiet. Bob is cold. Bob is kind. Bob is rough. Dave is quiet. Dave is rough. Harry is cold. Cold, rough things are round. If Harry is quiet then Harry is kind. All quiet things are not young. If something is cold then it is rough. All quiet things are rough. All rough, round things are quiet. All kind things are cold. If something is kind then it is white. If Bob is quiet then Bob is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-460_Q4", "context": "Bob is cold. Bob is green. Bob is kind. Erin is cold. Erin is green. Erin is nice. Gary is cold. Gary is young. Harry is nice. Harry is red. If something is green and cold then it is quiet. All cold things are green. If Bob is quiet then Bob is green. If something is cold and nice then it is red. Kind things are nice. If Harry is kind then Harry is green. Quiet, cold things are kind. All cold things are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-81_Q21", "context": "The bald eagle is red. The bald eagle likes the rabbit. The cow eats the rabbit. The rabbit chases the squirrel. The squirrel chases the bald eagle. The squirrel eats the cow. The squirrel eats the rabbit. The squirrel is green. The squirrel is rough. The squirrel likes the cow. The squirrel likes the rabbit. If something likes the bald eagle then it is green. If something is rough then it eats the squirrel. If something is young and it likes the rabbit then the rabbit likes the cow. If something eats the bald eagle and it chases the cow then the cow likes the squirrel. If the cow eats the squirrel then the cow is red. If something likes the cow then it is red. If something eats the squirrel then it is young. If something is red then it eats the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not like the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1316_Q17", "context": "Anne is nice. Anne is rough. Bob is round. Bob is white. Bob is young. Erin is white. Harry is rough. Harry is round. Harry is white. Harry is young. All rough people are quiet. All rough, round people are furry. Young, white people are round. All nice, white people are young. If someone is quiet then they are white. Rough, white people are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-152_Q16", "context": "The cat is big. The cat needs the lion. The cat visits the lion. The cow is cold. The cow is kind. The cow is round. The cow needs the lion. The lion is cold. The lion likes the cat. The lion likes the cow. The lion needs the cat. The rabbit is cold. The rabbit likes the cat. The rabbit needs the cat. If something needs the cat and it needs the lion then it visits the cow. If something needs the cow then the cow visits the lion. If something visits the cat then it is kind. If something visits the cat then the cat likes the cow. If something is kind then it needs the cat. If something visits the lion and it visits the cow then the lion needs the cow. If something is round and it visits the cow then it needs the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit needs the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-438_Q20", "context": "Bob is green. Bob is quiet. Bob is white. Bob is not young. Charlie is quiet. Fiona is nice. Gary is green. Gary is quiet. Gary is round. Gary is smart. If someone is quiet then they are green. All green, smart people are nice. If someone is green then they are smart. If someone is young then they are smart. If someone is young then they are not white. If Charlie is round and Charlie is green then Charlie is young. If someone is smart and not green then they are round. If someone is smart and nice then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-90_Q12", "context": "Erin is white. Fiona is nice. Fiona is rough. Fiona is young. Gary is rough. Harry is rough. Harry is young. If someone is rough then they are white. If someone is nice then they are quiet. If Fiona is young and Fiona is white then Fiona is nice. If someone is white and rough then they are smart. All white people are round. If someone is smart then they are young. If someone is quiet then they are smart. If Gary is young and Gary is white then Gary is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-83_Q2", "context": "Anne is nice. Anne is young. Charlie is not round. Dave is kind. Dave is nice. Gary is round. Gary is not young. If someone is nice then they are round. Quiet, round people are nice. Round people are quiet. All big, quiet people are kind. Rough people are kind. Nice people are rough. Big, kind people are rough. Quiet, kind people are not big. If Dave is not quiet then Dave is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-53_Q12", "context": "Bob is cold. Bob is not nice. Erin is cold. Erin is not furry. Erin is nice. Erin is not rough. Erin is smart. Gary is green. Gary is kind. Harry is not green. Harry is rough. If someone is rough then they are smart. Rough, smart people are furry. If someone is smart and not rough then they are green. If Gary is kind then Gary is not smart. If Harry is cold and Harry is smart then Harry is kind. If someone is cold and not green then they are nice. If someone is furry and smart then they are nice. If Harry is cold then Harry is furry. If Harry is nice then Harry is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-567_Q10", "context": "The bald eagle is round. The bald eagle is young. The cat eats the squirrel. The cat is big. The cat is cold. The cat is young. The cat sees the bald eagle. The cat sees the squirrel. The cat visits the bald eagle. The cow is big. The cow visits the bald eagle. The cow visits the cat. The squirrel eats the cow. The squirrel is not big. If someone is blue and they see the cow then the cow sees the bald eagle. If someone visits the cat then the cat is cold. If someone sees the bald eagle then they are round. If the cow visits the cat and the cow is blue then the cat visits the cow. If someone is round then they see the cow. If the cat visits the bald eagle and the bald eagle eats the squirrel then the cat is blue. If someone eats the cat and they do not see the cat then the cat is not blue. If someone is young then they eat the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1074_Q17", "context": "Anne is cold. Anne is not rough. Bob is nice. Charlie is white. Charlie is young. Harry is not white. Harry is young. All nice people are cold. Rough people are nice. If Harry is young and Harry is not white then Harry is rough. If someone is cold and not young then they are not green. Green people are furry. Young, white people are furry. If Anne is nice and Anne is green then Anne is cold. If Harry is rough and Harry is cold then Harry is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1318_Q17", "context": "Anne is blue. Anne is rough. Anne is smart. Bob is blue. Bob is cold. Bob is nice. Gary is nice. Harry is big. Harry is blue. Harry is cold. Harry is nice. Harry is red. Harry is rough. Harry is smart. Cold, blue people are rough. All smart, nice people are blue. All nice, blue people are cold. If someone is nice then they are big. Red people are smart. All nice, red people are smart. All big, blue people are cold. If someone is big and nice then they are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-145_Q16", "context": "The cow chases the lion. The cow chases the tiger. The cow does not see the tiger. The lion chases the cow. The lion does not see the cow. The squirrel is kind. The tiger does not chase the squirrel. The tiger eats the lion. The tiger is round. The tiger sees the cow. If something sees the cow and the cow eats the squirrel then it eats the tiger. If something is round then it eats the tiger. If something is big and it does not see the tiger then it is round. If something chases the cow then the cow is big. If something eats the cow and it is blue then the cow chases the squirrel. If something chases the lion and it eats the tiger then the lion is round. If the squirrel is cold and the squirrel does not see the cow then the squirrel is not kind. If the tiger eats the squirrel and the tiger chases the squirrel then the squirrel does not eat the tiger. If something sees the cow and it does not eat the tiger then the tiger sees the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-134_Q15", "context": "The cat chases the squirrel. The cat is big. The cat is green. The cow likes the squirrel. The rabbit chases the squirrel. The rabbit is blue. The rabbit is green. The rabbit likes the squirrel. The squirrel is blue. The squirrel is round. The squirrel does not need the cat. If someone is round then they are green. If someone chases the cat then they are big. If the cat likes the cow and the cat does not need the squirrel then the cat does not like the squirrel. If someone is big then they chase the cat. If someone chases the cow then the cow chases the cat. If someone chases the cat then the cat likes the rabbit. If someone likes the rabbit then the rabbit chases the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not chase the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-676_Q9", "context": "The bald eagle is kind. The bald eagle is nice. The bald eagle needs the cat. The cat needs the squirrel. The lion is kind. The squirrel does not see the cat. The squirrel visits the bald eagle. If something sees the cat then it visits the cat. If something is red then it visits the cat. If something needs the lion then it does not visit the cat. If something visits the cat then the cat is kind. If the cat is red and the cat visits the bald eagle then the bald eagle does not visit the cat. If something visits the squirrel and the squirrel sees the cat then it visits the bald eagle. If something is kind then it sees the cat. If something visits the squirrel and it does not see the lion then the lion is not cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat sees the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-778_Q9", "context": "The bear chases the cat. The bear needs the cat. The bear sees the cat. The bear sees the tiger. The cat chases the tiger. The cat is kind. The cat is red. The cat needs the tiger. The mouse is kind. The mouse needs the bear. The mouse sees the bear. The tiger sees the mouse. Kind, cold people are green. If someone chases the tiger then they see the bear. If someone needs the cat and the cat chases the mouse then they are kind. If someone is kind then they see the cat. If the tiger sees the cat then the cat is red. If someone sees the mouse and the mouse is green then they see the cat. If someone sees the cat and they see the mouse then the cat chases the mouse. If someone is kind then they see the mouse. If someone sees the mouse then they chase the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear sees the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-367_Q20", "context": "The bear chases the squirrel. The bear is big. The bear needs the tiger. The lion chases the bear. The lion is nice. The lion visits the tiger. The squirrel is big. The squirrel needs the tiger. The tiger chases the squirrel. The tiger is green. If someone needs the squirrel and the squirrel is green then the squirrel is kind. If the tiger needs the bear and the tiger chases the bear then the bear visits the lion. If someone is green and they chase the squirrel then they chase the bear. If someone chases the bear then they need the bear. If someone is round and they chase the bear then they chase the lion. If someone is round and green then they need the lion. If someone visits the bear then they chase the lion. If someone is big and they visit the lion then they visit the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel needs the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-24_Q11", "context": "The bald eagle is kind. The bald eagle is round. The bald eagle sees the tiger. The mouse is blue. The mouse is red. The squirrel eats the bald eagle. The squirrel eats the tiger. The squirrel is blue. The squirrel does not see the tiger. The tiger is not red. The tiger does not like the squirrel. If something sees the tiger then it sees the mouse. If something sees the mouse then it eats the tiger. If something likes the mouse then it likes the bald eagle. If something eats the tiger then it is round. If the mouse sees the bald eagle and the mouse does not like the tiger then the mouse sees the tiger. If the bald eagle sees the tiger and the bald eagle eats the tiger then the tiger sees the mouse. If something likes the mouse and the mouse is blue then the mouse is not round.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-83_Q22", "context": "The cow chases the dog. The cow is kind. The cow is rough. The cow sees the lion. The dog is cold. The dog sees the lion. The lion does not chase the squirrel. The lion is not big. The lion sees the dog. The squirrel likes the dog. The squirrel likes the lion. If the squirrel likes the lion then the squirrel sees the cow. If something sees the dog then the dog is rough. If something sees the cow and it likes the lion then it is big. If something is cold then it chases the dog. Kind things are cold. If something chases the cow then it does not see the cow. All big things are kind. If something is green and not big then it likes the cow. If the cow is not kind then the cow likes the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion chases the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-1016_Q6", "context": "The bald eagle likes the cat. The bald eagle visits the cat. The cat is round. The rabbit likes the cat. The squirrel is young. The squirrel likes the cat. The squirrel needs the cat. If the rabbit is kind then the rabbit likes the cat. If someone is young then they like the squirrel. If someone is nice and they do not visit the cat then they like the rabbit. If someone likes the rabbit then they visit the rabbit. If someone needs the bald eagle then the bald eagle is young. If someone likes the cat then they are nice. If someone is young and they like the squirrel then they need the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not need the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-1_Q21", "context": "The cow is not green. The cow is kind. The cow is not young. The cow sees the rabbit. The lion is not rough. The lion sees the rabbit. The lion visits the cow. The lion visits the rabbit. The mouse is green. The mouse sees the lion. The rabbit is green. The rabbit is kind. The rabbit does not need the cow. The rabbit sees the cow. If someone sees the rabbit then they see the mouse. If someone needs the cow then they need the mouse. If someone visits the lion and they visit the mouse then they need the mouse. If someone sees the rabbit and the rabbit visits the lion then the rabbit is blue. If someone needs the mouse then they are young. If someone sees the cow then they visit the cow. If someone sees the mouse then the mouse is blue. If someone is blue then they need the cow. If someone sees the lion and the lion is young then the lion does not visit the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-333_Q21", "context": "The bald eagle sees the cow. The cow eats the mouse. The cow is red. The dog eats the mouse. The dog sees the mouse. The mouse sees the cow. The mouse sees the dog. If the dog sees the mouse then the dog is big. If something sees the dog and the dog needs the bald eagle then the bald eagle needs the cow. If something is red then it sees the cow. If something needs the mouse and the mouse is nice then it eats the dog. If something needs the cow then it is big. If something eats the cow then it needs the bald eagle. If something sees the dog then the dog eats the cow. If something is big then it needs the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not see the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-273_Q18", "context": "The cat does not like the squirrel. The cat does not need the cow. The cat needs the squirrel. The cow eats the dog. The cow is green. The cow is red. The cow needs the cat. The dog is red. The dog is round. The dog needs the cat. The squirrel eats the dog. If someone is green then they eat the cat. If someone eats the cat then the cat needs the dog. If someone needs the dog then the dog is nice. If someone needs the cow then the cow likes the cat. If someone eats the dog and the dog is nice then the dog eats the cat. If someone eats the cat then they do not eat the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow needs the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-798_Q12", "context": "The mouse is red. The mouse sees the rabbit. The rabbit chases the squirrel. The rabbit is big. The rabbit likes the tiger. The squirrel is big. The squirrel is blue. The squirrel is green. The tiger is nice. The tiger likes the mouse. If something sees the squirrel then it likes the squirrel. If the rabbit sees the squirrel and the rabbit likes the mouse then the mouse is blue. If the squirrel is green and the squirrel likes the mouse then the mouse is green. If something is green and big then it sees the squirrel. If something likes the squirrel then it is green. If something is red and green then it chases the rabbit. If something sees the tiger then the tiger chases the squirrel. If something likes the squirrel then the squirrel likes the mouse. If something is big then it sees the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not chase the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-515_Q12", "context": "The bear is not blue. The bear is cold. The bear sees the mouse. The dog chases the bear. The dog chases the mouse. The dog chases the squirrel. The dog is young. The dog sees the squirrel. The mouse is blue. The mouse likes the bear. The mouse does not see the squirrel. The squirrel likes the bear. If someone likes the bear and they chase the dog then the bear is young. If someone chases the squirrel and the squirrel likes the dog then the dog is red. If someone chases the squirrel then the squirrel is blue. If someone is red then they see the dog. If someone is blue and they do not see the squirrel then they chase the dog. If the squirrel likes the bear and the bear is young then the squirrel is red. Round people are blue. If someone likes the dog and the dog is cold then the dog chases the squirrel. If someone sees the dog and the dog chases the bear then the dog likes the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not like the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-806_Q5", "context": "Anne is cold. Anne is furry. Anne is quiet. Anne is rough. Anne is round. Anne is smart. Anne is young. Erin is round. Gary is cold. Gary is furry. Gary is quiet. Harry is furry. Harry is quiet. Harry is rough. Harry is round. Harry is smart. All round things are smart. Rough, quiet things are young. If something is young and cold then it is furry. If something is cold then it is smart. Rough things are cold. Round, smart things are young. If Erin is young and Erin is smart then Erin is rough. Rough, cold things are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-534_Q6", "context": "Anne is cold. Anne is furry. Anne is kind. Anne is rough. Anne is white. Bob is not big. Bob is not kind. Bob is rough. Fiona is not big. Fiona is not rough. Gary is furry. If something is furry then it is rough. All white, furry things are big. Big things are kind. All cold things are kind. If something is rough then it is white. Green things are white. White, kind things are cold. All green, big things are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-871_Q4", "context": "Anne is quiet. Anne is white. Bob is big. Dave is furry. Dave is rough. Dave is white. Harry is nice. Harry is quiet. Harry is rough. Harry is smart. Furry people are rough. If Harry is furry and Harry is rough then Harry is nice. All rough people are white. If Anne is nice and Anne is furry then Anne is white. All furry, white people are nice. Nice people are quiet. All big people are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-547_Q18", "context": "The lion sees the mouse. The mouse is big. The mouse is blue. The mouse is round. The mouse needs the squirrel. The mouse sees the rabbit. The rabbit is blue. The rabbit is round. The rabbit needs the mouse. The rabbit sees the lion. The rabbit sees the mouse. The squirrel is big. The squirrel is green. The squirrel needs the mouse. The squirrel sees the lion. The squirrel visits the mouse. If the lion visits the mouse then the lion needs the squirrel. If someone visits the lion then the lion visits the mouse. If the rabbit is cold and the rabbit visits the lion then the lion needs the mouse. If someone sees the lion then they see the squirrel. If someone sees the squirrel then the squirrel visits the lion. If someone is blue then they visit the mouse. If someone needs the squirrel then they are green.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion sees the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-169_Q7", "context": "Bob is rough. Erin is furry. Erin is rough. Erin is smart. Erin is white. Gary is green. Gary is kind. Gary is smart. Gary is white. Harry is kind. If someone is blue then they are smart. All white, blue people are rough. If someone is rough and white then they are green. Green, smart people are blue. All furry people are white. All white people are green. If someone is kind then they are furry. Green people are smart. If someone is rough then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-91_Q4", "context": "The bear likes the cow. The cow does not eat the bear. The cow eats the rabbit. The cow does not like the rabbit. The cow visits the dog. The dog likes the bear. The dog likes the cow. The dog does not visit the bear. The rabbit eats the cow. The rabbit is cold. The rabbit is nice. If something is kind then it is cold. If the dog visits the cow and the dog likes the bear then the dog eats the rabbit. If the cow visits the dog then the cow visits the rabbit. If something likes the dog and it visits the bear then it is red. If something visits the rabbit and it visits the dog then it is kind. If something visits the dog then the dog eats the bear. If the cow is cold then the cow likes the dog. If something eats the rabbit then it visits the bear. If something visits the bear then the bear likes the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not visit the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-732_Q10", "context": "Bob is red. Erin is not quiet. Erin is young. Fiona is rough. Gary is blue. Gary is not quiet. Gary is rough. All rough people are not quiet. Blue people are red. If Erin is blue and Erin is cold then Erin is not furry. All furry, young people are not cold. If someone is rough then they are blue. Young people are furry. If Bob is cold and Bob is blue then Bob is not rough. If someone is red then they are young. If Gary is rough and Gary is blue then Gary is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-411_Q13", "context": "Bob is big. Charlie is big. Charlie is green. Erin is not big. Erin is blue. Erin is cold. Erin is green. Erin is red. Harry is big. Harry is rough. If something is blue and green then it is kind. If something is green then it is cold. All red things are rough. All cold things are blue. If something is kind and big then it is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-453_Q11", "context": "Bob is big. Bob is nice. Bob is quiet. Bob is rough. Bob is round. Charlie is quiet. Charlie is rough. Dave is green. Dave is nice. Erin is rough. Erin is round. Erin is smart. Rough things are big. If Dave is nice then Dave is green. If something is round then it is green. If something is green and quiet then it is nice. Rough, big things are round. Quiet, nice things are rough. All quiet, smart things are green. Quiet, smart things are nice. If something is nice then it is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-670_Q24", "context": "Anne is kind. Anne is red. Charlie is round. Erin is blue. Erin is cold. Erin is red. Gary is red. Blue things are furry. All cold things are green. If something is furry and green then it is round. All red, kind things are cold. If Anne is green then Anne is blue. If something is kind and cold then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-952_Q14", "context": "Charlie is blue. Charlie is white. Fiona is quiet. Gary is furry. Gary is nice. Gary is not quiet. Gary is round. Harry is not furry. Harry is nice. Harry is not quiet. If someone is white then they are not furry. Quiet, nice people are blue. White, red people are nice. White, nice people are quiet. If someone is blue and not furry then they are quiet. All red people are round. If someone is quiet and not furry then they are round. If someone is round and not furry then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-579_Q12", "context": "Bob is big. Bob is kind. Charlie is kind. Charlie is white. Charlie is young. Dave is furry. Dave is red. Dave is white. Dave is young. Harry is cold. Harry is kind. Harry is red. If Harry is kind then Harry is red. All big, kind people are red. Furry people are cold. All furry, young people are big. If someone is white then they are furry. All big, red people are furry. Cold, young people are big. If someone is young then they are white. Cold people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-423_Q3", "context": "The cat is kind. The cat is red. The cow likes the cat. The cow likes the rabbit. The cow does not see the cat. The cow visits the cat. The dog is not kind. The dog likes the cat. The dog likes the cow. The rabbit is green. The rabbit likes the cow. The rabbit does not like the dog. The rabbit sees the cat. The rabbit visits the cow. If something is rough then it is blue. If something is rough then it does not like the cat. If something visits the dog then the dog visits the cow. If something likes the dog then it likes the rabbit. If something is kind and blue then it likes the dog. If something likes the cat then the cat is rough. If something is blue and it likes the rabbit then it sees the dog. If something is blue and it likes the cow then the cow likes the cat. If something visits the cow and it is not red then the cow sees the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-565_Q14", "context": "The cat is kind. The cow eats the lion. The cow visits the lion. The lion is kind. The lion is not round. The lion does not visit the mouse. The mouse eats the cat. The mouse is blue. The mouse is nice. The mouse is not round. If something chases the lion then it is not round. If something eats the mouse and it visits the cow then the cow is kind. If something eats the cow and the cow does not chase the lion then the cow eats the mouse. If something eats the mouse and the mouse eats the cow then the cow does not visit the lion. If the cow is kind then the cow chases the cat. If something is kind then it eats the mouse. If something chases the lion then the lion chases the cow. If something eats the mouse and the mouse eats the cat then it visits the cow. If the mouse is kind and the mouse does not eat the lion then the mouse is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-526_Q12", "context": "The bald eagle eats the dog. The bald eagle likes the bear. The bald eagle sees the bear. The bear eats the dog. The bear is rough. The bear is round. The bear likes the rabbit. The dog is not big. The dog likes the rabbit. The rabbit sees the dog. If someone eats the bear and the bear is rough then they eat the rabbit. If the rabbit does not like the dog then the dog is not round. If the dog sees the rabbit and the dog likes the rabbit then the dog eats the bald eagle. If someone is rough and they see the bald eagle then the bald eagle eats the bear. If someone eats the rabbit then they see the bald eagle. If someone eats the bald eagle and they are not kind then the bald eagle does not like the dog. If someone sees the bear then the bear eats the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not see the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-235_Q6", "context": "The cat eats the cow. The cat is kind. The cat visits the dog. The cow sees the dog. The dog is red. The dog visits the rabbit. The rabbit sees the cow. If the cat eats the cow then the cow is round. If something visits the cow and it is round then the cow visits the cat. If something eats the rabbit then it sees the cow. If something visits the cat and it visits the dog then it is cold. If something eats the rabbit and it sees the cow then the rabbit is round. If something eats the cow then the cow is kind. If something is round then it eats the rabbit. If something visits the rabbit and it sees the dog then the dog visits the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not eat the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-182_Q8", "context": "Charlie is blue. Charlie is furry. Charlie is red. Erin is blue. Fiona is green. Fiona is red. Harry is kind. If Erin is furry then Erin is red. Red people are big. If someone is big then they are smart. If someone is furry then they are smart. All smart, red people are blue. If someone is blue then they are kind. If someone is kind then they are red. All blue, kind people are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-504_Q8", "context": "The bear eats the squirrel. The bear is kind. The bear is young. The bear needs the cow. The cow eats the squirrel. The cow is rough. The mouse visits the cow. The squirrel eats the bear. The squirrel eats the cow. The squirrel is round. The squirrel needs the bear. The squirrel visits the mouse. If someone is kind then they need the cow. If someone visits the bear and they visit the mouse then the bear is cold. If someone needs the cow and they visit the mouse then the cow is round. If someone needs the bear and they are round then the bear needs the cow. If someone is round then they are kind. If someone is round and they need the cow then they need the squirrel. If someone is cold and they need the bear then they need the cow. If someone visits the mouse then the mouse is young.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not need the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-428_Q13", "context": "Bob is big. Bob is smart. Charlie is cold. Fiona is big. Fiona is furry. Fiona is quiet. Fiona is young. Harry is big. Harry is kind. Harry is quiet. Harry is smart. Furry people are kind. All cold, quiet people are young. If someone is big and smart then they are cold. Young people are furry. If Fiona is quiet and Fiona is cold then Fiona is kind. All cold people are quiet. If someone is quiet and furry then they are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-493_Q22", "context": "The bald eagle is red. The bald eagle needs the cow. The bald eagle does not need the tiger. The bald eagle sees the cow. The bald eagle visits the cow. The bald eagle visits the rabbit. The cow is green. The cow is red. The cow needs the tiger. The cow does not see the bald eagle. The cow visits the bald eagle. The cow visits the rabbit. The rabbit is not green. The rabbit needs the tiger. The tiger does not see the bald eagle. The tiger sees the cow. If the bald eagle visits the tiger then the bald eagle needs the cow. If the cow visits the tiger then the tiger is green. If the tiger visits the bald eagle then the tiger is kind. If something needs the rabbit then it visits the tiger. If something is green then it visits the cow. If something is green then it needs the rabbit. If something visits the cow then the cow visits the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-631_Q2", "context": "Anne is kind. Bob is green. Bob is kind. Bob is nice. Bob is quiet. Bob is red. Gary is green. Gary is quiet. Gary is young. Harry is furry. All quiet, green people are young. If someone is quiet then they are kind. Quiet, kind people are nice. All red people are green. All furry people are red. If someone is green then they are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-507_Q4", "context": "The bald eagle eats the cow. The bald eagle eats the rabbit. The bald eagle is cold. The bald eagle needs the cow. The bald eagle needs the rabbit. The cat eats the cow. The cat eats the rabbit. The cat is nice. The cow is round. The cow needs the bald eagle. The cow visits the bald eagle. The rabbit eats the cat. The rabbit visits the bald eagle. The rabbit visits the cow. If someone eats the cat and the cat needs the bald eagle then the bald eagle is round. If someone is blue and round then they visit the rabbit. If someone is blue then they need the cow. If someone needs the cow then they visit the cow. If the cow visits the rabbit and the cow is blue then the cow eats the rabbit. If someone needs the bald eagle then the bald eagle is blue. If someone visits the cat and they need the cow then they eat the cat. If someone is blue and they need the cow then the cow is blue. If someone eats the rabbit then they need the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not visit the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-608_Q18", "context": "The cat chases the mouse. The cat chases the rabbit. The cat is cold. The cat is rough. The cat likes the mouse. The cat likes the rabbit. The cat likes the squirrel. The mouse is young. The rabbit is round. The rabbit likes the mouse. The squirrel chases the rabbit. The squirrel is round. The squirrel is young. The squirrel needs the cat. If someone likes the mouse then they chase the rabbit. If someone likes the mouse then they chase the squirrel. If the mouse likes the squirrel then the mouse likes the rabbit. If someone is big and they like the mouse then the mouse chases the rabbit. All young, rough people are big. If someone is big then they chase the cat. If someone chases the mouse then they are young. If someone chases the rabbit then they like the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-921_Q3", "context": "The bear eats the cow. The bear is kind. The bear needs the lion. The cow eats the rabbit. The cow is kind. The cow likes the bear. The cow likes the lion. The lion eats the cow. The lion is kind. The lion is rough. The lion is round. The rabbit eats the cow. The rabbit is blue. The rabbit likes the lion. Round things are blue. If something eats the lion then it likes the bear. If something is round and it likes the cow then the cow is kind. If something is round then it likes the lion. If something is kind then it eats the lion. Blue things are round. If something is kind and it likes the bear then it is blue. If something eats the cow then it needs the cow. If the lion is young then the lion eats the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow eats the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-434_Q10", "context": "Anne is cold. Anne is nice. Anne is quiet. Anne is round. Bob is nice. Erin is big. Erin is blue. Erin is cold. Erin is green. Erin is nice. Erin is quiet. Erin is round. Gary is big. Gary is blue. Gary is green. Gary is nice. All nice things are round. Quiet, green things are blue. If something is nice and blue then it is quiet. If something is cold then it is blue. If Gary is quiet then Gary is green. Round things are green. If Gary is blue then Gary is quiet. Nice things are big. All green things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-158_Q4", "context": "Charlie is young. Dave is not blue. Dave is kind. Dave is rough. Erin is rough. Erin is young. Harry is blue. If Charlie is kind and Charlie is green then Charlie is cold. Green, rough people are kind. All rough people are green. Cold, kind people are green. If someone is big and young then they are green. If someone is cold then they are big. If someone is kind then they are not blue. If Dave is rough and Dave is green then Dave is cold. If someone is young then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-590_Q6", "context": "The cow chases the lion. The cow visits the lion. The dog chases the lion. The dog eats the mouse. The dog is blue. The dog is round. The dog is young. The dog visits the cow. The dog visits the lion. The lion is round. The mouse eats the cow. The mouse eats the lion. The mouse is young. The mouse visits the dog. If someone is young then they chase the cow. If someone visits the lion and they visit the dog then they chase the dog. If someone is red and they chase the lion then the lion visits the dog. If someone visits the lion then they are young. If someone chases the cow and the cow chases the dog then the cow visits the mouse. If someone visits the dog then the dog eats the mouse. If someone eats the cow then the cow eats the lion. If someone visits the cow and they are young then they are round. If someone chases the cow then they visit the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not visit the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-978_Q13", "context": "The bear eats the lion. The bear is cold. The lion eats the tiger. The lion likes the bear. The lion likes the tiger. The lion needs the tiger. The squirrel eats the lion. The squirrel is red. The tiger eats the lion. The tiger is red. The tiger needs the bear. All round things are rough. If something is rough and it needs the bear then it eats the squirrel. If something needs the bear then it likes the lion. If something eats the squirrel then the squirrel is big. If something is big then it needs the squirrel. If something is cold then it needs the lion. If something likes the lion then it is round. If the squirrel likes the lion and the squirrel eats the lion then the squirrel is red. If the squirrel eats the lion and the lion needs the bear then the bear likes the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not eat the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-511_Q17", "context": "Anne is big. Anne is nice. Anne is white. Dave is big. Dave is red. Fiona is green. Gary is big. All green, red people are round. All white people are nice. If someone is green and round then they are white. Green people are kind. All white people are nice. If someone is round then they are kind. Green, kind people are red. Red people are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-569_Q2", "context": "Anne is big. Anne is blue. Anne is quiet. Anne is round. Anne is smart. Anne is white. Erin is big. Erin is quiet. Erin is round. Fiona is blue. Gary is blue. All blue, nice people are quiet. All blue people are smart. If someone is white and nice then they are round. If Erin is blue then Erin is nice. If someone is quiet and smart then they are nice. If someone is blue and smart then they are white. Nice people are white. All round people are big. All blue, white people are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-684_Q16", "context": "The bear chases the rabbit. The bear is kind. The bear needs the dog. The cow does not chase the bear. The cow is not nice. The cow likes the dog. The cow does not like the rabbit. The dog does not chase the rabbit. The dog is cold. The dog is nice. The dog is not red. The dog likes the rabbit. The rabbit is not red. The rabbit needs the bear. If something likes the cow then the cow is cold. If the dog likes the cow and the dog is not nice then the cow is red. If something is nice then it needs the bear. If something is cold and kind then it needs the rabbit. All cold things are green. If something needs the rabbit then the rabbit likes the cow. If something likes the dog and it chases the dog then it is red. If something is green then it likes the cow. If something likes the bear and it is not cold then the bear chases the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear chases the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1244_Q1", "context": "Dave is cold. Dave is green. Erin is big. Erin is green. Erin is quiet. Erin is round. Fiona is big. Fiona is quiet. Harry is green. Harry is nice. Round things are young. All quiet things are round. All green things are quiet. Big, nice things are cold. All young, nice things are cold. If Dave is cold then Dave is nice. If something is nice and cold then it is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-38_Q23", "context": "Bob is blue. Bob is white. Charlie is round. Fiona is not quiet. Fiona is smart. Gary is blue. Gary is not smart. All round, quiet people are smart. Smart people are big. Round people are quiet. If Charlie is blue and Charlie is not quiet then Charlie is white. If someone is quiet and not nice then they are blue. If someone is round and white then they are blue. All round, big people are white. Nice, blue people are white. If someone is quiet and blue then they are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-648_Q6", "context": "The bald eagle is kind. The bald eagle likes the tiger. The bald eagle needs the mouse. The bald eagle sees the dog. The bald eagle sees the mouse. The bald eagle sees the tiger. The dog is blue. The dog is kind. The dog is nice. The dog is rough. The dog needs the mouse. The dog needs the tiger. The dog sees the mouse. The mouse is kind. The tiger likes the bald eagle. The tiger likes the mouse. If someone is kind then they see the mouse. Young people are blue. If someone likes the bald eagle then they like the mouse. If someone is young and they need the tiger then the tiger sees the dog. If someone sees the tiger and the tiger is young then they need the bald eagle. If someone likes the tiger and the tiger likes the mouse then the tiger is blue. All blue people are kind. If someone sees the mouse and they like the bald eagle then they are young. If someone is blue and they see the dog then the dog likes the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-246_Q5", "context": "Anne is not furry. Anne is round. Charlie is round. Erin is cold. Erin is furry. Harry is furry. Harry is quiet. Cold people are not big. Nice people are quiet. All quiet, round people are cold. All round people are nice. All quiet, round people are nice. If someone is round and not big then they are rough. If someone is furry and not round then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1046_Q16", "context": "Anne is nice. Anne is rough. Bob is kind. Bob is rough. Fiona is big. Fiona is blue. Fiona is kind. Fiona is nice. Fiona is round. Fiona is white. Harry is round. If Anne is round then Anne is blue. If someone is rough then they are round. If someone is kind then they are big. All blue, white people are rough. If someone is blue then they are round. All white, nice people are kind. Blue people are white. If someone is kind then they are blue. All big people are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-583_Q12", "context": "Dave is big. Fiona is cold. Gary is not nice. Gary is round. Gary is white. Harry is not blue. Harry is nice. If Gary is blue and Gary is not nice then Gary is not white. Blue people are round. If someone is white and blue then they are not round. All cold people are round. Nice people are rough. Rough people are cold. All round, rough people are big. Big people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-919_Q15", "context": "The bald eagle chases the rabbit. The bald eagle is cold. The cat is red. The mouse does not chase the bald eagle. The mouse sees the rabbit. The rabbit likes the cat. The rabbit sees the mouse. If someone is rough then they chase the cat. If someone likes the cat then they are rough. If the cat sees the mouse then the cat is rough. If someone sees the mouse and they like the cat then the cat does not see the mouse. If someone likes the mouse and the mouse does not chase the bald eagle then the mouse likes the cat. If someone likes the mouse then they are blue. If someone is rough then they like the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1059_Q18", "context": "Anne is blue. Anne is furry. Anne is quiet. Erin is young. Gary is quiet. Harry is furry. Harry is quiet. Blue, kind things are furry. All kind things are smart. Young things are blue. If something is blue then it is kind. White, blue things are young. If Anne is white then Anne is not young. Smart, young things are quiet. Quiet, young things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1200_Q1", "context": "Erin is furry. Erin is red. Erin is young. Fiona is big. Fiona is young. Gary is furry. Gary is red. Gary is round. Harry is cold. Harry is round. Harry is young. If someone is big then they are young. If someone is furry and big then they are red. Cold, furry people are green. If someone is red and big then they are furry. All round people are cold. If someone is big then they are furry. If someone is red then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-312_Q11", "context": "The bear is not big. The bear is cold. The bear sees the cat. The cat eats the bear. The cat visits the bear. The cow is not rough. The cow sees the mouse. The cow visits the bear. The mouse eats the cat. The mouse is not big. The mouse is kind. The mouse visits the cat. If someone is green then they eat the mouse. If someone visits the bear then they visit the mouse. If someone eats the bear and they see the mouse then the mouse does not see the cow. If the cat visits the bear then the bear is cold. If someone eats the mouse then the mouse visits the bear. If someone is green and they see the cow then the cow sees the mouse. If someone eats the bear and they see the cow then the cow is green. If someone visits the bear then they see the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse sees the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-34_Q5", "context": "The bear is rough. The bear is round. The bear visits the dog. The dog eats the mouse. The dog visits the bear. The lion needs the mouse. The lion visits the dog. The mouse eats the dog. The mouse eats the lion. The mouse is cold. The mouse visits the lion. If something eats the dog and the dog needs the bear then the bear needs the dog. If something visits the dog then it is young. If the bear eats the mouse and the mouse needs the bear then the bear visits the dog. If something is rough and it visits the dog then it needs the dog. If something eats the bear then it is rough. If something needs the lion then the lion eats the bear. If something eats the mouse then the mouse needs the lion. If the lion is young and the lion needs the dog then the lion visits the bear. If something eats the lion and it eats the mouse then the mouse needs the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion eats the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1273_Q11", "context": "Anne is green. Anne is red. Erin is green. Erin is round. Fiona is cold. Fiona is green. Fiona is nice. Fiona is red. Fiona is rough. Fiona is smart. Harry is cold. Cold people are smart. All green people are rough. All red, green people are nice. All rough people are cold. Red, nice people are rough. Round, cold people are smart. All smart people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1361_Q11", "context": "Anne is cold. Anne is furry. Anne is quiet. Anne is smart. Anne is young. Erin is quiet. Erin is smart. Gary is cold. Gary is furry. Gary is quiet. Gary is smart. Harry is cold. If someone is blue and big then they are smart. Blue people are furry. If someone is young then they are big. Quiet, cold people are blue. All furry, blue people are quiet. If Erin is furry then Erin is young. Blue, big people are quiet. If someone is smart and quiet then they are cold. Blue people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-142_Q16", "context": "Dave is blue. Dave is green. Dave is kind. Dave is red. Dave is white. Erin is big. Erin is green. Erin is kind. Erin is red. Fiona is white. Harry is green. Harry is young. If Erin is big and Erin is red then Erin is white. Big, blue things are young. If something is big then it is green. If something is white and young then it is big. If something is green and white then it is kind. Blue things are kind. If Fiona is young and Fiona is blue then Fiona is big. All kind, green things are red. White things are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-35_Q13", "context": "The bald eagle is young. The bald eagle needs the dog. The bald eagle needs the rabbit. The dog eats the mouse. The dog is cold. The dog is kind. The dog sees the rabbit. The mouse eats the dog. The mouse is cold. The mouse needs the rabbit. The mouse sees the bald eagle. The rabbit eats the bald eagle. The rabbit needs the dog. The rabbit does not see the bald eagle. If something sees the bald eagle and the bald eagle does not need the dog then the bald eagle needs the rabbit. If something needs the rabbit then it needs the bald eagle. If the rabbit does not need the dog then the rabbit sees the bald eagle. If the mouse needs the bald eagle and the bald eagle is kind then the mouse sees the dog. If something eats the mouse and it needs the bald eagle then the bald eagle sees the dog. If something needs the bald eagle then it sees the dog. If something sees the dog then the dog needs the rabbit. If something sees the rabbit and the rabbit is not young then it eats the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not eat the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-692_Q14", "context": "Anne is big. Anne is not nice. Charlie is big. Charlie is red. Gary is green. Gary is red. Harry is blue. Harry is nice. Harry is red. Harry is smart. If Gary is green then Gary is nice. If Harry is red and Harry is nice then Harry is big. All white people are big. Nice people are white. If someone is white and smart then they are blue. If someone is white and big then they are smart. If someone is green and not nice then they are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-36_Q6", "context": "The bear does not eat the dog. The bear is not big. The cat chases the dog. The cat is rough. The cat visits the rabbit. The dog does not chase the cat. The dog chases the rabbit. The dog eats the cat. The dog is big. The dog is rough. The dog is round. The dog visits the bear. The dog visits the cat. The rabbit is rough. If the bear is big then the bear does not chase the rabbit. If something chases the dog and the dog visits the bear then it chases the cat. If something chases the bear then the bear chases the dog. If something eats the rabbit then the rabbit does not visit the dog. If something chases the cat then it chases the bear. If something is big then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not chase the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-433_Q17", "context": "The bald eagle chases the cow. The bald eagle is young. The bald eagle sees the squirrel. The cat chases the bald eagle. The cat is kind. The cat sees the bald eagle. The cat sees the squirrel. The cow eats the cat. The cow is kind. The cow is nice. The squirrel eats the cow. If someone eats the squirrel then they are kind. If someone chases the squirrel then they eat the bald eagle. If someone eats the cow and they eat the squirrel then the cow eats the squirrel. If someone is kind then they chase the squirrel. If someone eats the bald eagle then the bald eagle eats the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not eat the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-311_Q22", "context": "The bear is green. The dog is green. The dog is rough. The dog likes the mouse. The dog likes the rabbit. The dog visits the bear. The mouse is not blue. The mouse does not visit the dog. The rabbit is nice. The rabbit likes the dog. The rabbit likes the mouse. The rabbit visits the mouse. If something visits the rabbit then it is nice. If something is green and it visits the mouse then it is not nice. If something is round then it needs the dog. If something likes the mouse then the mouse visits the rabbit. If something is nice then it needs the bear. If something visits the mouse then it is round. If something needs the rabbit then the rabbit does not like the bear. If something needs the dog and the dog likes the rabbit then the dog visits the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-681_Q19", "context": "The cow sees the mouse. The mouse is big. The mouse is not kind. The mouse likes the cow. The mouse visits the cow. The mouse visits the squirrel. The squirrel is blue. The squirrel is not young. The squirrel likes the cow. The squirrel sees the cow. The tiger is not big. The tiger is kind. The tiger is young. The tiger does not like the cow. If someone visits the mouse then they see the mouse. If someone sees the cow then the cow sees the squirrel. If someone sees the tiger then they visit the squirrel. If the tiger likes the cow then the cow is kind. If someone sees the cow then they like the tiger. If someone is young and green then they like the tiger. If someone sees the tiger then the tiger sees the squirrel. If someone sees the squirrel and the squirrel sees the cow then they see the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not like the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-839_Q11", "context": "The bald eagle chases the cat. The bald eagle is red. The bald eagle does not see the cat. The bear does not chase the cat. The bear sees the cat. The bear does not visit the mouse. The cat chases the bald eagle. The cat is red. The cat is not rough. The cat is round. The cat is young. The mouse is not red. The mouse is young. The mouse visits the bear. If the cat sees the bear then the bear is red. If someone sees the bear then they are blue. Blue people are young. If someone is blue then they are young. If someone is red then they see the bear. If someone chases the bald eagle and the bald eagle does not see the bear then they see the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-786_Q22", "context": "Anne is kind. Anne is nice. Anne is young. Erin is red. Gary is blue. Gary is young. Harry is nice. Kind, big people are young. If someone is young then they are red. If Harry is blue and Harry is kind then Harry is nice. All kind people are young. Rough people are big. If someone is big and rough then they are kind. If someone is nice and kind then they are rough. If someone is nice then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-89_Q7", "context": "The bear likes the cat. The bear needs the lion. The cat likes the bear. The cat likes the lion. The cat needs the lion. The cat sees the tiger. The lion does not like the cat. The lion does not like the tiger. The lion sees the cat. The tiger needs the bear. The tiger does not see the lion. If the tiger needs the bear and the tiger likes the cat then the cat is rough. If something needs the tiger then it likes the cat. If the cat sees the bear then the cat needs the lion. If the tiger sees the bear then the tiger is rough. If something likes the bear then it needs the tiger. If something needs the bear then it needs the lion. If something is rough then it is green. If the cat is blue then the cat needs the bear. If something needs the bear then it likes the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger likes the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-448_Q10", "context": "The cat likes the cow. The cat needs the lion. The cow visits the lion. The dog is young. The dog likes the cat. The dog needs the cow. The dog needs the lion. The lion is nice. The lion is young. The lion likes the cat. The lion does not need the dog. The lion visits the cow. If the dog does not like the cow and the dog does not visit the cow then the cow is not green. If something likes the cat then the cat is round. If something is green then it visits the dog. If something visits the dog then the dog needs the cat. If the cat needs the cow then the cat likes the lion. If the cow likes the dog then the cow visits the lion. If something likes the dog and it visits the cow then the cow does not visit the lion. If something visits the dog and the dog needs the cat then the dog is green. Nice things are green.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-226_Q5", "context": "Bob is kind. Bob is young. Charlie is kind. Charlie is red. Dave is furry. Dave is nice. Erin is furry. Erin is green. Erin is nice. Erin is red. Erin is rough. Red things are green. If Dave is rough and Dave is furry then Dave is red. If Dave is young and Dave is green then Dave is red. If something is green then it is young. Green, young things are kind. If something is rough then it is nice. If Bob is young then Bob is kind. All nice things are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-842_Q24", "context": "The bald eagle is blue. The bald eagle needs the dog. The bald eagle needs the squirrel. The dog is cold. The dog visits the bald eagle. The lion likes the bald eagle. The lion needs the dog. The lion needs the squirrel. The lion visits the bald eagle. The squirrel is big. The squirrel visits the dog. If the squirrel is round then the squirrel is red. If something likes the lion and the lion is blue then it likes the squirrel. If something is big and it needs the lion then the lion is big. If something needs the dog then it needs the lion. If something needs the squirrel and it is big then it visits the dog. If something visits the dog then it likes the dog. If the lion needs the squirrel and the squirrel visits the dog then the squirrel needs the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion needs the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-788_Q7", "context": "The dog chases the tiger. The dog is blue. The dog visits the squirrel. The lion chases the squirrel. The lion eats the dog. The lion is big. The lion visits the tiger. The squirrel eats the lion. The squirrel is blue. The tiger does not chase the lion. The tiger chases the squirrel. The tiger eats the lion. If something eats the tiger and it chases the tiger then it visits the tiger. If something eats the tiger then it eats the squirrel. If something is blue then it eats the tiger. If something chases the lion and the lion visits the tiger then the lion is nice. If something visits the squirrel and the squirrel visits the dog then the squirrel eats the tiger. If something is big then it does not visit the dog. If something visits the squirrel and it chases the lion then it does not eat the lion. If something is cold then it does not chase the tiger. If something chases the tiger and it eats the squirrel then the tiger is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-1021_Q4", "context": "The bald eagle chases the bear. The bald eagle chases the lion. The bald eagle eats the bear. The bald eagle likes the rabbit. The bear chases the bald eagle. The bear eats the bald eagle. The bear eats the rabbit. The lion chases the rabbit. The lion eats the bald eagle. The rabbit chases the bald eagle. If something eats the bear and it eats the lion then it is nice. If something eats the bear and it is nice then the bear likes the bald eagle. If something is nice and it likes the bear then it eats the rabbit. If something likes the bear and the bear is young then the bear eats the rabbit. If something is round then it chases the rabbit. If something likes the bear and it likes the bald eagle then it is round. If something is green and round then it chases the rabbit. If something chases the bear then it eats the lion. If something eats the bald eagle and the bald eagle eats the bear then it likes the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not eat the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1183_Q4", "context": "Anne is furry. Anne is kind. Anne is nice. Anne is rough. Erin is furry. Erin is kind. Erin is quiet. Erin is rough. Erin is smart. Fiona is kind. Fiona is rough. Fiona is round. Fiona is smart. Harry is nice. Nice people are smart. All furry, nice people are smart. Kind, rough people are furry. Quiet, kind people are round. Nice, smart people are kind. If someone is kind and quiet then they are rough. If Erin is kind and Erin is nice then Erin is quiet. All quiet, rough people are kind. Kind people are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-186_Q2", "context": "The bear is round. The bear likes the cat. The cat chases the bear. The dog is red. The dog is rough. The dog is round. The tiger is blue. If something is red then it chases the cat. If something is cold then it chases the tiger. If something likes the bear then the bear likes the tiger. If something sees the dog and the dog is red then the dog is round. If something likes the bear and the bear likes the dog then the bear sees the dog. If something is red and it chases the cat then it likes the bear. If the cat chases the dog and the dog is red then the dog is rough. If something likes the tiger then it is red. If something sees the bear then it likes the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-1006_Q2", "context": "The bald eagle does not eat the lion. The bald eagle eats the mouse. The bald eagle likes the bear. The bald eagle likes the lion. The bald eagle sees the bear. The bear is big. The bear likes the bald eagle. The bear likes the lion. The bear likes the mouse. The lion likes the bear. The lion sees the bald eagle. The mouse eats the bald eagle. The mouse is not blue. The mouse is young. The mouse likes the bear. The mouse sees the bald eagle. If the bald eagle sees the bear then the bear likes the lion. If the bear likes the mouse and the bear eats the mouse then the mouse sees the bald eagle. If something eats the bear then it does not see the mouse. If something is nice then it eats the bear. If something is big then it eats the mouse. If something eats the mouse then it is nice. If the bear likes the lion and the bear does not see the mouse then the mouse eats the lion. If something is blue and not nice then it sees the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not see the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-421_Q16", "context": "The bald eagle eats the squirrel. The bald eagle likes the squirrel. The bald eagle sees the squirrel. The lion sees the bald eagle. The rabbit eats the bald eagle. The rabbit is round. The rabbit likes the bald eagle. The rabbit sees the lion. The squirrel is kind. The squirrel likes the bald eagle. If someone likes the bald eagle and they eat the squirrel then they see the squirrel. If someone likes the bald eagle then they like the rabbit. If someone eats the lion then they like the lion. If someone is kind and they eat the lion then they are big. If someone is rough then they eat the lion. If someone is big then they eat the squirrel. If someone sees the bald eagle and the bald eagle likes the squirrel then the squirrel is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle eats the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-714_Q8", "context": "Anne is quiet. Charlie is cold. Charlie is red. Fiona is green. Fiona is red. Gary is cold. Gary is quiet. If something is cold then it is blue. If something is blue then it is green. All red, round things are cold. If something is green then it is round. All quiet things are red. If Anne is red then Anne is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-999_Q2", "context": "The bald eagle is kind. The bald eagle likes the bear. The bear likes the bald eagle. The bear likes the cat. The bear likes the mouse. The bear needs the bald eagle. The cat eats the bald eagle. The cat eats the mouse. The cat likes the bear. The cat needs the bald eagle. The cat needs the bear. The mouse is red. The mouse is round. The mouse needs the bear. If the bald eagle is blue and the bald eagle eats the bear then the bald eagle likes the bear. If the bald eagle needs the bear then the bear is blue. If someone likes the mouse then they need the cat. If the bald eagle needs the cat then the cat is kind. If someone needs the bald eagle and they like the cat then the cat is young. If the cat likes the mouse and the cat eats the bear then the bear needs the cat. If the bald eagle is round and the bald eagle is young then the bald eagle needs the cat. If someone is kind then they like the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not like the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-189_Q11", "context": "The bald eagle chases the mouse. The cow chases the bald eagle. The cow is rough. The lion chases the cow. The lion is rough. The mouse chases the lion. The mouse visits the lion. If someone is rough then they visit the cow. If someone likes the cow then they are rough. If someone chases the lion then they chase the bald eagle. If someone likes the lion and the lion visits the bald eagle then the bald eagle visits the cow. If someone likes the mouse then the mouse likes the cow. If someone chases the cow then the cow likes the lion. If someone visits the cow then the cow likes the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse visits the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-159_Q21", "context": "The bear is rough. The bear needs the cow. The cow visits the bear. The cow visits the dog. The dog is young. The dog visits the cow. The squirrel eats the bear. If something is cold then it does not visit the bear. If something visits the dog then it needs the squirrel. If something is cold then it needs the squirrel. If something eats the dog then the dog eats the squirrel. If something needs the bear and the bear does not eat the dog then the dog needs the squirrel. If the squirrel is rough and the squirrel visits the cow then the squirrel eats the bear. If something needs the squirrel then the squirrel is cold. If the squirrel is cold and the squirrel visits the cow then the squirrel does not need the bear. If something needs the squirrel then it visits the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not visit the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-896_Q12", "context": "The bald eagle chases the squirrel. The bald eagle is big. The bald eagle likes the squirrel. The bald eagle needs the tiger. The dog needs the bald eagle. The squirrel chases the bald eagle. The squirrel needs the bald eagle. The tiger chases the bald eagle. The tiger chases the dog. The tiger likes the bald eagle. If something is green then it chases the dog. If something is red and big then it chases the dog. If something needs the bald eagle then it is green. If something chases the dog then it needs the squirrel. If something needs the squirrel then it chases the bald eagle. If something chases the tiger and it needs the bald eagle then it is young. If the bald eagle is big and the bald eagle is red then the bald eagle needs the tiger. Young things are red. If something likes the squirrel then it is young.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not chase the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-69_Q9", "context": "Anne is rough. Anne is round. Charlie is furry. Charlie is red. Charlie is rough. Charlie is smart. Dave is rough. Dave is round. Erin is furry. Erin is smart. Erin is young. Round people are green. If someone is green then they are furry. Green people are round. Smart people are furry. All red people are young. If Anne is round then Anne is green. Young, round people are green. Furry, round people are smart. If someone is smart and green then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-1006_Q12", "context": "The bald eagle does not eat the lion. The bald eagle eats the mouse. The bald eagle likes the bear. The bald eagle likes the lion. The bald eagle sees the bear. The bear is big. The bear likes the bald eagle. The bear likes the lion. The bear likes the mouse. The lion likes the bear. The lion sees the bald eagle. The mouse eats the bald eagle. The mouse is not blue. The mouse is young. The mouse likes the bear. The mouse sees the bald eagle. If the bald eagle sees the bear then the bear likes the lion. If the bear likes the mouse and the bear eats the mouse then the mouse sees the bald eagle. If something eats the bear then it does not see the mouse. If something is nice then it eats the bear. If something is big then it eats the mouse. If something eats the mouse then it is nice. If the bear likes the lion and the bear does not see the mouse then the mouse eats the lion. If something is blue and not nice then it sees the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not eat the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-116_Q17", "context": "The cat chases the tiger. The cat is young. The cat visits the rabbit. The rabbit chases the tiger. The rabbit eats the squirrel. The rabbit visits the cat. The rabbit visits the tiger. The squirrel chases the cat. The squirrel does not chase the rabbit. The tiger chases the cat. The tiger chases the rabbit. The tiger eats the rabbit. The tiger is not young. The tiger visits the cat. Young, rough things are cold. If something visits the cat then the cat eats the rabbit. All cold things are kind. If something eats the rabbit then it is rough. If something is kind and it eats the rabbit then it is not green. If something chases the rabbit then the rabbit chases the cat. If the cat visits the tiger then the tiger is not rough. If the tiger visits the cat and the tiger eats the cat then the cat chases the rabbit. If the squirrel eats the cat and the cat chases the squirrel then the squirrel does not visit the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-437_Q7", "context": "Anne is blue. Anne is furry. Anne is red. Anne is rough. Dave is big. Dave is blue. Dave is kind. Dave is round. Fiona is blue. Fiona is furry. Fiona is kind. Fiona is round. Harry is blue. Harry is furry. If Anne is rough and Anne is round then Anne is red. If something is kind and rough then it is red. Kind, furry things are round. Red, blue things are big. Blue, round things are rough. All big, blue things are kind. All rough things are big. All red, kind things are rough. If something is blue then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-601_Q9", "context": "The bear chases the squirrel. The bear is big. The cow is green. The cow is young. The rabbit is nice. The rabbit sees the bear. The squirrel is green. If someone visits the bear then they visit the rabbit. If someone is nice then they visit the bear. If someone chases the rabbit and they see the bear then the rabbit visits the squirrel. If someone visits the rabbit then they are green. If someone sees the bear then they visit the bear. If someone chases the cow then they are round. If the cow chases the bear then the bear visits the rabbit. If someone is green then they visit the cow. If someone is nice and they visit the cow then they chase the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit visits the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-97_Q8", "context": "Anne is young. Charlie is green. Charlie is red. Charlie is round. Erin is green. Erin is quiet. Harry is green. If someone is green then they are red. If someone is red and young then they are quiet. All young people are furry. All furry, quiet people are round. All furry people are young. If someone is red then they are round. Round, green people are furry. If someone is round then they are green. All furry, rough people are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-915_Q6", "context": "The bald eagle likes the cat. The cat chases the dog. The cat is big. The cat needs the bald eagle. The dog likes the cat. The rabbit chases the cat. The rabbit is red. If someone likes the rabbit and the rabbit chases the bald eagle then the bald eagle chases the rabbit. If someone likes the bald eagle and the bald eagle needs the dog then the dog chases the rabbit. If someone needs the rabbit then they chase the rabbit. If someone chases the cat and they are young then the cat likes the rabbit. If someone needs the rabbit and they like the dog then the rabbit likes the dog. If the bald eagle likes the cat then the bald eagle needs the rabbit. If someone chases the rabbit then the rabbit is young. If someone likes the rabbit then they need the cat. If someone likes the bald eagle and the bald eagle likes the dog then they need the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not chase the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-416_Q3", "context": "Anne is green. Bob is quiet. Bob is rough. Bob is round. Bob is white. Dave is big. Dave is rough. Dave is round. Harry is furry. Harry is green. All quiet people are round. All round people are big. All white, quiet people are rough. If Anne is white and Anne is big then Anne is furry. If someone is round and green then they are furry. Green people are quiet. All big, round people are white. Round, big people are quiet. All rough, quiet people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-979_Q12", "context": "The cow is cold. The cow likes the tiger. The cow needs the dog. The cow sees the dog. The dog likes the tiger. The lion is blue. The lion is green. The lion likes the dog. The lion likes the tiger. The lion sees the cow. The tiger likes the dog. The tiger needs the dog. The tiger sees the dog. The tiger sees the lion. If something sees the cow then it is kind. If something is blue and it likes the cow then it is cold. If something is green then it needs the lion. If something sees the tiger and the tiger is cold then the tiger sees the cow. If something likes the lion then it is kind. If something is kind and it sees the dog then it likes the cow. If something likes the cow then it is blue. If something needs the dog and the dog sees the cow then the dog is young. If something needs the dog then it likes the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-362_Q3", "context": "Anne is blue. Anne is white. Charlie is white. Erin is red. Erin is white. Gary is green. Gary is red. All white, kind people are red. Blue people are green. All green, nice people are rough. All nice people are green. All white people are nice. Blue people are nice. If Charlie is blue and Charlie is nice then Charlie is red. Rough people are kind. Green, rough people are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-1027_Q9", "context": "The bald eagle is blue. The bald eagle sees the cat. The bald eagle visits the tiger. The cat is green. The cat sees the squirrel. The squirrel needs the cat. The tiger is blue. The tiger is cold. The tiger needs the squirrel. The tiger does not see the bald eagle. The tiger sees the squirrel. The tiger does not visit the cat. If someone sees the tiger then the tiger is green. If someone is nice and green then they see the tiger. If the bald eagle needs the squirrel then the bald eagle is green. If someone sees the cat and they need the cat then the cat needs the squirrel. If someone visits the squirrel and they are not blue then the squirrel does not visit the tiger. If someone is green then they are nice. If someone visits the cat then the cat does not see the squirrel. If someone needs the bald eagle and the bald eagle sees the tiger then the tiger sees the squirrel. If someone visits the tiger and the tiger does not see the cat then the tiger needs the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-105_Q10", "context": "The bald eagle chases the lion. The bald eagle is rough. The bald eagle needs the rabbit. The cow chases the bald eagle. The lion is big. The lion needs the cow. The lion visits the cow. The rabbit chases the bald eagle. The rabbit is green. The rabbit is round. The rabbit needs the bald eagle. If something is rough then it visits the lion. If something is green and it visits the cow then the cow visits the lion. If something visits the cow then it is rough. If something needs the lion and the lion chases the rabbit then the lion chases the cow. If something visits the lion then the lion chases the rabbit. If something needs the cow then the cow visits the rabbit. If something chases the rabbit and the rabbit is green then the rabbit visits the cow. If the cow visits the rabbit then the cow chases the bald eagle. If something needs the cow and the cow visits the bald eagle then the bald eagle chases the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1046_Q4", "context": "Anne is nice. Anne is rough. Bob is kind. Bob is rough. Fiona is big. Fiona is blue. Fiona is kind. Fiona is nice. Fiona is round. Fiona is white. Harry is round. If Anne is round then Anne is blue. If someone is rough then they are round. If someone is kind then they are big. All blue, white people are rough. If someone is blue then they are round. All white, nice people are kind. Blue people are white. If someone is kind then they are blue. All big people are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-314_Q14", "context": "Anne is furry. Bob is not green. Bob is round. Charlie is cold. Charlie is not red. Gary is cold. Gary is young. If someone is green and furry then they are cold. Smart people are young. Young people are green. If Anne is furry and Anne is red then Anne is smart. If Bob is furry then Bob is not cold. If someone is furry then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-505_Q4", "context": "The bear chases the rabbit. The bear is round. The cow is cold. The cow is green. The mouse chases the rabbit. The mouse is cold. The mouse is round. The mouse visits the cow. The rabbit is cold. The rabbit is red. The rabbit is round. The rabbit visits the bear. If someone is red then they chase the mouse. If the rabbit is red and the rabbit likes the cow then the rabbit is cold. If the cow chases the rabbit then the cow likes the rabbit. If someone visits the bear then the bear likes the rabbit. If someone likes the cow then the cow is red. If someone likes the cow and the cow likes the rabbit then the rabbit chases the bear. If someone chases the mouse then they like the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not like the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1385_Q8", "context": "Anne is green. Anne is young. Bob is green. Bob is young. Charlie is cold. Charlie is quiet. Gary is big. If someone is quiet then they are young. Cold people are quiet. Big people are red. Quiet people are cold. All young people are quiet. Red people are green. Green people are young. All blue, red people are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-502_Q13", "context": "Anne is big. Anne is blue. Anne is cold. Anne is green. Anne is smart. Bob is blue. Bob is green. Bob is nice. Fiona is green. Fiona is nice. Gary is big. Gary is blue. Gary is round. Gary is smart. All smart things are blue. All blue, nice things are cold. If something is cold then it is blue. All nice, big things are round. Green, nice things are big. All nice things are big. If something is smart and nice then it is round. Cold things are smart. Round, big things are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-209_Q17", "context": "The cat is red. The cat is rough. The cat visits the squirrel. The lion likes the mouse. The lion likes the squirrel. The lion sees the cat. The mouse is green. The mouse is round. The mouse does not see the cat. The mouse visits the squirrel. The squirrel likes the mouse. The squirrel sees the cat. The squirrel sees the lion. The squirrel visits the lion. If something visits the cat and it visits the lion then it does not visit the mouse. If something visits the lion then it visits the cat. If something is young then it visits the lion. If the squirrel visits the cat then the cat is young. If something visits the squirrel and it is round then the squirrel sees the mouse. If the cat sees the squirrel then the cat is not green. If something likes the squirrel and it does not visit the lion then the lion does not like the cat. If something likes the lion and it sees the lion then it sees the cat. If something likes the cat then it sees the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not visit the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-765_Q8", "context": "The cat is big. The cat is green. The cat is kind. The cow sees the dog. The dog eats the cat. The dog sees the cow. The dog visits the cat. The lion eats the cow. The lion eats the dog. The lion visits the cat. If someone is rough then they see the cow. If someone visits the cat and the cat is rough then the cat eats the lion. If someone is rough then they visit the cow. If someone eats the lion and they are big then the lion is kind. If someone sees the lion then the lion visits the cat. All kind people are rough. If someone is green and they visit the cow then the cow visits the lion. If the cat visits the lion and the lion sees the cat then the lion sees the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-183_Q2", "context": "Anne is quiet. Anne is red. Bob is big. Bob is red. Bob is smart. Dave is big. Dave is blue. Dave is quiet. Dave is red. Dave is rough. Dave is young. Erin is blue. Erin is quiet. Erin is rough. Erin is smart. Erin is young. All young, rough people are quiet. If someone is quiet then they are red. Blue, big people are rough. Big, red people are rough. If someone is smart then they are young. All red people are smart. If someone is young and smart then they are blue. Blue people are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-764_Q22", "context": "The bald eagle sees the tiger. The bald eagle visits the dog. The cat is big. The cat is red. The cat needs the bald eagle. The cat needs the dog. The cat sees the bald eagle. The dog is red. The dog sees the cat. The tiger is blue. The tiger needs the bald eagle. The tiger needs the cat. The tiger needs the dog. The tiger sees the bald eagle. The tiger sees the dog. The tiger visits the cat. If someone visits the tiger and they are kind then the tiger is round. If someone visits the cat and the cat needs the bald eagle then the bald eagle needs the cat. If someone sees the dog and the dog is blue then the dog is big. If someone visits the tiger and the tiger needs the dog then they need the dog. If the bald eagle needs the dog then the dog needs the tiger. If the cat sees the bald eagle and the cat needs the bald eagle then the bald eagle is kind. If someone needs the bald eagle and they are big then they visit the tiger. If someone is round and kind then they visit the tiger. Kind people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat sees the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1299_Q8", "context": "Anne is nice. Bob is big. Bob is nice. Bob is round. Charlie is nice. Charlie is red. Erin is cold. Red, big things are round. If something is cold and kind then it is big. If Anne is white and Anne is nice then Anne is cold. Big things are kind. If something is kind and red then it is white. All nice things are round. If something is round and cold then it is big. All round, red things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-896_Q16", "context": "Anne is big. Anne is furry. Anne is green. Anne is quiet. Bob is cold. Bob is furry. Gary is green. Harry is big. Harry is cold. Harry is green. Harry is nice. Green things are blue. All cold things are blue. If something is blue then it is big. Big things are nice. Nice, blue things are green. If something is blue and not big then it is quiet. All nice, green things are quiet. If something is blue and not cold then it is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-949_Q13", "context": "Bob is rough. Charlie is green. Charlie is quiet. Charlie is round. Charlie is smart. Charlie is young. Fiona is green. Fiona is quiet. Fiona is rough. Fiona is round. Fiona is smart. Fiona is white. Fiona is young. Gary is white. Green people are quiet. All smart, white people are young. If someone is white then they are smart. All quiet, young people are round. Rough people are white. If someone is quiet then they are young. Rough, smart people are green. Quiet people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-15_Q15", "context": "The cow sees the dog. The cow sees the rabbit. The cow visits the mouse. The dog needs the mouse. The dog sees the mouse. The dog sees the rabbit. The dog visits the mouse. The mouse is blue. The mouse is not kind. The mouse needs the cow. The mouse sees the dog. The mouse sees the rabbit. The mouse does not visit the cow. The mouse visits the dog. The mouse visits the rabbit. The rabbit is blue. If the dog visits the cow and the cow sees the rabbit then the dog sees the cow. If something visits the cow and the cow needs the dog then the dog is rough. Blue things are young. If something visits the mouse then it is blue. If something is young then it sees the mouse. If something sees the cow then it is not kind. If something visits the mouse and it is kind then it needs the cow. If something needs the rabbit and it needs the dog then the rabbit needs the mouse. If the cow sees the mouse then the cow is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not need the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-744_Q17", "context": "The bear likes the tiger. The mouse eats the squirrel. The mouse is green. The mouse is not round. The squirrel eats the mouse. The squirrel is not cold. The squirrel does not like the tiger. The squirrel sees the mouse. The tiger likes the mouse. The tiger likes the squirrel. If someone is young then they eat the squirrel. If someone sees the squirrel then they eat the mouse. If someone eats the mouse then they like the squirrel. If someone eats the squirrel then they eat the tiger. If someone likes the bear then they are not round. If someone eats the tiger then they like the bear. If someone is cold and round then they do not like the bear. If someone eats the mouse then they are young. If someone likes the bear and they eat the bear then they are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not eat the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-957_Q23", "context": "The bald eagle chases the bear. The bald eagle is rough. The bald eagle visits the rabbit. The bear is young. The bear visits the bald eagle. The dog visits the bear. The rabbit sees the dog. If something sees the bald eagle then it chases the rabbit. If something is young then it sees the dog. If the bald eagle is cold then the bald eagle chases the bear. If something visits the rabbit then it sees the bald eagle. If something is rough and it sees the dog then the dog is young. If something sees the bald eagle and the bald eagle chases the rabbit then it sees the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-945_Q5", "context": "Anne is furry. Charlie is nice. Erin is big. Erin is furry. Erin is kind. Erin is nice. Erin is rough. Erin is round. Erin is white. Fiona is furry. Fiona is kind. Fiona is white. All furry, rough things are white. If something is big and round then it is kind. If something is white and furry then it is big. Big things are nice. If Erin is kind then Erin is furry. All big things are round. Furry things are rough. Furry, white things are big. Round, big things are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-138_Q9", "context": "Anne is big. Anne is blue. Anne is furry. Anne is kind. Anne is nice. Dave is nice. Dave is round. Gary is furry. Gary is kind. Gary is nice. Gary is round. Harry is nice. Harry is round. Harry is white. If something is kind and white then it is big. If something is blue and round then it is furry. If something is kind and white then it is blue. If Dave is nice and Dave is furry then Dave is kind. All blue, kind things are round. If something is white then it is blue. If something is nice then it is white. All round, kind things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-107_Q19", "context": "The bald eagle is kind. The bald eagle is young. The cat is not big. The cat is kind. The cow sees the bald eagle. The cow visits the cat. The rabbit is big. The rabbit is kind. The rabbit is young. The rabbit sees the bald eagle. The rabbit does not see the cat. The rabbit visits the cat. If something visits the rabbit then the rabbit likes the bald eagle. If something visits the bald eagle and it visits the cat then the cat likes the cow. If something likes the rabbit then the rabbit visits the bald eagle. If something visits the cat and it likes the cat then it likes the bald eagle. If something likes the cow then it visits the cow. If something sees the bald eagle and it visits the cat then the cat likes the rabbit. If the rabbit does not visit the cat then the rabbit likes the cow. If something visits the cow then the cow visits the rabbit. If something sees the cow and the cow does not see the bald eagle then the cow visits the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not visit the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-516_Q22", "context": "The bald eagle chases the bear. The bald eagle is big. The bald eagle is cold. The bear is green. The bear needs the bald eagle. The bear needs the rabbit. The rabbit chases the squirrel. The rabbit needs the squirrel. The squirrel eats the rabbit. The squirrel needs the bear. If someone is big and they chase the squirrel then they need the rabbit. If someone is blue and they need the squirrel then they are big. If the bald eagle eats the rabbit and the bald eagle chases the squirrel then the squirrel eats the rabbit. If the rabbit chases the bear and the bear is blue then the rabbit is green. If someone chases the squirrel then the squirrel chases the rabbit. If someone needs the rabbit and they are cold then the rabbit is blue. If someone is cold then they chase the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-171_Q9", "context": "The bear is cold. The lion eats the squirrel. The lion likes the bear. The squirrel is rough. The squirrel likes the tiger. The tiger eats the squirrel. The tiger is rough. The tiger is round. The tiger is young. The tiger likes the bear. The tiger sees the bear. If someone likes the squirrel and they see the lion then the lion eats the squirrel. If someone is rough and they like the squirrel then the squirrel is not blue. If the lion is cold then the lion sees the squirrel. If someone likes the tiger and they like the lion then the lion is cold. If someone is rough and they like the lion then they eat the lion. If someone is round then they like the lion. If someone sees the lion and they like the tiger then the lion eats the bear. If someone is rough then they like the squirrel. If someone likes the squirrel then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-286_Q10", "context": "The cow needs the rabbit. The dog needs the cow. The dog needs the squirrel. The rabbit is red. The rabbit needs the cow. The rabbit sees the squirrel. The squirrel chases the rabbit. If something sees the cow then it is red. If something chases the rabbit then the rabbit sees the cow. If something needs the squirrel and it needs the cow then the cow sees the rabbit. If something needs the dog then it needs the rabbit. If something is red then it needs the dog. If the cow is red and the cow needs the rabbit then the rabbit is round. If something sees the squirrel and it sees the cow then the squirrel sees the cow. If something needs the squirrel and the squirrel sees the dog then the dog is round. If something sees the cow then it sees the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-429_Q3", "context": "Bob is big. Bob is smart. Dave is cold. Dave is round. Dave is smart. Dave is young. Erin is cold. Erin is round. Erin is smart. Harry is green. If someone is round then they are white. Big people are cold. Big, round people are cold. All cold people are round. Smart, white people are green. If Harry is green then Harry is cold. All round people are white. All green, smart people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-871_Q3", "context": "The bald eagle is cold. The bald eagle sees the lion. The bald eagle visits the cow. The cow chases the bald eagle. The cow chases the lion. The cow is cold. The cow is nice. The cow sees the lion. The cow visits the squirrel. The lion is cold. The lion sees the squirrel. The squirrel chases the lion. The squirrel is blue. The squirrel is cold. If someone visits the bald eagle then the bald eagle is round. If someone sees the lion then they are blue. If someone visits the squirrel then they are round. If someone is cold then they visit the squirrel. If someone visits the cow then they chase the bald eagle. If someone is round then they visit the cow. If someone chases the cow and they chase the squirrel then the cow is round. If someone chases the bald eagle then they see the cow. If the lion is young then the lion visits the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-101_Q12", "context": "Bob is blue. Bob is smart. Erin is green. Erin is nice. Erin is smart. Fiona is blue. Harry is blue. Harry is nice. Harry is rough. Harry is young. Rough, blue things are smart. If Erin is smart and Erin is blue then Erin is young. All green, red things are nice. If something is nice and blue then it is green. Green things are young. Blue things are green. If something is young and blue then it is smart. Smart things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1157_Q11", "context": "Bob is big. Bob is blue. Bob is green. Bob is red. Bob is young. Charlie is big. Charlie is blue. Charlie is green. Charlie is white. Fiona is nice. Gary is big. Gary is blue. Gary is red. Gary is white. If something is blue then it is red. White, big things are red. Young things are green. If something is red then it is nice. All red, young things are blue. White things are blue. All nice things are young. All green, blue things are big. All green things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-981_Q6", "context": "The dog visits the squirrel. The lion is blue. The lion is green. The lion needs the rabbit. The rabbit is blue. The rabbit visits the dog. The squirrel is green. The squirrel is kind. The squirrel is round. The squirrel needs the dog. The squirrel needs the rabbit. If the lion is blue then the lion chases the dog. If something needs the squirrel then it is round. If something visits the lion and the lion needs the dog then the dog needs the lion. If something is green and round then it needs the lion. If the squirrel needs the lion then the squirrel visits the rabbit. If the squirrel chases the lion and the squirrel visits the dog then the squirrel is green. If something is round and it chases the dog then the dog needs the lion. If something needs the dog and it chases the dog then it chases the lion. If something visits the rabbit and it needs the lion then the lion needs the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not visit the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-855_Q12", "context": "Anne is big. Anne is blue. Anne is quiet. Anne is red. Anne is round. Erin is round. Erin is young. Fiona is quiet. Fiona is round. Gary is blue. If Gary is red then Gary is quiet. All quiet, round things are big. White, young things are blue. All round, young things are red. If something is young then it is big. White things are quiet. Quiet things are round. If something is blue then it is quiet. If Gary is round and Gary is big then Gary is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-723_Q2", "context": "The bald eagle likes the tiger. The bald eagle needs the lion. The bald eagle needs the squirrel. The bald eagle needs the tiger. The bald eagle visits the tiger. The lion likes the squirrel. The lion likes the tiger. The lion needs the bald eagle. The lion needs the tiger. The lion visits the squirrel. The squirrel is big. The squirrel is rough. The squirrel needs the tiger. The tiger likes the squirrel. The tiger needs the lion. The tiger visits the bald eagle. If someone likes the lion and they like the squirrel then the squirrel visits the tiger. If someone visits the squirrel and they visit the bald eagle then they need the lion. If someone needs the lion and the lion is round then they like the lion. If the squirrel needs the tiger and the tiger likes the squirrel then the tiger is rough. If someone is blue and they need the lion then the lion is kind. If someone needs the tiger then they visit the bald eagle. If someone needs the squirrel then the squirrel needs the bald eagle. If someone needs the bald eagle then they are blue. If someone is kind and they like the tiger then they like the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not visit the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-180_Q9", "context": "The bear chases the tiger. The bear is cold. The bear likes the tiger. The dog chases the tiger. The dog likes the mouse. The dog needs the tiger. The mouse chases the dog. The mouse is green. The mouse is round. The mouse likes the tiger. The tiger chases the mouse. The tiger is round. The tiger likes the bear. The tiger needs the bear. If something chases the dog then it likes the tiger. If something needs the bear then it is young. If something needs the dog and the dog likes the mouse then the dog needs the bear. If something is young then it needs the dog. If something needs the dog and it needs the bear then it is nice. If something chases the mouse and it likes the tiger then it likes the dog. If something needs the dog and the dog is round then the dog needs the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-456_Q7", "context": "Anne is big. Anne is cold. Anne is nice. Charlie is big. Charlie is cold. Charlie is nice. Charlie is red. Charlie is round. Charlie is smart. Charlie is white. Dave is round. Fiona is big. Smart people are big. If Dave is big then Dave is nice. Round people are smart. If someone is red and nice then they are white. All smart, red people are round. All round, white people are red. If someone is nice then they are red. If Charlie is cold then Charlie is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-146_Q13", "context": "Anne is not green. Anne is not quiet. Anne is white. Charlie is green. Dave is green. Dave is not kind. Erin is not cold. Erin is green. Erin is kind. Erin is not quiet. Erin is round. Erin is not smart. Quiet, green things are round. All green things are round. If Dave is not white and Dave is not green then Dave is smart. If something is round then it is not quiet. If Anne is quiet and Anne is not smart then Anne is kind. If Erin is kind and Erin is smart then Erin is white. If Charlie is not quiet then Charlie is smart. Cold things are kind. If something is smart then it is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-425_Q14", "context": "The cat likes the dog. The cat sees the dog. The cat sees the rabbit. The dog sees the lion. The lion likes the cat. The lion sees the rabbit. The rabbit likes the dog. If something is cold then it likes the lion. If something likes the lion then the lion likes the dog. If something likes the dog then it is cold. If something sees the dog and the dog eats the rabbit then it is big. If something likes the dog then the dog is cold. If something sees the cat then it is red. If something is red and it likes the dog then the dog is big. If something sees the rabbit then it sees the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-563_Q6", "context": "The bald eagle is nice. The bald eagle sees the cat. The bald eagle visits the cat. The bald eagle visits the lion. The bald eagle visits the mouse. The cat is kind. The lion is kind. The mouse is nice. The mouse needs the cat. The mouse sees the cat. The mouse visits the bald eagle. If someone sees the mouse and the mouse needs the cat then the cat sees the mouse. If the lion is big then the lion is kind. If someone needs the bald eagle then the bald eagle needs the cat. If someone visits the cat and the cat sees the lion then the lion needs the mouse. If the mouse needs the cat and the mouse needs the lion then the cat sees the lion. All young people are nice. If someone needs the cat then they need the lion. If someone visits the bald eagle then they see the lion. If someone needs the mouse then they are young.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not see the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1076_Q18", "context": "Anne is rough. Anne is smart. Bob is furry. Bob is kind. Charlie is smart. Dave is big. Dave is smart. If something is kind then it is nice. All nice, kind things are blue. All blue things are nice. If something is smart then it is big. If something is nice and blue then it is furry. If something is rough and big then it is kind. All nice things are kind. All rough things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-399_Q12", "context": "The bald eagle eats the squirrel. The bald eagle needs the lion. The cow is blue. The cow is green. The cow is not red. The cow is not round. The cow needs the lion. The cow visits the squirrel. The lion eats the bald eagle. The lion is blue. The lion visits the squirrel. The squirrel eats the lion. The squirrel is blue. The squirrel is round. If someone is green and they do not eat the cow then they do not eat the lion. All rough people are green. If someone visits the squirrel then the squirrel is rough. If someone is round and they visit the bald eagle then the bald eagle eats the lion. If the cow eats the lion then the cow is not round. If someone is green and blue then they visit the bald eagle. If someone is green then they visit the bald eagle. If the squirrel visits the cow and the cow visits the bald eagle then the squirrel eats the bald eagle. If someone eats the lion then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-511_Q17", "context": "Bob is quiet. Bob is red. Bob is rough. Charlie is cold. Charlie is quiet. Dave is quiet. Harry is cold. All quiet, cold things are furry. If something is cold then it is white. If Harry is furry and Harry is white then Harry is red. If Dave is blue then Dave is furry. If something is red then it is rough. If something is white then it is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-858_Q19", "context": "The bear is kind. The cow is young. The cow likes the bear. The cow sees the dog. The cow sees the mouse. The dog likes the mouse. The dog sees the cow. The dog sees the mouse. The mouse is kind. The mouse sees the bear. If the dog sees the bear then the bear likes the mouse. If something likes the mouse then it sees the bear. If something needs the mouse then the mouse sees the bear. If something needs the bear and the bear is round then the bear needs the mouse. If something sees the bear then it likes the dog. If something likes the dog and the dog sees the bear then the dog is young. If something sees the cow and it likes the cow then it needs the dog. If something likes the dog and the dog sees the bear then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not like the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-807_Q8", "context": "The bald eagle does not need the tiger. The bald eagle sees the squirrel. The cow is young. The cow does not need the tiger. The squirrel is big. The squirrel is cold. The squirrel likes the bald eagle. The tiger is big. The tiger likes the squirrel. The tiger sees the bald eagle. If someone sees the squirrel then they like the bald eagle. If the bald eagle likes the tiger then the bald eagle is cold. If someone is cold and they like the squirrel then they like the cow. If someone is big and they like the cow then the cow is big. If someone is kind then they are not rough. Big people are cold. Cold, big people are kind. If someone needs the tiger and they see the cow then the tiger does not need the squirrel. If someone needs the squirrel and the squirrel is not cold then they do not need the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-697_Q7", "context": "Bob is green. Bob is red. Bob is not round. Bob is young. Dave is smart. Erin is not smart. Harry is cold. If someone is smart and green then they are young. If someone is smart then they are green. If Harry is cold then Harry is blue. All young, smart people are cold. Green, young people are cold. If Bob is smart then Bob is round. If someone is red then they are not blue. If someone is cold and green then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-507_Q24", "context": "The bald eagle eats the cow. The bald eagle eats the rabbit. The bald eagle is cold. The bald eagle needs the cow. The bald eagle needs the rabbit. The cat eats the cow. The cat eats the rabbit. The cat is nice. The cow is round. The cow needs the bald eagle. The cow visits the bald eagle. The rabbit eats the cat. The rabbit visits the bald eagle. The rabbit visits the cow. If someone eats the cat and the cat needs the bald eagle then the bald eagle is round. If someone is blue and round then they visit the rabbit. If someone is blue then they need the cow. If someone needs the cow then they visit the cow. If the cow visits the rabbit and the cow is blue then the cow eats the rabbit. If someone needs the bald eagle then the bald eagle is blue. If someone visits the cat and they need the cow then they eat the cat. If someone is blue and they need the cow then the cow is blue. If someone eats the rabbit then they need the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow visits the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-653_Q8", "context": "The bear chases the mouse. The bear sees the tiger. The mouse chases the tiger. The mouse is young. The rabbit is cold. The rabbit is nice. The rabbit needs the mouse. The rabbit needs the tiger. The tiger is blue. The tiger is young. The tiger needs the rabbit. The tiger sees the bear. If someone needs the bear then they see the rabbit. If someone sees the rabbit then they need the tiger. If someone is big then they chase the bear. If someone needs the bear then the bear sees the tiger. If the rabbit is young and the rabbit sees the bear then the rabbit chases the tiger. If someone needs the rabbit then they chase the mouse. If the mouse needs the bear then the bear is young. If the rabbit chases the mouse then the mouse chases the tiger. If someone is young then they need the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not need the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-765_Q24", "context": "The cat is big. The cat is green. The cat is kind. The cow sees the dog. The dog eats the cat. The dog sees the cow. The dog visits the cat. The lion eats the cow. The lion eats the dog. The lion visits the cat. If someone is rough then they see the cow. If someone visits the cat and the cat is rough then the cat eats the lion. If someone is rough then they visit the cow. If someone eats the lion and they are big then the lion is kind. If someone sees the lion then the lion visits the cat. All kind people are rough. If someone is green and they visit the cow then the cow visits the lion. If the cat visits the lion and the lion sees the cat then the lion sees the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-240_Q18", "context": "The mouse chases the squirrel. The mouse chases the tiger. The mouse eats the rabbit. The mouse is blue. The rabbit chases the mouse. The rabbit eats the mouse. The rabbit eats the squirrel. The rabbit eats the tiger. The rabbit needs the mouse. The rabbit needs the squirrel. The squirrel chases the rabbit. The squirrel is blue. The squirrel is cold. The squirrel needs the rabbit. The tiger eats the rabbit. The tiger needs the mouse. If something eats the rabbit then it needs the tiger. If the tiger is big then the tiger chases the rabbit. If something chases the mouse then it eats the squirrel. If something eats the squirrel and it eats the mouse then it is red. If the tiger chases the rabbit then the rabbit chases the tiger. If the rabbit chases the tiger then the rabbit needs the tiger. If something needs the tiger and the tiger needs the mouse then the tiger is big. If something is big and it needs the rabbit then it chases the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel eats the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1017_Q12", "context": "Dave is smart. Erin is furry. Erin is round. Gary is furry. Gary is nice. Gary is white. Harry is nice. Young, white things are nice. All young, smart things are furry. Nice, young things are furry. If something is smart then it is white. If Dave is nice and Dave is white then Dave is round. Furry things are young. Round, smart things are kind. If Harry is nice then Harry is smart. Smart things are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-454_Q11", "context": "The bald eagle is green. The bald eagle is kind. The bald eagle visits the bear. The bear is cold. The bear is round. The bear needs the cat. The bear sees the rabbit. The cat is green. The cat sees the rabbit. The cat visits the bald eagle. The rabbit visits the bear. If something visits the bald eagle and the bald eagle needs the cat then it is cold. If something visits the bald eagle and the bald eagle sees the rabbit then it sees the bear. If something visits the cat then it needs the cat. If the rabbit needs the cat and the rabbit needs the bald eagle then the bald eagle needs the rabbit. If something sees the bear then it visits the rabbit. If something is round then it needs the bald eagle. If something is green then it sees the bear. If something needs the bald eagle then the bald eagle is young. If the bald eagle is green and the bald eagle visits the rabbit then the bald eagle visits the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-511_Q16", "context": "The bear chases the mouse. The bear is rough. The bear is round. The bear likes the mouse. The bear sees the mouse. The cow is nice. The mouse chases the cow. The mouse chases the rabbit. The mouse is cold. The mouse likes the bear. The mouse sees the cow. The rabbit chases the bear. The rabbit is cold. The rabbit is round. If something chases the rabbit and it sees the mouse then it likes the rabbit. If something likes the rabbit then the rabbit chases the mouse. If something chases the mouse then it likes the bear. If something is cold then it likes the cow. If something is nice and it likes the cow then the cow chases the rabbit. If something likes the bear then it chases the rabbit. If the rabbit sees the cow then the cow chases the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse likes the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1320_Q4", "context": "Anne is furry. Anne is quiet. Bob is furry. Bob is green. Bob is quiet. Bob is red. Bob is white. Dave is big. Dave is furry. Dave is green. Dave is quiet. Dave is red. Dave is smart. Dave is white. Harry is furry. Harry is green. If someone is quiet and smart then they are white. If someone is furry and red then they are quiet. Quiet people are smart. All green, quiet people are big. Green people are big. All white people are green. If Anne is big and Anne is white then Anne is red. If someone is green and furry then they are big. If Bob is quiet and Bob is big then Bob is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-317_Q12", "context": "The cow chases the dog. The cow chases the lion. The cow chases the rabbit. The cow is nice. The cow visits the dog. The dog chases the lion. The dog chases the rabbit. The dog is kind. The lion chases the dog. The lion chases the rabbit. The lion is rough. The lion visits the cow. The lion visits the rabbit. The rabbit is kind. The rabbit is round. The rabbit visits the dog. If the lion eats the dog then the dog visits the lion. If someone visits the cow and they visit the rabbit then they are round. If someone chases the dog and the dog is kind then they are red. If someone chases the rabbit and they are rough then they eat the lion. If someone chases the dog then they are rough. If someone eats the lion then they are nice. If someone is nice and kind then they chase the dog. If someone visits the rabbit and they eat the lion then the rabbit eats the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-395_Q24", "context": "Anne is green. Anne is young. Fiona is nice. Fiona is round. Fiona is young. Gary is round. Harry is kind. If Gary is round then Gary is not young. All red people are round. Red people are young. All kind people are young. If Anne is red then Anne is quiet. Nice people are red. If someone is quiet and young then they are nice. If Harry is kind and Harry is young then Harry is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-916_Q14", "context": "The bear is not young. The dog is red. The dog is young. The dog does not need the bear. The dog sees the squirrel. The dog sees the tiger. The squirrel chases the dog. The squirrel is cold. The squirrel needs the tiger. The squirrel does not see the tiger. The tiger is rough. The tiger needs the bear. The tiger needs the squirrel. The tiger sees the squirrel. If something chases the squirrel then the squirrel is not red. If something chases the bear then it is nice. Red things are nice. If something sees the squirrel then the squirrel is nice. If something is nice then it chases the bear. If something is nice then it does not need the dog. If something is young and rough then it needs the bear. If something chases the bear then the bear is red. If something needs the dog and it is not nice then the dog needs the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-849_Q9", "context": "The cat does not chase the dog. The cat chases the tiger. The cat likes the dog. The dog chases the cat. The dog chases the tiger. The dog is green. The dog is nice. The dog likes the cat. The dog likes the squirrel. The dog likes the tiger. The dog sees the cat. The squirrel is red. The tiger does not chase the squirrel. The tiger is cold. The tiger is red. The tiger sees the dog. If the tiger chases the squirrel then the squirrel sees the tiger. If someone likes the squirrel and the squirrel likes the cat then the cat does not see the tiger. If someone chases the tiger and the tiger does not see the cat then they are not green. If someone chases the squirrel and they chase the tiger then the squirrel sees the cat. If someone chases the dog then they chase the squirrel. If someone sees the cat then they chase the dog. If someone likes the squirrel and they are not cold then they are nice. If someone chases the dog and they do not like the dog then the dog likes the cat. If someone sees the dog and they are not nice then they see the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel chases the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-513_Q13", "context": "Bob is not furry. Charlie is cold. Charlie is nice. Charlie is quiet. Charlie is white. Dave is quiet. Fiona is kind. If someone is furry and rough then they are quiet. If Dave is quiet and Dave is rough then Dave is white. All quiet people are cold. If Bob is cold and Bob is quiet then Bob is not kind. If Dave is white and Dave is quiet then Dave is kind. Cold people are rough. Cold, kind people are nice. All furry people are kind. If someone is furry and not white then they are not kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-319_Q6", "context": "The bald eagle chases the mouse. The bald eagle needs the cat. The cat needs the rabbit. The cat visits the bald eagle. The mouse chases the cat. The mouse chases the rabbit. The mouse is rough. The mouse needs the bald eagle. The mouse visits the cat. The mouse visits the rabbit. The rabbit does not chase the mouse. The rabbit visits the bald eagle. If something chases the mouse then the mouse visits the rabbit. If something needs the rabbit and the rabbit is red then the rabbit chases the cat. If something is kind then it needs the mouse. If something is round then it is not blue. If the bald eagle needs the rabbit and the rabbit visits the bald eagle then the rabbit is kind. If something chases the rabbit then the rabbit does not chase the mouse. If something visits the bald eagle then it is kind. If the cat visits the bald eagle and the bald eagle chases the rabbit then the bald eagle visits the cat. If the mouse visits the cat and the cat needs the mouse then the mouse visits the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not need the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-810_Q4", "context": "Charlie is cold. Charlie is green. Charlie is quiet. Dave is young. Erin is quiet. Erin is young. Gary is nice. If Erin is green and Erin is quiet then Erin is cold. If someone is quiet then they are green. All cold people are nice. If someone is kind and not quiet then they are nice. If Gary is not green then Gary is round. If someone is round and not cold then they are kind. All quiet, nice people are kind. All kind, nice people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-789_Q8", "context": "Anne is big. Anne is green. Anne is white. Bob is big. Charlie is big. Charlie is blue. Charlie is smart. Charlie is white. Fiona is big. Fiona is furry. Big people are blue. Blue, green people are smart. If someone is smart then they are white. All blue, red people are green. If someone is blue and furry then they are red. If Bob is furry and Bob is green then Bob is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-854_Q14", "context": "The bear is rough. The bear is not round. The bear likes the mouse. The bear likes the rabbit. The bear sees the mouse. The lion is cold. The lion needs the mouse. The lion needs the rabbit. The mouse likes the bear. The mouse likes the rabbit. The mouse does not see the rabbit. The rabbit is big. The rabbit is red. The rabbit likes the bear. The rabbit does not need the lion. The rabbit does not need the mouse. If something needs the bear and it does not need the lion then the lion likes the mouse. If the mouse sees the rabbit and the mouse sees the lion then the lion likes the mouse. If something is cold and it sees the mouse then the mouse is red. Red things are round. All rough things are cold. All round, big things are cold. If something is cold then it likes the lion. If something needs the lion then the lion likes the bear. Round things are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-704_Q3", "context": "The bald eagle chases the bear. The bald eagle is blue. The bald eagle is not cold. The bald eagle is green. The bear chases the squirrel. The bear likes the bald eagle. The bear likes the mouse. The mouse is blue. The mouse is young. The squirrel is rough. If the bald eagle chases the mouse then the mouse eats the bald eagle. If something chases the bald eagle and it is blue then the bald eagle chases the mouse. If something eats the bald eagle and it is young then it is green. If something likes the squirrel then it chases the bald eagle. If something is young then it likes the squirrel. If something likes the bear then it does not eat the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse likes the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-625_Q22", "context": "Charlie is cold. Dave is cold. Dave is kind. Dave is smart. Erin is cold. Erin is furry. Erin is kind. Erin is red. Erin is smart. Erin is young. Gary is young. If someone is smart then they are red. If Charlie is cold and Charlie is young then Charlie is big. All smart, cold people are young. Smart, big people are red. All young, big people are kind. Cold people are young. If someone is cold and red then they are smart. All big, kind people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-936_Q18", "context": "Bob is quiet. Bob is not red. Bob is rough. Bob is young. Charlie is round. Fiona is not green. Fiona is red. Fiona is rough. Fiona is not young. Gary is red. Gary is rough. Gary is young. All white, red people are green. All white people are green. If someone is green and young then they are red. If Gary is red then Gary is young. All round people are white. If Charlie is green and Charlie is rough then Charlie is young. If someone is quiet then they are young. All green, round people are young. Red, round people are not quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-974_Q8", "context": "The bear likes the lion. The dog is kind. The lion is green. The lion is kind. The lion likes the rabbit. The lion needs the bear. The lion sees the rabbit. The rabbit is blue. The rabbit needs the lion. The rabbit sees the bear. The rabbit does not see the dog. If someone is blue and green then they see the bear. If the rabbit is red and the rabbit does not like the dog then the rabbit is green. If someone sees the rabbit then they do not need the dog. If someone sees the bear then they need the rabbit. If someone likes the lion then the lion sees the dog. If someone needs the rabbit then they see the lion. If someone sees the rabbit and the rabbit sees the lion then the lion sees the bear. If someone sees the rabbit then the rabbit needs the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not see the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-79_Q17", "context": "The dog likes the mouse. The mouse is kind. The mouse sees the dog. The mouse sees the rabbit. The mouse sees the tiger. The rabbit likes the mouse. The rabbit does not see the mouse. The rabbit does not visit the dog. The rabbit does not visit the tiger. The tiger likes the dog. The tiger does not see the dog. The tiger does not visit the mouse. If something visits the dog then the dog visits the tiger. If something sees the tiger then it is big. If something likes the rabbit then the rabbit sees the tiger. If something likes the tiger and it sees the mouse then the mouse is kind. If something is big then it likes the rabbit. If something is green and it sees the tiger then it likes the tiger. If something sees the mouse then the mouse sees the rabbit. If something visits the rabbit then the rabbit is not young.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not like the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-1034_Q2", "context": "The bald eagle chases the bear. The bald eagle chases the lion. The bald eagle is nice. The bald eagle likes the lion. The bald eagle sees the bear. The bear likes the dog. The bear sees the bald eagle. The dog chases the bear. The dog chases the lion. The dog is big. The dog is blue. The dog is green. The lion is rough. The lion sees the bald eagle. If someone is blue and they like the bear then they chase the dog. If someone sees the bald eagle then they like the bear. If someone is green then they see the bald eagle. If someone chases the bald eagle and they chase the bear then they like the lion. If someone chases the bear then the bear is rough. If someone chases the dog then the dog chases the bald eagle. If the bald eagle is big then the bald eagle likes the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1063_Q8", "context": "Anne is blue. Anne is round. Anne is young. Bob is round. Bob is young. Erin is big. Harry is furry. If something is furry then it is blue. Round things are white. If Erin is blue and Erin is young then Erin is white. If Bob is rough then Bob is big. If something is blue then it is rough. If Anne is round then Anne is furry. If something is young and white then it is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-631_Q10", "context": "Anne is rough. Charlie is furry. Charlie is nice. Charlie is red. Charlie is rough. Dave is furry. Dave is green. Gary is blue. Gary is furry. Gary is nice. Gary is quiet. All green, red people are rough. If someone is rough then they are quiet. All blue people are red. If someone is rough and quiet then they are nice. All furry people are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-221_Q13", "context": "The bald eagle likes the lion. The bald eagle likes the tiger. The bald eagle visits the tiger. The lion is cold. The lion is red. The lion likes the bald eagle. The squirrel is cold. The squirrel visits the tiger. The tiger is green. The tiger visits the squirrel. If someone is big then they see the squirrel. If someone visits the bald eagle then the bald eagle visits the squirrel. If someone likes the squirrel and they visit the lion then they are big. If someone likes the bald eagle then the bald eagle visits the squirrel. If someone sees the squirrel then the squirrel visits the lion. If someone is cold then they like the squirrel. If the squirrel likes the tiger then the tiger visits the lion. If the tiger visits the squirrel then the tiger is big. If someone is kind then they like the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not visit the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-96_Q4", "context": "The cat chases the cow. The cat likes the rabbit. The cat likes the squirrel. The cat visits the squirrel. The cow chases the rabbit. The cow is cold. The cow is red. The rabbit chases the cat. The rabbit is red. The rabbit likes the cow. The rabbit visits the cow. The squirrel chases the rabbit. The squirrel is blue. The squirrel visits the cat. If someone is blue then they chase the squirrel. If someone chases the cow then the cow is round. If the rabbit is cold then the rabbit chases the cow. If someone likes the rabbit then they are round. Kind people are blue. If someone likes the cow then the cow is kind. If someone chases the squirrel then they chase the cow. If someone is blue then they like the cow. If someone chases the cow then they visit the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not visit the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-978_Q1", "context": "Anne is big. Anne is white. Bob is big. Bob is nice. Bob is red. Bob is white. Dave is not red. Dave is not round. Dave is not white. Harry is nice. Harry is white. All round things are nice. All nice things are blue. All red, big things are not kind. If something is big and red then it is white. If something is white then it is round. Nice things are round. If Dave is nice and Dave is white then Dave is blue. All white, blue things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-151_Q15", "context": "The bear is big. The cat is not blue. The cat is green. The cat needs the bear. The cat sees the bear. The cow likes the cat. The cow likes the rabbit. The cow sees the rabbit. The rabbit is green. The rabbit needs the bear. The rabbit sees the bear. If someone sees the cow then they are rough. If someone likes the cow then the cow does not see the rabbit. If someone sees the rabbit and they see the cow then they are round. If the cow is green then the cow sees the cat. If someone is green then they see the cat. If someone is green and they like the rabbit then they need the bear. If someone sees the cat and they are green then they need the cat. If someone sees the rabbit and they do not like the cow then the cow is not green. If someone likes the rabbit and the rabbit needs the cat then they are green.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-595_Q19", "context": "The bald eagle is kind. The bald eagle likes the tiger. The bald eagle needs the dog. The dog chases the bald eagle. The dog is blue. The dog needs the tiger. The lion chases the tiger. The lion needs the bald eagle. The tiger chases the bald eagle. The tiger chases the dog. The tiger likes the dog. If someone is kind and they like the lion then the lion is kind. If someone is nice then they chase the tiger. If someone chases the bald eagle and they are nice then the bald eagle is cold. If someone likes the dog then the dog is not nice. If someone likes the lion then they like the bald eagle. If someone is kind then they like the lion. If someone likes the bald eagle then they are not green.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not need the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1340_Q6", "context": "Bob is big. Bob is cold. Bob is smart. Charlie is cold. Charlie is smart. Dave is big. Fiona is red. If something is white and green then it is red. If something is kind then it is cold. If something is cold then it is white. If something is big then it is smart. All red things are smart. All smart things are kind. Kind, big things are green. If Fiona is smart then Fiona is white.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-278_Q3", "context": "Charlie is big. Charlie is not blue. Charlie is rough. Dave is furry. Erin is quiet. Erin is rough. Gary is young. If someone is young and big then they are not nice. If someone is furry and not young then they are big. All rough, quiet people are big. If someone is blue then they are quiet. All quiet, nice people are not furry. All rough, blue people are furry. If someone is young then they are rough. Furry, blue people are rough. If someone is rough and young then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-843_Q10", "context": "The bald eagle is blue. The bald eagle likes the cat. The bald eagle likes the squirrel. The bald eagle needs the cow. The cat likes the bald eagle. The cat likes the squirrel. The cat sees the cow. The cow is blue. The cow needs the cat. The squirrel does not like the bald eagle. The squirrel likes the cow. The squirrel does not need the cat. The squirrel needs the cow. The squirrel sees the bald eagle. If something needs the squirrel and it likes the bald eagle then the squirrel sees the bald eagle. If something sees the cow then the cow is kind. If something is kind then it does not like the cat. If something is big and it does not need the squirrel then it does not see the cat. If something is kind then it sees the cat. If something sees the cat then the cat is kind. If something sees the cat and it does not like the cat then it needs the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat likes the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-212_Q5", "context": "Anne is blue. Anne is furry. Anne is nice. Anne is quiet. Anne is round. Anne is smart. Anne is white. Dave is round. Erin is furry. Erin is nice. Erin is quiet. Erin is round. Erin is smart. Gary is round. Furry things are quiet. If something is round and blue then it is nice. Smart things are furry. If Anne is white then Anne is quiet. White, smart things are blue. All round things are furry. If Anne is quiet then Anne is furry. If Gary is quiet and Gary is round then Gary is smart. If Gary is smart then Gary is white.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-322_Q18", "context": "The bear chases the rabbit. The cat needs the rabbit. The dog chases the cat. The dog is big. The dog is cold. The rabbit eats the cat. The rabbit does not need the cat. If something eats the bear then it eats the rabbit. If something eats the dog then it chases the bear. If something chases the bear then the bear needs the rabbit. If something needs the rabbit then it eats the dog. If something is big and it eats the dog then it does not chase the dog. If the rabbit chases the bear then the rabbit needs the dog. If something is cold and not big then it does not eat the bear. If the bear chases the cat and the bear chases the dog then the dog does not need the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog eats the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-627_Q8", "context": "The bald eagle chases the dog. The bald eagle eats the squirrel. The bald eagle visits the dog. The dog chases the bald eagle. The dog visits the lion. The lion eats the dog. The squirrel visits the lion. If someone visits the bald eagle then the bald eagle chases the lion. If someone eats the lion then they visit the bald eagle. If someone visits the squirrel then the squirrel eats the lion. If someone eats the squirrel and they chase the lion then the squirrel chases the bald eagle. If someone visits the bald eagle then they visit the squirrel. If someone eats the dog then the dog visits the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not visit the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-789_Q13", "context": "Anne is big. Anne is green. Anne is white. Bob is big. Charlie is big. Charlie is blue. Charlie is smart. Charlie is white. Fiona is big. Fiona is furry. Big people are blue. Blue, green people are smart. If someone is smart then they are white. All blue, red people are green. If someone is blue and furry then they are red. If Bob is furry and Bob is green then Bob is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1160_Q6", "context": "Charlie is big. Dave is blue. Dave is cold. Dave is red. Fiona is nice. Fiona is red. Gary is nice. All quiet things are white. If something is red then it is quiet. If something is big then it is blue. If Fiona is white and Fiona is red then Fiona is cold. If something is blue and quiet then it is big. Cold, white things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-148_Q21", "context": "The bald eagle likes the squirrel. The bald eagle likes the tiger. The bald eagle visits the tiger. The bear likes the squirrel. The bear needs the tiger. The squirrel is nice. The squirrel is young. The squirrel likes the tiger. The tiger is young. The tiger likes the bald eagle. The tiger likes the squirrel. The tiger visits the bear. If the bear likes the squirrel and the bear likes the tiger then the tiger is nice. If something likes the bear and it likes the squirrel then it is red. If something needs the tiger then it likes the bear. If something is red then it is blue. If something is blue then it likes the bald eagle. If the tiger is red then the tiger needs the bear. If something likes the bald eagle and the bald eagle likes the tiger then it visits the bear. If something likes the bear then it is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not visit the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-337_Q16", "context": "The bald eagle eats the lion. The bald eagle is cold. The bald eagle is green. The bald eagle is nice. The cat chases the bald eagle. The cat needs the bald eagle. The cat needs the rabbit. The lion does not eat the cat. The lion eats the rabbit. The lion is nice. The lion needs the bald eagle. The lion needs the cat. The lion needs the rabbit. The rabbit is cold. If something eats the bald eagle then it needs the lion. If something is blue then it chases the lion. If the lion needs the bald eagle and the lion is young then the bald eagle does not eat the cat. If something chases the bald eagle then it is green. If something needs the cat then it is not young. If something is green and it chases the bald eagle then the bald eagle is blue. If something eats the bald eagle then the bald eagle is not blue. If something chases the lion then it needs the cat. If something needs the cat then it eats the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat needs the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-538_Q19", "context": "The cat eats the lion. The dog eats the lion. The dog is green. The dog needs the lion. The dog sees the squirrel. The lion is blue. The lion is nice. The squirrel is blue. The squirrel is green. The squirrel needs the cat. If something needs the dog and the dog sees the squirrel then it sees the squirrel. If something is green and it eats the dog then it eats the squirrel. If something is green then it eats the dog. If the squirrel sees the lion then the lion sees the dog. If something eats the squirrel then it is young. If something is young and it eats the lion then the lion is green. If the lion needs the dog and the dog needs the squirrel then the lion needs the cat. If something needs the lion and the lion eats the cat then it eats the lion. If something eats the lion then it sees the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not see the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-673_Q7", "context": "The bald eagle is rough. The bald eagle is not young. The bald eagle needs the cow. The bald eagle needs the tiger. The bear chases the bald eagle. The bear chases the cow. The bear is nice. The bear needs the bald eagle. The cow is not round. The cow visits the tiger. The tiger needs the bear. The tiger does not visit the bald eagle. If something needs the cow then the cow chases the bear. If something chases the cow and it does not need the cow then the cow is not cold. If something needs the bald eagle and it does not need the tiger then the tiger needs the bald eagle. If something visits the tiger then it is not round. If something is nice and it chases the tiger then the tiger chases the cow. If something chases the cow and the cow chases the bear then it chases the tiger. If something chases the tiger then it is nice. If something visits the tiger and it does not chase the tiger then it visits the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger chases the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-750_Q8", "context": "Anne is not cold. Anne is rough. Dave is furry. Dave is round. Gary is red. Gary is round. Harry is cold. Harry is not furry. Harry is kind. Harry is round. If Gary is big then Gary is cold. If Dave is not cold then Dave is furry. If Harry is big then Harry is kind. Rough people are big. If Anne is rough then Anne is round. If Gary is cold and Gary is big then Gary is rough. If Gary is cold then Gary is furry. If someone is red then they are rough. If someone is furry then they are not kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-320_Q2", "context": "The cow sees the rabbit. The mouse is not young. The mouse does not like the cow. The mouse sees the cow. The rabbit does not like the squirrel. The rabbit does not see the squirrel. The squirrel sees the mouse. If someone sees the squirrel then the squirrel likes the mouse. If someone is round and they need the cow then the cow is not red. If someone is nice then they like the mouse. If someone sees the cow then the cow does not like the rabbit. If someone sees the rabbit then they are nice. If someone likes the mouse then the mouse sees the rabbit. If someone is kind then they like the rabbit. If the rabbit sees the squirrel then the squirrel sees the cow. If someone likes the cow and they are not kind then the cow needs the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse likes the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-103_Q4", "context": "The lion chases the mouse. The lion does not chase the tiger. The lion is kind. The lion likes the mouse. The lion does not like the squirrel. The mouse chases the lion. The mouse does not chase the tiger. The mouse is not green. The mouse is not red. The mouse needs the tiger. The squirrel chases the mouse. The squirrel is big. The squirrel does not need the lion. The tiger is blue. Big people are red. If someone is blue then they chase the squirrel. If someone likes the lion then they do not need the squirrel. If someone is blue and they need the tiger then they like the tiger. If someone is kind then they need the lion. If someone needs the lion then they are blue. If someone is big then they are not blue. If someone chases the squirrel then they like the lion. If someone is blue then they chase the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not chase the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1000_Q3", "context": "Anne is blue. Anne is rough. Anne is white. Anne is young. Charlie is quiet. Charlie is young. Erin is smart. Erin is young. Harry is quiet. Harry is white. All young, rough people are blue. All big, blue people are young. If Erin is rough and Erin is white then Erin is big. All quiet people are big. If someone is young and smart then they are rough. If someone is smart and big then they are young. Big people are smart. All blue, rough people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-1015_Q15", "context": "The cat does not like the lion. The cat visits the squirrel. The cow likes the lion. The cow does not visit the lion. The lion eats the cow. The lion eats the squirrel. The lion is blue. The lion is not cold. The lion visits the cow. The squirrel eats the cow. The squirrel is rough. If someone visits the cow and the cow is cold then they like the cat. If someone eats the lion then they like the cat. If someone is blue and they visit the cat then the cat eats the lion. If someone likes the cat then they visit the cat. If someone likes the lion then they are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not like the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-850_Q8", "context": "The bear eats the cat. The bear eats the dog. The bear does not need the dog. The cat chases the bear. The cat chases the rabbit. The cat is green. The cat does not need the dog. The dog does not need the bear. The dog needs the cat. The rabbit eats the cat. The rabbit is red. The rabbit needs the dog. All red people are round. If someone is green and they eat the rabbit then they are not round. If someone chases the dog then the dog chases the cat. If someone chases the cat then the cat is red. If someone chases the cat and the cat is round then the cat does not need the bear. If someone is round and red then they chase the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not chase the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-44_Q8", "context": "Anne is furry. Anne is green. Anne is not red. Anne is smart. Anne is white. Bob is blue. Bob is furry. Bob is green. Bob is red. Bob is smart. Gary is red. Harry is cold. Harry is green. Harry is red. Harry is not smart. Harry is white. All red people are white. If someone is cold and blue then they are furry. If someone is blue and cold then they are furry. If someone is white then they are furry. Blue people are green. If Gary is furry then Gary is cold. If someone is green and not white then they are blue. If someone is cold then they are blue. Smart people are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-333_Q10", "context": "The bald eagle sees the cow. The cow eats the mouse. The cow is red. The dog eats the mouse. The dog sees the mouse. The mouse sees the cow. The mouse sees the dog. If the dog sees the mouse then the dog is big. If something sees the dog and the dog needs the bald eagle then the bald eagle needs the cow. If something is red then it sees the cow. If something needs the mouse and the mouse is nice then it eats the dog. If something needs the cow then it is big. If something eats the cow then it needs the bald eagle. If something sees the dog then the dog eats the cow. If something is big then it needs the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1035_Q8", "context": "Anne is cold. Anne is kind. Anne is round. Anne is smart. Bob is cold. Bob is round. Bob is smart. Bob is white. Dave is red. Fiona is white. If Dave is red then Dave is smart. If someone is round and rough then they are white. If Bob is cold then Bob is rough. Smart people are cold. All kind people are rough. Cold, red people are kind. All red, kind people are rough. Rough people are cold. If someone is cold then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-349_Q14", "context": "Anne is blue. Anne is cold. Anne is nice. Dave is not cold. Dave is nice. Fiona is quiet. Harry is white. If someone is cold and not nice then they are not big. If someone is rough and quiet then they are big. If someone is nice and not white then they are big. All cold, nice people are rough. All blue people are rough. If someone is white then they are blue. Big people are cold. If someone is rough then they are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-981_Q17", "context": "The dog visits the squirrel. The lion is blue. The lion is green. The lion needs the rabbit. The rabbit is blue. The rabbit visits the dog. The squirrel is green. The squirrel is kind. The squirrel is round. The squirrel needs the dog. The squirrel needs the rabbit. If the lion is blue then the lion chases the dog. If something needs the squirrel then it is round. If something visits the lion and the lion needs the dog then the dog needs the lion. If something is green and round then it needs the lion. If the squirrel needs the lion then the squirrel visits the rabbit. If the squirrel chases the lion and the squirrel visits the dog then the squirrel is green. If something is round and it chases the dog then the dog needs the lion. If something needs the dog and it chases the dog then it chases the lion. If something visits the rabbit and it needs the lion then the lion needs the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not need the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-916_Q15", "context": "Bob is round. Charlie is cold. Charlie is not furry. Charlie is white. Gary is round. Harry is furry. Harry is quiet. If something is young then it is white. If something is kind then it is young. If Harry is round then Harry is kind. If something is young and cold then it is furry. All young, round things are quiet. If Charlie is quiet then Charlie is white. If something is quiet then it is cold. All round things are kind. Furry, young things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-864_Q21", "context": "The cat eats the lion. The cat eats the squirrel. The cat is big. The cat is cold. The cat visits the squirrel. The lion is red. The lion likes the cat. The lion does not like the squirrel. The rabbit eats the cat. The rabbit is not cold. The rabbit likes the cat. The rabbit likes the lion. The squirrel eats the cat. The squirrel likes the cat. The squirrel visits the lion. The squirrel visits the rabbit. If something likes the lion and it is kind then it visits the cat. If something is green then it visits the cat. If something is kind and it eats the rabbit then the rabbit is kind. If something eats the cat and it visits the rabbit then the cat likes the lion. If something visits the rabbit and it eats the lion then it does not visit the squirrel. If something visits the cat and it visits the lion then the lion likes the squirrel. If something visits the lion then the lion eats the rabbit. If something eats the rabbit and the rabbit likes the lion then it likes the rabbit. If something likes the rabbit then it is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not eat the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-957_Q11", "context": "The bald eagle chases the bear. The bald eagle is rough. The bald eagle visits the rabbit. The bear is young. The bear visits the bald eagle. The dog visits the bear. The rabbit sees the dog. If something sees the bald eagle then it chases the rabbit. If something is young then it sees the dog. If the bald eagle is cold then the bald eagle chases the bear. If something visits the rabbit then it sees the bald eagle. If something is rough and it sees the dog then the dog is young. If something sees the bald eagle and the bald eagle chases the rabbit then it sees the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog sees the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-898_Q8", "context": "The bald eagle chases the cow. The bald eagle chases the dog. The bald eagle is rough. The cat is blue. The cat is rough. The cow is blue. The cow is kind. The cow is rough. The cow visits the dog. The dog visits the bald eagle. If the cow needs the bald eagle then the bald eagle is blue. If someone is green and rough then they chase the bald eagle. If the dog is kind then the dog visits the cat. If the dog chases the cow and the dog visits the bald eagle then the bald eagle visits the cat. If someone needs the dog then the dog is green. If someone chases the cow then they need the dog. If someone visits the cat then they are green. If the dog is green then the dog chases the cow. If someone chases the cow then the cow needs the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not chase the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-639_Q9", "context": "The bear eats the cow. The bear eats the tiger. The bear needs the dog. The cow is big. The cow is young. The cow likes the bear. The cow needs the tiger. The dog eats the cow. The tiger eats the bear. The tiger is big. If someone eats the bear and they like the tiger then the bear needs the cow. If someone eats the bear then they need the cow. If someone needs the cow then they need the tiger. If someone needs the cow and the cow is cold then the cow needs the dog. If someone needs the tiger and they are big then they like the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear needs the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-626_Q11", "context": "Anne is not furry. Anne is quiet. Anne is not white. Bob is kind. Bob is rough. Charlie is furry. Erin is quiet. If Anne is furry and Anne is kind then Anne is rough. If something is furry then it is quiet. Rough things are quiet. Quiet, young things are rough. If Charlie is white then Charlie is kind. Red things are kind. Furry, kind things are young. Rough things are red. All furry, quiet things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-50_Q7", "context": "Anne is young. Bob is cold. Bob is not quiet. Bob is red. Bob is not young. Dave is red. Erin is quiet. If someone is blue then they are young. Quiet people are young. Young people are quiet. If someone is blue and round then they are not quiet. If Erin is red then Erin is blue. Blue people are kind. Young people are cold. Quiet, cold people are blue. Kind, young people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-937_Q6", "context": "The bear needs the mouse. The cow eats the lion. The cow is blue. The lion eats the bear. The lion is green. The lion is young. The lion sees the bear. The lion sees the mouse. The mouse is rough. The mouse needs the lion. If someone is rough and young then they are blue. If someone sees the lion then they see the cow. If someone is green and they need the mouse then the mouse sees the lion. If someone needs the lion then the lion needs the mouse. If the mouse eats the lion then the lion is cold. If someone eats the mouse then the mouse eats the cow. If someone eats the bear then the bear is green. If someone sees the cow then the cow eats the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not see the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-301_Q12", "context": "Dave is cold. Dave is smart. Fiona is round. Gary is kind. Gary is quiet. Harry is not cold. Harry is round. If someone is rough and smart then they are green. If someone is green then they are quiet. Round people are rough. All round, green people are rough. If someone is quiet then they are kind. If someone is rough then they are smart. If Gary is quiet then Gary is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-266_Q5", "context": "Dave is kind. Dave is red. Erin is red. Erin is round. Fiona is rough. Fiona is round. Gary is blue. Gary is cold. Gary is red. Gary is rough. Gary is young. If something is round then it is rough. Rough things are blue. Red, kind things are blue. If Erin is rough and Erin is cold then Erin is young. If Gary is round then Gary is rough. If something is kind then it is cold. If something is blue and round then it is kind. All blue, cold things are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1211_Q12", "context": "Bob is big. Bob is quiet. Dave is nice. Dave is quiet. Dave is red. Erin is big. Erin is blue. Erin is kind. Erin is nice. Erin is red. Fiona is nice. Fiona is rough. If Erin is red and Erin is kind then Erin is nice. If something is red and kind then it is blue. Big things are rough. If something is nice and quiet then it is red. Nice things are quiet. If something is blue and red then it is big. If something is big and rough then it is red. If Fiona is red and Fiona is rough then Fiona is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-795_Q20", "context": "The bald eagle is not green. The bear is green. The bear is kind. The bear needs the bald eagle. The bear needs the tiger. The mouse is not blue. The mouse needs the bald eagle. The mouse visits the bald eagle. The mouse visits the bear. The tiger sees the bald eagle. If someone is young then they need the tiger. If someone needs the tiger and they need the bear then the bear is kind. If someone sees the bald eagle then they visit the bald eagle. If the bald eagle visits the mouse then the bald eagle sees the tiger. If someone visits the bald eagle then the bald eagle does not see the tiger. If someone needs the bald eagle then the bald eagle is young. If someone visits the mouse then the mouse is not blue. If someone visits the bald eagle then they do not visit the tiger. If someone needs the tiger then they see the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-821_Q5", "context": "Bob is cold. Bob is white. Bob is young. Erin is big. Erin is cold. Fiona is big. Harry is young. Kind, smart people are white. If someone is kind then they are smart. All big, white people are young. All cold people are kind. Big people are kind. All big, white people are blue. Young people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-804_Q4", "context": "The bald eagle visits the tiger. The cow chases the rabbit. The cow chases the tiger. The cow needs the rabbit. The rabbit chases the cow. The rabbit visits the bald eagle. The rabbit does not visit the tiger. The tiger is big. The tiger needs the rabbit. The tiger visits the bald eagle. Kind things are not young. If something visits the bald eagle then it is young. If the rabbit is young and the rabbit does not chase the tiger then the tiger needs the cow. If the tiger needs the cow and the tiger needs the rabbit then the cow visits the bald eagle. If the cow is big then the cow visits the bald eagle. If the tiger visits the bald eagle then the tiger visits the rabbit. If something is young then it needs the cow. If something chases the bald eagle and the bald eagle is cold then the bald eagle visits the cow. If something needs the tiger then it chases the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-685_Q15", "context": "Dave is green. Erin is furry. Fiona is blue. Fiona is furry. Harry is blue. Harry is smart. Harry is white. If someone is big then they are blue. All furry, kind people are big. If someone is furry then they are white. White, smart people are kind. All big people are kind. If Dave is blue then Dave is kind. If someone is green then they are furry. If someone is kind then they are big. If someone is white then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-438_Q3", "context": "Bob is green. Bob is quiet. Bob is white. Bob is not young. Charlie is quiet. Fiona is nice. Gary is green. Gary is quiet. Gary is round. Gary is smart. If someone is quiet then they are green. All green, smart people are nice. If someone is green then they are smart. If someone is young then they are smart. If someone is young then they are not white. If Charlie is round and Charlie is green then Charlie is young. If someone is smart and not green then they are round. If someone is smart and nice then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-765_Q6", "context": "The cat is big. The cat is green. The cat is kind. The cow sees the dog. The dog eats the cat. The dog sees the cow. The dog visits the cat. The lion eats the cow. The lion eats the dog. The lion visits the cat. If someone is rough then they see the cow. If someone visits the cat and the cat is rough then the cat eats the lion. If someone is rough then they visit the cow. If someone eats the lion and they are big then the lion is kind. If someone sees the lion then the lion visits the cat. All kind people are rough. If someone is green and they visit the cow then the cow visits the lion. If the cat visits the lion and the lion sees the cat then the lion sees the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not eat the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-899_Q9", "context": "The bear eats the dog. The bear is blue. The dog eats the tiger. The dog is green. The dog likes the tiger. The dog needs the mouse. The mouse eats the tiger. The mouse is not big. The mouse likes the bear. The mouse needs the bear. The tiger is not kind. The tiger likes the bear. The tiger likes the mouse. The tiger needs the bear. The tiger needs the dog. The tiger needs the mouse. If someone eats the mouse then the mouse is kind. If someone likes the dog then the dog likes the bear. If someone likes the dog and they are green then they eat the tiger. If the dog likes the bear and the dog eats the tiger then the tiger is green. If someone needs the bear then they are round. If someone is round then they like the dog. If someone is kind and they like the tiger then the tiger likes the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-998_Q7", "context": "The bald eagle sees the squirrel. The cat eats the bald eagle. The cat is not cold. The dog is green. The dog is red. The dog sees the cat. The squirrel does not chase the bald eagle. If someone eats the squirrel then the squirrel is young. If someone chases the squirrel and they do not eat the bald eagle then the squirrel chases the dog. If someone chases the cat then they see the squirrel. If someone is red then they are cold. Young people are cold. If someone sees the cat and they see the bald eagle then the cat is not red. If someone is cold then they eat the squirrel. If someone chases the bald eagle and the bald eagle chases the dog then the bald eagle is cold. If someone sees the dog then the dog is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-847_Q8", "context": "The bald eagle chases the tiger. The bald eagle does not eat the cow. The cow is green. The cow is kind. The rabbit is big. The tiger does not eat the rabbit. The tiger sees the bald eagle. If someone chases the bald eagle then they eat the rabbit. If someone is kind then they chase the bald eagle. If someone sees the rabbit then they are not kind. If someone eats the rabbit then the rabbit is kind. If someone sees the tiger and they do not chase the bald eagle then they are not big.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-991_Q7", "context": "Charlie is furry. Charlie is kind. Charlie is nice. Charlie is rough. Charlie is round. Charlie is young. Dave is furry. Erin is furry. Erin is nice. Erin is rough. Erin is round. Erin is young. Gary is nice. Gary is rough. If Erin is nice and Erin is furry then Erin is rough. Young, kind things are round. All quiet things are kind. All kind, round things are furry. Kind, rough things are round. If something is nice and rough then it is young. If Erin is nice and Erin is rough then Erin is furry. All kind things are quiet. If something is young and rough then it is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-9_Q3", "context": "The bear sees the tiger. The bear visits the rabbit. The cat sees the bear. The rabbit needs the bear. The tiger is rough. The tiger needs the cat. The tiger needs the rabbit. If something sees the bear then it is kind. If something visits the tiger and it is green then the tiger sees the cat. If the tiger visits the bear then the tiger is round. If something is round and it visits the cat then the cat is kind. If something visits the tiger then the tiger needs the rabbit. If something is round and it sees the bear then the bear is rough. If something visits the tiger and the tiger visits the cat then the tiger sees the rabbit. All kind things are round. If something is rough then it is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-178_Q15", "context": "The bald eagle chases the cow. The bear chases the bald eagle. The bear chases the dog. The bear is green. The bear is rough. The bear likes the bald eagle. The bear likes the cow. The bear needs the cow. The cow chases the bald eagle. The cow chases the dog. The cow is nice. The cow likes the bear. The cow needs the bald eagle. The cow needs the dog. The dog chases the bald eagle. The dog likes the bear. If something is green and it likes the dog then the dog is red. If something is red and nice then it needs the dog. If something is green and rough then it needs the cow. If something likes the bear then the bear needs the dog. If the bear likes the bald eagle and the bear is rough then the bald eagle needs the cow. If something needs the dog then it needs the bald eagle. If something is red then it likes the bald eagle. If something is kind and rough then it needs the dog. If something needs the bald eagle and it is green then it likes the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not like the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1197_Q3", "context": "Erin is cold. Erin is quiet. Fiona is cold. Fiona is furry. Fiona is green. Fiona is round. Fiona is smart. Gary is cold. Gary is furry. Gary is quiet. Harry is blue. Smart things are round. All cold, green things are round. Quiet, furry things are smart. Blue, green things are cold. All cold, smart things are green. If something is blue then it is green. If something is round then it is green. All green, smart things are quiet. If something is round then it is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1147_Q12", "context": "Anne is blue. Anne is green. Anne is kind. Anne is quiet. Anne is rough. Bob is round. Dave is blue. Dave is green. Dave is nice. Dave is quiet. Harry is green. Harry is nice. If Harry is blue and Harry is rough then Harry is quiet. Kind, round things are rough. If Dave is quiet then Dave is round. If Bob is green and Bob is blue then Bob is rough. Quiet, green things are blue. All nice, green things are kind. If something is quiet then it is round. All green, blue things are quiet. Kind things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-790_Q9", "context": "Dave is nice. Erin is quiet. Gary is round. Gary is not smart. Harry is kind. Harry is nice. Harry is red. Red, quiet things are young. If something is kind and smart then it is not young. Nice things are young. All red, kind things are quiet. If something is young and round then it is kind. Red things are nice. If something is round then it is red. Young things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-739_Q11", "context": "Anne is not blue. Anne is furry. Charlie is round. Fiona is blue. Gary is not cold. Gary is not furry. Gary is not round. All blue people are white. All furry, blue people are white. All cold people are not furry. Round, quiet people are blue. If Anne is round and Anne is red then Anne is not furry. If someone is white then they are round. Round people are red. If someone is quiet then they are cold. Round people are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-511_Q14", "context": "Anne is big. Anne is nice. Anne is white. Dave is big. Dave is red. Fiona is green. Gary is big. All green, red people are round. All white people are nice. If someone is green and round then they are white. Green people are kind. All white people are nice. If someone is round then they are kind. Green, kind people are red. Red people are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-418_Q1", "context": "Anne is rough. Charlie is nice. Charlie is not smart. Dave is smart. Harry is cold. Harry is green. Harry is quiet. Quiet, rough things are green. Smart things are quiet. If Anne is rough and Anne is green then Anne is not nice. All rough things are cold. Rough, green things are cold. All quiet things are smart. Cold things are smart. If something is nice then it is furry. If something is cold then it is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-50_Q10", "context": "Anne is big. Anne is kind. Anne is red. Anne is smart. Bob is big. Bob is furry. Bob is smart. Fiona is smart. Gary is kind. Gary is young. All red things are young. Furry things are big. Big things are furry. All big, furry things are red. Smart things are rough. If something is smart then it is rough. All furry, kind things are big. All young things are furry. Red things are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-717_Q21", "context": "The bald eagle chases the squirrel. The bald eagle likes the tiger. The bald eagle visits the tiger. The cow chases the bald eagle. The cow is big. The cow likes the bald eagle. The cow likes the squirrel. The cow visits the bald eagle. The squirrel chases the bald eagle. The squirrel is green. The squirrel likes the tiger. The tiger is blue. If the cow visits the squirrel then the cow chases the tiger. If something likes the squirrel and it chases the bald eagle then the squirrel likes the cow. If something likes the bald eagle and the bald eagle likes the tiger then the tiger is kind. If something chases the cow and the cow visits the bald eagle then the cow is green. If something likes the cow then it chases the tiger. If something is green and it chases the tiger then it chases the cow. If the cow chases the tiger then the tiger is green. If something is green then it chases the squirrel. If something chases the tiger and it visits the tiger then the tiger likes the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not visit the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-513_Q1", "context": "Bob is not furry. Charlie is cold. Charlie is nice. Charlie is quiet. Charlie is white. Dave is quiet. Fiona is kind. If someone is furry and rough then they are quiet. If Dave is quiet and Dave is rough then Dave is white. All quiet people are cold. If Bob is cold and Bob is quiet then Bob is not kind. If Dave is white and Dave is quiet then Dave is kind. Cold people are rough. Cold, kind people are nice. All furry people are kind. If someone is furry and not white then they are not kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-899_Q3", "context": "Charlie is red. Charlie is white. Charlie is young. Dave is big. Dave is kind. Dave is quiet. Dave is red. Dave is white. Gary is white. Harry is big. Harry is young. All quiet things are red. If something is cold and young then it is white. All red things are kind. If Charlie is cold and Charlie is quiet then Charlie is big. Big, young things are cold. White, big things are quiet. If Harry is kind then Harry is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-845_Q4", "context": "The cat likes the lion. The cat likes the squirrel. The lion likes the mouse. The mouse is big. The mouse likes the lion. The squirrel chases the lion. The squirrel does not like the mouse. If something is blue then it likes the cat. If something likes the mouse and the mouse sees the squirrel then the squirrel chases the lion. If something likes the lion then the lion is blue. If something likes the cat then it is kind. If something is kind and it sees the mouse then it sees the squirrel. If something likes the mouse and it chases the mouse then the mouse sees the lion. If something sees the cat and it does not like the lion then it is young. If something chases the lion and it chases the mouse then the lion chases the squirrel. If something is kind then it chases the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-409_Q3", "context": "Anne is big. Anne is blue. Anne is cold. Anne is white. Bob is cold. Fiona is big. Fiona is blue. Fiona is quiet. Harry is blue. Harry is not cold. All kind, big things are white. All cold things are big. Blue things are kind. All cold things are blue. Kind things are blue. Cold, rough things are not quiet. If something is cold and not blue then it is rough. If something is white then it is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-167_Q24", "context": "The bear does not eat the lion. The dog does not eat the tiger. The dog is blue. The dog is red. The dog sees the bear. The lion eats the dog. The lion eats the tiger. The lion does not need the dog. The lion sees the tiger. The tiger eats the bear. If something is cold then it needs the bear. If something eats the dog then the dog is cold. If something needs the bear then it needs the tiger. If something sees the lion then it does not need the dog. If something is cold and it needs the bear then it does not need the dog. If something needs the tiger then the tiger is cold. If something is blue and it does not see the tiger then the tiger sees the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger eats the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-752_Q24", "context": "The bear likes the squirrel. The bear sees the dog. The bear sees the squirrel. The dog is nice. The squirrel chases the bear. The squirrel chases the dog. The squirrel is big. The squirrel is green. The squirrel is round. The squirrel likes the dog. The squirrel sees the dog. The squirrel sees the tiger. The tiger chases the bear. The tiger chases the squirrel. The tiger is green. The tiger sees the squirrel. If something chases the bear and the bear is round then the bear chases the squirrel. If something chases the squirrel and it chases the dog then the dog is big. If the squirrel is kind and the squirrel sees the tiger then the squirrel is nice. If something is kind then it chases the squirrel. If something is kind then it likes the squirrel. All big things are kind. If something chases the tiger then it is big. If something chases the bear and the bear chases the dog then the dog chases the bear. If something chases the tiger then the tiger sees the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear likes the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-382_Q3", "context": "The cow does not see the rabbit. The mouse chases the rabbit. The mouse chases the squirrel. The mouse likes the cow. The mouse likes the squirrel. The mouse does not see the cow. The rabbit chases the mouse. The rabbit is nice. The squirrel is not cold. The squirrel likes the cow. The squirrel likes the rabbit. If someone is young then they see the rabbit. If someone is nice then they see the squirrel. If someone likes the rabbit then they are young. If someone sees the squirrel then they like the mouse. If someone chases the cow and they see the cow then the cow is nice. If someone likes the mouse then they like the rabbit. If someone sees the cow then they like the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1202_Q10", "context": "Bob is big. Bob is cold. Bob is quiet. Bob is smart. Bob is white. Charlie is big. Charlie is cold. Charlie is green. Charlie is quiet. Dave is big. Dave is cold. Dave is kind. Dave is quiet. Dave is smart. Dave is white. Harry is green. If something is white and smart then it is green. Big things are kind. Big, kind things are cold. Smart things are cold. Green things are smart. If something is white and cold then it is big. If Harry is cold and Harry is green then Harry is white.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-635_Q12", "context": "The bear likes the cow. The bear visits the tiger. The cow is big. The cow is red. The cow does not visit the tiger. The mouse likes the bear. The mouse needs the tiger. The mouse visits the cow. The mouse does not visit the tiger. The tiger needs the bear. The tiger needs the mouse. If something is young then it does not like the bear. If something is young then it likes the bear. If something likes the tiger then it visits the mouse. If something likes the cow then it does not need the tiger. If something visits the cow then it likes the tiger. If something likes the cow and it visits the mouse then the mouse visits the cow. If something visits the mouse and the mouse likes the tiger then the tiger visits the cow. If something needs the bear and the bear does not need the tiger then the bear likes the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not visit the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-496_Q6", "context": "Anne is rough. Bob is big. Bob is quiet. Dave is big. Dave is quiet. Fiona is quiet. Fiona is rough. Furry, nice things are young. All rough, big things are smart. All young, nice things are rough. If something is big then it is furry. Furry things are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-698_Q23", "context": "Anne is furry. Dave is kind. Dave is smart. Fiona is furry. Fiona is smart. Fiona is white. Harry is nice. If Fiona is smart then Fiona is not nice. If something is nice and white then it is furry. White things are furry. Nice things are furry. Rough, smart things are white. All furry things are smart. White things are cold. If Dave is not rough then Dave is cold. If Harry is furry and Harry is smart then Harry is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-907_Q3", "context": "The bear is young. The bear sees the dog. The bear visits the rabbit. The cow is cold. The cow visits the dog. The dog does not eat the rabbit. The dog is blue. The dog is young. The rabbit visits the cow. The rabbit does not visit the dog. If the cow eats the bear and the cow is blue then the cow visits the dog. If something sees the cow and the cow sees the rabbit then it sees the rabbit. If something eats the bear then it sees the rabbit. If something sees the rabbit then the rabbit is red. If something visits the rabbit and the rabbit visits the dog then the rabbit eats the bear. All blue, cold things are round. If something visits the rabbit then the rabbit is round. If something is blue then it eats the bear. If something is red then it eats the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog eats the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-426_Q6", "context": "Anne is not big. Anne is furry. Anne is quiet. Charlie is quiet. Charlie is not rough. Charlie is not white. Dave is not furry. Dave is rough. Dave is white. Harry is rough. Harry is smart. Furry things are blue. Big things are furry. All quiet things are furry. All smart, white things are big. All smart, blue things are not quiet. All smart things are white. If something is big and white then it is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-245_Q5", "context": "Bob is white. Charlie is white. Gary is not furry. Gary is not quiet. Gary is red. Harry is quiet. Harry is not red. All big, white people are not red. If someone is furry and green then they are quiet. All big, red people are quiet. Quiet people are green. All kind people are white. If Harry is white then Harry is big. If Harry is quiet and Harry is green then Harry is big. Quiet, big people are kind. If someone is white then they are not furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-505_Q9", "context": "Anne is cold. Anne is not quiet. Charlie is big. Charlie is cold. Charlie is quiet. Charlie is smart. Charlie is white. Dave is round. Erin is cold. Erin is smart. Erin is white. If someone is smart then they are big. Round, white people are cold. Cold, blue people are not smart. All cold, white people are smart. All quiet people are white. If Dave is blue then Dave is white. All round people are quiet. If someone is quiet and big then they are not blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1088_Q2", "context": "Anne is nice. Anne is red. Anne is young. Dave is blue. Dave is green. Erin is big. Erin is blue. Erin is green. Erin is nice. Harry is red. Blue, big people are cold. Blue people are red. If Anne is red and Anne is cold then Anne is blue. If someone is big and nice then they are young. If someone is red and green then they are big. All cold people are nice. If someone is nice and big then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-718_Q6", "context": "The bear chases the cow. The bear chases the lion. The bear is red. The bear is round. The bear sees the cow. The bear sees the lion. The bear sees the rabbit. The cow needs the rabbit. The cow sees the bear. The lion is nice. The lion needs the cow. The rabbit chases the cow. The rabbit chases the lion. The rabbit is kind. If something chases the lion then the lion chases the cow. If something is kind and red then it sees the bear. If something needs the rabbit then it is big. If something needs the rabbit and it chases the bear then it chases the cow. If something is round and red then it sees the bear. If something is big then it chases the rabbit. If the bear chases the lion and the lion is red then the bear needs the rabbit. If something is red then it needs the rabbit. If something is round and it needs the rabbit then the rabbit is red.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-509_Q6", "context": "The bear is blue. The bear likes the tiger. The cat chases the bear. The cat chases the squirrel. The cat is not blue. The cat is cold. The cat likes the tiger. The cat sees the bear. The squirrel is blue. The squirrel does not like the tiger. The squirrel sees the tiger. The tiger chases the bear. The tiger chases the squirrel. The tiger likes the cat. If something chases the tiger then it sees the squirrel. If something sees the cat and it is big then it chases the tiger. If something is cold then it chases the tiger. If something sees the tiger and it sees the squirrel then it does not see the cat. If something likes the tiger then it likes the bear. If something likes the bear and it is blue then it is cold. If the cat is red and the cat sees the tiger then the cat likes the bear. If something sees the squirrel then the squirrel chases the tiger. If something sees the cat then it does not like the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not see the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-689_Q21", "context": "The bald eagle eats the cow. The bald eagle likes the rabbit. The cat eats the cow. The cat eats the rabbit. The cat likes the bald eagle. The cow eats the bald eagle. The cow is young. The cow likes the cat. The cow likes the rabbit. The rabbit needs the cat. If something eats the cat then the cat needs the bald eagle. If something needs the cow and the cow is young then the cow is round. If something needs the cat then the cat is cold. Young, round things are red. If something is round then it eats the cow. If something eats the cat then it needs the cow. If something is cold then it eats the cat. If the bald eagle eats the cat and the bald eagle is round then the cat eats the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not need the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1034_Q7", "context": "Anne is big. Anne is cold. Anne is nice. Anne is quiet. Anne is rough. Anne is white. Charlie is not cold. Fiona is cold. Fiona is white. Gary is big. Gary is blue. Blue things are big. If Fiona is blue and Fiona is white then Fiona is not big. If Fiona is big then Fiona is quiet. If something is white then it is cold. Blue, nice things are cold. Blue things are rough. All cold, white things are nice. All quiet things are white. Rough, blue things are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-266_Q10", "context": "Dave is kind. Dave is red. Erin is red. Erin is round. Fiona is rough. Fiona is round. Gary is blue. Gary is cold. Gary is red. Gary is rough. Gary is young. If something is round then it is rough. Rough things are blue. Red, kind things are blue. If Erin is rough and Erin is cold then Erin is young. If Gary is round then Gary is rough. If something is kind then it is cold. If something is blue and round then it is kind. All blue, cold things are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-291_Q5", "context": "The cat eats the lion. The cat eats the rabbit. The cat is blue. The cat likes the lion. The cat does not see the lion. The cat does not see the rabbit. The dog is green. The dog likes the cat. The dog likes the lion. The dog sees the cat. The lion is big. The lion is kind. The lion sees the dog. The rabbit is blue. The rabbit is kind. The rabbit sees the lion. If something likes the dog then it sees the rabbit. If something sees the rabbit then the rabbit likes the dog. If something sees the rabbit and it likes the dog then it likes the rabbit. If something likes the lion and it likes the dog then the dog does not see the lion. If something eats the lion then the lion is big. If something sees the cat and the cat is blue then it is green. If something is green then it likes the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not see the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-170_Q18", "context": "The dog eats the lion. The dog eats the squirrel. The dog is red. The dog is round. The lion is big. The lion is rough. The squirrel eats the dog. The squirrel is red. The tiger chases the dog. The tiger eats the squirrel. The tiger is rough. The tiger needs the dog. If someone chases the squirrel and they need the dog then they eat the dog. If someone eats the lion and the lion is big then they are round. If someone chases the tiger and they chase the lion then they are kind. If someone needs the lion then the lion needs the dog. If someone eats the squirrel then they need the lion. If someone chases the squirrel and they eat the dog then the dog is big. If the squirrel chases the lion then the squirrel is rough. If someone is big then they chase the squirrel. If someone is red and they eat the dog then the dog needs the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-286_Q20", "context": "The bear chases the cow. The bear chases the rabbit. The bear is rough. The bear likes the mouse. The cow likes the bear. The cow visits the mouse. The mouse chases the bear. The mouse chases the cow. The mouse is cold. The mouse visits the rabbit. The rabbit chases the cow. The rabbit is big. The rabbit likes the bear. The rabbit visits the cow. If someone chases the rabbit and they visit the rabbit then they like the mouse. If someone visits the mouse and they are not blue then the mouse is cold. If someone is big and they chase the bear then the bear is big. If someone is cold then they chase the bear. If someone is big then they are cold. If someone is big then they chase the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear visits the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-431_Q4", "context": "Anne is furry. Anne is quiet. Erin is blue. Erin is furry. Erin is quiet. Gary is big. Gary is blue. Gary is furry. Gary is nice. Gary is quiet. Gary is round. Harry is red. Big, red things are furry. If something is big and blue then it is nice. All quiet things are furry. All furry things are round. Big, furry things are blue. All nice things are quiet. Red things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1106_Q16", "context": "Bob is big. Bob is red. Erin is big. Erin is not red. Fiona is big. Fiona is blue. Fiona is quiet. Fiona is round. Fiona is smart. Harry is blue. If something is round then it is quiet. If something is round and big then it is quiet. Big, blue things are nice. If something is blue and red then it is big. Blue things are round. If something is quiet then it is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-134_Q7", "context": "The cat chases the squirrel. The cat is big. The cat is green. The cow likes the squirrel. The rabbit chases the squirrel. The rabbit is blue. The rabbit is green. The rabbit likes the squirrel. The squirrel is blue. The squirrel is round. The squirrel does not need the cat. If someone is round then they are green. If someone chases the cat then they are big. If the cat likes the cow and the cat does not need the squirrel then the cat does not like the squirrel. If someone is big then they chase the cat. If someone chases the cow then the cow chases the cat. If someone chases the cat then the cat likes the rabbit. If someone likes the rabbit then the rabbit chases the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit chases the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-263_Q10", "context": "The bear is rough. The bear likes the lion. The bear likes the squirrel. The bear needs the tiger. The lion needs the tiger. The lion sees the tiger. The squirrel is not nice. The squirrel is round. The squirrel sees the bear. The squirrel sees the tiger. The tiger needs the bear. The tiger sees the bear. If someone sees the lion then the lion needs the bear. If someone sees the lion then the lion is nice. If someone needs the lion then the lion is not nice. If someone is round and not green then they see the tiger. If someone sees the lion then they see the bear. If the lion sees the squirrel then the squirrel needs the bear. If someone sees the bear then they see the lion. If someone needs the bear then they see the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not need the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-659_Q18", "context": "Anne is kind. Anne is nice. Fiona is rough. Gary is rough. Harry is kind. Harry is nice. Harry is rough. If Fiona is rough then Fiona is blue. All kind, blue things are young. Rough, smart things are nice. If something is rough and furry then it is smart. Blue things are kind. If Harry is blue then Harry is smart. If something is blue and young then it is furry. If Anne is kind then Anne is blue. If Gary is rough then Gary is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-585_Q3", "context": "Anne is quiet. Anne is smart. Bob is blue. Bob is nice. Bob is quiet. Bob is red. Bob is smart. Bob is young. Charlie is smart. Charlie is young. Harry is blue. If something is young and not blue then it is nice. If something is red then it is nice. If something is nice and smart then it is young. Red, blue things are quiet. If something is white then it is quiet. Blue things are white. Quiet, blue things are red. If Anne is white and Anne is smart then Anne is red. Quiet things are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-813_Q9", "context": "The bear eats the cat. The bear eats the mouse. The bear is blue. The bear likes the cat. The bear likes the cow. The bear sees the cow. The bear sees the mouse. The cat eats the cow. The cat is green. The cat likes the bear. The cat likes the cow. The cow is nice. The cow sees the mouse. The mouse eats the bear. If something sees the bear then it sees the cat. If something likes the cat and it eats the cow then the cat is green. If something is nice then it sees the bear. If something sees the cat and the cat is green then it eats the bear. If something sees the cat then the cat sees the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat sees the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1200_Q16", "context": "Anne is big. Anne is blue. Anne is not furry. Erin is red. Gary is big. Gary is blue. Gary is furry. Harry is blue. Harry is furry. Harry is green. Harry is white. Furry things are young. If Harry is red and Harry is furry then Harry is not green. If something is big and red then it is furry. All red things are big. All furry things are big. All red, green things are white. If something is blue and not furry then it is not white. If Harry is red and Harry is white then Harry is young. If something is young then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-599_Q12", "context": "The dog is round. The dog sees the mouse. The mouse sees the rabbit. The rabbit chases the mouse. The rabbit eats the tiger. The rabbit sees the tiger. The tiger is young. If someone chases the rabbit then the rabbit sees the tiger. If someone is young and blue then they are cold. If the dog is round and the dog is rough then the dog sees the mouse. If someone chases the tiger and the tiger is blue then they are young. If someone sees the dog then the dog is young. If someone chases the dog and the dog sees the tiger then the dog is young. If someone chases the rabbit then they see the dog. If someone is round and they see the mouse then the mouse sees the rabbit. If someone is young then they chase the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not see the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-134_Q1", "context": "Anne is big. Anne is furry. Anne is white. Bob is big. Bob is cold. Bob is furry. Bob is red. Bob is rough. Charlie is cold. Charlie is nice. Harry is big. Harry is cold. Harry is furry. Harry is red. Harry is rough. Harry is white. Red, nice people are furry. Nice people are rough. White people are red. If someone is rough then they are white. Big people are furry. If Charlie is furry and Charlie is nice then Charlie is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-667_Q19", "context": "The dog chases the mouse. The dog is blue. The dog needs the mouse. The mouse needs the dog. The mouse needs the rabbit. The mouse needs the tiger. The rabbit is not kind. The rabbit likes the mouse. The rabbit needs the dog. The tiger does not chase the dog. The tiger is cold. The tiger is kind. The tiger is red. The tiger is rough. The tiger needs the mouse. The tiger does not need the rabbit. If the mouse is rough and the mouse likes the rabbit then the rabbit is not red. If the rabbit chases the mouse then the mouse is blue. If something needs the dog and it needs the rabbit then the dog chases the rabbit. If the dog likes the rabbit and the rabbit needs the mouse then the dog is red. If something likes the dog then the dog chases the tiger. If something likes the dog and it needs the tiger then the dog does not need the tiger. If something chases the tiger then the tiger chases the rabbit. If something chases the rabbit and the rabbit likes the mouse then it likes the dog. If something needs the dog and it is not red then it does not like the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not like the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-60_Q2", "context": "Bob is blue. Bob is kind. Dave is blue. Dave is round. Dave is young. Gary is furry. Harry is blue. Harry is kind. Harry is rough. Harry is young. Young, rough people are nice. If someone is kind then they are rough. If someone is nice and young then they are blue. If someone is nice then they are rough. If Gary is furry then Gary is young. Round, rough people are kind. If someone is young then they are kind. Round people are young. Young people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-493_Q9", "context": "Anne is nice. Anne is not red. Anne is smart. Bob is blue. Bob is furry. Bob is nice. Bob is red. Bob is rough. Charlie is smart. Dave is big. Dave is blue. Dave is not smart. All smart, rough things are red. All big, red things are nice. All red things are big. Nice things are big. All nice things are furry. Smart, blue things are furry. If Charlie is smart then Charlie is rough. If something is big and not blue then it is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-308_Q12", "context": "Anne is furry. Charlie is green. Dave is not furry. Dave is green. Erin is green. Erin is kind. Erin is quiet. Quiet, furry people are young. If Dave is furry and Dave is young then Dave is round. All young people are green. If Dave is round and Dave is young then Dave is nice. If Anne is furry then Anne is quiet. If someone is quiet and not furry then they are nice. If Anne is round then Anne is nice. If someone is young then they are round. Furry, nice people are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-593_Q10", "context": "The bear does not chase the rabbit. The bear does not eat the tiger. The bear is green. The bear is rough. The bear likes the mouse. The mouse does not chase the rabbit. The mouse chases the tiger. The mouse eats the rabbit. The mouse eats the tiger. The mouse is not blue. The mouse is red. The mouse likes the bear. The mouse likes the rabbit. The rabbit eats the mouse. The rabbit likes the tiger. The tiger likes the mouse. Rough things are red. If something is rough and it eats the tiger then the tiger is rough. If something likes the tiger then it is rough. If something eats the bear and the bear eats the tiger then the bear chases the mouse. If something is cold and red then it eats the rabbit. If something eats the bear then it is blue. If something is red then it chases the mouse. If something chases the mouse and the mouse likes the rabbit then it likes the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-226_Q3", "context": "Bob is kind. Bob is young. Charlie is kind. Charlie is red. Dave is furry. Dave is nice. Erin is furry. Erin is green. Erin is nice. Erin is red. Erin is rough. Red things are green. If Dave is rough and Dave is furry then Dave is red. If Dave is young and Dave is green then Dave is red. If something is green then it is young. Green, young things are kind. If something is rough then it is nice. If Bob is young then Bob is kind. All nice things are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-244_Q8", "context": "Anne is red. Anne is white. Charlie is red. Erin is red. Erin is rough. Erin is white. Fiona is white. If Charlie is rough and Charlie is white then Charlie is green. If someone is furry then they are big. All white, kind people are green. All white people are kind. Kind, big people are rough. All green people are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-289_Q7", "context": "Bob is big. Bob is blue. Bob is green. Bob is quiet. Bob is round. Dave is big. Dave is blue. Dave is green. Dave is quiet. Dave is round. Dave is smart. Fiona is big. Fiona is blue. Fiona is round. Harry is green. Harry is kind. All smart things are green. Green things are blue. If something is blue then it is smart. Quiet things are round. Smart, green things are blue. If something is green then it is kind. If something is green and big then it is quiet. Smart things are big. If Harry is quiet then Harry is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-949_Q4", "context": "Bob is rough. Charlie is green. Charlie is quiet. Charlie is round. Charlie is smart. Charlie is young. Fiona is green. Fiona is quiet. Fiona is rough. Fiona is round. Fiona is smart. Fiona is white. Fiona is young. Gary is white. Green people are quiet. All smart, white people are young. If someone is white then they are smart. All quiet, young people are round. Rough people are white. If someone is quiet then they are young. Rough, smart people are green. Quiet people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-988_Q6", "context": "The cat eats the cow. The cat is young. The cow eats the cat. The cow is big. The cow is young. The cow sees the lion. The cow visits the dog. The dog eats the cat. The dog visits the cow. The dog visits the lion. The lion eats the cow. The lion is red. If something visits the cat and it sees the dog then the dog eats the lion. If the cat sees the cow and the cow eats the cat then the cat visits the cow. If something is red and it visits the dog then it visits the cow. If something sees the dog and the dog sees the cat then the dog is cold. If something visits the dog and the dog visits the cat then the cat sees the lion. If something sees the cow then it visits the cat. If something sees the lion then it sees the dog. If something sees the dog and the dog eats the cat then the dog sees the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not see the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-827_Q5", "context": "Bob is big. Bob is furry. Charlie is furry. Charlie is nice. Dave is furry. Dave is nice. Erin is white. If Dave is white then Dave is not kind. All white things are blue. If Erin is blue then Erin is big. If something is white and cold then it is not furry. All blue, big things are nice. If Erin is furry and Erin is white then Erin is kind. If something is cold then it is not kind. White, nice things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-441_Q5", "context": "The bald eagle chases the mouse. The bald eagle visits the bear. The bear is rough. The bear visits the bald eagle. The bear does not visit the mouse. The mouse chases the bald eagle. The squirrel chases the bear. If something is blue then it needs the bear. If something chases the bear and it visits the bald eagle then it does not need the bear. If something visits the mouse and the mouse is blue then the mouse does not visit the bear. If something needs the mouse then the mouse visits the bald eagle. If the bear visits the squirrel then the bear needs the squirrel. If something chases the bear and the bear needs the squirrel then the squirrel needs the mouse. If something chases the bear and it visits the mouse then the bear does not visit the bald eagle. If something visits the bald eagle then it visits the squirrel. If the mouse does not visit the bear then the mouse is young.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear needs the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-218_Q7", "context": "The bald eagle chases the rabbit. The bald eagle eats the rabbit. The bald eagle eats the tiger. The bald eagle is red. The bald eagle needs the tiger. The bear chases the bald eagle. The bear is red. The bear needs the tiger. The rabbit chases the bald eagle. The rabbit chases the tiger. The rabbit eats the bald eagle. The rabbit is red. The tiger eats the rabbit. The tiger is round. If something chases the rabbit and the rabbit is kind then the rabbit needs the bear. If something is rough then it is kind. If something eats the bald eagle and the bald eagle needs the rabbit then the rabbit is kind. If something chases the rabbit and the rabbit chases the tiger then it is rough. If something eats the rabbit then it is young. If something is kind then it needs the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle needs the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-914_Q19", "context": "The bear is kind. The bear needs the tiger. The cat likes the rabbit. The cat needs the bear. The rabbit is big. The rabbit is kind. The rabbit likes the tiger. The rabbit sees the tiger. The tiger is big. The tiger is cold. The tiger does not need the rabbit. If the rabbit sees the cat then the cat is kind. If someone needs the bear then they like the cat. If someone needs the bear then they see the bear. If someone is big then they need the cat. If someone is blue then they see the cat. If someone is kind then they are blue. If someone sees the tiger then they are not cold. If someone is cold and they do not like the tiger then the tiger sees the rabbit. If someone needs the rabbit and they are red then they see the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not like the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-724_Q6", "context": "The bear is not big. The bear sees the lion. The dog is nice. The lion sees the bear. The tiger chases the lion. The tiger is nice. The tiger likes the bear. If something likes the tiger then it is not big. If something chases the lion and it likes the dog then it chases the tiger. If something is cold then it likes the tiger. If something likes the dog and it chases the tiger then the tiger chases the bear. If something sees the lion then the lion is nice. If something likes the bear and it is nice then the bear is cold. If something likes the tiger and it is cold then the tiger is cold. If something chases the lion then the lion is rough. If something is big then it does not chase the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not like the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-238_Q15", "context": "Anne is big. Anne is cold. Anne is quiet. Bob is big. Bob is smart. Fiona is big. Fiona is blue. Fiona is cold. Fiona is quiet. Fiona is rough. Fiona is white. Gary is smart. All blue, rough things are quiet. Rough things are smart. All smart, quiet things are white. All cold things are quiet. All big things are blue. Smart things are cold. Blue things are big. If Gary is white then Gary is blue. All white things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-919_Q8", "context": "The cat eats the rabbit. The cat eats the squirrel. The cat likes the lion. The lion likes the cat. The lion visits the squirrel. The rabbit eats the lion. The rabbit eats the squirrel. The squirrel eats the rabbit. The squirrel is cold. The squirrel likes the cat. If someone eats the cat then they like the rabbit. If the lion likes the cat then the lion eats the cat. If someone visits the cat then they like the lion. If someone is round and red then they like the squirrel. If someone is cold and round then they visit the lion. If someone likes the squirrel then the squirrel eats the lion. If someone is cold then they visit the cat. If someone is cold and they like the lion then the lion is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-209_Q5", "context": "The cat is red. The cat is rough. The cat visits the squirrel. The lion likes the mouse. The lion likes the squirrel. The lion sees the cat. The mouse is green. The mouse is round. The mouse does not see the cat. The mouse visits the squirrel. The squirrel likes the mouse. The squirrel sees the cat. The squirrel sees the lion. The squirrel visits the lion. If something visits the cat and it visits the lion then it does not visit the mouse. If something visits the lion then it visits the cat. If something is young then it visits the lion. If the squirrel visits the cat then the cat is young. If something visits the squirrel and it is round then the squirrel sees the mouse. If the cat sees the squirrel then the cat is not green. If something likes the squirrel and it does not visit the lion then the lion does not like the cat. If something likes the lion and it sees the lion then it sees the cat. If something likes the cat then it sees the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not visit the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-340_Q15", "context": "Anne is cold. Anne is nice. Anne is rough. Anne is smart. Bob is nice. Charlie is quiet. Dave is quiet. All rough, nice things are smart. If Charlie is kind then Charlie is quiet. Smart things are blue. All nice, blue things are kind. If Dave is nice then Dave is rough. Quiet things are nice. All nice, rough things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-986_Q6", "context": "The bald eagle eats the squirrel. The cow eats the lion. The cow eats the squirrel. The cow is rough. The cow likes the squirrel. The cow needs the bald eagle. The cow needs the squirrel. The lion is blue. The lion is cold. The lion is kind. The lion is red. The lion is rough. The lion likes the cow. The lion needs the bald eagle. The squirrel is rough. The squirrel needs the lion. If someone needs the lion and the lion likes the bald eagle then the lion is rough. If someone is cold then they need the lion. If someone eats the bald eagle and the bald eagle is kind then the bald eagle likes the cow. If someone likes the lion then the lion is kind. If someone likes the cow and the cow is kind then the cow eats the bald eagle. If someone likes the bald eagle then they are kind. If someone likes the cow then the cow likes the bald eagle. If someone eats the bald eagle then the bald eagle is cold. If someone needs the cow then they are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-793_Q16", "context": "The cat is not big. The cat sees the mouse. The cat visits the dog. The dog is not cold. The dog is not nice. The dog visits the mouse. The dog visits the tiger. The mouse is cold. The mouse is not nice. The mouse sees the cat. The tiger needs the cat. The tiger does not see the cat. If someone visits the mouse then the mouse does not see the dog. If someone sees the cat then they do not see the tiger. If someone visits the dog then the dog is not nice. If the cat is blue and the cat sees the mouse then the cat does not visit the tiger. If the cat visits the mouse then the mouse is blue. If someone sees the dog then the dog needs the tiger. If someone is cold and they do not see the tiger then the tiger sees the dog. If someone needs the tiger then they are kind. If someone is kind then they need the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat needs the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-564_Q7", "context": "Anne is not young. Bob is furry. Bob is smart. Bob is young. Dave is smart. Gary is big. Gary is quiet. Quiet things are red. All quiet things are red. All young, smart things are big. If something is smart and red then it is young. If something is nice then it is young. If something is big then it is quiet. All smart things are nice. If something is big and not smart then it is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-1035_Q1", "context": "The bald eagle does not eat the squirrel. The bald eagle is green. The bald eagle needs the rabbit. The bald eagle visits the mouse. The mouse is blue. The mouse is rough. The rabbit does not eat the mouse. The rabbit is not rough. The rabbit needs the squirrel. The squirrel needs the rabbit. If someone needs the mouse then they eat the mouse. If someone eats the mouse then they are green. If someone visits the rabbit then the rabbit is nice. If someone visits the mouse and the mouse is not blue then they do not need the squirrel. If the mouse visits the squirrel then the squirrel is blue. If someone is blue then they visit the squirrel. If someone is rough and they visit the squirrel then they do not need the rabbit. If someone is blue then they need the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-139_Q10", "context": "The cat is cold. The cat is nice. The cat likes the cow. The cat visits the rabbit. The cow is young. The rabbit is rough. The tiger is big. The tiger sees the cat. The tiger sees the rabbit. The tiger visits the rabbit. If someone is young then they like the tiger. If the cow is big then the cow sees the cat. If someone is rough and they visit the cat then the cat sees the tiger. If someone sees the cat and they are young then they like the cow. If someone sees the tiger then the tiger likes the cow. If someone likes the tiger then they visit the cat. If someone visits the tiger then the tiger visits the cow. If the rabbit is rough then the rabbit is young. If someone sees the cat and they are cold then they visit the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not see the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-613_Q10", "context": "Anne is kind. Anne is rough. Charlie is kind. Charlie is rough. Charlie is smart. Erin is not kind. Erin is not young. Gary is nice. Gary is quiet. Gary is smart. Young, kind people are nice. If someone is nice and kind then they are quiet. If Gary is nice and Gary is quiet then Gary is kind. Rough people are red. If Charlie is smart and Charlie is rough then Charlie is quiet. If someone is red and rough then they are young. If someone is quiet then they are smart. If Erin is smart then Erin is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1014_Q13", "context": "Anne is cold. Anne is nice. Bob is quiet. Bob is rough. Dave is nice. Gary is cold. Gary is nice. All rough things are cold. All quiet, green things are rough. If something is green then it is quiet. All nice things are red. If Bob is nice then Bob is cold. If Bob is rough then Bob is red. White, quiet things are nice. Red things are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1196_Q8", "context": "Anne is big. Anne is white. Bob is red. Erin is quiet. Erin is red. Erin is smart. Gary is not quiet. All smart, quiet people are red. If someone is white then they are rough. If someone is young and quiet then they are smart. Young people are smart. All smart, white people are quiet. If someone is rough then they are young. If Gary is white then Gary is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-815_Q21", "context": "The bald eagle is not blue. The bald eagle visits the bear. The bear eats the mouse. The bear is red. The bear does not visit the mouse. The cat eats the bear. The cat is blue. The cat is not cold. The cat is nice. The cat needs the bald eagle. The cat needs the bear. The cat visits the bald eagle. The cat visits the bear. The mouse eats the bald eagle. The mouse eats the bear. The mouse needs the cat. If something eats the bear and it is rough then the bear eats the cat. Red things are rough. If something visits the bear and the bear visits the mouse then the mouse needs the cat. If something visits the bear then it is red. If something eats the cat and it does not eat the mouse then the cat is cold. If something visits the mouse then the mouse visits the bear. If something is blue and nice then it visits the mouse. If something visits the cat and it does not need the bald eagle then it eats the bald eagle. If something is rough then it does not visit the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not visit the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-635_Q15", "context": "The bear likes the cow. The bear visits the tiger. The cow is big. The cow is red. The cow does not visit the tiger. The mouse likes the bear. The mouse needs the tiger. The mouse visits the cow. The mouse does not visit the tiger. The tiger needs the bear. The tiger needs the mouse. If something is young then it does not like the bear. If something is young then it likes the bear. If something likes the tiger then it visits the mouse. If something likes the cow then it does not need the tiger. If something visits the cow then it likes the tiger. If something likes the cow and it visits the mouse then the mouse visits the cow. If something visits the mouse and the mouse likes the tiger then the tiger visits the cow. If something needs the bear and the bear does not need the tiger then the bear likes the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not like the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-1013_Q17", "context": "The bald eagle chases the squirrel. The lion chases the rabbit. The lion is red. The lion sees the rabbit. The lion visits the bald eagle. The lion visits the squirrel. The rabbit is red. The rabbit visits the squirrel. The squirrel is round. The squirrel sees the lion. The squirrel visits the bald eagle. The squirrel visits the rabbit. If someone visits the lion and they are blue then they visit the rabbit. If someone visits the lion then the lion chases the rabbit. If someone is red and they see the lion then they are young. If someone is young then they chase the bald eagle. If someone chases the bald eagle and they chase the rabbit then the bald eagle visits the squirrel. If someone visits the squirrel then they are young. If the rabbit is round then the rabbit visits the bald eagle. If someone visits the squirrel then they see the rabbit. If someone visits the bald eagle and the bald eagle chases the squirrel then they visit the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not visit the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-543_Q4", "context": "The bald eagle visits the mouse. The cow is big. The cow visits the mouse. The lion is round. The lion is young. The lion sees the cow. The mouse visits the lion. If someone is red and they see the bald eagle then the bald eagle visits the cow. If someone sees the mouse then the mouse visits the lion. If someone is round then they need the lion. If the lion visits the mouse then the mouse is round. If someone sees the cow and they need the bald eagle then they need the mouse. If someone needs the mouse then they visit the mouse. If someone sees the mouse and the mouse is young then they are big. If someone needs the lion then the lion needs the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not need the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-597_Q13", "context": "The cow is rough. The cow is young. The cow likes the lion. The lion eats the mouse. The lion does not like the mouse. The mouse eats the cow. The mouse is not young. The mouse likes the lion. The rabbit does not eat the cow. The rabbit is cold. The rabbit is not nice. The rabbit likes the cow. The rabbit does not like the mouse. The rabbit does not need the cow. The rabbit needs the lion. The rabbit needs the mouse. If the rabbit likes the cow and the cow likes the rabbit then the rabbit needs the cow. If something needs the lion then it needs the rabbit. If something is nice then it needs the rabbit. If something eats the rabbit then it needs the cow. If something needs the lion then the lion is cold. If something eats the mouse then it eats the rabbit. If something needs the cow then the cow eats the mouse. If something needs the cow and the cow needs the lion then it likes the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not eat the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-9_Q22", "context": "The bear sees the tiger. The bear visits the rabbit. The cat sees the bear. The rabbit needs the bear. The tiger is rough. The tiger needs the cat. The tiger needs the rabbit. If something sees the bear then it is kind. If something visits the tiger and it is green then the tiger sees the cat. If the tiger visits the bear then the tiger is round. If something is round and it visits the cat then the cat is kind. If something visits the tiger then the tiger needs the rabbit. If something is round and it sees the bear then the bear is rough. If something visits the tiger and the tiger visits the cat then the tiger sees the rabbit. All kind things are round. If something is rough then it is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1193_Q19", "context": "Anne is cold. Bob is big. Bob is blue. Bob is cold. Bob is furry. Bob is kind. Bob is round. Bob is not smart. Charlie is blue. Gary is furry. Round people are big. If someone is cold then they are big. If Anne is smart and Anne is kind then Anne is round. If someone is big then they are furry. If Gary is cold and Gary is round then Gary is kind. All blue, furry people are kind. All furry people are blue. If someone is cold and kind then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-224_Q18", "context": "Anne is rough. Charlie is blue. Charlie is smart. Erin is blue. Erin is not quiet. Gary is not kind. Gary is not rough. All quiet, furry things are not young. If something is rough then it is young. All kind, smart things are young. If something is young then it is blue. If something is quiet and kind then it is blue. If something is kind then it is quiet. Blue, young things are kind. Quiet things are smart. If Charlie is kind and Charlie is quiet then Charlie is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1360_Q10", "context": "Bob is kind. Bob is rough. Bob is round. Erin is green. Erin is red. Erin is rough. Erin is smart. Gary is kind. Gary is rough. Harry is nice. Harry is rough. Harry is smart. All rough things are nice. If something is red then it is smart. Smart, red things are round. If something is green then it is kind. All nice, red things are rough. All red, round things are green. If Gary is green then Gary is kind. All kind, nice things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-5_Q2", "context": "Charlie is cold. Charlie is green. Charlie is kind. Charlie is round. Charlie is young. Dave is white. Erin is young. Harry is big. Harry is cold. Harry is green. Harry is kind. Harry is young. If something is green then it is kind. If Dave is green and Dave is white then Dave is young. All white things are green. Round, big things are cold. All round things are green. All young, round things are big. Round things are big. Young things are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-651_Q4", "context": "The cow chases the lion. The cow chases the squirrel. The cow is young. The cow likes the lion. The dog chases the cow. The dog chases the squirrel. The dog eats the cow. The dog eats the squirrel. The dog is not nice. The dog is not young. The lion eats the dog. The squirrel chases the dog. The squirrel eats the dog. The squirrel is young. If something is nice then it likes the squirrel. If something eats the dog then the dog is green. If something eats the cow then the cow does not chase the dog. If something is red then it is rough. If something eats the squirrel then it likes the cow. If something eats the lion then the lion eats the squirrel. If something likes the dog and it is not green then it does not chase the squirrel. If something likes the cow and the cow chases the squirrel then it eats the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-975_Q3", "context": "Bob is not red. Charlie is not big. Charlie is blue. Charlie is not furry. Charlie is kind. Dave is blue. Dave is red. Harry is big. Harry is cold. Harry is furry. Harry is not green. Harry is not red. If someone is big then they are not green. If someone is blue and red then they are big. If someone is furry and not green then they are kind. If someone is red and not green then they are furry. Kind people are cold. All green people are not cold. If someone is green and not furry then they are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-150_Q10", "context": "The bear is young. The bear likes the cow. The cow chases the lion. The cow visits the bear. The lion chases the bear. The lion chases the rabbit. The lion is red. The lion is young. The lion visits the bear. The lion visits the rabbit. The rabbit visits the bear. The rabbit visits the lion. If someone likes the lion and they like the bear then the bear visits the rabbit. If someone chases the rabbit then the rabbit chases the cow. If someone is blue then they like the lion. If someone visits the rabbit then they are blue. If the lion chases the rabbit and the lion is red then the rabbit likes the cow. If someone is red then they visit the cow. If someone likes the lion then the lion likes the bear. If someone visits the bear then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not visit the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1079_Q14", "context": "Bob is big. Bob is cold. Bob is round. Charlie is cold. Charlie is green. Fiona is round. Gary is red. Round things are white. All red, kind things are white. If something is white and kind then it is big. All white, cold things are red. If something is white then it is cold. If Charlie is white then Charlie is round. Round, red things are kind. If something is round and not white then it is green. If something is red then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-246_Q16", "context": "The bald eagle is rough. The bald eagle needs the cow. The bald eagle needs the mouse. The cat is not nice. The cat likes the mouse. The cat visits the cow. The cow needs the cat. The mouse is not blue. The mouse is rough. The mouse is young. The mouse needs the cat. If something needs the cow and the cow needs the mouse then the cow visits the mouse. If something visits the mouse and the mouse is rough then it visits the cow. If something is nice then it visits the cat. If something needs the cow then the cow is rough. If something likes the mouse then it needs the mouse. If something is rough then it likes the mouse. If something needs the cat and the cat visits the mouse then the cat is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow visits the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1132_Q1", "context": "Charlie is white. Dave is red. Dave is young. Erin is cold. Erin is red. Gary is not white. Gary is young. Cold, red things are young. All white things are not rough. All white things are not rough. White things are cold. Cold, big things are red. If Charlie is white and Charlie is cold then Charlie is furry. All furry things are big. If something is cold then it is white. If Gary is rough and Gary is white then Gary is not red.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-300_Q2", "context": "The bear eats the rabbit. The bear likes the rabbit. The bear likes the squirrel. The bear does not see the rabbit. The bear sees the tiger. The rabbit likes the bear. The rabbit sees the squirrel. The squirrel is big. The squirrel does not see the rabbit. The tiger is kind. The tiger is young. If something sees the rabbit then the rabbit does not like the bear. If something is kind then it sees the bear. If something sees the squirrel then it is not rough. If the squirrel eats the rabbit and the squirrel does not see the tiger then the tiger does not see the rabbit. If something sees the bear and the bear is kind then it eats the tiger. If something eats the tiger then it is young. If something sees the bear and the bear sees the tiger then the bear is kind. If the squirrel is blue and the squirrel likes the tiger then the squirrel is not kind. If the bear eats the rabbit then the rabbit does not eat the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear sees the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-72_Q6", "context": "Dave is not rough. Fiona is not nice. Fiona is rough. Gary is nice. Gary is rough. Gary is white. Harry is nice. If Harry is furry then Harry is kind. Round, kind people are white. All round, nice people are red. If someone is nice then they are round. If someone is red then they are furry. If someone is furry and not white then they are not rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-511_Q1", "context": "Bob is quiet. Bob is red. Bob is rough. Charlie is cold. Charlie is quiet. Dave is quiet. Harry is cold. All quiet, cold things are furry. If something is cold then it is white. If Harry is furry and Harry is white then Harry is red. If Dave is blue then Dave is furry. If something is red then it is rough. If something is white then it is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-608_Q1", "context": "The bald eagle sees the squirrel. The bald eagle sees the tiger. The bear chases the tiger. The bear visits the bald eagle. The squirrel is green. The squirrel is red. The squirrel is young. The squirrel does not see the bald eagle. The squirrel does not see the bear. The squirrel does not see the tiger. The squirrel does not visit the bear. The squirrel visits the tiger. The tiger is blue. The tiger does not visit the bald eagle. The tiger visits the bear. The tiger visits the squirrel. If someone visits the tiger then the tiger does not chase the squirrel. If someone chases the bald eagle then they are not cold. If someone visits the squirrel and the squirrel sees the bear then they do not see the squirrel. If someone chases the squirrel and the squirrel sees the bald eagle then they are red. If someone is green then they chase the squirrel. If someone is young and they chase the tiger then they are blue. If someone chases the squirrel then they chase the bald eagle. If someone chases the bald eagle then the bald eagle is green. If the bald eagle does not see the squirrel then the bald eagle does not visit the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle sees the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-278_Q21", "context": "Charlie is big. Charlie is not blue. Charlie is rough. Dave is furry. Erin is quiet. Erin is rough. Gary is young. If someone is young and big then they are not nice. If someone is furry and not young then they are big. All rough, quiet people are big. If someone is blue then they are quiet. All quiet, nice people are not furry. All rough, blue people are furry. If someone is young then they are rough. Furry, blue people are rough. If someone is rough and young then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-393_Q9", "context": "Anne is blue. Anne is cold. Anne is kind. Anne is smart. Anne is white. Charlie is smart. Erin is smart. Gary is cold. Gary is kind. Gary is smart. Cold things are blue. If something is white then it is cold. All smart, blue things are furry. Quiet things are cold. Blue things are furry. If something is smart then it is white. If Erin is quiet then Erin is blue. All smart, blue things are cold. Smart, furry things are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-441_Q13", "context": "Anne is blue. Anne is nice. Anne is round. Anne is white. Anne is young. Fiona is quiet. Fiona is round. Fiona is white. Fiona is young. Gary is nice. Gary is quiet. Harry is nice. All nice, red people are round. If someone is quiet and white then they are blue. All nice people are red. If someone is red then they are nice. All blue people are nice. White people are quiet. If Anne is red and Anne is white then Anne is round. If someone is round then they are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-153_Q24", "context": "The cow does not chase the mouse. The cow eats the mouse. The cow does not eat the tiger. The cow visits the tiger. The mouse eats the squirrel. The mouse is blue. The squirrel does not chase the tiger. The squirrel eats the tiger. The squirrel is rough. The squirrel visits the cow. The squirrel visits the tiger. The tiger visits the mouse. If someone visits the cow and they eat the mouse then they eat the tiger. If someone chases the mouse then they visit the mouse. If someone visits the mouse then they chase the cow. If someone visits the mouse then they visit the cow. If someone eats the tiger then they are not round. If someone chases the cow then they eat the mouse. If someone eats the mouse and the mouse does not visit the cow then the mouse visits the squirrel. If someone visits the tiger and the tiger is not round then the tiger is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow chases the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-490_Q11", "context": "The bear chases the mouse. The bear is kind. The bear is rough. The bear is round. The bear sees the tiger. The mouse chases the bear. The mouse is kind. The mouse likes the bear. The mouse sees the rabbit. The mouse sees the tiger. The rabbit sees the tiger. The tiger chases the bear. If something sees the mouse and it chases the bear then the mouse is rough. If something likes the bear then it sees the mouse. If something chases the mouse and the mouse chases the rabbit then the rabbit sees the tiger. If something chases the tiger and the tiger is rough then the tiger likes the mouse. If something chases the bear and the bear likes the rabbit then the rabbit chases the mouse. If something sees the mouse then it likes the rabbit. If the rabbit is cold then the rabbit chases the tiger. If something likes the rabbit then the rabbit likes the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit likes the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-428_Q8", "context": "Bob is big. Bob is smart. Charlie is cold. Fiona is big. Fiona is furry. Fiona is quiet. Fiona is young. Harry is big. Harry is kind. Harry is quiet. Harry is smart. Furry people are kind. All cold, quiet people are young. If someone is big and smart then they are cold. Young people are furry. If Fiona is quiet and Fiona is cold then Fiona is kind. All cold people are quiet. If someone is quiet and furry then they are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-534_Q6", "context": "The bear is red. The dog chases the rabbit. The mouse eats the bear. The mouse is big. The mouse needs the dog. The rabbit eats the bear. The rabbit eats the dog. The rabbit eats the mouse. The rabbit is red. The rabbit needs the dog. If something needs the dog then it eats the rabbit. If something eats the mouse then it eats the rabbit. If something chases the rabbit and the rabbit chases the bear then it eats the bear. If something needs the bear then the bear eats the mouse. If something eats the mouse and it eats the rabbit then it needs the bear. If something needs the mouse and it is big then it chases the mouse. If something eats the bear and the bear needs the mouse then it needs the bear. If something needs the dog then it eats the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not need the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-825_Q8", "context": "The cat eats the lion. The cat is nice. The cat is rough. The cat sees the squirrel. The lion eats the squirrel. The lion is rough. The lion needs the squirrel. The rabbit needs the cat. The rabbit sees the cat. The rabbit sees the lion. The squirrel eats the rabbit. The squirrel is nice. The squirrel is rough. The squirrel needs the cat. The squirrel needs the lion. The squirrel needs the rabbit. If someone sees the rabbit then the rabbit is blue. If someone sees the rabbit then they are blue. If someone needs the lion then they eat the rabbit. If someone is blue then they need the lion. If someone eats the lion then they need the lion. If someone sees the squirrel then they eat the rabbit. If someone needs the cat and the cat needs the lion then the cat sees the rabbit. If someone is green and they need the rabbit then they are nice. If the lion needs the cat then the cat is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1282_Q8", "context": "Anne is nice. Anne is white. Bob is blue. Bob is round. Bob is smart. Bob is white. Bob is young. Charlie is green. Charlie is white. Charlie is young. Dave is young. All young, green things are white. Smart, white things are green. All white, young things are blue. All young, smart things are white. If something is young and nice then it is smart. Green, nice things are young. All smart, white things are green. All nice, round things are smart. If something is nice then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-432_Q15", "context": "Bob is blue. Dave is green. Dave is rough. Erin is cold. Erin is green. Erin is quiet. Harry is green. If Dave is quiet then Dave is cold. If someone is rough then they are green. All cold people are rough. If someone is blue then they are rough. Green, blue people are round. All furry, blue people are quiet. Round people are furry. If someone is furry and rough then they are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-504_Q16", "context": "Dave is big. Dave is kind. Dave is rough. Erin is big. Erin is furry. Erin is quiet. Erin is rough. Erin is white. Fiona is big. Harry is kind. Harry is red. If Erin is white then Erin is big. All quiet people are white. All furry, big people are quiet. All big people are furry. Quiet people are rough. All big, white people are kind. If Erin is big then Erin is white. If someone is red and furry then they are quiet. If someone is quiet and kind then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-935_Q9", "context": "The cat chases the lion. The cat needs the rabbit. The cow chases the cat. The cow is young. The cow needs the rabbit. The lion chases the rabbit. The lion sees the rabbit. The rabbit chases the cat. The rabbit is kind. The rabbit is nice. The rabbit is round. The rabbit needs the cat. The rabbit needs the lion. The rabbit sees the lion. If someone sees the cat then they need the cow. If the lion is green and the lion needs the cat then the lion is kind. If someone is kind then they see the cat. If someone needs the cat and they are kind then the cat needs the cow. If someone sees the lion and they see the cow then the cow needs the rabbit. If the rabbit needs the cow then the cow is kind. If the rabbit sees the cat then the cat needs the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow sees the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-115_Q10", "context": "Anne is rough. Charlie is not rough. Dave is big. Dave is green. Fiona is green. Fiona is round. Fiona is white. All red people are white. If Dave is kind then Dave is white. If Fiona is white then Fiona is red. All white, red people are kind. If Dave is big then Dave is red. Kind, big people are red. White, red people are green. Rough people are round. All kind people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-119_Q9", "context": "Charlie is furry. Charlie is green. Charlie is nice. Charlie is red. Dave is furry. Dave is nice. Dave is smart. Dave is white. Erin is red. Fiona is smart. Fiona is white. Green, nice people are smart. If someone is green then they are young. If someone is white then they are green. Furry, red people are smart. If someone is young and white then they are furry. All red people are white. Nice people are red. Green, nice people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-1_Q9", "context": "The cow is not green. The cow is kind. The cow is not young. The cow sees the rabbit. The lion is not rough. The lion sees the rabbit. The lion visits the cow. The lion visits the rabbit. The mouse is green. The mouse sees the lion. The rabbit is green. The rabbit is kind. The rabbit does not need the cow. The rabbit sees the cow. If someone sees the rabbit then they see the mouse. If someone needs the cow then they need the mouse. If someone visits the lion and they visit the mouse then they need the mouse. If someone sees the rabbit and the rabbit visits the lion then the rabbit is blue. If someone needs the mouse then they are young. If someone sees the cow then they visit the cow. If someone sees the mouse then the mouse is blue. If someone is blue then they need the cow. If someone sees the lion and the lion is young then the lion does not visit the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse needs the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-751_Q5", "context": "The bear eats the dog. The bear is not round. The bear sees the dog. The bear sees the tiger. The dog likes the tiger. The mouse is not nice. The mouse is round. The mouse does not see the tiger. The tiger eats the bear. The tiger does not eat the mouse. The tiger sees the bear. If someone eats the mouse then they like the bear. If someone likes the tiger then they like the bear. If someone is nice and they like the mouse then they see the tiger. If someone likes the tiger and the tiger eats the dog then the dog likes the mouse. If someone likes the tiger then they eat the mouse. If someone eats the mouse and they eat the bear then the mouse likes the tiger. If someone likes the tiger then the tiger sees the mouse. If someone likes the mouse then they like the tiger. If someone likes the bear then they eat the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog eats the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1047_Q1", "context": "Anne is blue. Bob is white. Charlie is big. Charlie is kind. Charlie is white. Harry is kind. Harry is nice. All green people are white. Blue people are nice. If Harry is rough and Harry is white then Harry is nice. If someone is nice then they are kind. If Anne is kind then Anne is green. All kind people are blue. If someone is nice and white then they are rough. If Charlie is rough then Charlie is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-237_Q9", "context": "Anne is blue. Anne is cold. Anne is quiet. Anne is rough. Anne is round. Bob is quiet. Bob is smart. Dave is quiet. Dave is smart. Gary is rough. Gary is smart. If someone is smart and kind then they are rough. If Gary is rough and Gary is blue then Gary is kind. All rough people are blue. If someone is smart then they are round. If Dave is quiet and Dave is rough then Dave is kind. Cold people are kind. If someone is blue and cold then they are kind. Round people are cold. All quiet people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1420_Q10", "context": "Bob is white. Charlie is blue. Charlie is white. Erin is green. Fiona is quiet. Fiona is red. Fiona is white. Quiet things are blue. All smart, big things are green. All white, quiet things are blue. If something is white and red then it is big. Quiet, green things are big. Green, blue things are red. All green things are white. If something is red and big then it is smart. All white things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-892_Q2", "context": "Charlie is furry. Charlie is green. Charlie is nice. Charlie is round. Charlie is white. Dave is cold. Dave is green. Dave is nice. Dave is round. Dave is white. Gary is white. Harry is furry. Cold things are quiet. If something is white then it is nice. All round, white things are nice. If Gary is quiet and Gary is round then Gary is cold. If something is nice then it is round. If something is green then it is quiet. If something is round then it is cold. If something is quiet and white then it is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-675_Q11", "context": "Charlie is blue. Charlie is quiet. Charlie is rough. Dave is rough. Erin is red. Harry is quiet. Harry is red. All red people are round. Kind people are rough. All quiet, blue people are kind. Blue people are kind. Round, red people are blue. If Erin is blue and Erin is rough then Erin is quiet. All smart people are blue. Quiet, smart people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-204_Q23", "context": "The bald eagle chases the cat. The bald eagle does not like the cat. The bald eagle likes the squirrel. The cat is blue. The cat is cold. The squirrel eats the bald eagle. The squirrel is kind. The squirrel likes the bald eagle. The squirrel likes the cat. The tiger is blue. The tiger is cold. If someone likes the tiger then the tiger does not chase the squirrel. If someone likes the tiger then the tiger likes the bald eagle. If someone chases the bald eagle then the bald eagle is blue. If someone likes the bald eagle and they eat the squirrel then they are blue. If someone eats the bald eagle then they do not eat the tiger. If someone chases the cat and the cat likes the tiger then the cat does not chase the squirrel. If someone is young then they like the tiger. If someone eats the squirrel then they like the tiger. If someone likes the bald eagle then they are young.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not chase the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1045_Q12", "context": "Bob is nice. Charlie is not quiet. Charlie is rough. Erin is kind. Erin is quiet. Gary is quiet. Gary is rough. If something is smart then it is rough. Smart, rough things are kind. All kind, white things are not furry. Quiet things are smart. All nice things are smart. Rough, kind things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-527_Q13", "context": "The bald eagle chases the mouse. The bald eagle needs the lion. The bald eagle needs the mouse. The cow chases the lion. The cow chases the mouse. The cow eats the lion. The cow is red. The cow is rough. The lion eats the bald eagle. The lion is cold. The lion needs the mouse. The mouse eats the bald eagle. The mouse is nice. The mouse is red. The mouse is rough. The mouse needs the cow. All red, green things are nice. If something is cold then it chases the mouse. If something eats the lion then it eats the mouse. Green things are cold. If something is rough and it eats the mouse then the mouse is green. If something chases the lion then the lion chases the bald eagle. If something chases the lion then the lion is nice. If something chases the mouse and it needs the cow then the cow needs the bald eagle. If the lion needs the cow then the lion eats the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-622_Q12", "context": "Anne is red. Anne is not rough. Anne is round. Erin is smart. Fiona is nice. Fiona is red. Harry is blue. Harry is green. Harry is nice. Harry is red. Harry is round. All rough, red people are green. If someone is rough then they are green. If someone is green and not red then they are not round. Rough, green people are round. If someone is nice and rough then they are round. Round, smart people are nice. All nice, green people are blue. Smart people are rough. If Anne is smart and Anne is green then Anne is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-668_Q14", "context": "Anne is cold. Charlie is cold. Charlie is quiet. Charlie is red. Charlie is round. Gary is cold. Gary is red. Gary is round. Gary is young. Harry is red. Harry is round. Harry is young. If something is round then it is white. If something is cold then it is smart. If something is red and smart then it is cold. If something is round then it is cold. Smart, young things are round. Smart things are red. Red things are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1326_Q4", "context": "Bob is big. Bob is furry. Bob is rough. Bob is round. Bob is smart. Bob is young. Charlie is big. Charlie is furry. Charlie is rough. Charlie is smart. Charlie is young. Erin is furry. Erin is round. Gary is rough. White things are young. If something is furry and rough then it is smart. All rough things are big. If Erin is rough then Erin is white. If something is big then it is white. White things are furry. Rough, smart things are round. All big things are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-326_Q23", "context": "The bald eagle likes the tiger. The bald eagle sees the cow. The cow is red. The cow sees the tiger. The mouse eats the bald eagle. The mouse eats the cow. The mouse eats the tiger. The mouse is cold. The mouse likes the tiger. The tiger eats the bald eagle. The tiger eats the cow. The tiger is red. The tiger is young. The tiger likes the bald eagle. The tiger likes the mouse. The tiger sees the mouse. All nice people are kind. If someone is nice and they see the bald eagle then the bald eagle likes the mouse. If someone likes the cow then they are nice. If someone is nice and they like the mouse then the mouse sees the cow. If the mouse eats the tiger then the tiger sees the mouse. If someone likes the tiger and the tiger is young then the tiger likes the bald eagle. If someone is kind then they see the bald eagle. If someone eats the tiger then the tiger likes the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not eat the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-709_Q17", "context": "Bob is big. Bob is furry. Bob is quiet. Bob is round. Dave is furry. Dave is rough. Erin is furry. Erin is kind. Erin is white. Fiona is white. All big, quiet people are kind. All white people are quiet. Quiet people are rough. If someone is quiet and not white then they are rough. All rough, quiet people are round. Quiet, round people are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-676_Q24", "context": "The bald eagle chases the bear. The bald eagle is green. The bald eagle is kind. The bald eagle sees the tiger. The bear visits the bald eagle. The mouse chases the bear. The mouse chases the tiger. The mouse is cold. The mouse visits the tiger. The tiger chases the bear. The tiger sees the mouse. If someone sees the bald eagle then they visit the mouse. If someone is green then they see the bear. If someone sees the bear then the bear sees the bald eagle. If someone visits the mouse then the mouse sees the bear. If someone is green and they see the tiger then the tiger is young. If the mouse chases the tiger and the mouse sees the bear then the tiger chases the mouse. If someone visits the mouse then the mouse chases the tiger. If the tiger is green and the tiger visits the bald eagle then the bald eagle sees the mouse. If the bear sees the tiger and the bear is big then the tiger is big.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle visits the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-611_Q11", "context": "Anne is furry. Anne is red. Anne is rough. Anne is not young. Charlie is red. Erin is cold. Erin is furry. Erin is not red. Erin is young. Harry is red. Harry is white. Rough people are furry. If someone is white and round then they are rough. Red, cold people are young. All white people are cold. If someone is young then they are round. If someone is young then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-147_Q10", "context": "The cat chases the rabbit. The cat eats the rabbit. The cat eats the squirrel. The cat is nice. The mouse eats the cat. The mouse is kind. The rabbit chases the squirrel. The rabbit eats the cat. The rabbit does not eat the squirrel. The rabbit is green. The rabbit does not need the cat. The squirrel chases the rabbit. The squirrel eats the mouse. The squirrel is kind. If something needs the cat then it eats the mouse. If something chases the squirrel then it does not eat the mouse. If something needs the rabbit and it is red then the rabbit is red. If something needs the mouse then the mouse eats the rabbit. If the cat eats the mouse then the cat is red. If something needs the mouse and it needs the squirrel then the mouse needs the cat. If something eats the mouse and the mouse eats the rabbit then the mouse needs the cat. If the mouse needs the squirrel and the mouse eats the rabbit then the squirrel needs the mouse. If something eats the mouse then it needs the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not eat the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-723_Q5", "context": "Anne is green. Anne is not nice. Bob is white. Dave is smart. Gary is big. Gary is cold. Gary is rough. Nice, white things are rough. If something is white and not smart then it is rough. All cold things are nice. All rough, green things are nice. If something is smart then it is nice. All smart, big things are cold. Nice things are white. If Anne is green and Anne is nice then Anne is rough. If something is rough then it is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-743_Q12", "context": "The bear sees the squirrel. The bear visits the cow. The cow is blue. The cow is red. The cow sees the lion. The cow visits the bear. The lion is rough. The lion sees the bear. The lion visits the bear. The squirrel sees the cow. The squirrel sees the lion. If the squirrel is round and the squirrel visits the lion then the lion visits the bear. Blue people are round. If someone visits the squirrel and the squirrel sees the bear then they need the bear. If someone sees the cow and the cow sees the lion then the cow visits the squirrel. If the squirrel is round and the squirrel visits the cow then the squirrel is rough. If someone is blue and round then they need the lion. If someone sees the lion and the lion needs the squirrel then they are red. If someone is red and they need the lion then the lion is blue. If someone sees the squirrel and they are round then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not need the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-583_Q11", "context": "The bald eagle chases the lion. The bald eagle eats the bear. The bear chases the lion. The bear is cold. The bear is round. The bear likes the bald eagle. The cat eats the bald eagle. The cat is big. The cat is kind. The lion chases the bald eagle. The lion chases the bear. The lion is round. If someone eats the cat then they eat the bald eagle. If someone chases the lion then they like the cat. If someone eats the lion then they chase the bear. If the lion likes the bald eagle then the lion eats the bear. If someone eats the bald eagle then they like the bear. If the bald eagle eats the lion and the lion likes the cat then the cat likes the bear. If someone likes the bear and they eat the bear then the bear eats the cat. If someone eats the bear and they like the cat then they eat the bald eagle. If someone likes the bald eagle then the bald eagle likes the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear eats the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-815_Q6", "context": "The bald eagle is not blue. The bald eagle visits the bear. The bear eats the mouse. The bear is red. The bear does not visit the mouse. The cat eats the bear. The cat is blue. The cat is not cold. The cat is nice. The cat needs the bald eagle. The cat needs the bear. The cat visits the bald eagle. The cat visits the bear. The mouse eats the bald eagle. The mouse eats the bear. The mouse needs the cat. If something eats the bear and it is rough then the bear eats the cat. Red things are rough. If something visits the bear and the bear visits the mouse then the mouse needs the cat. If something visits the bear then it is red. If something eats the cat and it does not eat the mouse then the cat is cold. If something visits the mouse then the mouse visits the bear. If something is blue and nice then it visits the mouse. If something visits the cat and it does not need the bald eagle then it eats the bald eagle. If something is rough then it does not visit the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-250_Q14", "context": "The bald eagle is not kind. The bald eagle likes the mouse. The bald eagle visits the mouse. The cat is green. The cat likes the squirrel. The mouse does not chase the cat. The mouse is young. The mouse likes the cat. The mouse likes the squirrel. The mouse visits the bald eagle. The mouse visits the squirrel. The squirrel is young. If something is nice then it is young. If something likes the mouse then it is nice. If the bald eagle chases the squirrel then the squirrel likes the mouse. If something chases the cat then it is blue. If something is young then it chases the squirrel. If something likes the cat and it is not young then it visits the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-768_Q15", "context": "Anne is big. Anne is cold. Anne is green. Bob is furry. Bob is kind. Bob is smart. Dave is cold. Dave is kind. Harry is big. Harry is cold. Harry is kind. Smart things are big. If something is quiet and smart then it is green. All green, quiet things are furry. If something is cold and kind then it is quiet. All big, quiet things are cold. Quiet, kind things are big. All furry, quiet things are cold. All green, smart things are quiet. Big things are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-663_Q20", "context": "Anne is rough. Anne is round. Anne is white. Dave is blue. Dave is furry. Dave is green. Dave is rough. Dave is round. Dave is young. Erin is blue. Harry is furry. Harry is young. Blue, furry people are green. Round, green people are white. All round people are rough. If Anne is young then Anne is white. If someone is white then they are round. Young people are white. White, rough people are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-62_Q5", "context": "Anne is big. Anne is cold. Anne is kind. Anne is red. Anne is smart. Anne is white. Charlie is big. Charlie is white. Fiona is red. Harry is big. Harry is red. Harry is rough. If Harry is cold then Harry is smart. Red people are kind. All big people are smart. If someone is cold and smart then they are rough. If Fiona is rough and Fiona is kind then Fiona is white. All white, cold people are big. If someone is cold then they are smart. If someone is red then they are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-566_Q9", "context": "Bob is kind. Bob is red. Bob is rough. Bob is round. Bob is smart. Charlie is kind. Charlie is rough. Fiona is red. Gary is kind. Gary is smart. If something is red then it is young. If something is rough and round then it is green. All round things are rough. If something is red and rough then it is green. Green things are round. Red, kind things are rough. Kind, young things are rough. All young things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-915_Q10", "context": "Charlie is green. Charlie is quiet. Erin is red. Erin is rough. Erin is round. Erin is white. Fiona is nice. Fiona is red. Harry is green. Harry is white. All quiet, rough things are red. Red, green things are nice. All quiet, red things are round. If something is green and round then it is rough. All nice things are quiet. If Harry is red and Harry is quiet then Harry is green. Green, white things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1101_Q15", "context": "Anne is kind. Anne is nice. Erin is nice. Erin is rough. Gary is big. Gary is furry. Gary is kind. Gary is red. Gary is rough. Harry is not big. Harry is furry. Harry is smart. All rough things are big. If something is smart and not nice then it is not kind. All big things are kind. All kind things are smart. Nice, furry things are smart. All smart, rough things are furry. If something is smart and kind then it is rough. Furry things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1296_Q7", "context": "Anne is nice. Erin is nice. Erin is smart. Erin is white. Erin is young. Fiona is big. Fiona is cold. Fiona is furry. Fiona is nice. Fiona is white. Fiona is young. Harry is big. Harry is cold. Harry is furry. Harry is white. Harry is young. All furry people are big. Big people are young. If someone is young and white then they are cold. If Anne is young then Anne is white. All furry, white people are nice. If Anne is nice then Anne is furry. All smart, nice people are white. If Harry is young then Harry is big. All smart people are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-318_Q14", "context": "The bear is cold. The bear likes the mouse. The lion chases the rabbit. The mouse likes the rabbit. The rabbit chases the bear. The rabbit is rough. The rabbit visits the mouse. If something visits the bear and the bear chases the rabbit then it chases the bear. If the mouse visits the rabbit then the mouse is cold. If something visits the rabbit then it visits the lion. If something chases the bear then it visits the rabbit. If something is young then it likes the lion. If something visits the rabbit then it visits the bear. If something visits the lion and it likes the lion then it chases the mouse. If something is rough and it visits the lion then the lion chases the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit likes the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-1_Q14", "context": "The bald eagle sees the bear. The bear is red. The bear is round. The bear likes the cow. The bear needs the cow. The cow is rough. The cow likes the bald eagle. The cow likes the bear. The cow needs the bear. The lion likes the cow. The lion needs the bear. If something sees the cow and the cow is kind then it likes the bear. If something is red then it sees the bald eagle. If something sees the bear and the bear likes the bald eagle then the bald eagle sees the lion. If something sees the bald eagle and it is round then it sees the lion. If something likes the bear and the bear is kind then it needs the lion. If something needs the bear then it is kind. If something sees the lion then it sees the cow. If something likes the bear and it is round then it likes the bald eagle. If something needs the cow and it likes the bald eagle then it is red.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion sees the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-824_Q14", "context": "The bald eagle does not chase the bear. The bald eagle does not chase the cat. The bald eagle needs the lion. The bald eagle sees the bear. The bear chases the cat. The bear is red. The bear sees the cat. The bear sees the lion. The cat chases the lion. The lion chases the bald eagle. The lion chases the bear. The lion does not chase the cat. The lion is red. The lion needs the bald eagle. The lion sees the bald eagle. The lion sees the cat. If the bald eagle sees the cat then the bald eagle is rough. If something needs the bald eagle then the bald eagle is rough. If something sees the lion and it sees the cat then the cat sees the bear. If something is rough then it needs the bear. If something is rough then it needs the cat. If something sees the bear and it needs the bear then the bear is rough. If the lion chases the bear and the bear needs the cat then the lion is green. If something needs the cat and it needs the lion then the lion chases the bald eagle. If something is green and not rough then it needs the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat needs the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-156_Q14", "context": "Bob is green. Bob is nice. Charlie is green. Erin is green. Erin is kind. Gary is kind. Gary is nice. If someone is young and kind then they are quiet. All quiet people are white. If Charlie is green then Charlie is cold. All cold people are nice. If Gary is green and Gary is kind then Gary is white. Nice, cold people are kind. If someone is cold and kind then they are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-61_Q23", "context": "The bear is green. The bear is red. The bear sees the cow. The cat is big. The cat is rough. The cat likes the bear. The cat likes the cow. The cow visits the cat. The cow visits the tiger. The tiger is green. The tiger is nice. The tiger likes the bear. The tiger sees the cat. The tiger visits the bear. If someone sees the bear and they are rough then the bear sees the cat. If someone sees the bear then they are nice. If someone visits the cat and they are green then the cat is nice. If someone likes the bear and the bear visits the cow then they visit the cat. If the bear likes the cat then the bear visits the cow. If someone likes the cat then they are red. If someone is big then they see the cat. If the cat is nice and the cat is big then the cat visits the cow. If someone likes the bear and the bear is red then the bear likes the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not visit the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-303_Q14", "context": "The cat is blue. The cow is round. The cow needs the cat. The dog is nice. The dog is round. The dog needs the cat. The dog needs the rabbit. The dog sees the cat. The rabbit needs the dog. The rabbit sees the cow. Round people are kind. If the cow needs the dog then the dog chases the cat. If someone sees the cow and they are blue then the cow chases the rabbit. Kind people are rough. If someone is blue then they see the cat. If someone chases the cat then the cat sees the rabbit. If someone is nice and they need the dog then the dog needs the cat. If someone is round then they see the rabbit. If someone is rough then they need the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-769_Q22", "context": "The bald eagle is rough. The bald eagle does not like the tiger. The cow is cold. The cow is kind. The cow is rough. The cow is young. The cow does not need the tiger. The squirrel likes the bald eagle. The tiger likes the bald eagle. The tiger needs the bald eagle. The tiger needs the cow. If someone needs the cow and they need the tiger then the tiger likes the squirrel. If someone is young then they like the tiger. If someone sees the squirrel and they need the bald eagle then they are young. If someone likes the squirrel then they are young. If someone sees the squirrel then the squirrel is not red. If someone sees the squirrel and the squirrel sees the tiger then the squirrel sees the bald eagle. If someone needs the bald eagle then they see the cow. If someone sees the cow then they need the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow needs the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1138_Q15", "context": "Anne is blue. Anne is cold. Anne is rough. Anne is young. Bob is cold. Bob is young. Fiona is cold. Fiona is rough. Fiona is round. Gary is blue. Gary is furry. Gary is rough. Gary is round. Gary is young. Round, young things are blue. Cold things are round. If something is big and rough then it is furry. All blue things are furry. Young, furry things are rough. If Fiona is rough and Fiona is not blue then Fiona is big. All rough, furry things are big. If Gary is round and Gary is furry then Gary is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-480_Q4", "context": "The cat sees the dog. The cat visits the mouse. The dog sees the mouse. The dog visits the mouse. The mouse eats the dog. The mouse is big. The mouse is kind. The mouse is rough. The mouse sees the cat. The mouse visits the rabbit. The rabbit eats the cat. If something visits the mouse then it visits the rabbit. If something sees the mouse and it is big then it sees the cat. If something is cold then it eats the rabbit. If something sees the cat then it is cold. If something is cold then it eats the mouse. If something eats the cat then it is rough. If something eats the rabbit and it visits the rabbit then the rabbit sees the cat. If something visits the mouse and it sees the mouse then it is kind. If something visits the dog and it eats the rabbit then the dog sees the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-823_Q3", "context": "Charlie is furry. Charlie is green. Charlie is nice. Charlie is quiet. Charlie is rough. Charlie is white. Erin is green. Fiona is nice. Fiona is rough. Fiona is white. Fiona is young. Harry is furry. Harry is rough. Harry is white. Rough things are furry. If something is quiet then it is white. If Harry is green and Harry is rough then Harry is nice. White things are young. Rough things are young. If something is rough and green then it is quiet. If something is green then it is quiet. Rough, furry things are white. If something is green and young then it is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-732_Q12", "context": "Bob is red. Erin is not quiet. Erin is young. Fiona is rough. Gary is blue. Gary is not quiet. Gary is rough. All rough people are not quiet. Blue people are red. If Erin is blue and Erin is cold then Erin is not furry. All furry, young people are not cold. If someone is rough then they are blue. Young people are furry. If Bob is cold and Bob is blue then Bob is not rough. If someone is red then they are young. If Gary is rough and Gary is blue then Gary is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-697_Q6", "context": "The bear needs the dog. The bear needs the rabbit. The dog eats the rabbit. The dog is big. The dog is round. The rabbit eats the dog. The rabbit needs the bear. The rabbit needs the dog. The tiger chases the rabbit. The tiger is blue. The tiger needs the dog. If something is rough and it needs the rabbit then it needs the dog. If something is round and big then it chases the rabbit. If something is rough then it needs the tiger. If something chases the bear and it is round then the bear is big. If the dog chases the rabbit and the rabbit eats the dog then the dog is rough. If something chases the dog then the dog is blue. If something eats the bear and the bear eats the dog then it is big. If something is big and it needs the tiger then it chases the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-319_Q7", "context": "Anne is rough. Anne is white. Charlie is green. Fiona is big. Fiona is furry. Fiona is quiet. Fiona is white. Harry is not quiet. Harry is not rough. Harry is not smart. Harry is white. If something is green then it is quiet. Rough things are big. If something is smart and furry then it is big. All big, furry things are green. Big, quiet things are smart. If Charlie is quiet then Charlie is smart. If something is smart and not rough then it is furry. All big things are furry. If Anne is green then Anne is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-384_Q14", "context": "The bear is red. The bear is young. The bear needs the mouse. The cow likes the rabbit. The cow needs the mouse. The cow visits the bear. The cow visits the mouse. The cow visits the rabbit. The mouse is rough. The mouse visits the bear. The mouse does not visit the cow. The rabbit visits the mouse. If someone likes the mouse then the mouse likes the rabbit. If the rabbit likes the cow then the cow needs the mouse. If someone visits the bear and they need the bear then the bear does not like the cow. If someone likes the rabbit then they are red. If someone is red and they like the rabbit then they like the mouse. If someone likes the rabbit and they are rough then they are blue. If the bear does not like the cow then the bear is rough. If someone visits the cow then they do not need the cow. If someone needs the mouse and they are not blue then they visit the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear likes the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-294_Q12", "context": "Bob is smart. Dave is big. Dave is cold. Dave is furry. Dave is green. Dave is kind. Dave is quiet. Erin is big. Erin is green. Erin is quiet. Erin is smart. Harry is cold. Kind things are smart. If Dave is cold and Dave is quiet then Dave is green. If Harry is cold and Harry is smart then Harry is furry. If Harry is big and Harry is quiet then Harry is cold. Furry, big things are smart. If something is green then it is quiet. All cold things are kind. If something is furry then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-205_Q7", "context": "The cat is young. The dog needs the cat. The dog needs the lion. The dog sees the squirrel. The dog visits the lion. The lion sees the dog. The squirrel sees the cat. If something needs the dog then it sees the lion. If something sees the squirrel and the squirrel is young then the squirrel sees the dog. If something sees the dog then the dog sees the lion. If something sees the lion and it is red then the lion is red. If something is red and it sees the cat then the cat is blue. If something is red then it needs the dog. If the squirrel is green and the squirrel is rough then the squirrel is red. If something needs the lion and it sees the lion then it is red. If something visits the lion and it is young then it is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog needs the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-440_Q18", "context": "The bear eats the tiger. The bear is big. The cat is blue. The cat is nice. The cat does not see the bear. The cat sees the tiger. The cat visits the tiger. The rabbit visits the cat. The tiger is big. The tiger visits the cat. If something is blue and it eats the rabbit then it visits the tiger. If something is big then it visits the rabbit. All big things are nice. If something visits the rabbit and it does not see the bear then the bear is rough. If something eats the bear and it is nice then it is blue. If something is nice then it is rough. If something sees the cat and it sees the tiger then the tiger is big. If something is rough then it visits the cat. If something visits the cat then it eats the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit visits the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-582_Q9", "context": "The bald eagle is green. The bald eagle is not round. The bald eagle likes the squirrel. The cat does not chase the rabbit. The cat is not green. The cat is not round. The cat likes the bald eagle. The cat does not like the rabbit. The cat visits the squirrel. The rabbit chases the bald eagle. The rabbit is red. The rabbit is round. The rabbit likes the cat. The rabbit likes the squirrel. The squirrel chases the cat. The squirrel visits the bald eagle. If something likes the rabbit and the rabbit likes the cat then the cat visits the bald eagle. If the rabbit likes the bald eagle then the bald eagle likes the rabbit. If the bald eagle visits the cat and the cat visits the rabbit then the bald eagle visits the squirrel. If something chases the bald eagle then the bald eagle chases the rabbit. If the squirrel likes the rabbit and the squirrel does not like the cat then the squirrel likes the bald eagle. If something is nice then it chases the cat. If something visits the bald eagle then it chases the squirrel. If something is green then it visits the cat. If the bald eagle chases the rabbit then the rabbit likes the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat visits the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-863_Q7", "context": "The cow is round. The cow does not visit the rabbit. The lion is big. The mouse chases the cow. The mouse chases the lion. The mouse is nice. The mouse needs the cow. The mouse needs the rabbit. The rabbit chases the cow. The rabbit is not nice. The rabbit needs the lion. If something chases the mouse and the mouse does not need the cow then the cow does not visit the rabbit. If something chases the lion and the lion visits the mouse then it chases the mouse. If something is young then it visits the mouse. If something visits the lion then it does not visit the mouse. If something visits the mouse then the mouse needs the lion. If something needs the lion then it is young. If something is big then it does not need the mouse. If something is round and it chases the cow then it needs the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse needs the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-24_Q13", "context": "Charlie is furry. Charlie is green. Charlie is kind. Charlie is red. Charlie is smart. Charlie is white. Charlie is young. Dave is smart. Fiona is green. Gary is green. Gary is red. If Charlie is smart then Charlie is young. If someone is smart and kind then they are white. All kind people are red. Smart people are young. If Dave is kind and Dave is smart then Dave is green. Young people are kind. White people are smart. All kind people are furry. All red people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-303_Q13", "context": "The cat is blue. The cow is round. The cow needs the cat. The dog is nice. The dog is round. The dog needs the cat. The dog needs the rabbit. The dog sees the cat. The rabbit needs the dog. The rabbit sees the cow. Round people are kind. If the cow needs the dog then the dog chases the cat. If someone sees the cow and they are blue then the cow chases the rabbit. Kind people are rough. If someone is blue then they see the cat. If someone chases the cat then the cat sees the rabbit. If someone is nice and they need the dog then the dog needs the cat. If someone is round then they see the rabbit. If someone is rough then they need the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-788_Q12", "context": "Anne is red. Anne is round. Charlie is rough. Dave is rough. Dave is not round. Dave is white. Erin is not nice. Erin is red. Erin is smart. Erin is white. If Charlie is rough then Charlie is kind. If Charlie is kind then Charlie is nice. All nice things are not smart. If something is kind and not smart then it is round. If something is round and nice then it is red. If Dave is round and Dave is not white then Dave is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1266_Q11", "context": "Anne is white. Bob is big. Bob is furry. Bob is nice. Bob is white. Bob is young. Charlie is furry. Charlie is white. Charlie is young. Dave is furry. Dave is young. Nice, furry people are quiet. If Bob is big then Bob is nice. If someone is rough then they are white. All big people are white. Young, white people are big. If someone is quiet and young then they are rough. All quiet people are furry. If someone is young then they are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-668_Q18", "context": "Anne is red. Anne is smart. Bob is red. Erin is nice. Erin is quiet. Fiona is nice. Fiona is round. If something is big then it is round. If something is quiet and big then it is round. If something is round and quiet then it is smart. If something is smart and big then it is red. All nice, quiet things are blue. If something is red and smart then it is nice. If something is red then it is big. If something is nice and blue then it is big. Smart, big things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-632_Q11", "context": "The bald eagle is big. The bear sees the squirrel. The rabbit sees the squirrel. The rabbit visits the squirrel. The squirrel chases the bear. The squirrel is cold. The squirrel is green. If something sees the bear and the bear sees the squirrel then the bear is cold. If the bear visits the squirrel then the bear visits the rabbit. If something is green then it sees the bear. If something visits the squirrel then it sees the bald eagle. Cold things are green. If something sees the squirrel and the squirrel visits the bald eagle then the bald eagle is green. If something sees the bear then it sees the bald eagle. If something chases the bald eagle and it sees the bald eagle then it chases the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear sees the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-706_Q7", "context": "Charlie is red. Erin is cold. Erin is kind. Gary is furry. Gary is red. Harry is not blue. Harry is kind. All cold people are big. All kind, furry people are cold. Furry people are cold. If someone is big then they are blue. All furry, big people are red. If someone is kind and quiet then they are furry. If someone is blue and cold then they are quiet. If Gary is blue then Gary is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-996_Q2", "context": "Anne is nice. Anne is quiet. Charlie is cold. Charlie is furry. Charlie is quiet. Charlie is not rough. Fiona is not kind. Fiona is quiet. Fiona is red. Gary is kind. Gary is nice. Rough, nice people are red. Red people are cold. If someone is cold and rough then they are quiet. If Anne is quiet then Anne is nice. All quiet, red people are furry. If Charlie is kind then Charlie is not furry. All nice people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-243_Q15", "context": "Bob is big. Bob is not cold. Bob is nice. Bob is rough. Bob is smart. Dave is rough. Erin is not big. Erin is cold. Erin is rough. Gary is round. All smart people are young. If Gary is round then Gary is smart. If someone is young then they are rough. Young people are big. If someone is cold and not young then they are big. Big people are nice. All young, cold people are nice. If someone is nice and young then they are not cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-25_Q5", "context": "Anne is quiet. Dave is green. Dave is kind. Dave is quiet. Erin is kind. Erin is nice. Fiona is smart. If Fiona is quiet then Fiona is nice. If something is green then it is quiet. Smart things are big. All quiet things are furry. Nice things are green. All kind things are nice. All furry things are green. All smart things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-252_Q16", "context": "The bear is rough. The bear is round. The cat is rough. The cat does not like the bear. The cat visits the bear. The cat does not visit the squirrel. The lion does not like the squirrel. The squirrel likes the bear. The squirrel sees the cat. The squirrel visits the bear. If someone visits the lion then they visit the cat. If someone likes the bear then they visit the cat. If someone visits the cat then they see the bear. If someone visits the cat then the cat is blue. If someone is rough then they like the lion. If the bear sees the cat then the bear likes the cat. If the cat is round and the cat sees the lion then the cat likes the bear. If someone is blue then they visit the lion. If someone visits the lion and they are blue then the lion likes the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear visits the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-406_Q17", "context": "Anne is not cold. Bob is quiet. Bob is rough. Bob is white. Dave is cold. Dave is quiet. Fiona is cold. Fiona is kind. Fiona is nice. Fiona is rough. All quiet, kind people are white. Quiet, blue people are kind. If someone is white and cold then they are kind. All quiet people are blue. If someone is white then they are rough. If someone is rough then they are nice. If someone is cold and not quiet then they are nice. If someone is blue and not rough then they are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-94_Q10", "context": "The bald eagle is green. The bald eagle is not rough. The bald eagle visits the mouse. The bald eagle visits the squirrel. The mouse chases the squirrel. The mouse is green. The mouse is not round. The mouse does not visit the bald eagle. The squirrel chases the tiger. The squirrel eats the bald eagle. The squirrel is nice. The tiger chases the squirrel. The tiger is round. The tiger visits the mouse. If something is big then it visits the tiger. If something eats the mouse then it is not round. If something chases the squirrel and it visits the tiger then the squirrel is round. If something eats the tiger then it is green. If something chases the tiger then it visits the squirrel. If something chases the tiger and it chases the squirrel then the squirrel is rough. Round things are big. If the bald eagle eats the tiger then the bald eagle does not eat the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-148_Q15", "context": "The bald eagle likes the squirrel. The bald eagle likes the tiger. The bald eagle visits the tiger. The bear likes the squirrel. The bear needs the tiger. The squirrel is nice. The squirrel is young. The squirrel likes the tiger. The tiger is young. The tiger likes the bald eagle. The tiger likes the squirrel. The tiger visits the bear. If the bear likes the squirrel and the bear likes the tiger then the tiger is nice. If something likes the bear and it likes the squirrel then it is red. If something needs the tiger then it likes the bear. If something is red then it is blue. If something is blue then it likes the bald eagle. If the tiger is red then the tiger needs the bear. If something likes the bald eagle and the bald eagle likes the tiger then it visits the bear. If something likes the bear then it is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1176_Q7", "context": "Anne is cold. Anne is nice. Anne is round. Anne is white. Bob is white. Charlie is smart. Gary is nice. Green, nice people are white. If someone is smart then they are green. All big people are nice. If someone is white then they are smart. All cold people are nice. Round people are nice. If someone is green then they are big. All white people are cold. If Bob is cold then Bob is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-358_Q5", "context": "Charlie is not cold. Fiona is smart. Gary is cold. Gary is kind. Gary is round. Harry is cold. Harry is kind. Harry is rough. Harry is round. Harry is smart. If something is cold then it is rough. Round things are blue. If Harry is smart then Harry is blue. If Harry is cold and Harry is quiet then Harry is round. All smart things are cold. Cold things are round. Blue things are quiet. All smart, quiet things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-756_Q15", "context": "The bald eagle chases the dog. The bald eagle likes the cat. The bear does not visit the dog. The cat chases the bald eagle. The cat is green. The dog does not chase the cat. The dog visits the cat. If something visits the dog then the dog is round. If something visits the cat then it is rough. If something is round and it does not chase the cat then it does not like the bald eagle. If something likes the bear and it visits the cat then the cat is rough. If something is rough then it likes the bear. If something visits the dog then it does not visit the bald eagle. If something likes the bald eagle then it likes the dog. If something is rough and it likes the bear then it likes the dog. If something likes the bald eagle then the bald eagle does not visit the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-308_Q4", "context": "Anne is furry. Charlie is green. Dave is not furry. Dave is green. Erin is green. Erin is kind. Erin is quiet. Quiet, furry people are young. If Dave is furry and Dave is young then Dave is round. All young people are green. If Dave is round and Dave is young then Dave is nice. If Anne is furry then Anne is quiet. If someone is quiet and not furry then they are nice. If Anne is round then Anne is nice. If someone is young then they are round. Furry, nice people are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1186_Q13", "context": "Anne is not furry. Anne is not red. Charlie is smart. Charlie is young. Dave is furry. Dave is young. Gary is cold. All kind, green things are cold. All kind, young things are green. If something is furry and red then it is green. Furry things are green. All young things are kind. If something is cold then it is red. If something is kind then it is young. Red, kind things are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-177_Q24", "context": "The bald eagle chases the lion. The dog chases the squirrel. The dog is blue. The dog is nice. The dog sees the lion. The lion chases the squirrel. The lion eats the dog. The lion eats the squirrel. The lion is blue. The lion is nice. The squirrel is big. The squirrel is blue. If the bald eagle is nice then the bald eagle sees the dog. If the dog eats the lion and the lion eats the dog then the lion eats the bald eagle. If someone sees the dog and they eat the squirrel then the dog is big. If someone is round and they chase the dog then the dog chases the lion. If someone eats the lion then the lion eats the bald eagle. If the squirrel is blue and the squirrel eats the bald eagle then the bald eagle eats the squirrel. If someone eats the bald eagle and the bald eagle eats the squirrel then they eat the lion. If the squirrel is big then the squirrel eats the bald eagle. If someone is nice and they chase the squirrel then the squirrel chases the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-557_Q15", "context": "Anne is big. Anne is green. Anne is not red. Anne is rough. Anne is not young. Erin is big. Erin is furry. Erin is green. Erin is nice. Erin is red. Erin is rough. Fiona is nice. Gary is furry. Gary is nice. Young people are nice. Big, rough people are furry. All big people are furry. Rough people are green. Red, green people are big. Nice people are red. If someone is big and not nice then they are red. If someone is red then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1023_Q18", "context": "Dave is nice. Erin is blue. Erin is green. Erin is nice. Erin is red. Erin is smart. Erin is young. Fiona is blue. Harry is blue. Harry is green. Harry is round. Nice things are young. If Dave is red then Dave is blue. Round, nice things are green. If something is young then it is nice. If Harry is blue and Harry is round then Harry is green. Smart things are red. Green, nice things are red. If something is young and nice then it is round. Young, round things are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-790_Q1", "context": "The bald eagle is young. The bald eagle likes the tiger. The cow chases the mouse. The cow is cold. The mouse eats the bald eagle. The mouse eats the cow. The tiger is big. If something is cold and it likes the cow then it is nice. All nice things are big. If something is rough then it likes the mouse. If something likes the cow then it likes the tiger. If something eats the tiger and it chases the cow then the tiger chases the bald eagle. If something chases the mouse then it likes the cow. If something is nice and it likes the tiger then the tiger chases the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse eats the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-783_Q17", "context": "The bear likes the mouse. The bear likes the tiger. The bear sees the lion. The lion likes the bear. The lion likes the tiger. The lion needs the bear. The lion does not see the mouse. The mouse is nice. The mouse likes the bear. The mouse likes the tiger. The mouse sees the bear. The tiger likes the lion. If someone is red then they are cold. All big people are nice. If someone needs the bear then they are red. If someone is cold then they do not see the bear. If the lion likes the tiger and the lion is cold then the tiger needs the bear. If someone sees the bear then the bear likes the tiger. If someone needs the bear then they like the lion. If someone needs the tiger and the tiger does not see the bear then they like the bear. If the bear is not red then the bear does not see the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-451_Q2", "context": "The bear is green. The bear visits the lion. The bear visits the squirrel. The lion is cold. The lion likes the bear. The lion does not visit the rabbit. The rabbit is big. The rabbit is cold. The rabbit needs the lion. The squirrel likes the lion. The squirrel needs the rabbit. If someone needs the rabbit and they do not visit the rabbit then the rabbit needs the bear. If someone needs the bear and the bear is blue then they are green. If someone visits the squirrel then they need the rabbit. If someone needs the rabbit then they are blue. If someone is green and they visit the bear then the bear likes the rabbit. If someone likes the bear then they visit the bear. If someone needs the rabbit and they are blue then the rabbit visits the squirrel. If someone is blue then they visit the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-864_Q9", "context": "Bob is big. Bob is cold. Dave is big. Dave is furry. Erin is big. Erin is cold. Erin is furry. Erin is kind. Erin is rough. Gary is cold. Gary is round. If Dave is cold then Dave is round. If Gary is rough and Gary is cold then Gary is kind. Quiet people are round. Round, quiet people are kind. If someone is furry then they are rough. If Bob is cold then Bob is quiet. Rough people are quiet. If someone is kind then they are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-479_Q1", "context": "Dave is green. Erin is red. Gary is blue. Gary is cold. Gary is green. Gary is nice. Gary is red. Gary is rough. Harry is cold. Harry is nice. All nice things are rough. All white things are rough. All cold, blue things are white. If something is cold then it is nice. If Gary is nice then Gary is green. White things are blue. If something is red then it is cold. If something is rough then it is blue. If something is white and cold then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-806_Q8", "context": "Anne is cold. Anne is furry. Anne is quiet. Anne is rough. Anne is round. Anne is smart. Anne is young. Erin is round. Gary is cold. Gary is furry. Gary is quiet. Harry is furry. Harry is quiet. Harry is rough. Harry is round. Harry is smart. All round things are smart. Rough, quiet things are young. If something is young and cold then it is furry. If something is cold then it is smart. Rough things are cold. Round, smart things are young. If Erin is young and Erin is smart then Erin is rough. Rough, cold things are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-447_Q20", "context": "The cat chases the dog. The cat chases the mouse. The cat chases the rabbit. The cat is not kind. The cat does not see the dog. The dog chases the rabbit. The dog is cold. The dog is not kind. The dog sees the mouse. The dog sees the rabbit. The mouse is cold. The rabbit is red. The rabbit sees the cat. The rabbit sees the mouse. If the dog chases the mouse and the mouse is kind then the dog sees the rabbit. If something chases the rabbit then it is red. If something is red and it chases the dog then the dog needs the mouse. If something needs the mouse then the mouse is green. If something is red then it needs the dog. If something is kind and green then it sees the cat. If something is green then it chases the rabbit. If something is kind and it does not chase the rabbit then it sees the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit needs the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-741_Q16", "context": "Anne is green. Anne is rough. Anne is smart. Charlie is furry. Charlie is red. Dave is quiet. Fiona is not green. All quiet, rough things are not smart. If something is rough then it is furry. Green things are red. If something is kind then it is not red. All red things are rough. If something is quiet then it is green. Red, furry things are not kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-914_Q13", "context": "Bob is smart. Bob is young. Dave is quiet. Dave is young. Fiona is nice. Fiona is young. Harry is nice. Rough, nice things are young. Cold things are young. If something is young then it is nice. All nice things are white. Nice, young things are not cold. White things are rough. If Harry is rough and Harry is not cold then Harry is not quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-378_Q10", "context": "The bald eagle is not cold. The bald eagle is young. The bald eagle does not need the dog. The bald eagle sees the cow. The bald eagle sees the dog. The cow chases the tiger. The cow is not young. The cow sees the tiger. The dog does not chase the cow. The dog chases the tiger. The dog is nice. The dog is young. The dog does not need the bald eagle. The dog needs the cow. The tiger is young. The tiger does not need the bald eagle. If something chases the dog then the dog sees the tiger. If something chases the dog then the dog needs the cow. If something chases the cow then it needs the bald eagle. If something needs the dog then it needs the bald eagle. If something is big then it chases the dog. If something is nice and it sees the cow then the cow is cold. If something sees the tiger then it is big. If something chases the tiger then it does not need the dog. If the tiger chases the cow then the tiger chases the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-543_Q15", "context": "Charlie is cold. Charlie is round. Charlie is white. Dave is cold. Dave is kind. Fiona is round. Fiona is white. Fiona is young. Harry is kind. Harry is quiet. Harry is white. Harry is young. Young people are quiet. If someone is cold then they are rough. All quiet people are round. Young, kind people are cold. All round, rough people are white. All rough people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-898_Q24", "context": "The bald eagle chases the tiger. The bald eagle is round. The bald eagle likes the bear. The bald eagle likes the tiger. The bear likes the tiger. The bear needs the bald eagle. The cow chases the tiger. The cow is green. The cow is red. The cow does not need the bald eagle. The tiger likes the cow. If the bald eagle likes the bear then the bald eagle is young. If something is cold then it needs the tiger. If something chases the bear and the bear needs the bald eagle then it needs the cow. If something needs the bald eagle then it is cold. If something is round and it needs the bald eagle then the bald eagle does not need the cow. If something is cold and it needs the tiger then the tiger needs the bald eagle. If something needs the cow then the cow needs the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger likes the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-737_Q6", "context": "Bob is blue. Dave is kind. Dave is white. Fiona is big. Fiona is not blue. Gary is blue. Gary is kind. Gary is smart. Gary is white. Gary is young. If Dave is big then Dave is not blue. All white people are big. If someone is white and not blue then they are nice. All nice, kind people are smart. If someone is blue and not nice then they are smart. If someone is smart and not blue then they are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-316_Q24", "context": "The bear does not eat the cat. The bear eats the mouse. The bear visits the cat. The cat eats the cow. The cat visits the cow. The cow eats the bear. The cow likes the bear. The cow visits the mouse. The mouse does not eat the bear. The mouse eats the cow. If someone visits the cow and they are not cold then the cow visits the cat. If someone is green then they are young. If the bear is big and the bear eats the cow then the cow is not big. If someone eats the bear then the bear likes the mouse. If someone likes the mouse then they are green. If someone visits the bear then they eat the bear. Young, green people are round. If someone is round then they do not visit the bear. If someone visits the bear then they are big.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse visits the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-764_Q23", "context": "The bear is nice. The bear is rough. The bear visits the cow. The cat is green. The cat does not see the bear. The cat visits the bear. The cow chases the cat. The cow does not visit the tiger. The tiger is nice. The tiger is not rough. If something chases the bear then it chases the tiger. If something is big then it does not chase the tiger. If the bear chases the cow and the cow sees the tiger then the cow sees the bear. If something sees the tiger then it is rough. If something visits the cat then the cat chases the bear. If something is big and it chases the tiger then it chases the cow. If the cow visits the cat then the cow chases the cat. If something chases the tiger then the tiger chases the bear. If something is nice then it visits the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not visit the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1372_Q11", "context": "Anne is big. Anne is kind. Anne is nice. Anne is quiet. Anne is red. Anne is rough. Anne is white. Bob is nice. Charlie is big. Charlie is kind. Charlie is nice. Charlie is red. Charlie is rough. Charlie is white. Dave is quiet. Dave is white. All red, white things are nice. All big things are kind. If something is red then it is quiet. Rough things are red. Quiet things are white. All nice, big things are rough. All nice things are big. If something is kind and quiet then it is rough. If Dave is kind then Dave is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-649_Q7", "context": "Anne is blue. Anne is young. Dave is big. Dave is cold. Erin is big. Erin is blue. Gary is big. If something is young then it is white. If something is quiet then it is blue. All smart, big things are cold. All white things are big. All white, quiet things are smart. If something is big and blue then it is quiet. If Gary is big then Gary is quiet. Quiet things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1324_Q4", "context": "Bob is blue. Bob is kind. Charlie is young. Erin is blue. Erin is furry. Erin is green. Erin is kind. Erin is red. Erin is white. Erin is young. Gary is white. Gary is young. Young, kind people are blue. All blue, red people are furry. Green, young people are white. If someone is white then they are red. Red people are green. If someone is furry and kind then they are red. If someone is green then they are kind. If someone is green and blue then they are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-539_Q3", "context": "The bear is round. The bear likes the cat. The bear likes the rabbit. The cat is round. The cat sees the bear. The cat sees the cow. The cow chases the bear. The cow does not chase the cat. The cow is not kind. The cow is round. The cow likes the bear. The cow likes the cat. The cow likes the rabbit. The cow sees the rabbit. The rabbit does not like the bear. The rabbit likes the cow. If someone is red and they like the bear then they do not see the bear. If someone sees the rabbit and they like the cat then the rabbit sees the cat. If the cat chases the cow and the cow is round then the cow is rough. If someone sees the cat and they are green then the cat sees the rabbit. If someone likes the rabbit and they are kind then they are round. If someone sees the rabbit and the rabbit sees the cat then the cat chases the cow. If the cat is rough then the cat does not chase the cow. If someone is rough then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit sees the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-773_Q1", "context": "The bear eats the mouse. The bear eats the tiger. The bear likes the mouse. The mouse eats the bear. The mouse eats the rabbit. The mouse visits the tiger. The rabbit eats the tiger. The rabbit is cold. The rabbit visits the tiger. The tiger does not eat the mouse. The tiger likes the mouse. If something eats the tiger and it visits the mouse then it visits the bear. If something likes the rabbit then it visits the bear. Blue things are round. If something visits the bear then the bear is red. If something visits the bear and it is red then it is blue. If something eats the tiger then it visits the mouse. If something is blue then it does not like the tiger. If the bear likes the tiger and the bear is not blue then the bear visits the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger likes the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1413_Q13", "context": "Erin is white. Erin is young. Fiona is blue. Fiona is smart. Fiona is young. Gary is young. Harry is white. Green, round things are smart. If Gary is green and Gary is quiet then Gary is round. Young things are green. Green things are smart. If something is quiet then it is round. If something is smart then it is quiet. Green, round things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-607_Q3", "context": "The cat does not chase the squirrel. The cat is blue. The cow chases the cat. The cow chases the squirrel. The cow is kind. The cow is not young. The mouse chases the cat. The mouse needs the cat. The mouse sees the cat. The mouse sees the squirrel. The squirrel does not chase the cat. The squirrel chases the cow. The squirrel is not round. The squirrel is young. If the cat needs the cow then the cat chases the mouse. If someone needs the cow then they are kind. If someone chases the cat then they are kind. If someone sees the cow then they need the mouse. If someone sees the cow and they chase the cat then the cat needs the cow. If someone is young and they need the cow then they are not round. If someone is kind then they see the cow. If someone needs the cow and they chase the mouse then the mouse sees the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-517_Q10", "context": "The bear sees the dog. The dog eats the lion. The dog is blue. The dog is round. The dog needs the squirrel. The lion needs the dog. The lion needs the squirrel. The squirrel does not eat the bear. The squirrel eats the dog. The squirrel does not see the bear. If something sees the lion then the lion does not need the dog. If the bear needs the squirrel and the squirrel does not eat the dog then the bear is not red. If something eats the squirrel and it is not big then the squirrel eats the lion. If something sees the dog then the dog needs the bear. If something needs the dog and it is not red then the dog does not see the squirrel. If something sees the squirrel and it eats the lion then the lion is blue. If something is blue and it eats the bear then it sees the dog. If something is blue then it sees the squirrel. If the lion is blue and the lion sees the squirrel then the squirrel is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-563_Q12", "context": "Bob is not cold. Charlie is not blue. Charlie is red. Charlie is smart. Dave is blue. Erin is big. Erin is not cold. If something is green and big then it is smart. All smart, rough things are cold. If something is green then it is cold. All rough things are big. Blue things are green. All rough things are blue. If Dave is blue and Dave is cold then Dave is rough. Smart things are red. If Charlie is blue and Charlie is not red then Charlie is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-3_Q21", "context": "The cow is big. The cow needs the tiger. The mouse is blue. The mouse sees the tiger. The rabbit sees the mouse. The tiger is blue. The tiger needs the rabbit. If something needs the tiger then it does not visit the tiger. If something sees the mouse then the mouse sees the cow. If something is nice then it sees the rabbit. If the mouse visits the tiger and the tiger is young then the tiger sees the rabbit. If something needs the rabbit then it visits the cow. If something is young then it sees the cow. If something sees the cow then it needs the rabbit. If the tiger is big then the tiger is blue. If something visits the cow and it sees the cow then the cow needs the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not see the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-553_Q2", "context": "The bald eagle eats the tiger. The bald eagle is red. The bald eagle is round. The dog eats the bald eagle. The dog likes the tiger. The squirrel is big. The squirrel is blue. The squirrel likes the dog. The squirrel sees the tiger. The tiger sees the squirrel. If something is kind then it eats the bald eagle. If something is red then it eats the bald eagle. If something is blue and kind then it likes the dog. If something eats the bald eagle then it sees the bald eagle. If something likes the tiger and it sees the bald eagle then the tiger is big. If something is big and it likes the tiger then the tiger sees the bald eagle. All red things are round. If something is big then it is red. If something eats the bald eagle then the bald eagle is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-895_Q1", "context": "Bob is green. Bob is quiet. Bob is red. Bob is not round. Charlie is nice. Charlie is not red. Charlie is white. Dave is quiet. Dave is round. Erin is green. Erin is quiet. Erin is white. If something is red then it is furry. If something is green and quiet then it is furry. All red things are furry. If something is round and quiet then it is white. If Dave is furry then Dave is nice. Nice, round things are not red. All white things are green. If something is furry and not quiet then it is not nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-317_Q10", "context": "Anne is blue. Anne is green. Anne is not nice. Charlie is cold. Erin is cold. Fiona is furry. Fiona is smart. All smart things are green. If Fiona is not green then Fiona is not blue. If something is cold and red then it is blue. Nice, red things are cold. Red, furry things are nice. If something is furry and green then it is red. If something is nice then it is furry. If something is red and not green then it is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-10_Q5", "context": "The bald eagle eats the dog. The bald eagle is green. The bear chases the bald eagle. The bear chases the mouse. The bear is round. The bear visits the bald eagle. The dog is cold. The dog is nice. The mouse chases the dog. The mouse eats the bear. If someone visits the dog then they chase the bear. If someone chases the bear then the bear is rough. If someone chases the mouse then the mouse visits the dog. If someone visits the dog then the dog chases the mouse. If someone is rough and they chase the mouse then they visit the dog. If someone visits the dog then the dog visits the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog chases the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-168_Q4", "context": "Charlie is cold. Charlie is furry. Charlie is smart. Charlie is young. Dave is big. Dave is young. Erin is round. Erin is smart. Harry is furry. Harry is nice. Harry is smart. Furry, cold things are round. All big, round things are nice. Round things are young. If something is young and round then it is furry. If something is furry and young then it is cold. If something is cold then it is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-816_Q12", "context": "Anne is cold. Anne is kind. Anne is red. Anne is young. Charlie is cold. Fiona is kind. Fiona is nice. Gary is cold. Gary is nice. Gary is quiet. Gary is red. Gary is young. If something is nice then it is blue. If something is nice then it is red. Cold things are kind. All young, nice things are red. If something is quiet and kind then it is nice. If something is kind and young then it is quiet. Quiet things are nice. Cold, kind things are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-737_Q8", "context": "The bald eagle eats the tiger. The bald eagle is green. The bald eagle likes the bear. The bald eagle visits the bear. The bald eagle visits the tiger. The bear eats the rabbit. The bear eats the tiger. The bear is not round. The bear likes the rabbit. The rabbit eats the bear. The rabbit is green. The rabbit does not like the bear. The tiger is green. The tiger visits the bear. If the bald eagle visits the bear and the bald eagle eats the bear then the bear is rough. If someone is rough and they eat the rabbit then the rabbit visits the tiger. If someone is young then they eat the bear. If someone likes the rabbit then they do not eat the bear. If someone likes the tiger then they eat the bear. If the bald eagle is round and the bald eagle eats the rabbit then the bald eagle is green. If someone visits the bald eagle and they do not eat the rabbit then the bald eagle is not green. If someone likes the bear and the bear likes the rabbit then they are green. If someone visits the tiger then they like the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-935_Q18", "context": "Charlie is furry. Charlie is red. Charlie is white. Dave is red. Gary is cold. Gary is round. Harry is not blue. Harry is not cold. Harry is furry. Harry is round. Harry is white. If someone is red then they are round. If someone is red and white then they are cold. If Dave is cold then Dave is white. All red, round people are young. All blue people are young. Young people are white. All red, cold people are not blue. If someone is white and not round then they are blue. If someone is round and not young then they are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-513_Q4", "context": "Bob is not furry. Charlie is cold. Charlie is nice. Charlie is quiet. Charlie is white. Dave is quiet. Fiona is kind. If someone is furry and rough then they are quiet. If Dave is quiet and Dave is rough then Dave is white. All quiet people are cold. If Bob is cold and Bob is quiet then Bob is not kind. If Dave is white and Dave is quiet then Dave is kind. Cold people are rough. Cold, kind people are nice. All furry people are kind. If someone is furry and not white then they are not kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-355_Q3", "context": "Charlie is blue. Dave is rough. Dave is round. Erin is quiet. Erin is young. Gary is quiet. Gary is smart. All quiet things are young. Smart, blue things are white. If something is young then it is rough. All white, rough things are round. Rough, quiet things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-608_Q4", "context": "Charlie is nice. Erin is red. Erin is rough. Gary is young. Harry is furry. Harry is nice. Harry is rough. All rough people are quiet. Young people are furry. All rough people are quiet. If Gary is nice and Gary is quiet then Gary is furry. If someone is quiet and red then they are green. If someone is furry then they are red. If someone is nice then they are rough. All rough, quiet people are green. Red, young people are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1067_Q1", "context": "Charlie is furry. Charlie is green. Fiona is big. Fiona is cold. Fiona is green. Gary is furry. Gary is green. Gary is young. Harry is big. Harry is green. Harry is white. Harry is young. All big people are white. If Fiona is furry then Fiona is green. If someone is white and cold then they are nice. All nice, white people are young. If someone is furry then they are young. If Gary is green then Gary is nice. White, furry people are nice. Young people are big. If someone is young and nice then they are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1397_Q1", "context": "Bob is big. Bob is kind. Bob is quiet. Bob is red. Dave is quiet. Fiona is red. Harry is smart. Rough people are kind. If Harry is red then Harry is rough. All white, big people are red. If someone is big then they are white. All white, red people are quiet. If someone is kind and smart then they are big. If someone is smart then they are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-825_Q8", "context": "The cow is blue. The cow sees the mouse. The cow does not visit the rabbit. The dog sees the mouse. The dog visits the mouse. The mouse is rough. The mouse needs the cow. The mouse does not need the rabbit. The mouse sees the rabbit. The mouse visits the cow. The rabbit needs the mouse. If someone needs the dog then the dog needs the mouse. If someone needs the rabbit and they visit the rabbit then they see the mouse. If someone visits the mouse then the mouse sees the rabbit. If someone sees the cow then they need the dog. If someone needs the mouse then they see the cow. If the cow sees the mouse and the cow is nice then the cow visits the mouse. If someone sees the rabbit and they do not visit the dog then they are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not need the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-136_Q14", "context": "Anne is rough. Bob is blue. Bob is nice. Gary is blue. Gary is rough. Gary is smart. Gary is young. Harry is blue. Harry is kind. Harry is nice. Harry is quiet. Harry is rough. Quiet things are kind. All blue, rough things are quiet. All rough things are blue. If something is kind then it is nice. Nice, blue things are smart. Rough, kind things are nice. If Gary is smart then Gary is young. If something is blue then it is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-1008_Q12", "context": "The bald eagle chases the bear. The bald eagle is nice. The bear sees the lion. The bear sees the squirrel. The lion needs the bald eagle. The lion needs the bear. The lion needs the squirrel. The lion sees the bald eagle. The squirrel is blue. The squirrel sees the bald eagle. The squirrel sees the bear. The squirrel sees the lion. If someone sees the squirrel and they are nice then they need the bald eagle. If someone sees the bear then they chase the squirrel. If someone is cold then they chase the lion. If someone needs the squirrel and they are blue then they see the bear. If someone needs the lion then they chase the bald eagle. If someone sees the squirrel then they chase the bear. If someone sees the squirrel and they see the bald eagle then the bald eagle chases the squirrel. If someone chases the squirrel then they see the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not need the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-942_Q12", "context": "Anne is blue. Anne is cold. Anne is kind. Anne is red. Fiona is red. Fiona is smart. Gary is green. Gary is kind. Gary is red. Gary is rough. Gary is smart. Harry is blue. Harry is green. Harry is smart. All rough things are green. All blue, smart things are kind. If something is green then it is rough. All cold, red things are green. Cold, rough things are blue. If something is green then it is red. All red things are cold. If Harry is red and Harry is rough then Harry is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-580_Q5", "context": "Charlie is furry. Charlie is green. Charlie is kind. Charlie is rough. Charlie is smart. Erin is young. Gary is furry. Gary is kind. Gary is smart. Harry is rough. All rough people are kind. Rough, furry people are kind. If someone is furry then they are blue. Kind, smart people are blue. All blue, furry people are smart. If Harry is kind then Harry is furry. All kind, smart people are not young. If Harry is not kind then Harry is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1176_Q6", "context": "Anne is cold. Anne is nice. Anne is round. Anne is white. Bob is white. Charlie is smart. Gary is nice. Green, nice people are white. If someone is smart then they are green. All big people are nice. If someone is white then they are smart. All cold people are nice. Round people are nice. If someone is green then they are big. All white people are cold. If Bob is cold then Bob is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-504_Q1", "context": "Bob is green. Erin is red. Erin is not rough. Erin is round. Erin is not young. Gary is green. Gary is rough. Harry is big. Harry is quiet. Harry is young. All rough people are round. All big, rough people are not quiet. If someone is rough and round then they are quiet. If Gary is young and Gary is rough then Gary is not big. If Harry is quiet then Harry is not green. If someone is quiet then they are red. All big people are not green. Rough, red people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-893_Q4", "context": "Anne is red. Anne is smart. Bob is young. Charlie is big. Charlie is green. Charlie is round. Charlie is smart. Gary is big. Gary is green. Gary is red. Gary is round. Gary is smart. Gary is white. Gary is young. If Charlie is young then Charlie is smart. All young things are green. If something is green then it is big. All smart things are red. If something is big then it is round. Round things are smart. If Anne is green and Anne is smart then Anne is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-368_Q12", "context": "The bear chases the cat. The bear sees the cat. The cat sees the cow. The cat visits the bear. The cat visits the mouse. The cow chases the mouse. The cow is blue. The cow sees the cat. The cow visits the cat. The mouse chases the bear. The mouse chases the cow. The mouse is rough. The mouse sees the cat. The mouse sees the cow. If someone chases the bear then they are blue. If someone chases the mouse then they are rough. If someone visits the cat then the cat chases the bear. Red people are rough. If the mouse chases the cat and the cat is rough then the cat is blue. If the cat chases the bear then the cat sees the mouse. If someone is rough and they see the mouse then the mouse sees the cat. If someone sees the mouse then they are red. If someone is rough and blue then they chase the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not chase the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-821_Q1", "context": "The bald eagle is big. The bald eagle needs the tiger. The mouse eats the rabbit. The mouse does not like the rabbit. The mouse needs the bald eagle. The rabbit likes the bald eagle. The tiger eats the bald eagle. The tiger eats the mouse. The tiger does not like the mouse. The tiger likes the rabbit. The tiger needs the bald eagle. If something likes the bald eagle then it eats the rabbit. If something is big then it likes the rabbit. If something likes the rabbit then the rabbit likes the tiger. If something is big and it needs the rabbit then the rabbit eats the tiger. If the tiger is young and the tiger eats the bald eagle then the tiger eats the rabbit. If something is round then it eats the mouse. If something likes the rabbit then it does not eat the tiger. If the rabbit likes the tiger and the tiger eats the mouse then the rabbit is big. If something likes the rabbit then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle needs the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-100_Q24", "context": "The bald eagle eats the cow. The bald eagle is not big. The cow eats the bald eagle. The cow is big. The cow is not round. The squirrel chases the cow. The squirrel eats the bald eagle. The squirrel does not eat the tiger. The squirrel is not big. The squirrel visits the tiger. The tiger chases the bald eagle. The tiger is nice. If something visits the cow then the cow does not chase the bald eagle. If the tiger chases the bald eagle then the tiger is round. If something is young then it visits the squirrel. If something visits the tiger then it does not visit the cow. If something is rough then it eats the cow. Round things are young. If something visits the squirrel then the squirrel is rough. If something eats the squirrel then the squirrel chases the tiger. If something eats the bald eagle and the bald eagle visits the cow then the bald eagle is not round.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle eats the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1255_Q20", "context": "Anne is cold. Anne is smart. Dave is furry. Dave is kind. Dave is smart. Gary is furry. Harry is cold. All blue, kind things are cold. All round things are furry. Furry things are kind. If Gary is round then Gary is smart. All cold things are round. All furry, smart things are white. All kind things are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-799_Q14", "context": "The bald eagle is round. The bear is rough. The bear is round. The dog is round. The dog sees the bear. The dog sees the rabbit. The dog visits the bear. The rabbit is nice. The rabbit is rough. The rabbit sees the dog. The rabbit visits the dog. If the bald eagle sees the bear and the bald eagle sees the dog then the bald eagle needs the rabbit. All nice things are young. If something visits the bald eagle then the bald eagle is rough. If something is kind and it visits the dog then it is nice. If something is young then it sees the bear. If the dog visits the bald eagle then the bald eagle visits the dog. If something visits the dog and it sees the dog then it needs the dog. If something visits the bald eagle then the bald eagle is kind. If something visits the dog then the dog visits the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog needs the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-491_Q17", "context": "Anne is white. Charlie is quiet. Charlie is red. Dave is big. Dave is kind. Fiona is big. Fiona is smart. All big things are kind. If something is round then it is kind. If something is round and not quiet then it is smart. Big things are smart. If Fiona is smart and Fiona is round then Fiona is big. Kind things are big. Quiet things are round. If Fiona is red then Fiona is smart. Smart things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-292_Q1", "context": "Dave is big. Dave is not blue. Dave is green. Dave is not white. Erin is big. Erin is cold. Erin is round. Erin is white. Gary is cold. Harry is big. Harry is cold. Harry is quiet. If something is cold and white then it is big. If something is round and blue then it is big. If Harry is cold and Harry is not round then Harry is big. All green, cold things are white. If something is blue then it is quiet. Green, blue things are cold. All cold, quiet things are green. Cold things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-10_Q9", "context": "The lion is green. The lion sees the squirrel. The mouse is not red. The rabbit does not visit the mouse. The squirrel chases the lion. The squirrel chases the rabbit. The squirrel is kind. If something is nice then it does not see the squirrel. If something chases the mouse then the mouse is nice. If something sees the mouse then it chases the mouse. If something is kind then it sees the mouse. If something is nice then it sees the mouse. If something chases the mouse and it is red then the mouse sees the lion. If something visits the rabbit then it sees the rabbit. If the rabbit is blue and the rabbit chases the mouse then the mouse chases the squirrel. If something visits the lion and it sees the lion then the lion is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not see the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-598_Q10", "context": "Bob is blue. Bob is kind. Bob is nice. Bob is white. Erin is furry. Erin is nice. Gary is blue. Gary is furry. Gary is kind. Gary is nice. Gary is round. Gary is white. Harry is kind. Harry is nice. Harry is round. Harry is smart. All furry, white people are blue. If someone is nice then they are white. If someone is blue then they are kind. If Erin is kind and Erin is smart then Erin is blue. If someone is kind and white then they are round. If Harry is furry then Harry is kind. If Gary is smart and Gary is white then Gary is furry. All blue people are white. Round people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-928_Q24", "context": "The bear does not eat the cat. The bear eats the rabbit. The bear is not round. The bear likes the rabbit. The cat is not cold. The cat is round. The dog eats the cat. The dog eats the rabbit. The dog is young. The dog likes the cat. The dog sees the rabbit. The rabbit does not see the dog. If something is round then it likes the rabbit. If something sees the bear then the bear likes the dog. If something likes the dog then it is young. If something likes the dog and it likes the rabbit then the rabbit likes the dog. If something is young then it sees the bear. If something eats the bear and the bear sees the rabbit then the rabbit is not round. If something is cold and it eats the cat then the cat is young. If something likes the rabbit and the rabbit likes the dog then it eats the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog sees the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-909_Q18", "context": "The bald eagle eats the mouse. The bald eagle is not green. The lion visits the mouse. The mouse eats the lion. The mouse sees the squirrel. The mouse visits the bald eagle. The squirrel eats the bald eagle. If someone visits the bald eagle then they see the bald eagle. If someone sees the squirrel then the squirrel visits the bald eagle. If the bald eagle is green then the bald eagle is red. If someone is green and not round then they eat the squirrel. If someone sees the bald eagle then the bald eagle eats the squirrel. If someone visits the squirrel and they are kind then the squirrel is rough. If someone eats the squirrel then they visit the bald eagle. If someone sees the bald eagle then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel eats the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-378_Q11", "context": "The bald eagle is not cold. The bald eagle is young. The bald eagle does not need the dog. The bald eagle sees the cow. The bald eagle sees the dog. The cow chases the tiger. The cow is not young. The cow sees the tiger. The dog does not chase the cow. The dog chases the tiger. The dog is nice. The dog is young. The dog does not need the bald eagle. The dog needs the cow. The tiger is young. The tiger does not need the bald eagle. If something chases the dog then the dog sees the tiger. If something chases the dog then the dog needs the cow. If something chases the cow then it needs the bald eagle. If something needs the dog then it needs the bald eagle. If something is big then it chases the dog. If something is nice and it sees the cow then the cow is cold. If something sees the tiger then it is big. If something chases the tiger then it does not need the dog. If the tiger chases the cow then the tiger chases the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog chases the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-346_Q4", "context": "Anne is furry. Charlie is furry. Charlie is red. Charlie is rough. Dave is furry. Dave is young. Fiona is blue. All smart people are red. All blue, rough people are smart. Young people are nice. All nice people are rough. If someone is rough and young then they are blue. All furry, smart people are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-442_Q20", "context": "The bald eagle is cold. The bald eagle likes the bear. The bald eagle likes the mouse. The bald eagle sees the lion. The bald eagle visits the lion. The bear sees the lion. The bear sees the mouse. The bear visits the bald eagle. The lion is red. The mouse is big. The mouse is red. The mouse likes the bear. The mouse likes the lion. The mouse sees the lion. The mouse visits the bear. The mouse visits the lion. If something sees the mouse and it sees the lion then it likes the lion. If something visits the bald eagle and the bald eagle sees the mouse then the mouse is red. If something visits the bald eagle and the bald eagle sees the bear then it visits the bear. If something visits the lion and it is big then the lion sees the mouse. If the bear sees the mouse and the mouse likes the bald eagle then the bald eagle sees the lion. If something sees the mouse and it sees the lion then the lion is nice. If something likes the mouse and the mouse sees the bear then it sees the mouse. If the lion visits the mouse then the lion sees the bald eagle. If something likes the lion then it sees the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1076_Q3", "context": "Anne is cold. Anne is furry. Anne is kind. Anne is quiet. Anne is red. Charlie is kind. Charlie is red. Erin is big. Erin is blue. Erin is furry. Erin is kind. Erin is quiet. Erin is not red. Fiona is not cold. All red things are cold. If Charlie is cold then Charlie is blue. If something is cold and not kind then it is blue. All blue, red things are not quiet. If something is kind and not cold then it is not quiet. If something is kind and not quiet then it is furry. Furry things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-564_Q5", "context": "Anne is not young. Bob is furry. Bob is smart. Bob is young. Dave is smart. Gary is big. Gary is quiet. Quiet things are red. All quiet things are red. All young, smart things are big. If something is smart and red then it is young. If something is nice then it is young. If something is big then it is quiet. All smart things are nice. If something is big and not smart then it is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-231_Q4", "context": "The bald eagle does not chase the dog. The bald eagle is red. The dog does not chase the bald eagle. The dog is round. The dog sees the bald eagle. The dog does not see the rabbit. The rabbit is kind. The rabbit is young. The rabbit sees the bald eagle. The rabbit does not see the dog. The rabbit sees the squirrel. The rabbit does not visit the bald eagle. The rabbit visits the dog. The squirrel chases the bald eagle. The squirrel chases the rabbit. The squirrel is round. If someone is red and they chase the rabbit then they visit the dog. All round people are not kind. If someone is red then they visit the squirrel. If someone is big then they do not chase the dog. If someone is round then they chase the rabbit. If someone visits the squirrel and the squirrel visits the rabbit then they are round. If someone is young and round then they visit the bald eagle. If someone is young and not red then they visit the bald eagle. If someone visits the squirrel then the squirrel visits the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-723_Q12", "context": "Anne is big. Erin is green. Erin is rough. Erin is young. Fiona is big. Fiona is young. Gary is big. Gary is green. Gary is red. Gary is rough. All red, kind people are rough. If someone is green then they are young. All rough, big people are kind. If someone is kind and young then they are smart. Kind people are red. Big people are kind. If someone is rough and kind then they are big. Red people are green. All green, rough people are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-104_Q9", "context": "Bob is furry. Bob is kind. Bob is quiet. Dave is not round. Erin is not big. Erin is kind. Fiona is round. All furry, round things are rough. If something is quiet then it is not big. If something is quiet and cold then it is big. Quiet, rough things are not big. All kind, furry things are quiet. Rough, round things are kind. Round things are furry. If Fiona is rough and Fiona is not cold then Fiona is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1276_Q16", "context": "Anne is kind. Bob is kind. Bob is rough. Charlie is big. Charlie is blue. Charlie is rough. Harry is rough. If Anne is rough and Anne is smart then Anne is kind. Quiet people are rough. Smart people are furry. All rough people are kind. If someone is blue and kind then they are furry. If someone is furry and smart then they are big. If someone is kind and furry then they are quiet. Kind people are big. All big people are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-233_Q13", "context": "Anne is nice. Anne is red. Anne is smart. Dave is blue. Dave is kind. Erin is blue. Erin is green. Erin is kind. Erin is quiet. Erin is red. Erin is smart. Harry is kind. Harry is nice. Harry is red. If something is quiet then it is green. If Dave is blue and Dave is green then Dave is smart. Red things are quiet. All blue things are nice. If Erin is red and Erin is green then Erin is nice. If Dave is nice then Dave is red. If Erin is blue and Erin is quiet then Erin is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1130_Q11", "context": "Anne is smart. Dave is cold. Erin is kind. Erin is smart. Gary is kind. Gary is red. Gary is not smart. Red people are cold. All cold people are red. All cold people are red. If someone is furry and kind then they are red. All smart people are blue. Smart, blue people are round. All red people are furry. All round people are furry. If Anne is red then Anne is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-838_Q8", "context": "The bear is rough. The cat is nice. The cat needs the bear. The cat sees the bear. The cat visits the dog. The cat visits the mouse. The dog needs the mouse. The dog visits the cat. The dog visits the mouse. The mouse is green. The mouse is rough. If someone is nice then they see the cat. If someone needs the mouse and the mouse visits the cat then the cat needs the dog. If someone sees the dog then they are nice. If the dog visits the cat and the dog is rough then the dog needs the mouse. If someone sees the cat and they are green then they visit the cat. If someone is rough then they need the dog. If someone visits the mouse then the mouse sees the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not see the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-160_Q3", "context": "Anne is furry. Charlie is big. Charlie is nice. Charlie is quiet. Charlie is rough. Charlie is smart. Erin is furry. Erin is nice. Erin is quiet. Gary is furry. All smart, quiet things are rough. If something is smart and big then it is nice. If something is green then it is quiet. If something is smart and furry then it is big. If something is furry then it is smart. All big, furry things are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-917_Q22", "context": "The bald eagle needs the dog. The bear sees the dog. The dog is round. The dog sees the bald eagle. The lion is blue. The lion sees the bear. The lion visits the bear. If someone needs the bear then they are round. If someone is round then they need the lion. If someone is nice then they need the dog. If someone needs the bald eagle then the bald eagle visits the bear. If someone needs the bear then the bear is round. If someone needs the lion then they need the bear. If the lion does not visit the bear and the lion does not need the bear then the lion is not blue. If the lion visits the bald eagle and the bald eagle sees the bear then the lion is not blue. If the bear is young and the bear does not need the lion then the bear sees the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion needs the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-383_Q7", "context": "The bear sees the lion. The dog is young. The lion is red. The lion sees the dog. The lion visits the bear. The squirrel is young. The squirrel does not see the lion. If someone is red then they do not chase the squirrel. If someone sees the bear and they are red then the bear is red. If the lion does not see the dog then the lion sees the bear. If someone is round and they chase the bear then they visit the squirrel. If someone is young then they see the squirrel. If someone visits the dog then they are not blue. If someone sees the dog and the dog sees the lion then they chase the dog. All red people are young. If someone is young then they see the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-653_Q8", "context": "Bob is big. Bob is blue. Bob is nice. Bob is quiet. Bob is rough. Bob is white. Erin is big. Erin is rough. Gary is big. Gary is quiet. Gary is white. Harry is big. Harry is nice. Harry is red. Harry is rough. Harry is white. All red things are big. All red things are big. All big things are blue. If something is blue then it is white. White things are big. If something is nice then it is quiet. All white, blue things are nice. All nice, white things are rough. All white, quiet things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-581_Q19", "context": "The bald eagle is round. The cat eats the tiger. The cat is nice. The cat does not see the bald eagle. The cat sees the rabbit. The rabbit chases the bald eagle. The rabbit is green. The rabbit is nice. The rabbit does not see the tiger. The tiger is round. If someone sees the rabbit then they are kind. If someone eats the cat and the cat is nice then the cat is cold. If someone is kind then they eat the rabbit. If someone sees the cat and they do not eat the cat then the cat sees the tiger. If someone sees the tiger then the tiger does not see the rabbit. If someone is kind and they chase the bald eagle then the bald eagle sees the rabbit. If someone eats the cat and the cat is round then the cat is green. If someone eats the rabbit and the rabbit is nice then they chase the bald eagle. If someone sees the bald eagle then the bald eagle is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not see the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-237_Q22", "context": "The bear chases the dog. The bear chases the mouse. The bear eats the cat. The bear does not eat the mouse. The bear is cold. The bear is round. The cat eats the bear. The cat is red. The dog chases the bear. The dog does not eat the cat. The mouse chases the cat. The mouse is blue. The mouse is kind. The mouse visits the bear. If someone chases the cat then they chase the dog. If someone visits the dog then they chase the cat. If someone is cold then they visit the dog. If someone eats the cat and the cat is kind then the cat is blue. If someone chases the mouse and they chase the cat then the cat visits the dog. If someone chases the mouse and they are red then the mouse chases the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1079_Q13", "context": "Bob is big. Bob is cold. Bob is round. Charlie is cold. Charlie is green. Fiona is round. Gary is red. Round things are white. All red, kind things are white. If something is white and kind then it is big. All white, cold things are red. If something is white then it is cold. If Charlie is white then Charlie is round. Round, red things are kind. If something is round and not white then it is green. If something is red then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-792_Q23", "context": "The bald eagle is round. The bald eagle does not need the mouse. The bald eagle visits the cow. The bald eagle visits the rabbit. The cow is rough. The cow sees the rabbit. The cow visits the bald eagle. The cow visits the rabbit. The mouse visits the bald eagle. The mouse visits the rabbit. The rabbit is round. The rabbit does not see the mouse. The rabbit visits the cow. The rabbit visits the mouse. If something is cold and it needs the rabbit then the rabbit does not need the cow. If something needs the rabbit then the rabbit needs the bald eagle. If something is round and it needs the bald eagle then it needs the mouse. If something sees the cow then it does not see the mouse. If something needs the cow and it needs the mouse then it visits the cow. If something is kind then it needs the rabbit. If something sees the bald eagle then it is kind. If something sees the rabbit then it visits the rabbit. If something sees the rabbit then it sees the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1235_Q22", "context": "Anne is big. Anne is furry. Anne is green. Anne is quiet. Erin is young. Fiona is furry. Fiona is green. Fiona is kind. Fiona is red. Fiona is young. Harry is kind. If Fiona is kind then Fiona is big. If Fiona is young and Fiona is red then Fiona is big. Big, kind people are furry. Green, young people are furry. All kind people are red. All red people are big. If Harry is green then Harry is young. If someone is furry then they are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-402_Q8", "context": "Anne is big. Dave is blue. Erin is not furry. Fiona is big. Fiona is furry. Fiona is kind. Fiona is quiet. All blue, quiet things are green. Blue, furry things are green. If something is green and young then it is not quiet. Green, young things are not quiet. Kind, blue things are furry. If something is kind then it is furry. If something is blue and big then it is kind. Blue things are kind. Furry, green things are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-858_Q9", "context": "The bear is kind. The cow is young. The cow likes the bear. The cow sees the dog. The cow sees the mouse. The dog likes the mouse. The dog sees the cow. The dog sees the mouse. The mouse is kind. The mouse sees the bear. If the dog sees the bear then the bear likes the mouse. If something likes the mouse then it sees the bear. If something needs the mouse then the mouse sees the bear. If something needs the bear and the bear is round then the bear needs the mouse. If something sees the bear then it likes the dog. If something likes the dog and the dog sees the bear then the dog is young. If something sees the cow and it likes the cow then it needs the dog. If something likes the dog and the dog sees the bear then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear likes the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-236_Q22", "context": "The bald eagle is cold. The dog needs the bald eagle. The dog sees the lion. The lion eats the bald eagle. The lion eats the tiger. The lion is cold. The lion does not need the bald eagle. The lion sees the bald eagle. The tiger is big. The tiger is cold. If something eats the lion then it eats the dog. If something is rough then it sees the lion. If something is young then it eats the lion. If something is cold and it eats the dog then the dog is big. If the lion needs the dog then the dog does not need the bald eagle. If something eats the lion and the lion is cold then the lion does not need the dog. If something sees the lion then the lion sees the dog. Big things are young. If the tiger does not see the lion then the tiger is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-213_Q19", "context": "The cat is rough. The cat is not young. The cat visits the squirrel. The lion chases the mouse. The lion does not visit the mouse. The mouse is kind. The mouse is rough. The squirrel is kind. The squirrel is round. The squirrel is young. If something likes the squirrel then it visits the mouse. If the squirrel is round then the squirrel is rough. If something is kind and it chases the mouse then the mouse visits the squirrel. If something is round then it likes the squirrel. If the mouse chases the squirrel then the mouse chases the lion. If something visits the mouse and it is rough then the mouse is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not visit the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-289_Q1", "context": "The bear is red. The bear needs the mouse. The bear needs the rabbit. The bear sees the squirrel. The mouse chases the squirrel. The mouse does not need the rabbit. The rabbit is kind. The rabbit is nice. The rabbit sees the bear. The squirrel chases the bear. The squirrel chases the rabbit. The squirrel does not need the bear. If someone needs the rabbit then they chase the mouse. If the bear sees the mouse and the mouse is not kind then the bear needs the mouse. If someone sees the bear and the bear is red then they do not see the mouse. If someone chases the mouse then they see the bear. If someone chases the rabbit and the rabbit chases the bear then they see the bear. If someone chases the bear and they need the rabbit then they are not round. If someone sees the bear and they see the squirrel then the squirrel needs the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit sees the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-1039_Q6", "context": "The dog needs the mouse. The dog needs the rabbit. The mouse is rough. The mouse likes the rabbit. The rabbit is blue. The rabbit likes the dog. The rabbit needs the dog. The rabbit sees the tiger. The tiger is green. The tiger sees the dog. The tiger sees the rabbit. If something sees the dog and it is green then the dog is young. If something is green then it needs the dog. If something is young and it likes the rabbit then it sees the tiger. If something is young and it needs the dog then it likes the tiger. If something likes the tiger and the tiger needs the dog then the tiger is young. If something is young then it needs the dog. If something is young then it needs the dog. If something needs the tiger then the tiger is green. If something is rough and it likes the dog then the dog needs the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not need the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1408_Q13", "context": "Charlie is green. Charlie is round. Erin is furry. Erin is nice. Fiona is nice. Fiona is red. Fiona is round. Fiona is white. Gary is red. Gary is round. If Gary is green and Gary is red then Gary is furry. All furry, white things are kind. All green things are round. All white, red things are green. All kind, nice things are red. Round things are red. All furry things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-870_Q2", "context": "Bob is furry. Erin is nice. Erin is quiet. Erin is round. Fiona is furry. Fiona is kind. Fiona is nice. Fiona is quiet. Fiona is red. Harry is nice. Harry is red. If Fiona is nice then Fiona is round. Nice, round things are quiet. All nice, kind things are round. All green things are kind. Red things are round. All nice, green things are furry. If something is furry then it is nice. All nice things are green. Red, quiet things are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-119_Q7", "context": "Charlie is furry. Charlie is green. Charlie is nice. Charlie is red. Dave is furry. Dave is nice. Dave is smart. Dave is white. Erin is red. Fiona is smart. Fiona is white. Green, nice people are smart. If someone is green then they are young. If someone is white then they are green. Furry, red people are smart. If someone is young and white then they are furry. All red people are white. Nice people are red. Green, nice people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-451_Q1", "context": "The bear is green. The bear visits the lion. The bear visits the squirrel. The lion is cold. The lion likes the bear. The lion does not visit the rabbit. The rabbit is big. The rabbit is cold. The rabbit needs the lion. The squirrel likes the lion. The squirrel needs the rabbit. If someone needs the rabbit and they do not visit the rabbit then the rabbit needs the bear. If someone needs the bear and the bear is blue then they are green. If someone visits the squirrel then they need the rabbit. If someone needs the rabbit then they are blue. If someone is green and they visit the bear then the bear likes the rabbit. If someone likes the bear then they visit the bear. If someone needs the rabbit and they are blue then the rabbit visits the squirrel. If someone is blue then they visit the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-820_Q10", "context": "The bald eagle does not chase the tiger. The bear does not chase the cow. The bear is not cold. The bear is young. The cow does not chase the bear. The tiger is cold. The tiger does not like the bear. The tiger likes the cow. The tiger visits the bald eagle. The tiger visits the cow. If something is red then it likes the bald eagle. If the cow is red then the cow is cold. If something likes the bald eagle then it likes the bear. If something likes the cow and the cow chases the bald eagle then it likes the bear. If the bear is red and the bear visits the tiger then the tiger likes the cow. If something is rough then it visits the bear. If something likes the bear then the bear likes the bald eagle. If something visits the bald eagle then the bald eagle is red. If something is young then it chases the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not like the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-920_Q9", "context": "Anne is kind. Anne is nice. Anne is round. Bob is big. Bob is kind. Bob is red. Charlie is blue. Charlie is kind. Charlie is nice. Charlie is red. Dave is red. If someone is white and kind then they are big. If someone is red then they are nice. Nice people are kind. If someone is white then they are kind. If Bob is red then Bob is nice. If Bob is blue then Bob is red. If someone is nice and kind then they are white. All big, white people are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1008_Q12", "context": "Anne is not nice. Charlie is kind. Fiona is furry. Fiona is nice. Harry is not furry. Harry is nice. Harry is not white. All white, green things are smart. If Fiona is nice then Fiona is white. If something is smart and white then it is quiet. If something is furry and white then it is green. All white things are green. If something is green then it is furry. All quiet things are not kind. Green, quiet things are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-943_Q6", "context": "Bob is furry. Bob is kind. Charlie is nice. Charlie is not white. Erin is kind. Erin is white. Gary is furry. Gary is kind. Gary is nice. Gary is round. Gary is white. Blue things are nice. If Bob is red and Bob is kind then Bob is blue. If something is round then it is red. If something is furry then it is white. If something is white then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-176_Q1", "context": "Bob is green. Bob is kind. Bob is quiet. Charlie is big. Charlie is furry. Charlie is kind. Charlie is quiet. Dave is young. Erin is cold. Erin is furry. Erin is green. Erin is kind. Erin is quiet. Erin is young. Cold, furry people are big. All cold people are young. All green, young people are quiet. If someone is young then they are green. Cold, big people are furry. If someone is green and quiet then they are cold. If Dave is young and Dave is cold then Dave is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-727_Q16", "context": "The bear does not chase the dog. The bear likes the lion. The cow is round. The cow is young. The dog chases the bear. The dog does not like the bear. The dog visits the cow. The lion does not chase the cow. The lion is red. The lion likes the dog. The lion visits the bear. If someone likes the cow and they are round then they visit the dog. If someone visits the dog and they are not round then they are kind. If someone likes the dog then they visit the cow. If someone chases the cow and the cow visits the dog then the dog does not like the lion. If someone likes the cow then the cow likes the dog. If someone is red and they visit the cow then they do not chase the dog. If someone chases the lion then the lion is kind. If someone visits the cow then they like the cow. If someone visits the dog and the dog is young then the dog chases the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-544_Q7", "context": "The bald eagle is kind. The bald eagle is red. The bald eagle sees the tiger. The bald eagle visits the rabbit. The bear is nice. The bear is young. The bear sees the bald eagle. The rabbit does not need the bald eagle. The tiger needs the bear. The tiger sees the rabbit. If something is kind then it visits the bear. If something visits the tiger then it is red. If the bear needs the bald eagle then the bald eagle is not round. If something visits the bear then it visits the bald eagle. If the tiger is nice then the tiger is not young. If something sees the rabbit then the rabbit is nice. If the bear visits the tiger and the bear is red then the tiger is kind. If something visits the bear and the bear sees the bald eagle then the bear visits the tiger. If the tiger is round then the tiger does not visit the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-327_Q19", "context": "The bear eats the squirrel. The bear is young. The bear likes the rabbit. The cow is big. The cow is young. The cow needs the squirrel. The rabbit is rough. The rabbit is young. The rabbit likes the squirrel. The rabbit needs the cow. The rabbit needs the squirrel. The squirrel likes the bear. If something eats the cow then it is nice. If the rabbit is young and the rabbit eats the bear then the rabbit eats the squirrel. If something likes the squirrel and it is big then the squirrel needs the bear. If something eats the squirrel and the squirrel needs the cow then it needs the squirrel. If something likes the squirrel and the squirrel is blue then the squirrel eats the cow. If something is blue and it likes the squirrel then it eats the cow. If something is nice then it needs the cow. If something likes the bear then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not like the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-9_Q16", "context": "The bald eagle eats the squirrel. The lion is blue. The lion is kind. The lion needs the rabbit. The rabbit eats the squirrel. The rabbit is big. The rabbit is kind. The rabbit sees the bald eagle. The rabbit sees the squirrel. The squirrel needs the lion. If something is round then it needs the rabbit. If the bald eagle is kind and the bald eagle is round then the bald eagle needs the squirrel. If something is green then it eats the rabbit. If something is kind and green then it needs the lion. If something eats the rabbit then the rabbit is blue. If something is blue then it is green. If the lion is round then the lion is not big. All kind things are not round.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel needs the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-135_Q13", "context": "The bald eagle is nice. The bald eagle likes the bear. The bear chases the bald eagle. The bear is green. The mouse chases the rabbit. The mouse is blue. The rabbit chases the bald eagle. The rabbit chases the bear. The rabbit is green. The rabbit sees the mouse. If someone is red and they chase the bald eagle then they see the mouse. If someone is nice and red then they see the bear. If someone sees the bear and they see the mouse then they like the rabbit. If someone is green and they chase the mouse then they like the bald eagle. If someone is blue then they like the bald eagle. If someone sees the bear then they chase the bald eagle. If the rabbit sees the bear and the bear is nice then the bear is blue. All nice people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not see the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-944_Q3", "context": "The dog chases the lion. The dog chases the rabbit. The lion eats the squirrel. The lion is kind. The rabbit chases the dog. The rabbit eats the dog. The rabbit eats the squirrel. The rabbit is cold. The squirrel is big. The squirrel is kind. If the dog is young and the dog chases the rabbit then the rabbit likes the lion. If something eats the lion and it is big then the lion is young. If something likes the squirrel then the squirrel eats the rabbit. If something chases the dog then the dog likes the lion. If something eats the dog then it is blue. If something likes the lion then it is young. If something is young then it is big. If the rabbit chases the squirrel and the rabbit is kind then the squirrel is young.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-630_Q15", "context": "The bald eagle eats the cow. The bald eagle eats the dog. The bald eagle visits the cat. The bald eagle visits the dog. The cat is big. The cat likes the dog. The cow eats the bald eagle. The cow is red. The cow visits the cat. The dog eats the bald eagle. The dog eats the cat. The dog likes the bald eagle. If someone likes the dog then they visit the dog. If someone likes the dog then they like the cow. If someone eats the bald eagle and the bald eagle eats the cat then the cat visits the bald eagle. If someone is big then they like the dog. If the bald eagle likes the cow then the bald eagle eats the cat. If someone visits the dog then they visit the cow. If someone likes the cat and the cat is red then the cat visits the bald eagle. If the cat visits the cow and the cat visits the dog then the cow likes the dog. If someone eats the dog then they are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not like the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-915_Q9", "context": "Charlie is green. Charlie is quiet. Erin is red. Erin is rough. Erin is round. Erin is white. Fiona is nice. Fiona is red. Harry is green. Harry is white. All quiet, rough things are red. Red, green things are nice. All quiet, red things are round. If something is green and round then it is rough. All nice things are quiet. If Harry is red and Harry is quiet then Harry is green. Green, white things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-101_Q5", "context": "Bob is blue. Bob is smart. Erin is green. Erin is nice. Erin is smart. Fiona is blue. Harry is blue. Harry is nice. Harry is rough. Harry is young. Rough, blue things are smart. If Erin is smart and Erin is blue then Erin is young. All green, red things are nice. If something is nice and blue then it is green. Green things are young. Blue things are green. If something is young and blue then it is smart. Smart things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-226_Q13", "context": "Anne is kind. Anne is round. Anne is young. Bob is smart. Charlie is big. Charlie is nice. Charlie is not young. Gary is big. Gary is smart. Gary is young. All big things are round. If something is round and not young then it is big. All nice things are big. Young things are big. If Gary is nice then Gary is smart. All nice, kind things are rough. If something is smart then it is nice. If Anne is young then Anne is rough. If something is round then it is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-511_Q23", "context": "The bear chases the lion. The bear is kind. The bear is round. The bear sees the lion. The cat does not chase the lion. The cat eats the lion. The lion eats the cat. The lion is big. The lion is blue. The lion is red. The squirrel eats the bear. The squirrel does not eat the lion. The squirrel is big. The squirrel is kind. If someone is big and they see the lion then they see the cat. If someone eats the bear and the bear does not eat the cat then the cat sees the bear. If someone eats the squirrel then they are not kind. If someone chases the cat then the cat is blue. If someone is kind then they are round. If someone is round and they chase the squirrel then they eat the lion. If someone chases the squirrel and the squirrel sees the cat then the squirrel is kind. If someone sees the cat then they chase the cat. If someone is round then they see the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not see the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-186_Q9", "context": "Charlie is nice. Dave is white. Fiona is green. Fiona is quiet. Gary is kind. Gary is quiet. Gary is white. All cold people are white. Kind, cold people are smart. If Fiona is white and Fiona is kind then Fiona is nice. Kind, green people are cold. All green, quiet people are smart. If someone is kind and nice then they are green. If someone is smart then they are kind. If someone is cold then they are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-657_Q4", "context": "Charlie is green. Charlie is smart. Dave is furry. Gary is furry. Gary is rough. Gary is smart. Harry is green. If Harry is furry then Harry is nice. If someone is nice then they are not blue. If someone is green then they are nice. If someone is smart and rough then they are nice. If Dave is round then Dave is not blue. If someone is rough and furry then they are smart. All nice people are furry. Round, furry people are rough. All green, furry people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-965_Q8", "context": "Bob is nice. Erin is big. Erin is smart. Fiona is green. Fiona is nice. Fiona is quiet. Fiona is round. Harry is green. Harry is quiet. Harry is round. If something is smart and green then it is big. All nice things are blue. All smart things are green. All blue things are smart. If Erin is blue and Erin is quiet then Erin is green. Smart things are nice. All big things are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-952_Q15", "context": "Charlie is blue. Charlie is white. Fiona is quiet. Gary is furry. Gary is nice. Gary is not quiet. Gary is round. Harry is not furry. Harry is nice. Harry is not quiet. If someone is white then they are not furry. Quiet, nice people are blue. White, red people are nice. White, nice people are quiet. If someone is blue and not furry then they are quiet. All red people are round. If someone is quiet and not furry then they are round. If someone is round and not furry then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-623_Q14", "context": "Anne is furry. Anne is young. Bob is cold. Charlie is quiet. Charlie is red. Charlie is rough. Charlie is young. Harry is furry. Harry is quiet. Harry is red. Harry is rough. Harry is smart. Smart things are young. If something is cold then it is red. If something is cold and smart then it is young. All red things are smart. All smart things are young. All young things are rough. If something is rough then it is furry. Smart things are red. All smart, furry things are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-635_Q16", "context": "Anne is green. Anne is smart. Anne is young. Erin is cold. Erin is rough. Erin is round. Erin is smart. Erin is young. Gary is young. Harry is green. Harry is kind. Kind, young things are cold. If something is round then it is cold. Young things are smart. If something is smart then it is young. If something is young and smart then it is round. All smart, cold things are rough. Kind things are green. Smart, rough things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-603_Q6", "context": "Anne is blue. Anne is cold. Anne is furry. Anne is nice. Anne is quiet. Anne is young. Bob is blue. Bob is cold. Bob is furry. Bob is nice. Bob is quiet. Bob is smart. Bob is young. Charlie is quiet. Charlie is young. Gary is young. If someone is blue and cold then they are smart. All blue, young people are cold. If Charlie is smart then Charlie is furry. If someone is young and quiet then they are blue. If someone is furry and young then they are cold. If someone is nice and cold then they are young. Furry people are nice. If Gary is furry and Gary is quiet then Gary is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-302_Q19", "context": "The cat is rough. The cat does not visit the dog. The cat does not visit the rabbit. The dog chases the cat. The dog chases the rabbit. The dog is not red. The dog is round. The mouse chases the dog. The mouse is not rough. The rabbit sees the mouse. If someone chases the dog and the dog visits the rabbit then the rabbit chases the cat. If someone is round then they do not see the mouse. If someone sees the mouse then the mouse sees the cat. If the dog sees the mouse then the dog chases the rabbit. If someone sees the dog and the dog chases the rabbit then the rabbit is young. If someone sees the rabbit and the rabbit chases the cat then the cat is red. If someone is young then they see the cat. If someone sees the cat then they see the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-730_Q1", "context": "Anne is cold. Anne is red. Bob is big. Bob is kind. Erin is green. Erin is red. Harry is big. If Erin is kind then Erin is red. Red, furry things are rough. If something is green and rough then it is kind. If something is cold then it is furry. Green things are cold. All furry, big things are cold. All kind things are big. If Anne is furry then Anne is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-799_Q4", "context": "Charlie is big. Charlie is furry. Charlie is white. Charlie is young. Fiona is rough. Gary is big. Gary is rough. Harry is furry. Harry is rough. Harry is smart. Harry is white. Big things are white. Young things are blue. All blue, young things are big. If Gary is white and Gary is smart then Gary is blue. Big things are white. All rough things are furry. Furry things are young. If something is big and rough then it is furry. Big, white things are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-163_Q4", "context": "The bald eagle eats the mouse. The bald eagle likes the lion. The bald eagle sees the mouse. The lion eats the mouse. The lion likes the mouse. The lion likes the tiger. The mouse eats the tiger. The mouse likes the bald eagle. The mouse likes the tiger. The tiger is rough. The tiger likes the lion. If something is blue and it likes the bald eagle then it is young. If something sees the bald eagle and it likes the tiger then the bald eagle is blue. If something likes the lion and it sees the bald eagle then the lion is rough. If something eats the mouse and it sees the bald eagle then the mouse eats the tiger. If something is blue then it sees the bald eagle. If something is rough and it eats the mouse then it is blue. If something likes the tiger then it is green. If the bald eagle is green and the bald eagle likes the lion then the bald eagle sees the lion. If something sees the mouse then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-671_Q2", "context": "The bald eagle is blue. The bald eagle is kind. The bald eagle sees the dog. The dog chases the lion. The dog is kind. The dog is rough. The dog needs the lion. The dog needs the squirrel. The lion chases the dog. The lion is red. The lion needs the squirrel. The squirrel chases the lion. If something is red then it chases the bald eagle. If the bald eagle chases the lion and the bald eagle chases the squirrel then the squirrel sees the lion. If something chases the dog then it sees the bald eagle. If something needs the bald eagle then the bald eagle chases the lion. If something chases the bald eagle and the bald eagle sees the dog then it chases the squirrel. If something chases the dog then the dog chases the bald eagle. If something sees the squirrel then the squirrel sees the dog. If something sees the lion then it sees the squirrel. If something sees the dog then it sees the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-954_Q4", "context": "Anne is not red. Charlie is rough. Dave is nice. Dave is red. Dave is round. Harry is big. Harry is nice. If Charlie is round then Charlie is not rough. If something is red then it is nice. If something is nice then it is not cold. All rough things are red. If Anne is cold and Anne is red then Anne is big. If something is nice and big then it is not furry. If something is rough and not cold then it is big. Cold things are big. If something is nice and not round then it is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-969_Q3", "context": "The lion chases the tiger. The lion eats the rabbit. The lion eats the squirrel. The lion is nice. The lion needs the tiger. The rabbit chases the tiger. The rabbit eats the tiger. The rabbit does not need the tiger. The squirrel eats the rabbit. The squirrel eats the tiger. The squirrel is blue. The squirrel is red. The tiger eats the rabbit. The tiger does not eat the squirrel. If something eats the squirrel then it is blue. If something needs the lion then the lion chases the rabbit. If the lion chases the rabbit then the rabbit eats the squirrel. If the rabbit is blue then the rabbit is nice. If something eats the rabbit and it chases the squirrel then the rabbit is not nice. If something chases the squirrel then it is nice. If something needs the tiger then it needs the lion. If something needs the rabbit and the rabbit needs the squirrel then it needs the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion needs the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-243_Q6", "context": "The bald eagle is nice. The bald eagle needs the bear. The bald eagle needs the mouse. The bear eats the cat. The bear is kind. The bear needs the bald eagle. The bear needs the cat. The cat is blue. The cat sees the bear. The mouse needs the bald eagle. If something needs the bear and the bear does not need the cat then it does not need the bald eagle. If something eats the bald eagle then the bald eagle needs the cat. If the bear sees the mouse then the bear sees the cat. If something is young and not blue then it eats the mouse. If something sees the mouse and it eats the bear then the bear eats the bald eagle. If something needs the cat then it is young. If something is young and not green then it does not see the bald eagle. If something is young then it eats the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not eat the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-976_Q14", "context": "The bald eagle is cold. The bald eagle is kind. The bald eagle needs the bear. The bald eagle needs the mouse. The bald eagle sees the bear. The bald eagle visits the rabbit. The bear is cold. The bear needs the mouse. The bear needs the rabbit. The bear sees the bald eagle. The bear visits the bald eagle. The bear visits the mouse. The mouse is cold. The mouse needs the rabbit. The mouse visits the bear. The rabbit visits the bald eagle. If the mouse visits the rabbit and the rabbit sees the bear then the mouse is blue. If someone is blue and they see the rabbit then they are green. If someone is cold then they see the rabbit. If someone needs the bear then they are cold. If someone sees the bald eagle then they are cold. If someone sees the rabbit then the rabbit needs the bald eagle. If someone sees the rabbit and the rabbit needs the bald eagle then the rabbit needs the bear. If someone sees the mouse and the mouse sees the bear then they are rough. If someone is rough then they need the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1388_Q7", "context": "Bob is nice. Charlie is furry. Charlie is round. Charlie is white. Erin is nice. Erin is red. Erin is rough. Harry is furry. Harry is nice. Harry is red. Harry is rough. Harry is round. If something is red and rough then it is white. If something is round then it is rough. All nice things are red. If Bob is round and Bob is red then Bob is nice. White things are round. White, rough things are nice. Rough, red things are quiet. All red, nice things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-588_Q7", "context": "The cat is big. The cat is blue. The cat is nice. The cow is blue. The cow likes the cat. The mouse eats the cow. The mouse eats the squirrel. The mouse is blue. The mouse is nice. The mouse is round. The squirrel eats the cat. The squirrel sees the cat. If someone eats the mouse then they see the cow. If someone sees the cow then the cow sees the squirrel. If someone is nice and they like the squirrel then the squirrel is nice. If someone is round then they eat the mouse. If someone likes the mouse then they eat the mouse. If someone sees the squirrel then they like the mouse. If someone is red then they see the cow. If someone likes the cow then the cow likes the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow sees the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-412_Q11", "context": "The cow is round. The cow needs the lion. The cow needs the rabbit. The cow sees the lion. The cow visits the rabbit. The lion is round. The rabbit is kind. The rabbit visits the tiger. The tiger is big. The tiger is kind. The tiger sees the rabbit. The tiger visits the rabbit. If something is kind and it visits the rabbit then it is young. If something sees the tiger and it visits the lion then it sees the rabbit. If something is big and young then it sees the lion. If something visits the rabbit then the rabbit needs the lion. If something is big then it visits the rabbit. If something sees the tiger then it is rough. If something visits the rabbit and it is kind then the rabbit needs the lion. If something is rough and kind then it visits the lion. If something needs the lion then it is big.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit sees the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-852_Q14", "context": "The cat eats the cow. The cat is not green. The cat is not rough. The cat does not visit the cow. The cat visits the squirrel. The cow is green. The squirrel eats the cow. The squirrel eats the tiger. The squirrel visits the cat. The tiger eats the squirrel. The tiger sees the squirrel. The tiger visits the cow. Rough things are red. If something visits the cat then it is rough. If something visits the squirrel and it eats the cow then it is cold. If something is cold then it visits the tiger. If something is red and it eats the cow then it visits the squirrel. If something eats the cat and it is not rough then it does not eat the cow. If something eats the cow and the cow does not see the cat then the cat is round. If something eats the cat and the cat visits the squirrel then the cat sees the squirrel. If something is red and it visits the tiger then the tiger sees the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-621_Q10", "context": "Bob is round. Dave is green. Dave is round. Erin is nice. Harry is green. Harry is rough. Harry is round. Kind things are nice. If something is kind and green then it is nice. If something is green then it is cold. All round things are white. Cold things are round. If something is rough and nice then it is green. If Harry is white then Harry is round. If something is nice then it is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-504_Q15", "context": "The cow is red. The cow sees the lion. The dog eats the tiger. The dog is red. The dog is round. The dog sees the tiger. The dog visits the lion. The lion is not red. The lion sees the cow. The tiger is big. If someone eats the lion then the lion eats the tiger. If the lion visits the dog then the lion eats the dog. If someone sees the cow and they eat the lion then the lion visits the dog. If someone eats the tiger then they eat the lion. If someone is big then they do not see the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not eat the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-157_Q7", "context": "Anne is nice. Anne is smart. Charlie is kind. Charlie is nice. Erin is blue. Erin is kind. Erin is quiet. Erin is red. Erin is smart. Erin is white. Fiona is white. Kind, red things are nice. Red things are kind. If something is blue then it is red. If something is blue then it is smart. If something is red and quiet then it is white. Blue, kind things are quiet. All nice things are blue. If something is white and red then it is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-608_Q12", "context": "The bald eagle sees the squirrel. The bald eagle sees the tiger. The bear chases the tiger. The bear visits the bald eagle. The squirrel is green. The squirrel is red. The squirrel is young. The squirrel does not see the bald eagle. The squirrel does not see the bear. The squirrel does not see the tiger. The squirrel does not visit the bear. The squirrel visits the tiger. The tiger is blue. The tiger does not visit the bald eagle. The tiger visits the bear. The tiger visits the squirrel. If someone visits the tiger then the tiger does not chase the squirrel. If someone chases the bald eagle then they are not cold. If someone visits the squirrel and the squirrel sees the bear then they do not see the squirrel. If someone chases the squirrel and the squirrel sees the bald eagle then they are red. If someone is green then they chase the squirrel. If someone is young and they chase the tiger then they are blue. If someone chases the squirrel then they chase the bald eagle. If someone chases the bald eagle then the bald eagle is green. If the bald eagle does not see the squirrel then the bald eagle does not visit the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not chase the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-743_Q12", "context": "Anne is green. Anne is smart. Anne is young. Dave is big. Dave is young. Gary is green. Gary is kind. Gary is round. Gary is young. Harry is smart. All smart, green things are round. If something is smart then it is kind. All smart, green things are white. All white things are big. If Dave is white and Dave is young then Dave is green. All kind, young things are white. All young things are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-80_Q12", "context": "Anne is kind. Anne is round. Anne is smart. Charlie is big. Gary is blue. Gary is green. Gary is kind. Gary is smart. Harry is green. Harry is kind. Harry is quiet. Smart, kind people are round. All round people are smart. Blue, green people are big. Quiet, kind people are green. Round, quiet people are kind. Big people are round. Smart people are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-970_Q18", "context": "The bald eagle is young. The bear chases the lion. The bear visits the bald eagle. The lion is kind. The mouse does not chase the bear. The mouse chases the lion. The mouse needs the bald eagle. The mouse needs the lion. The mouse does not visit the bear. The mouse does not visit the lion. Kind things are cold. If something needs the lion and it is young then it visits the bear. All young, green things are kind. If something chases the lion and the lion needs the mouse then it is kind. If something is cold then it needs the mouse. If something chases the mouse and the mouse visits the bear then it does not need the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion visits the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-589_Q5", "context": "Bob is blue. Bob is nice. Bob is quiet. Bob is rough. Bob is round. Bob is white. Bob is young. Charlie is nice. Charlie is quiet. Charlie is white. Erin is blue. Erin is nice. Gary is nice. Gary is rough. Blue, quiet people are young. If someone is young and quiet then they are rough. White, rough people are quiet. Young, nice people are rough. Nice people are white. Rough people are quiet. All quiet people are round. If Charlie is young and Charlie is quiet then Charlie is round. If Erin is blue and Erin is white then Erin is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-475_Q20", "context": "Anne is blue. Bob is nice. Charlie is quiet. Charlie is smart. Charlie is not young. Harry is not nice. Harry is young. Green people are young. If someone is big then they are young. If someone is smart and big then they are not quiet. Nice, blue people are quiet. If someone is smart then they are quiet. If Bob is not nice then Bob is smart. All young people are green. Nice people are big. If someone is nice and green then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-343_Q6", "context": "Anne is cold. Anne is quiet. Anne is smart. Bob is blue. Bob is not cold. Bob is rough. Bob is round. Bob is smart. Bob is young. Charlie is round. Harry is blue. All young, round people are smart. If Harry is smart then Harry is not cold. All young people are round. If someone is blue then they are rough. Rough people are young. If Bob is round then Bob is young. If Anne is blue then Anne is not quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-237_Q9", "context": "The bear chases the dog. The bear chases the mouse. The bear eats the cat. The bear does not eat the mouse. The bear is cold. The bear is round. The cat eats the bear. The cat is red. The dog chases the bear. The dog does not eat the cat. The mouse chases the cat. The mouse is blue. The mouse is kind. The mouse visits the bear. If someone chases the cat then they chase the dog. If someone visits the dog then they chase the cat. If someone is cold then they visit the dog. If someone eats the cat and the cat is kind then the cat is blue. If someone chases the mouse and they chase the cat then the cat visits the dog. If someone chases the mouse and they are red then the mouse chases the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat chases the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-80_Q19", "context": "The cat eats the cow. The cat is red. The cat likes the dog. The cat sees the rabbit. The cow eats the cat. The cow is blue. The dog is blue. The dog likes the cow. The dog sees the rabbit. The rabbit eats the cat. The rabbit is blue. The rabbit is red. If something eats the rabbit and it is rough then it sees the rabbit. If something eats the rabbit and the rabbit eats the cow then the rabbit likes the dog. If the cat is green then the cat sees the cow. If something is green then it likes the cat. If something likes the dog then it is green. If something eats the cat then the cat is green. If something is green and it likes the cow then the cow likes the rabbit. If something sees the cow then the cow likes the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not see the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-709_Q4", "context": "Bob is big. Bob is furry. Bob is quiet. Bob is round. Dave is furry. Dave is rough. Erin is furry. Erin is kind. Erin is white. Fiona is white. All big, quiet people are kind. All white people are quiet. Quiet people are rough. If someone is quiet and not white then they are rough. All rough, quiet people are round. Quiet, round people are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-978_Q8", "context": "The bear is nice. The lion is nice. The lion is young. The lion does not see the rabbit. The lion does not visit the squirrel. The rabbit needs the lion. The rabbit does not see the lion. The rabbit sees the squirrel. The rabbit does not visit the bear. The rabbit does not visit the lion. The squirrel is green. The squirrel is rough. The squirrel sees the rabbit. The squirrel does not visit the lion. If the bear needs the rabbit then the rabbit visits the lion. If something visits the bear then it does not see the bear. If something needs the rabbit and it is rough then the rabbit is green. If something needs the squirrel then it needs the rabbit. If the squirrel sees the lion then the lion sees the bear. If something is green then it needs the squirrel. If something sees the rabbit and the rabbit visits the lion then it is not cold. If the rabbit needs the lion and the rabbit does not need the squirrel then the rabbit does not need the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-507_Q3", "context": "Bob is blue. Bob is quiet. Bob is red. Charlie is furry. Charlie is quiet. Dave is furry. Dave is quiet. Dave is red. Dave is white. Gary is blue. Gary is rough. If someone is blue and cold then they are furry. If someone is quiet and blue then they are furry. If someone is quiet and furry then they are cold. If someone is red and quiet then they are furry. If someone is red and white then they are quiet. Blue people are red. Red, blue people are white. Blue people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-706_Q10", "context": "The bald eagle is blue. The bald eagle likes the squirrel. The bald eagle needs the bear. The bear is rough. The bear is round. The cow chases the squirrel. The cow is red. The cow is round. The cow likes the squirrel. The cow needs the bear. The squirrel chases the bear. The squirrel likes the bear. If someone likes the cow then they like the squirrel. If someone is blue then they chase the bear. If someone likes the bald eagle then the bald eagle likes the bear. If someone needs the cow and the cow chases the squirrel then the cow is rough. If someone likes the bald eagle then they are blue. If someone is round and rough then they like the bald eagle. If someone needs the squirrel and the squirrel is round then they chase the squirrel. If someone chases the bear then the bear needs the cow. If someone is blue and they like the squirrel then they like the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-611_Q12", "context": "Anne is big. Anne is furry. Anne is red. Anne is young. Erin is furry. Fiona is big. Fiona is round. Fiona is smart. Fiona is young. Gary is furry. Young people are big. Young, round people are big. Furry people are young. All round, rough people are red. All smart, round people are furry. If someone is big then they are red. If Anne is big then Anne is round. Red, young people are smart. All smart, furry people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-875_Q12", "context": "The cow eats the dog. The cow eats the mouse. The cow is red. The cow likes the dog. The cow likes the lion. The cow likes the mouse. The cow needs the dog. The cow needs the mouse. The dog eats the lion. The lion eats the mouse. The lion does not like the dog. The lion needs the dog. The mouse eats the dog. The mouse is big. The mouse likes the cow. The mouse needs the cow. If the lion eats the mouse and the mouse is rough then the lion is big. If the dog needs the cow and the cow needs the dog then the dog likes the mouse. If something is green and it does not like the dog then it likes the cow. If something eats the lion then it is rough. If something likes the mouse then it is big. If something is big then it eats the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1189_Q21", "context": "Anne is not cold. Anne is nice. Anne is red. Bob is nice. Bob is not red. Dave is kind. Harry is not green. Harry is not kind. Harry is red. Harry is rough. Harry is young. If something is red and kind then it is young. Red, green things are young. If something is rough then it is not kind. Green things are cold. If something is cold and red then it is nice. If Dave is young then Dave is green. Kind things are red. If Bob is red and Bob is young then Bob is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1224_Q9", "context": "Anne is red. Bob is big. Bob is furry. Bob is not green. Bob is red. Gary is furry. Harry is not cold. If something is furry and big then it is rough. All cold, rough things are not kind. Big, cold things are furry. Kind, green things are not furry. If something is red and big then it is cold. If something is red then it is big. If Bob is rough and Bob is cold then Bob is not kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-845_Q14", "context": "The cat is nice. The cat sees the dog. The cow likes the cat. The cow visits the dog. The dog is green. The dog is red. The dog likes the lion. The dog sees the cat. The dog sees the cow. The dog sees the lion. The lion sees the cat. If the lion likes the dog and the dog visits the cat then the dog visits the lion. If someone visits the cat then the cat visits the cow. If someone visits the cow then they visit the cat. If someone visits the dog then they like the dog. If the lion likes the cat then the cat likes the cow. If someone likes the dog then they like the cow. If someone is red then they are nice. If someone likes the dog and the dog sees the cow then the dog visits the cow. If someone visits the cow then they see the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion likes the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-46_Q3", "context": "Bob is blue. Bob is kind. Bob is quiet. Bob is rough. Bob is smart. Erin is furry. Erin is kind. Gary is blue. Gary is quiet. Gary is smart. Gary is young. Harry is kind. If Erin is kind and Erin is smart then Erin is young. If someone is furry then they are blue. If someone is kind then they are quiet. If Gary is quiet then Gary is kind. All furry, young people are rough. If someone is rough and young then they are furry. Quiet, kind people are young. If someone is young then they are rough. If Harry is young then Harry is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-325_Q14", "context": "Anne is kind. Bob is red. Bob is white. Dave is blue. Dave is not quiet. Gary is kind. Gary is quiet. If someone is red and rough then they are white. If someone is quiet and blue then they are red. If Anne is quiet then Anne is not blue. All white people are rough. All white, quiet people are blue. If someone is rough then they are kind. If Bob is blue and Bob is rough then Bob is big. All kind people are quiet. If someone is white and not blue then they are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-392_Q23", "context": "The cow is nice. The cow does not like the lion. The cow sees the mouse. The lion eats the cow. The lion sees the cow. The mouse eats the tiger. The mouse is not nice. The mouse does not see the cow. The mouse sees the lion. The tiger sees the lion. The tiger sees the mouse. If someone eats the lion and the lion eats the mouse then the mouse is green. If someone sees the lion and the lion eats the mouse then they like the cow. If someone is cold then they are young. If someone is young then they like the mouse. If someone likes the lion then the lion is not green. If someone likes the lion then the lion is not green. If someone eats the tiger then they are cold. If someone is cold and they like the mouse then they like the lion. If someone likes the cow then they see the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-232_Q3", "context": "The bald eagle chases the rabbit. The bald eagle is big. The bald eagle sees the rabbit. The rabbit chases the bald eagle. The rabbit is kind. The squirrel is red. The squirrel is round. The tiger is round. The tiger sees the rabbit. The tiger visits the squirrel. If someone sees the squirrel and the squirrel is kind then they see the tiger. If someone sees the tiger then they are round. If someone visits the tiger and they visit the squirrel then the squirrel sees the bald eagle. All big people are round. If someone sees the squirrel and they are round then the squirrel sees the bald eagle. If someone is round then they visit the tiger. If someone sees the squirrel then they are kind. If someone sees the rabbit and they are blue then the rabbit sees the bald eagle. If someone is red and they see the bald eagle then they see the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-762_Q23", "context": "The bear is cold. The bear is kind. The bear needs the rabbit. The mouse is big. The mouse is red. The mouse needs the bear. The rabbit eats the bear. The rabbit eats the squirrel. The rabbit is red. The rabbit visits the bear. The rabbit visits the mouse. The squirrel eats the bear. The squirrel needs the bear. The squirrel visits the mouse. If the bear is cold then the bear needs the mouse. If something needs the mouse and it needs the bear then it visits the squirrel. If something eats the mouse and the mouse is kind then it eats the bear. If something eats the rabbit then the rabbit is cold. If something is cold then it is red. If something is cold then it needs the bear. If the bear needs the mouse and the bear visits the squirrel then the mouse eats the rabbit. If the bear visits the rabbit and the rabbit needs the mouse then the mouse is red. If the rabbit needs the mouse then the mouse eats the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not eat the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-673_Q18", "context": "The bald eagle is rough. The bald eagle is not young. The bald eagle needs the cow. The bald eagle needs the tiger. The bear chases the bald eagle. The bear chases the cow. The bear is nice. The bear needs the bald eagle. The cow is not round. The cow visits the tiger. The tiger needs the bear. The tiger does not visit the bald eagle. If something needs the cow then the cow chases the bear. If something chases the cow and it does not need the cow then the cow is not cold. If something needs the bald eagle and it does not need the tiger then the tiger needs the bald eagle. If something visits the tiger then it is not round. If something is nice and it chases the tiger then the tiger chases the cow. If something chases the cow and the cow chases the bear then it chases the tiger. If something chases the tiger then it is nice. If something visits the tiger and it does not chase the tiger then it visits the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle chases the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-160_Q2", "context": "Anne is rough. Fiona is nice. Fiona is not rough. Gary is blue. Gary is not white. Harry is round. Harry is white. All smart, white people are blue. Rough, round people are blue. If someone is nice and rough then they are blue. If someone is big then they are round. If Anne is nice and Anne is round then Anne is smart. All rough people are nice. If someone is nice then they are big. All smart, big people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-241_Q11", "context": "Bob is furry. Bob is green. Bob is smart. Dave is green. Dave is nice. Dave is not round. Dave is smart. Fiona is round. Gary is blue. Gary is green. Gary is smart. Gary is young. All round things are nice. If Fiona is not round then Fiona is not furry. All furry, nice things are young. If something is furry and not nice then it is not smart. All nice things are smart. Blue, round things are not furry. All green things are furry. If something is round and smart then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1058_Q4", "context": "Bob is big. Charlie is green. Charlie is red. Erin is big. Erin is green. Erin is rough. Erin is white. Fiona is green. Fiona is red. Fiona is smart. Fiona is white. Green, nice people are white. If someone is red then they are nice. All green people are white. All red, nice people are green. If someone is smart then they are red. Big people are nice. If Erin is smart then Erin is big. If someone is big and green then they are red. Nice people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1256_Q9", "context": "Bob is big. Bob is furry. Bob is quiet. Bob is rough. Bob is smart. Charlie is big. Charlie is furry. Dave is furry. Dave is nice. Erin is big. Erin is blue. Erin is furry. Erin is nice. Erin is quiet. Erin is rough. Erin is smart. If something is smart and nice then it is blue. All nice things are smart. If something is big then it is quiet. If Erin is blue then Erin is smart. All quiet things are rough. If something is big and nice then it is smart. All big, nice things are smart. All smart things are blue. All nice, blue things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-178_Q7", "context": "The bald eagle chases the cow. The bear chases the bald eagle. The bear chases the dog. The bear is green. The bear is rough. The bear likes the bald eagle. The bear likes the cow. The bear needs the cow. The cow chases the bald eagle. The cow chases the dog. The cow is nice. The cow likes the bear. The cow needs the bald eagle. The cow needs the dog. The dog chases the bald eagle. The dog likes the bear. If something is green and it likes the dog then the dog is red. If something is red and nice then it needs the dog. If something is green and rough then it needs the cow. If something likes the bear then the bear needs the dog. If the bear likes the bald eagle and the bear is rough then the bald eagle needs the cow. If something needs the dog then it needs the bald eagle. If something is red then it likes the bald eagle. If something is kind and rough then it needs the dog. If something needs the bald eagle and it is green then it likes the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear likes the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-898_Q14", "context": "The bald eagle chases the tiger. The bald eagle is round. The bald eagle likes the bear. The bald eagle likes the tiger. The bear likes the tiger. The bear needs the bald eagle. The cow chases the tiger. The cow is green. The cow is red. The cow does not need the bald eagle. The tiger likes the cow. If the bald eagle likes the bear then the bald eagle is young. If something is cold then it needs the tiger. If something chases the bear and the bear needs the bald eagle then it needs the cow. If something needs the bald eagle then it is cold. If something is round and it needs the bald eagle then the bald eagle does not need the cow. If something is cold and it needs the tiger then the tiger needs the bald eagle. If something needs the cow then the cow needs the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-697_Q13", "context": "Charlie is big. Charlie is nice. Charlie is rough. Charlie is round. Charlie is smart. Charlie is young. Dave is young. Erin is quiet. Harry is big. Harry is smart. Harry is young. All young things are round. If Dave is nice and Dave is quiet then Dave is big. If something is round and big then it is rough. If something is round then it is big. Nice things are smart. Quiet things are rough. If something is rough then it is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-742_Q19", "context": "The bald eagle is cold. The bald eagle does not need the squirrel. The bald eagle visits the bear. The bear is kind. The bear needs the bald eagle. The rabbit chases the bear. The rabbit does not need the bald eagle. The rabbit visits the bald eagle. The rabbit visits the bear. The rabbit visits the squirrel. The squirrel chases the bald eagle. The squirrel is green. The squirrel is not kind. The squirrel needs the rabbit. If someone visits the squirrel and they visit the bald eagle then the bald eagle is red. If someone chases the rabbit then the rabbit needs the squirrel. If someone chases the rabbit then they do not need the rabbit. If someone needs the bear and the bear does not chase the bald eagle then they do not need the rabbit. If the rabbit needs the squirrel then the squirrel is rough. If someone is rough then they do not visit the bear. If someone visits the bald eagle then they are red. If someone needs the bald eagle then they chase the bear. If someone is red then they chase the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not need the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-238_Q11", "context": "The cat chases the lion. The cat needs the lion. The cat needs the mouse. The lion chases the cat. The lion is big. The lion is red. The lion is rough. The lion likes the rabbit. The lion needs the cat. The mouse needs the lion. The rabbit is red. The rabbit likes the lion. If someone needs the lion and the lion likes the rabbit then the rabbit chases the mouse. Big people are red. If someone is rough then they are cold. If someone needs the rabbit and they are round then the rabbit likes the mouse. If someone needs the cat and they like the lion then the lion needs the mouse. If someone is red and they chase the mouse then they are rough. If someone likes the cat then they need the mouse. If someone is cold then they need the cat. If someone chases the lion and the lion is big then they chase the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion needs the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-78_Q10", "context": "The bald eagle chases the bear. The bald eagle is red. The bald eagle needs the squirrel. The bald eagle sees the bear. The bear needs the rabbit. The rabbit chases the bald eagle. The rabbit is young. The rabbit needs the bald eagle. The rabbit needs the squirrel. The rabbit sees the bear. The rabbit sees the squirrel. The squirrel is red. The squirrel needs the bald eagle. The squirrel needs the bear. If something sees the squirrel and it chases the rabbit then it needs the rabbit. If something sees the rabbit then it is blue. If the squirrel needs the rabbit and the squirrel chases the rabbit then the rabbit chases the bald eagle. If something sees the bear then it is cold. If something is blue then it chases the squirrel. If something chases the bald eagle and the bald eagle is cold then it is blue. If something chases the squirrel and it chases the bald eagle then the squirrel sees the bear. If something sees the bald eagle and the bald eagle needs the bear then the bald eagle needs the rabbit. If something sees the bear then the bear is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not see the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-807_Q10", "context": "The bald eagle does not need the tiger. The bald eagle sees the squirrel. The cow is young. The cow does not need the tiger. The squirrel is big. The squirrel is cold. The squirrel likes the bald eagle. The tiger is big. The tiger likes the squirrel. The tiger sees the bald eagle. If someone sees the squirrel then they like the bald eagle. If the bald eagle likes the tiger then the bald eagle is cold. If someone is cold and they like the squirrel then they like the cow. If someone is big and they like the cow then the cow is big. If someone is kind then they are not rough. Big people are cold. Cold, big people are kind. If someone needs the tiger and they see the cow then the tiger does not need the squirrel. If someone needs the squirrel and the squirrel is not cold then they do not need the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-470_Q8", "context": "The cat chases the lion. The cat is round. The cat sees the dog. The cat sees the lion. The cat sees the mouse. The cat visits the lion. The dog chases the mouse. The dog is cold. The dog is young. The dog visits the mouse. The lion chases the cat. The lion chases the dog. The lion sees the mouse. The lion visits the cat. The mouse chases the lion. The mouse sees the dog. If the dog sees the mouse then the mouse chases the cat. If something is round then it sees the cat. If the mouse sees the dog then the mouse visits the cat. If something visits the cat and the cat sees the mouse then it chases the cat. If the dog sees the mouse and the mouse chases the lion then the lion visits the dog. If something sees the cat then it is cold. If something chases the cat then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1139_Q5", "context": "Erin is kind. Erin is red. Erin is rough. Fiona is big. Fiona is blue. Fiona is green. Fiona is kind. Gary is green. Gary is kind. Gary is rough. Harry is big. Kind people are rough. If Erin is big then Erin is red. If Fiona is nice then Fiona is kind. All red, big people are nice. Big people are kind. If someone is blue and big then they are kind. Rough people are blue. All nice, blue people are red. If someone is blue then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-83_Q10", "context": "Anne is nice. Anne is young. Charlie is not round. Dave is kind. Dave is nice. Gary is round. Gary is not young. If someone is nice then they are round. Quiet, round people are nice. Round people are quiet. All big, quiet people are kind. Rough people are kind. Nice people are rough. Big, kind people are rough. Quiet, kind people are not big. If Dave is not quiet then Dave is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-249_Q5", "context": "The bald eagle is nice. The bald eagle is round. The bald eagle likes the dog. The bald eagle needs the tiger. The bald eagle visits the tiger. The dog likes the tiger. The dog needs the bald eagle. The dog visits the tiger. The lion is big. The lion is green. The lion is round. The lion needs the bald eagle. The lion needs the dog. The lion visits the dog. The tiger likes the dog. The tiger needs the bald eagle. If something is nice then it needs the tiger. If something needs the dog and the dog likes the lion then the dog is nice. If something is nice then it is green. If the tiger is round and the tiger needs the lion then the lion visits the bald eagle. If something visits the tiger and it is cold then it likes the bald eagle. If something is nice and it needs the dog then the dog likes the lion. If something is green then it needs the dog. If something likes the dog then it is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle needs the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-65_Q12", "context": "Anne is nice. Anne is white. Dave is not rough. Gary is nice. Gary is white. Harry is blue. Harry is white. If Anne is not white then Anne is blue. If something is white then it is rough. If Anne is blue then Anne is nice. All rough things are furry. Nice things are not green. If Harry is furry then Harry is nice. White, furry things are blue. If something is furry and not green then it is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1299_Q12", "context": "Anne is nice. Bob is big. Bob is nice. Bob is round. Charlie is nice. Charlie is red. Erin is cold. Red, big things are round. If something is cold and kind then it is big. If Anne is white and Anne is nice then Anne is cold. Big things are kind. If something is kind and red then it is white. All nice things are round. If something is round and cold then it is big. All round, red things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-578_Q4", "context": "Bob is round. Erin is red. Gary is not blue. Gary is not red. Gary is not round. Gary is not young. Harry is not blue. All big people are red. If someone is kind and blue then they are not young. Cold, red people are not young. All kind people are blue. If Harry is kind and Harry is round then Harry is not big. All red people are kind. All round people are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-121_Q1", "context": "The bald eagle chases the lion. The bald eagle does not like the lion. The cow chases the bald eagle. The cow does not chase the lion. The cow sees the bald eagle. The cow sees the dog. The cow sees the lion. The dog sees the cow. The dog does not see the lion. The lion chases the cow. The lion is green. If something sees the lion then it is young. If something is red then it chases the lion. If something chases the dog then it does not like the dog. If something chases the cow then it is not round. If something sees the lion and the lion is not round then the lion likes the dog. If something is round then it likes the cow. If something likes the lion and the lion is round then it likes the cow. If something likes the dog then the dog is big. If the dog is big then the dog is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle chases the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-727_Q3", "context": "Anne is big. Anne is cold. Anne is rough. Anne is young. Charlie is furry. Charlie is nice. Charlie is rough. Charlie is young. Fiona is big. Fiona is nice. Gary is big. Gary is young. If something is furry and young then it is cold. Green, nice things are rough. Nice things are young. Rough, furry things are nice. Furry, cold things are green. Furry, rough things are green. Cold things are furry. All young things are cold. If Gary is nice and Gary is furry then Gary is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-254_Q6", "context": "Bob is big. Bob is white. Dave is furry. Dave is rough. Dave is round. Gary is big. Gary is furry. Gary is not kind. Gary is nice. Harry is kind. Harry is white. If Harry is round then Harry is nice. All white things are rough. All round, nice things are rough. If something is nice and big then it is furry. Rough things are round. If something is nice and kind then it is big. All round things are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-26_Q24", "context": "The bear is cold. The bear visits the lion. The cow chases the lion. The cow does not see the bear. The cow visits the lion. The lion is not young. The lion sees the bear. The lion visits the mouse. The mouse sees the cow. The mouse does not visit the bear. If something is young then it chases the bear. If something sees the mouse and the mouse chases the lion then the mouse sees the lion. If the lion sees the bear and the cow does not see the lion then the bear is cold. If something chases the bear then it is cold. If something sees the bear then it chases the cow. If something visits the mouse and it chases the cow then the mouse sees the bear. All green things are not young. If something chases the cow and it sees the cow then the cow chases the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-495_Q12", "context": "Anne is green. Anne is kind. Erin is not rough. Fiona is nice. Fiona is white. Harry is kind. Harry is not nice. Red things are rough. All white, kind things are big. If something is green and not kind then it is big. Big, nice things are green. All kind things are green. Kind, big things are red. Rough, green things are red. Red, rough things are not nice. If something is kind then it is white.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-5_Q1", "context": "The bear chases the dog. The bear likes the cat. The bear likes the dog. The cat is red. The cat likes the dog. The cat sees the dog. The dog likes the bear. The dog sees the cat. The tiger is blue. The tiger is red. The tiger is young. The tiger likes the dog. If someone chases the bear then the bear likes the cat. If the bear chases the dog then the bear chases the tiger. If someone is red then they see the dog. If someone likes the dog and the dog is young then the dog is red. If someone chases the cat and the cat likes the dog then the dog is young. If the tiger chases the bear then the tiger likes the dog. If the bear chases the tiger then the tiger chases the cat. If the cat chases the tiger then the tiger sees the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-867_Q20", "context": "The bear is kind. The bear visits the cow. The cow sees the mouse. The cow visits the mouse. The mouse needs the bear. The mouse does not need the cow. The mouse sees the bear. The rabbit is not kind. The rabbit is nice. The rabbit is not rough. If something visits the rabbit then it is rough. If something needs the rabbit then the rabbit sees the cow. If something is cold then it visits the cow. If something is cold then it needs the rabbit. If something sees the cow then the cow is cold. If something sees the mouse and the mouse needs the bear then the bear needs the rabbit. If something is rough and it visits the bear then it is not nice. If something is red then it does not see the cow. If the cow needs the rabbit and the cow is cold then the cow is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-773_Q12", "context": "The bald eagle is blue. The bald eagle is green. The bald eagle is nice. The bald eagle needs the squirrel. The lion chases the tiger. The lion eats the tiger. The lion is blue. The squirrel chases the bald eagle. The squirrel is nice. The tiger is nice. If something eats the tiger and it needs the bald eagle then the bald eagle eats the tiger. If the bald eagle is nice and the bald eagle needs the tiger then the bald eagle needs the lion. If something chases the lion then it needs the lion. If something needs the tiger then it eats the tiger. If something is nice and it eats the lion then the lion eats the tiger. If the lion eats the squirrel and the squirrel is nice then the lion needs the tiger. If something is big then it needs the bald eagle. If something eats the tiger then it is big.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not need the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-716_Q6", "context": "The bald eagle likes the rabbit. The bald eagle likes the squirrel. The bald eagle needs the rabbit. The cow chases the squirrel. The cow likes the bald eagle. The cow likes the squirrel. The rabbit chases the squirrel. The rabbit needs the bald eagle. The squirrel likes the rabbit. The squirrel needs the bald eagle. The squirrel needs the rabbit. If something likes the bald eagle then the bald eagle chases the rabbit. If the squirrel is rough and the squirrel chases the cow then the squirrel is young. If something is young then it likes the cow. If something chases the cow then the cow is young. If the rabbit needs the cow and the cow is cold then the cow likes the rabbit. If something likes the squirrel and it chases the rabbit then the squirrel chases the cow. If something likes the squirrel and it likes the cow then the squirrel is cold. If something needs the rabbit and the rabbit needs the cow then the rabbit needs the bald eagle. If the squirrel chases the cow then the squirrel needs the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not chase the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-433_Q9", "context": "Anne is not furry. Anne is round. Bob is blue. Bob is cold. Fiona is cold. Fiona is kind. Harry is cold. Harry is furry. Harry is kind. Harry is red. If Bob is blue and Bob is furry then Bob is round. If something is green then it is furry. All kind, furry things are green. If something is green then it is cold. Round things are blue. If Bob is blue then Bob is furry. If something is round and blue then it is kind. If something is kind and not green then it is red. Green things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-974_Q8", "context": "Anne is big. Anne is young. Dave is big. Erin is big. Fiona is big. Fiona is nice. Fiona is white. Rough people are nice. All nice people are young. White people are furry. Big people are furry. Rough people are big. All white, young people are big. If someone is furry then they are rough. If someone is rough and not furry then they are smart. If someone is young then they are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-409_Q10", "context": "The bald eagle chases the bear. The bald eagle needs the tiger. The bald eagle sees the tiger. The bear needs the bald eagle. The cow chases the bald eagle. The cow is round. The cow sees the tiger. The tiger is big. The tiger needs the bear. The tiger sees the bear. The tiger sees the cow. If something sees the cow and it is green then the cow sees the bald eagle. All round things are green. If something needs the bald eagle and the bald eagle needs the bear then it is nice. If something is nice and green then it chases the bear. If the bald eagle needs the bear and the bear chases the bald eagle then the bear needs the bald eagle. If something chases the bear then it needs the bear. If something is nice then it is round. If something sees the bald eagle and the bald eagle needs the tiger then the tiger is big.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-610_Q17", "context": "Anne is quiet. Anne is not rough. Anne is not smart. Bob is kind. Bob is quiet. Bob is smart. Bob is white. Dave is blue. Gary is rough. Gary is smart. All smart, white things are quiet. If something is white and quiet then it is blue. If Bob is kind and Bob is quiet then Bob is smart. If something is smart then it is white. If Dave is rough then Dave is smart. If something is red then it is rough. If something is red then it is rough. If Bob is rough and Bob is smart then Bob is kind. If something is blue then it is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-873_Q5", "context": "Anne is rough. Dave is kind. Gary is blue. Gary is kind. Gary is red. Gary is not round. Harry is rough. If Harry is red then Harry is rough. If Anne is not round then Anne is not nice. Rough, furry things are not nice. Red things are kind. All red things are kind. Blue things are furry. If Dave is kind then Dave is round. If something is rough then it is blue. If something is round then it is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1408_Q5", "context": "Charlie is green. Charlie is round. Erin is furry. Erin is nice. Fiona is nice. Fiona is red. Fiona is round. Fiona is white. Gary is red. Gary is round. If Gary is green and Gary is red then Gary is furry. All furry, white things are kind. All green things are round. All white, red things are green. All kind, nice things are red. Round things are red. All furry things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-749_Q16", "context": "Anne is green. Anne is red. Anne is smart. Anne is young. Dave is kind. Fiona is not blue. Fiona is red. Fiona is not young. Harry is not green. Harry is not kind. Harry is smart. Harry is young. All blue things are not green. Blue things are round. Kind things are young. All young, kind things are blue. If something is green then it is not kind. If something is round then it is red. All smart things are red. If something is red then it is smart. If Dave is green then Dave is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-8_Q9", "context": "Anne is quiet. Bob is furry. Bob is rough. Bob is white. Dave is round. Dave is white. Erin is white. All round, quiet things are nice. Furry things are rough. All round things are furry. If Erin is quiet and Erin is round then Erin is not furry. All rough things are quiet. If Dave is quiet and Dave is big then Dave is not white. If something is white and nice then it is not big.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-313_Q12", "context": "The bear is green. The bear sees the cow. The bear visits the squirrel. The cow visits the dog. The dog chases the bear. The dog does not visit the cow. The squirrel is not nice. If the squirrel sees the cow and the squirrel is nice then the squirrel does not chase the dog. If someone is cold and they do not see the squirrel then they visit the dog. If someone sees the bear then the bear does not visit the cow. If someone is green then they chase the cow. If someone chases the squirrel and the squirrel visits the cow then the cow does not visit the squirrel. If someone chases the dog then the dog is green. If someone chases the cow then they chase the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not chase the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-707_Q11", "context": "Charlie is kind. Charlie is nice. Fiona is kind. Fiona is nice. Fiona is red. Fiona is rough. Gary is blue. Gary is green. Gary is red. Harry is blue. Harry is green. Harry is nice. If something is rough and nice then it is blue. If Charlie is green then Charlie is smart. If something is nice then it is green. All smart things are red. All blue, green things are kind. All green, kind things are nice. If Gary is red then Gary is smart. If something is red and smart then it is rough. All kind, rough things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-390_Q12", "context": "Bob is red. Bob is rough. Charlie is quiet. Charlie is not rough. Dave is rough. Gary is green. Gary is round. Quiet, red things are furry. If something is furry and quiet then it is round. If something is white and not rough then it is round. All red things are quiet. Rough things are quiet. If Dave is green then Dave is not white. Quiet, rough things are red. If something is quiet then it is red. All round things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-759_Q6", "context": "Anne is big. Anne is blue. Anne is not nice. Anne is red. Charlie is blue. Charlie is quiet. Charlie is young. Fiona is blue. Fiona is smart. Gary is not big. Gary is nice. Gary is quiet. Gary is red. Gary is smart. Red, quiet people are young. If Fiona is blue and Fiona is young then Fiona is big. Smart people are quiet. Quiet people are red. If someone is nice and blue then they are not smart. If someone is quiet then they are smart. All big, quiet people are not nice. If Charlie is not big then Charlie is quiet. If Fiona is smart and Fiona is young then Fiona is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-319_Q18", "context": "Anne is rough. Anne is white. Charlie is green. Fiona is big. Fiona is furry. Fiona is quiet. Fiona is white. Harry is not quiet. Harry is not rough. Harry is not smart. Harry is white. If something is green then it is quiet. Rough things are big. If something is smart and furry then it is big. All big, furry things are green. Big, quiet things are smart. If Charlie is quiet then Charlie is smart. If something is smart and not rough then it is furry. All big things are furry. If Anne is green then Anne is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-704_Q12", "context": "The mouse chases the rabbit. The rabbit is cold. The rabbit is young. The squirrel chases the rabbit. The squirrel chases the tiger. The squirrel is round. The squirrel is young. The squirrel likes the mouse. The squirrel likes the rabbit. The squirrel likes the tiger. The squirrel needs the mouse. The squirrel needs the tiger. The tiger likes the mouse. The tiger likes the squirrel. The tiger needs the mouse. The tiger needs the rabbit. If something needs the tiger then it is nice. If something is nice then it chases the rabbit. If something chases the mouse then the mouse chases the rabbit. If something likes the squirrel and the squirrel needs the rabbit then the rabbit needs the tiger. If something is nice then it needs the rabbit. If something likes the squirrel and it chases the squirrel then it is nice. If something likes the rabbit and the rabbit likes the mouse then the rabbit needs the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not need the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-171_Q8", "context": "The cow is green. The cow sees the dog. The cow sees the squirrel. The dog likes the squirrel. The dog sees the squirrel. The rabbit is rough. The rabbit likes the dog. The rabbit sees the squirrel. The squirrel is big. The squirrel likes the cow. The squirrel likes the rabbit. If someone likes the squirrel then the squirrel is rough. If someone chases the cow and the cow is big then the cow is green. If the rabbit is green then the rabbit sees the cow. If someone chases the rabbit then they like the dog. If someone is rough then they chase the rabbit. If someone likes the squirrel and the squirrel chases the rabbit then they are rough. If someone likes the dog and they are big then the dog likes the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not like the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-139_Q10", "context": "Erin is blue. Erin is red. Fiona is big. Fiona is red. Gary is blue. Harry is cold. Harry is green. If something is green then it is blue. All cold things are blue. If something is green then it is blue. If something is green and kind then it is not quiet. If something is cold and green then it is kind. If something is red and green then it is cold. All red things are big. All quiet, kind things are not big. Big things are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-842_Q21", "context": "The cat eats the dog. The cat eats the lion. The cat is green. The cat does not visit the dog. The dog eats the squirrel. The dog visits the lion. The lion chases the squirrel. The lion visits the squirrel. The squirrel chases the cat. The squirrel does not chase the dog. The squirrel chases the lion. The squirrel eats the cat. The squirrel eats the dog. The squirrel is big. The squirrel is not young. The squirrel visits the dog. If something eats the cat then the cat visits the squirrel. If something visits the dog then it visits the lion. If something visits the cat and it eats the dog then the dog is big. If the cat is round and the cat visits the lion then the cat is cold. If something eats the cat and the cat is round then the cat is cold. If something eats the cat then the cat is big. If something eats the cat and the cat is big then the cat is round. If something is cold and it visits the squirrel then it visits the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not visit the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1063_Q16", "context": "Charlie is white. Charlie is young. Erin is green. Erin is quiet. Erin is smart. Erin is young. Fiona is green. Fiona is quiet. Harry is green. Harry is quiet. If Harry is quiet then Harry is young. All young, quiet things are red. White things are furry. Furry things are green. If something is green and red then it is smart. If something is smart then it is green. All red, smart things are white. If Harry is furry and Harry is young then Harry is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-466_Q12", "context": "Anne is round. Bob is cold. Bob is smart. Erin is cold. Erin is round. Harry is big. Harry is red. All white things are furry. If something is smart then it is big. If something is big and round then it is white. Furry, red things are round. If Harry is round then Harry is cold. If something is red then it is smart. All round things are big. If something is white and furry then it is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-923_Q17", "context": "Bob is green. Bob is nice. Charlie is green. Charlie is nice. Charlie is red. Charlie is round. Charlie is not white. Dave is green. Dave is nice. Dave is red. Fiona is not nice. Fiona is white. All quiet, white things are nice. If something is white then it is not quiet. If something is white and not quiet then it is round. If something is young then it is round. All round, red things are not young. If something is round then it is green. If something is red then it is green. All round things are green. Green things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-320_Q7", "context": "Anne is white. Bob is furry. Bob is nice. Bob is white. Fiona is furry. Fiona is kind. Fiona is nice. Harry is furry. Harry is nice. Harry is white. If someone is big then they are kind. If Anne is furry and Anne is big then Anne is nice. All nice, big people are blue. All blue people are cold. All kind, white people are cold. If Harry is white then Harry is big. If Anne is cold then Anne is big. If someone is white then they are big. If someone is kind then they are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1172_Q7", "context": "Bob is smart. Bob is young. Charlie is green. Charlie is smart. Charlie is white. Charlie is young. Fiona is blue. Fiona is green. Fiona is nice. Fiona is rough. Fiona is smart. Fiona is white. Fiona is young. Harry is blue. Harry is green. Harry is young. If someone is smart and white then they are nice. If Bob is smart then Bob is rough. Rough, white people are young. All rough, smart people are green. If someone is blue then they are green. If someone is nice then they are blue. All green people are white. If someone is smart and nice then they are white. White, young people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-11_Q22", "context": "Anne is smart. Bob is red. Charlie is big. Charlie is cold. Charlie is young. Gary is furry. Gary is young. Red things are kind. Kind things are young. If something is red and not smart then it is young. If Gary is big then Gary is cold. Smart things are red. Kind, smart things are red. Young, smart things are not big. If Anne is not big then Anne is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-490_Q9", "context": "The bear chases the mouse. The bear is kind. The bear is rough. The bear is round. The bear sees the tiger. The mouse chases the bear. The mouse is kind. The mouse likes the bear. The mouse sees the rabbit. The mouse sees the tiger. The rabbit sees the tiger. The tiger chases the bear. If something sees the mouse and it chases the bear then the mouse is rough. If something likes the bear then it sees the mouse. If something chases the mouse and the mouse chases the rabbit then the rabbit sees the tiger. If something chases the tiger and the tiger is rough then the tiger likes the mouse. If something chases the bear and the bear likes the rabbit then the rabbit chases the mouse. If something sees the mouse then it likes the rabbit. If the rabbit is cold then the rabbit chases the tiger. If something likes the rabbit then the rabbit likes the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit sees the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-624_Q11", "context": "The bald eagle eats the cat. The bald eagle eats the mouse. The cat chases the bald eagle. The cat eats the bald eagle. The cat eats the rabbit. The cat is big. The cat is nice. The cat is rough. The mouse is blue. The mouse is rough. The rabbit eats the bald eagle. The rabbit is big. The rabbit is not nice. The rabbit visits the bald eagle. The rabbit does not visit the cat. The rabbit visits the mouse. If someone visits the bald eagle and the bald eagle visits the cat then they do not visit the rabbit. If someone chases the bald eagle and they chase the rabbit then the rabbit chases the bald eagle. If someone visits the mouse and they are rough then the mouse chases the cat. If someone visits the rabbit then the rabbit does not chase the cat. If someone chases the mouse then the mouse visits the rabbit. If someone chases the cat then the cat chases the mouse. If someone is big and they eat the bald eagle then they visit the mouse. If someone chases the rabbit and they eat the cat then the cat visits the rabbit. If someone is blue and they eat the rabbit then the rabbit visits the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not chase the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-279_Q19", "context": "The cat chases the rabbit. The cat is blue. The cat is green. The cat is kind. The cat is not young. The cat does not need the dog. The cat does not need the rabbit. The dog is kind. The dog sees the cat. The dog sees the rabbit. The mouse is kind. The mouse is young. The mouse needs the dog. The rabbit is green. The rabbit sees the dog. The rabbit sees the mouse. If something needs the cat and it needs the dog then it sees the rabbit. All kind, nice things are green. If something sees the rabbit then it chases the mouse. If something chases the mouse then it needs the rabbit. If something needs the rabbit and it needs the cat then the cat does not chase the dog. If something is young then it needs the cat. If something needs the cat then the cat does not need the rabbit. If the rabbit chases the dog and the dog needs the rabbit then the rabbit needs the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1183_Q11", "context": "Anne is furry. Anne is kind. Anne is nice. Anne is rough. Erin is furry. Erin is kind. Erin is quiet. Erin is rough. Erin is smart. Fiona is kind. Fiona is rough. Fiona is round. Fiona is smart. Harry is nice. Nice people are smart. All furry, nice people are smart. Kind, rough people are furry. Quiet, kind people are round. Nice, smart people are kind. If someone is kind and quiet then they are rough. If Erin is kind and Erin is nice then Erin is quiet. All quiet, rough people are kind. Kind people are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-771_Q7", "context": "Anne is round. Charlie is kind. Charlie is round. Erin is nice. Erin is rough. Erin is round. Harry is nice. Young things are rough. All round things are young. If Harry is round and Harry is quiet then Harry is rough. Young, kind things are nice. Young, nice things are cold. If something is round and not young then it is not kind. All rough, round things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-973_Q12", "context": "The bear is green. The bear needs the cow. The bear sees the cat. The bear sees the mouse. The cat is red. The cat sees the cow. The cow is green. The cow likes the bear. The cow needs the cat. The cow sees the bear. The cow sees the mouse. The mouse is nice. The mouse likes the cat. The mouse needs the cow. If someone likes the cat and they need the cow then the cow is nice. If someone likes the mouse then the mouse is green. If someone is cold then they like the mouse. All red people are cold. If someone sees the cat then the cat needs the mouse. All green people are cold. If someone is red then they are nice. If someone likes the mouse and they see the cow then they are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not like the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-959_Q9", "context": "The cow chases the mouse. The cow chases the squirrel. The mouse chases the squirrel. The squirrel is not young. The squirrel sees the tiger. The tiger does not chase the mouse. The tiger visits the mouse. If someone sees the tiger then they are red. If someone visits the cow and the cow visits the tiger then the tiger is young. If the squirrel is red then the squirrel chases the cow. If someone visits the mouse then the mouse is blue. If someone is red and they chase the cow then the cow sees the tiger. If someone is red and they chase the mouse then they do not chase the tiger. If someone chases the tiger then they chase the cow. If the cow is young then the cow chases the squirrel. If the mouse is blue and the mouse visits the squirrel then the squirrel is young.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1329_Q1", "context": "Charlie is kind. Charlie is quiet. Charlie is rough. Charlie is young. Dave is cold. Dave is smart. Dave is young. Fiona is quiet. Gary is big. Gary is quiet. Gary is rough. Gary is young. All smart people are big. If someone is rough then they are cold. All quiet people are smart. All kind people are young. Cold people are kind. All smart people are big. Quiet people are young. If someone is big and smart then they are rough. Cold people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-862_Q18", "context": "Bob is green. Bob is young. Fiona is kind. Gary is green. Gary is kind. Harry is red. Harry is smart. All green things are kind. All kind things are young. All smart things are quiet. If something is quiet and smart then it is green. Quiet things are smart. If Bob is blue and Bob is kind then Bob is smart. If Harry is kind and Harry is blue then Harry is smart. All young, kind things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-786_Q23", "context": "The bear chases the rabbit. The bear chases the squirrel. The bear is big. The bear is kind. The bear likes the cat. The bear needs the squirrel. The cat chases the bear. The cat is round. The cat likes the rabbit. The rabbit is nice. The rabbit likes the cat. The rabbit needs the cat. The squirrel chases the rabbit. The squirrel is kind. The squirrel likes the bear. The squirrel needs the cat. If someone likes the bear then they like the rabbit. If someone is big then they like the bear. If someone likes the squirrel and the squirrel is round then they like the rabbit. If someone likes the rabbit and they are kind then they are round. If the bear is nice then the bear chases the squirrel. If someone needs the squirrel and they chase the rabbit then they are round. If someone likes the rabbit and they like the squirrel then they chase the bear. If the bear likes the rabbit then the rabbit is big.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-889_Q23", "context": "The bald eagle is round. The cat eats the bald eagle. The cat is nice. The cat likes the bald eagle. The cat likes the mouse. The cat likes the tiger. The mouse is young. The mouse likes the bald eagle. The mouse needs the bald eagle. The tiger eats the mouse. The tiger needs the cat. If something likes the bald eagle and it is kind then the bald eagle is big. If the cat likes the bald eagle then the cat eats the mouse. If something eats the tiger and the tiger needs the cat then it is kind. If something is big then it needs the cat. If the cat needs the tiger and the tiger needs the mouse then the tiger is big. If something eats the mouse then it eats the tiger. All young things are nice. If something needs the tiger then it is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not like the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-589_Q18", "context": "The bear chases the tiger. The bear eats the lion. The bear eats the squirrel. The bear visits the tiger. The lion chases the bear. The squirrel chases the tiger. The squirrel eats the lion. The squirrel is nice. The tiger chases the bear. The tiger does not chase the squirrel. The tiger does not eat the squirrel. If the lion chases the squirrel and the squirrel visits the bear then the squirrel chases the bear. If the squirrel chases the tiger then the squirrel visits the bear. If something is young and it visits the lion then the lion chases the squirrel. If something eats the squirrel then the squirrel eats the bear. If something eats the bear then the bear visits the lion. If something eats the bear and it is red then the bear is young. If something chases the lion and the lion does not eat the squirrel then the lion visits the squirrel. If something eats the bear and the bear eats the squirrel then the squirrel is red.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-12_Q2", "context": "Anne is furry. Anne is young. Bob is furry. Bob is green. Bob is red. Bob is smart. Gary is furry. Gary is green. Gary is nice. Gary is rough. Gary is smart. Harry is furry. If something is furry and green then it is red. If something is red and furry then it is rough. If Bob is smart then Bob is green. Furry, green things are red. Furry things are green. Nice things are smart. If something is rough then it is nice. If Bob is rough then Bob is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-828_Q8", "context": "Anne is red. Anne is white. Bob is quiet. Bob is rough. Bob is white. Bob is young. Fiona is young. Gary is quiet. Gary is rough. Gary is young. All smart people are nice. All white, quiet people are nice. If Fiona is nice and Fiona is young then Fiona is red. Young people are white. All nice, white people are red. All nice, white people are rough. If someone is white then they are rough. Red people are smart. Rough people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-73_Q20", "context": "The bald eagle chases the tiger. The bald eagle is green. The bald eagle is nice. The bald eagle is red. The bald eagle is young. The bald eagle likes the dog. The bald eagle does not like the tiger. The bald eagle sees the dog. The cow chases the dog. The cow is nice. The dog is blue. The dog is not young. The dog sees the tiger. The tiger is green. If something chases the tiger then the tiger sees the bald eagle. If something likes the cow then the cow is young. If something is young then it chases the bald eagle. If something chases the bald eagle then it likes the cow. If something chases the dog and it is not red then it sees the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog likes the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-670_Q20", "context": "The bald eagle eats the dog. The bald eagle is not green. The bald eagle does not need the dog. The bald eagle needs the rabbit. The bald eagle does not visit the dog. The dog is green. The dog needs the bald eagle. The rabbit eats the squirrel. The rabbit is not young. The rabbit needs the dog. The squirrel is kind. If someone needs the squirrel then the squirrel needs the bald eagle. If someone eats the rabbit then they are young. If the dog is green and the dog needs the rabbit then the dog visits the rabbit. Nice people are not green. If the dog is green then the dog eats the bald eagle. If the dog is not young then the dog eats the bald eagle. If someone is green and they eat the dog then the dog needs the bald eagle. If someone eats the bald eagle then they need the rabbit. If someone visits the rabbit then the rabbit is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog eats the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-902_Q12", "context": "Bob is kind. Charlie is kind. Charlie is nice. Charlie is smart. Gary is big. Gary is smart. Harry is kind. Kind people are round. If Charlie is not big then Charlie is not nice. If Charlie is big and Charlie is red then Charlie is round. Nice, big people are blue. If someone is smart then they are nice. If someone is blue and nice then they are kind. All round people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-841_Q8", "context": "The bald eagle chases the tiger. The bald eagle eats the squirrel. The bald eagle is rough. The bear eats the tiger. The squirrel eats the bald eagle. The squirrel is rough. The squirrel likes the tiger. The tiger chases the bald eagle. The tiger chases the bear. The tiger is cold. The tiger likes the bear. The tiger likes the squirrel. If something chases the tiger then it is nice. If something is kind then it likes the squirrel. If something is rough and it chases the squirrel then it is kind. If something is nice then it chases the bald eagle. If something chases the bald eagle then it chases the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not chase the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-970_Q3", "context": "The bald eagle is young. The bear chases the lion. The bear visits the bald eagle. The lion is kind. The mouse does not chase the bear. The mouse chases the lion. The mouse needs the bald eagle. The mouse needs the lion. The mouse does not visit the bear. The mouse does not visit the lion. Kind things are cold. If something needs the lion and it is young then it visits the bear. All young, green things are kind. If something chases the lion and the lion needs the mouse then it is kind. If something is cold then it needs the mouse. If something chases the mouse and the mouse visits the bear then it does not need the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-340_Q20", "context": "Bob is rough. Bob is not smart. Charlie is quiet. Charlie is red. Charlie is rough. Fiona is rough. Harry is smart. If Harry is furry then Harry is kind. Kind things are red. If Harry is furry and Harry is red then Harry is not white. If Bob is smart then Bob is quiet. If Bob is smart then Bob is not kind. If something is rough then it is furry. All smart things are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1207_Q12", "context": "Anne is cold. Anne is nice. Anne is smart. Anne is young. Bob is young. Dave is kind. Dave is nice. Dave is young. Erin is nice. Erin is smart. If something is big then it is kind. If something is smart then it is big. If something is smart and kind then it is nice. If something is big then it is cold. Young things are big. All kind things are smart. If something is furry and young then it is smart. Nice things are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-293_Q17", "context": "The bald eagle chases the cat. The bald eagle is cold. The bald eagle needs the cat. The cat chases the lion. The cat eats the squirrel. The lion chases the squirrel. The lion eats the bald eagle. The lion eats the cat. The lion is blue. The squirrel chases the cat. The squirrel eats the bald eagle. The squirrel is blue. The squirrel needs the bald eagle. The squirrel needs the cat. If someone eats the squirrel then they are nice. If someone needs the bald eagle then they eat the squirrel. If someone is nice and they need the bald eagle then they are kind. If someone is kind then they chase the bald eagle. If someone eats the bald eagle and the bald eagle is green then the bald eagle needs the cat. If someone eats the squirrel then the squirrel is cold. If someone is blue then they are green. If someone chases the bald eagle then the bald eagle needs the squirrel. If the bald eagle is green and the bald eagle chases the lion then the bald eagle needs the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-51_Q3", "context": "Bob is quiet. Charlie is quiet. Charlie is young. Erin is cold. Erin is rough. Harry is quiet. Harry is white. All white, quiet things are kind. All rough, cold things are white. All red things are rough. All cold, young things are red. If something is quiet then it is cold. All kind things are cold. Young things are cold. White, rough things are young. If something is rough then it is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-990_Q11", "context": "Bob is cold. Bob is young. Charlie is cold. Fiona is furry. Harry is cold. Harry is green. Harry is rough. Blue, furry things are not green. All furry things are green. All cold things are red. If Charlie is not green then Charlie is young. All red, furry things are not young. If something is green then it is rough. Cold, young things are not rough. All blue, red things are cold. All rough, green things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-941_Q4", "context": "Bob is cold. Bob is young. Charlie is white. Dave is big. Dave is kind. Dave is quiet. Dave is young. Erin is big. Erin is blue. Erin is quiet. Erin is young. All cold, big people are kind. All kind people are big. Young people are big. Quiet, blue people are cold. White, kind people are young. All blue, big people are white. All quiet people are blue. Cold, kind people are quiet. If Dave is quiet then Dave is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-921_Q9", "context": "Dave is green. Erin is blue. Erin is round. Gary is green. Gary is kind. Gary is nice. Gary is rough. Gary is round. Gary is smart. Harry is kind. Harry is round. Harry is smart. All rough, blue things are round. If Dave is kind then Dave is rough. If Dave is nice then Dave is rough. If Erin is smart and Erin is blue then Erin is kind. Rough things are blue. All green things are kind. Green, smart things are nice. All kind, round things are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-569_Q16", "context": "The cat chases the mouse. The cat needs the mouse. The cat visits the dog. The dog chases the cat. The dog is green. The dog needs the squirrel. The mouse chases the squirrel. The mouse is green. The mouse is rough. The mouse visits the dog. The mouse visits the squirrel. The squirrel is green. The squirrel is rough. The squirrel needs the mouse. If the mouse needs the dog and the dog chases the squirrel then the dog is cold. If something is young and it visits the squirrel then it needs the cat. If something visits the dog then it chases the squirrel. If something needs the squirrel then the squirrel is young. If something is green and cold then it visits the mouse. If something is young and it needs the cat then the cat needs the dog. If something is rough then it visits the squirrel. If something needs the dog then the dog is rough. If the squirrel chases the cat then the squirrel needs the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse needs the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-801_Q12", "context": "The bear chases the lion. The bear is rough. The bear likes the tiger. The lion is kind. The lion is rough. The lion likes the bear. The mouse likes the tiger. The tiger chases the bear. The tiger chases the lion. The tiger is big. The tiger is kind. The tiger is young. The tiger likes the bear. The tiger likes the lion. The tiger sees the bear. The tiger sees the mouse. If someone sees the bear and they see the tiger then they chase the tiger. If someone sees the mouse and the mouse sees the tiger then they chase the lion. If someone chases the mouse and they see the lion then the lion is red. If someone likes the bear then they chase the mouse. If someone sees the bear and the bear chases the lion then the bear is big. If someone chases the tiger then the tiger sees the lion. If someone chases the mouse then they see the tiger. If someone likes the mouse then they chase the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-56_Q9", "context": "Bob is big. Bob is kind. Bob is nice. Bob is round. Bob is young. Dave is big. Dave is round. Erin is big. Erin is kind. Erin is red. Harry is big. If someone is red then they are kind. All young, nice people are blue. Kind, red people are nice. If Erin is young then Erin is big. If someone is blue then they are red. If Dave is round and Dave is nice then Dave is young. If someone is big and round then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-908_Q6", "context": "Anne is blue. Anne is nice. Anne is quiet. Anne is smart. Anne is young. Bob is quiet. Bob is smart. Dave is blue. Dave is nice. Dave is quiet. Gary is nice. Gary is red. Blue, round things are smart. Smart, red things are round. If Bob is blue then Bob is round. If something is nice then it is quiet. If Gary is nice and Gary is quiet then Gary is smart. All blue things are young. If Gary is smart and Gary is round then Gary is blue. Smart things are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-449_Q8", "context": "Charlie is round. Dave is smart. Gary is big. Gary is green. Gary is quiet. Gary is round. Gary is smart. Gary is young. Harry is quiet. Harry is round. If something is smart then it is big. All furry, round things are green. Big things are round. If something is furry then it is smart. All green things are young. All quiet things are round. Smart, round things are furry. All young, round things are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-862_Q9", "context": "Bob is blue. Bob is cold. Bob is quiet. Bob is round. Bob is white. Bob is young. Fiona is quiet. Gary is round. Harry is furry. Harry is quiet. Harry is white. All round, furry things are young. If Bob is young and Bob is cold then Bob is white. All young things are round. Cold things are white. If something is white then it is young. If something is blue then it is cold. If something is quiet then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-587_Q11", "context": "Bob is nice. Dave is big. Dave is kind. Dave is nice. Erin is big. Fiona is big. Fiona is blue. Blue, kind things are red. All young, blue things are kind. If Bob is big and Bob is kind then Bob is young. Nice things are blue. All big, blue things are young. If something is young then it is quiet. Kind things are nice. If something is big then it is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-831_Q6", "context": "The cow is red. The cow needs the lion. The cow sees the rabbit. The dog is kind. The dog likes the lion. The dog needs the cow. The dog needs the rabbit. The dog sees the rabbit. The lion is blue. The lion is kind. The lion likes the rabbit. The lion needs the dog. The lion needs the rabbit. The rabbit is kind. The rabbit needs the lion. The rabbit sees the cow. If something likes the cow then the cow likes the lion. If something likes the rabbit and it needs the rabbit then it is green. If something is blue then it sees the rabbit. If something sees the cow then the cow likes the dog. If something sees the dog then it is blue. If something likes the dog and it needs the rabbit then the rabbit sees the dog. If something likes the lion and it likes the dog then the lion sees the dog. If something likes the dog then it needs the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not need the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-335_Q9", "context": "The bald eagle eats the bear. The bald eagle is kind. The bald eagle is nice. The bear eats the rabbit. The rabbit does not eat the bald eagle. The rabbit eats the squirrel. The rabbit is big. The rabbit is not young. The rabbit likes the bald eagle. The squirrel eats the bear. The squirrel is young. The squirrel likes the rabbit. If someone eats the bald eagle and the bald eagle is nice then the bald eagle is big. If the bear eats the rabbit and the bear likes the bald eagle then the rabbit eats the bear. If the rabbit likes the bear then the bear chases the rabbit. Young people are kind. If someone chases the squirrel and they eat the rabbit then they are kind. If someone chases the bear then the bear chases the squirrel. If someone likes the squirrel then they like the bald eagle. If someone likes the rabbit then the rabbit chases the bear. If someone is kind and they eat the rabbit then the rabbit likes the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit likes the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1173_Q14", "context": "Bob is rough. Dave is furry. Dave is rough. Erin is cold. Erin is furry. Erin is kind. Erin is not rough. Erin is round. Erin is smart. Harry is round. If something is kind then it is round. Smart, white things are round. If something is kind then it is round. If something is rough and furry then it is cold. If Bob is white then Bob is kind. Rough things are white. All cold, round things are smart. If something is rough then it is kind. If something is round then it is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-62_Q12", "context": "The bear does not chase the cat. The cat eats the bear. The cat eats the cow. The cat is blue. The cow does not eat the cat. The cow is not blue. The cow needs the bear. The rabbit chases the cat. The rabbit chases the cow. The rabbit eats the bear. The rabbit is red. The rabbit is young. If the rabbit is young then the rabbit needs the cow. If the bear chases the rabbit and the bear is young then the bear does not eat the rabbit. If someone needs the cow and the cow needs the bear then they chase the cow. If someone needs the cow then they chase the bear. If someone needs the cat then they eat the rabbit. If someone is nice then they need the cat. If someone chases the bear and they are red then they are nice. If someone is young then they are red. If someone needs the bear and they do not chase the bear then the bear eats the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not eat the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-953_Q1", "context": "Bob is quiet. Dave is cold. Dave is green. Dave is red. Dave is white. Dave is young. Erin is cold. Erin is young. Gary is white. Gary is young. All cold people are white. All red, cold people are quiet. If someone is round and quiet then they are green. If Erin is round then Erin is red. Round people are white. If Dave is white and Dave is young then Dave is cold. If someone is white then they are round. If Dave is green then Dave is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-139_Q2", "context": "Anne is blue. Anne is furry. Anne is rough. Anne is white. Anne is young. Bob is quiet. Bob is rough. Bob is young. Erin is quiet. Gary is big. Gary is young. Furry, big things are rough. All furry things are big. All blue, quiet things are young. White things are furry. Furry, big things are blue. If something is big then it is blue. All quiet things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1026_Q14", "context": "Bob is cold. Bob is green. Bob is nice. Charlie is cold. Charlie is red. Charlie is smart. Charlie is young. Erin is cold. Erin is green. Erin is red. Erin is young. Harry is round. All smart people are young. If someone is cold and nice then they are red. All round people are smart. If Bob is red and Bob is young then Bob is smart. Red people are green. If Harry is red and Harry is green then Harry is cold. All cold people are nice. Young people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-566_Q10", "context": "Bob is kind. Bob is red. Bob is rough. Bob is round. Bob is smart. Charlie is kind. Charlie is rough. Fiona is red. Gary is kind. Gary is smart. If something is red then it is young. If something is rough and round then it is green. All round things are rough. If something is red and rough then it is green. Green things are round. Red, kind things are rough. Kind, young things are rough. All young things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-672_Q3", "context": "The bald eagle is nice. The bald eagle visits the bear. The bald eagle visits the lion. The bear chases the lion. The bear is red. The bear visits the lion. The bear visits the rabbit. The lion needs the rabbit. The rabbit is green. The rabbit is nice. The rabbit needs the lion. If someone is green then they visit the bald eagle. If someone is cold then they need the lion. If someone is red then they visit the bear. If someone is nice then they visit the bear. If someone needs the bald eagle and the bald eagle visits the lion then the bald eagle is green. If someone chases the rabbit then they are green. If the bear needs the lion then the bear is big. If someone visits the bald eagle then they need the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit visits the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1134_Q13", "context": "Anne is green. Anne is nice. Anne is rough. Anne is young. Charlie is rough. Charlie is white. Charlie is young. Fiona is white. Gary is rough. Gary is young. If Gary is red and Gary is rough then Gary is young. If Gary is furry then Gary is white. If someone is white then they are red. If someone is young and rough then they are green. Young, red people are rough. Furry people are young. Red, white people are furry. White, young people are nice. If Anne is white and Anne is furry then Anne is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-566_Q7", "context": "Bob is kind. Bob is red. Bob is rough. Bob is round. Bob is smart. Charlie is kind. Charlie is rough. Fiona is red. Gary is kind. Gary is smart. If something is red then it is young. If something is rough and round then it is green. All round things are rough. If something is red and rough then it is green. Green things are round. Red, kind things are rough. Kind, young things are rough. All young things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1130_Q4", "context": "Bob is round. Bob is smart. Erin is smart. Fiona is green. Fiona is red. Fiona is young. Gary is green. Gary is nice. Gary is smart. Gary is young. All smart, nice things are red. If something is round and red then it is green. If something is red and nice then it is round. If something is green and red then it is young. All green things are quiet. If Bob is smart and Bob is young then Bob is nice. If something is round then it is young. If Fiona is young then Fiona is quiet. If something is red and nice then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-306_Q11", "context": "Anne is not big. Anne is cold. Anne is red. Dave is green. Dave is rough. Erin is green. Erin is kind. Erin is rough. Fiona is green. Fiona is not nice. If Erin is cold then Erin is rough. If something is rough then it is nice. All green, big things are kind. If Dave is kind then Dave is cold. If something is green and not rough then it is big. All nice, rough things are big. If Dave is cold and Dave is nice then Dave is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-864_Q18", "context": "Bob is kind. Charlie is not blue. Charlie is green. Charlie is not white. Dave is big. Gary is big. Gary is round. All green, kind people are smart. If someone is big and kind then they are round. Smart, green people are big. If someone is blue and not kind then they are green. If someone is kind then they are green. If someone is round then they are not white. If Dave is white and Dave is not big then Dave is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-546_Q7", "context": "Bob is green. Bob is kind. Bob is red. Bob is rough. Bob is round. Bob is smart. Bob is young. Charlie is kind. Dave is green. Dave is kind. Dave is red. Erin is red. If something is kind then it is young. If something is smart then it is round. Rough, kind things are red. Rough, young things are red. All red, smart things are kind. Green, round things are smart. All kind, young things are rough. All rough, round things are smart. All red things are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-450_Q11", "context": "Erin is kind. Erin is nice. Fiona is green. Fiona is kind. Gary is kind. Gary is not nice. Harry is kind. If Harry is nice then Harry is blue. If someone is kind and white then they are quiet. If someone is white then they are kind. If Gary is white then Gary is quiet. If Fiona is quiet and Fiona is white then Fiona is green. All nice people are white. All kind people are white. Quiet, blue people are red. If Harry is quiet then Harry is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-314_Q12", "context": "The bald eagle does not chase the bear. The bald eagle chases the lion. The bald eagle is young. The bald eagle likes the mouse. The bear is round. The bear likes the bald eagle. The bear likes the mouse. The bear sees the bald eagle. The bear sees the mouse. The lion is big. The lion likes the bear. The mouse does not chase the bald eagle. The mouse is young. The mouse likes the lion. If something sees the lion and the lion likes the bear then it likes the bald eagle. If something likes the bald eagle then it chases the bald eagle. If something is big then it chases the bald eagle. If the mouse is big then the mouse chases the lion. If something chases the bald eagle then the bald eagle likes the lion. If something chases the bald eagle then it likes the mouse. If something chases the bald eagle then the bald eagle sees the lion. If something is young and it does not chase the lion then the lion is young. If something is young and it chases the bald eagle then it does not chase the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle chases the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-116_Q10", "context": "The cat chases the tiger. The cat is young. The cat visits the rabbit. The rabbit chases the tiger. The rabbit eats the squirrel. The rabbit visits the cat. The rabbit visits the tiger. The squirrel chases the cat. The squirrel does not chase the rabbit. The tiger chases the cat. The tiger chases the rabbit. The tiger eats the rabbit. The tiger is not young. The tiger visits the cat. Young, rough things are cold. If something visits the cat then the cat eats the rabbit. All cold things are kind. If something eats the rabbit then it is rough. If something is kind and it eats the rabbit then it is not green. If something chases the rabbit then the rabbit chases the cat. If the cat visits the tiger then the tiger is not rough. If the tiger visits the cat and the tiger eats the cat then the cat chases the rabbit. If the squirrel eats the cat and the cat chases the squirrel then the squirrel does not visit the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1332_Q15", "context": "Anne is big. Anne is cold. Anne is round. Anne is young. Bob is smart. Dave is blue. Dave is cold. Gary is cold. Gary is quiet. Gary is smart. All blue, young things are smart. All blue things are young. If something is smart then it is blue. If Bob is quiet and Bob is blue then Bob is round. If something is big then it is quiet. Smart things are round. If Dave is big then Dave is cold. All cold, round things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-349_Q22", "context": "Anne is blue. Anne is cold. Anne is nice. Dave is not cold. Dave is nice. Fiona is quiet. Harry is white. If someone is cold and not nice then they are not big. If someone is rough and quiet then they are big. If someone is nice and not white then they are big. All cold, nice people are rough. All blue people are rough. If someone is white then they are blue. Big people are cold. If someone is rough then they are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-621_Q11", "context": "The bear eats the rabbit. The bear eats the tiger. The bear needs the rabbit. The cow eats the rabbit. The cow is big. The rabbit chases the tiger. The rabbit eats the bear. The rabbit eats the cow. The rabbit needs the cow. The tiger eats the bear. The tiger is blue. If someone chases the cow then they eat the bear. If the bear chases the rabbit then the rabbit is red. If someone is red then they chase the bear. If someone chases the tiger and the tiger eats the bear then the tiger chases the bear. If someone eats the bear then they need the bear. If someone needs the bear then the bear is kind. If someone is big then they need the cow. If someone is kind then they chase the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear needs the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-798_Q1", "context": "The cow chases the rabbit. The cow chases the tiger. The cow is big. The cow is red. The cow sees the tiger. The lion chases the tiger. The lion does not see the rabbit. The lion does not see the tiger. The rabbit is not blue. The rabbit is red. The rabbit sees the lion. The tiger chases the cow. If something is big then it is blue. If something is cold then it is blue. If something is blue then it eats the tiger. If something eats the rabbit and the rabbit is big then it is red. If something eats the tiger then the tiger sees the rabbit. If the cow sees the tiger and the tiger sees the rabbit then the tiger is cold. If something is red then it chases the cow. If something is blue and it chases the lion then it chases the rabbit. If something eats the rabbit then it chases the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow chases the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-613_Q8", "context": "The bald eagle is cold. The bald eagle is kind. The bald eagle likes the cat. The cat eats the lion. The cat is big. The cat is round. The cat likes the bald eagle. The lion eats the bald eagle. The lion likes the cat. The tiger is cold. The tiger needs the lion. If something is kind then it needs the cat. If something needs the cat then it is big. If something eats the bald eagle and it is kind then it likes the lion. If something needs the cat then the cat needs the bald eagle. If something is big then it needs the bald eagle. If something needs the cat and it needs the bald eagle then it likes the lion. If something likes the lion and it is big then the lion needs the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not need the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-155_Q4", "context": "The bear eats the lion. The bear sees the dog. The dog sees the lion. The lion eats the dog. The lion sees the bear. The mouse does not like the dog. The mouse sees the dog. If something sees the mouse and the mouse likes the lion then the mouse eats the dog. If something sees the dog then the dog likes the mouse. If something likes the bear then it is big. If something eats the lion then the lion is round. If something likes the lion then it sees the mouse. If something eats the dog then the dog is round. If something sees the mouse then the mouse likes the bear. If something is rough then it likes the lion. If the lion sees the bear then the lion is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not like the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-479_Q15", "context": "Dave is green. Erin is red. Gary is blue. Gary is cold. Gary is green. Gary is nice. Gary is red. Gary is rough. Harry is cold. Harry is nice. All nice things are rough. All white things are rough. All cold, blue things are white. If something is cold then it is nice. If Gary is nice then Gary is green. White things are blue. If something is red then it is cold. If something is rough then it is blue. If something is white and cold then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-782_Q11", "context": "Bob is nice. Bob is white. Dave is smart. Dave is young. Fiona is blue. Gary is blue. Gary is nice. If something is young then it is cold. All young, smart things are white. Blue things are young. Quiet things are nice. If something is smart and quiet then it is young. If something is smart and cold then it is blue. If something is nice then it is smart. All young, blue things are quiet. Young things are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-974_Q9", "context": "The bear likes the lion. The dog is kind. The lion is green. The lion is kind. The lion likes the rabbit. The lion needs the bear. The lion sees the rabbit. The rabbit is blue. The rabbit needs the lion. The rabbit sees the bear. The rabbit does not see the dog. If someone is blue and green then they see the bear. If the rabbit is red and the rabbit does not like the dog then the rabbit is green. If someone sees the rabbit then they do not need the dog. If someone sees the bear then they need the rabbit. If someone likes the lion then the lion sees the dog. If someone needs the rabbit then they see the lion. If someone sees the rabbit and the rabbit sees the lion then the lion sees the bear. If someone sees the rabbit then the rabbit needs the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion needs the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-71_Q21", "context": "The bald eagle is red. The bald eagle is rough. The bald eagle sees the bear. The bald eagle sees the cow. The bear is blue. The bear is nice. The cat does not chase the bear. The cat is kind. The cat visits the bald eagle. The cow chases the bear. The cow sees the bald eagle. The cow visits the bald eagle. If someone is rough and kind then they chase the bald eagle. If someone is red then they are blue. If someone visits the cow then they do not see the cat. If the bear chases the cow then the bear sees the bald eagle. If someone is blue then they are kind. If someone chases the bald eagle and they see the cow then the bald eagle visits the cow. If someone sees the bear and they are not rough then the bear does not chase the cow. If the cow is red and the cow chases the bear then the bear is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not see the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-595_Q7", "context": "The bald eagle is kind. The bald eagle likes the tiger. The bald eagle needs the dog. The dog chases the bald eagle. The dog is blue. The dog needs the tiger. The lion chases the tiger. The lion needs the bald eagle. The tiger chases the bald eagle. The tiger chases the dog. The tiger likes the dog. If someone is kind and they like the lion then the lion is kind. If someone is nice then they chase the tiger. If someone chases the bald eagle and they are nice then the bald eagle is cold. If someone likes the dog then the dog is not nice. If someone likes the lion then they like the bald eagle. If someone is kind then they like the lion. If someone likes the bald eagle then they are not green.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion likes the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-631_Q1", "context": "Anne is rough. Charlie is furry. Charlie is nice. Charlie is red. Charlie is rough. Dave is furry. Dave is green. Gary is blue. Gary is furry. Gary is nice. Gary is quiet. All green, red people are rough. If someone is rough then they are quiet. All blue people are red. If someone is rough and quiet then they are nice. All furry people are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-131_Q14", "context": "The bear is green. The bear is not young. The cat does not eat the tiger. The cat is green. The cat is young. The cat needs the rabbit. The rabbit eats the bear. The rabbit eats the cat. The tiger eats the cat. The tiger eats the rabbit. The tiger needs the cat. If the rabbit needs the cat and the cat does not eat the tiger then the rabbit sees the cat. If someone sees the cat then the cat eats the bear. If someone eats the bear and they are young then they eat the cat. If someone is young and they eat the bear then the bear needs the rabbit. If the tiger is rough then the tiger eats the cat. If someone eats the cat then they need the cat. If someone sees the bear then the bear does not see the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear eats the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-128_Q1", "context": "The bald eagle sees the dog. The dog chases the tiger. The dog eats the rabbit. The dog sees the bald eagle. The rabbit sees the dog. The tiger chases the bald eagle. The tiger eats the rabbit. The tiger is blue. The tiger is cold. The tiger sees the dog. If something is blue and it sees the bald eagle then the bald eagle sees the rabbit. If something is cold then it eats the bald eagle. If something sees the bald eagle then it chases the dog. If something eats the bald eagle then it is big. If something sees the bald eagle then the bald eagle sees the dog. If something chases the tiger and the tiger is big then it is cold. If something chases the tiger then it is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog sees the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-320_Q16", "context": "The cow sees the rabbit. The mouse is not young. The mouse does not like the cow. The mouse sees the cow. The rabbit does not like the squirrel. The rabbit does not see the squirrel. The squirrel sees the mouse. If someone sees the squirrel then the squirrel likes the mouse. If someone is round and they need the cow then the cow is not red. If someone is nice then they like the mouse. If someone sees the cow then the cow does not like the rabbit. If someone sees the rabbit then they are nice. If someone likes the mouse then the mouse sees the rabbit. If someone is kind then they like the rabbit. If the rabbit sees the squirrel then the squirrel sees the cow. If someone likes the cow and they are not kind then the cow needs the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel sees the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1032_Q9", "context": "Bob is young. Charlie is blue. Charlie is not smart. Erin is blue. Erin is green. Harry is blue. Harry is cold. If someone is cold and quiet then they are smart. If someone is blue and young then they are cold. If Erin is green then Erin is quiet. All quiet, blue people are young. If Harry is young then Harry is green. All young, smart people are quiet. Smart people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-722_Q14", "context": "Bob is big. Bob is young. Charlie is furry. Charlie is nice. Erin is green. Fiona is white. Fiona is young. If something is white then it is green. If something is big then it is white. If Fiona is kind and Fiona is green then Fiona is furry. Furry things are big. White, green things are kind. If something is young and not kind then it is nice. All kind, big things are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-10_Q17", "context": "The lion is green. The lion sees the squirrel. The mouse is not red. The rabbit does not visit the mouse. The squirrel chases the lion. The squirrel chases the rabbit. The squirrel is kind. If something is nice then it does not see the squirrel. If something chases the mouse then the mouse is nice. If something sees the mouse then it chases the mouse. If something is kind then it sees the mouse. If something is nice then it sees the mouse. If something chases the mouse and it is red then the mouse sees the lion. If something visits the rabbit then it sees the rabbit. If the rabbit is blue and the rabbit chases the mouse then the mouse chases the squirrel. If something visits the lion and it sees the lion then the lion is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not chase the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-456_Q17", "context": "Anne is big. Anne is cold. Anne is nice. Charlie is big. Charlie is cold. Charlie is nice. Charlie is red. Charlie is round. Charlie is smart. Charlie is white. Dave is round. Fiona is big. Smart people are big. If Dave is big then Dave is nice. Round people are smart. If someone is red and nice then they are white. All smart, red people are round. All round, white people are red. If someone is nice then they are red. If Charlie is cold then Charlie is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-351_Q17", "context": "The cat chases the lion. The cat chases the mouse. The cat visits the tiger. The lion eats the mouse. The lion visits the cat. The mouse chases the cat. The mouse chases the tiger. The mouse is green. The mouse visits the lion. The tiger chases the mouse. The tiger eats the lion. The tiger eats the mouse. The tiger is big. The tiger visits the cat. The tiger visits the lion. The tiger visits the mouse. If someone visits the mouse then they chase the tiger. If someone visits the lion and they visit the mouse then the lion is kind. If someone eats the cat then the cat is nice. If someone visits the tiger then they eat the tiger. If the tiger visits the lion then the lion visits the tiger. Cold people are green. If someone eats the tiger then they visit the mouse. If someone eats the mouse and they visit the tiger then the mouse eats the lion. If someone eats the mouse and they chase the tiger then they chase the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-14_Q3", "context": "The dog chases the mouse. The dog eats the mouse. The dog is cold. The dog is red. The dog likes the mouse. The dog likes the rabbit. The lion chases the dog. The lion likes the dog. The mouse chases the dog. The mouse likes the dog. The rabbit chases the dog. The rabbit chases the mouse. The rabbit eats the mouse. The rabbit is red. If something eats the dog then it is green. All red things are kind. If something likes the lion then it chases the mouse. If something eats the mouse and it is green then the mouse is kind. If something chases the mouse then it eats the rabbit. If something is kind then it is green. If something is green then it likes the mouse. If something is kind then it chases the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit eats the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-509_Q7", "context": "The bear is blue. The bear likes the tiger. The cat chases the bear. The cat chases the squirrel. The cat is not blue. The cat is cold. The cat likes the tiger. The cat sees the bear. The squirrel is blue. The squirrel does not like the tiger. The squirrel sees the tiger. The tiger chases the bear. The tiger chases the squirrel. The tiger likes the cat. If something chases the tiger then it sees the squirrel. If something sees the cat and it is big then it chases the tiger. If something is cold then it chases the tiger. If something sees the tiger and it sees the squirrel then it does not see the cat. If something likes the tiger then it likes the bear. If something likes the bear and it is blue then it is cold. If the cat is red and the cat sees the tiger then the cat likes the bear. If something sees the squirrel then the squirrel chases the tiger. If something sees the cat then it does not like the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear chases the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-90_Q8", "context": "Charlie is big. Charlie is blue. Charlie is red. Fiona is furry. Gary is big. Gary is furry. Gary is red. Gary is smart. Harry is cold. Harry is round. If Harry is blue and Harry is big then Harry is furry. Blue, smart things are furry. All red things are furry. Cold, blue things are furry. Furry, round things are blue. If something is blue and red then it is smart. Cold things are big. If something is big then it is red. If something is smart and furry then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-544_Q7", "context": "Anne is blue. Anne is smart. Bob is furry. Bob is white. Charlie is furry. Charlie is rough. Erin is furry. Red things are nice. Blue things are furry. If something is nice then it is furry. If something is furry then it is smart. All blue things are red. Furry, smart things are white. If something is furry and rough then it is white. If something is white then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-294_Q5", "context": "Anne is green. Bob is cold. Bob is nice. Charlie is cold. Charlie is kind. Gary is cold. Gary is young. All young people are nice. All big, cold people are kind. Cold, nice people are big. Nice, young people are cold. Kind people are green. If someone is big and not nice then they are not round. Cold, green people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1112_Q15", "context": "Dave is nice. Dave is rough. Erin is blue. Erin is kind. Erin is nice. Fiona is furry. Gary is green. If Erin is blue and Erin is not quiet then Erin is kind. All furry, nice things are rough. Green, nice things are furry. If Dave is furry and Dave is blue then Dave is kind. Green things are nice. All quiet, nice things are not blue. If something is green and rough then it is blue. If something is blue and rough then it is not kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-564_Q21", "context": "The bald eagle is nice. The bald eagle likes the cow. The cat likes the bald eagle. The cow is young. The cow does not see the bald eagle. The cow sees the cat. The dog is not green. The dog likes the cat. The dog needs the bald eagle. The dog needs the cow. The dog sees the cow. If someone is rough and they need the cat then the cat needs the bald eagle. If someone likes the bald eagle then the bald eagle sees the cat. If someone is rough then they need the cat. If someone sees the cat and they do not like the dog then the cat does not like the cow. If someone needs the bald eagle then they are rough. If the cat does not like the cow then the cat is not nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not see the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-43_Q13", "context": "The bear is big. The bear likes the rabbit. The bear sees the rabbit. The lion eats the rabbit. The lion sees the bear. The rabbit eats the bear. The rabbit eats the lion. The rabbit sees the bear. The squirrel is kind. The squirrel is round. If someone eats the lion then they like the bear. If someone is red and big then they like the bear. If someone likes the bear then they see the lion. If the rabbit eats the bear and the rabbit sees the bear then the bear sees the rabbit. If the lion likes the bear then the lion is kind. If someone sees the rabbit then they like the rabbit. If the lion likes the rabbit then the lion eats the bear. If someone sees the lion and they like the bear then the lion sees the rabbit. If someone is big and they see the rabbit then they see the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-480_Q22", "context": "Anne is green. Anne is red. Anne is smart. Erin is blue. Gary is rough. Harry is red. Harry is round. If something is rough and white then it is smart. All rough, smart things are round. Blue things are smart. Blue, smart things are green. Green, round things are white. All green things are smart. If something is white and round then it is smart. Red, rough things are round. Green things are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-646_Q11", "context": "The dog chases the squirrel. The rabbit sees the dog. The rabbit sees the tiger. The squirrel sees the dog. The tiger chases the dog. The tiger is young. The tiger likes the rabbit. If something chases the squirrel then it is big. If something sees the rabbit and the rabbit sees the tiger then it chases the squirrel. If something sees the squirrel then the squirrel sees the rabbit. If something likes the tiger then it sees the squirrel. If something is rough then it likes the tiger. If the dog likes the tiger then the tiger sees the dog. If something chases the rabbit then it likes the tiger. If the rabbit is round then the rabbit chases the tiger. If something likes the rabbit then it chases the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel chases the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1324_Q9", "context": "Bob is blue. Bob is kind. Charlie is young. Erin is blue. Erin is furry. Erin is green. Erin is kind. Erin is red. Erin is white. Erin is young. Gary is white. Gary is young. Young, kind people are blue. All blue, red people are furry. Green, young people are white. If someone is white then they are red. Red people are green. If someone is furry and kind then they are red. If someone is green then they are kind. If someone is green and blue then they are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1351_Q11", "context": "Anne is green. Anne is young. Bob is furry. Bob is green. Bob is round. Bob is white. Bob is young. Dave is furry. Erin is cold. Erin is furry. Erin is green. Erin is young. All young, green things are furry. If something is furry then it is big. If Dave is cold then Dave is young. Big, young things are cold. Big, white things are young. All cold things are round. White things are green. All cold things are big. All round things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-808_Q10", "context": "Anne is cold. Anne is furry. Charlie is quiet. Dave is furry. Dave is red. Dave is young. Gary is cold. Gary is furry. Gary is nice. Gary is young. Nice, young people are red. All red people are smart. All quiet, smart people are cold. All quiet people are nice. All nice people are young. All quiet people are nice. All nice people are quiet. All red, young people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-415_Q9", "context": "The cat is blue. The cat is cold. The cat is young. The cat does not like the dog. The cat sees the mouse. The dog is rough. The dog sees the cat. The mouse likes the dog. The mouse does not see the squirrel. The mouse does not visit the dog. The mouse visits the squirrel. The squirrel is big. The squirrel is rough. The squirrel does not like the dog. The squirrel visits the dog. The squirrel does not visit the mouse. If someone likes the mouse then they are young. If someone likes the mouse and they are cold then the mouse likes the squirrel. If someone visits the cat and the cat sees the mouse then the mouse does not like the cat. If someone sees the dog then they like the dog. If someone is young then they like the squirrel. If someone is blue then they see the squirrel. If someone visits the mouse then they like the mouse. If someone likes the squirrel then they visit the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse likes the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-233_Q5", "context": "Anne is nice. Anne is red. Anne is smart. Dave is blue. Dave is kind. Erin is blue. Erin is green. Erin is kind. Erin is quiet. Erin is red. Erin is smart. Harry is kind. Harry is nice. Harry is red. If something is quiet then it is green. If Dave is blue and Dave is green then Dave is smart. Red things are quiet. All blue things are nice. If Erin is red and Erin is green then Erin is nice. If Dave is nice then Dave is red. If Erin is blue and Erin is quiet then Erin is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-610_Q7", "context": "Bob is blue. Bob is quiet. Dave is smart. Gary is quiet. Gary is round. Gary is smart. Gary is white. Harry is big. Harry is blue. Harry is quiet. If Harry is quiet and Harry is round then Harry is smart. All quiet things are round. Round things are blue. If something is round and smart then it is quiet. If something is smart and white then it is nice. If something is big then it is nice. Smart things are white. All blue, smart things are round. White, nice things are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-892_Q10", "context": "The bear is big. The bear sees the lion. The cow eats the rabbit. The lion eats the bear. The rabbit eats the bear. The rabbit eats the cow. The rabbit eats the lion. If something is blue then it sees the rabbit. If something sees the cow then it is green. If something eats the cow then the cow is not blue. If the rabbit is not big then the rabbit sees the bear. If the lion sees the rabbit and the rabbit sees the bear then the rabbit likes the cow. If the bear likes the cow then the bear likes the rabbit. If something sees the rabbit then the rabbit sees the lion. If something sees the lion then it is blue. If something is young then it eats the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1080_Q6", "context": "Bob is nice. Bob is rough. Charlie is kind. Charlie is nice. Charlie is young. Dave is big. Dave is kind. Dave is nice. Dave is red. Dave is rough. Dave is young. Gary is kind. All red people are big. If someone is green then they are rough. Nice people are green. If Dave is rough and Dave is young then Dave is red. If someone is rough and green then they are red. All kind people are nice. If someone is rough and kind then they are red. Big, red people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-500_Q4", "context": "The bear needs the cow. The bear visits the rabbit. The cow eats the bear. The cow is cold. The cow needs the bear. The cow needs the dog. The cow visits the rabbit. The dog eats the rabbit. The dog needs the cow. The dog needs the rabbit. The dog visits the bear. The dog visits the cow. The rabbit is big. The rabbit needs the dog. If something visits the rabbit then it is green. If something needs the cow then it is cold. If something is round then it visits the rabbit. Cold things are round. If something needs the dog and the dog is green then the dog eats the bear. If the rabbit eats the cow then the cow does not visit the dog. If something needs the bear and it does not visit the dog then it is rough. If the cow is round and the cow is not cold then the cow needs the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-930_Q13", "context": "The bear chases the cat. The bear is rough. The cat chases the bear. The cat chases the lion. The cat is young. The cat likes the dog. The dog is cold. The dog likes the cat. The lion chases the bear. The lion likes the bear. If something likes the dog and the dog needs the bear then it does not like the lion. If the dog chases the bear and the dog likes the lion then the dog does not like the cat. If the bear likes the cat then the bear chases the dog. Rough things are red. If something likes the dog and the dog chases the lion then it does not like the cat. If something is red then it needs the dog. If something needs the dog and the dog likes the cat then the dog is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-183_Q4", "context": "Anne is quiet. Anne is red. Bob is big. Bob is red. Bob is smart. Dave is big. Dave is blue. Dave is quiet. Dave is red. Dave is rough. Dave is young. Erin is blue. Erin is quiet. Erin is rough. Erin is smart. Erin is young. All young, rough people are quiet. If someone is quiet then they are red. Blue, big people are rough. Big, red people are rough. If someone is smart then they are young. All red people are smart. If someone is young and smart then they are blue. Blue people are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1404_Q14", "context": "Charlie is cold. Charlie is smart. Dave is green. Dave is red. Erin is blue. Erin is green. Erin is red. Erin is white. Gary is cold. Gary is green. All smart things are white. If something is cold and smart then it is green. All blue, green things are cold. If something is white and cold then it is smart. If something is red then it is blue. Cold, nice things are white. Smart things are nice. Blue, cold things are nice. If Gary is smart and Gary is white then Gary is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-211_Q9", "context": "Anne is red. Bob is green. Bob is young. Fiona is green. Fiona is nice. Fiona is red. Harry is not round. If something is red then it is green. If something is round and red then it is not green. If something is nice then it is cold. Nice things are not round. All smart things are young. If Anne is cold and Anne is green then Anne is red. If Harry is round then Harry is smart. If something is red and green then it is nice. All red, cold things are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-213_Q11", "context": "The cat is rough. The cat is not young. The cat visits the squirrel. The lion chases the mouse. The lion does not visit the mouse. The mouse is kind. The mouse is rough. The squirrel is kind. The squirrel is round. The squirrel is young. If something likes the squirrel then it visits the mouse. If the squirrel is round then the squirrel is rough. If something is kind and it chases the mouse then the mouse visits the squirrel. If something is round then it likes the squirrel. If the mouse chases the squirrel then the mouse chases the lion. If something visits the mouse and it is rough then the mouse is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse visits the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-45_Q10", "context": "The bear chases the cow. The bear chases the dog. The bear does not chase the mouse. The bear is blue. The bear likes the dog. The cow chases the mouse. The cow needs the bear. The cow needs the mouse. The dog does not chase the bear. The dog chases the mouse. The dog is red. The mouse chases the bear. If someone chases the cow then the cow is kind. If someone likes the cow then they need the cow. If someone likes the cow then they need the cow. If the dog is green then the dog is kind. If someone likes the cow and they are green then they are kind. If someone is big then they like the cow. If someone needs the dog and the dog likes the cow then the dog does not like the bear. All kind people are big. If someone needs the cow then the cow chases the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not need the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1267_Q14", "context": "Bob is blue. Bob is furry. Bob is round. Bob is young. Charlie is quiet. Charlie is round. Dave is kind. Dave is round. Gary is blue. Gary is cold. If Charlie is cold then Charlie is furry. All round, blue people are kind. All young, cold people are round. If someone is round and kind then they are young. All kind, blue people are cold. If someone is furry then they are cold. If Gary is quiet then Gary is young. Blue people are furry. All furry people are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-476_Q7", "context": "The cat is rough. The cat likes the squirrel. The dog chases the squirrel. The dog is rough. The rabbit likes the squirrel. The squirrel is big. The squirrel is red. The squirrel likes the rabbit. The squirrel needs the dog. The squirrel needs the rabbit. If something chases the rabbit then the rabbit chases the dog. If the rabbit chases the dog then the dog is red. If something is big and it likes the cat then the cat likes the dog. If the rabbit is big then the rabbit needs the dog. If something is red then it is big. If something likes the dog and it chases the cat then the cat chases the rabbit. If something chases the cat and the cat likes the squirrel then the cat chases the dog. If something needs the rabbit then it chases the rabbit. All big things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-529_Q9", "context": "The bald eagle is red. The bear is young. The bear does not like the bald eagle. The bear does not see the cow. The bear visits the lion. The cow is green. The cow likes the bald eagle. The cow likes the bear. The lion is big. The lion is blue. The lion likes the bald eagle. The lion visits the bear. If the bald eagle sees the bear and the bear does not like the lion then the bear likes the cow. If something is green then it visits the cow. If something visits the lion and the lion is blue then it is blue. If something is big then it visits the bald eagle. If something sees the bear then it visits the bald eagle. If the lion visits the bald eagle then the bald eagle visits the lion. If the bear is big and the bear visits the bald eagle then the bear is red. If something sees the cow then it is not big. If something is blue then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-632_Q1", "context": "The bald eagle is big. The bear sees the squirrel. The rabbit sees the squirrel. The rabbit visits the squirrel. The squirrel chases the bear. The squirrel is cold. The squirrel is green. If something sees the bear and the bear sees the squirrel then the bear is cold. If the bear visits the squirrel then the bear visits the rabbit. If something is green then it sees the bear. If something visits the squirrel then it sees the bald eagle. Cold things are green. If something sees the squirrel and the squirrel visits the bald eagle then the bald eagle is green. If something sees the bear then it sees the bald eagle. If something chases the bald eagle and it sees the bald eagle then it chases the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit sees the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-731_Q1", "context": "Anne is red. Anne is round. Charlie is cold. Fiona is red. Fiona is white. Harry is not cold. Harry is white. Cold people are white. All white people are smart. If Anne is big and Anne is white then Anne is furry. If someone is smart then they are furry. If someone is cold and smart then they are furry. All furry, white people are big. If someone is big and white then they are not round. If Harry is not round then Harry is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-443_Q3", "context": "The bald eagle needs the cat. The bald eagle needs the cow. The bald eagle needs the mouse. The bald eagle sees the cat. The bald eagle sees the cow. The cat eats the mouse. The cat sees the cow. The cow eats the bald eagle. The cow eats the cat. The cow is rough. The cow needs the cat. The cow needs the mouse. The cow sees the cat. The cow sees the mouse. The mouse is young. The mouse sees the cat. If someone is rough and big then they see the cow. If someone sees the mouse then they are big. If someone is nice then they are rough. If someone sees the mouse and they see the cow then they see the bald eagle. If someone eats the bald eagle then the bald eagle needs the mouse. If someone sees the bald eagle then the bald eagle sees the mouse. If someone is rough then they need the cat. If someone sees the bald eagle and they eat the cow then they need the mouse. If someone is big and young then they see the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-396_Q7", "context": "Bob is cold. Bob is red. Charlie is green. Charlie is red. Charlie is white. Erin is blue. Erin is cold. Erin is green. Erin is white. Fiona is blue. Fiona is green. All blue people are nice. All white, nice people are green. All big, white people are cold. Nice people are red. All big people are blue. If someone is cold then they are white. All white, big people are red. If someone is blue and red then they are cold. White, red people are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-289_Q22", "context": "The bear is red. The bear needs the mouse. The bear needs the rabbit. The bear sees the squirrel. The mouse chases the squirrel. The mouse does not need the rabbit. The rabbit is kind. The rabbit is nice. The rabbit sees the bear. The squirrel chases the bear. The squirrel chases the rabbit. The squirrel does not need the bear. If someone needs the rabbit then they chase the mouse. If the bear sees the mouse and the mouse is not kind then the bear needs the mouse. If someone sees the bear and the bear is red then they do not see the mouse. If someone chases the mouse then they see the bear. If someone chases the rabbit and the rabbit chases the bear then they see the bear. If someone chases the bear and they need the rabbit then they are not round. If someone sees the bear and they see the squirrel then the squirrel needs the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit needs the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-939_Q9", "context": "The bald eagle eats the dog. The bald eagle is blue. The bald eagle is nice. The bald eagle is young. The bald eagle sees the dog. The bald eagle sees the squirrel. The dog is nice. The dog is round. The lion is cold. The squirrel chases the bald eagle. The squirrel does not eat the bald eagle. The squirrel sees the dog. If something is nice then it sees the lion. If the squirrel does not see the bald eagle then the bald eagle is round. If something sees the lion then it sees the dog. If something sees the dog then it chases the dog. If something chases the dog then the dog does not see the squirrel. If the dog sees the lion then the lion is nice. If something eats the dog and it is not cold then the dog does not chase the squirrel. If something eats the bald eagle then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion sees the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-748_Q7", "context": "Bob is blue. Bob is cold. Bob is green. Bob is quiet. Bob is rough. Bob is round. Bob is young. Dave is blue. Dave is cold. Dave is green. Dave is quiet. Dave is rough. Dave is round. Erin is green. Erin is rough. Gary is round. If something is green then it is young. Young things are cold. Round things are rough. All quiet things are round. If something is rough then it is green. If something is cold then it is quiet. All quiet things are round. Rough, green things are young. If Bob is quiet then Bob is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-375_Q12", "context": "The bald eagle is not rough. The bald eagle needs the rabbit. The bald eagle sees the rabbit. The lion does not chase the mouse. The lion needs the mouse. The lion needs the rabbit. The lion sees the mouse. The mouse is young. The rabbit chases the mouse. The rabbit is blue. The rabbit is rough. The rabbit does not need the lion. If the lion does not chase the rabbit then the lion is nice. If the rabbit needs the mouse then the rabbit is rough. If someone is blue and round then they chase the lion. If someone is blue then they chase the lion. If someone is young and they see the lion then they do not chase the lion. If someone sees the lion and the lion sees the mouse then the lion is blue. If someone is round and they need the bald eagle then the bald eagle is blue. If someone chases the lion then they see the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not see the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1141_Q13", "context": "Bob is furry. Bob is quiet. Bob is smart. Dave is young. Erin is blue. Erin is cold. Erin is furry. Erin is young. Fiona is cold. Fiona is furry. Fiona is young. Blue things are smart. All young things are smart. If something is blue then it is furry. Green, quiet things are not furry. All green, blue things are quiet. Young, furry things are quiet. If something is smart then it is blue. If Erin is cold then Erin is quiet. Quiet, smart things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-520_Q6", "context": "The bald eagle eats the bear. The bald eagle likes the dog. The bald eagle visits the bear. The bear eats the bald eagle. The bear eats the lion. The bear visits the bald eagle. The bear visits the lion. The dog eats the bear. The dog likes the bear. The dog visits the bear. The lion is big. The lion visits the bald eagle. If something is big then it is rough. If something eats the lion and it visits the bear then the bear likes the bald eagle. If something eats the bald eagle then the bald eagle likes the bear. If something likes the bear and the bear visits the lion then the lion is cold. If the bear likes the lion then the lion likes the bear. If something likes the bear and it is cold then the bear eats the dog. If something eats the dog then the dog eats the lion. If something likes the bald eagle then it is rough. If something eats the lion then the lion likes the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not eat the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-577_Q8", "context": "Dave is not big. Dave is blue. Erin is big. Fiona is not furry. Harry is not big. Harry is furry. Harry is quiet. If something is furry and smart then it is cold. If Fiona is blue then Fiona is furry. All cold things are white. If something is big and furry then it is smart. If something is blue then it is smart. All quiet things are furry. If Fiona is white then Fiona is quiet. Big things are quiet. White, furry things are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-479_Q20", "context": "The dog is green. The dog needs the rabbit. The lion eats the mouse. The lion is big. The lion likes the dog. The lion needs the rabbit. The mouse eats the rabbit. The mouse likes the dog. The rabbit likes the dog. The rabbit needs the mouse. If something likes the rabbit then the rabbit is big. If something is rough then it likes the rabbit. If something likes the rabbit and the rabbit likes the dog then the rabbit likes the mouse. If something likes the mouse and it needs the rabbit then the mouse likes the dog. If something is round and it needs the mouse then it likes the mouse. If something is big and it likes the dog then it is rough. If something is rough then it needs the mouse. If something eats the dog then the dog is big.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog needs the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-277_Q4", "context": "The cat needs the dog. The dog is green. The dog visits the cat. The dog visits the tiger. The squirrel is red. The squirrel visits the dog. The tiger is rough. The tiger likes the cat. The tiger needs the dog. The tiger visits the cat. All rough people are cold. If someone likes the dog then the dog needs the tiger. If someone is cold then they visit the squirrel. If someone needs the squirrel and the squirrel likes the tiger then they need the cat. If someone is rough and they visit the squirrel then the squirrel is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1200_Q17", "context": "Erin is furry. Erin is red. Erin is young. Fiona is big. Fiona is young. Gary is furry. Gary is red. Gary is round. Harry is cold. Harry is round. Harry is young. If someone is big then they are young. If someone is furry and big then they are red. Cold, furry people are green. If someone is red and big then they are furry. All round people are cold. If someone is big then they are furry. If someone is red then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-872_Q14", "context": "The cat chases the cow. The cat is nice. The cat likes the lion. The cow chases the lion. The cow chases the tiger. The cow eats the lion. The cow is blue. The lion chases the cow. The lion is blue. The lion is kind. The lion likes the tiger. The tiger likes the cat. If something is red then it eats the lion. If something is blue then it likes the cow. If something is nice then it likes the cat. If something is round then it likes the tiger. If something is nice and it eats the lion then the lion is red. If something likes the cat then it is red. If something chases the lion then the lion eats the cow. If something chases the cat and the cat eats the cow then the cat is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-485_Q11", "context": "The bald eagle is cold. The bald eagle likes the bear. The bald eagle needs the cow. The bald eagle visits the bear. The bear is kind. The bear is rough. The bear likes the cat. The bear visits the cat. The cat is green. The cat likes the bald eagle. The cat visits the bear. The cow needs the bald eagle. If someone needs the bald eagle then the bald eagle needs the cat. If someone is rough and they need the bear then the bear needs the cat. If someone is rough and they need the cow then they visit the bald eagle. If someone likes the bald eagle then they need the bear. All cold people are rough. If the bear needs the cat then the cat is cold. If someone is kind then they need the bear. If the bald eagle likes the cat and the bald eagle likes the bear then the cat needs the cow. If someone is rough then they visit the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat visits the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-964_Q11", "context": "Dave is nice. Fiona is cold. Fiona is nice. Gary is cold. Gary is red. Gary is rough. Harry is nice. If someone is rough then they are red. If someone is green and kind then they are red. If someone is white and not cold then they are red. If Fiona is nice and Fiona is green then Fiona is kind. If Dave is rough then Dave is red. If someone is red and kind then they are rough. If someone is red and rough then they are white. All cold people are green. If Gary is nice then Gary is not rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-421_Q4", "context": "Anne is red. Anne is smart. Anne is white. Bob is green. Bob is red. Bob is smart. Bob is white. Bob is young. Erin is green. Erin is smart. Erin is young. Fiona is kind. Young things are green. All green, white things are red. If Fiona is smart then Fiona is kind. If something is quiet then it is smart. If something is kind and young then it is quiet. If something is kind then it is young. If something is smart then it is white. Quiet, kind things are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-382_Q24", "context": "The cow does not see the rabbit. The mouse chases the rabbit. The mouse chases the squirrel. The mouse likes the cow. The mouse likes the squirrel. The mouse does not see the cow. The rabbit chases the mouse. The rabbit is nice. The squirrel is not cold. The squirrel likes the cow. The squirrel likes the rabbit. If someone is young then they see the rabbit. If someone is nice then they see the squirrel. If someone likes the rabbit then they are young. If someone sees the squirrel then they like the mouse. If someone chases the cow and they see the cow then the cow is nice. If someone likes the mouse then they like the rabbit. If someone sees the cow then they like the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit chases the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-984_Q19", "context": "The bald eagle eats the dog. The bald eagle sees the dog. The bald eagle visits the bear. The bear eats the bald eagle. The bear eats the rabbit. The bear sees the rabbit. The dog eats the bear. The dog does not eat the rabbit. The dog is big. The dog is blue. The dog sees the bald eagle. The dog sees the bear. The dog does not visit the rabbit. The rabbit eats the bald eagle. The rabbit eats the bear. The rabbit eats the dog. If the bear is red then the bear is blue. If someone visits the rabbit and the rabbit eats the dog then the rabbit does not eat the bear. All big, green people are red. If someone eats the bald eagle then they are green. If someone is blue then they eat the bear. If someone is green then they are big. If someone eats the bald eagle and they are not green then the bald eagle visits the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not visit the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-87_Q12", "context": "Bob is blue. Bob is furry. Bob is rough. Bob is not smart. Bob is not young. Dave is furry. Dave is kind. Dave is red. Dave is young. Erin is young. Gary is blue. Gary is kind. Gary is rough. Gary is smart. Kind things are red. If Erin is furry and Erin is young then Erin is smart. All rough things are kind. All young things are rough. If something is red then it is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-464_Q11", "context": "Dave is green. Dave is smart. Erin is big. Erin is blue. Erin is nice. Erin is red. Fiona is big. Fiona is nice. Gary is red. Gary is round. If someone is big then they are round. All red, nice people are big. All smart, green people are blue. All red people are green. If someone is nice then they are round. Red, blue people are big. If someone is round then they are red. Green, red people are smart. Green people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-110_Q18", "context": "The bald eagle eats the cow. The bald eagle is cold. The bald eagle likes the cow. The bald eagle visits the squirrel. The cow is young. The cow visits the dog. The dog eats the cow. The dog does not like the squirrel. The dog visits the squirrel. The squirrel is big. If something visits the dog then it likes the dog. If something is blue then it likes the cow. If the squirrel visits the bald eagle and the squirrel is not young then the squirrel is rough. If something likes the dog then it visits the bald eagle. If something eats the cow and it likes the cow then the cow is big. If something is rough and it does not like the bald eagle then the bald eagle likes the squirrel. If something visits the bald eagle then the bald eagle visits the dog. If something likes the dog then it eats the dog. If the squirrel eats the cow and the cow likes the squirrel then the squirrel eats the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-243_Q5", "context": "The bald eagle eats the bear. The bald eagle eats the cat. The bald eagle is green. The bald eagle sees the bear. The bald eagle visits the bear. The bald eagle visits the rabbit. The bear eats the bald eagle. The cat is green. The cat visits the bear. The rabbit sees the bear. If something visits the cat then the cat eats the bald eagle. If something is big then it is blue. If something is blue and green then it eats the bear. If something visits the rabbit then the rabbit is green. If something is blue and it eats the bear then it is young. If something is green and it sees the bear then it is big. If something is nice and it eats the cat then it visits the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-337_Q20", "context": "Bob is kind. Charlie is cold. Charlie is nice. Charlie is not quiet. Erin is not green. Erin is kind. Erin is not quiet. Erin is young. Gary is cold. Gary is green. Gary is quiet. If something is young and not cold then it is not quiet. White, nice things are green. Green things are white. Kind things are white. If something is quiet then it is nice. If Bob is young then Bob is quiet. All white things are young. If something is nice and white then it is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-193_Q1", "context": "The bald eagle is kind. The cat likes the bald eagle. The cat likes the squirrel. The squirrel chases the cat. The tiger chases the cat. The tiger is green. The tiger is round. If something likes the cat then the cat chases the tiger. If something chases the bald eagle and the bald eagle likes the tiger then the tiger is round. If something is green then it is kind. If something visits the bald eagle then the bald eagle chases the cat. If something likes the cat and it is cold then it is green. If something chases the cat and the cat likes the squirrel then it is green. If something chases the bald eagle then the bald eagle chases the tiger. If something is kind and green then it visits the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-415_Q5", "context": "The bear eats the rabbit. The bear is rough. The mouse eats the squirrel. The mouse needs the rabbit. The rabbit is cold. The rabbit needs the bear. The rabbit needs the mouse. The squirrel is big. The squirrel is nice. The squirrel is red. The squirrel needs the bear. The squirrel needs the mouse. If someone needs the squirrel and they like the rabbit then the rabbit is big. If someone likes the rabbit then the rabbit is red. If someone eats the squirrel then they need the bear. Red people are rough. If someone needs the bear and they eat the mouse then the mouse needs the bear. If someone is red and rough then they like the rabbit. If someone eats the bear and the bear needs the mouse then they like the squirrel. If someone likes the mouse and the mouse likes the bear then the mouse eats the bear. If the bear eats the rabbit then the bear needs the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel likes the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-865_Q9", "context": "The bear eats the squirrel. The bear is big. The bear is kind. The bear is round. The bear sees the mouse. The cow eats the mouse. The cow is big. The cow is kind. The cow is round. The cow needs the squirrel. The cow sees the mouse. The mouse eats the cow. The mouse is round. The squirrel is big. The squirrel is nice. The squirrel sees the cow. If someone is young then they need the squirrel. If someone eats the bear and they eat the squirrel then the bear is kind. If someone needs the squirrel and they eat the cow then the squirrel is round. If the mouse eats the squirrel then the mouse is young. Round people are young. If someone sees the squirrel then they are young. If someone sees the bear and they need the bear then they see the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-768_Q15", "context": "The bear chases the mouse. The bear is not cold. The bear does not see the mouse. The cow chases the mouse. The cow chases the rabbit. The cow needs the mouse. The cow does not see the bear. The mouse chases the rabbit. The mouse is blue. The mouse needs the bear. The mouse sees the bear. The rabbit chases the bear. The rabbit chases the mouse. The rabbit does not need the bear. The rabbit does not see the cow. The rabbit sees the mouse. If the bear is blue and the bear needs the mouse then the bear is not big. If someone sees the bear then they are big. If someone sees the mouse then they chase the mouse. If someone is big then they need the cow. If someone chases the mouse and the mouse does not need the rabbit then the rabbit sees the mouse. If someone needs the mouse and they need the cow then the cow is blue. If someone sees the mouse then the mouse needs the bear. If someone needs the cow then the cow is big.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not need the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-436_Q3", "context": "Anne is cold. Anne is furry. Anne is red. Erin is furry. Erin is green. Erin is nice. Erin is red. Fiona is rough. Gary is green. Gary is rough. All red people are rough. If someone is furry and rough then they are nice. Red, rough people are cold. If someone is rough then they are red. If someone is cold then they are furry. All nice people are rough. If someone is cold and nice then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1133_Q3", "context": "Bob is young. Charlie is red. Charlie is not rough. Charlie is round. Fiona is not quiet. Fiona is round. Harry is smart. All rough, round people are furry. If Charlie is quiet and Charlie is young then Charlie is not furry. Red people are smart. Quiet, smart people are rough. If Fiona is furry and Fiona is round then Fiona is smart. All young, smart people are quiet. If someone is smart and rough then they are round. All young people are red. If Harry is furry then Harry is not rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-58_Q18", "context": "Anne is cold. Anne is nice. Anne is round. Anne is young. Charlie is green. Charlie is young. Dave is quiet. Erin is blue. Erin is green. Erin is not quiet. Erin is young. All cold, young people are nice. Young people are blue. Cold, round people are blue. If Dave is round then Dave is nice. If Dave is quiet then Dave is not cold. If Charlie is quiet then Charlie is nice. All quiet people are round. Blue, nice people are green. If someone is nice then they are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-868_Q8", "context": "The cow chases the tiger. The cow likes the lion. The cow likes the mouse. The cow likes the tiger. The cow sees the lion. The lion likes the mouse. The mouse is blue. The mouse sees the cow. The tiger chases the cow. The tiger chases the mouse. The tiger likes the mouse. If something likes the tiger and it is blue then it chases the cow. If something sees the cow then the cow likes the lion. If something chases the mouse and the mouse likes the lion then the mouse is cold. If something chases the tiger and the tiger chases the mouse then it sees the mouse. If something is cold then it chases the tiger. If something sees the tiger then the tiger chases the lion. If something sees the mouse then the mouse likes the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-300_Q8", "context": "Dave is blue. Dave is cold. Erin is green. Gary is blue. Gary is cold. Gary is red. Harry is blue. All furry people are cold. Blue people are red. If someone is smart and not green then they are blue. If someone is cold then they are blue. If someone is green then they are furry. If someone is green and red then they are not smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-700_Q18", "context": "The bald eagle chases the bear. The bald eagle chases the dog. The bald eagle likes the squirrel. The bear is not kind. The bear is rough. The bear visits the squirrel. The dog is blue. The dog is green. The dog visits the bald eagle. The squirrel chases the dog. The squirrel likes the bear. The squirrel likes the dog. If something chases the bear and it visits the bear then it does not chase the bald eagle. If something is kind and it visits the squirrel then the squirrel is blue. If something is green then it visits the bear. If the dog visits the bear then the dog chases the squirrel. If something visits the dog and it is nice then the dog is blue. If something likes the squirrel and the squirrel visits the bear then it is blue. If something chases the squirrel then the squirrel is green. If the dog visits the bear and the bear does not like the dog then the dog likes the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear likes the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-507_Q18", "context": "Anne is quiet. Anne is rough. Anne is smart. Charlie is kind. Charlie is rough. Erin is nice. Gary is not kind. All kind, green people are quiet. Rough people are young. Smart people are young. All young, kind people are green. All young, smart people are nice. All quiet, green people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1211_Q10", "context": "Bob is big. Bob is quiet. Dave is nice. Dave is quiet. Dave is red. Erin is big. Erin is blue. Erin is kind. Erin is nice. Erin is red. Fiona is nice. Fiona is rough. If Erin is red and Erin is kind then Erin is nice. If something is red and kind then it is blue. Big things are rough. If something is nice and quiet then it is red. Nice things are quiet. If something is blue and red then it is big. If something is big and rough then it is red. If Fiona is red and Fiona is rough then Fiona is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-898_Q1", "context": "The bald eagle chases the tiger. The bald eagle is round. The bald eagle likes the bear. The bald eagle likes the tiger. The bear likes the tiger. The bear needs the bald eagle. The cow chases the tiger. The cow is green. The cow is red. The cow does not need the bald eagle. The tiger likes the cow. If the bald eagle likes the bear then the bald eagle is young. If something is cold then it needs the tiger. If something chases the bear and the bear needs the bald eagle then it needs the cow. If something needs the bald eagle then it is cold. If something is round and it needs the bald eagle then the bald eagle does not need the cow. If something is cold and it needs the tiger then the tiger needs the bald eagle. If something needs the cow then the cow needs the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not need the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-778_Q17", "context": "The cat is red. The dog is kind. The dog needs the lion. The dog visits the lion. The lion needs the dog. The rabbit is cold. The rabbit does not need the lion. The rabbit does not see the cat. The rabbit sees the dog. The rabbit sees the lion. If someone is cold then they visit the rabbit. If someone is red then they need the dog. If the rabbit sees the dog and the dog is cold then the dog does not visit the rabbit. If someone is round then they need the rabbit. If someone sees the rabbit and they do not see the dog then they need the rabbit. If someone needs the dog then they do not see the rabbit. If someone sees the lion then they are round. If someone needs the rabbit then the rabbit is red. If someone visits the lion and the lion does not visit the dog then the lion is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not visit the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-343_Q17", "context": "The bald eagle is rough. The bald eagle is young. The bald eagle visits the cat. The bald eagle visits the lion. The cat eats the bald eagle. The cat is blue. The cat is red. The cat visits the bald eagle. The cat visits the cow. The cow is red. The lion eats the cow. If something eats the cow then it visits the lion. If something visits the cow then it likes the cat. If something likes the cat then it is blue. If something visits the lion and it eats the cat then the lion is blue. If something is blue then it eats the cat. If something likes the lion and it is round then it visits the cat. If the cat likes the lion then the lion likes the bald eagle. If something visits the lion and the lion is blue then it likes the lion. If something visits the cow and it eats the cat then it visits the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not visit the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-244_Q8", "context": "The bald eagle eats the cat. The bald eagle is nice. The cat is kind. The cat needs the tiger. The squirrel eats the bald eagle. The squirrel is kind. The squirrel visits the bald eagle. The tiger eats the cat. The tiger eats the squirrel. The tiger visits the cat. If something needs the bald eagle then the bald eagle is kind. If the squirrel eats the cat then the cat eats the tiger. If something eats the squirrel and it eats the tiger then it needs the cat. If something visits the squirrel and the squirrel is blue then the squirrel needs the tiger. If something is kind then it visits the tiger. If something is nice and kind then it visits the cat. If something is kind and it eats the tiger then the tiger eats the cat. If something visits the tiger then it needs the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-729_Q20", "context": "The cow is big. The cow is red. The cow sees the squirrel. The dog eats the cow. The dog likes the tiger. The dog sees the squirrel. The squirrel is blue. The squirrel is rough. The tiger is big. The tiger is blue. The tiger likes the dog. The tiger sees the dog. If something sees the tiger then it is red. If something likes the dog and it is big then the dog is round. If something is big and red then it sees the cow. If the tiger is big and the tiger sees the dog then the tiger eats the squirrel. If something is big then it sees the tiger. If something is red and rough then it is blue. If something eats the dog and the dog likes the squirrel then the squirrel likes the dog. If something likes the dog and it sees the tiger then the dog is big.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel likes the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-421_Q1", "context": "Anne is blue. Anne is quiet. Dave is big. Dave is blue. Dave is young. Erin is big. Erin is young. Gary is furry. Gary is green. Gary is not quiet. All green people are round. Furry, quiet people are not big. If Dave is blue and Dave is round then Dave is big. If someone is green then they are blue. If Dave is big and Dave is furry then Dave is young. If someone is quiet then they are green. If Anne is young then Anne is furry. All round, quiet people are young. If Erin is not blue then Erin is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-750_Q14", "context": "Dave is furry. Dave is green. Dave is kind. Dave is red. Dave is white. Erin is blue. Fiona is red. Fiona is round. Fiona is white. Harry is green. Harry is white. If something is furry then it is red. If something is round and kind then it is blue. All blue things are furry. If Erin is white then Erin is kind. If something is furry and red then it is round. If something is blue then it is green. If Harry is white then Harry is kind. All white, kind things are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-290_Q11", "context": "The cow does not need the squirrel. The mouse is young. The mouse needs the cow. The mouse sees the squirrel. The mouse visits the squirrel. The rabbit needs the cow. The squirrel is kind. If someone needs the cow and they need the rabbit then the rabbit is cold. If someone sees the cow and the cow needs the rabbit then they see the squirrel. If someone needs the cow and they are green then they see the squirrel. Kind people are green. If someone is cold then they see the rabbit. If someone sees the mouse and the mouse needs the squirrel then the squirrel is green. If someone is young then they need the rabbit. If someone sees the rabbit then they are young.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit needs the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1176_Q17", "context": "Anne is cold. Anne is nice. Anne is round. Anne is white. Bob is white. Charlie is smart. Gary is nice. Green, nice people are white. If someone is smart then they are green. All big people are nice. If someone is white then they are smart. All cold people are nice. Round people are nice. If someone is green then they are big. All white people are cold. If Bob is cold then Bob is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-540_Q18", "context": "Anne is blue. Anne is kind. Bob is not blue. Bob is round. Erin is cold. Erin is nice. Fiona is not nice. Round, kind things are not red. Blue, nice things are young. If something is red then it is young. All young, cold things are round. Blue things are cold. Cold things are nice. If Bob is red and Bob is blue then Bob is young. If Erin is red then Erin is blue. If Anne is not kind then Anne is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-904_Q20", "context": "The bald eagle chases the bear. The bald eagle needs the tiger. The bear is not cold. The bear needs the bald eagle. The mouse chases the bear. The mouse is blue. The mouse likes the bear. The tiger chases the bear. The tiger is blue. The tiger is kind. The tiger does not like the bear. If the tiger likes the bald eagle then the bald eagle does not need the tiger. If something is big then it likes the tiger. If something likes the tiger then the tiger chases the mouse. If something chases the bear then the bear is big. If something is nice and it needs the bear then the bear chases the mouse. If the bald eagle is blue then the bald eagle is big. If something chases the mouse then it is big. If the bald eagle likes the bear and the bald eagle likes the tiger then the bald eagle needs the bear. If the mouse is kind then the mouse needs the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-319_Q19", "context": "Bob is blue. Bob is quiet. Charlie is round. Erin is quiet. Erin is young. Gary is quiet. Gary is round. Quiet people are big. All big, smart people are red. Big, red people are round. Round, red people are smart. If someone is young and big then they are smart. All big people are young. If Erin is round then Erin is red. All red, blue people are smart. If someone is red then they are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-505_Q21", "context": "Anne is big. Anne is furry. Anne is smart. Anne is young. Dave is young. Erin is nice. Fiona is cold. All nice things are smart. Smart things are cold. If Erin is smart and Erin is green then Erin is furry. All big things are green. If Erin is cold then Erin is big. All big, green things are young. All cold things are furry. All cold, big things are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-76_Q8", "context": "Bob is blue. Bob is green. Fiona is green. Gary is big. Harry is big. Harry is blue. Harry is young. Big people are green. All furry, young people are quiet. Green people are blue. If someone is furry and white then they are young. All furry, green people are blue. If Harry is quiet and Harry is furry then Harry is blue. Young, furry people are quiet. Furry people are white. Blue, green people are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-515_Q2", "context": "The cow is rough. The cow likes the mouse. The cow likes the tiger. The cow needs the tiger. The dog visits the cow. The mouse likes the dog. The mouse visits the cow. The mouse visits the dog. The tiger is round. The tiger visits the cow. If something visits the mouse then the mouse is big. If something needs the dog then the dog is round. If something is big then it visits the tiger. If something visits the tiger then it is rough. If something visits the dog then it visits the mouse. If something is big and rough then it likes the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not like the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-978_Q10", "context": "The bear eats the lion. The bear is cold. The lion eats the tiger. The lion likes the bear. The lion likes the tiger. The lion needs the tiger. The squirrel eats the lion. The squirrel is red. The tiger eats the lion. The tiger is red. The tiger needs the bear. All round things are rough. If something is rough and it needs the bear then it eats the squirrel. If something needs the bear then it likes the lion. If something eats the squirrel then the squirrel is big. If something is big then it needs the squirrel. If something is cold then it needs the lion. If something likes the lion then it is round. If the squirrel likes the lion and the squirrel eats the lion then the squirrel is red. If the squirrel eats the lion and the lion needs the bear then the bear likes the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not eat the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-632_Q1", "context": "Anne is rough. Charlie is blue. Charlie is kind. Erin is blue. Erin is furry. Erin is nice. Erin is young. Harry is not blue. Harry is cold. Harry is furry. Harry is kind. Harry is nice. Harry is rough. Harry is young. Rough people are cold. All kind people are cold. Young people are furry. If someone is rough then they are not blue. If Erin is young then Erin is not rough. If someone is cold and kind then they are nice. All furry people are kind. Cold people are young. If Anne is cold and Anne is kind then Anne is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-697_Q11", "context": "Charlie is big. Charlie is nice. Charlie is rough. Charlie is round. Charlie is smart. Charlie is young. Dave is young. Erin is quiet. Harry is big. Harry is smart. Harry is young. All young things are round. If Dave is nice and Dave is quiet then Dave is big. If something is round and big then it is rough. If something is round then it is big. Nice things are smart. Quiet things are rough. If something is rough then it is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-202_Q17", "context": "The cat likes the squirrel. The cat needs the dog. The cat needs the lion. The dog eats the cat. The dog is big. The dog is cold. The dog is kind. The dog is rough. The dog likes the lion. The dog likes the squirrel. The lion is cold. The lion is rough. The lion likes the cat. The lion needs the squirrel. The squirrel eats the dog. The squirrel eats the lion. If someone needs the cat then they like the dog. If someone eats the dog and they eat the cat then the dog needs the squirrel. If someone likes the dog then they are kind. If someone likes the lion then the lion eats the dog. All cold, nice people are big. If someone likes the lion and the lion is big then the lion needs the cat. If someone is cold then they are nice. If someone is rough then they need the squirrel. If someone is cold and they eat the dog then the dog eats the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not need the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-728_Q2", "context": "The bald eagle chases the bear. The bald eagle is blue. The bald eagle is green. The bald eagle visits the cow. The bear likes the dog. The cow chases the bald eagle. The cow is blue. The dog chases the bear. The dog is not green. The dog visits the cow. If something chases the cow and the cow visits the bear then the bear visits the bald eagle. If the bald eagle likes the bear then the bear does not visit the bald eagle. If something likes the dog then it likes the cow. If something chases the bald eagle and the bald eagle visits the cow then it likes the dog. If something likes the cow and the cow is blue then it likes the bear. If something visits the cow then it chases the cow. If something is cold then it does not visit the bear. If something chases the bear and it is green then it chases the bald eagle. If something likes the bear and the bear does not chase the cow then the cow likes the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not chase the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1112_Q21", "context": "Dave is nice. Dave is rough. Erin is blue. Erin is kind. Erin is nice. Fiona is furry. Gary is green. If Erin is blue and Erin is not quiet then Erin is kind. All furry, nice things are rough. Green, nice things are furry. If Dave is furry and Dave is blue then Dave is kind. Green things are nice. All quiet, nice things are not blue. If something is green and rough then it is blue. If something is blue and rough then it is not kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-224_Q12", "context": "Anne is big. Anne is furry. Bob is furry. Erin is kind. Harry is furry. Harry is kind. Harry is round. If someone is young and round then they are big. All big, furry people are young. All furry people are big. If someone is kind and young then they are red. Red, round people are quiet. Young, big people are red. If someone is big and red then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-406_Q4", "context": "Anne is not cold. Bob is quiet. Bob is rough. Bob is white. Dave is cold. Dave is quiet. Fiona is cold. Fiona is kind. Fiona is nice. Fiona is rough. All quiet, kind people are white. Quiet, blue people are kind. If someone is white and cold then they are kind. All quiet people are blue. If someone is white then they are rough. If someone is rough then they are nice. If someone is cold and not quiet then they are nice. If someone is blue and not rough then they are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-678_Q6", "context": "Anne is big. Anne is furry. Anne is rough. Erin is furry. Erin is red. Erin is rough. Erin is round. Fiona is red. Fiona is young. Harry is rough. If something is rough and smart then it is furry. All red, rough things are big. Smart, furry things are round. Rough things are young. All furry, big things are red. All furry, big things are smart. Rough things are furry. If Erin is big and Erin is young then Erin is smart. All young things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-978_Q14", "context": "The bear eats the lion. The bear is cold. The lion eats the tiger. The lion likes the bear. The lion likes the tiger. The lion needs the tiger. The squirrel eats the lion. The squirrel is red. The tiger eats the lion. The tiger is red. The tiger needs the bear. All round things are rough. If something is rough and it needs the bear then it eats the squirrel. If something needs the bear then it likes the lion. If something eats the squirrel then the squirrel is big. If something is big then it needs the squirrel. If something is cold then it needs the lion. If something likes the lion then it is round. If the squirrel likes the lion and the squirrel eats the lion then the squirrel is red. If the squirrel eats the lion and the lion needs the bear then the bear likes the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-633_Q2", "context": "The bear needs the lion. The bear needs the rabbit. The lion likes the bear. The rabbit eats the lion. The rabbit is kind. The squirrel is big. The squirrel needs the lion. If something likes the lion and it does not eat the lion then the lion does not eat the squirrel. If the bear needs the lion then the bear likes the rabbit. If something likes the rabbit then the rabbit eats the bear. If something is round and it needs the rabbit then the rabbit eats the squirrel. If the lion is round then the lion does not like the bear. If something eats the bear then the bear is kind. If the squirrel is green then the squirrel eats the rabbit. If something eats the squirrel then the squirrel does not eat the bear. If the bear is kind then the bear is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not need the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-919_Q11", "context": "Bob is furry. Bob is green. Bob is not red. Dave is cold. Gary is red. Harry is blue. Harry is rough. If something is cold then it is not smart. All furry, green things are blue. If something is furry then it is green. Smart, rough things are green. If something is cold and not smart then it is furry. Green, smart things are red. If something is green and blue then it is not red.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-966_Q18", "context": "Dave is nice. Dave is round. Erin is rough. Fiona is quiet. Fiona is young. Harry is green. Harry is not rough. If Dave is green then Dave is not round. All nice things are not quiet. If something is cold then it is nice. If something is green then it is cold. If something is cold and not quiet then it is not young. If something is green and not young then it is round. If something is quiet and rough then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-542_Q11", "context": "Bob is not blue. Erin is white. Fiona is big. Fiona is kind. Fiona is red. Fiona is round. Fiona is white. Harry is big. Harry is blue. Harry is white. Harry is young. White people are young. Round, blue people are kind. All young people are kind. If someone is kind and young then they are blue. Blue, red people are big. All blue people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1072_Q16", "context": "Anne is big. Anne is nice. Bob is green. Fiona is cold. Fiona is smart. Harry is green. Harry is nice. All big, cold things are smart. If something is green and quiet then it is nice. Green things are smart. If something is smart then it is big. If Bob is quiet and Bob is white then Bob is cold. Big things are cold. If Harry is white then Harry is green. If something is cold then it is quiet. All nice things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-486_Q24", "context": "The bear likes the cow. The cow eats the tiger. The cow likes the squirrel. The cow visits the squirrel. The cow visits the tiger. The squirrel is young. The squirrel likes the cow. The tiger eats the bear. The tiger is round. The tiger is young. The tiger visits the squirrel. If someone is young and they like the tiger then the tiger eats the cow. If someone likes the squirrel then they like the cow. If someone likes the bear and they eat the squirrel then the squirrel is nice. If someone is big and young then they eat the cow. If someone is big then they are young. If someone eats the cow then they like the squirrel. If someone is young then they like the bear. If someone likes the bear then they are big.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel visits the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1198_Q5", "context": "Anne is not blue. Anne is not quiet. Anne is rough. Dave is blue. Dave is not furry. Dave is white. Fiona is red. Fiona is rough. Fiona is not white. Harry is furry. Harry is quiet. Quiet, red things are blue. Rough, quiet things are blue. All white, rough things are kind. If Harry is quiet and Harry is white then Harry is kind. Furry things are white. All kind things are red. Blue, white things are red. All blue things are not rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-122_Q6", "context": "The bald eagle eats the mouse. The bald eagle is green. The bear eats the rabbit. The bear is rough. The bear likes the rabbit. The bear needs the rabbit. The mouse likes the bear. The mouse needs the bald eagle. The rabbit eats the bald eagle. The rabbit eats the bear. The rabbit is big. The rabbit is rough. The rabbit is round. The rabbit needs the bald eagle. If something is round then it is green. If something eats the mouse then it likes the rabbit. If something needs the rabbit then it needs the bear. If something is green and it likes the rabbit then it likes the bald eagle. If something eats the bear then it needs the rabbit. If something eats the bald eagle and the bald eagle needs the bear then it likes the bald eagle. If something likes the rabbit then it eats the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not like the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1052_Q11", "context": "Charlie is cold. Charlie is nice. Dave is cold. Dave is kind. Dave is nice. Dave is red. Fiona is big. Fiona is cold. Fiona is kind. Fiona is nice. Gary is green. Gary is kind. Green, red people are cold. If someone is green and blue then they are big. Cold, nice people are blue. Nice people are red. All kind, red people are nice. Big people are kind. Big people are green. Blue, nice people are red. All green people are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-145_Q24", "context": "The bear is kind. The bear is young. The bear sees the cow. The bear visits the mouse. The cow eats the mouse. The cow eats the squirrel. The cow is young. The cow sees the bear. The cow visits the bear. The mouse eats the bear. The mouse is cold. The mouse is young. The mouse sees the squirrel. The mouse visits the bear. The squirrel sees the cow. The squirrel sees the mouse. If someone sees the mouse and they visit the squirrel then the squirrel visits the bear. If someone visits the squirrel then they see the mouse. If someone visits the bear then they are round. If someone eats the squirrel and they see the cow then the squirrel is young. If someone eats the squirrel then they visit the squirrel. If the squirrel is round and the squirrel sees the bear then the squirrel eats the cow. If someone sees the mouse then they see the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse visits the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-437_Q11", "context": "The bald eagle likes the cow. The bald eagle likes the squirrel. The bald eagle likes the tiger. The cow chases the tiger. The cow is big. The cow likes the squirrel. The squirrel chases the cow. The squirrel chases the tiger. The squirrel is blue. The squirrel is cold. The squirrel needs the cow. The tiger chases the bald eagle. The tiger chases the squirrel. The tiger needs the bald eagle. If someone likes the bald eagle then the bald eagle needs the squirrel. If someone is kind then they need the cow. If someone needs the bald eagle then they are nice. If someone is nice then they need the squirrel. If someone needs the squirrel then the squirrel needs the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel needs the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-683_Q23", "context": "The bald eagle chases the squirrel. The bald eagle chases the tiger. The bald eagle needs the lion. The lion does not need the bald eagle. The lion sees the tiger. The squirrel does not chase the bald eagle. The squirrel chases the tiger. The squirrel is big. The squirrel is kind. The squirrel needs the lion. The squirrel sees the tiger. The tiger does not chase the lion. The tiger chases the squirrel. The tiger sees the bald eagle. If someone needs the tiger then they see the tiger. If someone is blue and big then they need the tiger. All big people are blue. If someone needs the tiger and the tiger does not need the bald eagle then they are not round. If someone chases the lion then the lion chases the tiger. If someone needs the tiger then the tiger is big. If the lion is not kind and the lion is not nice then the lion does not need the bald eagle. If the bald eagle is nice and the bald eagle is blue then the bald eagle needs the squirrel. If the bald eagle is not blue then the bald eagle chases the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not chase the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-377_Q4", "context": "The bald eagle chases the rabbit. The bald eagle likes the cow. The bear chases the rabbit. The bear is green. The cow chases the bald eagle. The cow chases the rabbit. The cow is kind. The cow likes the bald eagle. The rabbit chases the bear. The rabbit likes the bear. The rabbit needs the bear. If someone likes the cow and they are green then the cow chases the bald eagle. If someone likes the bald eagle then they are young. If someone chases the bear then they are kind. If someone likes the bear then they like the rabbit. If someone needs the rabbit then the rabbit likes the bald eagle. If someone is young then they need the bald eagle. If someone is nice then they chase the bald eagle. If the cow needs the bald eagle then the bald eagle needs the rabbit. If someone is nice and young then they need the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1156_Q7", "context": "Charlie is big. Charlie is furry. Charlie is kind. Charlie is smart. Erin is big. Erin is kind. Fiona is furry. Harry is big. Harry is blue. Harry is nice. If Charlie is nice then Charlie is white. White, smart things are furry. Blue, big things are nice. Big things are smart. Blue, white things are nice. White things are smart. If something is smart then it is white. All furry things are blue. All furry, nice things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-408_Q14", "context": "Anne is cold. Anne is green. Anne is rough. Charlie is round. Dave is big. Dave is kind. Dave is round. Dave is smart. Erin is green. Erin is round. If something is cold then it is big. If Anne is cold and Anne is round then Anne is green. Green, round things are kind. If something is rough and round then it is smart. Kind things are green. Kind things are rough. If something is kind and big then it is cold. If Erin is kind and Erin is rough then Erin is round. If something is rough and smart then it is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-967_Q18", "context": "Bob is round. Erin is cold. Erin is furry. Fiona is red. Fiona is white. Harry is red. Harry is not white. If Fiona is rough then Fiona is cold. If something is rough and round then it is cold. Round things are rough. Cold, round things are white. All white things are quiet. All quiet things are round. If something is cold and not rough then it is red. All cold, red things are furry. If Erin is round and Erin is not rough then Erin is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-732_Q11", "context": "The bald eagle eats the cat. The bald eagle is kind. The bald eagle needs the cat. The bald eagle visits the squirrel. The cat is big. The cat is cold. The cat visits the squirrel. The cat visits the tiger. The squirrel eats the bald eagle. The squirrel eats the cat. The squirrel needs the bald eagle. The squirrel needs the cat. The squirrel visits the bald eagle. The squirrel visits the tiger. The tiger eats the squirrel. The tiger needs the squirrel. If someone needs the cat then the cat visits the squirrel. If someone is cold and they eat the tiger then the tiger visits the cat. If the cat visits the bald eagle then the cat needs the bald eagle. If someone visits the cat and the cat is cold then they eat the tiger. If someone eats the cat and the cat visits the tiger then the cat visits the bald eagle. If someone visits the tiger then the tiger needs the bald eagle. If the bald eagle visits the squirrel and the squirrel needs the bald eagle then the bald eagle needs the cat. If someone visits the bald eagle and the bald eagle eats the cat then they visit the cat. If someone is young and cold then they need the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger eats the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-810_Q7", "context": "Bob is blue. Bob is furry. Bob is green. Bob is smart. Dave is quiet. Fiona is furry. Fiona is green. Fiona is smart. Gary is blue. Gary is green. Gary is quiet. Gary is red. Red, smart people are blue. Quiet, red people are smart. If someone is blue then they are nice. If someone is smart and blue then they are green. All quiet people are blue. If Gary is green then Gary is nice. If someone is blue and nice then they are red. If someone is red and green then they are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1175_Q10", "context": "Anne is cold. Charlie is nice. Dave is quiet. Erin is blue. Erin is not cold. Erin is not red. Erin is smart. All blue, nice people are not smart. If someone is round then they are smart. If someone is cold then they are red. If Erin is quiet then Erin is red. If someone is red and nice then they are quiet. If someone is quiet then they are blue. Red people are round. If someone is blue and quiet then they are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-433_Q23", "context": "The bear is nice. The bear sees the lion. The lion is round. The lion likes the rabbit. The lion sees the tiger. The rabbit sees the lion. The tiger does not see the rabbit. If the bear does not visit the tiger then the tiger likes the rabbit. If someone is nice then they like the bear. If the bear sees the lion then the lion visits the tiger. If someone likes the bear then they visit the rabbit. If someone is big and they do not like the tiger then the tiger visits the lion. If someone sees the rabbit then the rabbit is blue. If someone visits the rabbit and they see the lion then the lion is nice. If someone sees the lion and they do not visit the tiger then the tiger is young.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not see the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-1009_Q22", "context": "The bald eagle eats the mouse. The bald eagle is not cold. The bald eagle likes the bear. The bear is cold. The bear likes the mouse. The bear sees the mouse. The mouse eats the bald eagle. The mouse does not eat the rabbit. The mouse is not big. The mouse is red. The mouse does not like the bald eagle. The mouse likes the bear. The mouse likes the rabbit. The rabbit eats the bear. The rabbit does not like the bear. The rabbit likes the mouse. If something eats the bald eagle then the bald eagle likes the bear. If something eats the rabbit and the rabbit sees the mouse then it likes the mouse. If something eats the mouse then it sees the bear. If something sees the rabbit then the rabbit eats the mouse. If something sees the bear then it eats the rabbit. If something eats the bald eagle and it likes the mouse then it is round. If something sees the bear then the bear sees the rabbit. If something likes the mouse and the mouse is not round then the mouse likes the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-145_Q3", "context": "The bear is kind. The bear is young. The bear sees the cow. The bear visits the mouse. The cow eats the mouse. The cow eats the squirrel. The cow is young. The cow sees the bear. The cow visits the bear. The mouse eats the bear. The mouse is cold. The mouse is young. The mouse sees the squirrel. The mouse visits the bear. The squirrel sees the cow. The squirrel sees the mouse. If someone sees the mouse and they visit the squirrel then the squirrel visits the bear. If someone visits the squirrel then they see the mouse. If someone visits the bear then they are round. If someone eats the squirrel and they see the cow then the squirrel is young. If someone eats the squirrel then they visit the squirrel. If the squirrel is round and the squirrel sees the bear then the squirrel eats the cow. If someone sees the mouse then they see the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow visits the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-506_Q9", "context": "Erin is furry. Erin is red. Fiona is nice. Fiona is white. Gary is quiet. Gary is white. Harry is red. All nice things are quiet. All furry things are white. All rough, red things are furry. If something is rough and not red then it is furry. If something is quiet then it is furry. Furry, white things are rough. If something is red then it is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-352_Q8", "context": "The cat eats the rabbit. The cat visits the cow. The cow eats the cat. The cow eats the rabbit. The cow is kind. The cow is not young. The cow likes the cat. The cow does not like the dog. The cow visits the dog. The dog does not eat the rabbit. The dog is young. The rabbit does not eat the dog. If something visits the rabbit then the rabbit is round. If the cow likes the rabbit and the cow does not visit the dog then the rabbit does not like the cow. If something visits the rabbit then the rabbit eats the cow. If the cow eats the rabbit and the rabbit eats the cow then the cow eats the dog. If something is kind then it visits the rabbit. If something eats the dog then the dog is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not eat the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-853_Q2", "context": "Anne is cold. Anne is kind. Anne is nice. Anne is red. Anne is round. Anne is white. Bob is quiet. Fiona is quiet. Fiona is red. Fiona is round. Harry is cold. Harry is kind. Harry is nice. Harry is white. If Bob is white and Bob is kind then Bob is red. All quiet people are red. Red, nice people are white. All red people are nice. If Bob is nice then Bob is red. White people are kind. All white, cold people are quiet. All kind people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-609_Q10", "context": "Anne is not cold. Anne is red. Anne is rough. Anne is white. Bob is cold. Erin is not rough. Harry is white. If Erin is green and Erin is red then Erin is rough. All cold, red things are young. Rough things are not young. If something is big and rough then it is white. If something is young and cold then it is white. All young, white things are green. All cold things are red. Green, white things are not big. Big, white things are not cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-183_Q11", "context": "Anne is quiet. Anne is red. Bob is big. Bob is red. Bob is smart. Dave is big. Dave is blue. Dave is quiet. Dave is red. Dave is rough. Dave is young. Erin is blue. Erin is quiet. Erin is rough. Erin is smart. Erin is young. All young, rough people are quiet. If someone is quiet then they are red. Blue, big people are rough. Big, red people are rough. If someone is smart then they are young. All red people are smart. If someone is young and smart then they are blue. Blue people are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-956_Q10", "context": "The bald eagle is kind. The bald eagle needs the lion. The bald eagle needs the squirrel. The bald eagle visits the bear. The bear eats the bald eagle. The bear is young. The bear visits the lion. The lion eats the bear. The lion is blue. The lion is green. The lion visits the squirrel. The squirrel is big. The squirrel is young. The squirrel needs the lion. If someone needs the lion then they are green. If someone needs the bear then the bear needs the lion. If someone is green then they visit the bald eagle. If the squirrel eats the bear and the squirrel needs the lion then the bear is green. If someone visits the bald eagle then the bald eagle needs the bear. If someone eats the bald eagle and the bald eagle visits the squirrel then the bald eagle needs the squirrel. If someone is big then they need the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-666_Q19", "context": "The bear chases the cat. The bear is red. The bear needs the cat. The cat is kind. The cat is nice. The cat is red. The cat needs the tiger. The squirrel is nice. The tiger chases the squirrel. The tiger likes the bear. The tiger likes the squirrel. The tiger needs the bear. If something is kind then it needs the tiger. If something is kind then it chases the squirrel. If something chases the squirrel then the squirrel is cold. If something chases the bear then it likes the bear. Nice things are cold. If something chases the bear and the bear chases the tiger then the bear likes the tiger. If something needs the tiger then it chases the cat. If something chases the squirrel then it likes the squirrel. If something likes the squirrel and it needs the tiger then the tiger is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not need the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1299_Q2", "context": "Anne is nice. Bob is big. Bob is nice. Bob is round. Charlie is nice. Charlie is red. Erin is cold. Red, big things are round. If something is cold and kind then it is big. If Anne is white and Anne is nice then Anne is cold. Big things are kind. If something is kind and red then it is white. All nice things are round. If something is round and cold then it is big. All round, red things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-595_Q15", "context": "Anne is quiet. Bob is cold. Bob is kind. Bob is rough. Dave is quiet. Dave is rough. Harry is cold. Cold, rough things are round. If Harry is quiet then Harry is kind. All quiet things are not young. If something is cold then it is rough. All quiet things are rough. All rough, round things are quiet. All kind things are cold. If something is kind then it is white. If Bob is quiet then Bob is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-984_Q9", "context": "The bald eagle eats the dog. The bald eagle sees the dog. The bald eagle visits the bear. The bear eats the bald eagle. The bear eats the rabbit. The bear sees the rabbit. The dog eats the bear. The dog does not eat the rabbit. The dog is big. The dog is blue. The dog sees the bald eagle. The dog sees the bear. The dog does not visit the rabbit. The rabbit eats the bald eagle. The rabbit eats the bear. The rabbit eats the dog. If the bear is red then the bear is blue. If someone visits the rabbit and the rabbit eats the dog then the rabbit does not eat the bear. All big, green people are red. If someone eats the bald eagle then they are green. If someone is blue then they eat the bear. If someone is green then they are big. If someone eats the bald eagle and they are not green then the bald eagle visits the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-109_Q15", "context": "The bald eagle needs the tiger. The dog eats the bald eagle. The dog is green. The dog is rough. The dog is round. The dog likes the tiger. The dog needs the lion. The lion eats the bald eagle. The lion is green. The lion needs the dog. The tiger eats the lion. The tiger needs the lion. If something needs the bald eagle then it likes the dog. If something likes the dog and the dog needs the lion then the lion is blue. If something eats the dog then the dog needs the bald eagle. If something needs the bald eagle and the bald eagle likes the dog then the dog needs the lion. If the tiger eats the lion then the lion likes the dog. If something is blue then it eats the dog. If something needs the lion then the lion needs the dog. If something needs the dog and it needs the lion then the lion is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not like the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-139_Q16", "context": "The cat is cold. The cat is nice. The cat likes the cow. The cat visits the rabbit. The cow is young. The rabbit is rough. The tiger is big. The tiger sees the cat. The tiger sees the rabbit. The tiger visits the rabbit. If someone is young then they like the tiger. If the cow is big then the cow sees the cat. If someone is rough and they visit the cat then the cat sees the tiger. If someone sees the cat and they are young then they like the cow. If someone sees the tiger then the tiger likes the cow. If someone likes the tiger then they visit the cat. If someone visits the tiger then the tiger visits the cow. If the rabbit is rough then the rabbit is young. If someone sees the cat and they are cold then they visit the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger visits the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-195_Q14", "context": "The cow likes the dog. The cow likes the mouse. The dog is big. The dog is cold. The dog sees the cow. The mouse eats the cow. The mouse is young. The squirrel is big. The squirrel is kind. The squirrel likes the cow. The squirrel likes the mouse. If the dog is nice and the dog eats the cow then the cow is cold. If something is cold then it is nice. If something is nice then it eats the cow. If something eats the dog and it eats the mouse then the mouse sees the squirrel. If something likes the squirrel and it is young then the squirrel eats the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-876_Q2", "context": "The bear is rough. The bear is young. The bear likes the squirrel. The bear visits the mouse. The mouse is blue. The mouse likes the rabbit. The mouse likes the squirrel. The mouse visits the bear. The rabbit eats the mouse. The rabbit eats the squirrel. The rabbit is red. The rabbit is rough. The rabbit visits the bear. The squirrel is rough. The squirrel is young. The squirrel likes the bear. If something visits the squirrel then the squirrel is blue. If something eats the rabbit then the rabbit likes the mouse. If something is blue and it likes the bear then the bear eats the rabbit. If something likes the bear and the bear is red then the bear likes the rabbit. If something visits the squirrel and it eats the bear then the squirrel is blue. If something likes the squirrel then the squirrel is red. If something visits the mouse and it visits the squirrel then the squirrel likes the bear. If something likes the mouse then it is blue. If something visits the mouse then it visits the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not visit the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-878_Q18", "context": "The cow is kind. The cow is nice. The cow likes the lion. The cow likes the mouse. The cow visits the mouse. The lion is big. The lion likes the mouse. The mouse visits the lion. The tiger eats the mouse. The tiger is nice. The tiger is red. The tiger likes the cow. The tiger likes the lion. The tiger visits the cow. If the mouse eats the cow and the mouse likes the tiger then the mouse likes the cow. If someone is nice then they are young. If someone eats the lion then they are big. If someone is young then they eat the mouse. If someone eats the lion and they like the mouse then the lion likes the cow. All kind, big people are red. If someone eats the mouse and they are kind then the mouse is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse likes the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-853_Q2", "context": "The cat is cold. The cat is kind. The cat sees the lion. The cat visits the dog. The dog is cold. The dog is round. The dog sees the tiger. The lion chases the tiger. The lion is rough. The tiger sees the dog. The tiger sees the lion. The tiger visits the cat. If something visits the lion then it sees the tiger. All nice things are round. If something chases the tiger then it visits the dog. If something chases the dog and it visits the lion then the dog is round. If the lion is nice then the lion visits the tiger. If something sees the cat then the cat is round. If the lion is round then the lion is rough. If something visits the lion then the lion is nice. If something is round then it visits the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not visit the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-25_Q10", "context": "Charlie is blue. Charlie is cold. Charlie is kind. Charlie is not round. Dave is big. Dave is blue. Dave is not cold. Dave is smart. Fiona is big. Fiona is round. Harry is not red. If something is round then it is cold. If something is red and big then it is smart. If something is big and cold then it is smart. If something is cold then it is smart. Round, smart things are kind. If something is round then it is big. If something is red and not round then it is big. All blue things are red. All kind, smart things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-343_Q12", "context": "The bear eats the lion. The bear eats the squirrel. The bear is young. The bear does not need the dog. The dog chases the bear. The dog chases the lion. The dog eats the squirrel. The dog is not big. The dog is red. The dog needs the bear. The lion is young. The squirrel eats the bear. The squirrel eats the lion. The squirrel is green. The squirrel needs the bear. The squirrel needs the dog. If the dog chases the bear and the bear needs the lion then the bear is rough. If someone is red then they eat the squirrel. If someone is young then they eat the squirrel. If someone is young and they need the lion then they are green. If someone chases the bear then they are green. If someone needs the bear and the bear does not need the lion then the lion eats the dog. If someone needs the squirrel then the squirrel is red. If someone is red then they eat the dog. If someone eats the dog and the dog needs the bear then they need the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not need the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-49_Q6", "context": "Anne is cold. Anne is furry. Anne is red. Anne is rough. Charlie is furry. Charlie is not kind. Charlie is rough. Erin is furry. Erin is kind. Erin is nice. Harry is young. All rough things are nice. Young things are kind. If Harry is kind then Harry is rough. If something is red and rough then it is cold. If something is nice then it is cold. If something is nice and cold then it is red. All nice things are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-429_Q14", "context": "The bald eagle is big. The bald eagle is blue. The bald eagle is red. The bald eagle is round. The bald eagle likes the dog. The bald eagle sees the dog. The cow eats the dog. The cow is red. The cow likes the bald eagle. The cow sees the lion. The dog likes the bald eagle. The dog likes the lion. The dog sees the lion. The lion likes the cow. The lion likes the dog. The lion sees the cow. If someone likes the bald eagle and the bald eagle eats the dog then the bald eagle likes the lion. If someone likes the dog and the dog sees the lion then they eat the dog. If the dog likes the bald eagle then the dog likes the cow. If someone eats the cow and they like the dog then they like the cow. If someone likes the dog and the dog eats the bald eagle then they are young. If someone is round then they eat the bald eagle. If someone sees the cow and the cow likes the dog then they eat the dog. If the dog likes the cow then the dog is round. If someone is young then they see the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-255_Q12", "context": "Anne is nice. Anne is rough. Anne is white. Bob is nice. Bob is white. Erin is rough. Gary is smart. Smart things are nice. If something is rough and not green then it is round. All nice, white things are round. If something is smart and green then it is rough. All big things are rough. Nice things are white. All big things are white. All round things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1051_Q9", "context": "Anne is green. Anne is kind. Anne is nice. Anne is red. Anne is white. Erin is nice. Erin is rough. Fiona is kind. Fiona is rough. Gary is big. Gary is green. Gary is red. All white people are kind. If someone is big then they are green. All nice, big people are rough. Red people are white. Rough people are kind. If Fiona is white then Fiona is rough. All big, green people are red. If someone is kind then they are big. All big people are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-962_Q11", "context": "Anne is green. Dave is not furry. Dave is not red. Dave is white. Erin is blue. Erin is furry. Erin is green. Erin is red. Erin is white. Harry is white. If something is green then it is blue. If Harry is red then Harry is nice. If something is nice and green then it is furry. Nice, green things are furry. All red things are nice. If something is green and blue then it is white. Blue, nice things are smart. If something is green and white then it is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-775_Q12", "context": "Anne is blue. Anne is rough. Anne is white. Dave is white. Erin is kind. Harry is blue. Harry is kind. If Dave is red and Dave is not kind then Dave is not rough. Green, rough things are red. If Anne is green then Anne is blue. Red, rough things are quiet. All blue things are quiet. If something is quiet then it is green. If something is white and blue then it is rough. All green, quiet things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-727_Q6", "context": "The bear eats the dog. The bear eats the tiger. The dog is round. The lion eats the dog. The lion visits the bear. The tiger eats the bear. The tiger is round. If someone eats the bear then they like the tiger. If someone eats the lion and the lion visits the bear then the bear visits the dog. If someone is round and blue then they are big. If someone visits the bear then the bear likes the tiger. If the bear eats the lion then the lion likes the bear. If someone is round then they are blue. If someone likes the tiger then they eat the lion. If someone eats the bear and they eat the lion then the bear is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not eat the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-435_Q8", "context": "Charlie is smart. Dave is red. Dave is smart. Erin is furry. Erin is smart. Fiona is cold. Fiona is kind. Red people are kind. If someone is cold then they are smart. If someone is big then they are furry. All smart people are red. All smart, white people are big. If someone is cold and red then they are white. If Dave is kind then Dave is cold. If Dave is white then Dave is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-917_Q14", "context": "The bear visits the cow. The bear visits the tiger. The cow is red. The cow is rough. The cow visits the bear. The cow visits the dog. The dog chases the bear. The dog is cold. The dog is rough. The dog is young. The dog likes the tiger. The tiger is cold. The tiger is young. The tiger visits the bear. If someone likes the cow then they are red. If someone visits the bear then the bear chases the cow. If someone chases the tiger and they like the dog then they like the bear. If someone likes the tiger then they chase the tiger. If the tiger likes the bear and the bear is cold then the bear is red. If someone chases the bear and they are young then they are nice. If someone likes the bear then the bear is nice. If someone is nice then they like the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-95_Q9", "context": "Anne is big. Anne is blue. Anne is nice. Charlie is big. Charlie is green. Charlie is nice. Charlie is quiet. Charlie is rough. Charlie is white. Erin is white. Harry is blue. Harry is green. Harry is quiet. Harry is rough. All green, blue people are white. If someone is white then they are quiet. Big people are rough. Quiet people are green. If someone is rough and white then they are blue. Green people are big. White people are nice. All blue, white people are rough. If someone is blue then they are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-432_Q16", "context": "Bob is blue. Dave is green. Dave is rough. Erin is cold. Erin is green. Erin is quiet. Harry is green. If Dave is quiet then Dave is cold. If someone is rough then they are green. All cold people are rough. If someone is blue then they are rough. Green, blue people are round. All furry, blue people are quiet. Round people are furry. If someone is furry and rough then they are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-1014_Q3", "context": "The bear is big. The bear is green. The bear likes the lion. The bear likes the mouse. The bear likes the tiger. The bear visits the mouse. The lion is blue. The lion is kind. The mouse is red. The mouse visits the bear. The tiger visits the mouse. If someone visits the mouse then they like the lion. If someone likes the mouse and they are big then they chase the mouse. If someone chases the mouse then the mouse is kind. If someone likes the mouse then the mouse visits the lion. If someone is green then they like the mouse. If someone visits the lion and they like the mouse then the lion likes the bear. If the bear is blue then the bear is big. If someone chases the bear and the bear is blue then they visit the tiger. All kind people are green.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger likes the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-327_Q12", "context": "The bear eats the squirrel. The bear is young. The bear likes the rabbit. The cow is big. The cow is young. The cow needs the squirrel. The rabbit is rough. The rabbit is young. The rabbit likes the squirrel. The rabbit needs the cow. The rabbit needs the squirrel. The squirrel likes the bear. If something eats the cow then it is nice. If the rabbit is young and the rabbit eats the bear then the rabbit eats the squirrel. If something likes the squirrel and it is big then the squirrel needs the bear. If something eats the squirrel and the squirrel needs the cow then it needs the squirrel. If something likes the squirrel and the squirrel is blue then the squirrel eats the cow. If something is blue and it likes the squirrel then it eats the cow. If something is nice then it needs the cow. If something likes the bear then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not need the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-885_Q14", "context": "The cat chases the rabbit. The lion chases the rabbit. The lion is kind. The lion visits the rabbit. The lion visits the squirrel. The rabbit chases the squirrel. The rabbit eats the lion. The rabbit is cold. The rabbit is young. The rabbit visits the lion. The squirrel chases the cat. The squirrel chases the lion. The squirrel eats the lion. The squirrel is red. If something eats the rabbit then the rabbit eats the squirrel. If something is kind and it chases the squirrel then the squirrel is kind. If something visits the cat then the cat is red. All red things are nice. If something is nice and it chases the rabbit then the rabbit visits the squirrel. If something visits the cat and the cat visits the lion then the cat visits the squirrel. If something eats the squirrel then the squirrel visits the cat. If something chases the squirrel and it is nice then it eats the rabbit. If something chases the rabbit and it is kind then the rabbit is red.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-893_Q17", "context": "Bob is cold. Erin is kind. Erin is young. Fiona is kind. Fiona is red. Fiona is rough. Fiona is white. Harry is not cold. Harry is white. Harry is not young. If something is kind and cold then it is red. Rough things are red. If something is young then it is white. All rough, red things are young. Furry, rough things are cold. If Fiona is rough then Fiona is cold. All furry things are rough. If something is cold then it is furry. If Fiona is red then Fiona is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1064_Q20", "context": "Anne is green. Charlie is blue. Charlie is cold. Charlie is quiet. Dave is cold. Dave is round. Gary is not round. If someone is green then they are young. Nice, green people are young. Blue people are young. Young, blue people are nice. All quiet people are green. If someone is young then they are blue. Cold, round people are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-672_Q11", "context": "The bald eagle is nice. The bald eagle visits the bear. The bald eagle visits the lion. The bear chases the lion. The bear is red. The bear visits the lion. The bear visits the rabbit. The lion needs the rabbit. The rabbit is green. The rabbit is nice. The rabbit needs the lion. If someone is green then they visit the bald eagle. If someone is cold then they need the lion. If someone is red then they visit the bear. If someone is nice then they visit the bear. If someone needs the bald eagle and the bald eagle visits the lion then the bald eagle is green. If someone chases the rabbit then they are green. If the bear needs the lion then the bear is big. If someone visits the bald eagle then they need the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle needs the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-38_Q10", "context": "Anne is big. Anne is kind. Anne is nice. Anne is white. Charlie is big. Charlie is nice. Fiona is big. Fiona is kind. Fiona is round. Fiona is young. Gary is big. Gary is furry. Gary is white. Gary is young. All round things are white. All young, round things are white. If Gary is nice and Gary is young then Gary is white. Big things are furry. All kind, big things are young. All big, young things are round. All furry things are kind. Young, round things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-482_Q2", "context": "The bear chases the lion. The bear chases the mouse. The bear visits the cat. The cat chases the lion. The cat is rough. The cat visits the mouse. The lion chases the cat. The lion is green. The lion needs the bear. The lion visits the cat. The lion visits the mouse. The mouse chases the cat. The mouse is rough. The mouse visits the lion. If someone visits the bear and they need the cat then the bear chases the lion. If someone is young and they visit the cat then they chase the bear. If someone visits the lion then they are young. If someone chases the bear then the bear is young. If the lion chases the mouse then the mouse chases the cat. If someone visits the lion and the lion chases the bear then the lion is young. If someone needs the bear and the bear chases the lion then they visit the lion. If someone needs the lion then the lion chases the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not chase the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-317_Q20", "context": "The cow chases the dog. The cow chases the lion. The cow chases the rabbit. The cow is nice. The cow visits the dog. The dog chases the lion. The dog chases the rabbit. The dog is kind. The lion chases the dog. The lion chases the rabbit. The lion is rough. The lion visits the cow. The lion visits the rabbit. The rabbit is kind. The rabbit is round. The rabbit visits the dog. If the lion eats the dog then the dog visits the lion. If someone visits the cow and they visit the rabbit then they are round. If someone chases the dog and the dog is kind then they are red. If someone chases the rabbit and they are rough then they eat the lion. If someone chases the dog then they are rough. If someone eats the lion then they are nice. If someone is nice and kind then they chase the dog. If someone visits the rabbit and they eat the lion then the rabbit eats the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow chases the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1224_Q11", "context": "Anne is red. Bob is big. Bob is furry. Bob is not green. Bob is red. Gary is furry. Harry is not cold. If something is furry and big then it is rough. All cold, rough things are not kind. Big, cold things are furry. Kind, green things are not furry. If something is red and big then it is cold. If something is red then it is big. If Bob is rough and Bob is cold then Bob is not kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1161_Q18", "context": "Charlie is big. Charlie is furry. Charlie is quiet. Charlie is red. Dave is nice. Dave is quiet. Dave is young. Fiona is nice. Fiona is smart. Harry is big. Harry is quiet. Harry is smart. All smart people are furry. All red people are nice. Smart, furry people are quiet. If Harry is red and Harry is nice then Harry is furry. All nice, young people are red. All red people are big. If Fiona is quiet then Fiona is young. Nice, red people are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-253_Q3", "context": "Anne is nice. Charlie is blue. Charlie is furry. Charlie is green. Charlie is kind. Charlie is nice. Charlie is red. Fiona is furry. Fiona is green. Harry is furry. Harry is kind. Harry is nice. All nice people are rough. If someone is red and furry then they are blue. Rough, kind people are furry. If Charlie is furry then Charlie is nice. All furry people are nice. If someone is rough then they are kind. If someone is red and nice then they are blue. All furry people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-211_Q4", "context": "The bald eagle is blue. The cat chases the squirrel. The cat is rough. The cat is young. The cat sees the mouse. The cat sees the squirrel. The mouse chases the squirrel. The mouse is kind. The mouse sees the bald eagle. The squirrel chases the cat. The squirrel is young. If something needs the cat then it chases the squirrel. If something sees the cat then it needs the cat. If something sees the bald eagle and it chases the mouse then it chases the cat. If something sees the squirrel then it needs the squirrel. If something needs the squirrel and it needs the cat then the squirrel sees the cat. If something chases the squirrel then the squirrel is young. If the squirrel chases the bald eagle and the bald eagle chases the cat then the cat is rough. If something sees the mouse then it sees the cat. If the mouse needs the bald eagle then the mouse sees the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not need the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-68_Q20", "context": "The bear eats the cow. The bear sees the cow. The bear sees the squirrel. The cow is blue. The cow likes the squirrel. The cow sees the squirrel. The dog eats the cow. The dog is cold. The dog is kind. The dog sees the cow. The squirrel eats the cow. The squirrel likes the dog. The squirrel sees the bear. The squirrel sees the cow. If something sees the squirrel then it eats the dog. If something sees the bear then the bear is rough. If the cow likes the dog then the cow sees the dog. If something likes the bear then the bear is kind. If the cow eats the bear then the bear sees the cow. If something is kind then it eats the bear. Blue things are kind. If something likes the bear and it eats the bear then it eats the dog. If something eats the bear and the bear eats the cow then it likes the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog sees the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-52_Q20", "context": "The cow chases the lion. The cow chases the mouse. The cow sees the mouse. The lion chases the mouse. The lion sees the squirrel. The mouse chases the cow. The mouse is red. The squirrel chases the lion. The squirrel eats the lion. The squirrel is cold. The squirrel is round. The squirrel sees the cow. If someone sees the squirrel then the squirrel sees the cow. If the squirrel chases the lion then the lion eats the squirrel. If someone is young and they see the lion then the lion sees the cow. If someone is red then they are young. If someone is round then they chase the lion. If the lion sees the squirrel and the squirrel chases the lion then the lion is round. If someone chases the lion then they are red. If someone is young and they chase the mouse then they see the lion. If the mouse chases the lion then the mouse is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel chases the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-567_Q4", "context": "The bald eagle is green. The bald eagle is rough. The bald eagle likes the cow. The bald eagle likes the mouse. The bald eagle visits the lion. The cow likes the lion. The lion chases the cow. The lion is green. The lion visits the cow. The mouse chases the lion. The mouse visits the lion. If something visits the mouse and it is kind then the mouse likes the bald eagle. If something is green then it is kind. If something is kind and it chases the cow then it is young. If something is green and round then it visits the cow. If something is kind then it chases the cow. If something is kind and it visits the cow then the cow is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1244_Q8", "context": "Dave is cold. Dave is green. Erin is big. Erin is green. Erin is quiet. Erin is round. Fiona is big. Fiona is quiet. Harry is green. Harry is nice. Round things are young. All quiet things are round. All green things are quiet. Big, nice things are cold. All young, nice things are cold. If Dave is cold then Dave is nice. If something is nice and cold then it is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-9_Q8", "context": "Dave is furry. Dave is not white. Erin is furry. Erin is nice. Erin is round. Erin is white. Fiona is not big. Fiona is kind. Harry is not big. Harry is furry. If Erin is big and Erin is green then Erin is furry. Green things are not white. If something is kind then it is green. If something is green and not white then it is nice. If Fiona is kind and Fiona is nice then Fiona is round. If something is kind and not round then it is furry. Round, kind things are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-685_Q18", "context": "Dave is green. Erin is furry. Fiona is blue. Fiona is furry. Harry is blue. Harry is smart. Harry is white. If someone is big then they are blue. All furry, kind people are big. If someone is furry then they are white. White, smart people are kind. All big people are kind. If Dave is blue then Dave is kind. If someone is green then they are furry. If someone is kind then they are big. If someone is white then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-83_Q3", "context": "The cow chases the dog. The cow is kind. The cow is rough. The cow sees the lion. The dog is cold. The dog sees the lion. The lion does not chase the squirrel. The lion is not big. The lion sees the dog. The squirrel likes the dog. The squirrel likes the lion. If the squirrel likes the lion then the squirrel sees the cow. If something sees the dog then the dog is rough. If something sees the cow and it likes the lion then it is big. If something is cold then it chases the dog. Kind things are cold. If something chases the cow then it does not see the cow. All big things are kind. If something is green and not big then it likes the cow. If the cow is not kind then the cow likes the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1099_Q6", "context": "Bob is not red. Bob is not white. Dave is green. Dave is not red. Fiona is green. Gary is rough. Gary is smart. All round people are blue. All rough people are white. Smart, green people are rough. If someone is round and blue then they are green. Green, white people are round. If someone is green then they are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-599_Q9", "context": "Anne is quiet. Anne is red. Anne is rough. Anne is round. Charlie is red. Charlie is white. Dave is blue. Dave is round. Dave is young. Gary is red. If something is red and quiet then it is white. If something is blue and white then it is not young. If something is rough and red then it is blue. White, red things are round. If something is red and young then it is rough. All round, quiet things are rough. All round, red things are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-460_Q17", "context": "The bear does not eat the cow. The bear eats the dog. The bear is round. The cow is big. The cow is young. The cow does not visit the dog. The dog chases the bear. The dog is kind. The lion does not chase the cow. The lion eats the bear. The lion eats the cow. The lion eats the dog. If someone eats the dog then they chase the lion. If someone visits the dog then the dog chases the lion. If someone chases the lion then they are rough. If someone is young and they chase the dog then the dog eats the lion. If someone is rough then they visit the dog. If the dog is kind then the dog visits the bear. If the cow is kind and the cow is round then the cow is rough. If the dog visits the lion then the lion eats the cow. If someone visits the dog then they do not visit the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not visit the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-254_Q17", "context": "Bob is big. Bob is white. Dave is furry. Dave is rough. Dave is round. Gary is big. Gary is furry. Gary is not kind. Gary is nice. Harry is kind. Harry is white. If Harry is round then Harry is nice. All white things are rough. All round, nice things are rough. If something is nice and big then it is furry. Rough things are round. If something is nice and kind then it is big. All round things are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-665_Q5", "context": "The bear needs the cow. The cow eats the bear. The cow is green. The cow does not need the bear. The rabbit is green. The tiger is red. The tiger is round. If someone needs the rabbit then the rabbit is round. If the rabbit is kind then the rabbit eats the bear. If the rabbit visits the bear then the rabbit needs the tiger. If someone needs the bear then they do not eat the cow. If someone needs the rabbit and they do not visit the tiger then the tiger needs the rabbit. If someone visits the cow and the cow eats the bear then the cow is not red. If someone is round then they need the rabbit. If someone needs the rabbit then they need the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-716_Q11", "context": "The cat sees the tiger. The mouse is big. The mouse is green. The rabbit eats the cat. The tiger is big. The tiger is rough. The tiger does not like the cat. If someone eats the cat then they see the tiger. If someone sees the cat then the cat is not kind. If someone eats the mouse then the mouse eats the cat. If someone sees the mouse and the mouse does not like the cat then they are not rough. If someone likes the tiger then the tiger likes the cat. If someone eats the mouse then they are not red. If someone sees the tiger then they eat the mouse. If someone likes the rabbit and the rabbit sees the tiger then they are kind. If someone sees the rabbit and they do not like the mouse then they are green.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-100_Q2", "context": "Dave is big. Dave is kind. Dave is quiet. Dave is smart. Fiona is red. Gary is kind. Gary is nice. Gary is red. Gary is smart. Harry is big. Harry is green. Harry is kind. Harry is nice. Harry is quiet. Harry is red. Harry is smart. If Harry is red and Harry is quiet then Harry is smart. All green things are quiet. If something is green and smart then it is kind. If something is quiet then it is green. If something is big and quiet then it is smart. If something is red then it is big. All big things are green. If Dave is smart and Dave is red then Dave is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-351_Q16", "context": "Bob is blue. Charlie is rough. Gary is big. Gary is blue. Gary is kind. Gary is rough. Gary is white. Harry is big. Harry is rough. Harry is white. Harry is young. All kind things are big. Green, big things are young. Green things are rough. If Harry is kind and Harry is green then Harry is young. If Bob is kind then Bob is big. If something is rough and green then it is big. All young things are kind. All kind, blue things are big. If something is blue then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-464_Q5", "context": "Dave is green. Dave is smart. Erin is big. Erin is blue. Erin is nice. Erin is red. Fiona is big. Fiona is nice. Gary is red. Gary is round. If someone is big then they are round. All red, nice people are big. All smart, green people are blue. All red people are green. If someone is nice then they are round. Red, blue people are big. If someone is round then they are red. Green, red people are smart. Green people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-785_Q6", "context": "Bob is blue. Bob is furry. Bob is kind. Bob is rough. Bob is white. Erin is blue. Erin is red. Fiona is blue. Fiona is red. Gary is furry. Gary is white. If Fiona is white then Fiona is not smart. Smart, rough things are kind. If something is blue and kind then it is smart. All rough, blue things are smart. If something is kind and red then it is furry. If something is kind then it is furry. All red things are furry. Kind, red things are not white. All furry, blue things are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1420_Q11", "context": "Bob is white. Charlie is blue. Charlie is white. Erin is green. Fiona is quiet. Fiona is red. Fiona is white. Quiet things are blue. All smart, big things are green. All white, quiet things are blue. If something is white and red then it is big. Quiet, green things are big. Green, blue things are red. All green things are white. If something is red and big then it is smart. All white things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-35_Q5", "context": "Bob is big. Charlie is big. Charlie is not quiet. Dave is big. Harry is big. Harry is blue. Harry is cold. If something is blue then it is cold. If something is big then it is white. White things are blue. If Bob is white then Bob is smart. Cold, blue things are smart. If Charlie is cold and Charlie is blue then Charlie is big. If something is white and not cold then it is furry. If something is smart then it is not quiet. If something is big and furry then it is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-80_Q22", "context": "The bear does not chase the mouse. The bear chases the squirrel. The bear is cold. The bear is green. The bear is kind. The bear is round. The bear needs the squirrel. The bear visits the mouse. The bear visits the squirrel. The lion chases the bear. The lion chases the squirrel. The lion is green. The mouse chases the squirrel. The mouse does not visit the squirrel. The squirrel needs the lion. The squirrel visits the mouse. If someone chases the squirrel then they chase the bear. If someone chases the squirrel and the squirrel visits the lion then the squirrel does not visit the mouse. If someone needs the mouse then they are cold. If someone needs the bear then the bear chases the lion. If the lion chases the squirrel and the squirrel visits the mouse then the mouse needs the bear. If someone chases the lion then the lion needs the mouse. If someone is cold then they visit the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear visits the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-344_Q3", "context": "The bald eagle likes the rabbit. The mouse does not see the bald eagle. The rabbit is kind. The rabbit is red. The rabbit likes the bald eagle. The squirrel is nice. The squirrel sees the mouse. If something sees the squirrel then it likes the squirrel. Cold things are kind. If the rabbit likes the bald eagle then the rabbit sees the mouse. If the rabbit likes the squirrel then the squirrel is red. If the mouse chases the squirrel then the squirrel is blue. If the squirrel chases the mouse then the mouse is cold. If something is red then it sees the squirrel. If something is kind and not blue then it chases the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit sees the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-549_Q20", "context": "The dog does not see the rabbit. The mouse is cold. The mouse is red. The mouse needs the dog. The mouse does not need the rabbit. The mouse needs the tiger. The rabbit is big. The rabbit needs the dog. The rabbit sees the mouse. The tiger needs the mouse. If someone is red then they are kind. If someone sees the tiger then they eat the mouse. If someone eats the tiger and the tiger needs the mouse then the tiger is red. If someone sees the mouse then they eat the rabbit. If someone is kind then they eat the tiger. Red people are not green. If someone sees the tiger then they are green. If the tiger eats the mouse and the tiger eats the rabbit then the tiger sees the dog. If the mouse is kind then the mouse eats the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog eats the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-595_Q10", "context": "Charlie is rough. Dave is cold. Dave is quiet. Gary is cold. Gary is quiet. Gary is young. Harry is green. Harry is quiet. Harry is rough. Harry is round. Harry is smart. Harry is young. If Gary is green and Gary is young then Gary is rough. Rough people are smart. If Charlie is smart then Charlie is cold. If someone is quiet then they are round. If someone is cold then they are young. All quiet people are round. If someone is young and rough then they are round. If someone is round then they are green. If Gary is young and Gary is round then Gary is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-588_Q9", "context": "The cat is big. The cat is blue. The cat is nice. The cow is blue. The cow likes the cat. The mouse eats the cow. The mouse eats the squirrel. The mouse is blue. The mouse is nice. The mouse is round. The squirrel eats the cat. The squirrel sees the cat. If someone eats the mouse then they see the cow. If someone sees the cow then the cow sees the squirrel. If someone is nice and they like the squirrel then the squirrel is nice. If someone is round then they eat the mouse. If someone likes the mouse then they eat the mouse. If someone sees the squirrel then they like the mouse. If someone is red then they see the cow. If someone likes the cow then the cow likes the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow likes the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-266_Q15", "context": "Anne is red. Anne is not round. Anne is not smart. Charlie is kind. Erin is big. Erin is kind. Erin is quiet. Gary is not big. Gary is quiet. Gary is red. Gary is rough. Kind things are round. All round things are big. If Anne is big and Anne is not red then Anne is not rough. If something is kind and smart then it is rough. If something is rough then it is quiet. All red things are quiet. Big, round things are smart. If something is quiet and not big then it is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-805_Q7", "context": "Bob is kind. Bob is quiet. Bob is young. Erin is kind. Erin is rough. Erin is smart. Fiona is red. Harry is not red. Harry is round. Harry is young. All young things are quiet. Red, kind things are quiet. If something is smart then it is not quiet. If something is round then it is young. Quiet, young things are rough. If something is young and kind then it is rough. Rough things are kind. If Bob is round and Bob is rough then Bob is smart. Red things are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-148_Q9", "context": "The bald eagle likes the squirrel. The bald eagle likes the tiger. The bald eagle visits the tiger. The bear likes the squirrel. The bear needs the tiger. The squirrel is nice. The squirrel is young. The squirrel likes the tiger. The tiger is young. The tiger likes the bald eagle. The tiger likes the squirrel. The tiger visits the bear. If the bear likes the squirrel and the bear likes the tiger then the tiger is nice. If something likes the bear and it likes the squirrel then it is red. If something needs the tiger then it likes the bear. If something is red then it is blue. If something is blue then it likes the bald eagle. If the tiger is red then the tiger needs the bear. If something likes the bald eagle and the bald eagle likes the tiger then it visits the bear. If something likes the bear then it is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear likes the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-1034_Q4", "context": "The bear eats the dog. The bear sees the lion. The cat is green. The cat likes the lion. The dog is big. The dog does not see the cat. The lion eats the bear. The lion eats the dog. The lion is green. The lion likes the cat. The lion sees the bear. The lion sees the dog. If something sees the dog and it is green then the dog eats the cat. If something is green and it does not eat the dog then it is not kind. If something eats the lion and it sees the lion then the lion does not like the dog. If something is big and not green then it is young. If something sees the bear then the bear does not eat the lion. If something eats the bear and the bear is blue then the bear likes the dog. If something eats the bear and the bear does not eat the lion then the bear is blue. If something likes the dog then the dog is young. All young things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear eats the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-756_Q22", "context": "The bald eagle chases the dog. The bald eagle likes the cat. The bear does not visit the dog. The cat chases the bald eagle. The cat is green. The dog does not chase the cat. The dog visits the cat. If something visits the dog then the dog is round. If something visits the cat then it is rough. If something is round and it does not chase the cat then it does not like the bald eagle. If something likes the bear and it visits the cat then the cat is rough. If something is rough then it likes the bear. If something visits the dog then it does not visit the bald eagle. If something likes the bald eagle then it likes the dog. If something is rough and it likes the bear then it likes the dog. If something likes the bald eagle then the bald eagle does not visit the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat likes the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-729_Q7", "context": "The bald eagle is kind. The bald eagle is nice. The bald eagle is rough. The bald eagle does not need the cat. The cat is cold. The cat needs the mouse. The dog eats the mouse. The dog is kind. The dog is round. The dog likes the cat. The dog needs the bald eagle. The mouse is nice. The mouse does not like the bald eagle. The mouse likes the dog. If someone likes the dog then they eat the dog. If someone eats the dog then they eat the cat. Round people are nice. If someone eats the cat then the cat likes the dog. If someone needs the mouse and they do not eat the cat then they do not like the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat likes the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-922_Q11", "context": "The bear chases the cat. The bear chases the squirrel. The bear is blue. The bear visits the cat. The cat chases the tiger. The cat visits the bear. The squirrel eats the bear. The squirrel eats the cat. The squirrel visits the cat. The squirrel visits the tiger. The tiger chases the cat. The tiger chases the squirrel. The tiger eats the bear. The tiger is big. The tiger is round. The tiger visits the squirrel. If someone eats the squirrel and the squirrel eats the bear then they eat the tiger. If someone is blue and they chase the cat then the cat eats the squirrel. If someone is big then they eat the cat. If someone eats the tiger and they chase the squirrel then they visit the bear. If someone visits the squirrel and they eat the tiger then the squirrel is young. If someone eats the tiger then the tiger eats the squirrel. If someone chases the squirrel and the squirrel chases the cat then they are young. If the bear is young then the bear eats the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-403_Q7", "context": "The bald eagle likes the dog. The bald eagle needs the mouse. The cow chases the dog. The cow is cold. The cow likes the bald eagle. The dog is green. The dog is nice. The dog likes the cow. The dog needs the bald eagle. The mouse likes the bald eagle. If something is green then it needs the bald eagle. If something is cold then it needs the dog. If something chases the mouse then the mouse needs the bald eagle. If the bald eagle is cold then the bald eagle needs the cow. If something likes the dog and it is nice then it chases the mouse. If something likes the bald eagle and it needs the dog then the dog is cold. If something needs the dog then it likes the dog. If something needs the cow and the cow likes the dog then the cow likes the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog needs the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-415_Q13", "context": "Anne is cold. Anne is furry. Anne is not green. Anne is red. Anne is not rough. Anne is round. Bob is rough. Dave is blue. Dave is rough. Harry is green. Harry is rough. Red, round people are cold. All cold, round people are blue. If someone is furry then they are blue. If someone is cold then they are blue. If someone is green then they are round. All red, blue people are furry. Rough, blue people are red. If Bob is green then Bob is cold. Rough people are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-790_Q2", "context": "The bald eagle is young. The bald eagle likes the tiger. The cow chases the mouse. The cow is cold. The mouse eats the bald eagle. The mouse eats the cow. The tiger is big. If something is cold and it likes the cow then it is nice. All nice things are big. If something is rough then it likes the mouse. If something likes the cow then it likes the tiger. If something eats the tiger and it chases the cow then the tiger chases the bald eagle. If something chases the mouse then it likes the cow. If something is nice and it likes the tiger then the tiger chases the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not eat the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-124_Q8", "context": "The bear eats the lion. The bear eats the mouse. The bear is nice. The cow likes the bear. The cow needs the mouse. The lion eats the bear. The lion eats the mouse. The mouse is round. The mouse likes the bear. The mouse does not like the cow. If something likes the bear then it is young. If the cow is young then the cow needs the bear. If something is round then it eats the bear. If the bear does not need the lion then the bear eats the lion. If something likes the mouse then it eats the cow. If something eats the cow then the cow needs the lion. If something likes the bear then it is cold. If something needs the bear then it likes the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not like the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-513_Q20", "context": "Bob is not furry. Charlie is cold. Charlie is nice. Charlie is quiet. Charlie is white. Dave is quiet. Fiona is kind. If someone is furry and rough then they are quiet. If Dave is quiet and Dave is rough then Dave is white. All quiet people are cold. If Bob is cold and Bob is quiet then Bob is not kind. If Dave is white and Dave is quiet then Dave is kind. Cold people are rough. Cold, kind people are nice. All furry people are kind. If someone is furry and not white then they are not kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-760_Q8", "context": "Bob is nice. Dave is red. Erin is nice. Erin is quiet. Harry is big. Harry is green. Harry is nice. If something is quiet and red then it is big. If something is quiet then it is big. Big, red things are green. All red things are quiet. If something is blue and red then it is nice. Smart, quiet things are blue. All big, red things are smart. All quiet, blue things are red. If something is green and smart then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-1035_Q15", "context": "The bald eagle does not eat the squirrel. The bald eagle is green. The bald eagle needs the rabbit. The bald eagle visits the mouse. The mouse is blue. The mouse is rough. The rabbit does not eat the mouse. The rabbit is not rough. The rabbit needs the squirrel. The squirrel needs the rabbit. If someone needs the mouse then they eat the mouse. If someone eats the mouse then they are green. If someone visits the rabbit then the rabbit is nice. If someone visits the mouse and the mouse is not blue then they do not need the squirrel. If the mouse visits the squirrel then the squirrel is blue. If someone is blue then they visit the squirrel. If someone is rough and they visit the squirrel then they do not need the rabbit. If someone is blue then they need the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not need the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-911_Q7", "context": "The bald eagle chases the cat. The cat is not green. The cat is round. The cat likes the bald eagle. The dog does not chase the squirrel. The dog does not visit the cat. The squirrel is green. The squirrel is young. The squirrel likes the dog. The squirrel does not visit the bald eagle. If the cat visits the squirrel and the cat is round then the squirrel is red. If the cat likes the squirrel then the cat does not visit the dog. If the cat visits the dog and the dog visits the cat then the dog chases the bald eagle. If someone chases the cat then they do not like the bald eagle. If someone chases the cat then the cat is red. If someone chases the dog then they visit the squirrel. If someone is red then they chase the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat visits the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-337_Q16", "context": "The bear is round. The cat chases the mouse. The cat is round. The cat needs the squirrel. The cat visits the mouse. The cat visits the squirrel. The mouse needs the squirrel. The mouse visits the cat. The squirrel chases the cat. The squirrel needs the bear. The squirrel visits the mouse. If something needs the cat then it is round. If something visits the cat and the cat visits the mouse then the mouse chases the squirrel. If something needs the bear then the bear is rough. If something visits the squirrel and the squirrel is rough then the squirrel visits the mouse. If something is rough then it visits the squirrel. If something visits the squirrel then it needs the bear. If something chases the squirrel then it needs the cat. If something visits the squirrel then it is cold. If something needs the bear then it chases the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-728_Q3", "context": "The bear eats the dog. The cat chases the dog. The cat chases the tiger. The cat eats the dog. The cat eats the tiger. The cat is nice. The dog chases the cat. The tiger chases the cat. The tiger eats the bear. The tiger eats the cat. The tiger is cold. The tiger is nice. If someone chases the tiger and the tiger chases the cat then the cat chases the tiger. If someone is green then they like the cat. Nice, cold people are green. If someone likes the cat then the cat is cold. If someone chases the bear then they chase the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-732_Q2", "context": "The bald eagle does not need the mouse. The bald eagle sees the lion. The dog needs the lion. The dog needs the mouse. The lion chases the dog. The lion is nice. The mouse is big. If something chases the mouse and it sees the mouse then it is big. If something sees the dog then it is young. If something is young then it is red. If the lion chases the dog and the lion is nice then the dog is young. If something chases the dog then it sees the mouse. If something is red then it chases the mouse. If something needs the bald eagle then the bald eagle is not big. If the lion sees the dog and the dog does not need the lion then the lion sees the bald eagle. If something needs the lion then the lion sees the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not see the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-293_Q5", "context": "The bald eagle chases the cat. The bald eagle is cold. The bald eagle needs the cat. The cat chases the lion. The cat eats the squirrel. The lion chases the squirrel. The lion eats the bald eagle. The lion eats the cat. The lion is blue. The squirrel chases the cat. The squirrel eats the bald eagle. The squirrel is blue. The squirrel needs the bald eagle. The squirrel needs the cat. If someone eats the squirrel then they are nice. If someone needs the bald eagle then they eat the squirrel. If someone is nice and they need the bald eagle then they are kind. If someone is kind then they chase the bald eagle. If someone eats the bald eagle and the bald eagle is green then the bald eagle needs the cat. If someone eats the squirrel then the squirrel is cold. If someone is blue then they are green. If someone chases the bald eagle then the bald eagle needs the squirrel. If the bald eagle is green and the bald eagle chases the lion then the bald eagle needs the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-10_Q14", "context": "The lion is green. The lion sees the squirrel. The mouse is not red. The rabbit does not visit the mouse. The squirrel chases the lion. The squirrel chases the rabbit. The squirrel is kind. If something is nice then it does not see the squirrel. If something chases the mouse then the mouse is nice. If something sees the mouse then it chases the mouse. If something is kind then it sees the mouse. If something is nice then it sees the mouse. If something chases the mouse and it is red then the mouse sees the lion. If something visits the rabbit then it sees the rabbit. If the rabbit is blue and the rabbit chases the mouse then the mouse chases the squirrel. If something visits the lion and it sees the lion then the lion is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion sees the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-463_Q6", "context": "Anne is nice. Anne is young. Bob is blue. Bob is quiet. Bob is round. Bob is young. Charlie is round. Harry is rough. Harry is not round. Harry is not smart. If someone is round then they are young. If Bob is round and Bob is not young then Bob is rough. Blue, young people are smart. If someone is young then they are quiet. All rough people are quiet. Round, smart people are nice. All quiet people are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-817_Q18", "context": "The mouse eats the rabbit. The mouse is big. The mouse is red. The rabbit chases the squirrel. The rabbit eats the mouse. The rabbit is kind. The rabbit is rough. The rabbit visits the tiger. The squirrel chases the mouse. The squirrel visits the rabbit. The tiger chases the mouse. The tiger chases the squirrel. The tiger eats the mouse. The tiger eats the rabbit. If the mouse visits the squirrel and the mouse visits the rabbit then the squirrel eats the mouse. If someone chases the mouse and they eat the rabbit then they eat the tiger. If someone chases the mouse and the mouse visits the tiger then the tiger visits the mouse. If the mouse is red then the mouse visits the tiger. If the squirrel is big and the squirrel chases the rabbit then the rabbit visits the mouse. If someone visits the tiger then they visit the squirrel. If someone is rough then they chase the mouse. If someone visits the mouse then the mouse is rough. If the mouse visits the rabbit and the mouse visits the tiger then the rabbit eats the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit eats the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-255_Q11", "context": "Anne is nice. Anne is rough. Anne is white. Bob is nice. Bob is white. Erin is rough. Gary is smart. Smart things are nice. If something is rough and not green then it is round. All nice, white things are round. If something is smart and green then it is rough. All big things are rough. Nice things are white. All big things are white. All round things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-865_Q17", "context": "The bald eagle is green. The bald eagle visits the cat. The cat visits the rabbit. The lion is not nice. The lion visits the cat. The lion visits the rabbit. The rabbit is round. If something chases the lion then it eats the bald eagle. If something is rough then it chases the rabbit. If something eats the bald eagle and it is round then the bald eagle is round. If the rabbit chases the cat then the cat eats the bald eagle. If something eats the lion and the lion eats the rabbit then it chases the lion. If something is round then it chases the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not chase the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1290_Q11", "context": "Charlie is furry. Charlie is rough. Dave is big. Fiona is quiet. Gary is rough. Gary is round. Gary is white. All big, furry things are rough. All white, blue things are round. All rough, quiet things are blue. Big things are rough. All big things are quiet. If Charlie is white and Charlie is round then Charlie is rough. If something is rough then it is white. White things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-450_Q9", "context": "The bear chases the dog. The bear eats the dog. The bear eats the squirrel. The bear is young. The dog is young. The lion is green. The lion visits the dog. The squirrel eats the dog. The squirrel eats the lion. The squirrel visits the bear. If something is young then it chases the dog. If something is round and it chases the dog then it eats the lion. If something chases the dog then it chases the squirrel. If the lion chases the squirrel then the lion eats the bear. All cold things are round. If something eats the dog and the dog eats the lion then it chases the lion. If something chases the squirrel then it is cold. If something chases the squirrel then the squirrel chases the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1130_Q20", "context": "Anne is smart. Dave is cold. Erin is kind. Erin is smart. Gary is kind. Gary is red. Gary is not smart. Red people are cold. All cold people are red. All cold people are red. If someone is furry and kind then they are red. All smart people are blue. Smart, blue people are round. All red people are furry. All round people are furry. If Anne is red then Anne is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-259_Q17", "context": "The bear is big. The cat is big. The cat visits the bear. The cat visits the lion. The lion is nice. The lion likes the bear. The lion sees the cat. The lion sees the tiger. The tiger is cold. The tiger sees the cat. If the cat is kind then the cat sees the bear. If something is cold then it sees the lion. If something sees the bear then the bear is nice. If something sees the cat and the cat is blue then the cat sees the bear. If something is nice then it likes the lion. If something likes the lion then it sees the bear. If something visits the bear then the bear is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not see the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-628_Q2", "context": "Bob is blue. Charlie is big. Charlie is blue. Charlie is furry. Charlie is quiet. Charlie is white. Gary is furry. Harry is big. Harry is furry. Harry is white. If someone is quiet then they are big. Blue, furry people are rough. Nice, rough people are blue. If Bob is blue then Bob is rough. All rough people are quiet. If someone is quiet and rough then they are blue. Big people are furry. If someone is furry and rough then they are nice. If someone is rough then they are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1108_Q5", "context": "Bob is kind. Dave is furry. Dave is green. Dave is kind. Dave is quiet. Dave is red. Gary is kind. Gary is quiet. Gary is red. Harry is furry. Harry is kind. Harry is quiet. Harry is red. Harry is white. All kind, green people are red. Green, quiet people are kind. If someone is quiet then they are white. Kind people are furry. If someone is furry then they are green. If someone is red and kind then they are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-34_Q12", "context": "Bob is round. Charlie is blue. Charlie is rough. Fiona is blue. Fiona is cold. Fiona is green. Fiona is rough. Fiona is round. Gary is blue. Gary is cold. Gary is smart. All rough things are smart. All cold, round things are smart. Smart things are green. If something is blue and cold then it is round. If Bob is smart then Bob is blue. Round things are green. Red, green things are cold. Green things are rough. Green things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-471_Q5", "context": "Charlie is smart. Dave is cold. Dave is smart. Erin is cold. Erin is smart. Erin is white. Fiona is cold. If someone is kind and nice then they are round. All red people are white. Cold, kind people are nice. All red, white people are cold. All nice people are kind. All smart, kind people are red. Smart people are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-129_Q4", "context": "The bald eagle chases the tiger. The bald eagle eats the bear. The bald eagle eats the squirrel. The bald eagle is rough. The bear chases the squirrel. The bear chases the tiger. The bear eats the bald eagle. The bear eats the squirrel. The bear is kind. The bear needs the tiger. The squirrel chases the bear. The squirrel is blue. The squirrel is kind. The squirrel needs the bear. The tiger chases the bear. The tiger is big. If something needs the tiger then it is green. If something is rough then it eats the tiger. If something needs the bear and it chases the squirrel then the bear is rough. If something is green then it needs the bear. If the bear eats the tiger then the tiger eats the bald eagle. If something is rough then it is big. If the bear needs the squirrel then the squirrel is big. If something eats the squirrel and the squirrel needs the tiger then the tiger chases the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-993_Q8", "context": "The cat is kind. The cat visits the squirrel. The rabbit needs the tiger. The squirrel chases the cat. The squirrel chases the rabbit. The squirrel chases the tiger. The squirrel needs the tiger. The tiger chases the cat. The tiger chases the squirrel. The tiger is kind. The tiger visits the squirrel. If someone is blue then they are young. If someone chases the rabbit then they need the cat. If someone visits the cat and they are blue then they need the rabbit. If someone needs the squirrel and the squirrel chases the rabbit then they chase the cat. If someone chases the squirrel and the squirrel chases the rabbit then they are young. All green people are young. If the cat visits the squirrel and the squirrel needs the cat then the cat is blue. If someone is green then they chase the rabbit. If someone is blue and they visit the squirrel then they are green.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-435_Q4", "context": "Anne is cold. Anne is nice. Charlie is blue. Charlie is cold. Charlie is furry. Charlie is nice. Charlie is round. Charlie is smart. Charlie is young. Dave is blue. Dave is cold. Dave is furry. Dave is nice. Dave is young. Erin is furry. Erin is nice. If Anne is cold then Anne is smart. If someone is nice and furry then they are smart. If someone is smart then they are young. All smart people are young. All blue people are round. All cold people are blue. If someone is young then they are cold. If someone is blue then they are furry. Young, blue people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-354_Q2", "context": "Anne is cold. Anne is green. Anne is white. Dave is quiet. Fiona is quiet. Fiona is red. Gary is kind. All young, quiet things are red. Red things are young. Red, young things are quiet. If Gary is kind then Gary is red. All quiet, young things are green. If something is green then it is white. Quiet, cold things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-148_Q3", "context": "The bald eagle is green. The bald eagle is round. The bear is cold. The dog needs the bald eagle. The dog needs the lion. The lion is big. The lion is green. The lion does not like the bear. The lion likes the dog. The lion does not need the bear. If something likes the lion and it chases the lion then it is round. If something likes the dog and it likes the lion then the dog likes the lion. If the lion is green and the lion is round then the lion chases the bear. If something needs the lion and the lion does not chase the bald eagle then it chases the lion. If something likes the lion then it likes the dog. If something likes the dog then it is big. If something is cold then it likes the lion. If something likes the bear and it is round then it needs the bald eagle. If something chases the lion and the lion does not need the bald eagle then the bald eagle is not kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear likes the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-946_Q12", "context": "The bear eats the rabbit. The bear eats the tiger. The bear is kind. The bear is nice. The bear needs the rabbit. The cat is round. The rabbit chases the bear. The rabbit eats the cat. The rabbit is green. The rabbit is nice. The rabbit needs the bear. The tiger is round. If something is young and round then it needs the tiger. If something chases the tiger then the tiger is young. If something chases the rabbit and the rabbit chases the bear then it is nice. If something needs the tiger then it is nice. If something eats the cat and it needs the rabbit then the rabbit eats the bear. If something eats the tiger and it is kind then the tiger chases the bear. If something is nice then it chases the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not chase the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-567_Q13", "context": "Anne is big. Anne is nice. Anne is red. Anne is young. Charlie is big. Charlie is nice. Fiona is white. Harry is big. Harry is furry. Harry is white. Harry is young. White people are furry. If someone is furry then they are round. If Fiona is nice and Fiona is red then Fiona is white. Red, round people are young. Round people are nice. If Fiona is nice and Fiona is furry then Fiona is round. All nice, furry people are round. Nice, white people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-272_Q8", "context": "The bald eagle eats the cow. The bald eagle is red. The cat eats the cow. The cat does not visit the bald eagle. The cat visits the cow. The cow is nice. The cow is red. The dog eats the cat. The dog likes the cow. The dog visits the bald eagle. If the cat is kind then the cat visits the cow. If someone eats the cat and they are red then the cat likes the cow. If someone eats the bald eagle then they are red. If someone is blue then they visit the bald eagle. If the cat likes the dog then the cat does not eat the cow. If someone is red then they are nice. If someone likes the cow then they eat the bald eagle. If the cat eats the cow and the cat does not visit the bald eagle then the cow visits the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not like the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-355_Q5", "context": "The bear is kind. The bear is round. The dog is red. The dog is round. The rabbit is red. The squirrel is rough. The squirrel needs the bear. If something eats the squirrel and the squirrel eats the rabbit then the squirrel is kind. If something is kind then it needs the squirrel. If something is cold and it needs the rabbit then it is round. If something needs the squirrel then it is red. All cold things are round. If the bear visits the squirrel and the squirrel eats the bear then the squirrel eats the dog. All rough things are cold. All round things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-518_Q10", "context": "The cow chases the mouse. The cow eats the tiger. The cow is cold. The lion chases the mouse. The mouse does not chase the lion. The mouse eats the tiger. The mouse is green. The mouse is young. The tiger eats the mouse. The tiger is kind. The tiger needs the cow. If someone needs the mouse and the mouse is nice then the mouse does not chase the cow. If the cow is green then the cow chases the lion. If someone chases the cow and the cow eats the tiger then the cow is green. If someone eats the mouse then they chase the cow. If someone chases the lion then the lion does not eat the cow. If someone needs the mouse then they chase the lion. If someone chases the lion then the lion needs the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not need the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-912_Q10", "context": "Bob is rough. Erin is rough. Erin is round. Erin is young. Gary is quiet. Harry is white. Harry is young. If something is white and big then it is rough. All quiet, young things are white. All young, rough things are big. Rough, white things are quiet. If something is big then it is white. If something is white and big then it is round. Quiet things are smart. If something is smart then it is rough. All white things are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-680_Q12", "context": "Anne is white. Bob is big. Bob is green. Bob is young. Erin is green. Erin is nice. Erin is quiet. Erin is young. Harry is quiet. Harry is smart. All quiet people are smart. White people are big. If someone is white and not smart then they are not young. If someone is smart then they are young. All green, quiet people are white. Young people are nice. If someone is nice then they are green. If someone is quiet and not smart then they are not green.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-916_Q9", "context": "The cat is red. The lion likes the cat. The lion needs the squirrel. The lion visits the cat. The lion visits the mouse. The lion visits the squirrel. The mouse likes the squirrel. The mouse needs the cat. The squirrel is young. The squirrel visits the mouse. If the squirrel needs the mouse then the mouse needs the squirrel. If someone is blue then they visit the cat. If the mouse is blue then the mouse is round. If the cat needs the squirrel and the squirrel is red then the squirrel likes the cat. If someone visits the cat then they need the mouse. If someone visits the cat then they are blue. If someone visits the mouse then they are blue. Big people are red. If the mouse needs the squirrel and the squirrel is blue then the mouse visits the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse needs the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1189_Q10", "context": "Anne is not cold. Anne is nice. Anne is red. Bob is nice. Bob is not red. Dave is kind. Harry is not green. Harry is not kind. Harry is red. Harry is rough. Harry is young. If something is red and kind then it is young. Red, green things are young. If something is rough then it is not kind. Green things are cold. If something is cold and red then it is nice. If Dave is young then Dave is green. Kind things are red. If Bob is red and Bob is young then Bob is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-211_Q9", "context": "The bald eagle does not chase the squirrel. The bald eagle likes the cat. The cat likes the rabbit. The cat sees the bald eagle. The cat does not see the squirrel. The rabbit is kind. The rabbit is red. The squirrel chases the cat. The squirrel is cold. The squirrel is young. The squirrel sees the bald eagle. If something chases the squirrel and it does not see the rabbit then it does not chase the cat. If the squirrel sees the rabbit and the squirrel does not like the cat then the cat does not chase the rabbit. If something chases the bald eagle then the bald eagle is cold. If something is cold then it likes the squirrel. If something likes the squirrel and it is cold then it sees the cat. If something chases the bald eagle then it chases the rabbit. If the squirrel is cold then the squirrel sees the cat. If something likes the squirrel and it chases the cat then the cat chases the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle likes the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-185_Q11", "context": "Anne is green. Anne is not smart. Anne is white. Dave is cold. Dave is not green. Dave is nice. Dave is red. Dave is not smart. Erin is rough. Fiona is cold. Fiona is nice. Fiona is not red. Fiona is not rough. Fiona is white. All red things are nice. All rough things are nice. All green, cold things are white. If something is rough and not nice then it is white. White things are not smart. Rough, green things are cold. All white things are green. If something is nice and rough then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1253_Q3", "context": "Charlie is furry. Dave is furry. Dave is quiet. Dave is smart. Fiona is rough. Fiona is white. Harry is cold. Harry is furry. Harry is quiet. Harry is rough. All quiet, rough things are cold. All quiet, furry things are cold. All young things are smart. All rough things are quiet. White, furry things are young. Young, furry things are quiet. If something is cold then it is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-530_Q17", "context": "Anne is green. Anne is kind. Bob is green. Bob is not round. Bob is not smart. Charlie is cold. Charlie is furry. Charlie is kind. Harry is green. Harry is smart. All round, smart things are red. Red, green things are smart. All kind things are round. All smart things are kind. Red things are cold. Kind, cold things are furry. If Charlie is not kind then Charlie is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-618_Q13", "context": "Anne is green. Bob is big. Bob is blue. Bob is furry. Bob is green. Bob is nice. Bob is quiet. Bob is smart. Fiona is blue. Fiona is quiet. Gary is blue. Gary is nice. If someone is quiet and big then they are nice. Blue people are big. If someone is big and quiet then they are green. All green people are furry. Furry, smart people are big. Blue, smart people are green. All quiet, furry people are smart. Furry people are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-216_Q9", "context": "The bald eagle does not need the lion. The dog needs the bald eagle. The lion eats the bald eagle. The lion eats the squirrel. The lion is green. The squirrel is green. The squirrel is young. The squirrel does not like the bald eagle. The squirrel needs the dog. The squirrel needs the lion. If something is young then it is blue. If the squirrel is cold and the squirrel likes the lion then the squirrel eats the lion. If something eats the squirrel then it is young. If something eats the squirrel then it does not like the lion. If something eats the dog then the dog eats the lion. If something eats the lion then the lion likes the squirrel. If something eats the dog and the dog is blue then it eats the bald eagle. If something is blue and it does not like the lion then it eats the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog eats the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-1031_Q5", "context": "The bald eagle is rough. The bald eagle sees the cat. The bald eagle sees the lion. The bear is rough. The bear needs the bald eagle. The bear sees the lion. The cat chases the bald eagle. The cat is blue. The cat needs the bald eagle. The cat sees the bald eagle. The lion chases the bald eagle. The lion chases the bear. The lion chases the cat. The lion needs the cat. The lion sees the bear. The lion sees the cat. If the bear chases the cat then the bear is blue. If something chases the cat and the cat needs the lion then the cat is rough. If something sees the bald eagle then it is kind. If something is rough then it needs the bear. If the bear needs the cat then the bear needs the bald eagle. If something sees the bear then it needs the lion. If something needs the lion and the lion needs the cat then the cat sees the bear. If something needs the bear then the bear needs the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat sees the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-412_Q2", "context": "The cow is round. The cow needs the lion. The cow needs the rabbit. The cow sees the lion. The cow visits the rabbit. The lion is round. The rabbit is kind. The rabbit visits the tiger. The tiger is big. The tiger is kind. The tiger sees the rabbit. The tiger visits the rabbit. If something is kind and it visits the rabbit then it is young. If something sees the tiger and it visits the lion then it sees the rabbit. If something is big and young then it sees the lion. If something visits the rabbit then the rabbit needs the lion. If something is big then it visits the rabbit. If something sees the tiger then it is rough. If something visits the rabbit and it is kind then the rabbit needs the lion. If something is rough and kind then it visits the lion. If something needs the lion then it is big.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not need the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-946_Q14", "context": "The bear eats the rabbit. The bear eats the tiger. The bear is kind. The bear is nice. The bear needs the rabbit. The cat is round. The rabbit chases the bear. The rabbit eats the cat. The rabbit is green. The rabbit is nice. The rabbit needs the bear. The tiger is round. If something is young and round then it needs the tiger. If something chases the tiger then the tiger is young. If something chases the rabbit and the rabbit chases the bear then it is nice. If something needs the tiger then it is nice. If something eats the cat and it needs the rabbit then the rabbit eats the bear. If something eats the tiger and it is kind then the tiger chases the bear. If something is nice then it chases the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit eats the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-912_Q21", "context": "The bald eagle eats the cat. The bald eagle is nice. The bald eagle likes the cat. The bald eagle visits the cat. The bald eagle visits the cow. The bear is blue. The bear likes the bald eagle. The bear likes the cat. The cat visits the bear. The cow eats the bald eagle. The cow likes the bald eagle. The cow likes the cat. If someone visits the cow and they eat the cat then the cow is big. If someone is big and they eat the cat then they eat the bald eagle. All green people are red. If someone eats the cow and the cow likes the cat then they like the cow. If someone eats the cat and they eat the bear then the bear eats the cow. If someone is big and they like the cat then they visit the bear. If someone visits the cat then the cat eats the bald eagle. If someone visits the cow and the cow visits the bear then they eat the bear. If someone visits the bear and the bear eats the bald eagle then they like the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-182_Q6", "context": "Bob is furry. Bob is green. Bob is red. Bob is rough. Erin is green. Erin is red. Gary is furry. Gary is kind. Harry is blue. Harry is furry. Harry is rough. Rough people are smart. Smart, furry people are rough. Blue people are red. If someone is rough then they are blue. Green people are blue. Furry people are smart. If someone is kind then they are furry. If Erin is blue then Erin is green. Red, blue people are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-874_Q5", "context": "The bald eagle visits the bear. The bear eats the bald eagle. The bear eats the lion. The bear eats the rabbit. The lion is not cold. The lion is green. The lion is not nice. The lion is rough. The rabbit is green. The rabbit is nice. If something is rough and it needs the lion then it is cold. If something visits the rabbit and it does not eat the lion then the rabbit does not visit the lion. If the rabbit visits the lion then the rabbit is not cold. If something is rough and it visits the bald eagle then the bald eagle visits the lion. If something visits the lion then the lion visits the bear. If something is blue then it visits the lion. If something visits the bear then it is blue. If something visits the lion then the lion eats the bear. If the lion is green and the lion is not cold then the lion does not visit the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle visits the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-591_Q17", "context": "Dave is blue. Dave is red. Erin is not blue. Erin is not cold. Erin is young. Fiona is green. Gary is red. All blue people are smart. If Fiona is smart then Fiona is red. All green, red people are cold. Green people are blue. If someone is cold and not red then they are big. If someone is cold then they are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-239_Q5", "context": "The lion is cold. The lion is young. The mouse chases the tiger. The rabbit chases the tiger. The rabbit is nice. The tiger is red. The tiger is young. If someone likes the rabbit then the rabbit is young. If someone is nice then they eat the mouse. If someone is young then they eat the rabbit. If someone likes the mouse then they like the rabbit. If someone eats the rabbit then they like the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion likes the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-520_Q15", "context": "Anne is cold. Anne is smart. Bob is big. Bob is cold. Bob is nice. Bob is not rough. Bob is smart. Charlie is not cold. Charlie is nice. Charlie is rough. Charlie is smart. Gary is quiet. Rough people are nice. Rough, big people are nice. If someone is furry and quiet then they are big. If Anne is furry and Anne is smart then Anne is quiet. All big people are furry. If someone is cold and quiet then they are rough. If Anne is smart then Anne is big. If someone is rough then they are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-7_Q2", "context": "Anne is blue. Anne is furry. Anne is rough. Anne is smart. Dave is cold. Dave is furry. Dave is smart. Fiona is big. Fiona is furry. Fiona is green. Fiona is rough. Fiona is smart. Harry is furry. Harry is smart. Smart, green things are big. All cold things are furry. If Harry is smart and Harry is cold then Harry is rough. If something is smart then it is rough. Smart things are furry. If Harry is furry then Harry is rough. If something is rough then it is blue. All cold things are green. Blue, smart things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-768_Q21", "context": "The bear chases the mouse. The bear is not cold. The bear does not see the mouse. The cow chases the mouse. The cow chases the rabbit. The cow needs the mouse. The cow does not see the bear. The mouse chases the rabbit. The mouse is blue. The mouse needs the bear. The mouse sees the bear. The rabbit chases the bear. The rabbit chases the mouse. The rabbit does not need the bear. The rabbit does not see the cow. The rabbit sees the mouse. If the bear is blue and the bear needs the mouse then the bear is not big. If someone sees the bear then they are big. If someone sees the mouse then they chase the mouse. If someone is big then they need the cow. If someone chases the mouse and the mouse does not need the rabbit then the rabbit sees the mouse. If someone needs the mouse and they need the cow then the cow is blue. If someone sees the mouse then the mouse needs the bear. If someone needs the cow then the cow is big.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not see the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1004_Q17", "context": "Anne is furry. Anne is young. Bob is big. Dave is not big. Dave is white. Dave is young. Erin is not furry. All big things are young. All young things are white. All young things are white. All young, furry things are quiet. If something is smart and not young then it is furry. All white things are furry. If something is big and not young then it is furry. If something is big and not quiet then it is green. If something is young and quiet then it is not green.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-82_Q5", "context": "Dave is cold. Dave is smart. Dave is white. Dave is young. Erin is cold. Erin is kind. Erin is red. Erin is smart. Erin is white. Fiona is cold. Fiona is kind. Gary is kind. Gary is red. Gary is smart. If someone is white and red then they are nice. All smart people are red. If someone is kind and smart then they are cold. Nice people are smart. If someone is cold then they are white. White people are young. All white, young people are smart. Nice people are white. If Gary is kind and Gary is white then Gary is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-746_Q10", "context": "The cow is not big. The cow is nice. The cow visits the mouse. The mouse is nice. The squirrel sees the mouse. The tiger is rough. The tiger sees the cow. If something is green then it visits the tiger. If the tiger sees the cow and the cow needs the mouse then the mouse does not need the tiger. If something sees the mouse then it is round. If something sees the mouse then it is green. If something visits the tiger then the tiger sees the mouse. If something visits the mouse then the mouse is not rough. Green things are nice. If something visits the tiger and it is not green then the tiger is not round.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-782_Q5", "context": "Bob is green. Bob is kind. Bob is red. Dave is kind. Dave is quiet. Dave is red. Dave is white. Gary is quiet. Gary is white. Harry is green. Harry is kind. Harry is quiet. Harry is smart. Harry is white. If something is nice and kind then it is smart. Kind, red things are nice. White things are kind. If something is kind and white then it is red. Smart things are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-647_Q18", "context": "The cat chases the dog. The cat eats the cow. The cat eats the dog. The cat sees the mouse. The cow is rough. The cow sees the cat. The dog chases the cow. The mouse eats the dog. The mouse is big. The mouse is round. The mouse sees the cow. If something chases the dog and the dog is young then the dog eats the cow. All big things are young. If something chases the cow then the cow sees the mouse. If something is young then it chases the cat. If something eats the dog and it is kind then it sees the mouse. If something eats the cat then the cat is young. If the cat sees the cow then the cow is big. If something chases the cat and the cat chases the dog then the cat sees the cow. If something chases the cow and it chases the cat then it is young.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog eats the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-101_Q4", "context": "The bear sees the tiger. The lion is blue. The lion needs the mouse. The mouse chases the tiger. The mouse is big. The mouse sees the bear. The tiger chases the bear. The tiger chases the lion. The tiger is green. The tiger does not need the lion. If something needs the mouse then the mouse does not need the tiger. If something chases the mouse then it needs the lion. If the tiger sees the mouse then the mouse sees the tiger. If something is rough then it chases the mouse. If something is rough then it chases the lion. If something is big and it sees the bear then the bear sees the mouse. If the bear needs the lion then the lion chases the mouse. If something sees the mouse then it is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse needs the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-649_Q1", "context": "Anne is blue. Anne is young. Dave is big. Dave is cold. Erin is big. Erin is blue. Gary is big. If something is young then it is white. If something is quiet then it is blue. All smart, big things are cold. All white things are big. All white, quiet things are smart. If something is big and blue then it is quiet. If Gary is big then Gary is quiet. Quiet things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-907_Q9", "context": "The bear is young. The bear sees the dog. The bear visits the rabbit. The cow is cold. The cow visits the dog. The dog does not eat the rabbit. The dog is blue. The dog is young. The rabbit visits the cow. The rabbit does not visit the dog. If the cow eats the bear and the cow is blue then the cow visits the dog. If something sees the cow and the cow sees the rabbit then it sees the rabbit. If something eats the bear then it sees the rabbit. If something sees the rabbit then the rabbit is red. If something visits the rabbit and the rabbit visits the dog then the rabbit eats the bear. All blue, cold things are round. If something visits the rabbit then the rabbit is round. If something is blue then it eats the bear. If something is red then it eats the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit eats the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-186_Q22", "context": "Charlie is nice. Dave is white. Fiona is green. Fiona is quiet. Gary is kind. Gary is quiet. Gary is white. All cold people are white. Kind, cold people are smart. If Fiona is white and Fiona is kind then Fiona is nice. Kind, green people are cold. All green, quiet people are smart. If someone is kind and nice then they are green. If someone is smart then they are kind. If someone is cold then they are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-352_Q17", "context": "The cat eats the rabbit. The cat visits the cow. The cow eats the cat. The cow eats the rabbit. The cow is kind. The cow is not young. The cow likes the cat. The cow does not like the dog. The cow visits the dog. The dog does not eat the rabbit. The dog is young. The rabbit does not eat the dog. If something visits the rabbit then the rabbit is round. If the cow likes the rabbit and the cow does not visit the dog then the rabbit does not like the cow. If something visits the rabbit then the rabbit eats the cow. If the cow eats the rabbit and the rabbit eats the cow then the cow eats the dog. If something is kind then it visits the rabbit. If something eats the dog then the dog is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-967_Q12", "context": "The bald eagle chases the lion. The bald eagle chases the squirrel. The bald eagle eats the lion. The bald eagle eats the rabbit. The bald eagle is rough. The bald eagle likes the lion. The bald eagle likes the squirrel. The lion eats the squirrel. The lion is cold. The rabbit is rough. The squirrel is blue. If someone eats the rabbit and they are rough then they are round. If someone likes the rabbit then the rabbit likes the squirrel. If the rabbit eats the lion and the lion likes the rabbit then the lion likes the bald eagle. Cold people are round. If someone eats the rabbit and they chase the squirrel then they like the bald eagle. If the rabbit likes the lion and the rabbit chases the squirrel then the lion likes the bald eagle. If someone likes the squirrel then they eat the rabbit. If someone chases the bald eagle and the bald eagle eats the lion then the bald eagle likes the squirrel. If someone likes the bald eagle then they like the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-511_Q2", "context": "Bob is quiet. Bob is red. Bob is rough. Charlie is cold. Charlie is quiet. Dave is quiet. Harry is cold. All quiet, cold things are furry. If something is cold then it is white. If Harry is furry and Harry is white then Harry is red. If Dave is blue then Dave is furry. If something is red then it is rough. If something is white then it is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-149_Q14", "context": "The bald eagle likes the cat. The cat is cold. The cat is rough. The cat likes the bald eagle. The cat needs the squirrel. The rabbit needs the cat. The rabbit needs the squirrel. The rabbit sees the bald eagle. The rabbit sees the cat. The squirrel is big. The squirrel is cold. The squirrel is green. The squirrel likes the rabbit. The squirrel needs the cat. If something likes the rabbit and the rabbit sees the bald eagle then it likes the bald eagle. If something is rough then it needs the bald eagle. If something likes the cat and it is big then the cat needs the squirrel. If something needs the bald eagle then it likes the squirrel. If something is rough and it sees the bald eagle then it is cold. If something likes the squirrel then the squirrel is rough. If something needs the cat then it sees the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit likes the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-545_Q10", "context": "The bald eagle sees the dog. The bald eagle sees the mouse. The bald eagle sees the squirrel. The dog chases the bald eagle. The dog is kind. The dog is not rough. The dog sees the mouse. The mouse is not young. The mouse sees the bald eagle. The squirrel does not need the dog. The squirrel sees the dog. If the mouse chases the bald eagle then the bald eagle chases the mouse. If something sees the dog then the dog needs the bald eagle. If something is young and it sees the mouse then the mouse chases the bald eagle. If something sees the mouse and the mouse does not see the squirrel then it is young. If something needs the squirrel then it is young. If something is kind and it sees the bald eagle then it is young. If something is cold then it sees the mouse. If something chases the mouse then it needs the mouse. If something sees the mouse then it sees the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not chase the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-716_Q6", "context": "Anne is not big. Anne is green. Anne is not nice. Anne is red. Anne is round. Anne is white. Charlie is nice. Erin is big. Erin is white. Fiona is blue. Fiona is green. Fiona is red. All nice things are big. If something is white then it is red. If something is white and red then it is blue. Big things are blue. If something is nice and not round then it is blue. If something is big and blue then it is white. If something is round and not blue then it is green. If something is red then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-223_Q3", "context": "Bob is furry. Bob is kind. Bob is rough. Bob is round. Dave is furry. Erin is furry. Erin is rough. Erin is young. Fiona is furry. Fiona is kind. Fiona is quiet. Fiona is round. Fiona is white. Fiona is young. If someone is white then they are kind. All young people are white. Furry people are rough. White, round people are young. If someone is kind then they are round. If Dave is furry then Dave is quiet. Round, white people are furry. All round, furry people are quiet. All quiet, rough people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1416_Q14", "context": "Charlie is big. Charlie is nice. Dave is green. Dave is kind. Dave is young. Erin is green. Erin is kind. Erin is nice. Erin is young. Gary is nice. Gary is white. If something is big then it is quiet. All nice, quiet things are young. If something is kind then it is nice. If Erin is white then Erin is nice. All young, quiet things are green. White things are kind. Green, young things are quiet. All green, nice things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-277_Q21", "context": "The cat needs the dog. The dog is green. The dog visits the cat. The dog visits the tiger. The squirrel is red. The squirrel visits the dog. The tiger is rough. The tiger likes the cat. The tiger needs the dog. The tiger visits the cat. All rough people are cold. If someone likes the dog then the dog needs the tiger. If someone is cold then they visit the squirrel. If someone needs the squirrel and the squirrel likes the tiger then they need the cat. If someone is rough and they visit the squirrel then the squirrel is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not visit the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-327_Q14", "context": "The bear eats the squirrel. The bear is young. The bear likes the rabbit. The cow is big. The cow is young. The cow needs the squirrel. The rabbit is rough. The rabbit is young. The rabbit likes the squirrel. The rabbit needs the cow. The rabbit needs the squirrel. The squirrel likes the bear. If something eats the cow then it is nice. If the rabbit is young and the rabbit eats the bear then the rabbit eats the squirrel. If something likes the squirrel and it is big then the squirrel needs the bear. If something eats the squirrel and the squirrel needs the cow then it needs the squirrel. If something likes the squirrel and the squirrel is blue then the squirrel eats the cow. If something is blue and it likes the squirrel then it eats the cow. If something is nice then it needs the cow. If something likes the bear then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit eats the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-283_Q19", "context": "The bear is nice. The bear sees the cat. The bear visits the cat. The bear visits the mouse. The cat is nice. The cat sees the bear. The cow needs the bear. The cow visits the mouse. The mouse sees the cat. The mouse visits the bear. If someone sees the cow then they visit the cat. If someone is rough then they need the mouse. If someone needs the mouse and they need the bear then the mouse sees the bear. If someone visits the bear then they see the cow. If someone visits the cow and they are nice then the cow is red. If someone visits the mouse and they need the bear then the mouse needs the bear. If someone visits the cat and they visit the bear then the cat visits the mouse. If someone visits the mouse and the mouse is young then they are rough. If someone visits the bear then they are young.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not need the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-988_Q1", "context": "The cat eats the cow. The cat is young. The cow eats the cat. The cow is big. The cow is young. The cow sees the lion. The cow visits the dog. The dog eats the cat. The dog visits the cow. The dog visits the lion. The lion eats the cow. The lion is red. If something visits the cat and it sees the dog then the dog eats the lion. If the cat sees the cow and the cow eats the cat then the cat visits the cow. If something is red and it visits the dog then it visits the cow. If something sees the dog and the dog sees the cat then the dog is cold. If something visits the dog and the dog visits the cat then the cat sees the lion. If something sees the cow then it visits the cat. If something sees the lion then it sees the dog. If something sees the dog and the dog eats the cat then the dog sees the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion eats the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-617_Q6", "context": "Charlie is blue. Charlie is cold. Erin is furry. Erin is green. Erin is nice. Gary is green. Gary is nice. Harry is blue. Harry is cold. Harry is furry. Harry is green. Harry is nice. Harry is smart. Harry is white. Furry, cold people are green. All white people are furry. If someone is green and furry then they are smart. If someone is smart then they are white. If someone is furry then they are smart. If Charlie is blue then Charlie is smart. If someone is nice and green then they are cold. If someone is white and green then they are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-473_Q20", "context": "The bald eagle chases the dog. The bald eagle eats the dog. The bald eagle is rough. The bald eagle does not need the cat. The cat chases the dog. The cat does not eat the cow. The cow chases the cat. The cow does not eat the cat. The cow eats the dog. The cow is nice. The cow needs the cat. The cow needs the dog. The dog does not chase the bald eagle. The dog chases the cow. The dog does not eat the cat. The dog eats the cow. If someone needs the cow then they eat the cat. All nice people are not green. If the cow is young then the cow chases the cat. If someone eats the dog then they are nice. If someone chases the dog and they are not green then the dog needs the bald eagle. If someone needs the dog and they eat the dog then they eat the cow. If someone needs the bald eagle then the bald eagle needs the dog. If someone needs the dog and they do not eat the dog then they chase the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-603_Q12", "context": "Anne is blue. Anne is cold. Anne is furry. Anne is nice. Anne is quiet. Anne is young. Bob is blue. Bob is cold. Bob is furry. Bob is nice. Bob is quiet. Bob is smart. Bob is young. Charlie is quiet. Charlie is young. Gary is young. If someone is blue and cold then they are smart. All blue, young people are cold. If Charlie is smart then Charlie is furry. If someone is young and quiet then they are blue. If someone is furry and young then they are cold. If someone is nice and cold then they are young. Furry people are nice. If Gary is furry and Gary is quiet then Gary is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-851_Q9", "context": "The cow chases the mouse. The cow is cold. The cow is red. The cow likes the mouse. The cow likes the squirrel. The cow sees the rabbit. The mouse is cold. The mouse is green. The mouse likes the rabbit. The mouse sees the rabbit. The rabbit is nice. The rabbit is red. The rabbit sees the cow. The squirrel is red. The squirrel likes the rabbit. The squirrel sees the mouse. If someone chases the rabbit then the rabbit is young. If someone likes the rabbit and the rabbit likes the cow then the rabbit chases the squirrel. If someone likes the mouse and they chase the cow then the mouse chases the rabbit. If someone likes the mouse then they see the cow. If someone likes the mouse and the mouse sees the rabbit then the mouse likes the squirrel. If someone is young and green then they see the squirrel. All red people are green. If someone likes the mouse and the mouse likes the squirrel then they chase the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-322_Q7", "context": "The bear chases the rabbit. The cat needs the rabbit. The dog chases the cat. The dog is big. The dog is cold. The rabbit eats the cat. The rabbit does not need the cat. If something eats the bear then it eats the rabbit. If something eats the dog then it chases the bear. If something chases the bear then the bear needs the rabbit. If something needs the rabbit then it eats the dog. If something is big and it eats the dog then it does not chase the dog. If the rabbit chases the bear then the rabbit needs the dog. If something is cold and not big then it does not eat the bear. If the bear chases the cat and the bear chases the dog then the dog does not need the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear needs the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-659_Q18", "context": "Dave is kind. Fiona is big. Gary is big. Gary is blue. Gary is cold. Gary is rough. Harry is big. If Gary is cold then Gary is furry. All rough things are round. All furry things are round. If Harry is blue and Harry is round then Harry is furry. If something is big then it is rough. If something is furry then it is rough. If Harry is furry and Harry is rough then Harry is kind. Round things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-363_Q19", "context": "Anne is nice. Anne is round. Anne is white. Charlie is nice. Charlie is rough. Fiona is kind. Harry is white. Rough, round people are big. Quiet, white people are rough. Round people are quiet. Round people are quiet. If someone is white then they are round. All big people are nice. All round, white people are not kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-877_Q15", "context": "The dog chases the lion. The dog chases the rabbit. The dog is big. The dog sees the lion. The lion sees the dog. The mouse sees the dog. The rabbit sees the lion. If someone sees the mouse then they eat the rabbit. If someone chases the mouse then they see the mouse. If someone sees the rabbit then the rabbit chases the dog. If someone chases the mouse then they eat the mouse. If the dog chases the mouse and the dog sees the lion then the lion is big. If someone chases the lion then the lion is young. If someone sees the mouse then they eat the rabbit. If someone chases the rabbit then the rabbit is nice. If someone is big then they chase the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not eat the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-729_Q10", "context": "The bald eagle is kind. The bald eagle is nice. The bald eagle is rough. The bald eagle does not need the cat. The cat is cold. The cat needs the mouse. The dog eats the mouse. The dog is kind. The dog is round. The dog likes the cat. The dog needs the bald eagle. The mouse is nice. The mouse does not like the bald eagle. The mouse likes the dog. If someone likes the dog then they eat the dog. If someone eats the dog then they eat the cat. Round people are nice. If someone eats the cat then the cat likes the dog. If someone needs the mouse and they do not eat the cat then they do not like the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not eat the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-195_Q1", "context": "The cow likes the dog. The cow likes the mouse. The dog is big. The dog is cold. The dog sees the cow. The mouse eats the cow. The mouse is young. The squirrel is big. The squirrel is kind. The squirrel likes the cow. The squirrel likes the mouse. If the dog is nice and the dog eats the cow then the cow is cold. If something is cold then it is nice. If something is nice then it eats the cow. If something eats the dog and it eats the mouse then the mouse sees the squirrel. If something likes the squirrel and it is young then the squirrel eats the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog sees the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-710_Q15", "context": "Bob is big. Bob is green. Bob is red. Erin is big. Erin is green. Erin is nice. Erin is quiet. Erin is red. Erin is smart. Fiona is big. Fiona is nice. Fiona is red. Fiona is rough. Gary is quiet. All rough people are quiet. If someone is quiet then they are big. If Gary is nice then Gary is green. If someone is rough and nice then they are big. All red people are nice. If someone is smart and nice then they are red. Green people are rough. If someone is big then they are red. Green people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-983_Q22", "context": "The bald eagle does not eat the lion. The lion eats the mouse. The mouse does not chase the lion. The mouse eats the bald eagle. The mouse visits the lion. The squirrel chases the bald eagle. The squirrel chases the mouse. The squirrel eats the lion. The squirrel eats the mouse. The squirrel is not green. The squirrel is round. The squirrel visits the mouse. If someone is young and green then they eat the mouse. If someone is green then they eat the mouse. If the bald eagle visits the mouse then the mouse is green. If someone chases the squirrel and the squirrel eats the lion then the squirrel chases the mouse. If someone eats the mouse then they visit the mouse. If someone eats the mouse and they are kind then they eat the squirrel. If someone chases the bald eagle then the bald eagle is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion eats the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-840_Q4", "context": "The cat eats the squirrel. The cat is red. The cat visits the mouse. The lion eats the cat. The lion visits the mouse. The lion visits the squirrel. The mouse eats the cat. The mouse is young. The mouse visits the cat. The squirrel eats the lion. The squirrel is blue. The squirrel is green. If something eats the squirrel then the squirrel sees the mouse. If the cat is green then the cat sees the mouse. If something eats the lion then the lion is round. If something is green then it eats the mouse. All blue things are red. If something is round and it eats the mouse then it is blue. If something eats the lion and it is red then the lion is green. If something visits the mouse and it is red then the mouse eats the squirrel. If something sees the lion and the lion sees the cat then it sees the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-486_Q2", "context": "The bear likes the cow. The cow eats the tiger. The cow likes the squirrel. The cow visits the squirrel. The cow visits the tiger. The squirrel is young. The squirrel likes the cow. The tiger eats the bear. The tiger is round. The tiger is young. The tiger visits the squirrel. If someone is young and they like the tiger then the tiger eats the cow. If someone likes the squirrel then they like the cow. If someone likes the bear and they eat the squirrel then the squirrel is nice. If someone is big and young then they eat the cow. If someone is big then they are young. If someone eats the cow then they like the squirrel. If someone is young then they like the bear. If someone likes the bear then they are big.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not eat the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-971_Q21", "context": "The bald eagle is rough. The cow visits the bald eagle. The cow visits the lion. The dog does not eat the cow. The dog sees the lion. The dog visits the bald eagle. The lion sees the bald eagle. If someone visits the lion then they are young. If the cow is rough then the cow eats the lion. If someone sees the cow then they are rough. If someone is cold then they are rough. If someone sees the dog then they are cold. If someone visits the lion then they see the dog. If someone eats the lion then the lion visits the bald eagle. If someone visits the lion and they are big then they eat the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not see the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-74_Q21", "context": "The bear is green. The bear is not kind. The bear likes the lion. The bear likes the mouse. The bear needs the lion. The bear sees the squirrel. The lion sees the bear. The mouse is not kind. The mouse is not round. The mouse likes the bear. The mouse needs the squirrel. The mouse does not see the squirrel. The squirrel is not big. The squirrel is green. The squirrel needs the lion. The squirrel sees the lion. If someone is young then they are not big. If the bear does not need the mouse then the mouse is not young. If someone likes the mouse and the mouse is big then the mouse is round. If someone sees the mouse then the mouse sees the bear. If someone needs the lion and they do not need the mouse then they see the bear. If someone likes the squirrel and they are not round then they do not need the lion. If someone sees the mouse and they are not round then they like the squirrel. If someone sees the bear then they see the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not need the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1203_Q20", "context": "Bob is kind. Bob is young. Dave is blue. Dave is round. Erin is young. Harry is blue. Harry is green. If something is young then it is green. All green, rough things are round. If Dave is white and Dave is green then Dave is kind. Green things are blue. If something is blue and young then it is kind. If Erin is young and Erin is kind then Erin is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-441_Q14", "context": "The bald eagle chases the mouse. The bald eagle visits the bear. The bear is rough. The bear visits the bald eagle. The bear does not visit the mouse. The mouse chases the bald eagle. The squirrel chases the bear. If something is blue then it needs the bear. If something chases the bear and it visits the bald eagle then it does not need the bear. If something visits the mouse and the mouse is blue then the mouse does not visit the bear. If something needs the mouse then the mouse visits the bald eagle. If the bear visits the squirrel then the bear needs the squirrel. If something chases the bear and the bear needs the squirrel then the squirrel needs the mouse. If something chases the bear and it visits the mouse then the bear does not visit the bald eagle. If something visits the bald eagle then it visits the squirrel. If the mouse does not visit the bear then the mouse is young.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel needs the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-409_Q7", "context": "Anne is big. Anne is blue. Anne is cold. Anne is white. Bob is cold. Fiona is big. Fiona is blue. Fiona is quiet. Harry is blue. Harry is not cold. All kind, big things are white. All cold things are big. Blue things are kind. All cold things are blue. Kind things are blue. Cold, rough things are not quiet. If something is cold and not blue then it is rough. If something is white then it is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-58_Q16", "context": "Anne is cold. Anne is nice. Anne is round. Anne is young. Charlie is green. Charlie is young. Dave is quiet. Erin is blue. Erin is green. Erin is not quiet. Erin is young. All cold, young people are nice. Young people are blue. Cold, round people are blue. If Dave is round then Dave is nice. If Dave is quiet then Dave is not cold. If Charlie is quiet then Charlie is nice. All quiet people are round. Blue, nice people are green. If someone is nice then they are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-702_Q4", "context": "The bald eagle eats the dog. The bald eagle likes the dog. The cow eats the lion. The cow likes the lion. The dog is nice. The lion chases the dog. The lion eats the bald eagle. The lion eats the cow. The lion is green. The lion is not rough. The lion likes the bald eagle. If the lion likes the cow then the cow is rough. If something chases the lion then it eats the dog. If the lion chases the dog and the lion is nice then the dog chases the lion. If something eats the cow then it is nice. If something is kind and it likes the lion then it does not eat the bald eagle. If something eats the dog then it likes the lion. All nice things are kind. If something eats the dog then the dog chases the cow. If something likes the dog then it is not green.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not like the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-295_Q6", "context": "Anne is furry. Anne is not green. Anne is quiet. Anne is smart. Charlie is cold. Charlie is green. Charlie is quiet. Charlie is smart. Dave is cold. Dave is not green. Fiona is furry. Fiona is green. Fiona is nice. Fiona is not quiet. If someone is smart then they are quiet. Nice, smart people are quiet. If someone is quiet then they are nice. If Dave is cold then Dave is smart. If someone is nice then they are red. If someone is red and nice then they are furry. If Dave is not nice then Dave is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1355_Q3", "context": "Anne is blue. Anne is nice. Charlie is blue. Charlie is green. Charlie is kind. Charlie is nice. Charlie is red. Charlie is rough. Charlie is white. Fiona is white. Gary is blue. Gary is white. All kind, white things are green. Green, rough things are blue. All kind, blue things are nice. All white things are kind. All green, nice things are white. If Gary is rough then Gary is green. If something is green and white then it is rough. Rough things are white. If Charlie is rough then Charlie is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-699_Q5", "context": "The dog eats the squirrel. The dog likes the rabbit. The dog likes the tiger. The dog sees the squirrel. The dog sees the tiger. The rabbit is kind. The rabbit sees the squirrel. The squirrel eats the rabbit. The tiger eats the dog. The tiger sees the dog. If something likes the rabbit and the rabbit is rough then it eats the tiger. If something eats the tiger then the tiger is kind. If the tiger is rough then the tiger does not like the dog. If something is rough and not round then it sees the rabbit. All kind things are rough. If something eats the rabbit then the rabbit is nice. If something is rough then it eats the squirrel. If something likes the rabbit and the rabbit sees the tiger then the tiger sees the dog. If something eats the tiger then the tiger likes the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit eats the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-968_Q16", "context": "Anne is furry. Dave is cold. Dave is rough. Dave is white. Fiona is quiet. Harry is cold. Harry is quiet. Quiet, rough people are furry. All green people are blue. If Fiona is blue and Fiona is quiet then Fiona is green. If someone is green and blue then they are rough. If someone is cold then they are blue. All white people are green. If someone is blue then they are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-561_Q6", "context": "Charlie is round. Erin is furry. Erin is green. Erin is nice. Erin is young. Gary is cold. Gary is green. Gary is quiet. Harry is furry. Harry is green. Harry is nice. Harry is young. All round things are furry. If something is nice and round then it is young. If something is furry then it is round. If something is quiet and cold then it is green. Cold things are quiet. Nice things are furry. Furry things are cold. If Harry is furry and Harry is cold then Harry is young. Quiet things are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-380_Q22", "context": "The bald eagle chases the lion. The bald eagle visits the lion. The bear is green. The bear is red. The cow visits the lion. The lion is rough. The lion visits the bear. If someone visits the cow then the cow is kind. If someone visits the cow and they are kind then they are rough. If someone is red then they chase the bear. If someone is red then they visit the cow. If someone is red and they visit the cow then they are kind. If someone visits the cow then they like the bear. If someone chases the bald eagle then the bald eagle likes the cow. If someone is rough and they like the bear then they chase the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle likes the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-774_Q18", "context": "The bear is nice. The bear needs the cat. The bear visits the lion. The cat eats the mouse. The cat is not kind. The lion does not need the bear. The lion visits the mouse. The mouse needs the bear. The mouse visits the cat. The mouse visits the lion. If something visits the mouse then it is big. If something eats the bear then the bear visits the mouse. If the lion is red then the lion is nice. Cold things are red. If something is big then it eats the bear. If something eats the lion and it is not kind then the lion does not visit the cat. If something eats the mouse and the mouse is not big then it does not eat the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat eats the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-274_Q9", "context": "Anne is cold. Anne is rough. Charlie is nice. Charlie is round. Dave is cold. Dave is rough. Erin is kind. If someone is smart then they are cold. Round, cold people are rough. If someone is cold then they are rough. All rough people are nice. If someone is round then they are smart. If Erin is quiet and Erin is round then Erin is cold. Kind people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1231_Q20", "context": "Bob is not cold. Bob is nice. Charlie is rough. Erin is nice. Erin is smart. Gary is rough. Gary is smart. Young, smart things are red. If something is cold and green then it is young. Nice things are young. Red, rough things are green. If something is young and nice then it is rough. Rough things are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-164_Q12", "context": "The bald eagle is blue. The bald eagle does not see the mouse. The bald eagle sees the rabbit. The bald eagle does not visit the rabbit. The cow is young. The cow sees the mouse. The cow sees the rabbit. The mouse does not chase the cow. The mouse is blue. The rabbit is blue. The rabbit sees the cow. If someone is cold and they chase the bald eagle then the bald eagle sees the mouse. If someone chases the cow then they chase the bald eagle. If someone chases the rabbit then they do not visit the bald eagle. If someone chases the bald eagle and the bald eagle sees the rabbit then the bald eagle sees the cow. If the mouse is cold then the mouse sees the rabbit. If someone sees the rabbit and the rabbit chases the mouse then the rabbit does not visit the cow. If someone sees the bald eagle then they are not green. If someone sees the rabbit and they are young then they do not visit the rabbit. If someone sees the cow and the cow sees the mouse then they chase the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not chase the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-395_Q10", "context": "The bald eagle is kind. The bald eagle is rough. The bald eagle likes the cat. The cat is round. The cat likes the bald eagle. The cat likes the tiger. The cat needs the tiger. The lion is rough. The lion needs the cat. The tiger chases the bald eagle. The tiger is big. The tiger is kind. The tiger is round. The tiger likes the cat. The tiger likes the lion. The tiger needs the bald eagle. If the cat likes the tiger then the cat likes the lion. If the cat needs the lion then the lion likes the bald eagle. If something chases the tiger and it chases the lion then it is big. If something chases the lion then it needs the lion. If something likes the bald eagle then it chases the lion. If something chases the lion then it is kind. If something needs the lion then it likes the lion. If something likes the cat and it chases the lion then it chases the tiger. If something chases the lion and it needs the cat then the cat likes the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not chase the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-821_Q6", "context": "Bob is cold. Bob is white. Bob is young. Erin is big. Erin is cold. Fiona is big. Harry is young. Kind, smart people are white. If someone is kind then they are smart. All big, white people are young. All cold people are kind. Big people are kind. All big, white people are blue. Young people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-395_Q24", "context": "The bear is not nice. The bear sees the dog. The bear sees the squirrel. The dog is big. The dog is red. The dog likes the mouse. The dog needs the bear. The mouse sees the dog. The squirrel is blue. The squirrel is not nice. The squirrel likes the bear. The squirrel does not like the dog. The squirrel likes the mouse. The squirrel needs the dog. The squirrel sees the bear. The squirrel does not see the mouse. If something is red and cold then it does not see the bear. If something is cold then it does not see the bear. If something needs the squirrel then it is big. If something sees the squirrel and it is red then the squirrel is blue. If the bear does not need the dog then the dog is blue. If something is big and it likes the bear then the bear is blue. If something is blue then it needs the squirrel. If the dog likes the squirrel then the dog does not see the bear. If the mouse sees the bear and the bear is not red then the bear is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear needs the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-33_Q15", "context": "The cow eats the tiger. The dog chases the squirrel. The dog is kind. The dog is rough. The dog sees the cow. The dog sees the squirrel. The squirrel chases the dog. The squirrel does not eat the cow. The squirrel is nice. The squirrel sees the cow. The squirrel sees the tiger. The tiger chases the dog. The tiger does not eat the dog. The tiger is big. The tiger is blue. The tiger sees the cow. If someone is big then they chase the tiger. If someone sees the cow and the cow eats the dog then the cow is big. If someone is big and they chase the tiger then the tiger sees the squirrel. If someone sees the cow and they eat the tiger then the tiger does not see the squirrel. If someone eats the cow and they eat the squirrel then the squirrel eats the cow. If someone chases the tiger then the tiger chases the cow. If someone sees the tiger and the tiger chases the dog then they are nice. If someone chases the cow and they are blue then they see the tiger. If someone is nice and they see the squirrel then they eat the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-535_Q9", "context": "The bear chases the mouse. The bear is blue. The bear is red. The dog chases the bear. The dog needs the mouse. The mouse is big. The mouse is blue. The mouse is round. The mouse needs the bear. The tiger is big. If something chases the bear then it sees the dog. If something sees the mouse and the mouse needs the tiger then it is red. If something sees the dog then it sees the mouse. If something sees the dog then it chases the bear. If something sees the mouse then the mouse chases the bear. If something needs the bear then it sees the tiger. If something needs the bear then it is cold. If the bear needs the mouse and the bear is cold then the bear sees the tiger. If something needs the tiger and it is big then the tiger is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse sees the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-294_Q18", "context": "The bald eagle eats the tiger. The bald eagle likes the lion. The cow chases the bald eagle. The cow chases the tiger. The cow eats the bald eagle. The cow eats the lion. The lion is rough. The tiger chases the bald eagle. The tiger eats the bald eagle. The tiger is rough. If someone likes the lion then the lion likes the tiger. If someone likes the cow then they eat the tiger. If someone is green then they chase the bald eagle. If someone chases the tiger then they are green. If the tiger likes the lion then the tiger likes the bald eagle. If the lion chases the bald eagle then the lion is big. If someone likes the tiger then they chase the tiger. If someone is cold and they eat the tiger then they chase the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion chases the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-475_Q20", "context": "The dog chases the squirrel. The dog is green. The dog is young. The dog visits the rabbit. The lion chases the squirrel. The lion likes the squirrel. The rabbit likes the lion. The squirrel chases the lion. The squirrel is blue. The squirrel is green. If the rabbit is kind then the rabbit chases the dog. If something chases the squirrel then it is kind. If something is green and it chases the rabbit then the rabbit likes the squirrel. If something likes the squirrel then it is blue. Young things are green. If the dog is kind then the dog chases the rabbit. If the squirrel visits the rabbit then the rabbit chases the squirrel. If the rabbit chases the squirrel then the squirrel is kind. If something is blue then it visits the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog likes the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-736_Q19", "context": "Anne is green. Anne is quiet. Bob is round. Dave is blue. Dave is nice. Dave is not quiet. Erin is green. Green things are blue. If Erin is green and Erin is round then Erin is quiet. If something is quiet and blue then it is young. If something is young and furry then it is round. If something is blue then it is furry. If Erin is furry then Erin is round. Green things are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-506_Q5", "context": "Charlie is quiet. Dave is quiet. Erin is nice. Erin is quiet. Erin is white. Fiona is quiet. Fiona is rough. If Dave is nice and Dave is rough then Dave is quiet. Red, nice people are white. Young people are red. If someone is young then they are red. If Erin is big and Erin is red then Erin is white. All red, white people are big. Red people are nice. Rough people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-470_Q5", "context": "Bob is furry. Bob is quiet. Bob is rough. Bob is white. Dave is cold. Dave is rough. Dave is white. Dave is young. Erin is cold. Erin is furry. Erin is quiet. Erin is rough. Erin is white. Erin is young. Gary is rough. Gary is white. If something is smart and cold then it is young. If something is white then it is quiet. Smart things are cold. Young, quiet things are furry. All quiet things are smart. If something is furry and rough then it is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-657_Q12", "context": "Charlie is green. Charlie is smart. Dave is furry. Gary is furry. Gary is rough. Gary is smart. Harry is green. If Harry is furry then Harry is nice. If someone is nice then they are not blue. If someone is green then they are nice. If someone is smart and rough then they are nice. If Dave is round then Dave is not blue. If someone is rough and furry then they are smart. All nice people are furry. Round, furry people are rough. All green, furry people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-276_Q1", "context": "The bald eagle chases the bear. The bald eagle eats the rabbit. The bald eagle does not like the tiger. The bear likes the tiger. The rabbit chases the tiger. The rabbit eats the bear. The rabbit is blue. The rabbit is red. The rabbit likes the bald eagle. The rabbit likes the tiger. The tiger is not green. The tiger likes the bald eagle. If someone is round then they eat the tiger. If someone chases the bald eagle and the bald eagle chases the rabbit then they chase the bear. If someone is green and big then they like the bear. If someone eats the rabbit then they are not red. If the tiger eats the rabbit and the bald eagle does not like the tiger then the tiger is round. If someone eats the tiger then they eat the rabbit. If someone is green and they like the tiger then the tiger likes the bald eagle. If someone likes the bear then the bear is round. If someone chases the tiger then the tiger likes the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not like the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-622_Q18", "context": "The cat sees the lion. The lion sees the squirrel. The lion visits the rabbit. The rabbit eats the cat. The rabbit does not eat the lion. The rabbit is round. The rabbit sees the cat. The rabbit sees the squirrel. The squirrel is red. The squirrel sees the lion. The squirrel visits the cat. The squirrel visits the lion. If something is blue then it does not visit the squirrel. If something visits the rabbit then it is young. If the lion visits the rabbit and the lion visits the cat then the rabbit visits the squirrel. If something visits the lion then the lion eats the rabbit. Young things are not blue. If something visits the squirrel then it visits the rabbit. If something visits the rabbit then it visits the cat. If something sees the lion and it is not blue then it eats the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel visits the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-235_Q4", "context": "The bear eats the rabbit. The bear needs the cat. The cat needs the mouse. The mouse is round. The mouse is young. The mouse does not visit the rabbit. The rabbit eats the bear. The rabbit eats the cat. The rabbit is cold. The rabbit needs the mouse. The rabbit visits the cat. The rabbit visits the mouse. If something visits the mouse then it is blue. If something is young and it visits the rabbit then it is blue. If something is big then it needs the bear. If something is blue and it eats the cat then the cat is big. If something eats the mouse then the mouse needs the bear. If something needs the bear then the bear visits the cat. If something visits the mouse then the mouse does not eat the bear. If something visits the cat then it is cold. If the mouse eats the bear then the bear visits the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse eats the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-221_Q7", "context": "The bear chases the cow. The bear eats the cat. The bear is not big. The cat eats the cow. The cat eats the rabbit. The cow does not chase the cat. The cow eats the cat. The cow does not eat the rabbit. The cow sees the cat. The rabbit chases the cow. The rabbit eats the bear. If something eats the bear then the bear chases the cat. If the rabbit chases the cat then the cat chases the rabbit. If something is big then it eats the rabbit. If the rabbit eats the bear then the bear eats the cow. If something is green then it is cold. If the bear eats the cow then the cow is green. If something is cold then it sees the rabbit. If something is round and it eats the cow then it is young. If something sees the rabbit then it does not chase the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-373_Q10", "context": "The mouse chases the rabbit. The mouse chases the squirrel. The mouse likes the squirrel. The mouse sees the squirrel. The rabbit chases the mouse. The rabbit is green. The rabbit likes the mouse. The rabbit likes the squirrel. The squirrel chases the rabbit. The squirrel is green. The squirrel is red. The squirrel sees the mouse. The squirrel sees the rabbit. The tiger chases the squirrel. The tiger likes the mouse. The tiger likes the rabbit. If someone sees the mouse then the mouse chases the rabbit. If someone is green then they chase the mouse. If someone sees the squirrel then the squirrel is round. If someone is rough then they see the tiger. If the squirrel sees the tiger and the squirrel is red then the tiger is green. If someone is red and they chase the mouse then they are rough. If someone chases the mouse then the mouse likes the squirrel. If someone sees the mouse and the mouse likes the rabbit then the mouse likes the squirrel. If someone chases the mouse then the mouse chases the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-695_Q21", "context": "Anne is blue. Anne is not young. Charlie is smart. Charlie is young. Erin is cold. Erin is round. Gary is green. If something is blue and not young then it is round. If something is green and blue then it is smart. Green, cold things are smart. Cold things are green. If Anne is young then Anne is round. If Anne is round then Anne is cold. Smart, cold things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-112_Q3", "context": "Anne is white. Charlie is white. Dave is cold. Dave is round. Dave is young. Fiona is cold. Fiona is round. Fiona is smart. Fiona is white. Fiona is young. If something is quiet and white then it is smart. If something is cold then it is round. If something is young and round then it is red. Smart, quiet things are cold. Smart things are young. Young, white things are smart. Young things are quiet. All white things are smart. Quiet things are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-181_Q8", "context": "Anne is nice. Anne is not smart. Bob is furry. Bob is green. Dave is smart. Erin is big. Erin is nice. All young things are furry. Furry, big things are young. If Dave is blue then Dave is young. If something is smart then it is blue. Young, green things are nice. Furry, smart things are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-802_Q15", "context": "Charlie is nice. Dave is green. Fiona is cold. Fiona is nice. Fiona is young. Gary is cold. Gary is not white. All green people are smart. Big, cold people are nice. Smart people are big. Big people are green. If Charlie is nice then Charlie is green. If Charlie is cold then Charlie is white. All nice, big people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-670_Q14", "context": "The bald eagle eats the dog. The bald eagle is not green. The bald eagle does not need the dog. The bald eagle needs the rabbit. The bald eagle does not visit the dog. The dog is green. The dog needs the bald eagle. The rabbit eats the squirrel. The rabbit is not young. The rabbit needs the dog. The squirrel is kind. If someone needs the squirrel then the squirrel needs the bald eagle. If someone eats the rabbit then they are young. If the dog is green and the dog needs the rabbit then the dog visits the rabbit. Nice people are not green. If the dog is green then the dog eats the bald eagle. If the dog is not young then the dog eats the bald eagle. If someone is green and they eat the dog then the dog needs the bald eagle. If someone eats the bald eagle then they need the rabbit. If someone visits the rabbit then the rabbit is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel needs the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-870_Q8", "context": "The bald eagle does not eat the bear. The bald eagle is nice. The bear eats the tiger. The bear is big. The bear is blue. The bear is not nice. The bear is young. The mouse does not eat the bear. The tiger eats the bear. The tiger does not eat the mouse. If something is young then it needs the tiger. If the mouse does not eat the bald eagle then the mouse does not chase the bald eagle. If something needs the tiger then the tiger needs the mouse. If something needs the tiger and it eats the bear then the tiger is blue. If something needs the mouse then it is young. If the mouse is young and the bald eagle does not eat the mouse then the bald eagle chases the tiger. If something chases the bald eagle then it chases the tiger. If something chases the mouse then the mouse eats the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-544_Q1", "context": "The bald eagle chases the tiger. The bald eagle likes the cow. The bear is green. The bear needs the cow. The cow chases the tiger. The cow is round. The cow needs the bear. The cow needs the tiger. The tiger chases the bear. The tiger is big. If something likes the bear then it likes the cow. If something is big then it likes the bear. If something likes the tiger then it is green. If the tiger likes the cow then the cow is big. If something likes the tiger and the tiger needs the bald eagle then the tiger chases the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle chases the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-477_Q1", "context": "The bald eagle likes the bear. The bear is kind. The bear likes the bald eagle. The dog chases the bald eagle. The dog is red. The tiger chases the bear. The tiger is round. If something sees the tiger then it chases the bear. If something likes the bear then it likes the bald eagle. If something is kind then it likes the bald eagle. If something is red and it chases the bear then the bear chases the bald eagle. If something sees the dog then it sees the tiger. Red things are round. If something chases the bald eagle then it sees the dog. If the bear chases the bald eagle and the bald eagle does not like the bear then the bear chases the dog. If something likes the dog then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear likes the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-721_Q7", "context": "Bob is big. Bob is cold. Bob is kind. Bob is quiet. Charlie is furry. Dave is furry. Erin is big. Erin is furry. Erin is kind. Erin is quiet. Red, cold people are big. If someone is cold and furry then they are red. Furry people are cold. If someone is cold and red then they are furry. All kind, furry people are cold. If Charlie is big then Charlie is kind. If someone is quiet and green then they are big. All cold, kind people are quiet. All quiet people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-823_Q2", "context": "Charlie is furry. Charlie is green. Charlie is nice. Charlie is quiet. Charlie is rough. Charlie is white. Erin is green. Fiona is nice. Fiona is rough. Fiona is white. Fiona is young. Harry is furry. Harry is rough. Harry is white. Rough things are furry. If something is quiet then it is white. If Harry is green and Harry is rough then Harry is nice. White things are young. Rough things are young. If something is rough and green then it is quiet. If something is green then it is quiet. Rough, furry things are white. If something is green and young then it is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-950_Q11", "context": "The bald eagle chases the bear. The bald eagle is nice. The bald eagle likes the bear. The bald eagle likes the cat. The bald eagle likes the dog. The bald eagle sees the bear. The bald eagle sees the dog. The bear chases the cat. The bear likes the bald eagle. The cat chases the dog. The dog is blue. The dog is rough. If something likes the bald eagle and the bald eagle is kind then the bald eagle sees the dog. If the bald eagle likes the cat and the bald eagle sees the cat then the cat is nice. If something sees the bear and it is blue then it sees the bald eagle. If something is cold then it sees the cat. If something is cold and it sees the cat then the cat chases the dog. If something chases the dog then the dog chases the bald eagle. All nice things are cold. If the cat likes the bear then the cat likes the bald eagle. If something is cold then it likes the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat sees the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-366_Q10", "context": "Charlie is blue. Charlie is cold. Charlie is white. Dave is blue. Dave is quiet. Gary is blue. Gary is round. Harry is not green. Harry is quiet. Harry is not white. Red, round people are cold. All red people are green. If someone is green then they are round. If Dave is not blue then Dave is not green. If someone is blue then they are red. All cold people are red. All cold people are white. If Gary is green and Gary is cold then Gary is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-136_Q8", "context": "Anne is rough. Bob is blue. Bob is nice. Gary is blue. Gary is rough. Gary is smart. Gary is young. Harry is blue. Harry is kind. Harry is nice. Harry is quiet. Harry is rough. Quiet things are kind. All blue, rough things are quiet. All rough things are blue. If something is kind then it is nice. Nice, blue things are smart. Rough, kind things are nice. If Gary is smart then Gary is young. If something is blue then it is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-587_Q6", "context": "Bob is nice. Dave is big. Dave is kind. Dave is nice. Erin is big. Fiona is big. Fiona is blue. Blue, kind things are red. All young, blue things are kind. If Bob is big and Bob is kind then Bob is young. Nice things are blue. All big, blue things are young. If something is young then it is quiet. Kind things are nice. If something is big then it is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-495_Q2", "context": "Anne is green. Anne is kind. Erin is not rough. Fiona is nice. Fiona is white. Harry is kind. Harry is not nice. Red things are rough. All white, kind things are big. If something is green and not kind then it is big. Big, nice things are green. All kind things are green. Kind, big things are red. Rough, green things are red. Red, rough things are not nice. If something is kind then it is white.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-164_Q8", "context": "The bald eagle is blue. The bald eagle does not see the mouse. The bald eagle sees the rabbit. The bald eagle does not visit the rabbit. The cow is young. The cow sees the mouse. The cow sees the rabbit. The mouse does not chase the cow. The mouse is blue. The rabbit is blue. The rabbit sees the cow. If someone is cold and they chase the bald eagle then the bald eagle sees the mouse. If someone chases the cow then they chase the bald eagle. If someone chases the rabbit then they do not visit the bald eagle. If someone chases the bald eagle and the bald eagle sees the rabbit then the bald eagle sees the cow. If the mouse is cold then the mouse sees the rabbit. If someone sees the rabbit and the rabbit chases the mouse then the rabbit does not visit the cow. If someone sees the bald eagle then they are not green. If someone sees the rabbit and they are young then they do not visit the rabbit. If someone sees the cow and the cow sees the mouse then they chase the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not see the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-646_Q8", "context": "The dog chases the tiger. The dog is rough. The dog likes the tiger. The dog needs the tiger. The rabbit is not young. The rabbit needs the dog. The rabbit needs the tiger. The squirrel is blue. The squirrel is not young. The squirrel likes the dog. The squirrel likes the rabbit. The tiger is not blue. The tiger is rough. The tiger likes the squirrel. If the squirrel chases the dog and the dog chases the rabbit then the dog needs the tiger. If someone chases the squirrel and the squirrel is rough then they are young. If someone needs the squirrel then the squirrel needs the dog. If someone chases the tiger and they like the squirrel then the squirrel is rough. If someone likes the tiger then they do not chase the squirrel. If someone chases the squirrel then the squirrel is round. If someone needs the dog then they are round. If someone is round and blue then they like the tiger. If someone needs the dog then they need the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not need the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-885_Q5", "context": "The cat chases the rabbit. The lion chases the rabbit. The lion is kind. The lion visits the rabbit. The lion visits the squirrel. The rabbit chases the squirrel. The rabbit eats the lion. The rabbit is cold. The rabbit is young. The rabbit visits the lion. The squirrel chases the cat. The squirrel chases the lion. The squirrel eats the lion. The squirrel is red. If something eats the rabbit then the rabbit eats the squirrel. If something is kind and it chases the squirrel then the squirrel is kind. If something visits the cat then the cat is red. All red things are nice. If something is nice and it chases the rabbit then the rabbit visits the squirrel. If something visits the cat and the cat visits the lion then the cat visits the squirrel. If something eats the squirrel then the squirrel visits the cat. If something chases the squirrel and it is nice then it eats the rabbit. If something chases the rabbit and it is kind then the rabbit is red.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-966_Q5", "context": "The bald eagle needs the bear. The bald eagle visits the bear. The bald eagle visits the dog. The bear is green. The bear is kind. The bear likes the lion. The bear needs the lion. The bear visits the bald eagle. The bear visits the lion. The dog needs the lion. The lion is big. The lion is blue. The lion is green. The lion is nice. The lion likes the dog. The lion visits the dog. If something is big then it likes the lion. If the bear is blue then the bear is nice. If the lion needs the bear then the lion visits the dog. If something is kind and it visits the dog then the dog is big. If the dog is blue and the dog visits the bear then the dog visits the lion. If the bear is nice and the bear visits the bald eagle then the bear visits the dog. Green things are blue. If something is kind and it needs the dog then it likes the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-944_Q12", "context": "The dog chases the lion. The dog chases the rabbit. The lion eats the squirrel. The lion is kind. The rabbit chases the dog. The rabbit eats the dog. The rabbit eats the squirrel. The rabbit is cold. The squirrel is big. The squirrel is kind. If the dog is young and the dog chases the rabbit then the rabbit likes the lion. If something eats the lion and it is big then the lion is young. If something likes the squirrel then the squirrel eats the rabbit. If something chases the dog then the dog likes the lion. If something eats the dog then it is blue. If something likes the lion then it is young. If something is young then it is big. If the rabbit chases the squirrel and the rabbit is kind then the squirrel is young.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-825_Q1", "context": "The cow is blue. The cow sees the mouse. The cow does not visit the rabbit. The dog sees the mouse. The dog visits the mouse. The mouse is rough. The mouse needs the cow. The mouse does not need the rabbit. The mouse sees the rabbit. The mouse visits the cow. The rabbit needs the mouse. If someone needs the dog then the dog needs the mouse. If someone needs the rabbit and they visit the rabbit then they see the mouse. If someone visits the mouse then the mouse sees the rabbit. If someone sees the cow then they need the dog. If someone needs the mouse then they see the cow. If the cow sees the mouse and the cow is nice then the cow visits the mouse. If someone sees the rabbit and they do not visit the dog then they are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not visit the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-427_Q15", "context": "Anne is big. Anne is smart. Bob is big. Bob is cold. Bob is rough. Bob is white. Charlie is big. Charlie is blue. Charlie is cold. Charlie is white. Gary is cold. Gary is rough. If someone is cold then they are nice. Cold, blue people are white. If someone is big then they are rough. White people are rough. If someone is rough then they are cold. All nice, rough people are blue. Blue people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-136_Q5", "context": "Anne is rough. Bob is blue. Bob is nice. Gary is blue. Gary is rough. Gary is smart. Gary is young. Harry is blue. Harry is kind. Harry is nice. Harry is quiet. Harry is rough. Quiet things are kind. All blue, rough things are quiet. All rough things are blue. If something is kind then it is nice. Nice, blue things are smart. Rough, kind things are nice. If Gary is smart then Gary is young. If something is blue then it is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-269_Q13", "context": "The bear sees the rabbit. The bear sees the squirrel. The rabbit eats the bear. The rabbit likes the bear. The squirrel is nice. The squirrel likes the tiger. The tiger eats the rabbit. The tiger likes the rabbit. The tiger sees the bear. The tiger sees the rabbit. If something eats the tiger then it is red. If something likes the rabbit then it likes the bear. If something is nice and it likes the bear then it is red. If the bear sees the rabbit then the rabbit is blue. If something eats the squirrel then the squirrel likes the rabbit. If something eats the tiger and the tiger sees the bear then the tiger eats the squirrel. If something eats the bear and the bear sees the squirrel then the bear eats the tiger. If something likes the tiger then the tiger eats the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not like the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-741_Q1", "context": "The bald eagle does not need the bear. The bear eats the squirrel. The bear is big. The cat visits the bald eagle. The cat visits the bear. The squirrel does not eat the bear. The squirrel is cold. The squirrel is rough. The squirrel is young. The squirrel does not need the bald eagle. The squirrel needs the bear. The squirrel visits the cat. If something visits the bald eagle then the bald eagle visits the squirrel. If something visits the squirrel then it is young. If something needs the bald eagle then it visits the bear. All young things are green. If something visits the cat then it needs the cat. All young things are cold. If something eats the cat and it is green then the cat does not need the bald eagle. If something is cold then it visits the cat. If something needs the squirrel then the squirrel visits the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-81_Q3", "context": "Bob is blue. Bob is smart. Fiona is furry. Gary is blue. Gary is kind. Gary is red. Harry is blue. Harry is kind. Harry is quiet. Harry is red. Quiet things are smart. If something is kind and quiet then it is red. If something is smart then it is blue. If something is quiet then it is smart. Kind things are red. All red things are rough. If something is furry then it is kind. If something is rough and red then it is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-869_Q14", "context": "Anne is kind. Anne is nice. Anne is rough. Bob is furry. Bob is nice. Dave is furry. Dave is nice. Erin is kind. Erin is nice. Erin is rough. All quiet, furry people are cold. If someone is white and rough then they are quiet. Furry, kind people are white. All furry people are kind. All white people are rough. If Erin is nice then Erin is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-803_Q16", "context": "The cow is not rough. The cow likes the lion. The cow does not see the mouse. The lion likes the cow. The lion likes the tiger. The lion sees the tiger. The mouse eats the cow. The mouse is big. The mouse does not see the lion. The tiger does not see the lion. If someone eats the lion then the lion eats the tiger. If someone eats the cow then they eat the tiger. If someone is kind and they eat the cow then they like the tiger. If someone is young then they do not like the cow. If someone eats the lion and the lion likes the cow then the cow is young. If someone likes the cow then they are not big. If someone eats the tiger then the tiger sees the mouse. If someone sees the mouse and the mouse eats the tiger then the tiger eats the lion. If someone is green and they do not like the cow then they see the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow eats the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-852_Q3", "context": "The cat eats the cow. The cat is not green. The cat is not rough. The cat does not visit the cow. The cat visits the squirrel. The cow is green. The squirrel eats the cow. The squirrel eats the tiger. The squirrel visits the cat. The tiger eats the squirrel. The tiger sees the squirrel. The tiger visits the cow. Rough things are red. If something visits the cat then it is rough. If something visits the squirrel and it eats the cow then it is cold. If something is cold then it visits the tiger. If something is red and it eats the cow then it visits the squirrel. If something eats the cat and it is not rough then it does not eat the cow. If something eats the cow and the cow does not see the cat then the cat is round. If something eats the cat and the cat visits the squirrel then the cat sees the squirrel. If something is red and it visits the tiger then the tiger sees the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-231_Q3", "context": "The bald eagle is kind. The bald eagle likes the rabbit. The bald eagle needs the rabbit. The cat is rough. The cat likes the rabbit. The rabbit likes the tiger. The rabbit needs the bald eagle. The rabbit needs the tiger. The rabbit sees the bald eagle. The rabbit sees the tiger. The tiger is nice. The tiger is rough. The tiger needs the cat. The tiger sees the rabbit. If the cat sees the tiger then the cat is nice. If something is rough and it likes the rabbit then it needs the tiger. If something is nice then it needs the cat. If the rabbit needs the cat then the cat sees the tiger. If something sees the tiger then it is nice. If the cat is kind then the cat is red. If something is rough and it sees the cat then the cat is red.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat needs the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1183_Q5", "context": "Anne is furry. Anne is kind. Anne is nice. Anne is rough. Erin is furry. Erin is kind. Erin is quiet. Erin is rough. Erin is smart. Fiona is kind. Fiona is rough. Fiona is round. Fiona is smart. Harry is nice. Nice people are smart. All furry, nice people are smart. Kind, rough people are furry. Quiet, kind people are round. Nice, smart people are kind. If someone is kind and quiet then they are rough. If Erin is kind and Erin is nice then Erin is quiet. All quiet, rough people are kind. Kind people are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-906_Q8", "context": "The cow likes the mouse. The cow needs the dog. The cow sees the mouse. The dog likes the rabbit. The dog needs the rabbit. The dog sees the rabbit. The mouse likes the cow. The mouse likes the rabbit. The mouse needs the cow. The rabbit needs the mouse. The rabbit sees the mouse. If someone sees the cow then the cow needs the dog. If someone likes the cow then they see the dog. If someone sees the dog then the dog is nice. If someone is red then they see the mouse. If someone likes the rabbit then the rabbit needs the mouse. If the rabbit is red and the rabbit likes the mouse then the mouse likes the rabbit. If someone is green and they see the rabbit then they like the mouse. If someone sees the cow then they like the cow. If someone is nice then they see the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not see the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-437_Q18", "context": "Anne is furry. Charlie is green. Charlie is not red. Dave is furry. Dave is green. Gary is cold. Gary is furry. Gary is green. Gary is red. Gary is rough. Green, furry people are cold. If someone is nice and not furry then they are not cold. If someone is cold then they are rough. All rough, furry people are nice. If someone is green and not furry then they are nice. All furry, nice people are smart. Smart, rough people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-1012_Q4", "context": "The bald eagle is young. The bald eagle likes the rabbit. The bald eagle needs the rabbit. The bald eagle does not visit the rabbit. The bald eagle visits the squirrel. The rabbit is green. The rabbit is kind. The squirrel likes the tiger. The tiger visits the bald eagle. The tiger visits the rabbit. If something likes the squirrel then it visits the tiger. If something is round then it does not visit the bald eagle. If something is kind then it visits the bald eagle. If something is green then it likes the squirrel. If the squirrel likes the rabbit then the rabbit needs the tiger. If something visits the tiger then the tiger is green. If something visits the squirrel and the squirrel is round then the squirrel does not visit the bald eagle. If something needs the tiger and the tiger does not visit the bald eagle then the tiger is young. If something is young then it visits the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not like the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-185_Q4", "context": "The bald eagle is cold. The bald eagle is not rough. The bald eagle needs the bear. The bear likes the rabbit. The bear does not visit the cow. The cow is nice. The cow likes the bald eagle. The cow likes the bear. The rabbit is big. The rabbit does not like the bald eagle. The rabbit likes the cow. The rabbit visits the bear. If someone is rough and they visit the bald eagle then the bald eagle visits the cow. If the cow is not rough then the cow is big. If someone needs the cow then they visit the rabbit. If the rabbit is rough and the rabbit is cold then the rabbit is young. If someone visits the bald eagle then the bald eagle likes the rabbit. If someone is big then they need the cow. If someone visits the bear and they visit the rabbit then the bear is big.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not need the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1118_Q5", "context": "Anne is round. Anne is young. Dave is blue. Dave is furry. Dave is white. Fiona is not furry. Fiona is green. Fiona is white. Fiona is young. Gary is big. All young people are green. If Gary is green then Gary is white. If someone is young and big then they are blue. All green people are blue. If someone is round and blue then they are big. If someone is big and not green then they are round. If Fiona is white and Fiona is young then Fiona is not round. All big people are white. All white, green people are not furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1098_Q2", "context": "Anne is not big. Anne is kind. Anne is white. Erin is big. Erin is nice. Erin is rough. Erin is smart. Erin is white. Gary is big. Gary is smart. Harry is nice. If someone is nice then they are smart. All nice, rough people are kind. If someone is big and not smart then they are not white. If someone is round then they are white. All smart people are round. All big, white people are round. All round, white people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-242_Q18", "context": "The bald eagle eats the rabbit. The bald eagle is round. The bald eagle sees the cat. The bald eagle sees the rabbit. The bald eagle visits the cat. The bald eagle visits the rabbit. The bear is rough. The bear is round. The bear visits the rabbit. The cat eats the bald eagle. The cat sees the rabbit. The cat visits the rabbit. The rabbit is rough. The rabbit is round. The rabbit sees the bald eagle. The rabbit visits the bald eagle. If someone visits the bald eagle and the bald eagle visits the bear then the bald eagle sees the rabbit. If someone visits the cat then they are rough. If someone visits the bald eagle then they eat the rabbit. If someone visits the bald eagle then they are rough. If someone is green then they see the bear. If someone sees the cat then they are green. If someone is nice and round then they visit the bald eagle. If someone sees the bear then the bear sees the cat. If someone is round and they see the bear then they eat the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat eats the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-235_Q2", "context": "Anne is red. Anne is round. Dave is red. Erin is cold. Erin is quiet. Erin is rough. Erin is smart. Harry is big. Harry is cold. Harry is red. Harry is round. Harry is smart. All cold, quiet things are big. Smart, cold things are rough. If something is quiet then it is cold. If something is big and cold then it is smart. If Erin is rough then Erin is cold. All round things are quiet. If something is big and red then it is smart. Big things are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-456_Q12", "context": "Anne is rough. Bob is quiet. Charlie is nice. Charlie is not round. Gary is kind. Gary is quiet. Gary is rough. Round, quiet things are kind. All rough things are kind. If something is smart then it is not white. If Bob is quiet then Bob is round. All kind things are rough. Kind, smart things are quiet. If Charlie is rough then Charlie is nice. If something is kind and rough then it is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-145_Q18", "context": "The bear is kind. The bear is young. The bear sees the cow. The bear visits the mouse. The cow eats the mouse. The cow eats the squirrel. The cow is young. The cow sees the bear. The cow visits the bear. The mouse eats the bear. The mouse is cold. The mouse is young. The mouse sees the squirrel. The mouse visits the bear. The squirrel sees the cow. The squirrel sees the mouse. If someone sees the mouse and they visit the squirrel then the squirrel visits the bear. If someone visits the squirrel then they see the mouse. If someone visits the bear then they are round. If someone eats the squirrel and they see the cow then the squirrel is young. If someone eats the squirrel then they visit the squirrel. If the squirrel is round and the squirrel sees the bear then the squirrel eats the cow. If someone sees the mouse then they see the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-333_Q23", "context": "The bear visits the cow. The bear visits the rabbit. The cow does not visit the rabbit. The rabbit chases the bear. The rabbit chases the tiger. The tiger is blue. The tiger is young. If something is blue and it does not like the cow then the cow visits the tiger. If something visits the bear then the bear chases the cow. If something chases the cow then the cow is nice. If something visits the tiger then it likes the bear. If something likes the tiger then it does not like the bear. All nice things are blue. If something is blue then it visits the bear. If the bear is kind and the bear likes the rabbit then the rabbit is young. If something likes the cow and it is blue then it is not cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not visit the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-878_Q1", "context": "The bear is red. The bear needs the cat. The bear sees the cow. The cat is round. The cat is not young. The cat needs the cow. The cat sees the cow. The cow is green. The cow is red. The dog is not round. The dog does not see the bear. If someone sees the cat then the cat is big. If the cow is round and the cow needs the cat then the cat is big. If someone is big then they chase the bear. If someone is big then they chase the bear. If someone sees the dog then they need the bear. If someone chases the cow and they are not round then the cow chases the cat. If someone sees the cow and they need the cat then the cow sees the dog. If someone sees the bear and the bear needs the dog then the dog is not big. If someone needs the bear and they see the dog then the dog sees the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear sees the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-869_Q4", "context": "Anne is kind. Anne is nice. Anne is rough. Bob is furry. Bob is nice. Dave is furry. Dave is nice. Erin is kind. Erin is nice. Erin is rough. All quiet, furry people are cold. If someone is white and rough then they are quiet. Furry, kind people are white. All furry people are kind. All white people are rough. If Erin is nice then Erin is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-492_Q14", "context": "Anne is kind. Anne is quiet. Charlie is big. Charlie is kind. Fiona is not kind. Fiona is red. Gary is white. Red, quiet things are white. All kind things are cold. Big things are quiet. All cold things are red. All young, quiet things are big. If something is kind and young then it is big. If something is white and cold then it is young. If Charlie is cold and Charlie is quiet then Charlie is young. If Fiona is not kind then Fiona is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-681_Q13", "context": "The bear chases the cow. The cat chases the cow. The cat sees the bear. The cat sees the cow. The cat sees the squirrel. The cow is red. The cow sees the cat. The squirrel chases the bear. The squirrel eats the bear. The squirrel sees the cow. If something chases the cow then it is red. If something eats the cat and it sees the cow then the cow chases the bear. If something is red then it eats the bear. If something eats the cow then the cow sees the squirrel. If something is big and it sees the squirrel then the squirrel eats the cow. If something is red then it is big. If something chases the cat then the cat eats the bear. If the cow is kind and the cow chases the bear then the bear eats the cow. If something eats the cow then it is red.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not chase the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-213_Q14", "context": "Anne is quiet. Anne is red. Dave is rough. Erin is cold. Erin is rough. Fiona is cold. Fiona is green. If Fiona is kind and Fiona is nice then Fiona is rough. All nice things are kind. All green, cold things are red. If something is red then it is nice. If Anne is rough and Anne is green then Anne is kind. If something is quiet and not nice then it is rough. Kind things are rough. Rough things are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-883_Q18", "context": "The bald eagle chases the cat. The bald eagle is young. The bear is cold. The bear visits the bald eagle. The cat does not chase the bear. The cat is not big. The cat visits the lion. The lion does not need the cat. The lion does not visit the bear. The lion visits the cat. If someone is nice and they need the cat then the cat is nice. If someone is cold then they chase the lion. If someone needs the cat then they are big. If someone is young then they need the bald eagle. If someone needs the bear then the bear chases the cat. If someone is young and they visit the bald eagle then they need the bear. If someone is young and they do not visit the bear then the bear visits the lion. If someone chases the cat then they are red. If someone chases the lion then they are young.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-549_Q16", "context": "The cow is red. The cow visits the lion. The dog likes the cow. The lion is red. The lion is rough. The lion likes the mouse. The lion sees the cow. The lion visits the cow. The lion visits the mouse. The mouse is young. The mouse likes the lion. The mouse sees the dog. If someone is rough and they visit the dog then they like the dog. If someone likes the dog and the dog likes the cow then the dog sees the cow. If someone is green then they visit the dog. If someone visits the dog then they visit the mouse. If someone likes the cow and they visit the mouse then they like the dog. If someone likes the dog and they visit the cow then they are blue. If someone sees the mouse then the mouse is young. If someone sees the cow then they visit the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-144_Q9", "context": "Charlie is big. Charlie is quiet. Erin is blue. Erin is young. Gary is not blue. Gary is quiet. Gary is smart. Gary is white. Harry is white. Harry is young. Blue, cold things are quiet. If something is white then it is quiet. All blue things are cold. All smart things are white. If something is quiet then it is white. Young, white things are smart. If something is blue and not white then it is not big. If something is smart then it is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-366_Q15", "context": "Charlie is blue. Charlie is cold. Charlie is white. Dave is blue. Dave is quiet. Gary is blue. Gary is round. Harry is not green. Harry is quiet. Harry is not white. Red, round people are cold. All red people are green. If someone is green then they are round. If Dave is not blue then Dave is not green. If someone is blue then they are red. All cold people are red. All cold people are white. If Gary is green and Gary is cold then Gary is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-287_Q8", "context": "Bob is big. Bob is cold. Bob is green. Bob is kind. Bob is young. Erin is big. Fiona is big. Fiona is cold. Fiona is kind. Fiona is young. Gary is cold. Gary is red. If someone is green then they are cold. If Bob is young then Bob is kind. All big people are green. All kind, big people are cold. All round people are young. Cold people are green. All green, big people are kind. Cold, big people are round. If someone is young and kind then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-865_Q9", "context": "The bald eagle is green. The bald eagle visits the cat. The cat visits the rabbit. The lion is not nice. The lion visits the cat. The lion visits the rabbit. The rabbit is round. If something chases the lion then it eats the bald eagle. If something is rough then it chases the rabbit. If something eats the bald eagle and it is round then the bald eagle is round. If the rabbit chases the cat then the cat eats the bald eagle. If something eats the lion and the lion eats the rabbit then it chases the lion. If something is round then it chases the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle chases the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-265_Q9", "context": "The cat eats the rabbit. The cat is cold. The cat sees the dog. The dog eats the rabbit. The dog eats the tiger. The dog is nice. The dog is rough. The dog sees the cat. The rabbit eats the tiger. The rabbit is red. The tiger eats the dog. The tiger is young. All young things are nice. If something likes the tiger then it eats the cat. If something is nice then it likes the tiger. If the tiger eats the cat and the tiger likes the rabbit then the tiger sees the cat. If something sees the tiger and the tiger likes the dog then it is red. All rough things are red. If something eats the cat then the cat likes the rabbit. If something is rough and it sees the tiger then it likes the dog. If something likes the rabbit then it is young.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-467_Q5", "context": "The bald eagle is round. The bald eagle likes the mouse. The bald eagle likes the rabbit. The cow eats the mouse. The cow likes the bald eagle. The mouse eats the rabbit. The mouse is green. The mouse needs the rabbit. The rabbit eats the bald eagle. The rabbit eats the cow. The rabbit eats the mouse. The rabbit is big. The rabbit likes the cow. The rabbit needs the cow. If someone likes the rabbit then they eat the cow. If someone is big then they like the rabbit. If someone is kind and they need the cow then the cow is rough. If someone is green and they eat the bald eagle then the bald eagle is kind. Kind people are big. All round people are kind. If the bald eagle needs the cow then the cow is kind. If someone is round then they need the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-277_Q1", "context": "The cat needs the dog. The dog is green. The dog visits the cat. The dog visits the tiger. The squirrel is red. The squirrel visits the dog. The tiger is rough. The tiger likes the cat. The tiger needs the dog. The tiger visits the cat. All rough people are cold. If someone likes the dog then the dog needs the tiger. If someone is cold then they visit the squirrel. If someone needs the squirrel and the squirrel likes the tiger then they need the cat. If someone is rough and they visit the squirrel then the squirrel is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-332_Q17", "context": "Anne is green. Anne is white. Bob is big. Bob is not white. Fiona is green. Fiona is young. Gary is white. All green things are nice. All big things are nice. All red things are young. If something is red and not white then it is young. All big, young things are red. Green things are red. Nice, big things are green. If something is red and big then it is green. If something is green and young then it is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-630_Q6", "context": "The bald eagle eats the cow. The bald eagle eats the dog. The bald eagle visits the cat. The bald eagle visits the dog. The cat is big. The cat likes the dog. The cow eats the bald eagle. The cow is red. The cow visits the cat. The dog eats the bald eagle. The dog eats the cat. The dog likes the bald eagle. If someone likes the dog then they visit the dog. If someone likes the dog then they like the cow. If someone eats the bald eagle and the bald eagle eats the cat then the cat visits the bald eagle. If someone is big then they like the dog. If the bald eagle likes the cow then the bald eagle eats the cat. If someone visits the dog then they visit the cow. If someone likes the cat and the cat is red then the cat visits the bald eagle. If the cat visits the cow and the cat visits the dog then the cow likes the dog. If someone eats the dog then they are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not visit the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-374_Q19", "context": "The cat chases the mouse. The cat chases the rabbit. The cat is rough. The cow likes the rabbit. The mouse chases the cow. The mouse is round. The mouse likes the cat. The mouse likes the rabbit. The rabbit chases the cow. The rabbit eats the mouse. The rabbit likes the mouse. If something is rough and it likes the mouse then the mouse chases the rabbit. If the rabbit eats the cow and the rabbit is kind then the cow likes the cat. If something is red then it is young. If something is young then it likes the cow. If something chases the cat and it is round then it is red. If something is rough then it eats the cat. If something is round then it chases the cat. If something likes the cow then it chases the mouse. If something likes the rabbit and the rabbit is kind then it chases the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not like the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-190_Q9", "context": "The bear eats the dog. The bear eats the lion. The bear likes the rabbit. The bear needs the rabbit. The dog eats the lion. The dog is kind. The dog likes the lion. The lion eats the bear. The lion needs the dog. The rabbit likes the lion. If the lion needs the dog and the lion eats the dog then the dog is blue. If someone eats the bear then they eat the lion. If the dog eats the rabbit and the dog eats the bear then the rabbit needs the bear. If someone is rough and they like the lion then they like the bear. If someone is blue then they like the lion. If someone eats the lion then they are rough. If someone likes the bear and they like the lion then the bear is blue. If someone likes the dog and the dog needs the bear then the bear eats the rabbit. If someone likes the dog and the dog likes the lion then the dog is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear likes the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1013_Q13", "context": "Anne is blue. Anne is cold. Anne is green. Anne is smart. Anne is young. Charlie is not kind. Charlie is young. Dave is blue. Dave is green. Dave is smart. Erin is blue. Green, smart things are young. If something is kind then it is green. If something is blue and green then it is white. Green things are white. If something is white and blue then it is smart. If something is young and kind then it is blue. If something is blue then it is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-741_Q11", "context": "The cat needs the mouse. The cat sees the lion. The cat sees the mouse. The cow eats the mouse. The cow needs the cat. The cow sees the lion. The lion eats the mouse. The lion is blue. The lion is kind. The lion is nice. The lion needs the cow. The lion needs the mouse. The mouse is blue. The mouse is kind. The mouse is nice. The mouse is round. If something is red and it eats the mouse then the mouse sees the cat. If something eats the mouse and it is red then the mouse eats the cat. If something sees the mouse then it needs the lion. If something sees the cat then the cat sees the cow. If something sees the cow then the cow sees the mouse. If something needs the lion then it sees the cat. If the lion is round and the lion needs the cat then the cat is kind. If something needs the cow then it sees the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow needs the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-118_Q12", "context": "Charlie is not blue. Charlie is white. Erin is furry. Gary is not quiet. Gary is rough. Gary is not young. Harry is quiet. All white things are green. Quiet things are green. Quiet, rough things are young. Quiet, white things are not blue. If something is blue and white then it is rough. If something is furry then it is rough. If Gary is young then Gary is rough. If Harry is young and Harry is quiet then Harry is not white. Green things are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-847_Q3", "context": "Anne is not red. Anne is rough. Dave is big. Dave is nice. Dave is rough. Fiona is not kind. Harry is kind. If something is nice and rough then it is white. All kind things are nice. If Anne is kind and Anne is red then Anne is white. If Harry is smart then Harry is red. Red things are rough. Nice, rough things are kind. All nice things are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1158_Q5", "context": "Charlie is big. Charlie is blue. Charlie is not furry. Charlie is young. Dave is blue. Dave is furry. Dave is not quiet. Dave is white. Gary is furry. Harry is nice. If Dave is white and Dave is big then Dave is young. All nice people are big. All white people are nice. Furry people are nice. If someone is young and not quiet then they are nice. Young, big people are white. If someone is blue then they are young. Quiet people are young. If someone is big then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1366_Q2", "context": "Anne is quiet. Anne is young. Dave is blue. Dave is round. Dave is white. Dave is young. Fiona is rough. Fiona is round. Gary is blue. Gary is white. If Dave is rough and Dave is white then Dave is blue. Young people are round. White people are quiet. All quiet people are nice. All rough, young people are blue. If Fiona is round then Fiona is white. All nice people are young. Quiet people are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-996_Q3", "context": "Anne is furry. Anne is red. Anne is rough. Anne is smart. Anne is white. Bob is furry. Bob is quiet. Bob is red. Bob is rough. Bob is smart. Bob is white. Dave is furry. Dave is red. Dave is rough. Harry is rough. Harry is smart. If something is quiet then it is rough. All round things are red. All red things are round. If something is quiet and furry then it is white. If something is round and red then it is quiet. Smart, white things are round. All quiet, round things are smart. Furry things are quiet. Rough things are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-864_Q19", "context": "Bob is kind. Charlie is not blue. Charlie is green. Charlie is not white. Dave is big. Gary is big. Gary is round. All green, kind people are smart. If someone is big and kind then they are round. Smart, green people are big. If someone is blue and not kind then they are green. If someone is kind then they are green. If someone is round then they are not white. If Dave is white and Dave is not big then Dave is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-932_Q2", "context": "Anne is cold. Anne is green. Bob is big. Bob is kind. Fiona is cold. Gary is green. Gary is not red. Cold, big things are kind. All green, big things are red. All smart, kind things are green. All cold things are smart. Smart things are big. If Fiona is cold and Fiona is not smart then Fiona is not red.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-412_Q13", "context": "The cow is round. The cow needs the lion. The cow needs the rabbit. The cow sees the lion. The cow visits the rabbit. The lion is round. The rabbit is kind. The rabbit visits the tiger. The tiger is big. The tiger is kind. The tiger sees the rabbit. The tiger visits the rabbit. If something is kind and it visits the rabbit then it is young. If something sees the tiger and it visits the lion then it sees the rabbit. If something is big and young then it sees the lion. If something visits the rabbit then the rabbit needs the lion. If something is big then it visits the rabbit. If something sees the tiger then it is rough. If something visits the rabbit and it is kind then the rabbit needs the lion. If something is rough and kind then it visits the lion. If something needs the lion then it is big.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-403_Q2", "context": "The bald eagle likes the dog. The bald eagle needs the mouse. The cow chases the dog. The cow is cold. The cow likes the bald eagle. The dog is green. The dog is nice. The dog likes the cow. The dog needs the bald eagle. The mouse likes the bald eagle. If something is green then it needs the bald eagle. If something is cold then it needs the dog. If something chases the mouse then the mouse needs the bald eagle. If the bald eagle is cold then the bald eagle needs the cow. If something likes the dog and it is nice then it chases the mouse. If something likes the bald eagle and it needs the dog then the dog is cold. If something needs the dog then it likes the dog. If something needs the cow and the cow likes the dog then the cow likes the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-720_Q2", "context": "Anne is smart. Charlie is blue. Charlie is green. Charlie is rough. Charlie is white. Dave is blue. Dave is kind. Dave is rough. Dave is smart. Dave is white. Erin is green. Erin is rough. All green people are blue. All kind, white people are quiet. Smart people are green. If Anne is blue then Anne is rough. If someone is rough then they are kind. If someone is kind then they are rough. Quiet, blue people are rough. If Anne is blue and Anne is quiet then Anne is rough. All blue people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-751_Q4", "context": "The bear eats the dog. The bear is not round. The bear sees the dog. The bear sees the tiger. The dog likes the tiger. The mouse is not nice. The mouse is round. The mouse does not see the tiger. The tiger eats the bear. The tiger does not eat the mouse. The tiger sees the bear. If someone eats the mouse then they like the bear. If someone likes the tiger then they like the bear. If someone is nice and they like the mouse then they see the tiger. If someone likes the tiger and the tiger eats the dog then the dog likes the mouse. If someone likes the tiger then they eat the mouse. If someone eats the mouse and they eat the bear then the mouse likes the tiger. If someone likes the tiger then the tiger sees the mouse. If someone likes the mouse then they like the tiger. If someone likes the bear then they eat the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not like the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-867_Q7", "context": "The bear is kind. The bear visits the cow. The cow sees the mouse. The cow visits the mouse. The mouse needs the bear. The mouse does not need the cow. The mouse sees the bear. The rabbit is not kind. The rabbit is nice. The rabbit is not rough. If something visits the rabbit then it is rough. If something needs the rabbit then the rabbit sees the cow. If something is cold then it visits the cow. If something is cold then it needs the rabbit. If something sees the cow then the cow is cold. If something sees the mouse and the mouse needs the bear then the bear needs the rabbit. If something is rough and it visits the bear then it is not nice. If something is red then it does not see the cow. If the cow needs the rabbit and the cow is cold then the cow is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-209_Q14", "context": "The cat likes the tiger. The lion is green. The lion needs the squirrel. The squirrel is blue. The squirrel is kind. The squirrel likes the lion. The squirrel needs the cat. The squirrel needs the tiger. The tiger chases the cat. The tiger chases the lion. The tiger is kind. The tiger needs the lion. If someone needs the lion and they chase the lion then they are blue. If someone needs the tiger and they are red then they like the lion. If someone needs the cat then they are red. If the cat needs the tiger and the tiger is blue then the cat likes the tiger. If someone is red then they need the tiger. If the cat likes the tiger and the cat needs the squirrel then the squirrel needs the tiger. If someone is blue then they need the cat. If someone needs the lion and they are kind then they chase the cat. If someone likes the lion then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion needs the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-1002_Q20", "context": "The bear chases the squirrel. The bear is cold. The bear is red. The bear is rough. The bear likes the squirrel. The bear needs the tiger. The cat is red. The cat needs the squirrel. The squirrel chases the cat. The squirrel chases the tiger. The squirrel needs the cat. The tiger chases the cat. The tiger likes the bear. The tiger likes the squirrel. If someone is cold then they need the cat. If someone needs the tiger and they like the cat then the tiger is red. If someone is red then they like the tiger. If someone chases the bear then the bear likes the cat. If someone chases the tiger and the tiger likes the squirrel then the squirrel needs the cat. If someone is rough and they like the tiger then the tiger chases the bear. If someone is rough then they need the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-873_Q20", "context": "Anne is rough. Dave is kind. Gary is blue. Gary is kind. Gary is red. Gary is not round. Harry is rough. If Harry is red then Harry is rough. If Anne is not round then Anne is not nice. Rough, furry things are not nice. Red things are kind. All red things are kind. Blue things are furry. If Dave is kind then Dave is round. If something is rough then it is blue. If something is round then it is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-988_Q22", "context": "The cat eats the cow. The cat is young. The cow eats the cat. The cow is big. The cow is young. The cow sees the lion. The cow visits the dog. The dog eats the cat. The dog visits the cow. The dog visits the lion. The lion eats the cow. The lion is red. If something visits the cat and it sees the dog then the dog eats the lion. If the cat sees the cow and the cow eats the cat then the cat visits the cow. If something is red and it visits the dog then it visits the cow. If something sees the dog and the dog sees the cat then the dog is cold. If something visits the dog and the dog visits the cat then the cat sees the lion. If something sees the cow then it visits the cat. If something sees the lion then it sees the dog. If something sees the dog and the dog eats the cat then the dog sees the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion sees the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-986_Q11", "context": "The bald eagle eats the squirrel. The cow eats the lion. The cow eats the squirrel. The cow is rough. The cow likes the squirrel. The cow needs the bald eagle. The cow needs the squirrel. The lion is blue. The lion is cold. The lion is kind. The lion is red. The lion is rough. The lion likes the cow. The lion needs the bald eagle. The squirrel is rough. The squirrel needs the lion. If someone needs the lion and the lion likes the bald eagle then the lion is rough. If someone is cold then they need the lion. If someone eats the bald eagle and the bald eagle is kind then the bald eagle likes the cow. If someone likes the lion then the lion is kind. If someone likes the cow and the cow is kind then the cow eats the bald eagle. If someone likes the bald eagle then they are kind. If someone likes the cow then the cow likes the bald eagle. If someone eats the bald eagle then the bald eagle is cold. If someone needs the cow then they are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle needs the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-801_Q4", "context": "The bear chases the lion. The bear is rough. The bear likes the tiger. The lion is kind. The lion is rough. The lion likes the bear. The mouse likes the tiger. The tiger chases the bear. The tiger chases the lion. The tiger is big. The tiger is kind. The tiger is young. The tiger likes the bear. The tiger likes the lion. The tiger sees the bear. The tiger sees the mouse. If someone sees the bear and they see the tiger then they chase the tiger. If someone sees the mouse and the mouse sees the tiger then they chase the lion. If someone chases the mouse and they see the lion then the lion is red. If someone likes the bear then they chase the mouse. If someone sees the bear and the bear chases the lion then the bear is big. If someone chases the tiger then the tiger sees the lion. If someone chases the mouse then they see the tiger. If someone likes the mouse then they chase the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not chase the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-225_Q21", "context": "The bald eagle is young. The bear eats the bald eagle. The bear eats the lion. The bear likes the bald eagle. The lion is red. The rabbit is cold. The rabbit sees the bear. If something likes the rabbit then it is red. If something sees the lion then the lion eats the bear. If something is blue then it sees the rabbit. If something eats the rabbit and it sees the rabbit then it is blue. If something sees the bear and the bear eats the bald eagle then the bald eagle sees the lion. If something eats the bear and it eats the bald eagle then the bear is blue. If something is red and it eats the bear then the bear likes the rabbit. If something eats the bald eagle then it sees the lion. If something is red then it is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-154_Q7", "context": "Anne is not green. Anne is not quiet. Erin is big. Erin is furry. Erin is green. Erin is quiet. Erin is rough. Erin is white. Gary is green. Harry is big. Harry is not furry. Harry is not green. Harry is quiet. Harry is rough. Harry is smart. Harry is not white. All furry, green things are big. Furry, big things are quiet. All big things are quiet. All big things are quiet. If something is white and smart then it is rough. All white things are rough. Green, rough things are furry. All green things are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-966_Q5", "context": "Anne is cold. Dave is blue. Erin is blue. Erin is cold. Erin is green. Erin is nice. Erin is white. Harry is furry. Harry is green. Harry is young. Furry, nice people are green. Cold people are nice. Blue, young people are white. If someone is cold then they are young. White people are cold. All blue people are cold. If someone is white and blue then they are green. Green people are furry. All white people are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-861_Q11", "context": "The bear chases the dog. The bear chases the squirrel. The bear eats the cat. The cat is red. The cat sees the bear. The cat sees the dog. The dog chases the bear. The dog is red. The squirrel eats the bear. The squirrel is kind. The squirrel is nice. If something chases the bear then it sees the squirrel. If something is blue then it sees the dog. If something is kind then it chases the bear. If the squirrel does not see the cat then the cat chases the bear. If something chases the bear and the bear chases the squirrel then the bear is kind. If something chases the cat and the cat chases the bear then the cat chases the squirrel. If something sees the dog and it sees the cat then the cat does not chase the squirrel. If something sees the squirrel then it is blue. If something eats the cat and the cat does not see the dog then it is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear sees the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-555_Q5", "context": "Charlie is white. Dave is red. Erin is red. Erin is round. Gary is green. Gary is nice. Gary is smart. White people are smart. If someone is nice and red then they are not green. If Dave is red then Dave is white. If Dave is smart then Dave is nice. If Dave is white and Dave is not red then Dave is green. All white, furry people are not round. If someone is nice and not green then they are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-190_Q7", "context": "The bear eats the lion. The bear is round. The bear visits the tiger. The lion visits the mouse. The mouse chases the bear. The mouse is young. The tiger eats the bear. The tiger is not round. The tiger is young. The tiger does not visit the lion. If someone is young then they eat the mouse. If someone eats the lion then they are green. If someone eats the mouse and they are not round then they chase the mouse. If someone is green then they do not visit the lion. If someone is young and they chase the mouse then the mouse eats the lion. If someone visits the tiger then they are red. If someone eats the mouse and they visit the lion then the lion does not eat the bear. If someone is young and they chase the bear then the bear does not chase the tiger. If someone is green and not young then they chase the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse eats the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-943_Q6", "context": "Charlie is green. Charlie is red. Charlie is white. Erin is green. Gary is smart. Gary is white. Harry is green. Harry is quiet. Harry is red. Harry is white. If someone is furry then they are red. Quiet people are furry. If someone is furry and quiet then they are smart. Green people are white. All green, white people are quiet. Red people are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-455_Q12", "context": "Anne is not blue. Anne is white. Bob is rough. Erin is blue. Erin is white. Fiona is red. Fiona is rough. All red, blue people are rough. If Bob is rough then Bob is not white. If Bob is red then Bob is white. All blue, young people are red. Blue people are young. Rough, young people are furry. If Bob is big then Bob is furry. All furry, white people are big. If someone is red and not young then they are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-728_Q19", "context": "The bear eats the dog. The cat chases the dog. The cat chases the tiger. The cat eats the dog. The cat eats the tiger. The cat is nice. The dog chases the cat. The tiger chases the cat. The tiger eats the bear. The tiger eats the cat. The tiger is cold. The tiger is nice. If someone chases the tiger and the tiger chases the cat then the cat chases the tiger. If someone is green then they like the cat. Nice, cold people are green. If someone likes the cat then the cat is cold. If someone chases the bear then they chase the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-862_Q4", "context": "The bear chases the mouse. The bear sees the lion. The lion sees the squirrel. The mouse is nice. The squirrel chases the bear. The squirrel needs the lion. The squirrel sees the bear. If something is big then it needs the lion. If something sees the mouse then it needs the lion. If something needs the squirrel then the squirrel sees the lion. If something sees the squirrel then the squirrel sees the mouse. If something chases the squirrel and the squirrel sees the lion then the lion chases the squirrel. If something needs the bear then the bear is round. If the bear sees the lion then the lion chases the squirrel. If something sees the lion then it is red. If something is red then it needs the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not chase the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1162_Q16", "context": "Anne is blue. Anne is cold. Anne is nice. Anne is quiet. Anne is smart. Bob is not nice. Bob is rough. Bob is smart. Erin is cold. Harry is kind. Harry is rough. All kind things are quiet. If something is blue and nice then it is quiet. All blue, cold things are kind. All quiet things are smart. Quiet things are cold. Blue things are cold. If something is cold then it is blue. If something is smart and not cold then it is not rough. Smart things are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-458_Q15", "context": "Bob is green. Charlie is big. Charlie is green. Charlie is kind. Charlie is smart. Fiona is big. Fiona is furry. Fiona is nice. Fiona is smart. Harry is big. White, big people are green. Green people are smart. All nice people are kind. All big people are nice. Furry, white people are kind. Kind, big people are white. If Bob is furry and Bob is big then Bob is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-152_Q12", "context": "Bob is white. Charlie is kind. Charlie is red. Charlie is white. Dave is nice. Dave is red. Dave is round. Dave is young. Erin is red. Erin is white. All nice things are furry. All round, furry things are white. If something is kind then it is nice. All furry, nice things are round. All red things are kind. Nice things are furry. White, furry things are kind. If something is round and furry then it is young.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-812_Q2", "context": "The mouse likes the tiger. The mouse visits the tiger. The rabbit is red. The squirrel likes the tiger. The squirrel visits the mouse. The tiger needs the mouse. The tiger visits the mouse. If someone is green then they need the squirrel. If someone likes the tiger and they visit the squirrel then the squirrel is big. If someone likes the mouse then they like the rabbit. If someone likes the squirrel and they are green then the squirrel is red. If someone needs the squirrel and the squirrel is red then the squirrel likes the rabbit. If someone visits the mouse then they are blue. If someone is round and blue then they like the squirrel. If someone likes the tiger then the tiger is green. Blue people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not visit the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-186_Q20", "context": "The bear is round. The bear likes the cat. The cat chases the bear. The dog is red. The dog is rough. The dog is round. The tiger is blue. If something is red then it chases the cat. If something is cold then it chases the tiger. If something likes the bear then the bear likes the tiger. If something sees the dog and the dog is red then the dog is round. If something likes the bear and the bear likes the dog then the bear sees the dog. If something is red and it chases the cat then it likes the bear. If the cat chases the dog and the dog is red then the dog is rough. If something likes the tiger then it is red. If something sees the bear then it likes the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger sees the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-722_Q14", "context": "Anne is furry. Anne is kind. Anne is quiet. Anne is rough. Anne is round. Anne is smart. Bob is kind. Bob is quiet. Bob is red. Bob is rough. Dave is red. Dave is round. Gary is kind. Gary is rough. If Anne is rough and Anne is round then Anne is red. If Bob is round and Bob is red then Bob is kind. All kind, rough people are round. All quiet people are furry. Furry, kind people are red. Red people are furry. If someone is kind and quiet then they are smart. All smart people are quiet. All rough, round people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-39_Q19", "context": "The bald eagle is kind. The bald eagle is nice. The bald eagle is young. The bald eagle visits the cat. The bald eagle visits the cow. The bear eats the cow. The bear is kind. The cat is kind. The cat likes the bald eagle. The cat likes the bear. The cow eats the cat. If something is nice and it visits the bear then it likes the bald eagle. If something eats the bald eagle then it eats the bear. If something likes the bear then it visits the bear. If something eats the cat and it is nice then it visits the bear. If something likes the bald eagle then it eats the bald eagle. If the bald eagle visits the cow then the cow eats the cat. If the bald eagle eats the cat then the bald eagle is kind. Young things are kind. If something likes the bald eagle then the bald eagle likes the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-130_Q10", "context": "Anne is blue. Anne is cold. Anne is kind. Anne is smart. Anne is white. Dave is cold. Dave is white. Gary is cold. Gary is kind. Gary is white. Harry is white. Young things are rough. If Gary is cold then Gary is blue. Rough things are kind. If something is cold then it is smart. White things are cold. Rough, young things are cold. All white, blue things are young. If something is cold then it is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-202_Q1", "context": "Bob is big. Bob is kind. Bob is quiet. Bob is rough. Charlie is big. Charlie is red. Fiona is big. Fiona is kind. Fiona is red. Fiona is rough. Gary is kind. If something is red then it is rough. All red, rough things are round. Furry things are kind. Round things are furry. If Bob is quiet then Bob is red. If something is kind then it is quiet. If Fiona is quiet then Fiona is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-435_Q6", "context": "Charlie is smart. Dave is red. Dave is smart. Erin is furry. Erin is smart. Fiona is cold. Fiona is kind. Red people are kind. If someone is cold then they are smart. If someone is big then they are furry. All smart people are red. All smart, white people are big. If someone is cold and red then they are white. If Dave is kind then Dave is cold. If Dave is white then Dave is cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-1023_Q11", "context": "The bald eagle is blue. The bald eagle is kind. The bear chases the bald eagle. The bear sees the bald eagle. The cat likes the bald eagle. The tiger is big. The tiger does not see the cat. If someone likes the cat and the cat chases the tiger then the cat does not like the bald eagle. If someone sees the tiger then the tiger is blue. If someone is big and they like the tiger then they like the bear. If someone sees the bear then they see the tiger. If someone sees the bald eagle and the bald eagle sees the bear then they see the bear. If someone is blue then they see the bear. If the bald eagle sees the bear then the bald eagle is blue. If someone likes the bald eagle and they are not blue then they do not chase the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger sees the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-833_Q5", "context": "The bear chases the squirrel. The bear visits the mouse. The bear visits the rabbit. The mouse chases the rabbit. The rabbit chases the squirrel. The rabbit is blue. The rabbit is young. The rabbit visits the squirrel. The squirrel eats the mouse. The squirrel eats the rabbit. If something is green then it is cold. If something visits the mouse then the mouse visits the bear. If something is cold then it chases the mouse. If something chases the mouse then the mouse is cold. If something is young then it is green. If something is cold and it chases the bear then it is blue. If something is green and it eats the mouse then it chases the mouse. If something is young then it visits the bear. If something eats the bear then the bear is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-154_Q22", "context": "The cat is red. The cat is young. The cat likes the rabbit. The mouse eats the cat. The mouse eats the squirrel. The mouse likes the rabbit. The mouse likes the squirrel. The mouse sees the cat. The rabbit eats the cat. The rabbit eats the squirrel. The rabbit is young. The rabbit likes the mouse. The rabbit sees the cat. The squirrel sees the cat. If someone is red and they like the cat then the cat is blue. If someone is blue and they like the squirrel then the squirrel likes the mouse. If someone likes the mouse and the mouse eats the squirrel then they are blue. If someone is red and they eat the mouse then they see the rabbit. If someone is blue then they eat the cat. If someone likes the rabbit then they see the squirrel. If someone is green and they see the squirrel then they are red. If someone sees the squirrel then they like the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel sees the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-879_Q6", "context": "Bob is big. Bob is smart. Bob is white. Bob is young. Charlie is big. Charlie is rough. Charlie is young. Dave is smart. Gary is white. Gary is young. If something is young and green then it is big. If Dave is big then Dave is rough. If Dave is young then Dave is rough. If something is smart then it is young. If something is rough and white then it is not young. Rough, young things are nice. If something is rough then it is nice. Green, big things are nice. Nice things are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-951_Q18", "context": "The bear is nice. The cow eats the squirrel. The cow is green. The mouse eats the bear. The squirrel is not green. The squirrel is nice. The squirrel needs the cow. If someone is round then they do not like the cow. If someone likes the squirrel and the squirrel needs the cow then the cow is nice. If someone is nice then they need the squirrel. If someone likes the mouse then they need the squirrel. If someone eats the cow and the cow needs the bear then they are not green. If someone likes the squirrel then they eat the mouse. If someone likes the squirrel and the squirrel needs the mouse then the squirrel is not green. If someone needs the squirrel then they like the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse likes the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-267_Q16", "context": "Anne is rough. Dave is not big. Dave is round. Fiona is big. Fiona is rough. Gary is cold. Gary is rough. Rough people are nice. Red people are cold. If someone is nice then they are rough. Big, round people are rough. All big, white people are round. If someone is nice then they are red. All cold people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-510_Q12", "context": "The bear is round. The bear needs the tiger. The bear visits the tiger. The cat needs the bear. The cat needs the tiger. The cat visits the tiger. The mouse chases the bear. The mouse chases the cat. The mouse is rough. The mouse needs the cat. The tiger chases the bear. The tiger is nice. The tiger needs the mouse. The tiger visits the bear. If something is round then it visits the mouse. If something chases the tiger and the tiger visits the bear then the tiger chases the mouse. Nice, rough things are round. If something needs the bear and it visits the tiger then the tiger is nice. If something visits the mouse then it chases the tiger. If something chases the mouse then the mouse is nice. If something chases the cat then the cat chases the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not chase the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-82_Q12", "context": "Anne is big. Anne is kind. Anne is smart. Anne is white. Charlie is round. Gary is big. Gary is furry. Gary is rough. Gary is smart. Harry is white. If something is white then it is furry. If Harry is smart then Harry is not round. If Anne is round then Anne is kind. All big things are rough. If something is smart and white then it is big. If Anne is furry then Anne is smart. All furry things are smart. If Anne is rough then Anne is round. If Harry is rough and Harry is white then Harry is kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-789_Q9", "context": "Anne is young. Erin is big. Erin is furry. Fiona is big. Fiona is red. Harry is quiet. Harry is smart. All smart things are quiet. If something is young then it is quiet. If something is cold and not big then it is not red. All big things are red. Young, quiet things are furry. All quiet things are smart. If something is red then it is young. All smart things are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-345_Q8", "context": "The bald eagle chases the cow. The bald eagle chases the mouse. The bald eagle is green. The bald eagle sees the mouse. The cow chases the dog. The cow likes the bald eagle. The cow likes the mouse. The dog is green. The dog is kind. The mouse likes the cow. The mouse likes the dog. If something likes the cow and the cow sees the mouse then the cow chases the mouse. If something likes the cow and the cow sees the bald eagle then the cow likes the dog. If something chases the cow and it sees the cow then the cow sees the bald eagle. If something is green then it sees the cow. If the cow likes the dog then the cow sees the dog. If the cow is kind then the cow likes the bald eagle. If something sees the dog then it chases the mouse. If something likes the dog then it sees the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not like the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1256_Q16", "context": "Bob is big. Bob is furry. Bob is quiet. Bob is rough. Bob is smart. Charlie is big. Charlie is furry. Dave is furry. Dave is nice. Erin is big. Erin is blue. Erin is furry. Erin is nice. Erin is quiet. Erin is rough. Erin is smart. If something is smart and nice then it is blue. All nice things are smart. If something is big then it is quiet. If Erin is blue then Erin is smart. All quiet things are rough. If something is big and nice then it is smart. All big, nice things are smart. All smart things are blue. All nice, blue things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-194_Q9", "context": "Anne is furry. Anne is red. Anne is white. Charlie is red. Dave is white. Fiona is big. Fiona is nice. Nice things are furry. Kind, nice things are white. Red, white things are nice. All red things are kind. If Dave is nice and Dave is big then Dave is red. White things are nice. All white, furry things are red. If something is kind and red then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-581_Q11", "context": "The bald eagle is round. The cat eats the tiger. The cat is nice. The cat does not see the bald eagle. The cat sees the rabbit. The rabbit chases the bald eagle. The rabbit is green. The rabbit is nice. The rabbit does not see the tiger. The tiger is round. If someone sees the rabbit then they are kind. If someone eats the cat and the cat is nice then the cat is cold. If someone is kind then they eat the rabbit. If someone sees the cat and they do not eat the cat then the cat sees the tiger. If someone sees the tiger then the tiger does not see the rabbit. If someone is kind and they chase the bald eagle then the bald eagle sees the rabbit. If someone eats the cat and the cat is round then the cat is green. If someone eats the rabbit and the rabbit is nice then they chase the bald eagle. If someone sees the bald eagle then the bald eagle is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1195_Q6", "context": "Bob is round. Charlie is red. Charlie is round. Charlie is white. Dave is furry. Dave is green. Dave is rough. Dave is round. Dave is smart. Dave is white. Erin is round. Erin is white. All white, rough people are green. All round people are red. All rough, smart people are white. Rough people are smart. All green people are furry. If someone is round then they are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-495_Q22", "context": "The bear eats the tiger. The bear sees the rabbit. The bear sees the squirrel. The rabbit eats the bear. The rabbit does not eat the tiger. The rabbit is red. The rabbit sees the tiger. The squirrel eats the bear. The squirrel needs the bear. The squirrel needs the rabbit. The squirrel needs the tiger. The tiger is green. The tiger is not young. The tiger needs the rabbit. The tiger needs the squirrel. The tiger sees the squirrel. If something sees the bear then it eats the squirrel. If something needs the rabbit and it eats the squirrel then it eats the rabbit. If something is green then it sees the bear. If the bear sees the squirrel and the squirrel is green then the bear is red. If something is blue then it is red. If the tiger sees the rabbit then the rabbit is blue. If something is big then it needs the squirrel. If something sees the tiger and it sees the squirrel then it does not eat the bear. If something eats the rabbit then the rabbit sees the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear needs the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-117_Q3", "context": "Dave is smart. Dave is young. Erin is smart. Gary is blue. Gary is young. Harry is cold. Harry is smart. Nice, smart people are blue. If someone is smart then they are young. If someone is quiet and smart then they are young. If someone is smart and young then they are nice. Cold people are big. If someone is quiet then they are cold. Blue people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-958_Q1", "context": "The bear chases the mouse. The cat chases the bear. The cat is blue. The cat is rough. The cat needs the bear. The mouse is big. The mouse is blue. The mouse needs the bear. The rabbit chases the mouse. The rabbit needs the bear. If something eats the cat and it is kind then the cat chases the bear. If something needs the bear then it is kind. If something needs the cat and the cat is nice then it chases the cat. If something is big then it needs the mouse. If something chases the cat and it needs the rabbit then the rabbit is kind. If the cat chases the bear and the cat is big then the cat eats the rabbit. If something needs the mouse then it eats the cat. If something chases the bear then it is big. If something is kind then it chases the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse needs the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-889_Q4", "context": "Erin is blue. Fiona is big. Fiona is blue. Fiona is furry. Gary is big. Gary is furry. Gary is kind. Gary is nice. Harry is big. Harry is blue. Harry is kind. Harry is young. All blue things are nice. All furry, big things are white. If something is blue and young then it is big. If Gary is furry and Gary is young then Gary is blue. Nice things are kind. If something is young and furry then it is nice. If something is nice then it is young. All furry, blue things are kind. Big, nice things are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-610_Q5", "context": "Bob is blue. Bob is quiet. Dave is smart. Gary is quiet. Gary is round. Gary is smart. Gary is white. Harry is big. Harry is blue. Harry is quiet. If Harry is quiet and Harry is round then Harry is smart. All quiet things are round. Round things are blue. If something is round and smart then it is quiet. If something is smart and white then it is nice. If something is big then it is nice. Smart things are white. All blue, smart things are round. White, nice things are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-114_Q7", "context": "Bob is cold. Bob is white. Charlie is big. Gary is not big. Gary is not blue. Gary is red. Gary is rough. Gary is white. Harry is big. Harry is cold. If something is big then it is blue. Big things are blue. If Charlie is cold then Charlie is red. If Bob is blue and Bob is big then Bob is red. All white things are rough. Big, rough things are cold. If Charlie is quiet and Charlie is white then Charlie is blue. If something is cold then it is big. If something is blue then it is white.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1106_Q19", "context": "Anne is green. Erin is round. Fiona is big. Fiona is green. Fiona is red. Fiona is round. Harry is big. Harry is green. Harry is nice. Harry is red. All nice things are round. If something is blue then it is green. Blue, furry things are red. All blue, red things are green. Big things are blue. Blue things are round. If something is round then it is big. Green, blue things are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1160_Q8", "context": "Charlie is big. Dave is blue. Dave is cold. Dave is red. Fiona is nice. Fiona is red. Gary is nice. All quiet things are white. If something is red then it is quiet. If something is big then it is blue. If Fiona is white and Fiona is red then Fiona is cold. If something is blue and quiet then it is big. Cold, white things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1017_Q4", "context": "Dave is smart. Erin is furry. Erin is round. Gary is furry. Gary is nice. Gary is white. Harry is nice. Young, white things are nice. All young, smart things are furry. Nice, young things are furry. If something is smart then it is white. If Dave is nice and Dave is white then Dave is round. Furry things are young. Round, smart things are kind. If Harry is nice then Harry is smart. Smart things are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-178_Q6", "context": "The bald eagle needs the squirrel. The bald eagle visits the bear. The bear is not big. The bear does not need the cat. The bear visits the cat. The cat is big. The squirrel is red. The squirrel is round. The squirrel needs the bear. The squirrel visits the bald eagle. The squirrel visits the bear. If someone sees the squirrel then they are nice. If someone is round and they need the squirrel then they are big. If someone is big then they visit the bald eagle. If someone visits the bear and they are round then they need the cat. If someone visits the bald eagle and they need the cat then they do not see the bald eagle. If the bald eagle is cold and the bald eagle does not see the bear then the bald eagle does not need the bear. If someone sees the cat then they need the bald eagle. If the squirrel is round and the squirrel does not see the bald eagle then the bald eagle sees the cat. If someone needs the bald eagle then the bald eagle visits the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel sees the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-895_Q11", "context": "Bob is green. Bob is quiet. Bob is red. Bob is not round. Charlie is nice. Charlie is not red. Charlie is white. Dave is quiet. Dave is round. Erin is green. Erin is quiet. Erin is white. If something is red then it is furry. If something is green and quiet then it is furry. All red things are furry. If something is round and quiet then it is white. If Dave is furry then Dave is nice. Nice, round things are not red. All white things are green. If something is furry and not quiet then it is not nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-523_Q4", "context": "The cow is green. The cow is kind. The cow likes the dog. The cow sees the dog. The dog chases the cow. The dog chases the squirrel. The dog likes the cow. The rabbit chases the dog. The rabbit is green. The rabbit likes the cow. The squirrel chases the dog. If something sees the dog and the dog chases the rabbit then it chases the squirrel. If something chases the rabbit then the rabbit likes the dog. If the dog sees the squirrel then the dog likes the squirrel. If something is red and kind then it likes the cow. If something is kind then it chases the rabbit. If something is kind and it sees the rabbit then it is round. If the rabbit is round then the rabbit sees the squirrel. If the rabbit likes the dog then the dog is kind. If something chases the rabbit and the rabbit likes the squirrel then the rabbit likes the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow does not chase the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1033_Q11", "context": "Bob is green. Bob is kind. Dave is green. Dave is rough. Dave is smart. Erin is green. Erin is rough. Erin is young. Harry is green. Harry is kind. Harry is nice. Harry is rough. Harry is smart. Harry is young. If Harry is rough and Harry is big then Harry is young. Big people are smart. If Bob is kind then Bob is nice. If Bob is rough and Bob is young then Bob is big. If someone is smart then they are nice. Nice people are rough. If someone is kind and rough then they are young. If someone is smart then they are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-438_Q12", "context": "Bob is green. Bob is quiet. Bob is white. Bob is not young. Charlie is quiet. Fiona is nice. Gary is green. Gary is quiet. Gary is round. Gary is smart. If someone is quiet then they are green. All green, smart people are nice. If someone is green then they are smart. If someone is young then they are smart. If someone is young then they are not white. If Charlie is round and Charlie is green then Charlie is young. If someone is smart and not green then they are round. If someone is smart and nice then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-704_Q11", "context": "The mouse chases the rabbit. The rabbit is cold. The rabbit is young. The squirrel chases the rabbit. The squirrel chases the tiger. The squirrel is round. The squirrel is young. The squirrel likes the mouse. The squirrel likes the rabbit. The squirrel likes the tiger. The squirrel needs the mouse. The squirrel needs the tiger. The tiger likes the mouse. The tiger likes the squirrel. The tiger needs the mouse. The tiger needs the rabbit. If something needs the tiger then it is nice. If something is nice then it chases the rabbit. If something chases the mouse then the mouse chases the rabbit. If something likes the squirrel and the squirrel needs the rabbit then the rabbit needs the tiger. If something is nice then it needs the rabbit. If something likes the squirrel and it chases the squirrel then it is nice. If something likes the rabbit and the rabbit likes the mouse then the rabbit needs the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit chases the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-928_Q4", "context": "Bob is green. Bob is quiet. Charlie is quiet. Charlie is white. Erin is furry. Erin is young. Fiona is not rough. White, green things are rough. All cold things are white. Cold, rough things are white. White things are furry. All quiet, rough things are furry. If something is white and furry then it is green. All furry things are cold. Rough things are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-778_Q10", "context": "The cat is red. The dog is kind. The dog needs the lion. The dog visits the lion. The lion needs the dog. The rabbit is cold. The rabbit does not need the lion. The rabbit does not see the cat. The rabbit sees the dog. The rabbit sees the lion. If someone is cold then they visit the rabbit. If someone is red then they need the dog. If the rabbit sees the dog and the dog is cold then the dog does not visit the rabbit. If someone is round then they need the rabbit. If someone sees the rabbit and they do not see the dog then they need the rabbit. If someone needs the dog then they do not see the rabbit. If someone sees the lion then they are round. If someone needs the rabbit then the rabbit is red. If someone visits the lion and the lion does not visit the dog then the lion is round.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not need the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-966_Q6", "context": "Dave is nice. Dave is round. Erin is rough. Fiona is quiet. Fiona is young. Harry is green. Harry is not rough. If Dave is green then Dave is not round. All nice things are not quiet. If something is cold then it is nice. If something is green then it is cold. If something is cold and not quiet then it is not young. If something is green and not young then it is round. If something is quiet and rough then it is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-108_Q8", "context": "The bald eagle chases the rabbit. The bald eagle eats the squirrel. The bald eagle is nice. The bald eagle visits the rabbit. The lion chases the squirrel. The lion eats the rabbit. The lion visits the squirrel. The rabbit is big. The rabbit is kind. The rabbit visits the squirrel. The squirrel chases the lion. If someone chases the rabbit and the rabbit is kind then they eat the rabbit. If someone eats the rabbit then the rabbit is rough. If the rabbit visits the squirrel then the rabbit is big. If someone is green then they visit the bald eagle. Nice, big people are green. If the rabbit visits the squirrel and the rabbit eats the bald eagle then the squirrel visits the rabbit. If someone eats the rabbit then they are big. If someone visits the bald eagle then they are kind. If someone visits the rabbit and they are big then the rabbit visits the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1279_Q22", "context": "Anne is green. Bob is cold. Bob is white. Dave is kind. Dave is white. Erin is green. Erin is smart. If Erin is white and Erin is green then Erin is kind. Green people are blue. If someone is smart and kind then they are young. If Anne is young then Anne is kind. All blue people are white. Young, green people are blue. All young, blue people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-470_Q11", "context": "The bald eagle needs the mouse. The bald eagle does not visit the lion. The cow is round. The cow does not see the bald eagle. The cow sees the mouse. The lion sees the mouse. The mouse does not need the cow. If something needs the cow then it sees the lion. If something visits the bald eagle then it is red. If the cow does not need the mouse then the cow is cold. If something visits the bald eagle then the bald eagle visits the cow. If something sees the mouse then it visits the cow. If the lion sees the bald eagle then the bald eagle does not need the mouse. If something visits the cow then it visits the bald eagle. If something visits the bald eagle then it is not young.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-260_Q4", "context": "Anne is furry. Anne is not kind. Charlie is round. Dave is furry. Dave is round. Gary is big. Gary is not cold. If Dave is quiet then Dave is furry. All quiet people are cold. Round people are quiet. Cold people are big. If someone is rough and not cold then they are big. Big people are kind. All quiet, kind people are furry. Big people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-14_Q17", "context": "Charlie is not nice. Dave is big. Dave is quiet. Fiona is nice. Fiona is quiet. Harry is not green. Harry is nice. If Fiona is nice then Fiona is big. If something is big then it is kind. If Fiona is big and Fiona is kind then Fiona is young. If something is quiet then it is big. All smart things are green. If something is big and young then it is green. Green things are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is not green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-514_Q4", "context": "The cat sees the mouse. The cat visits the dog. The dog is not kind. The dog sees the squirrel. The dog does not visit the mouse. The mouse chases the dog. The mouse chases the squirrel. The mouse is not big. The mouse is young. The mouse sees the cat. The squirrel sees the cat. The squirrel visits the mouse. If someone chases the cat then they do not visit the dog. If the mouse visits the squirrel and the mouse chases the dog then the dog chases the mouse. If the squirrel sees the cat then the cat sees the squirrel. If someone visits the mouse and the mouse is green then the mouse does not chase the squirrel. If the dog chases the mouse then the mouse chases the squirrel. If someone sees the squirrel then they chase the mouse. If someone visits the squirrel and they visit the dog then the squirrel is green. If someone chases the mouse then they visit the squirrel. If someone chases the squirrel and the squirrel is green then the squirrel visits the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not see the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-569_Q7", "context": "Anne is big. Anne is blue. Anne is quiet. Anne is round. Anne is smart. Anne is white. Erin is big. Erin is quiet. Erin is round. Fiona is blue. Gary is blue. All blue, nice people are quiet. All blue people are smart. If someone is white and nice then they are round. If Erin is blue then Erin is nice. If someone is quiet and smart then they are nice. If someone is blue and smart then they are white. Nice people are white. All round people are big. All blue, white people are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-384_Q5", "context": "The cow chases the tiger. The cow eats the dog. The cow is red. The cow is round. The cow likes the lion. The dog eats the cow. The lion likes the tiger. The tiger is green. The tiger is nice. The tiger is red. If someone chases the lion then they eat the tiger. If someone is nice then they are green. If someone chases the tiger and they are young then the tiger eats the lion. If someone eats the tiger then the tiger chases the lion. If someone chases the lion then the lion likes the dog. If someone eats the cow and the cow chases the tiger then the cow chases the dog. If the dog is young then the dog is round. If someone chases the dog then they chase the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow chases the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-343_Q22", "context": "Anne is cold. Anne is quiet. Anne is smart. Bob is blue. Bob is not cold. Bob is rough. Bob is round. Bob is smart. Bob is young. Charlie is round. Harry is blue. All young, round people are smart. If Harry is smart then Harry is not cold. All young people are round. If someone is blue then they are rough. Rough people are young. If Bob is round then Bob is young. If Anne is blue then Anne is not quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-820_Q11", "context": "Charlie is nice. Erin is cold. Erin is nice. Gary is big. Gary is not rough. Gary is smart. Harry is nice. If someone is nice then they are round. Smart, furry people are cold. If someone is furry then they are cold. Big people are smart. If someone is smart then they are furry. If Gary is round and Gary is big then Gary is not nice. If someone is round and nice then they are big. If Gary is rough and Gary is round then Gary is smart. If Charlie is furry and Charlie is rough then Charlie is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1161_Q8", "context": "Anne is not cold. Anne is kind. Anne is young. Bob is nice. Charlie is cold. Gary is kind. Gary is nice. Nice, young things are quiet. All round, smart things are not quiet. If something is young and cold then it is kind. All cold things are young. Kind things are smart. If something is round and young then it is smart. If Bob is nice then Bob is not smart. All smart things are round. Quiet things are not round.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1130_Q2", "context": "Bob is round. Bob is smart. Erin is smart. Fiona is green. Fiona is red. Fiona is young. Gary is green. Gary is nice. Gary is smart. Gary is young. All smart, nice things are red. If something is round and red then it is green. If something is red and nice then it is round. If something is green and red then it is young. All green things are quiet. If Bob is smart and Bob is young then Bob is nice. If something is round then it is young. If Fiona is young then Fiona is quiet. If something is red and nice then it is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-381_Q23", "context": "The cat chases the lion. The cat does not chase the rabbit. The cat eats the rabbit. The cat visits the dog. The dog chases the cat. The dog chases the rabbit. The dog is young. The lion does not chase the cat. The lion is cold. The lion is young. The lion visits the cat. The rabbit chases the cat. The rabbit is young. The rabbit visits the cat. If someone eats the dog then the dog is kind. If someone visits the dog then they eat the dog. If someone is big then they visit the dog. If someone visits the dog and they are big then the dog is green. All kind people are big. If the dog visits the rabbit then the rabbit visits the lion. If the cat is cold and the rabbit does not visit the cat then the rabbit chases the lion. If someone visits the lion and the lion is kind then the lion eats the cat. If someone chases the lion and they are not green then they do not eat the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not visit the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1070_Q12", "context": "Anne is nice. Bob is blue. Bob is kind. Bob is nice. Charlie is nice. Fiona is cold. Fiona is rough. If Bob is cold and Bob is kind then Bob is rough. If something is cold and nice then it is kind. All nice things are cold. If Charlie is cold and Charlie is furry then Charlie is rough. If Charlie is rough and Charlie is kind then Charlie is furry. Rough, kind things are quiet. All kind, nice things are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-104_Q24", "context": "The cow chases the mouse. The cow chases the squirrel. The cow is young. The cow sees the squirrel. The lion chases the mouse. The lion is rough. The lion sees the cow. The mouse likes the cow. The squirrel chases the mouse. The squirrel likes the cow. The squirrel likes the lion. If someone chases the lion then the lion likes the mouse. If someone likes the mouse then they are kind. If someone likes the cow and the cow is rough then the cow is red. If someone chases the lion and they are red then they are young. If someone likes the squirrel then the squirrel is kind. If the lion chases the squirrel then the squirrel sees the cow. If someone sees the squirrel and the squirrel is kind then the squirrel chases the lion. If the squirrel likes the cow then the cow likes the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion likes the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-376_Q6", "context": "The bald eagle eats the bear. The bald eagle is blue. The bald eagle is green. The bald eagle is kind. The bald eagle needs the bear. The bald eagle needs the squirrel. The bald eagle sees the lion. The bald eagle sees the squirrel. The bear eats the lion. The bear is kind. The bear needs the lion. The bear sees the squirrel. The lion needs the bear. The squirrel is rough. The squirrel sees the bear. The squirrel sees the lion. If something is kind and it sees the lion then the lion is cold. If something eats the squirrel and the squirrel needs the bald eagle then the bald eagle is rough. If something is cold and it needs the bear then it is rough. If something is cold and it eats the squirrel then it eats the lion. If something is cold and rough then it sees the bear. If something sees the bear then it needs the bald eagle. If something needs the bald eagle then it is blue. If something is cold and it sees the lion then it sees the bald eagle. If something sees the squirrel then it sees the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1171_Q5", "context": "Bob is round. Charlie is rough. Charlie is white. Gary is blue. Gary is kind. Gary is smart. Harry is white. All smart, round things are kind. If Harry is rough then Harry is smart. If something is quiet then it is not smart. If something is blue then it is rough. If something is smart then it is round. All white things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-174_Q9", "context": "The bear eats the rabbit. The bear sees the cat. The bear sees the dog. The cat is young. The cat sees the bear. The dog is red. The rabbit is red. If someone eats the bear then the bear is young. If someone likes the bear then they eat the bear. If someone is young then they like the bear. If someone is cold then they see the rabbit. If someone sees the rabbit then the rabbit is red. If someone is round and blue then they like the rabbit. If someone likes the rabbit then they eat the cat. If someone sees the rabbit and they eat the bear then the bear is young.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear likes the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-967_Q1", "context": "The bald eagle chases the lion. The bald eagle chases the squirrel. The bald eagle eats the lion. The bald eagle eats the rabbit. The bald eagle is rough. The bald eagle likes the lion. The bald eagle likes the squirrel. The lion eats the squirrel. The lion is cold. The rabbit is rough. The squirrel is blue. If someone eats the rabbit and they are rough then they are round. If someone likes the rabbit then the rabbit likes the squirrel. If the rabbit eats the lion and the lion likes the rabbit then the lion likes the bald eagle. Cold people are round. If someone eats the rabbit and they chase the squirrel then they like the bald eagle. If the rabbit likes the lion and the rabbit chases the squirrel then the lion likes the bald eagle. If someone likes the squirrel then they eat the rabbit. If someone chases the bald eagle and the bald eagle eats the lion then the bald eagle likes the squirrel. If someone likes the bald eagle then they like the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-660_Q10", "context": "The bald eagle is cold. The bald eagle sees the cat. The cat eats the cow. The cow sees the rabbit. The cow visits the cat. The rabbit sees the bald eagle. The rabbit visits the cow. If someone is young then they visit the cow. If someone is cold then they visit the bald eagle. If someone is young and they do not eat the cow then they eat the bald eagle. If someone visits the bald eagle then they visit the rabbit. If someone visits the rabbit then the rabbit is cold. If the cow sees the bald eagle then the bald eagle sees the cow. If someone is young then they do not see the bald eagle. If someone eats the cat and they do not visit the bald eagle then the cat does not eat the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not visit the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-666_Q8", "context": "The bald eagle is big. The bald eagle does not like the bear. The bald eagle does not need the bear. The bear is cold. The bear is not young. The bear does not need the mouse. The mouse eats the bear. The mouse is young. The mouse likes the bald eagle. The mouse needs the bald eagle. The tiger eats the mouse. The tiger is big. If someone needs the tiger then the tiger likes the bear. If someone eats the bald eagle and the bald eagle eats the tiger then the tiger does not like the bald eagle. If someone likes the mouse and they are not nice then the mouse likes the bald eagle. If someone eats the mouse and they are big then they like the bear. If someone eats the bear then they need the tiger. If someone likes the mouse then they are not big. If someone needs the tiger then they eat the bald eagle. If someone eats the bald eagle and the bald eagle is big then the bald eagle eats the bear. If someone is nice and they need the bald eagle then they like the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not eat the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-1214_Q15", "context": "Anne is big. Anne is smart. Erin is quiet. Gary is smart. Harry is kind. Harry is quiet. Harry is smart. All round, kind things are quiet. All furry things are not nice. Big things are smart. If something is big then it is kind. Kind, round things are furry. If something is kind then it is round. All quiet things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1197_Q11", "context": "Anne is rough. Anne is round. Bob is white. Gary is blue. Gary is cold. Gary is green. Harry is green. Blue, cold people are rough. If someone is blue then they are cold. If someone is white and young then they are cold. White, round people are blue. All rough people are not young. All young, rough people are not green. If someone is white then they are round. Young, blue people are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-723_Q7", "context": "Anne is big. Erin is green. Erin is rough. Erin is young. Fiona is big. Fiona is young. Gary is big. Gary is green. Gary is red. Gary is rough. All red, kind people are rough. If someone is green then they are young. All rough, big people are kind. If someone is kind and young then they are smart. Kind people are red. Big people are kind. If someone is rough and kind then they are big. Red people are green. All green, rough people are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-314_Q11", "context": "Anne is furry. Bob is not green. Bob is round. Charlie is cold. Charlie is not red. Gary is cold. Gary is young. If someone is green and furry then they are cold. Smart people are young. Young people are green. If Anne is furry and Anne is red then Anne is smart. If Bob is furry then Bob is not cold. If someone is furry then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-768_Q17", "context": "The bear chases the mouse. The bear is not cold. The bear does not see the mouse. The cow chases the mouse. The cow chases the rabbit. The cow needs the mouse. The cow does not see the bear. The mouse chases the rabbit. The mouse is blue. The mouse needs the bear. The mouse sees the bear. The rabbit chases the bear. The rabbit chases the mouse. The rabbit does not need the bear. The rabbit does not see the cow. The rabbit sees the mouse. If the bear is blue and the bear needs the mouse then the bear is not big. If someone sees the bear then they are big. If someone sees the mouse then they chase the mouse. If someone is big then they need the cow. If someone chases the mouse and the mouse does not need the rabbit then the rabbit sees the mouse. If someone needs the mouse and they need the cow then the cow is blue. If someone sees the mouse then the mouse needs the bear. If someone needs the cow then the cow is big.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not chase the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-264_Q11", "context": "The bald eagle is cold. The bald eagle is nice. The bald eagle is rough. The bald eagle likes the lion. The bear is cold. The lion does not eat the bald eagle. The lion is not cold. The lion likes the rabbit. The rabbit eats the lion. The rabbit likes the lion. The rabbit sees the bear. If someone eats the bear then they are big. If someone eats the lion and they like the lion then they see the bald eagle. If someone is cold then they see the bald eagle. If the rabbit is not rough then the rabbit does not like the lion. If someone sees the bald eagle then the bald eagle eats the bear. If someone is big and cold then they like the bald eagle. If someone is big and they like the bald eagle then they are not kind. If the bald eagle likes the bear and the bear does not see the bald eagle then the bear does not see the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-367_Q1", "context": "Anne is nice. Bob is kind. Bob is rough. Dave is kind. Dave is young. Erin is cold. Erin is young. All young things are big. All young, rough things are quiet. If something is kind and cold then it is young. If something is big then it is young. If something is nice then it is young. If something is kind then it is rough. Young, big things are kind. Young things are cold. If Dave is nice and Dave is big then Dave is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-662_Q1", "context": "The cat eats the rabbit. The cat is red. The cat is rough. The cat visits the cow. The cow eats the cat. The cow is red. The cow is young. The cow needs the rabbit. The rabbit eats the cow. The rabbit is kind. The rabbit is nice. The rabbit needs the squirrel. The squirrel needs the rabbit. The squirrel visits the cat. If something needs the rabbit then it eats the cow. If something is nice and it visits the cat then the cat needs the cow. If the cow eats the squirrel then the squirrel is nice. If something needs the cow then it eats the cow. If something is kind and rough then it visits the cat. If the cow eats the rabbit then the rabbit needs the squirrel. If something eats the cow then it eats the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-743_Q7", "context": "The bald eagle is nice. The cat is not red. The cat is not round. The cat does not like the bald eagle. The cat sees the mouse. The cat sees the tiger. The cat visits the bald eagle. The cat does not visit the mouse. The mouse sees the cat. The mouse visits the bald eagle. The mouse visits the tiger. The tiger likes the bald eagle. The tiger likes the mouse. The tiger visits the mouse. If someone sees the bald eagle and they like the tiger then the bald eagle visits the mouse. If the cat visits the mouse then the mouse visits the tiger. If someone visits the mouse then they like the tiger. If someone likes the tiger then they see the bald eagle. If someone likes the mouse then they do not see the cat. If the bald eagle does not see the tiger then the tiger is not nice. If the cat visits the mouse and the mouse likes the bald eagle then the bald eagle visits the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle visits the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-894_Q23", "context": "The bear eats the squirrel. The bear is not nice. The cat is round. The rabbit chases the cat. The rabbit eats the cat. The squirrel chases the bear. The squirrel chases the cat. The squirrel chases the rabbit. The squirrel does not eat the cat. The squirrel eats the rabbit. The squirrel is not kind. The squirrel is red. The squirrel is rough. The squirrel does not like the bear. The squirrel likes the cat. The squirrel likes the rabbit. If something chases the bear and it is not nice then it does not like the squirrel. If something is round and it eats the squirrel then the squirrel is round. If something chases the cat then the cat is not kind. If something is round then it eats the bear. If something eats the bear then it eats the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not like the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-918_Q18", "context": "Anne is blue. Anne is nice. Charlie is furry. Charlie is white. Dave is red. Fiona is furry. Fiona is green. Fiona is nice. Fiona is smart. Fiona is white. If someone is blue then they are green. Red people are smart. If Anne is furry and Anne is white then Anne is green. If someone is green and white then they are red. All blue people are furry. If someone is white then they are blue. All smart, green people are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-319_Q8", "context": "The cow chases the mouse. The cow is green. The cow sees the lion. The dog is kind. The dog sees the mouse. The lion is green. The lion is kind. The mouse chases the lion. The mouse needs the cow. The mouse sees the dog. The mouse sees the lion. If someone needs the cow then they need the dog. If someone needs the lion and they need the mouse then they are young. If someone is red then they need the mouse. If someone sees the dog and the dog chases the cow then they are green. If someone sees the mouse and the mouse needs the dog then the dog is red. If someone needs the mouse and the mouse sees the dog then they need the cow. If someone chases the dog and the dog is green then they are young. If someone sees the lion and the lion chases the dog then they are green. If the mouse chases the cow and the mouse is young then the mouse chases the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not need the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-811_Q14", "context": "The cat chases the tiger. The dog chases the tiger. The dog is red. The dog is rough. The dog needs the cat. The dog sees the lion. The lion chases the cat. The lion does not chase the tiger. The lion is rough. The tiger chases the cat. The tiger needs the dog. If someone needs the cat and the cat needs the lion then the cat is kind. If someone is rough then they are red. If someone is round then they do not need the lion. If someone sees the dog and they are red then the dog sees the cat. If someone sees the tiger then the tiger chases the dog. If someone needs the lion then they need the dog. If the lion is red and the lion chases the cat then the lion sees the tiger. If someone chases the dog then they are rough. If the cat sees the tiger then the tiger sees the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog sees the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-254_Q8", "context": "Anne is cold. Anne is red. Bob is cold. Bob is round. Dave is white. Dave is young. Harry is kind. Smart things are red. If something is cold then it is white. White, cold things are round. If Bob is kind and Bob is round then Bob is red. Kind things are cold. If Harry is white and Harry is round then Harry is smart. If Harry is young and Harry is round then Harry is red. Red, white things are cold. If something is young and red then it is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-353_Q10", "context": "The bear is rough. The bear is young. The bear likes the dog. The bear likes the tiger. The bear needs the tiger. The bear visits the dog. The bear visits the mouse. The dog is big. The dog likes the mouse. The mouse likes the dog. The mouse needs the bear. The tiger is rough. The tiger needs the dog. The tiger visits the mouse. If someone needs the bear and the bear likes the tiger then they are nice. If someone is big then they need the bear. If someone needs the mouse then the mouse needs the tiger. If someone needs the dog and the dog visits the bear then the bear is big. If someone visits the bear and the bear needs the dog then the dog likes the tiger. If the tiger needs the bear and the bear is cold then the bear is young. If someone is nice then they visit the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-772_Q8", "context": "The bear is blue. The bear is green. The bear is nice. The lion sees the bear. The rabbit likes the lion. The tiger is nice. The tiger needs the rabbit. If someone needs the rabbit then they like the rabbit. If someone is blue and rough then they need the bear. If someone needs the rabbit and the rabbit needs the bear then the bear is young. If the tiger needs the lion and the lion is green then the tiger likes the lion. If someone is nice then they need the rabbit. If someone likes the rabbit then they need the lion. If someone needs the lion and they like the rabbit then they are rough. If someone sees the tiger and they see the bear then they see the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1306_Q7", "context": "Dave is red. Dave is rough. Dave is smart. Erin is rough. Fiona is green. Gary is cold. Gary is green. Gary is red. Gary is rough. Gary is smart. Gary is white. Gary is young. If someone is white and green then they are cold. All rough people are red. Red, young people are green. If someone is cold and red then they are white. Red, rough people are young. If someone is green and young then they are white. All white people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-384_Q5", "context": "Anne is furry. Anne is green. Anne is young. Bob is green. Bob is round. Fiona is round. Gary is furry. Young things are big. White things are green. All smart, young things are white. If something is smart then it is young. If something is young and green then it is round. If Gary is furry then Gary is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1193_Q16", "context": "Anne is cold. Bob is big. Bob is blue. Bob is cold. Bob is furry. Bob is kind. Bob is round. Bob is not smart. Charlie is blue. Gary is furry. Round people are big. If someone is cold then they are big. If Anne is smart and Anne is kind then Anne is round. If someone is big then they are furry. If Gary is cold and Gary is round then Gary is kind. All blue, furry people are kind. All furry people are blue. If someone is cold and kind then they are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-892_Q11", "context": "Charlie is furry. Charlie is green. Charlie is nice. Charlie is round. Charlie is white. Dave is cold. Dave is green. Dave is nice. Dave is round. Dave is white. Gary is white. Harry is furry. Cold things are quiet. If something is white then it is nice. All round, white things are nice. If Gary is quiet and Gary is round then Gary is cold. If something is nice then it is round. If something is green then it is quiet. If something is round then it is cold. If something is quiet and white then it is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-66_Q19", "context": "The bald eagle chases the dog. The bald eagle needs the cat. The bald eagle visits the cat. The cat chases the rabbit. The cat does not need the rabbit. The cat visits the dog. The dog is blue. The rabbit chases the cat. The rabbit is not nice. The rabbit visits the bald eagle. If someone needs the bald eagle and the bald eagle needs the cat then the bald eagle is big. If the dog needs the cat and the dog visits the bald eagle then the dog is nice. If someone chases the rabbit and the rabbit needs the dog then they visit the rabbit. If someone is blue then they visit the rabbit. If someone is blue and they visit the rabbit then they need the dog. If someone visits the dog and they do not visit the cat then the dog chases the cat. If someone visits the rabbit then the rabbit is blue. If someone visits the dog then they chase the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not visit the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-835_Q1", "context": "Anne is young. Bob is cold. Bob is quiet. Bob is young. Fiona is cold. Fiona is young. Harry is nice. If someone is red then they are cold. All young, quiet people are cold. All round, red people are not big. All round people are not big. All young, red people are not big. Cold people are quiet. Big people are not young. All quiet people are round. If Harry is nice then Harry is red.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-133_Q9", "context": "Anne is blue. Anne is cold. Anne is quiet. Anne is red. Fiona is cold. Gary is big. Harry is blue. All kind, red things are furry. If Anne is red and Anne is cold then Anne is blue. Blue things are red. If something is cold then it is kind. Furry things are blue. If Gary is kind then Gary is red. If something is furry and kind then it is quiet. All red things are cold. Cold, quiet things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-324_Q5", "context": "The bear chases the cow. The cat likes the bear. The cow chases the cat. The cow chases the tiger. The cow likes the tiger. The cow visits the bear. The tiger visits the cat. If someone is kind then they do not visit the cow. If someone chases the cow and the cow visits the cat then the cow does not chase the tiger. If someone visits the tiger then the tiger chases the cow. If the tiger chases the cow then the tiger chases the bear. If someone is round and they visit the bear then the bear visits the tiger. If someone chases the cat then the cat visits the bear. If the cow chases the cat and the cat visits the bear then the cat is round. If someone likes the tiger then the tiger is kind. If the cow visits the bear and the bear visits the tiger then the cow is not round.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-582_Q17", "context": "The bald eagle is green. The bald eagle is not round. The bald eagle likes the squirrel. The cat does not chase the rabbit. The cat is not green. The cat is not round. The cat likes the bald eagle. The cat does not like the rabbit. The cat visits the squirrel. The rabbit chases the bald eagle. The rabbit is red. The rabbit is round. The rabbit likes the cat. The rabbit likes the squirrel. The squirrel chases the cat. The squirrel visits the bald eagle. If something likes the rabbit and the rabbit likes the cat then the cat visits the bald eagle. If the rabbit likes the bald eagle then the bald eagle likes the rabbit. If the bald eagle visits the cat and the cat visits the rabbit then the bald eagle visits the squirrel. If something chases the bald eagle then the bald eagle chases the rabbit. If the squirrel likes the rabbit and the squirrel does not like the cat then the squirrel likes the bald eagle. If something is nice then it chases the cat. If something visits the bald eagle then it chases the squirrel. If something is green then it visits the cat. If the bald eagle chases the rabbit then the rabbit likes the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not visit the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-765_Q16", "context": "Bob is blue. Bob is furry. Bob is nice. Bob is young. Erin is blue. Gary is blue. Harry is quiet. If something is big and red then it is blue. If something is quiet then it is furry. If Gary is furry and Gary is big then Gary is blue. If Harry is nice then Harry is quiet. Big things are red. Big, nice things are furry. Quiet, blue things are nice. Furry things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-681_Q7", "context": "The bear chases the cow. The cat chases the cow. The cat sees the bear. The cat sees the cow. The cat sees the squirrel. The cow is red. The cow sees the cat. The squirrel chases the bear. The squirrel eats the bear. The squirrel sees the cow. If something chases the cow then it is red. If something eats the cat and it sees the cow then the cow chases the bear. If something is red then it eats the bear. If something eats the cow then the cow sees the squirrel. If something is big and it sees the squirrel then the squirrel eats the cow. If something is red then it is big. If something chases the cat then the cat eats the bear. If the cow is kind and the cow chases the bear then the bear eats the cow. If something eats the cow then it is red.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel eats the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-369_Q9", "context": "Dave is furry. Dave is rough. Dave is smart. Erin is quiet. Erin is rough. Fiona is cold. Fiona is not furry. Fiona is kind. Fiona is quiet. Fiona is not rough. Gary is furry. Gary is not green. Gary is quiet. Gary is not rough. If Fiona is quiet and Fiona is furry then Fiona is kind. If something is smart then it is green. If something is kind then it is not furry. All green, quiet things are cold. All rough, cold things are kind. If something is rough then it is smart. If Gary is cold then Gary is green.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-447_Q9", "context": "The lion is big. The lion needs the squirrel. The mouse chases the lion. The mouse chases the squirrel. The mouse is kind. The rabbit is big. The squirrel chases the lion. The squirrel likes the rabbit. The squirrel needs the lion. The squirrel needs the mouse. If something is big and it chases the squirrel then it needs the mouse. Kind things are young. If something needs the mouse then it is young. If something is young then it likes the lion. If something likes the lion then the lion needs the mouse. If something likes the lion and it likes the mouse then the mouse chases the squirrel. If something is round and it likes the lion then the lion likes the squirrel. If something chases the mouse and it is round then it likes the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-406_Q10", "context": "Charlie is nice. Charlie is smart. Charlie is young. Dave is big. Dave is nice. Dave is quiet. Dave is round. Dave is young. Gary is round. Harry is round. Harry is smart. If Harry is smart then Harry is young. If someone is nice then they are cold. All cold people are big. All quiet people are cold. If someone is round and big then they are quiet. If someone is round and big then they are young. If someone is young then they are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-622_Q6", "context": "The cat is young. The cat visits the tiger. The mouse is red. The mouse likes the squirrel. The mouse sees the squirrel. The squirrel sees the tiger. The squirrel visits the mouse. The squirrel visits the tiger. The tiger is red. The tiger likes the cat. If something visits the mouse and it likes the squirrel then it visits the squirrel. If something likes the squirrel then it is young. If something likes the cat then it is kind. If something is kind and red then it visits the mouse. If something sees the squirrel then it likes the cat. If something likes the squirrel then the squirrel sees the tiger. If something likes the tiger and it is kind then the tiger visits the cat. If something visits the squirrel and it visits the mouse then it sees the mouse. If something sees the cat and it visits the cat then it sees the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not visit the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-58_Q16", "context": "Erin is furry. Fiona is furry. Fiona is quiet. Gary is furry. Gary is kind. Gary is white. Harry is quiet. If someone is young then they are kind. If someone is kind and white then they are furry. All green people are white. If someone is quiet then they are furry. All furry, big people are young. If Harry is green then Harry is quiet. If someone is kind then they are green. Green, furry people are kind. Quiet people are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-746_Q4", "context": "The bald eagle is kind. The bald eagle needs the rabbit. The bear chases the tiger. The bear is blue. The bear is kind. The bear likes the bald eagle. The bear likes the tiger. The rabbit chases the bear. The rabbit is young. The rabbit needs the tiger. The tiger is big. The tiger needs the rabbit. If something chases the bald eagle then the bald eagle likes the rabbit. If something chases the bear then the bear needs the bald eagle. If the bald eagle chases the tiger and the tiger chases the bear then the tiger likes the rabbit. If something likes the rabbit and it needs the rabbit then the rabbit needs the bald eagle. If something is red and big then it needs the rabbit. If something likes the tiger and it needs the bald eagle then the tiger chases the bald eagle. If something chases the bear then it likes the bald eagle. If the tiger likes the bald eagle and the bald eagle needs the bear then the tiger chases the bear. If the rabbit needs the bald eagle then the bald eagle is big.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not like the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-767_Q5", "context": "Bob is blue. Bob is smart. Charlie is furry. Fiona is blue. Fiona is not white. Harry is not quiet. Harry is not smart. All round people are not quiet. All young people are quiet. If Harry is smart then Harry is young. All quiet people are smart. If Charlie is furry then Charlie is young. Young people are furry. All smart people are not round. If Bob is young and Bob is not quiet then Bob is not furry. If someone is smart and not round then they are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-986_Q5", "context": "Anne is furry. Anne is rough. Charlie is furry. Fiona is quiet. Fiona is red. Fiona is young. Harry is red. Young things are rough. Rough things are furry. White things are young. Young things are white. If something is red then it is white. Quiet, big things are red. Furry things are red. If something is furry and white then it is big. If Fiona is red and Fiona is quiet then Fiona is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1348_Q4", "context": "Anne is blue. Anne is nice. Anne is red. Charlie is green. Charlie is red. Charlie is white. Charlie is young. Erin is blue. Erin is green. Erin is nice. Gary is green. Gary is young. All green, nice people are kind. White, green people are nice. Blue people are white. If Charlie is nice and Charlie is kind then Charlie is green. All red people are nice. If someone is green then they are blue. If Erin is red and Erin is white then Erin is kind. Young, kind people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-310_Q2", "context": "The bear chases the rabbit. The bear eats the dog. The bear is blue. The bear sees the rabbit. The dog eats the mouse. The dog eats the rabbit. The dog is big. The dog sees the mouse. The mouse eats the bear. The mouse is big. The rabbit chases the bear. The rabbit eats the dog. The rabbit eats the mouse. The rabbit is rough. If the mouse sees the dog and the mouse chases the dog then the mouse is green. If someone is big and they chase the mouse then they are rough. If someone sees the dog and the dog eats the rabbit then the rabbit chases the dog. If someone is green then they eat the mouse. If someone is cold then they chase the dog. If someone eats the mouse then they chase the mouse. If someone sees the rabbit then they are green. If the bear eats the mouse then the mouse is green. If someone eats the rabbit and they chase the bear then they see the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog does not see the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1316_Q1", "context": "Anne is nice. Anne is rough. Bob is round. Bob is white. Bob is young. Erin is white. Harry is rough. Harry is round. Harry is white. Harry is young. All rough people are quiet. All rough, round people are furry. Young, white people are round. All nice, white people are young. If someone is quiet then they are white. Rough, white people are nice.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-72_Q7", "context": "Dave is not rough. Fiona is not nice. Fiona is rough. Gary is nice. Gary is rough. Gary is white. Harry is nice. If Harry is furry then Harry is kind. Round, kind people are white. All round, nice people are red. If someone is nice then they are round. If someone is red then they are furry. If someone is furry and not white then they are not rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-793_Q9", "context": "The bald eagle chases the tiger. The bald eagle eats the tiger. The bald eagle likes the cat. The cat chases the tiger. The cat is big. The cat likes the bald eagle. The rabbit chases the tiger. The rabbit eats the cat. The tiger chases the cat. The tiger eats the cat. The tiger eats the rabbit. The tiger likes the cat. If something chases the cat then it is nice. If something is nice then it eats the bald eagle. If something eats the bald eagle then the bald eagle chases the cat. If something chases the bald eagle and the bald eagle eats the rabbit then the rabbit is blue. If something chases the bald eagle then it is red. If something is green and it eats the tiger then the tiger eats the bald eagle. If the bald eagle likes the tiger then the bald eagle chases the cat. If something chases the rabbit and it likes the tiger then it eats the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1225_Q10", "context": "Bob is rough. Dave is big. Dave is quiet. Dave is young. Gary is rough. Gary is white. Harry is blue. White, quiet things are big. If something is blue and big then it is white. If something is white then it is young. If something is young then it is rough. All white things are young. All blue things are big. White, rough things are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-425_Q2", "context": "Anne is furry. Anne is kind. Anne is red. Anne is young. Fiona is kind. Fiona is young. Gary is kind. Harry is quiet. Harry is round. Harry is white. If Gary is quiet then Gary is furry. Young things are quiet. All white things are young. Round things are young. Red things are young. Quiet, furry things are white. Kind things are round. All furry things are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-824_Q4", "context": "The bald eagle does not chase the bear. The bald eagle does not chase the cat. The bald eagle needs the lion. The bald eagle sees the bear. The bear chases the cat. The bear is red. The bear sees the cat. The bear sees the lion. The cat chases the lion. The lion chases the bald eagle. The lion chases the bear. The lion does not chase the cat. The lion is red. The lion needs the bald eagle. The lion sees the bald eagle. The lion sees the cat. If the bald eagle sees the cat then the bald eagle is rough. If something needs the bald eagle then the bald eagle is rough. If something sees the lion and it sees the cat then the cat sees the bear. If something is rough then it needs the bear. If something is rough then it needs the cat. If something sees the bear and it needs the bear then the bear is rough. If the lion chases the bear and the bear needs the cat then the lion is green. If something needs the cat and it needs the lion then the lion chases the bald eagle. If something is green and not rough then it needs the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat does not see the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-928_Q12", "context": "The bald eagle chases the rabbit. The bald eagle eats the rabbit. The bald eagle sees the tiger. The cat chases the tiger. The cat is big. The rabbit eats the bald eagle. The tiger eats the rabbit. If something eats the tiger then it is red. If something chases the rabbit then the rabbit eats the tiger. If the cat eats the tiger then the cat chases the bald eagle. If something is red then it eats the cat. If something chases the bald eagle then the bald eagle eats the tiger. If something eats the cat then the cat chases the bald eagle. If something eats the bald eagle and it is round then the bald eagle eats the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle does not eat the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1161_Q3", "context": "Charlie is big. Charlie is furry. Charlie is quiet. Charlie is red. Dave is nice. Dave is quiet. Dave is young. Fiona is nice. Fiona is smart. Harry is big. Harry is quiet. Harry is smart. All smart people are furry. All red people are nice. Smart, furry people are quiet. If Harry is red and Harry is nice then Harry is furry. All nice, young people are red. All red people are big. If Fiona is quiet then Fiona is young. Nice, red people are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-508_Q11", "context": "The bear eats the cow. The bear eats the rabbit. The cow chases the bear. The cow chases the rabbit. The cow is blue. The cow is round. The cow sees the bear. The lion chases the rabbit. The lion eats the cow. The rabbit sees the bear. If something sees the rabbit and the rabbit chases the lion then the rabbit is round. If the cow is green then the cow eats the bear. If something is nice and it chases the cow then the cow is green. If something is round and nice then it chases the cow. If something eats the lion then it chases the lion. If something sees the bear then it is nice. If something is nice and it sees the bear then the bear is nice. If something sees the cow then the cow chases the rabbit. If something eats the bear and the bear is nice then the bear sees the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear sees the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-937_Q1", "context": "Bob is blue. Erin is furry. Fiona is blue. Fiona is furry. Fiona is red. Fiona is young. Gary is blue. Gary is cold. Gary is green. Gary is quiet. Gary is red. Gary is young. All furry things are young. If something is blue then it is quiet. If Bob is quiet and Bob is blue then Bob is green. If something is green then it is red. If Fiona is cold and Fiona is quiet then Fiona is red. Red things are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-825_Q2", "context": "The cat eats the lion. The cat is nice. The cat is rough. The cat sees the squirrel. The lion eats the squirrel. The lion is rough. The lion needs the squirrel. The rabbit needs the cat. The rabbit sees the cat. The rabbit sees the lion. The squirrel eats the rabbit. The squirrel is nice. The squirrel is rough. The squirrel needs the cat. The squirrel needs the lion. The squirrel needs the rabbit. If someone sees the rabbit then the rabbit is blue. If someone sees the rabbit then they are blue. If someone needs the lion then they eat the rabbit. If someone is blue then they need the lion. If someone eats the lion then they need the lion. If someone sees the squirrel then they eat the rabbit. If someone needs the cat and the cat needs the lion then the cat sees the rabbit. If someone is green and they need the rabbit then they are nice. If the lion needs the cat then the cat is green.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not need the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-625_Q10", "context": "Charlie is cold. Dave is cold. Dave is kind. Dave is smart. Erin is cold. Erin is furry. Erin is kind. Erin is red. Erin is smart. Erin is young. Gary is young. If someone is smart then they are red. If Charlie is cold and Charlie is young then Charlie is big. All smart, cold people are young. Smart, big people are red. All young, big people are kind. Cold people are young. If someone is cold and red then they are smart. All big, kind people are smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-823_Q14", "context": "The cat is big. The cat is rough. The cow chases the cat. The cow chases the rabbit. The cow is big. The cow is blue. The cow visits the cat. The lion chases the cow. The lion is blue. The lion is green. The lion visits the cat. The lion visits the rabbit. The rabbit sees the cat. The rabbit sees the cow. If something is big and it chases the rabbit then it is rough. If something is rough and it visits the cat then the cat chases the cow. If something visits the rabbit then it chases the lion. If something is rough and green then it visits the cat. If the cow chases the cat and the cow is green then the cow is blue. If something chases the cat then it chases the rabbit. If something sees the cat and it is big then the cat sees the cow. If something chases the rabbit then it sees the rabbit. If something chases the cow then it chases the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow chases the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-572_Q21", "context": "The bald eagle is big. The bald eagle is rough. The bald eagle needs the bear. The bear is big. The bear is round. The bear does not like the cat. The bear sees the cow. The cat sees the bald eagle. The cat does not see the cow. The cow is big. The cow is not rough. The cow likes the bald eagle. The cow needs the bald eagle. The cow does not see the cat. If the bald eagle likes the cow then the bald eagle likes the bear. If the cow needs the cat and the cat needs the cow then the cow needs the bald eagle. If someone likes the bald eagle then the bald eagle likes the cow. If someone likes the bear then the bear is rough. If someone sees the cow then the cow does not see the bear. If someone is rough then they see the bear. If someone is big then they do not need the cat. If someone sees the bear then they are young. If someone needs the cow and they are not young then they do not like the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not see the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-945_Q19", "context": "The cat does not eat the dog. The dog sees the rabbit. The mouse is big. The mouse is round. The rabbit eats the cat. The rabbit is round. The rabbit likes the dog. If the cat sees the dog and the cat is rough then the cat likes the mouse. If someone likes the rabbit then they see the mouse. If someone sees the cat and they like the dog then the cat likes the rabbit. If someone eats the cat then the cat is blue. If someone is round then they see the cat. If someone likes the mouse then the mouse eats the dog. If someone sees the mouse then the mouse likes the rabbit. If the cat likes the mouse then the mouse likes the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not eat the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-652_Q3", "context": "Anne is not green. Anne is round. Dave is nice. Dave is young. Erin is not green. Erin is not kind. Erin is not nice. Erin is not smart. Erin is young. Gary is green. Gary is nice. Gary is young. Green people are not round. If someone is nice then they are green. If Anne is big then Anne is not kind. If someone is young and not round then they are smart. If someone is smart then they are big. Big people are not kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1067_Q2", "context": "Charlie is furry. Charlie is green. Fiona is big. Fiona is cold. Fiona is green. Gary is furry. Gary is green. Gary is young. Harry is big. Harry is green. Harry is white. Harry is young. All big people are white. If Fiona is furry then Fiona is green. If someone is white and cold then they are nice. All nice, white people are young. If someone is furry then they are young. If Gary is green then Gary is nice. White, furry people are nice. Young people are big. If someone is young and nice then they are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-165_Q3", "context": "The cat chases the lion. The cat visits the squirrel. The lion needs the squirrel. The lion visits the squirrel. The mouse chases the lion. The mouse is red. The mouse needs the squirrel. The mouse visits the cat. The mouse visits the lion. The squirrel chases the mouse. The squirrel is blue. The squirrel is kind. If someone needs the squirrel then they are red. If someone needs the squirrel then they are young. If someone visits the lion then they are blue. If someone is kind then they need the cat. If someone is young and they need the mouse then the mouse visits the cat. If someone is blue then they are kind. If someone visits the cat and the cat chases the mouse then the cat visits the lion. If someone chases the lion then they chase the mouse. If the mouse needs the squirrel and the mouse is young then the squirrel chases the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion is young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-900_Q7", "context": "The bald eagle is cold. The bald eagle needs the rabbit. The bald eagle sees the cow. The cow is red. The cow sees the bald eagle. The cow sees the tiger. The rabbit chases the cow. The rabbit is red. The rabbit is round. The rabbit needs the tiger. The tiger is round. If the cow needs the tiger then the cow sees the rabbit. If something needs the tiger then the tiger is red. If something is red then it needs the tiger. If something chases the tiger and it is big then it sees the tiger. If something sees the rabbit and it is red then it chases the cow. If something sees the rabbit and the rabbit is big then it needs the tiger. If something sees the rabbit and it needs the cow then the rabbit is cold. If something chases the cow then it needs the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow chases the cow.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-582_Q1", "context": "The bald eagle is green. The bald eagle is not round. The bald eagle likes the squirrel. The cat does not chase the rabbit. The cat is not green. The cat is not round. The cat likes the bald eagle. The cat does not like the rabbit. The cat visits the squirrel. The rabbit chases the bald eagle. The rabbit is red. The rabbit is round. The rabbit likes the cat. The rabbit likes the squirrel. The squirrel chases the cat. The squirrel visits the bald eagle. If something likes the rabbit and the rabbit likes the cat then the cat visits the bald eagle. If the rabbit likes the bald eagle then the bald eagle likes the rabbit. If the bald eagle visits the cat and the cat visits the rabbit then the bald eagle visits the squirrel. If something chases the bald eagle then the bald eagle chases the rabbit. If the squirrel likes the rabbit and the squirrel does not like the cat then the squirrel likes the bald eagle. If something is nice then it chases the cat. If something visits the bald eagle then it chases the squirrel. If something is green then it visits the cat. If the bald eagle chases the rabbit then the rabbit likes the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-826_Q19", "context": "Anne is kind. Bob is blue. Bob is young. Charlie is kind. Charlie is smart. Dave is furry. Dave is not quiet. All smart, round things are quiet. All kind things are round. If Dave is round then Dave is not kind. If Bob is young and Bob is furry then Bob is blue. If Anne is furry then Anne is quiet. If something is furry then it is young. If something is quiet and not kind then it is furry. All blue things are furry. Quiet things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-692_Q5", "context": "The cat is not green. The cow eats the cat. The cow eats the lion. The cow is red. The lion sees the cat. The lion visits the tiger. The tiger eats the cat. The tiger eats the lion. The tiger does not visit the cow. The tiger does not visit the lion. If something eats the cat and it visits the tiger then the cat sees the lion. If the cat sees the lion then the cat visits the tiger. Big things are green. Rough, green things are not big. If the cat visits the tiger then the tiger is big. If something visits the tiger then it eats the cat. If something is green then it does not visit the tiger. If something eats the tiger and the tiger eats the cat then it does not visit the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat sees the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-428_Q14", "context": "Bob is big. Bob is smart. Charlie is cold. Fiona is big. Fiona is furry. Fiona is quiet. Fiona is young. Harry is big. Harry is kind. Harry is quiet. Harry is smart. Furry people are kind. All cold, quiet people are young. If someone is big and smart then they are cold. Young people are furry. If Fiona is quiet and Fiona is cold then Fiona is kind. All cold people are quiet. If someone is quiet and furry then they are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-365_Q10", "context": "Bob is nice. Bob is smart. Bob is white. Bob is young. Charlie is furry. Charlie is smart. Dave is blue. Dave is smart. Dave is white. Gary is not furry. If Gary is not smart then Gary is not young. If Charlie is smart then Charlie is not blue. If someone is round then they are nice. If someone is furry and not blue then they are round. If Charlie is nice then Charlie is round. If someone is furry and nice then they are young. If Bob is young and Bob is nice then Bob is not round. If someone is smart and young then they are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-968_Q22", "context": "Charlie is young. Erin is not white. Erin is young. Gary is rough. Gary is young. Harry is green. Harry is young. All green people are cold. If someone is cold then they are not kind. If Harry is rough then Harry is white. If Harry is not kind then Harry is rough. All white, green people are red. If someone is white and not rough then they are young. All green, red people are young. Green people are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-520_Q19", "context": "Anne is cold. Anne is smart. Bob is big. Bob is cold. Bob is nice. Bob is not rough. Bob is smart. Charlie is not cold. Charlie is nice. Charlie is rough. Charlie is smart. Gary is quiet. Rough people are nice. Rough, big people are nice. If someone is furry and quiet then they are big. If Anne is furry and Anne is smart then Anne is quiet. All big people are furry. If someone is cold and quiet then they are rough. If Anne is smart then Anne is big. If someone is rough then they are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-525_Q9", "context": "Bob is nice. Bob is white. Dave is kind. Dave is nice. Dave is rough. Dave is smart. Erin is green. Erin is nice. Erin is rough. Erin is round. Erin is smart. Erin is white. Harry is green. Harry is round. Harry is smart. Harry is white. All rough things are nice. If Bob is round and Bob is white then Bob is nice. All white, kind things are rough. All green things are white. All green, white things are round. Nice things are smart. Rough, kind things are green. All smart things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-638_Q9", "context": "Anne is not big. Anne is cold. Anne is smart. Bob is big. Bob is not red. Bob is smart. Dave is red. Gary is cold. Gary is kind. Gary is not rough. If Anne is not kind then Anne is not cold. All red people are not big. If Gary is red then Gary is smart. If Dave is furry and Dave is kind then Dave is not smart. All smart people are furry. All cold people are furry. If someone is furry and not big then they are smart. If someone is red and not big then they are rough. All rough, red people are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1141_Q9", "context": "Charlie is nice. Charlie is round. Dave is nice. Erin is furry. Erin is red. Erin is round. Harry is round. All kind, nice people are furry. All round people are kind. If someone is nice then they are round. If someone is cold then they are big. If someone is furry and nice then they are cold.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-599_Q11", "context": "Anne is quiet. Anne is red. Anne is rough. Anne is round. Charlie is red. Charlie is white. Dave is blue. Dave is round. Dave is young. Gary is red. If something is red and quiet then it is white. If something is blue and white then it is not young. If something is rough and red then it is blue. White, red things are round. If something is red and young then it is rough. All round, quiet things are rough. All round, red things are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-5_Q11", "context": "Dave is nice. Dave is not rough. Dave is round. Fiona is green. Fiona is round. Gary is white. Harry is big. Harry is nice. Harry is quiet. Harry is rough. Green, quiet things are white. Green, rough things are white. All green things are rough. If Gary is green then Gary is not quiet. Big things are nice. All green things are round. All white things are big. If Fiona is nice then Fiona is not quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-219_Q23", "context": "The bald eagle chases the cat. The bald eagle is big. The bald eagle is cold. The bald eagle is rough. The bald eagle sees the rabbit. The cat is green. The cat is rough. The cat likes the bald eagle. The cat likes the lion. The cat likes the rabbit. The cat sees the bald eagle. The lion likes the rabbit. The rabbit is cold. The rabbit likes the cat. The rabbit sees the cat. The rabbit sees the lion. All big things are rough. If something chases the lion and it likes the bald eagle then it sees the bald eagle. If something chases the bald eagle and it is rough then the bald eagle is green. If something chases the bald eagle and the bald eagle likes the cat then the bald eagle sees the lion. Green things are red. If the lion is rough and the lion chases the rabbit then the rabbit is big. If something is red and green then it chases the bald eagle. If something chases the rabbit then it sees the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion does not like the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-237_Q1", "context": "The cat eats the mouse. The cat is nice. The cat visits the dog. The cat visits the mouse. The cat visits the rabbit. The dog eats the cat. The dog needs the rabbit. The dog visits the mouse. The mouse eats the cat. The mouse is nice. The mouse visits the cat. The rabbit is blue. The rabbit is round. The rabbit needs the mouse. If something is big and it visits the mouse then it visits the rabbit. If something eats the dog then the dog needs the cat. If the rabbit is nice and the rabbit is big then the rabbit needs the dog. If something is big then it visits the dog. If something is blue then it eats the rabbit. If something eats the rabbit and the rabbit is round then it is big. If something visits the dog then it visits the mouse. If something eats the cat and it is big then the cat is big.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse eats the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-707_Q3", "context": "Charlie is kind. Charlie is nice. Fiona is kind. Fiona is nice. Fiona is red. Fiona is rough. Gary is blue. Gary is green. Gary is red. Harry is blue. Harry is green. Harry is nice. If something is rough and nice then it is blue. If Charlie is green then Charlie is smart. If something is nice then it is green. All smart things are red. All blue, green things are kind. All green, kind things are nice. If Gary is red then Gary is smart. If something is red and smart then it is rough. All kind, rough things are blue.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-119_Q4", "context": "The bald eagle chases the tiger. The bald eagle visits the tiger. The bear chases the squirrel. The bear needs the bald eagle. The squirrel chases the bald eagle. The squirrel chases the tiger. The squirrel is nice. The squirrel needs the bear. The squirrel needs the tiger. The squirrel visits the bald eagle. The squirrel visits the tiger. The tiger chases the bear. The tiger needs the bear. The tiger needs the squirrel. If something visits the bald eagle then the bald eagle is big. If something chases the bald eagle then it chases the tiger. If something chases the tiger then it is big. If something is nice then it needs the bald eagle. If something visits the bear then the bear chases the bald eagle. If something is round then it visits the bear. If something chases the bald eagle then it is round. If the tiger visits the bear then the bear needs the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-883_Q1", "context": "The cow is round. The cow sees the squirrel. The dog is young. The dog needs the cow. The mouse is green. The mouse needs the squirrel. The mouse visits the squirrel. The squirrel is green. The squirrel is kind. The squirrel needs the cow. The squirrel sees the mouse. If someone sees the squirrel and the squirrel needs the mouse then they are nice. If someone is young and they visit the mouse then the mouse needs the cow. If someone sees the dog then they visit the dog. If someone needs the mouse then they visit the mouse. If the dog is nice then the dog needs the mouse. If someone needs the cow then they are nice. If someone needs the cow then the cow needs the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1069_Q17", "context": "Anne is nice. Anne is rough. Fiona is blue. Fiona is furry. Gary is blue. Gary is red. Harry is furry. Harry is green. Harry is red. Harry is rough. All quiet people are rough. If Harry is rough and Harry is blue then Harry is red. Green people are nice. Rough people are quiet. If someone is blue then they are rough. If Gary is rough and Gary is quiet then Gary is green. If someone is nice then they are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-456_Q11", "context": "The bald eagle does not see the lion. The bear does not chase the bald eagle. The bear sees the bald eagle. The bear sees the lion. The lion is not blue. The tiger does not chase the bear. The tiger chases the lion. If the bear is green and the bear visits the lion then the lion does not visit the bald eagle. If someone sees the bald eagle and they are young then they see the bear. If someone is green and they see the bald eagle then the bald eagle is young. If someone sees the lion then they chase the tiger. If someone is young then they chase the tiger. If someone is young then they chase the lion. If someone is young then they see the bald eagle. If someone visits the bald eagle then they are green. If someone chases the tiger and they see the lion then they are green.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle sees the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-475_Q10", "context": "The bear eats the lion. The bear eats the mouse. The bear is blue. The bear is not kind. The bear does not see the lion. The bear sees the mouse. The bear visits the mouse. The bear visits the tiger. The lion eats the mouse. The lion eats the tiger. The lion is kind. The lion does not see the bear. The mouse eats the tiger. The tiger does not see the mouse. If something sees the tiger then the tiger is blue. If something is round then it eats the bear. If something sees the lion then the lion eats the tiger. If something sees the tiger then it sees the lion. If something eats the bear then the bear is round. If something eats the lion then the lion is round. If something is round and it eats the bear then it visits the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not eat the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-860_Q22", "context": "The cow is green. The cow likes the lion. The lion likes the rabbit. The lion sees the cow. The lion sees the tiger. The lion visits the cow. The rabbit sees the cow. The rabbit sees the lion. The tiger is big. The tiger is kind. The tiger sees the lion. If someone is cold then they see the tiger. If someone sees the tiger then the tiger visits the rabbit. If someone likes the cow then they like the tiger. If someone sees the tiger then the tiger likes the lion. If someone visits the tiger and they visit the rabbit then the rabbit is green. If someone likes the rabbit and the rabbit is green then the rabbit likes the cow. If someone sees the tiger and the tiger visits the rabbit then the rabbit visits the cow. If someone is kind and green then they do not visit the rabbit. If someone is big and they like the lion then they visit the tiger.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-480_Q1", "context": "The cat is kind. The cat sees the dog. The cat sees the lion. The dog eats the cat. The dog is cold. The dog is round. The dog sees the cat. The dog sees the lion. The lion does not eat the dog. The lion is kind. The lion is round. The mouse eats the cat. The mouse eats the lion. The mouse is green. The mouse is round. The mouse does not visit the dog. If something eats the lion then it eats the cat. If something eats the mouse and the mouse eats the lion then the mouse is kind. If something visits the mouse then the mouse is kind. If something is green then it eats the mouse. If the mouse sees the dog and the dog does not see the mouse then the dog is cold. If something visits the dog then the dog is big. If something visits the cat then the cat is green. If something eats the mouse then it eats the lion. If something eats the mouse then it visits the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse eats the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-982_Q7", "context": "Anne is furry. Bob is cold. Bob is green. Bob is rough. Bob is round. Erin is cold. Erin is furry. Erin is green. Fiona is cold. Fiona is furry. Fiona is rough. Fiona is round. Fiona is white. Fiona is young. If someone is green then they are young. If someone is furry then they are white. Furry people are rough. Cold people are round. If someone is white then they are cold. White people are rough. Furry, green people are round. Round people are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is round.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-123_Q8", "context": "Bob is green. Bob is kind. Bob is nice. Charlie is furry. Dave is big. Dave is furry. Dave is kind. Dave is nice. Dave is red. Gary is furry. If Gary is furry then Gary is big. If someone is red then they are kind. Big people are green. All red, big people are young. If someone is nice then they are kind. All young people are big. Green people are young. All red, young people are furry. Young people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-388_Q12", "context": "The bald eagle is rough. The bear is not nice. The bear is rough. The bear is not young. The bear needs the cow. The bear needs the tiger. The bear sees the bald eagle. The bear sees the cow. The cow is big. The tiger does not eat the bald eagle. The tiger is big. The tiger sees the bear. If something is kind then it does not see the bald eagle. If the bald eagle sees the cow then the bald eagle is big. If something eats the bear then it needs the bear. If something is big then it eats the bear. If something is kind and it eats the bald eagle then it needs the tiger. If something needs the bear then the bear is big. If something sees the bald eagle and it is not big then the bald eagle does not eat the tiger. If the tiger sees the bear and the bald eagle does not eat the tiger then the tiger is nice.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear does not need the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-379_Q8", "context": "Dave is rough. Dave is smart. Fiona is not nice. Fiona is quiet. Fiona is white. Fiona is young. Gary is kind. Gary is quiet. Gary is white. Harry is nice. All kind people are white. If someone is quiet and kind then they are white. Quiet people are young. All nice people are quiet. Young people are kind. Nice people are rough. If someone is white then they are not smart. If Fiona is young and Fiona is not kind then Fiona is not white. If Fiona is kind and Fiona is not young then Fiona is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-307_Q14", "context": "The cat chases the tiger. The cat eats the dog. The cat eats the mouse. The cat sees the mouse. The dog chases the cat. The dog is cold. The dog sees the cat. The mouse is cold. The mouse is round. The tiger chases the dog. The tiger chases the mouse. The tiger eats the cat. The tiger eats the dog. The tiger eats the mouse. The tiger is nice. The tiger sees the cat. If the mouse eats the tiger and the mouse eats the cat then the cat is big. If something eats the mouse then it is nice. If something sees the tiger then it eats the dog. If something is cold and round then it eats the mouse. If something sees the tiger then it is nice. If something is round and it sees the dog then the dog eats the mouse. If the tiger is blue and the tiger sees the mouse then the mouse sees the dog. If something eats the mouse then it is cold. If something is cold and nice then it sees the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-854_Q20", "context": "Anne is kind. Anne is not young. Bob is green. Erin is green. Erin is rough. Fiona is kind. Fiona is young. If someone is kind then they are round. If Bob is young and Bob is rough then Bob is not white. If someone is white and kind then they are not smart. All green, rough people are white. If someone is round then they are rough. All green people are kind. If someone is white and not young then they are kind. If Erin is green and Erin is white then Erin is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-665_Q16", "context": "Anne is blue. Anne is not rough. Anne is young. Charlie is not big. Charlie is green. Charlie is white. Charlie is not young. Dave is rough. Harry is big. Harry is not round. If someone is rough then they are young. If Harry is blue and Harry is not big then Harry is green. All blue people are green. If someone is young then they are blue. If Dave is green and Dave is big then Dave is not rough. If Harry is young then Harry is not rough. Round, young people are white. If someone is big and not rough then they are not round. All green, young people are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is blue.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-62_Q9", "context": "The bear does not chase the cat. The cat eats the bear. The cat eats the cow. The cat is blue. The cow does not eat the cat. The cow is not blue. The cow needs the bear. The rabbit chases the cat. The rabbit chases the cow. The rabbit eats the bear. The rabbit is red. The rabbit is young. If the rabbit is young then the rabbit needs the cow. If the bear chases the rabbit and the bear is young then the bear does not eat the rabbit. If someone needs the cow and the cow needs the bear then they chase the cow. If someone needs the cow then they chase the bear. If someone needs the cat then they eat the rabbit. If someone is nice then they need the cat. If someone chases the bear and they are red then they are nice. If someone is young then they are red. If someone needs the bear and they do not chase the bear then the bear eats the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit needs the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-349_Q15", "context": "Anne is blue. Anne is cold. Anne is nice. Dave is not cold. Dave is nice. Fiona is quiet. Harry is white. If someone is cold and not nice then they are not big. If someone is rough and quiet then they are big. If someone is nice and not white then they are big. All cold, nice people are rough. All blue people are rough. If someone is white then they are blue. Big people are cold. If someone is rough then they are quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1099_Q9", "context": "Anne is cold. Bob is nice. Bob is rough. Charlie is rough. Dave is big. Dave is cold. Dave is nice. If something is cold and green then it is quiet. If Bob is smart then Bob is cold. Smart, cold things are green. If something is quiet and smart then it is nice. Smart things are rough. Smart, quiet things are big. If something is rough then it is smart. If something is big and green then it is rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-833_Q16", "context": "Anne is quiet. Anne is young. Bob is not blue. Bob is kind. Bob is rough. Charlie is not blue. Charlie is kind. Charlie is quiet. Charlie is not rough. Gary is kind. Gary is white. White things are red. If something is blue and kind then it is not quiet. Kind, rough things are not blue. All white, red things are young. If Charlie is blue and Charlie is young then Charlie is kind. If something is red and young then it is rough. If something is young then it is white. If Charlie is rough and Charlie is blue then Charlie is white. All rough things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-1194_Q23", "context": "Bob is big. Bob is smart. Dave is blue. Dave is white. Gary is rough. Harry is blue. Harry is nice. If Harry is rough then Harry is young. All young people are big. If someone is blue and rough then they are smart. All blue people are smart. White people are blue. All white, rough people are not blue. Nice, big people are not white. All smart, nice people are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is not white.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-553_Q20", "context": "The cat is not nice. The cat sees the cow. The cow chases the cat. The cow is big. The cow is nice. The cow is rough. The cow sees the mouse. The lion is red. The lion is rough. The lion does not like the cat. The mouse is rough. If someone sees the cow and they chase the mouse then they like the cat. If someone likes the mouse then the mouse chases the cat. If someone chases the mouse then they like the mouse. If someone likes the cat then they do not chase the lion. If someone likes the cat and they are not nice then they are not young. If someone chases the cat then they chase the mouse. If the cat is not big then the cat does not chase the mouse. If the mouse sees the cat and the cat does not chase the mouse then the mouse sees the lion. If someone sees the cow and they do not like the cat then the cow likes the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion likes the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-437_Q17", "context": "Anne is furry. Charlie is green. Charlie is not red. Dave is furry. Dave is green. Gary is cold. Gary is furry. Gary is green. Gary is red. Gary is rough. Green, furry people are cold. If someone is nice and not furry then they are not cold. If someone is cold then they are rough. All rough, furry people are nice. If someone is green and not furry then they are nice. All furry, nice people are smart. Smart, rough people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is not smart.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-733_Q4", "context": "Anne is quiet. Anne is smart. Anne is young. Bob is furry. Bob is green. Charlie is nice. Fiona is furry. Fiona is green. Fiona is rough. Fiona is smart. Fiona is young. If something is green and rough then it is smart. If something is nice and not green then it is young. If something is smart and rough then it is young. If something is nice then it is not furry. If Anne is green and Anne is young then Anne is not nice. All young, green things are not nice. All green things are rough. If Bob is not nice then Bob is not quiet. If Anne is young and Anne is not nice then Anne is quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-699_Q18", "context": "Anne is kind. Bob is furry. Bob is rough. Bob is round. Dave is blue. Dave is furry. Dave is kind. Dave is quiet. Dave is rough. Dave is round. Dave is smart. Gary is blue. Gary is furry. Gary is smart. If someone is furry and round then they are smart. All smart, blue people are round. All quiet people are round. All round people are smart. If Bob is kind then Bob is furry. If someone is kind then they are blue. All kind, blue people are quiet. All rough, blue people are quiet. All smart people are furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-515_Q24", "context": "The bear is not blue. The bear is cold. The bear sees the mouse. The dog chases the bear. The dog chases the mouse. The dog chases the squirrel. The dog is young. The dog sees the squirrel. The mouse is blue. The mouse likes the bear. The mouse does not see the squirrel. The squirrel likes the bear. If someone likes the bear and they chase the dog then the bear is young. If someone chases the squirrel and the squirrel likes the dog then the dog is red. If someone chases the squirrel then the squirrel is blue. If someone is red then they see the dog. If someone is blue and they do not see the squirrel then they chase the dog. If the squirrel likes the bear and the bear is young then the squirrel is red. Round people are blue. If someone likes the dog and the dog is cold then the dog chases the squirrel. If someone sees the dog and the dog chases the bear then the dog likes the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The bear likes the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-811_Q17", "context": "The cat chases the tiger. The dog chases the tiger. The dog is red. The dog is rough. The dog needs the cat. The dog sees the lion. The lion chases the cat. The lion does not chase the tiger. The lion is rough. The tiger chases the cat. The tiger needs the dog. If someone needs the cat and the cat needs the lion then the cat is kind. If someone is rough then they are red. If someone is round then they do not need the lion. If someone sees the dog and they are red then the dog sees the cat. If someone sees the tiger then the tiger chases the dog. If someone needs the lion then they need the dog. If the lion is red and the lion chases the cat then the lion sees the tiger. If someone chases the dog then they are rough. If the cat sees the tiger then the tiger sees the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is not red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-338_Q22", "context": "The bald eagle is rough. The bald eagle likes the cat. The bald eagle likes the dog. The bald eagle sees the lion. The cat is big. The cat needs the bald eagle. The cat needs the dog. The dog is big. The dog is cold. The dog is young. The dog needs the cat. The dog sees the cat. The lion likes the cat. The lion needs the bald eagle. If something is rough then it is young. If something sees the bald eagle then the bald eagle likes the dog. If something likes the dog and the dog sees the lion then the lion likes the cat. If something needs the dog then it sees the cat. If something is young then it needs the lion. If the bald eagle needs the lion then the lion is rough. If the lion is young and the lion is big then the lion needs the bald eagle. If something likes the dog and it is kind then the dog needs the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat likes the dog.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-1031_Q24", "context": "The cow eats the squirrel. The cow is cold. The cow is red. The cow does not see the rabbit. The cow sees the squirrel. The cow visits the mouse. The mouse does not see the squirrel. The rabbit is green. The rabbit is not red. The rabbit sees the squirrel. The rabbit visits the mouse. The squirrel is red. If someone eats the squirrel and the squirrel is red then the squirrel eats the cow. If the squirrel sees the cow then the cow does not eat the rabbit. If someone sees the mouse then they are not kind. Green people are cold. If someone sees the squirrel and they see the mouse then the mouse is green. If someone visits the cow and they eat the mouse then the mouse sees the cow. If someone is cold then they see the mouse. If someone eats the mouse then the mouse does not eat the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow visits the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-820_Q3", "context": "Charlie is nice. Erin is cold. Erin is nice. Gary is big. Gary is not rough. Gary is smart. Harry is nice. If someone is nice then they are round. Smart, furry people are cold. If someone is furry then they are cold. Big people are smart. If someone is smart then they are furry. If Gary is round and Gary is big then Gary is not nice. If someone is round and nice then they are big. If Gary is rough and Gary is round then Gary is smart. If Charlie is furry and Charlie is rough then Charlie is round.", "question": "Based on the above information, is the following statement true, false, or unknown? Gary is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-511_Q10", "context": "The bear chases the lion. The bear is kind. The bear is round. The bear sees the lion. The cat does not chase the lion. The cat eats the lion. The lion eats the cat. The lion is big. The lion is blue. The lion is red. The squirrel eats the bear. The squirrel does not eat the lion. The squirrel is big. The squirrel is kind. If someone is big and they see the lion then they see the cat. If someone eats the bear and the bear does not eat the cat then the cat sees the bear. If someone eats the squirrel then they are not kind. If someone chases the cat then the cat is blue. If someone is kind then they are round. If someone is round and they chase the squirrel then they eat the lion. If someone chases the squirrel and the squirrel sees the cat then the squirrel is kind. If someone sees the cat then they chase the cat. If someone is round then they see the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel does not chase the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-402_Q5", "context": "Anne is big. Dave is blue. Erin is not furry. Fiona is big. Fiona is furry. Fiona is kind. Fiona is quiet. All blue, quiet things are green. Blue, furry things are green. If something is green and young then it is not quiet. Green, young things are not quiet. Kind, blue things are furry. If something is kind then it is furry. If something is blue and big then it is kind. Blue things are kind. Furry, green things are young.", "question": "Based on the above information, is the following statement true, false, or unknown? Dave is furry.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-32_Q9", "context": "The bald eagle likes the bear. The bald eagle sees the lion. The bear is green. The bear likes the bald eagle. The bear visits the bald eagle. The bear visits the tiger. The lion sees the bald eagle. The lion sees the bear. The lion visits the tiger. The tiger likes the lion. The tiger sees the bald eagle. The tiger sees the lion. If someone sees the bear then the bear likes the tiger. If someone visits the bald eagle then the bald eagle is blue. If someone visits the bald eagle and the bald eagle is red then the bald eagle visits the bear. If someone is green then they like the tiger. If someone likes the lion then they are green. If someone sees the bear then the bear visits the lion. If someone likes the tiger then they visit the lion. If someone is green and they see the bald eagle then the bald eagle likes the lion. If someone is young then they see the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle likes the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-912_Q5", "context": "Bob is blue. Bob is nice. Bob is round. Bob is white. Charlie is blue. Charlie is red. Fiona is blue. Fiona is rough. Gary is not red. Gary is rough. If Charlie is not nice and Charlie is not blue then Charlie is red. If Charlie is white then Charlie is red. If Fiona is round then Fiona is not nice. All rough things are white. If something is red and big then it is white. Big, blue things are round. White, blue things are red. Nice, white things are red. If something is rough and red then it is big.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is red.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-142_Q16", "context": "The cat eats the rabbit. The cat is blue. The cow chases the cat. The cow eats the rabbit. The rabbit chases the cow. The rabbit sees the cat. The squirrel sees the cow. Blue things are not cold. If something eats the rabbit then it is nice. If something sees the cow then it sees the rabbit. If something is round then it chases the rabbit. If the cow sees the rabbit then the rabbit is blue. If something sees the cat and the cat chases the rabbit then the cat chases the squirrel. If something is nice then it sees the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-382_Q20", "context": "The bald eagle is nice. The bald eagle needs the mouse. The mouse likes the rabbit. The mouse needs the bald eagle. The rabbit is cold. The rabbit likes the bald eagle. The rabbit likes the squirrel. The rabbit needs the mouse. The rabbit visits the squirrel. The squirrel is cold. The squirrel is nice. The squirrel needs the mouse. The squirrel visits the bald eagle. The squirrel visits the mouse. If someone needs the mouse and they are rough then they need the rabbit. All blue people are big. If someone visits the mouse and they like the rabbit then the rabbit is big. If someone needs the mouse then they are rough. If someone likes the squirrel and they like the rabbit then they are blue. If someone visits the mouse and they need the rabbit then the mouse likes the squirrel. If someone is rough then they are nice. If someone visits the rabbit then they are big.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel likes the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-44_Q2", "context": "The bald eagle is blue. The bald eagle likes the cat. The bald eagle needs the tiger. The bald eagle does not see the cat. The cat is big. The cat is red. The cat likes the bald eagle. The cow is not blue. The cow likes the bald eagle. The cow likes the cat. The cow needs the bald eagle. The tiger likes the cat. The tiger needs the bald eagle. The tiger needs the cow. The tiger sees the bald eagle. The tiger sees the cat. If something likes the cow and the cow likes the cat then it is cold. If the bald eagle is blue then the bald eagle needs the tiger. Blue, cold things are round. If something needs the tiger and it is round then the tiger is cold. If something is cold then it sees the tiger. If something likes the cat then the cat is blue. If something needs the cow then it does not see the cow. If something sees the bald eagle then the bald eagle likes the cow. If something needs the cat and it is blue then it does not see the cat.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1018_Q8", "context": "Charlie is rough. Erin is red. Fiona is green. Fiona is nice. Fiona is young. Gary is furry. Gary is green. Gary is nice. Gary is red. Gary is rough. Gary is young. If Gary is blue and Gary is rough then Gary is nice. All furry people are rough. Red, blue people are furry. All green people are blue. If Gary is green then Gary is nice. All red people are green. All green, rough people are young. If Fiona is blue then Fiona is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Fiona is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-174_Q16", "context": "The bear eats the rabbit. The bear sees the cat. The bear sees the dog. The cat is young. The cat sees the bear. The dog is red. The rabbit is red. If someone eats the bear then the bear is young. If someone likes the bear then they eat the bear. If someone is young then they like the bear. If someone is cold then they see the rabbit. If someone sees the rabbit then the rabbit is red. If someone is round and blue then they like the rabbit. If someone likes the rabbit then they eat the cat. If someone sees the rabbit and they eat the bear then the bear is young.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit eats the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-157_Q2", "context": "Charlie is kind. Charlie is rough. Erin is quiet. Fiona is kind. Harry is kind. Harry is quiet. Harry is young. All kind people are quiet. Cold people are not big. If Erin is quiet then Erin is cold. Green, cold people are not young. If Fiona is green and Fiona is quiet then Fiona is not young. Cold, kind people are rough. If someone is green and kind then they are rough. If someone is cold and not big then they are rough. If someone is rough then they are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is not quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-676_Q19", "context": "Anne is green. Bob is rough. Bob is white. Bob is young. Charlie is young. Fiona is nice. Fiona is quiet. All quiet, nice things are green. All young things are rough. If Anne is round then Anne is rough. If Charlie is nice and Charlie is green then Charlie is young. All quiet things are white. All green things are young. Rough, round things are quiet. All green, rough things are round.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-72_Q17", "context": "Anne is nice. Anne is quiet. Anne is young. Dave is green. Dave is nice. Gary is green. Harry is quiet. Green, big people are quiet. Green people are blue. If someone is green then they are kind. Nice people are young. Green, young people are big. Blue people are nice. If someone is quiet then they are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is not big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-167_Q19", "context": "The bear does not eat the lion. The dog does not eat the tiger. The dog is blue. The dog is red. The dog sees the bear. The lion eats the dog. The lion eats the tiger. The lion does not need the dog. The lion sees the tiger. The tiger eats the bear. If something is cold then it needs the bear. If something eats the dog then the dog is cold. If something needs the bear then it needs the tiger. If something sees the lion then it does not need the dog. If something is cold and it needs the bear then it does not need the dog. If something needs the tiger then the tiger is cold. If something is blue and it does not see the tiger then the tiger sees the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger does not need the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNoneg-OWA-D5-872_Q1", "context": "The cat chases the cow. The cat is nice. The cat likes the lion. The cow chases the lion. The cow chases the tiger. The cow eats the lion. The cow is blue. The lion chases the cow. The lion is blue. The lion is kind. The lion likes the tiger. The tiger likes the cat. If something is red then it eats the lion. If something is blue then it likes the cow. If something is nice then it likes the cat. If something is round then it likes the tiger. If something is nice and it eats the lion then the lion is red. If something likes the cat then it is red. If something chases the lion then the lion eats the cow. If something chases the cat and the cat eats the cow then the cat is blue.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow chases the lion.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-1108_Q2", "context": "Charlie is young. Dave is nice. Gary is big. Gary is round. Harry is not big. Harry is rough. Harry is not round. If Dave is rough and Dave is big then Dave is white. If something is round then it is furry. If something is rough and nice then it is big. If something is rough and young then it is big. If something is nice then it is round. If something is rough and big then it is not round. If something is furry and nice then it is white. If something is white then it is young. All white, young things are not rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-172_Q2", "context": "Anne is furry. Anne is kind. Dave is white. Erin is big. Erin is not furry. Erin is rough. Gary is green. Green things are rough. All white things are red. Rough, big things are red. Green, big things are red. If something is kind then it is white. If something is red then it is big. If Anne is big and Anne is kind then Anne is green. If something is kind and not white then it is furry.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-706_Q3", "context": "The bald eagle is blue. The bald eagle likes the squirrel. The bald eagle needs the bear. The bear is rough. The bear is round. The cow chases the squirrel. The cow is red. The cow is round. The cow likes the squirrel. The cow needs the bear. The squirrel chases the bear. The squirrel likes the bear. If someone likes the cow then they like the squirrel. If someone is blue then they chase the bear. If someone likes the bald eagle then the bald eagle likes the bear. If someone needs the cow and the cow chases the squirrel then the cow is rough. If someone likes the bald eagle then they are blue. If someone is round and rough then they like the bald eagle. If someone needs the squirrel and the squirrel is round then they chase the squirrel. If someone chases the bear then the bear needs the cow. If someone is blue and they like the squirrel then they like the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The bald eagle chases the bear.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-628_Q7", "context": "Erin is round. Fiona is round. Fiona is white. Gary is blue. Gary is quiet. Harry is nice. Harry is round. If someone is nice then they are green. If someone is white and green then they are blue. Round, blue people are cold. If Harry is round then Harry is white. Round people are white. White, round people are nice. Cold people are quiet. All white, blue people are quiet. If someone is green and not cold then they are not quiet.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-976_Q11", "context": "The bald eagle is cold. The bald eagle is kind. The bald eagle needs the bear. The bald eagle needs the mouse. The bald eagle sees the bear. The bald eagle visits the rabbit. The bear is cold. The bear needs the mouse. The bear needs the rabbit. The bear sees the bald eagle. The bear visits the bald eagle. The bear visits the mouse. The mouse is cold. The mouse needs the rabbit. The mouse visits the bear. The rabbit visits the bald eagle. If the mouse visits the rabbit and the rabbit sees the bear then the mouse is blue. If someone is blue and they see the rabbit then they are green. If someone is cold then they see the rabbit. If someone needs the bear then they are cold. If someone sees the bald eagle then they are cold. If someone sees the rabbit then the rabbit needs the bald eagle. If someone sees the rabbit and the rabbit needs the bald eagle then the rabbit needs the bear. If someone sees the mouse and the mouse sees the bear then they are rough. If someone is rough then they need the mouse.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit sees the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-250_Q9", "context": "The bald eagle chases the rabbit. The lion chases the bald eagle. The rabbit eats the bald eagle. The squirrel eats the lion. The squirrel eats the rabbit. The squirrel is big. The squirrel needs the bald eagle. If someone eats the bald eagle then the bald eagle is red. If the bald eagle is big and the bald eagle chases the lion then the lion eats the squirrel. If someone eats the lion and the lion eats the rabbit then the rabbit chases the bald eagle. If someone needs the squirrel and they chase the rabbit then the rabbit eats the squirrel. If someone chases the squirrel then they are round. If someone eats the bald eagle then they need the squirrel. If someone chases the lion then they need the lion. If someone needs the lion then the lion eats the bald eagle. If someone needs the squirrel then the squirrel chases the lion.", "question": "Based on the above information, is the following statement true, false, or unknown? The lion eats the bald eagle.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-21_Q7", "context": "The cow is nice. The cow is round. The cow sees the dog. The dog sees the tiger. The rabbit eats the cow. The rabbit is round. The tiger chases the dog. The tiger eats the cow. The tiger is green. The tiger sees the rabbit. If the rabbit is round and the rabbit eats the dog then the rabbit eats the cow. If something is young and it chases the dog then the dog is cold. If something sees the tiger then it is young. If something is young then it chases the dog. If something chases the dog and it is cold then the dog chases the rabbit. If the tiger eats the rabbit and the rabbit sees the dog then the tiger sees the rabbit. If something chases the rabbit then the rabbit is young. If something is green then it chases the cow. If something chases the dog then it eats the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog is cold.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-952_Q5", "context": "Charlie is blue. Charlie is white. Fiona is quiet. Gary is furry. Gary is nice. Gary is not quiet. Gary is round. Harry is not furry. Harry is nice. Harry is not quiet. If someone is white then they are not furry. Quiet, nice people are blue. White, red people are nice. White, nice people are quiet. If someone is blue and not furry then they are quiet. All red people are round. If someone is quiet and not furry then they are round. If someone is round and not furry then they are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Charlie is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-1034_Q4", "context": "Anne is blue. Anne is green. Anne is kind. Anne is red. Anne is young. Bob is blue. Bob is rough. Charlie is kind. Charlie is red. Gary is kind. Gary is red. All red people are rough. All young people are kind. If someone is kind and young then they are smart. All young people are kind. Rough people are young. If someone is red and green then they are blue. Smart people are green.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_AttNeg-OWA-D5-593_Q24", "context": "Anne is cold. Anne is not furry. Charlie is cold. Charlie is furry. Charlie is not red. Erin is kind. Erin is nice. Erin is red. Harry is nice. Harry is young. If Erin is young and Erin is cold then Erin is not kind. If Harry is nice then Harry is kind. If someone is kind and young then they are not cold. If someone is kind and not cold then they are furry. If Erin is red then Erin is big. All furry, kind people are big. If Anne is big then Anne is furry. All big people are red.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNeg-OWA-D5-929_Q20", "context": "Anne is kind. Bob is round. Bob is white. Dave is white. Gary is cold. Gary is green. Gary is not kind. If something is rough and cold then it is round. If something is cold and white then it is round. Kind things are green. If Gary is cold and Gary is round then Gary is green. Quiet, green things are cold. All white things are cold. Round things are kind. All round, green things are rough.", "question": "Based on the above information, is the following statement true, false, or unknown? Bob is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-591_Q22", "context": "The bald eagle eats the squirrel. The bald eagle is not kind. The cow eats the mouse. The cow is kind. The cow does not like the bald eagle. The cow does not like the squirrel. The mouse likes the cow. The mouse visits the cow. The squirrel does not like the bald eagle. The squirrel likes the mouse. If something visits the squirrel then it is not rough. Nice things are kind. If something is blue then it eats the mouse. If the squirrel eats the cow and the squirrel likes the bald eagle then the bald eagle is not blue. If something eats the cow and it is rough then it visits the squirrel. If something visits the bald eagle then the bald eagle eats the mouse. If something eats the mouse then it eats the bald eagle. If something is rough then it does not eat the bald eagle. If something eats the bald eagle and the bald eagle is not kind then it visits the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse likes the mouse.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_AttNoneg-OWA-D5-14_Q18", "context": "Charlie is kind. Charlie is smart. Charlie is young. Dave is quiet. Dave is smart. Fiona is quiet. Fiona is young. Harry is furry. Harry is nice. Harry is round. Harry is smart. Furry, kind things are round. All smart things are nice. If Charlie is furry and Charlie is round then Charlie is smart. All nice things are furry. If something is nice and furry then it is kind. Quiet, furry things are smart. If something is kind then it is smart. Round, smart things are young. All smart, furry things are kind.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-97_Q4", "context": "The bear sees the dog. The cow chases the bear. The cow is young. The cow needs the bear. The cow needs the lion. The dog is cold. The dog is not rough. The lion chases the bear. The lion needs the bear. The lion needs the cow. The lion sees the cow. If someone is rough then they see the bear. If someone sees the bear then the bear needs the dog. If someone needs the lion and the lion needs the bear then they are rough. If someone sees the bear then they are big. If someone chases the dog then the dog sees the lion. If someone sees the lion then they are cold. If someone is big then they chase the dog. If someone chases the lion and they are not rough then they chase the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The cow is not rough.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-756_Q6", "context": "The bear eats the rabbit. The bear eats the tiger. The bear is blue. The bear is round. The bear needs the rabbit. The bear needs the tiger. The bear sees the cow. The bear sees the tiger. The cow eats the rabbit. The cow needs the bear. The rabbit is blue. The rabbit needs the cow. The tiger is young. The tiger needs the cow. All green people are blue. If someone eats the bear then they see the tiger. If someone needs the cow and they see the tiger then they eat the bear. If someone sees the rabbit then they see the tiger. If someone needs the cow then they are green. If someone eats the tiger and they see the cow then the tiger is kind. If someone is blue then they see the rabbit. If someone sees the rabbit then the rabbit is kind. If someone eats the rabbit then they eat the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not see the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-503_Q7", "context": "The bear likes the dog. The bear likes the rabbit. The bear visits the rabbit. The cat likes the rabbit. The cat visits the dog. The cat visits the rabbit. The dog visits the cat. The dog visits the rabbit. The rabbit is kind. The rabbit is red. The rabbit visits the cat. The rabbit visits the dog. If someone visits the cat then the cat is young. If someone chases the dog then the dog likes the cat. If someone visits the dog and they are young then they like the cat. If someone likes the cat and they like the rabbit then the cat is nice. If someone is round and they chase the rabbit then they chase the bear. If the cat chases the bear then the bear likes the rabbit. If someone chases the rabbit then the rabbit is red. If the cat likes the rabbit and the cat visits the bear then the bear chases the cat. If someone is nice then they chase the dog.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is nice.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-11_Q23", "context": "The bear is red. The bear is not rough. The bear sees the cow. The cow is nice. The cow is not rough. The cow sees the bear. The squirrel eats the bear. The squirrel eats the tiger. The tiger eats the bear. The tiger is rough. If someone eats the tiger then they see the tiger. If someone is nice then they chase the bear. If the cow sees the squirrel then the squirrel sees the bear. If someone eats the bear and they chase the bear then they chase the tiger. If someone chases the tiger then the tiger is nice. If someone is red then they eat the cow. If someone sees the bear then they eat the bear. If someone eats the tiger and the tiger is young then the tiger eats the squirrel. If the bear sees the tiger and the tiger is nice then the bear chases the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The tiger is not young.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" }, { "id": "ProofWriter_RelNeg-OWA-D5-134_Q1", "context": "The cat chases the squirrel. The cat is big. The cat is green. The cow likes the squirrel. The rabbit chases the squirrel. The rabbit is blue. The rabbit is green. The rabbit likes the squirrel. The squirrel is blue. The squirrel is round. The squirrel does not need the cat. If someone is round then they are green. If someone chases the cat then they are big. If the cat likes the cow and the cat does not need the squirrel then the cat does not like the squirrel. If someone is big then they chase the cat. If someone chases the cow then the cow chases the cat. If someone chases the cat then the cat likes the rabbit. If someone likes the rabbit then the rabbit chases the cow.", "question": "Based on the above information, is the following statement true, false, or unknown? The cat is green.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-172_Q12", "context": "The bear is green. The bear is red. The bear likes the dog. The bear needs the dog. The bear needs the squirrel. The dog is rough. The dog likes the squirrel. The dog needs the bear. The dog needs the squirrel. The rabbit does not like the bear. The squirrel is rough. The squirrel needs the bear. The squirrel needs the rabbit. The squirrel does not visit the rabbit. If someone is nice and they visit the rabbit then the rabbit needs the bear. If someone is nice then they like the rabbit. If someone is red and they visit the dog then they are not green. If someone likes the rabbit then the rabbit is rough. If someone is green and they do not like the bear then the bear does not visit the squirrel. If someone visits the squirrel and they need the squirrel then they like the squirrel. Rough people are nice. If someone likes the bear then they need the squirrel.", "question": "Based on the above information, is the following statement true, false, or unknown? The rabbit does not like the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNeg-OWA-D5-426_Q3", "context": "The bald eagle is red. The bear chases the bald eagle. The bear eats the bald eagle. The bear eats the cat. The bear is cold. The bear is round. The cat chases the bald eagle. The cat is not round. The squirrel eats the bald eagle. The squirrel eats the cat. The squirrel is red. If something needs the bear then it chases the bald eagle. If the bear eats the cat and the cat needs the squirrel then the bear does not chase the bald eagle. If something eats the bald eagle and it chases the squirrel then the squirrel needs the cat. If something chases the bald eagle then it is cold. If something eats the cat then it chases the squirrel. If the bear chases the squirrel then the squirrel is blue. If something chases the cat then the cat chases the bear. If something is round and it does not eat the cat then it is not red. If something needs the cat then it needs the bear.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel chases the squirrel.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNoneg-OWA-D5-309_Q2", "context": "Anne is blue. Anne is kind. Bob is big. Bob is blue. Bob is green. Bob is kind. Gary is blue. Gary is green. Gary is kind. Harry is blue. Harry is red. Harry is smart. If something is red and smart then it is cold. All green, big things are red. If something is big and blue then it is cold. All kind things are smart. All blue, green things are red. If something is cold then it is green. If Anne is smart and Anne is cold then Anne is green. Smart things are big. If something is red and blue then it is smart.", "question": "Based on the above information, is the following statement true, false, or unknown? Anne is not kind.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "B" }, { "id": "ProofWriter_RelNoneg-OWA-D5-827_Q9", "context": "The bald eagle chases the cat. The bald eagle eats the dog. The bald eagle is blue. The bear chases the bald eagle. The bear eats the cat. The cat chases the bear. The cat is kind. The cat visits the dog. The dog chases the bear. The dog is cold. The dog is kind. The dog visits the bear. If someone chases the cat then they chase the dog. If someone visits the cat then the cat is blue. If someone is blue and they visit the dog then the dog chases the cat. If someone eats the bear and the bear is kind then the bear eats the dog. If the dog visits the bear and the dog is round then the dog eats the cat. If someone chases the dog and they are blue then they visit the cat. If someone eats the dog and the dog visits the bear then the bear chases the dog. If someone chases the bear then they eat the bear. If someone chases the bear and they chase the dog then the bear visits the bald eagle.", "question": "Based on the above information, is the following statement true, false, or unknown? The dog chases the cat.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-714_Q3", "context": "Bob is blue. Bob is not quiet. Bob is white. Dave is quiet. Dave is smart. Dave is white. Erin is not blue. Erin is quiet. Erin is white. Harry is green. All green people are red. All quiet, green people are blue. If Bob is quiet then Bob is not red. Green people are quiet. Blue people are not smart. If Harry is white then Harry is not big. If someone is quiet and not smart then they are white.", "question": "Based on the above information, is the following statement true, false, or unknown? Harry is quiet.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNoneg-OWA-D5-985_Q1", "context": "The cat eats the squirrel. The cat is red. The cat is rough. The cat likes the squirrel. The cat visits the squirrel. The mouse is cold. The mouse is red. The mouse is rough. The mouse likes the cat. The mouse visits the cat. The rabbit eats the mouse. The rabbit eats the squirrel. The rabbit is red. The rabbit is rough. The rabbit visits the mouse. The squirrel eats the rabbit. If someone is red and they visit the rabbit then they eat the mouse. If someone visits the squirrel then the squirrel likes the mouse. If the rabbit visits the squirrel and the rabbit likes the mouse then the squirrel is red. If someone eats the rabbit and the rabbit eats the mouse then they are red. If someone likes the squirrel then they eat the rabbit. If someone is rough then they like the squirrel. If someone visits the rabbit and they eat the squirrel then the squirrel is rough. If someone likes the squirrel then they are kind. If someone is kind then they visit the rabbit.", "question": "Based on the above information, is the following statement true, false, or unknown? The squirrel eats the rabbit.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_AttNeg-OWA-D5-828_Q3", "context": "Charlie is big. Charlie is not blue. Charlie is not green. Charlie is red. Charlie is smart. Erin is green. Fiona is big. Fiona is not green. Gary is not big. Gary is not red. Gary is smart. Gary is white. Round things are smart. White things are round. If something is smart and green then it is round. All green things are blue. If Gary is white and Gary is big then Gary is red. Green, blue things are white. All blue, smart things are red. Green things are big.", "question": "Based on the above information, is the following statement true, false, or unknown? Erin is big.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "A" }, { "id": "ProofWriter_RelNeg-OWA-D5-484_Q21", "context": "The lion does not chase the mouse. The lion is not big. The mouse does not chase the lion. The mouse needs the lion. The mouse sees the tiger. The squirrel does not chase the lion. The squirrel sees the lion. The tiger chases the mouse. The tiger is cold. The tiger sees the mouse. If something needs the lion then it needs the squirrel. If something needs the squirrel then it needs the mouse. If the lion is rough and the lion is red then the lion does not chase the squirrel. If something is big and it does not see the lion then it does not chase the mouse. If the tiger chases the mouse and the tiger chases the squirrel then the tiger does not see the mouse. If the mouse needs the lion then the lion needs the mouse. If something chases the mouse and the mouse needs the squirrel then the squirrel chases the tiger. If something chases the tiger and the tiger is cold then it needs the lion. If something is nice and not rough then it is not big.", "question": "Based on the above information, is the following statement true, false, or unknown? The mouse does not need the tiger.", "options": [ "A) True", "B) False", "C) Unknown" ], "answer": "C" } ] ================================================ FILE: models/backup_answer_generation.py ================================================ import json import random import os class Backup_Answer_Generator: def __init__(self, dataset_name, backup_strategy, backup_LLM_result_path) -> None: self.dataset_name = dataset_name self.backup_strategy = backup_strategy self.backup_LLM_result_path = backup_LLM_result_path if self.backup_strategy == 'LLM': with open(backup_LLM_result_path, 'r') as f: LLM_result = json.load(f) self.backup_results = {sample['id'] : sample['predicted_answer'] for sample in LLM_result} def get_backup_answer(self, id): if self.backup_strategy == 'random': return self.random_backup() elif self.backup_strategy == 'LLM': return self.LLM_backup(id) def random_backup(self): if self.dataset_name == 'ProntoQA': return random.choice(['A', 'B']) elif self.dataset_name == 'ProofWriter' or self.dataset_name == 'FOLIO': return random.choice(['A', 'B', 'C']) elif self.dataset_name == 'AR-LSAT': return random.choice(['A', 'B', 'C', 'D', 'E']) else: raise ValueError(f'Invalid dataset name: {self.dataset_name}') def LLM_backup(self, id): return self.backup_results[id] ================================================ FILE: models/evaluation.py ================================================ import re import json import os import argparse # these functions are heavily influenced by the HF squad_metrics.py script def normalize_text(s): """Removing articles and punctuation, and standardizing whitespace are all typical text processing steps.""" import string, re def remove_articles(text): regex = re.compile(r"\b(a|an|the)\b", re.UNICODE) return re.sub(regex, " ", text) def white_space_fix(text): return " ".join(text.split()) def remove_punc(text): exclude = set(string.punctuation) return "".join(ch for ch in text if ch not in exclude) def lower(text): return text.lower() return white_space_fix(remove_articles(remove_punc(lower(s)))) def compute_exact_match(prediction, truth): return int(normalize_text(prediction) == normalize_text(truth)) # return prediction == truth def compute_f1(prediction, truth): pred_tokens = normalize_text(prediction).split() truth_tokens = normalize_text(truth).split() # if either the prediction or the truth is no-answer then f1 = 1 if they agree, 0 otherwise if len(pred_tokens) == 0 or len(truth_tokens) == 0: return int(pred_tokens == truth_tokens) common_tokens = set(pred_tokens) & set(truth_tokens) # if there are no common tokens then f1 = 0 if len(common_tokens) == 0: return 0 prec = len(common_tokens) / len(pred_tokens) rec = len(common_tokens) / len(truth_tokens) return 2 * (prec * rec) / (prec + rec) def evaluate_sample(prediction, gold_answers): em_score = max((compute_exact_match(prediction, answer)) for answer in gold_answers) f1_score = max((compute_f1(prediction, answer)) for answer in gold_answers) return em_score, f1_score def get_choice(answer_str): choices = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'A)', 'B)', 'C)', 'D)', 'E)', 'F)', 'G)', 'H)', 'A.', 'B.', 'C.', 'D.', 'E.', 'F.', 'G.', 'H.'] for c in choices: if answer_str.startswith(c): return c.replace(')', '') if answer_str.startswith(':'): return answer_str.replace(':', '').replace('.', '').strip() return None def evaluate_QA(QA_results): total_em = 0.0 count = 0 for sample in QA_results: gold_answer = sample['answer'].replace('(', '').replace(')', '').strip() answer_str = sample['predicted_answer'].strip() if sample['predicted_answer'] is not None else '' prediction = get_choice(answer_str) indicators = ['the correct option is', 'the correct answer is', 'The correct answer is', 'The correct option is', 'Thus, the answer is'] if prediction is None: for indicator in indicators: if answer_str.find(indicator)>=0: answer_str = answer_str.split(indicator)[1].strip() prediction = get_choice(answer_str) break # if prediction is None: # print(answer_str) # print(f"prediction: {prediction} \t gold_answers: {gold_answer} \t match: {prediction == gold_answer}") em_score = 1.0 if prediction == gold_answer else 0.0 total_em += em_score count += 1 avg_em = total_em / count # print(f"Accuracy: {avg_em}") return avg_em def full_evaluation(result_file): with open(result_file, 'r') as f: all_samples = json.load(f) executable_samples = [sample for sample in all_samples if sample['flag'] == 'success'] print(f"Overall accuracy: {evaluate_QA(all_samples)}") print(f'Executable rate (Exe_Rate): {len(executable_samples)/len(all_samples)}') print(f"Executable accuracy (Exe_Acc): {evaluate_QA(executable_samples)}") def parse_args(): parser = argparse.ArgumentParser() parser.add_argument("--dataset_name", type=str) parser.add_argument("--model_name", type=str, default='text-davinci-003') parser.add_argument("--split", type=str, default='dev') parser.add_argument("--backup", type=str, default='random') args = parser.parse_args() return args if __name__ == "__main__": args = parse_args() result_path = f'./outputs/logic_inference' result_file = os.path.join(result_path, f'{args.dataset_name}_{args.split}_{args.model_name}_backup-{args.backup}.json') # evaluate_QA(result_file) full_evaluation(result_file) ================================================ FILE: models/logic_inference.py ================================================ import json import os from tqdm import tqdm from symbolic_solvers.fol_solver.prover9_solver import FOL_Prover9_Program from symbolic_solvers.pyke_solver.pyke_solver import Pyke_Program from symbolic_solvers.csp_solver.csp_solver import CSP_Program from symbolic_solvers.z3_solver.sat_problem_solver import LSAT_Z3_Program import argparse import random from backup_answer_generation import Backup_Answer_Generator class LogicInferenceEngine: def __init__(self, args): self.args = args self.dataset_name = args.dataset_name self.split = args.split self.model_name = args.model_name self.save_path = args.save_path self.backup_strategy = args.backup_strategy self.dataset = self.load_logic_programs() program_executor_map = {'FOLIO': FOL_Prover9_Program, 'ProntoQA': Pyke_Program, 'ProofWriter': Pyke_Program, 'LogicalDeduction': CSP_Program, 'AR-LSAT': LSAT_Z3_Program} self.program_executor = program_executor_map[self.dataset_name] self.backup_generator = Backup_Answer_Generator(self.dataset_name, self.backup_strategy, self.args.backup_LLM_result_path) def load_logic_programs(self): with open(os.path.join('./outputs/logic_programs', f'{self.dataset_name}_{self.split}_{self.model_name}.json')) as f: dataset = json.load(f) print(f"Loaded {len(dataset)} examples from {self.split} split.") return dataset def save_results(self, outputs): if not os.path.exists(self.save_path): os.makedirs(self.save_path) with open(os.path.join(self.save_path, f'{self.dataset_name}_{self.split}_{self.model_name}_backup-{self.backup_strategy}.json'), 'w') as f: json.dump(outputs, f, indent=2, ensure_ascii=False) def safe_execute_program(self, id, logic_program): program = self.program_executor(logic_program, self.dataset_name) # cannot parse the program if program.flag == False: answer = self.backup_generator.get_backup_answer(id) return answer, 'parsing error', '' # execuate the program answer, error_message = program.execute_program() # not executable if answer is None: answer = self.backup_generator.get_backup_answer(id) return answer, 'execution error', error_message # successfully executed answer = program.answer_mapping(answer) return answer, 'success', '' def inference_on_dataset(self): outputs = [] error_count = 0 for example in tqdm(self.dataset): # execute the logic program answer, flag, error_message = self.safe_execute_program(example['id'], example['raw_logic_programs'][0].strip()) if not flag == 'success': error_count += 1 # create output output = {'id': example['id'], 'context': example['context'], 'question': example['question'], 'answer': example['answer'], 'flag': flag, 'predicted_answer': answer} outputs.append(output) print(f"Error count: {error_count}") self.save_results(outputs) self.cleanup() def cleanup(self): complied_krb_dir = './models/compiled_krb' if os.path.exists(complied_krb_dir): print('removing compiled_krb') os.system(f'rm -rf {complied_krb_dir}') def parse_args(): parser = argparse.ArgumentParser() parser.add_argument('--dataset_name', type=str) parser.add_argument('--split', type=str, default='dev') parser.add_argument('--save_path', type=str, default='./outputs/logic_inference') parser.add_argument('--backup_strategy', type=str, default='random', choices=['random', 'LLM']) parser.add_argument('--backup_LLM_result_path', type=str, default='../baselines/results') parser.add_argument('--model_name', type=str, default='text-davinci-003') parser.add_argument('--timeout', type=int, default=60) args = parser.parse_args() return args if __name__ == "__main__": args = parse_args() engine = LogicInferenceEngine(args) engine.inference_on_dataset() ================================================ FILE: models/logic_program.py ================================================ # generate facts and rules based on the problem description import json import os from tqdm import tqdm from collections import OrderedDict from typing import Dict, List, Tuple from utils import OpenAIModel import argparse class LogicProgramGenerator: def __init__(self, args): self.args = args self.data_path = args.data_path self.dataset_name = args.dataset_name self.split = args.split self.model_name = args.model_name self.save_path = args.save_path self.openai_api = OpenAIModel(args.api_key, args.model_name, args.stop_words, args.max_new_tokens) self.prompt_creator = {'FOLIO': self.prompt_folio, 'ProntoQA': self.prompt_prontoqa, 'ProofWriter': self.prompt_proofwriter, 'LogicalDeduction': self.prompt_logicaldeduction, 'AR-LSAT': self.prompt_arlsat} self.load_prompt_templates() def load_prompt_templates(self): prompt_file = f'./models/prompts/{self.dataset_name}.txt' if self.dataset_name == 'AR-LSAT' and self.model_name == 'gpt-4': prompt_file = f'./models/prompts/{self.dataset_name}-long.txt' with open(prompt_file, 'r') as f: self.prompt_template = f.read() def prompt_folio(self, test_data): problem = test_data['context'] question = test_data['question'].strip() full_prompt = self.prompt_template.replace('[[PROBLEM]]', problem).replace('[[QUESTION]]', question) return full_prompt def prompt_arlsat(self, test_data): problem = test_data['context'] question = test_data['question'].strip() choices_str = '\n'.join([f'({choice.strip()}' for choice in test_data['options']]).strip() full_prompt = self.prompt_template.replace('[[PROBLEM]]', problem).replace('[[QUESTION]]', question) full_prompt = full_prompt.replace('[[CHOICES]]', choices_str) return full_prompt def prompt_prontoqa(self, test_data): problem = test_data['context'] question = test_data['question'].strip() full_prompt = self.prompt_template.replace('[[PROBLEM]]', problem).replace('[[QUESTION]]', question) return full_prompt def prompt_proofwriter(self, test_data): problem = test_data['context'] question = test_data['question'].strip() full_prompt = self.prompt_template.replace('[[PROBLEM]]', problem).replace('[[QUESTION]]', question) return full_prompt def prompt_logicaldeduction(self, test_data): problem = test_data['context'] question = test_data['question'].strip() choices_str = '\n'.join([f'({choice.strip()}' for choice in test_data['options']]).strip() full_prompt = self.prompt_template.replace('[[PROBLEM]]', problem).replace('[[QUESTION]]', question) full_prompt = full_prompt.replace('[[CHOICES]]', choices_str) return full_prompt def load_raw_dataset(self, split): with open(os.path.join(self.data_path, self.dataset_name, f'{split}.json')) as f: raw_dataset = json.load(f) return raw_dataset def logic_program_generation(self): # load raw dataset raw_dataset = self.load_raw_dataset(self.split) print(f"Loaded {len(raw_dataset)} examples from {self.split} split.") outputs = [] for example in tqdm(raw_dataset): # create prompt try: full_prompt = self.prompt_creator[self.dataset_name](example) output = self.openai_api.generate(full_prompt) # print(full_prompt) programs = [output] # create output output = {'id': example['id'], 'context': example['context'], 'question': example['question'], 'answer': example['answer'], 'options': example['options'], 'raw_logic_programs': programs} outputs.append(output) except: print('Error in generating logic programs for example: ', example['id']) # save outputs with open(os.path.join(self.save_path, f'{self.dataset_name}_{self.split}_{self.model_name}.json'), 'w') as f: json.dump(outputs, f, indent=2, ensure_ascii=False) ''' Updated version of logic_program_generation; speed up the generation process by batching ''' def batch_logic_program_generation(self, batch_size = 10): # load raw dataset raw_dataset = self.load_raw_dataset(self.split) print(f"Loaded {len(raw_dataset)} examples from {self.split} split.") outputs = [] # split dataset into chunks dataset_chunks = [raw_dataset[i:i + batch_size] for i in range(0, len(raw_dataset), batch_size)] for chunk in tqdm(dataset_chunks): # create prompt full_prompts = [self.prompt_creator[self.dataset_name](example) for example in chunk] try: batch_outputs = self.openai_api.batch_generate(full_prompts) # create output for sample, output in zip(chunk, batch_outputs): programs = [output] output = {'id': sample['id'], 'context': sample['context'], 'question': sample['question'], 'answer': sample['answer'], 'options': sample['options'], 'raw_logic_programs': programs} outputs.append(output) except: # generate one by one if batch generation fails for sample, full_prompt in zip(chunk, full_prompts): try: output = self.openai_api.generate(full_prompt) programs = [output] output = {'id': sample['id'], 'context': sample['context'], 'question': sample['question'], 'answer': sample['answer'], 'options': sample['options'], 'raw_logic_programs': programs} outputs.append(output) except: print('Error in generating logic programs for example: ', sample['id']) # remove examples with duplicate ids from the result outputs = list({output['id']: output for output in outputs}.values()) print(f"Generated {len(outputs)} examples.") # save outputs if not os.path.exists(self.save_path): os.makedirs(self.save_path) with open(os.path.join(self.save_path, f'{self.dataset_name}_{self.split}_{self.model_name}.json'), 'w') as f: json.dump(outputs, f, indent=2, ensure_ascii=False) def parse_args(): parser = argparse.ArgumentParser() parser.add_argument('--data_path', type=str, default='./data') parser.add_argument('--dataset_name', type=str) parser.add_argument('--split', type=str, default='dev') parser.add_argument('--save_path', type=str, default='./outputs/logic_programs') parser.add_argument('--api_key', type=str) parser.add_argument('--model_name', type=str, default='text-davinci-003') parser.add_argument('--stop_words', type=str, default='------') parser.add_argument('--max_new_tokens', type=int, default=1024) args = parser.parse_args() return args if __name__ == '__main__': args = parse_args() logic_program_generator = LogicProgramGenerator(args) logic_program_generator.batch_logic_program_generation() ================================================ FILE: models/prompts/AR-LSAT-long-no-grounding.txt ================================================ Given a problem description and a question. The task is to formulate the problem as a logic program, consisting three parts: Declarations, Constraints, and Options. Declarations: Declare the variables and functions. Constraints: Write the constraints in the problem description as logic formulas. Options: Write the options in the question as logic formulas. ------ Problem: On Tuesday Vladimir and Wendy each eat exactly four separate meals: breakfast, lunch, dinner, and a snack. The following is all that is known about what they eat during that day: At no meal does Vladimir eat the same kind of food as Wendy. Neither of them eats the same kind of food more than once during the day. For breakfast, each eats exactly one of the following: hot cakes, poached eggs, or omelet. For lunch, each eats exactly one of the following: fish, hot cakes, macaroni, or omelet. For dinner, each eats exactly one of the following: fish, hot cakes, macaroni, or omelet. For a snack, each eats exactly one of the following: fish or omelet. Wendy eats an omelet for lunch. Question: Vladimir must eat which one of the following foods? Choices: (A) fish (B) hot cakes (C) macaroni (D) omelet (E) poached eggs ### # Declarations people = EnumSort([Vladimir, Wendy]) meals = EnumSort([breakfast, lunch, dinner, snack]) foods = EnumSort([fish, hot_cakes, macaroni, omelet, poached_eggs]) eats = Function([people, meals] -> [foods]) # Constraints ForAll([m:meals], eats(Vladimir, m) != eats(Wendy, m)) ForAll([p:people, f:foods], Count([m:meals], eats(p, m) == f) <= 1) ForAll([p:people], Or(eats(p, breakfast) == hot_cakes, eats(p, breakfast) == poached_eggs, eats(p, breakfast) == omelet)) ForAll([p:people], Or(eats(p, lunch) == fish, eats(p, lunch) == hot_cakes, eats(p, lunch) == macaroni, eats(p, lunch) == omelet)) ForAll([p:people], Or(eats(p, dinner) == fish, eats(p, dinner) == hot_cakes, eats(p, dinner) == macaroni, eats(p, dinner) == omelet)) ForAll([p:people], Or(eats(p, snack) == fish, eats(p, snack) == omelet)) eats(Wendy, lunch) == omelet # Options Question ::: Vladimir must eat which one of the following foods? is_valid(Exists([m:meals], eats(Vladimir, m) == fish)) ::: (A) is_valid(Exists([m:meals], eats(Vladimir, m) == hot_cakes)) ::: (B) is_valid(Exists([m:meals], eats(Vladimir, m) == macaroni)) ::: (C) is_valid(Exists([m:meals], eats(Vladimir, m) == omelet)) ::: (D) is_valid(Exists([m:meals], eats(Vladimir, m) == poached_eggs)) ::: (E) ------ Problem: In a repair facility there are exactly six technicians: Stacy, Urma, Wim, Xena, Yolanda, and Zane. Each technician repairs machines of at least one of the following three types—radios, televisions, and VCRs—and no other types. The following conditions apply: Xena and exactly three other technicians repair radios. Yolanda repairs both televisions and VCRs. Stacy does not repair any type of machine that Yolanda repairs. Zane repairs more types of machines than Yolanda repairs. Wim does not repair any type of machine that Stacy repairs. Urma repairs exactly two types of machines. Question: Which one of the following pairs of technicians could repair all and only the same types of machines as each other? Choices: (A) Stacy and Urma (B) Urma and Yolanda (C) Urma and Xena (D) Wim and Xena (E) Xena and Yolanda ### # Declarations technicians = EnumSort([Stacy, Urma, Wim, Xena, Yolanda, Zane]) machines = EnumSort([radios, televisions, VCRs]) repairs = Function([technicians, machines] -> [bool]) # Constraints ForAll([t:technicians], Count([m:machines], repairs(t, m)) >= 1) And(repairs(Xena, radios), Count([t:technicians], And(t != Xena, repairs(t, radios))) == 3) And(repairs(Yolanda, televisions), repairs(Yolanda, VCRs)) ForAll([m:machines], Implies(repairs(Yolanda, m), Not(repairs(Stacy, m)))) Count([m:machines], repairs(Zane, m)) > Count([m:machines], repairs(Yolanda, m)) ForAll([m:machines], Implies(repairs(Stacy, m), Not(repairs(Wim, m)))) Count([m:machines], repairs(Urma, m)) == 2 # Options Question ::: ::: Which one of the following pairs of technicians could repair all and only the same types of machines as each other? is_sat(ForAll([m:machines], repairs(Stacy, m) == repairs(Urma, m))) ::: (A) is_sat(ForAll([m:machines], repairs(Urma, m) == repairs(Yolanda, m))) ::: (B) is_sat(ForAll([m:machines], repairs(Urma, m) == repairs(Xena, m))) ::: (C) is_sat(ForAll([m:machines], repairs(Wim, m) == repairs(Xena, m))) ::: (D) is_sat(ForAll([m:machines], repairs(Xena, m) == repairs(Yolanda, m))) ::: (E) ------ Problem: Workers at a water treatment plant open eight valves—G, H, I, K, L, N, O, and P—to flush out a system of pipes that needs emergency repairs. To maximize safety and efficiency, each valve is opened exactly once, and no two valves are opened at the same time. The valves are opened in accordance with the following conditions: Both K and P are opened before H. O is opened before L but after H. L is opened after G. N is opened before H. I is opened after K. Question: Each of the following could be the fifth valve opened EXCEPT: Choices: (A) H (B) I (C) K (D) N (E) O """ # Declarations valves = EnumSort([G, H, I, K, L, N, O, P]) opened = Function([valves] -> [int]) ForAll([v:valves], And(1 <= opened(v), opened(v) <= 8)) # Constraints Distinct([v:valves], opened(v)) And(opened(K) < opened(H), opened(P) < opened(H)) And(opened(O) > opened(H), opened(O) < opened(L)) opened(L) > opened(G) opened(N) < opened(H) opened(I) > opened(K) # Options Question ::: Each of the following could be the fifth valve opened EXCEPT: is_exception(is_sat(opened(H) == 5)) ::: (A) is_exception(is_sat(opened(I) == 5)) ::: (B) is_exception(is_sat(opened(K) == 5)) ::: (C) is_exception(is_sat(opened(N) == 5)) ::: (D) is_exception(is_sat(opened(O) == 5)) ::: (E) ------ Problem: Five candidates for mayor—Q, R, S, T, and U—will each speak exactly once at each of three town meetings—meetings 1, 2, and 3. At each meeting, each candidate will speak in one of five consecutive time slots. No two candidates will speak in the same time slot as each other at any meeting. The order in which the candidates will speak will meet the following conditions: Each candidate must speak either first or second at at least one of the meetings. Any candidate who speaks fifth at any of the meetings must speak first at at least one of the other meetings. No candidate can speak fourth at more than one of the meetings. Question: If R speaks second at meeting 2 and first at meeting 3, which one of the following is a complete and accurate list of those time slots any one of which could be the time slot in which R speaks at meeting 1? Choices: (A) fourth, fifth (B) first, second, fifth (C) second, third, fifth (D) third, fourth, fifth (E) second, third, fourth, fifth ### # Declarations candidates = EnumSort([Q, R, S, T, U]) meetings = EnumSort([1, 2, 3]) speaks = Function([meetings, candidates] -> [int]) ForAll([m:meetings, c:candidates], And(1 <= speaks(m, c), speaks(m, c) <= 5)) # Constraints ForAll([m:meetings], Distinct([c:candidates], speaks(m, c))) ForAll([c:candidates], Exists([m:meetings], Or(speaks(m, c) == 1, speaks(m, c) == 2))) ForAll([c:candidates], Implies(Exists([m:meetings], speaks(m, c) == 5), Exists([m:meetings], speaks(m, c) == 1))) ForAll([c:candidates], Count([m:meetings], speaks(m, c) == 4) <= 1) And(speaks(2, R) == 2, speaks(3, R) == 1) # Options Question ::: Which one of the following is a complete and accurate list of those time slots any one of which could be the time slot in which R speaks at meeting 1? is_accurate_list([speaks(1, R) == 4, speaks(1, R) == 5]) ::: (A) is_accurate_list([speaks(1, R) == 1, speaks(1, R) == 2, speaks(1, R) == 5]) ::: (B) is_accurate_list([speaks(1, R) == 2, speaks(1, R) == 3, speaks(1, R) == 5]) ::: (C) is_accurate_list([speaks(1, R) == 3, speaks(1, R) == 4, speaks(1, R) == 5]) ::: (D) is_accurate_list([speaks(1, R) == 2, speaks(1, R) == 3, speaks(1, R) == 4, speaks(1, R) == 5]) ::: (E) ------ Problem: A travel magazine has hired six interns—Farber, Gombarick, Hall, Jackson, Kanze, and Lha—to assist in covering three stories—Romania, Spain, and Tuscany. Each intern will be trained either as a photographer's assistant or as a writer's assistant. Each story is assigned a team of two interns—one photographer's assistant and one writer's assistant—in accordance with the following conditions: Gombarick and Lha will be trained in the same field. Farber and Kanze will be trained in different fields. Hall will be trained as a photographer's assistant. Jackson is assigned to Tuscany. Kanze is not assigned to Spain. Question: Which one of the following interns CANNOT be assigned to Tuscany? Choices: (A) Farber (B) Gombarick (C) Hall (D) Kanze (E) Lha ### # Declarations interns = EnumSort([Farber, Gombarick, Hall, Jackson, Kanze, Lha]) stories = EnumSort([Romania, Spain, Tuscany]) assistants = EnumSort([photographer, writer]) assigned = Function([interns] -> [stories]) trained = Function([interns] -> [assistants]) # Constraints ForAll([s:stories], Exists([i1:interns, i2:interns], And(i1 != i2, And(assigned(i1) == s, assigned(i2) == s, trained(i1) == photographer, trained(i2) == writer)))) trained(Gombarick) == trained(Lha) trained(Farber) != trained(Kanze) trained(Hall) == photographer assigned(Jackson) == Tuscany assigned(Kanze) != Spain # Options Question ::: Which one of the following interns CANNOT be assigned to Tuscany? is_unsat(assigned(Farber) == Tuscany) ::: (A) is_unsat(assigned(Gombarick) == Tuscany) ::: (B) is_unsat(assigned(Hall) == Tuscany) ::: (C) is_unsat(assigned(Kanze) == Tuscany) ::: (D) is_unsat(assigned(Lha) == Tuscany) ::: (E) ------ Problem: [[PROBLEM]] Question: [[QUESTION]] Choices: [[CHOICES]] ### ================================================ FILE: models/prompts/AR-LSAT-long.txt ================================================ Given a problem description and a question. The task is to formulate the problem as a logic program, consisting three parts: Declarations, Constraints, and Options. Declarations: Declare the variables and functions. Constraints: Write the constraints in the problem description as logic formulas. Options: Write the options in the question as logic formulas. ------ Problem: On Tuesday Vladimir and Wendy each eat exactly four separate meals: breakfast, lunch, dinner, and a snack. The following is all that is known about what they eat during that day: At no meal does Vladimir eat the same kind of food as Wendy. Neither of them eats the same kind of food more than once during the day. For breakfast, each eats exactly one of the following: hot cakes, poached eggs, or omelet. For lunch, each eats exactly one of the following: fish, hot cakes, macaroni, or omelet. For dinner, each eats exactly one of the following: fish, hot cakes, macaroni, or omelet. For a snack, each eats exactly one of the following: fish or omelet. Wendy eats an omelet for lunch. Question: Vladimir must eat which one of the following foods? Choices: (A) fish (B) hot cakes (C) macaroni (D) omelet (E) poached eggs ### # Declarations people = EnumSort([Vladimir, Wendy]) meals = EnumSort([breakfast, lunch, dinner, snack]) foods = EnumSort([fish, hot_cakes, macaroni, omelet, poached_eggs]) eats = Function([people, meals] -> [foods]) # Constraints ForAll([m:meals], eats(Vladimir, m) != eats(Wendy, m)) ::: At no meal does Vladimir eat the same kind of food as Wendy ForAll([p:people, f:foods], Count([m:meals], eats(p, m) == f) <= 1) ::: Neither of them eats the same kind of food more than once during the day ForAll([p:people], Or(eats(p, breakfast) == hot_cakes, eats(p, breakfast) == poached_eggs, eats(p, breakfast) == omelet)) ::: For breakfast, each eats exactly one of the following: hot cakes, poached eggs, or omelet ForAll([p:people], Or(eats(p, lunch) == fish, eats(p, lunch) == hot_cakes, eats(p, lunch) == macaroni, eats(p, lunch) == omelet)) ::: For lunch, each eats exactly one of the following: fish, hot cakes, macaroni, or omelet ForAll([p:people], Or(eats(p, dinner) == fish, eats(p, dinner) == hot_cakes, eats(p, dinner) == macaroni, eats(p, dinner) == omelet)) ::: For dinner, each eats exactly one of the following: fish, hot cakes, macaroni, or omelet ForAll([p:people], Or(eats(p, snack) == fish, eats(p, snack) == omelet)) ::: For a snack, each eats exactly one of the following: fish or omelet eats(Wendy, lunch) == omelet ::: Wendy eats an omelet for lunch # Options Question ::: Vladimir must eat which one of the following foods? is_valid(Exists([m:meals], eats(Vladimir, m) == fish)) ::: (A) is_valid(Exists([m:meals], eats(Vladimir, m) == hot_cakes)) ::: (B) is_valid(Exists([m:meals], eats(Vladimir, m) == macaroni)) ::: (C) is_valid(Exists([m:meals], eats(Vladimir, m) == omelet)) ::: (D) is_valid(Exists([m:meals], eats(Vladimir, m) == poached_eggs)) ::: (E) ------ Problem: In a repair facility there are exactly six technicians: Stacy, Urma, Wim, Xena, Yolanda, and Zane. Each technician repairs machines of at least one of the following three types—radios, televisions, and VCRs—and no other types. The following conditions apply: Xena and exactly three other technicians repair radios. Yolanda repairs both televisions and VCRs. Stacy does not repair any type of machine that Yolanda repairs. Zane repairs more types of machines than Yolanda repairs. Wim does not repair any type of machine that Stacy repairs. Urma repairs exactly two types of machines. Question: Which one of the following pairs of technicians could repair all and only the same types of machines as each other? Choices: (A) Stacy and Urma (B) Urma and Yolanda (C) Urma and Xena (D) Wim and Xena (E) Xena and Yolanda ### # Declarations technicians = EnumSort([Stacy, Urma, Wim, Xena, Yolanda, Zane]) machines = EnumSort([radios, televisions, VCRs]) repairs = Function([technicians, machines] -> [bool]) # Constraints ForAll([t:technicians], Count([m:machines], repairs(t, m)) >= 1) ::: each technician repairs machines of at least one of the following three types And(repairs(Xena, radios), Count([t:technicians], And(t != Xena, repairs(t, radios))) == 3) ::: Xena and exactly three other technicians repair radios And(repairs(Yolanda, televisions), repairs(Yolanda, VCRs)) ::: Yolanda repairs both televisions and VCRs ForAll([m:machines], Implies(repairs(Yolanda, m), Not(repairs(Stacy, m)))) ::: Stacy does not repair any type of machine that Yolanda repairs Count([m:machines], repairs(Zane, m)) > Count([m:machines], repairs(Yolanda, m)) ::: Zane repairs more types of machines than Yolanda repairs ForAll([m:machines], Implies(repairs(Stacy, m), Not(repairs(Wim, m)))) ::: Wim does not repair any type of machine that Stacy repairs Count([m:machines], repairs(Urma, m)) == 2 ::: Urma repairs exactly two types of machines # Options Question ::: ::: Which one of the following pairs of technicians could repair all and only the same types of machines as each other? is_sat(ForAll([m:machines], repairs(Stacy, m) == repairs(Urma, m))) ::: (A) is_sat(ForAll([m:machines], repairs(Urma, m) == repairs(Yolanda, m))) ::: (B) is_sat(ForAll([m:machines], repairs(Urma, m) == repairs(Xena, m))) ::: (C) is_sat(ForAll([m:machines], repairs(Wim, m) == repairs(Xena, m))) ::: (D) is_sat(ForAll([m:machines], repairs(Xena, m) == repairs(Yolanda, m))) ::: (E) ------ Problem: Workers at a water treatment plant open eight valves—G, H, I, K, L, N, O, and P—to flush out a system of pipes that needs emergency repairs. To maximize safety and efficiency, each valve is opened exactly once, and no two valves are opened at the same time. The valves are opened in accordance with the following conditions: Both K and P are opened before H. O is opened before L but after H. L is opened after G. N is opened before H. I is opened after K. Question: Each of the following could be the fifth valve opened EXCEPT: Choices: (A) H (B) I (C) K (D) N (E) O """ # Declarations valves = EnumSort([G, H, I, K, L, N, O, P]) opened = Function([valves] -> [int]) ForAll([v:valves], And(1 <= opened(v), opened(v) <= 8)) # Constraints Distinct([v:valves], opened(v)) ::: no two valves are opened at the same time And(opened(K) < opened(H), opened(P) < opened(H)) ::: Both K and P are opened before H And(opened(O) > opened(H), opened(O) < opened(L)) ::: O is opened before L but after H opened(L) > opened(G) ::: L is opened after G opened(N) < opened(H) ::: N is opened before H opened(I) > opened(K) ::: I is opened after K # Options Question ::: Each of the following could be the fifth valve opened EXCEPT: is_exception(is_sat(opened(H) == 5)) ::: (A) is_exception(is_sat(opened(I) == 5)) ::: (B) is_exception(is_sat(opened(K) == 5)) ::: (C) is_exception(is_sat(opened(N) == 5)) ::: (D) is_exception(is_sat(opened(O) == 5)) ::: (E) ------ Problem: Five candidates for mayor—Q, R, S, T, and U—will each speak exactly once at each of three town meetings—meetings 1, 2, and 3. At each meeting, each candidate will speak in one of five consecutive time slots. No two candidates will speak in the same time slot as each other at any meeting. The order in which the candidates will speak will meet the following conditions: Each candidate must speak either first or second at at least one of the meetings. Any candidate who speaks fifth at any of the meetings must speak first at at least one of the other meetings. No candidate can speak fourth at more than one of the meetings. Question: If R speaks second at meeting 2 and first at meeting 3, which one of the following is a complete and accurate list of those time slots any one of which could be the time slot in which R speaks at meeting 1? Choices: (A) fourth, fifth (B) first, second, fifth (C) second, third, fifth (D) third, fourth, fifth (E) second, third, fourth, fifth ### # Declarations candidates = EnumSort([Q, R, S, T, U]) meetings = EnumSort([1, 2, 3]) speaks = Function([meetings, candidates] -> [int]) ForAll([m:meetings, c:candidates], And(1 <= speaks(m, c), speaks(m, c) <= 5)) # Constraints ForAll([m:meetings], Distinct([c:candidates], speaks(m, c))) ::: no two candidates will speak in the same time slot as each other at any meeting ForAll([c:candidates], Exists([m:meetings], Or(speaks(m, c) == 1, speaks(m, c) == 2))) ::: each candidate must speak either first or second at at least one of the meetings ForAll([c:candidates], Implies(Exists([m:meetings], speaks(m, c) == 5), Exists([m:meetings], speaks(m, c) == 1))) ::: any candidate who speaks fifth at any of the meetings must speak first at at least one of the other meetings ForAll([c:candidates], Count([m:meetings], speaks(m, c) == 4) <= 1) ::: no candidate can speak fourth at more than one of the meetings And(speaks(2, R) == 2, speaks(3, R) == 1) ::: if R speaks second at meeting 2 and first at meeting 3 # Options Question ::: Which one of the following is a complete and accurate list of those time slots any one of which could be the time slot in which R speaks at meeting 1? is_accurate_list([speaks(1, R) == 4, speaks(1, R) == 5]) ::: (A) is_accurate_list([speaks(1, R) == 1, speaks(1, R) == 2, speaks(1, R) == 5]) ::: (B) is_accurate_list([speaks(1, R) == 2, speaks(1, R) == 3, speaks(1, R) == 5]) ::: (C) is_accurate_list([speaks(1, R) == 3, speaks(1, R) == 4, speaks(1, R) == 5]) ::: (D) is_accurate_list([speaks(1, R) == 2, speaks(1, R) == 3, speaks(1, R) == 4, speaks(1, R) == 5]) ::: (E) ------ Problem: A travel magazine has hired six interns—Farber, Gombarick, Hall, Jackson, Kanze, and Lha—to assist in covering three stories—Romania, Spain, and Tuscany. Each intern will be trained either as a photographer's assistant or as a writer's assistant. Each story is assigned a team of two interns—one photographer's assistant and one writer's assistant—in accordance with the following conditions: Gombarick and Lha will be trained in the same field. Farber and Kanze will be trained in different fields. Hall will be trained as a photographer's assistant. Jackson is assigned to Tuscany. Kanze is not assigned to Spain. Question: Which one of the following interns CANNOT be assigned to Tuscany? Choices: (A) Farber (B) Gombarick (C) Hall (D) Kanze (E) Lha ### # Declarations interns = EnumSort([Farber, Gombarick, Hall, Jackson, Kanze, Lha]) stories = EnumSort([Romania, Spain, Tuscany]) assistants = EnumSort([photographer, writer]) assigned = Function([interns] -> [stories]) trained = Function([interns] -> [assistants]) # Constraints ForAll([s:stories], Exists([i1:interns, i2:interns], And(i1 != i2, And(assigned(i1) == s, assigned(i2) == s, trained(i1) == photographer, trained(i2) == writer)))) ::: each story is assigned a team of two interns—one photographer's assistant and one writer's assistant trained(Gombarick) == trained(Lha) ::: Gombarick and Lha will be trained in the same field trained(Farber) != trained(Kanze) ::: Farber and Kanze will be trained in different fields trained(Hall) == photographer ::: Hall will be trained as a photographer's assistant assigned(Jackson) == Tuscany ::: Jackson is assigned to Tuscany assigned(Kanze) != Spain ::: Kanze is not assigned to Spain # Options Question ::: Which one of the following interns CANNOT be assigned to Tuscany? is_unsat(assigned(Farber) == Tuscany) ::: (A) is_unsat(assigned(Gombarick) == Tuscany) ::: (B) is_unsat(assigned(Hall) == Tuscany) ::: (C) is_unsat(assigned(Kanze) == Tuscany) ::: (D) is_unsat(assigned(Lha) == Tuscany) ::: (E) ------ Problem: [[PROBLEM]] Question: [[QUESTION]] Choices: [[CHOICES]] ### ================================================ FILE: models/prompts/AR-LSAT.txt ================================================ Given a problem description and a question. The task is to formulate the problem as a logic program, consisting three parts: Declarations, Constraints, and Options. Declarations: Declare the variables and functions. Constraints: Write the constraints in the problem description as logic formulas. Options: Write the options in the question as logic formulas. ------ Problem: On Tuesday Vladimir and Wendy each eat exactly four separate meals: breakfast, lunch, dinner, and a snack. The following is all that is known about what they eat during that day: At no meal does Vladimir eat the same kind of food as Wendy. Neither of them eats the same kind of food more than once during the day. For breakfast, each eats exactly one of the following: hot cakes, poached eggs, or omelet. For lunch, each eats exactly one of the following: fish, hot cakes, macaroni, or omelet. For dinner, each eats exactly one of the following: fish, hot cakes, macaroni, or omelet. For a snack, each eats exactly one of the following: fish or omelet. Wendy eats an omelet for lunch. Question: Vladimir must eat which one of the following foods? Choices: (A) fish (B) hot cakes (C) macaroni (D) omelet (E) poached eggs ### # Declarations people = EnumSort([Vladimir, Wendy]) meals = EnumSort([breakfast, lunch, dinner, snack]) foods = EnumSort([fish, hot_cakes, macaroni, omelet, poached_eggs]) eats = Function([people, meals] -> [foods]) # Constraints ForAll([m:meals], eats(Vladimir, m) != eats(Wendy, m)) ::: At no meal does Vladimir eat the same kind of food as Wendy ForAll([p:people, f:foods], Count([m:meals], eats(p, m) == f) <= 1) ::: Neither of them eats the same kind of food more than once during the day ForAll([p:people], Or(eats(p, breakfast) == hot_cakes, eats(p, breakfast) == poached_eggs, eats(p, breakfast) == omelet)) ::: For breakfast, each eats exactly one of the following: hot cakes, poached eggs, or omelet ForAll([p:people], Or(eats(p, lunch) == fish, eats(p, lunch) == hot_cakes, eats(p, lunch) == macaroni, eats(p, lunch) == omelet)) ::: For lunch, each eats exactly one of the following: fish, hot cakes, macaroni, or omelet ForAll([p:people], Or(eats(p, dinner) == fish, eats(p, dinner) == hot_cakes, eats(p, dinner) == macaroni, eats(p, dinner) == omelet)) ::: For dinner, each eats exactly one of the following: fish, hot cakes, macaroni, or omelet ForAll([p:people], Or(eats(p, snack) == fish, eats(p, snack) == omelet)) ::: For a snack, each eats exactly one of the following: fish or omelet eats(Wendy, lunch) == omelet ::: Wendy eats an omelet for lunch # Options Question ::: Vladimir must eat which one of the following foods? is_valid(Exists([m:meals], eats(Vladimir, m) == fish)) ::: (A) is_valid(Exists([m:meals], eats(Vladimir, m) == hot_cakes)) ::: (B) is_valid(Exists([m:meals], eats(Vladimir, m) == macaroni)) ::: (C) is_valid(Exists([m:meals], eats(Vladimir, m) == omelet)) ::: (D) is_valid(Exists([m:meals], eats(Vladimir, m) == poached_eggs)) ::: (E) ------ Problem: In a repair facility there are exactly six technicians: Stacy, Urma, Wim, Xena, Yolanda, and Zane. Each technician repairs machines of at least one of the following three types—radios, televisions, and VCRs—and no other types. The following conditions apply: Xena and exactly three other technicians repair radios. Yolanda repairs both televisions and VCRs. Stacy does not repair any type of machine that Yolanda repairs. Zane repairs more types of machines than Yolanda repairs. Wim does not repair any type of machine that Stacy repairs. Urma repairs exactly two types of machines. Question: Which one of the following pairs of technicians could repair all and only the same types of machines as each other? Choices: (A) Stacy and Urma (B) Urma and Yolanda (C) Urma and Xena (D) Wim and Xena (E) Xena and Yolanda ### # Declarations technicians = EnumSort([Stacy, Urma, Wim, Xena, Yolanda, Zane]) machines = EnumSort([radios, televisions, VCRs]) repairs = Function([technicians, machines] -> [bool]) # Constraints ForAll([t:technicians], Count([m:machines], repairs(t, m)) >= 1) ::: each technician repairs machines of at least one of the following three types And(repairs(Xena, radios), Count([t:technicians], And(t != Xena, repairs(t, radios))) == 3) ::: Xena and exactly three other technicians repair radios And(repairs(Yolanda, televisions), repairs(Yolanda, VCRs)) ::: Yolanda repairs both televisions and VCRs ForAll([m:machines], Implies(repairs(Yolanda, m), Not(repairs(Stacy, m)))) ::: Stacy does not repair any type of machine that Yolanda repairs Count([m:machines], repairs(Zane, m)) > Count([m:machines], repairs(Yolanda, m)) ::: Zane repairs more types of machines than Yolanda repairs ForAll([m:machines], Implies(repairs(Stacy, m), Not(repairs(Wim, m)))) ::: Wim does not repair any type of machine that Stacy repairs Count([m:machines], repairs(Urma, m)) == 2 ::: Urma repairs exactly two types of machines # Options Question ::: ::: Which one of the following pairs of technicians could repair all and only the same types of machines as each other? is_sat(ForAll([m:machines], repairs(Stacy, m) == repairs(Urma, m))) ::: (A) is_sat(ForAll([m:machines], repairs(Urma, m) == repairs(Yolanda, m))) ::: (B) is_sat(ForAll([m:machines], repairs(Urma, m) == repairs(Xena, m))) ::: (C) is_sat(ForAll([m:machines], repairs(Wim, m) == repairs(Xena, m))) ::: (D) is_sat(ForAll([m:machines], repairs(Xena, m) == repairs(Yolanda, m))) ::: (E) ------ Problem: Workers at a water treatment plant open eight valves—G, H, I, K, L, N, O, and P—to flush out a system of pipes that needs emergency repairs. To maximize safety and efficiency, each valve is opened exactly once, and no two valves are opened at the same time. The valves are opened in accordance with the following conditions: Both K and P are opened before H. O is opened before L but after H. L is opened after G. N is opened before H. I is opened after K. Question: Each of the following could be the fifth valve opened EXCEPT: Choices: (A) H (B) I (C) K (D) N (E) O """ # Declarations valves = EnumSort([G, H, I, K, L, N, O, P]) opened = Function([valves] -> [int]) ForAll([v:valves], And(1 <= opened(v), opened(v) <= 8)) # Constraints Distinct([v:valves], opened(v)) ::: no two valves are opened at the same time And(opened(K) < opened(H), opened(P) < opened(H)) ::: Both K and P are opened before H And(opened(O) > opened(H), opened(O) < opened(L)) ::: O is opened before L but after H opened(L) > opened(G) ::: L is opened after G opened(N) < opened(H) ::: N is opened before H opened(I) > opened(K) ::: I is opened after K # Options Question ::: Each of the following could be the fifth valve opened EXCEPT: is_exception(is_sat(opened(H) == 5)) ::: (A) is_exception(is_sat(opened(I) == 5)) ::: (B) is_exception(is_sat(opened(K) == 5)) ::: (C) is_exception(is_sat(opened(N) == 5)) ::: (D) is_exception(is_sat(opened(O) == 5)) ::: (E) ------ Problem: [[PROBLEM]] Question: [[QUESTION]] Choices: [[CHOICES]] ### ================================================ FILE: models/prompts/FOLIO.txt ================================================ Given a problem description and a question. The task is to parse the problem and the question into first-order logic formulars. The grammar of the first-order logic formular is defined as follows: 1) logical conjunction of expr1 and expr2: expr1 ∧ expr2 2) logical disjunction of expr1 and expr2: expr1 ∨ expr2 3) logical exclusive disjunction of expr1 and expr2: expr1 ⊕ expr2 4) logical negation of expr1: ¬expr1 5) expr1 implies expr2: expr1 → expr2 6) expr1 if and only if expr2: expr1 ↔ expr2 7) logical universal quantification: ∀x 8) logical existential quantification: ∃x ------ Problem: All people who regularly drink coffee are dependent on caffeine. People either regularly drink coffee or joke about being addicted to caffeine. No one who jokes about being addicted to caffeine is unaware that caffeine is a drug. Rina is either a student and unaware that caffeine is a drug, or neither a student nor unaware that caffeine is a drug. If Rina is not a person dependent on caffeine and a student, then Rina is either a person dependent on caffeine and a student, or neither a person dependent on caffeine nor a student. Question: Based on the above information, is the following statement true, false, or uncertain? Rina is either a person who jokes about being addicted to caffeine or is unaware that caffeine is a drug. Based on the above information, is the following statement true, false, or uncertain? If Rina is either a person who jokes about being addicted to caffeine and a person who is unaware that caffeine is a drug, or neither a person who jokes about being addicted to caffeine nor a person who is unaware that caffeine is a drug, then Rina jokes about being addicted to caffeine and regularly drinks coffee. ### Predicates: Dependent(x) ::: x is a person dependent on caffeine. Drinks(x) ::: x regularly drinks coffee. Jokes(x) ::: x jokes about being addicted to caffeine. Unaware(x) ::: x is unaware that caffeine is a drug. Student(x) ::: x is a student. Premises: ∀x (Drinks(x) → Dependent(x)) ::: All people who regularly drink coffee are dependent on caffeine. ∀x (Drinks(x) ⊕ Jokes(x)) ::: People either regularly drink coffee or joke about being addicted to caffeine. ∀x (Jokes(x) → ¬Unaware(x)) ::: No one who jokes about being addicted to caffeine is unaware that caffeine is a drug. (Student(rina) ∧ Unaware(rina)) ⊕ ¬(Student(rina) ∨ Unaware(rina)) ::: Rina is either a student and unaware that caffeine is a drug, or neither a student nor unaware that caffeine is a drug. ¬(Dependent(rina) ∧ Student(rina)) → (Dependent(rina) ∧ Student(rina)) ⊕ ¬(Dependent(rina) ∨ Student(rina)) ::: If Rina is not a person dependent on caffeine and a student, then Rina is either a person dependent on caffeine and a student, or neither a person dependent on caffeine nor a student. Conclusion: Jokes(rina) ⊕ Unaware(rina) ::: Rina is either a person who jokes about being addicted to caffeine or is unaware that caffeine is a drug. ((Jokes(rina) ∧ Unaware(rina)) ⊕ ¬(Jokes(rina) ∨ Unaware(rina))) → (Jokes(rina) ∧ Drinks(rina)) ::: If Rina is either a person who jokes about being addicted to caffeine and a person who is unaware that caffeine is a drug, or neither a person who jokes about being addicted to caffeine nor a person who is unaware that caffeine is a drug, then Rina jokes about being addicted to caffeine and regularly drinks coffee. ------ Problem: Miroslav Venhoda was a Czech choral conductor who specialized in the performance of Renaissance and Baroque music. Any choral conductor is a musician. Some musicians love music. Miroslav Venhoda published a book in 1946 called Method of Studying Gregorian Chant. Question: Based on the above information, is the following statement true, false, or uncertain? Miroslav Venhoda loved music. Based on the above information, is the following statement true, false, or uncertain? A Czech person wrote a book in 1946. Based on the above information, is the following statement true, false, or uncertain? No choral conductor specialized in the performance of Renaissance. ### Predicates: Czech(x) ::: x is a Czech person. ChoralConductor(x) ::: x is a choral conductor. Musician(x) ::: x is a musician. Love(x, y) ::: x loves y. Author(x, y) ::: x is the author of y. Book(x) ::: x is a book. Publish(x, y) ::: x is published in year y. Specialize(x, y) ::: x specializes in y. Premises: Czech(miroslav) ∧ ChoralConductor(miroslav) ∧ Specialize(miroslav, renaissance) ∧ Specialize(miroslav, baroque) ::: Miroslav Venhoda was a Czech choral conductor who specialized in the performance of Renaissance and Baroque music. ∀x (ChoralConductor(x) → Musician(x)) ::: Any choral conductor is a musician. ∃x (Musician(x) ∧ Love(x, music)) ::: Some musicians love music. Book(methodOfStudyingGregorianChant) ∧ Author(miroslav, methodOfStudyingGregorianChant) ∧ Publish(methodOfStudyingGregorianChant, year1946) ::: Miroslav Venhoda published a book in 1946 called Method of Studying Gregorian Chant. Conclusion: Love(miroslav, music) ::: Miroslav Venhoda loved music. ∃y ∃x (Czech(x) ∧ Author(x, y) ∧ Book(y) ∧ Publish(y, year1946)) ::: A Czech person wrote a book in 1946. ¬∃x (ChoralConductor(x) ∧ Specialize(x, renaissance)) ::: No choral conductor specialized in the performance of Renaissance. ------ Problem: [[PROBLEM]] Question: [[QUESTION]] ### ================================================ FILE: models/prompts/LogicalDeduction.txt ================================================ Task Description: You are given a problem description. The task is to parse the problem as a constraint satisfaction problem, defining the domain, variables, and contraints. ------ Problem: The following paragraphs each describe a set of three objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nIn an antique car show, there are three vehicles: a station wagon, a convertible, and a minivan. The station wagon is the oldest. The minivan is newer than the convertible. Question: Which of the following is true? Options: A) The station wagon is the second-newest. B) The convertible is the second-newest. C) The minivan is the second-newest. ### Domain: 1: oldest 3: newest Variables: station_wagon [IN] [1, 2, 3] convertible [IN] [1, 2, 3] minivan [IN] [1, 2, 3] Constraints: station_wagon == 1 ::: The station wagon is the oldest. minivan > convertible ::: The minivan is newer than the convertible. AllDifferentConstraint([station_wagon, convertible, minivan]) ::: All vehicles have different values. Query: A) station_wagon == 2 ::: The station wagon is the second-newest. B) convertible == 2 ::: The convertible is the second-newest. C) minivan == 2 ::: The minivan is the second-newest. ------ Problem: The following paragraphs each describe a set of five objects arranged in a fixed order. The statements are logically consistent within each paragraph.\n\nOn a branch, there are five birds: a quail, an owl, a raven, a falcon, and a robin. The owl is the leftmost. The robin is to the left of the raven. The quail is the rightmost. The raven is the third from the left. Question: Which of the following is true? Options: A) The quail is the rightmost. B) The owl is the rightmost. C) The raven is the rightmost. D) The falcon is the rightmost. E) The robin is the rightmost. ### Domain: 1: leftmost 5: rightmost Variables: quail [IN] [1, 2, 3, 4, 5] owl [IN] [1, 2, 3, 4, 5] raven [IN] [1, 2, 3, 4, 5] falcon [IN] [1, 2, 3, 4, 5] robin [IN] [1, 2, 3, 4, 5] Constraints: owl == 1 ::: The owl is the leftmost. robin < raven ::: The robin is to the left of the raven. quail == 5 ::: The quail is the rightmost. raven == 3 ::: The raven is the third from the left. AllDifferentConstraint([quail, owl, raven, falcon, robin]) ::: All birds have different values. Query: A) quail == 5 ::: The quail is the rightmost. B) owl == 5 ::: The owl is the rightmost. C) raven == 5 ::: The raven is the rightmost. D) falcon == 5 ::: The falcon is the rightmost. E) robin == 5 ::: The robin is the rightmost. ------ Problem: [[PROBLEM]] Question: [[QUESTION]] Options: [[CHOICES]] ### ================================================ FILE: models/prompts/ProntoQA.txt ================================================ Task Description: You are given a problem description and a question. The task is to: 1) define all the predicates in the problem 2) parse the problem into logic rules based on the defined predicates 3) write all the facts mentioned in the problem 4) parse the question into the logic form ------ Problem: Each jompus is fruity. Every jompus is a wumpus. Every wumpus is not transparent. Wumpuses are tumpuses. Tumpuses are mean. Tumpuses are vumpuses. Every vumpus is cold. Each vumpus is a yumpus. Yumpuses are orange. Yumpuses are numpuses. Numpuses are dull. Each numpus is a dumpus. Every dumpus is not shy. Impuses are shy. Dumpuses are rompuses. Each rompus is liquid. Rompuses are zumpuses. Alex is a tumpus. Question: True or false: Alex is not shy. ### Predicates: Jompus($x, bool) ::: Does x belong to Jompus? Fruity($x, bool) ::: Is x fruity? Wumpus($x, bool) ::: Does x belong to Wumpus? Transparent($x, bool) ::: Is x transparent? Tumpuses($x, bool) ::: Does x belong to Tumpuses? Mean($x, bool) ::: Is x mean? Vumpuses($x, bool) ::: Does x belong to Vumpuses? Cold($x, bool) ::: Is x cold? Yumpus($x, bool) ::: Does x belong to Yumpus? Orange($x, bool) ::: Is x orange? Numpus($x, bool) ::: Does x belong to Numpus? Dull($x, bool) ::: Is x dull? Dumpus($x, bool) ::: Does x belong to Dumpus? Shy($x, bool) ::: Is x shy? Impuses($x, bool) ::: Does x belong to Impuses? Rompus($x, bool) ::: Does x belong to Rompus? Liquid($x, bool) ::: Is x liquid? Zumpus($x, bool) ::: Does x belong to Zumpus? Facts: Tumpuses(Alex, True) Rules: Jompus($x, True) >>> Fruity($x, True) Jompus($x, True) >>> Wumpus($x, True) Wumpus($x, True) >>> Transparent($x, False) Wumpuses($x, True) >>> Tumpuses($x, True) Tumpuses($x, True) >>> Mean($x, True) Tumpuses($x, True) >>> Vumpuses($x, True) Vumpuses($x, True) >>> Cold($x, True) Vumpuses($x, True) >>> Yumpus($x, True) Yumpus($x, True) >>> Orange($x, True) Yumpus($x, True) >>> Numpus($x, True) Numpus($x, True) >>> Dull($x, True) Numpus($x, True) >>> Dumpus($x, True) Dumpus($x, True) >>> Shy($x, False) Impuses($x, True) >>> Shy($x, True) Dumpus($x, True) >>> Rompus($x, True) Rompus($x, True) >>> Liquid($x, True) Rompus($x, True) >>> Zumpus($x, True) Query: Shy(Alex, False) ------ Problem: [[PROBLEM]] Question: [[QUESTION]] ### ================================================ FILE: models/prompts/ProofWriter.txt ================================================ Task Description: You are given a problem description and a question. The task is to: 1) define all the predicates in the problem 2) parse the problem into logic rules based on the defined predicates 3) write all the facts mentioned in the problem 4) parse the question into the logic form ------ Problem: Anne is quiet. Erin is furry. Erin is green. Fiona is furry. Fiona is quiet. Fiona is red. Fiona is rough. Fiona is white. Harry is furry. Harry is quiet. Harry is white. Young people are furry. If Anne is quiet then Anne is red. Young, green people are rough. If someone is green then they are white. If someone is furry and quiet then they are white. If someone is young and white then they are rough. All red people are young. Question: Based on the above information, is the following statement true, false, or unknown? Anne is white. ### Predicates: Quiet($x, bool) ::: Is x quiet? Furry($x, bool) ::: Is x furry? Green($x, bool) ::: Is x green? Red($x, bool) ::: Is x red? Rough($x, bool) ::: Is x rough? White($x, bool) ::: Is x white? Young($x, bool) ::: Is x young? Facts: Quite(Anne, True) ::: Anne is quiet. Furry(Erin, True) ::: Erin is furry. Green(Erin, True) ::: Erin is green. Furry(Fiona, True) ::: Fiona is furry. Quite(Fiona, True) ::: Fiona is quiet. Red(Fiona, True) ::: Fiona is red. Rough(Fiona, True) ::: Fiona is rough. White(Fiona, True) ::: Fiona is white. Furry(Harry, True) ::: Harry is furry. Quite(Harry, True) ::: Harry is quiet. White(Harry, True) ::: Harry is white. Rules: Young($x, True) >>> Furry($x, True) ::: Young people are furry. Quite(Anne, True) >>> Red($x, True) ::: If Anne is quiet then Anne is red. Young($x, True) >>> Rough($x, True) ::: Young, green people are rough. Green($x, True) >>> Rough($x, True) ::: Young, green people are rough. Green($x, True) >>> White($x, True) ::: If someone is green then they are white. Furry($x, True) && Quite($x, True) >>> White($x, True) ::: If someone is furry and quiet then they are white. Young($x, True) && White($x, True) >>> Rough($x, True) ::: If someone is young and white then they are rough. Red($x, True) >>> Young($x, True) ::: All red people are young. Query: White(Anne, True) ::: Anne is white. ------ Problem: [[PROBLEM]] Question: [[QUESTION]] ### ================================================ FILE: models/prompts/self-correct-AR-LSAT.txt ================================================ Task: Given the initial program and the error message, debug the following logic program. ------ >>> Initial Program: # Declarations children = EnumSort([Fred, Juan, Marc, Paul, Nita, Rachel, Trisha]) lockers = EnumSort([1, 2, 3, 4, 5]) assigned = Function([children] -> [lockers]) gender = Function([children] -> [EnumSort([boy, girl])]) >>> Error Message: SyntaxError: closing parenthesis ']' does not match opening parenthesis '(' >>> Corrected Program: # Declarations children = EnumSort([Fred, Juan, Marc, Paul, Nita, Rachel, Trisha]) lockers = EnumSort([1, 2, 3, 4, 5]) genders = EnumSort([boy, girl]) assigned = Function([children] -> [lockers]) gender = Function([children] -> [genders]) ------ >>> Initial Program: # Constraints ForAll([l:lockers], Or(Exists([c:children], assigned(c) == l), Exists([c1:children, c2:children], And(c1 != c2, And(assigned(c1) == l, assigned(c2) == l, gender(c1) != gender(c2)))))) ::: Each locker must be assigned to either one or two children, and each child must be assigned to exactly one locker Exists([c:children, l:lockers], And(assigned(Juan) == l, assigned(c) == l, c != Juan)) ::: Juan must share a locker ForAll([l:lockers], assigned(Rachel) != l Or Not(Exists([c:children], And(c != Rachel, assigned(c) == l)))) ::: Rachel cannot share a locker ForAll([l:lockers], Implies(assigned(Nita) == l, And(assigned(Trisha) != l - 1, assigned(Trisha) != l + 1))) ::: Nita's locker cannot be adjacent to Trisha's locker assigned(Fred) == 3 ::: Fred must be assigned to locker 3 And(assigned(Trisha) == 3, assigned(Marc) == 1, ForAll([c:children], Implies(c != Marc, assigned(c) != 1))) ::: if Trisha is assigned to locker 3 and Marc alone is assigned to locker 1 >>> Error Message: SyntaxError: invalid syntax >>> Corrected Program: # Constraints ForAll([l:lockers], Or(Exists([c:children], assigned(c) == l), Exists([c1:children, c2:children], And(c1 != c2, And(assigned(c1) == l, assigned(c2) == l, gender(c1) != gender(c2)))))) ::: Each locker must be assigned to either one or two children, and each child must be assigned to exactly one locker Exists([c:children, l:lockers], And(assigned(Juan) == l, assigned(c) == l, c != Juan)) ::: Juan must share a locker ForAll([l:lockers], Or(assigned(Rachel) != l, Not(Exists([c:children], And(c != Rachel, assigned(c) == l))))) ::: Rachel cannot share a locker ForAll([l:lockers], Implies(assigned(Nita) == l, And(assigned(Trisha) != l - 1, assigned(Trisha) != l + 1))) ::: Nita's locker cannot be adjacent to Trisha's locker assigned(Fred) == 3 ::: Fred must be assigned to locker 3 And(assigned(Trisha) == 3, assigned(Marc) == 1, ForAll([c:children], Implies(c != Marc, assigned(c) != 1))) ::: if Trisha is assigned to locker 3 and Marc alone is assigned to locker 1 ------ >>> Initial Program: # Declarations days = EnumSort([Monday, Tuesday, Wednesday, Thursday, Friday]) divisions = EnumSort([Operations, Production, Sales]) toured = Function([days] -> [divisions]) # Constraints Count([d:days], toured(d) == Operations) >= 1 ::: Each division is toured at least once Count([d:days], toured(d) == Production) >= 1 ::: Each division is toured at least once Count([d:days], toured(d) == Sales) >= 1 ::: Each division is toured at least once toured(Monday) != Operations ::: The Operations division is not toured on Monday >>> Error Message: TypeError: '<' not supported between instances of 'DatatypeRef' and 'DatatypeRef' >>> Corrected Program: # Declarations days = IntSort([Monday, Tuesday, Wednesday, Thursday, Friday]) divisions = EnumSort([Operations, Production, Sales]) toured = Function([days] -> [divisions]) # Constraints And(Monday == 1, Tuesday == 2, Wednesday == 3, Thursday == 4, Friday == 5) Count([d:days], toured(d) == Operations) >= 1 ::: Each division is toured at least once Count([d:days], toured(d) == Production) >= 1 ::: Each division is toured at least once Count([d:days], toured(d) == Sales) >= 1 ::: Each division is toured at least once toured(Monday) != Operations ::: The Operations division is not toured on Monday ------ >>> Initial Program: [[PROGRAM]] >>> Error Message: [[ERROR MESSAGE]] >>> Corrected Program: ================================================ FILE: models/prompts/self-correct-FOLIO.txt ================================================ Task: Given the wrong FOL formula and the error message, output the correct FOL formula. ------ >>> Initial Program: Premises: MusicPiece(symphonyNo9) ::: Symphony No. 9 is a music piece. ∀x (Composer(x) → ∃y (Write(x, y) ∧ MusicPiece(y))) ::: Composers write music pieces. Write(beethoven, symphonyNo9) ::: Beethoven wrote Symphony No. 9. Lead(beethoven, viennaMusicSociety) ∧ Orchestra(viennaMusicSociety) ::: Vienna Music Society is an orchestra and Beethoven leads the Vienna Music Society. ∀x (Orchestra(x) → ∃y (Lead(y, x) ∧ Conductor(y))) ::: Orchestras are led by conductors. Conclusion: ¬Conductor(beethoven) ::: Beethoven is not a conductor." >>> Error Message: Parsing Error >>> Correct Program: Premises: MusicPiece(symphonyNo9) ::: Symphony No. 9 is a music piece. ∀x ∃z (¬Composer(x) ∨ (Write(x,z) ∧ MusicPiece(z))) ::: Composers write music pieces. Write(beethoven, symphonyNo9) ::: Beethoven wrote Symphony No. 9. Lead(beethoven, viennaMusicSociety) ∧ Orchestra(viennaMusicSociety) ::: Vienna Music Society is an orchestra and Beethoven leads the Vienna Music Society. ∀x ∃z (¬Orchestra(x) ∨ (Lead(z,x) ∧ Conductor(z))) ::: Orchestras are led by conductors. Conclusion: ¬Conductor(beethoven) ::: Beethoven is not a conductor. ------ >>> Initial Program: Predicates: JapaneseCompany(x) ::: x is a Japanese game company. Create(x, y) ::: x created the game y. Top10(x) ::: x is in the Top 10 list. Sell(x, y) ::: x sold more than y copies. Premises: ∃x (JapaneseCompany(x) ∧ Create(x, legendOfZelda)) ::: A Japanese game company created the game the Legend of Zelda. ∀x (Top10(x) → ∃y (JapaneseCompany(y) ∧ Create(y, x))) ::: All games in the Top 10 list are made by Japanese game companies. ∀x (Sell(x, oneMillion) → Top10(x)) ::: If a game sells more than one million copies, then it will be selected into the Top 10 list. Sell(legendOfZelda, oneMillion) ::: The Legend of Zelda sold more than one million copies. Conclusion: Top10(legendOfZelda) ::: The Legend of Zelda is in the Top 10 list. >>> Error Message: Parsing Error >>> Correct Program: Predicates: JapaneseCompany(x) ::: x is a Japanese game company. Create(x, y) ::: x created the game y. Top10(x) ::: x is in the Top 10 list. Sell(x, y) ::: x sold more than y copies. Premises: ∃x (JapaneseCompany(x) ∧ Create(x, legendOfZelda)) ::: A Japanese game company created the game the Legend of Zelda. ∀x ∃z (¬Top10(x) ∨ (JapaneseCompany(z) ∧ Create(z,x))) ::: All games in the Top 10 list are made by Japanese game companies. ∀x (Sell(x, oneMillion) → Top10(x)) ::: If a game sells more than one million copies, then it will be selected into the Top 10 list. Sell(legendOfZelda, oneMillion) ::: The Legend of Zelda sold more than one million copies. Conclusion: Top10(legendOfZelda) ::: The Legend of Zelda is in the Top 10 list. ------ >>> Initial Program: Predicates: Listed(x) ::: x is listed in Yelp’s recommendations. NegativeReviews(x) ::: x receives many negative reviews. Rating(x, y) ::: x has a rating of y. TakeOut(x) ::: x provides take-out service. Popular(x) ::: x is popular among local residents. Premises: ∀x (Listed(x) → ¬NegativeReviews(x)) ::: If the restaurant is listed in Yelp’s recommendations, then the restaurant does not receive many negative reviews. ∀x (Rating(x, y) ∧ y > 9 → Listed(x)) ::: All restaurants with a rating greater than 9 are listed in Yelp’s recommendations. ∃x (¬TakeOut(x) ∧ NegativeReviews(x)) ::: Some restaurants that do not provide take-out service receive many negative reviews. ∀x (Popular(x) → (Rating(x, y) ∧ y > 9)) ::: All restaurants that are popular among local residents have ratings greater than 9. Rating(subway, y) ∧ y > 9 ∨ Popular(subway) ::: Subway has a rating greater than 9 or is popular among local residents. Conclusion: TakeOut(subway) ∧ ¬NegativeReviews(subway) ::: Subway provides take-out service and does not receive many negative reviews. >>> Error Message: Parsing Error >>> Correct Program: Predicates: Listed(x) ::: x is listed in Yelp’s recommendations. NegativeReviews(x) ::: x receives many negative reviews. TakeOut(x) ::: x provides take-out service. Popular(x) ::: x is popular among local residents. GreaterThanNine(x) ::: x has a rating greater than 9. Premises: ∀x (Listed(x) → ¬NegativeReviews(x)) ::: If the restaurant is listed in Yelp’s recommendations, then the restaurant does not receive many negative reviews. ∀x (GreaterThanNine(x) → Listed(x)) ::: All restaurants with a rating greater than 9 are listed in Yelp’s recommendations. ∃x (¬TakeOut(x) ∧ NegativeReviews(x)) ::: Some restaurants that do not provide take-out service receive many negative reviews. ∀x (Popular(x) → GreaterThanNine(x)) ::: All restaurants that are popular among local residents have ratings greater than 9. GreaterThanNine(subway) ∨ Popular(subway) ::: Subway has a rating greater than 9 or is popular among local residents. Conclusion: TakeOut(subway) ∧ ¬NegativeReviews(subway) ::: Subway provides take-out service and does not receive many negative reviews. ------ >>> Initial Program: [[PROGRAM]] >>> Error Message: [[ERROR MESSAGE]] >>> Corrected Program: ================================================ FILE: models/self_refinement.py ================================================ # input: logic program file # output: logic program file after one round of self-refinement import json import os from tqdm import tqdm from symbolic_solvers.z3_solver.sat_problem_solver import LSAT_Z3_Program from symbolic_solvers.fol_solver.prover9_solver import FOL_Prover9_Program import argparse import random from backup_answer_generation import Backup_Answer_Generator from utils import OpenAIModel class SelfRefinementEngine: def __init__(self, args, current_round): self.args = args self.split = args.split self.model_name = args.model_name self.dataset_name = args.dataset_name self.backup_strategy = args.backup_strategy self.openai_api = OpenAIModel(args.api_key, 'gpt-4', args.stop_words, args.max_new_tokens) self.current_round = current_round self.logic_programs = self.load_logic_programs() # self.reasoning_results = self.load_inference_results() program_executor_map = {'AR-LSAT': LSAT_Z3_Program, 'FOLIO': FOL_Prover9_Program} self.program_executor = program_executor_map[self.dataset_name] self.backup_generator = Backup_Answer_Generator(self.dataset_name, self.backup_strategy, self.args.backup_LLM_result_path) def load_logic_programs(self): prefix = "" if self.current_round > 1: prefix = f'self-refine-{self.current_round-1}_' with open(os.path.join('./outputs/logic_programs', f'{prefix}{self.dataset_name}_{self.split}_{self.model_name}.json')) as f: dataset = json.load(f) print(f"Loaded {len(dataset)} examples from {self.split} split.") return dataset def load_prompt(self, program, error_message): program = program.strip() error_message = error_message.strip() with open(f'./models/prompts/self-correct-{self.dataset_name}.txt', 'r') as f: prompt_template = f.read() full_prompt = prompt_template.replace('[[PROGRAM]]', program).replace('[[ERROR MESSAGE]]', error_message) return full_prompt def safe_execute_program(self, id, logic_program, debug = False): program = self.program_executor(logic_program, self.dataset_name) # cannot parse the program if program.flag == False: answer = self.backup_generator.get_backup_answer(id) return answer, 'parsing error', '' # execuate the program answer, error_message = program.execute_program() # not executable if answer is None: answer = self.backup_generator.get_backup_answer(id) ## output debug info if debug == True: if not os.path.exists('./debug'): os.makedirs('./debug') with open(f'./debug/{id}.py', 'w') as f: f.write(program.standard_code) with open(f'./debug/{id}.program.txt', 'w') as f: f.write(logic_program) f.write('\n') f.write(error_message) return answer, 'execution error', error_message # successfully executed answer = program.answer_mapping(answer) return answer, 'success', error_message def single_round_self_refinement(self): outputs = [] for example in tqdm(self.logic_programs): logic_program = example['raw_logic_programs'][0].strip() answer, status, error_message = self.safe_execute_program(example['id'], logic_program) if status == 'execution error': if not error_message == 'No Output': # this is not execution error, but parsing error # perform self-correction based on the error message full_prompt = self.load_prompt(logic_program, error_message) revised_program = self.openai_api.generate(full_prompt).strip() programs = [revised_program] output = {'id': example['id'], 'context': example['context'], 'question': example['question'], 'answer': example['answer'], 'options': example['options'], 'raw_logic_programs': programs} outputs.append(output) else: outputs.append(example) elif status == 'parsing error': # perform self-correction based on the error message full_prompt = self.load_prompt(logic_program, 'Parsing Error') revised_program = self.openai_api.generate(full_prompt).strip() programs = [revised_program] output = {'id': example['id'], 'context': example['context'], 'question': example['question'], 'answer': example['answer'], 'options': example['options'], 'raw_logic_programs': programs} outputs.append(output) else: outputs.append(example) # save results if not os.path.exists('./outputs/logic_programs'): os.makedirs('./outputs/logic_programs') # save outputs save_path = f'./outputs/logic_programs/self-refine-{self.current_round}_{self.dataset_name}_{self.split}_{self.model_name}.json' with open(save_path, 'w') as f: json.dump(outputs, f, indent=2, ensure_ascii=False) def parse_args(): parser = argparse.ArgumentParser() parser.add_argument('--maximum_rounds', type=int, default=3) parser.add_argument('--dataset_name', type=str) parser.add_argument('--split', type=str, default='dev') parser.add_argument('--backup_strategy', type=str, default='random', choices=['random', 'LLM']) parser.add_argument('--backup_LLM_result_path', type=str, default='../baselines/results') parser.add_argument('--model_name', type=str, default='text-davinci-003') parser.add_argument('--timeout', type=int, default=60) parser.add_argument('--api_key', type=str) parser.add_argument('--stop_words', type=str, default='------') parser.add_argument('--max_new_tokens', type=int, default=1024) args = parser.parse_args() return args if __name__ == "__main__": args = parse_args() for round in range(1, args.maximum_rounds+1): print(f"Round {round} self-refinement") engine = SelfRefinementEngine(args, round) engine.single_round_self_refinement() ================================================ FILE: models/symbolic_solvers/Prover9/.gdb_history ================================================ break fatal_error run < b4.in print message up up call p_clause(c) print *c up up break prover6.c:958 if (old->id == 526) run call p_clause(old) next call p_clause(new) print *old next file prover6 run print *old call p_just(justification) call p_just(old->justification) print *old call p_just(old->justification) call p_just(old->justification) call p_just(old->justification) file prover6 run call p_just(old->justification) next call p_just(new->justification) print *new next call p_just(new->justification) next ================================================ FILE: models/symbolic_solvers/Prover9/COPYING ================================================ GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. ================================================ FILE: models/symbolic_solvers/Prover9/Changelog ================================================ -------- LADR 2009-11A ---------- November 4, 2009. Online Examples. Somewhere along the line, the XML/XSL/HTML rendering of the tables for interpretations broke in Firefox (ok in Safari, don't know about IE). I suspect it's a Firefox problem, because using xsltproc separately to translate the XML to HTML produces HTML that Firefox renders correctly. This is beyond me. Help? November 3, 2009. Newauto. Oct 1 fix causes big slowdown in fof-prover9 jobs that spawn hundreds of children. Undo that fix and fix it in a different, kludgey way by inserting "flip_matches_hint" into symbol table at start of forking_search. Any other lables that might be introduced by children should be handeled similarly. November 3, 2009. Prover9, Mace4, LADR. Change default max_megs from 200 to 500. This also affects other LADR programs like prooftrans. October 28, 2009. Prover9. Bug appears when using prolog_style_variables with weighting rules: the special symbol "_" in weighting rules is treated as an ordinary variable. Fixed by changing the definition of prolog_style_variables so that they don't include symbols that start with "_". October 1, 2009. Newauto. Bug appears when child search introduces new hint label ("flip_matches_hint"). Fix by changing new_symbols_since_mark() (in ladr/symbols.c) so that *all* new symbols are reported. July 9, 2009. Prover9. Very minor bug: at top of proof, the line "Maximum clause weight" always prints integer, even if floating-point. Fixed. June 29, 2009. Ladr_to_tptp. Bug causes $F ("false" in LADR) to be treated as a constant. Fixed so that it translates to $false ("false" in TPTP). May 22, 2009. Prover9. Bug in production mode when compiled for 64-bit computers. Line 103 in ladr/dollar.c: sizeof(int) should be sizeof(void *). Fixed. April 9-10, 2009. apps.src. New program to generate constant definitions for TRC experiments: gen_trc_defs. LADR: flat demodulation: when clearing substitutions, also check and clear "alternative" field. This fixed a problem caused by nonstandard use of flatterms in new app gen_trc_defs; the change should not affect prover9. March 17, 2009. Interpformat and Isofilter: would crash in some cases when the Mace4 job used op commands to declare print/parse properties. Fixed by introducing "simple_parse" flag in parse.c. This avoids problems when special symbols are used in standard prefix form, e.g., interps in standard form. March 12, 2009. Mace4. Bug (segfault) in some cases when input formula simplifies to $T or to $F. Fixed. February 26, 2009. Prover9. Production mode bug: segfault when doing arithmetic (op_code out of range in rewrite). Fixed. -------- LADR 2009-02A ---------- February 1-24, 2009. Prover9. New "production mode" which uses hyperresolution along with new rewriting system (conditional rewrite rules and ability to rewrite atomic formulas) to do things like forward-chaining state-space searches. See the HTML manual "More Features -> Production Mode". February 19, 2009. Prover9. New parm eval_var_limit (for semantic guidance). This simply changes eval_limit based on the size of the largest interpretation. See the manual. January 25-26, 2009. Prover9. Preliminary work on extending hyperresolution for evaluable antecedents and consequents. January 21, 2009. LADR. The October 21 change of giving "--" built-in parsing property op(500, infix, "--") took away the ability to write terms like --x (without space) using unary minus. I think this important, so I'm rescinding that Oct 21 change. The "--" symbol was used for binary minus in the Mace4 built-in arithmetic, so from now on, we'll have to write, e.g., "x + -y" instead of "x -- y". (Symbols in LADR cannot be overloaded, so we cannot use "-" for both unary negation and binary minus.) LADR has been updated so that it no longer accepts "op" declarations for "--", "---", "----", ... . Also, it no longer accepts declarations for "''", "'''", "'''", ... . These are special-case restrictions so that the prefix operation "-" can be input and output without space for nested occurrences, e.g., "--x = x". Similarly, for postfix operation "'", e.g., "x'' = x". Unfortunately, this change messes up the programs tptp_to_ladr and ladr_to_tptp, because they rely on an operation "--". A kludge gets around the problem. January 20, 2009. Prover9. A new experimental feature was enabled by mistake: assign(complexity, 1). This causes clause weights to get floating-point values by default. It has been disabled. -------- LADR 2009-01A ---------- (unannounced) January 15, 2009. Mace4. Bug (reported bu Peter Jipsen) when using set(skolems_last): it can miss some (nonisomorphic) models. Fixed. Prover9. Minor change requested by Bob Veroff: hints count message. Newauto. Minor change requested by Veroff: change prepend to append. December (mid). Prover9. Complexity function for weighting (preliminary work). assign(complexity,1) breaks ties when selecting given clauses, based on a complexity measure: more complex has lower weight. Not in the manual. December 11, 2008. Mace4. User-declared skolem functions do not work with skolems_last option. Fixed. -------- LADR 2008-11A ---------- November 15, 2008. Mace4. New option set(arithmetic) builds in some integer arithmetic. See the Prover9 HTML manual. November 7, 2008. Mace4. Previously, a domain element out of range would always cause a fatal error, even if higher domain sizes had been specified. Now, it will simply skip the domain size and try the next size. October 26, 2008. Prover9. Bug when action, triggered by kept-clause-count, asserts a clause, e.g., kept = 10 -> assert(-p | a | b). (reported by Ken Kunen). Clause is asserted repeatedly until segfault. Fixed by moving one line of code. I can't understand why that line of code was where it was; if there was a good reason, this fix might cause some other problem. October 23, 2008. LADR. New type of option is accepted: "floatparm". This allows assignment of floating-point values to some of the parameters, e.g., assign(max_weight, "10.2"). Floating-point values must be enclosed in double quotes. Prover9. Floating-point values can be used for the parameters that control weighting: max_weight, variable_weight, constant_weight, not_weight, or_weight, sk_constant_weight, prop_atom_weight, nest_penalty, depth_penalty, var_penalty, default_weight. Integers can still be used for these. Also, weighting rules can have floating-point values (in double quotes) as well as integers. October 23, 2008. Prover9. Parm skolem_penalty has been removed; it was for an experiment, and it never made much sense. October 21, 2008. Mace4. New flag order_domain builds in the relations < and <= (less-than, less-than-or-equal) on the members of the domain (in the same way that the flag integer_ring builds in the operations +,*,- as the ring of integers mod n). Also, when integer_ring is set, the operation "--" is built-in as binary minus. (So you can write x -- y instead of x + -y.) Mace4. Accepts new list, list(distinct) to say that lists of objects are distinct. E.g., list(distinct). [a,b,c]. [d,e]. end_of_list. is shorthand for formulas(assumptions). a!=b. a!=b. b!=c. d!=e. end_of_list. LADR. "--" and "++" get built-in parsing properties: op(500, infix, ["--", "++"]). October 18, 2008. Interpformat. Add option "wrap" which encloses interps in list(interpretations). ... end_of_list. October 10, 2008. Prover9. Change hints matching so that non-orientable equality units are tried both ways when looking for a matching hint. When the flip matches a hint, append a label "flip_matches_hint" to the clause. October 7, 2008. Ladr_to_tptp. Yet more changes. More parentheses output. New command-line options: -p says to output all parentheses. -q says to single-quote unacceptable TPTP symbols, e.g., x*y becomes '*'(x,y) instead of tptp0(x,y). Tptp_to_ladr. New command-line option: -q says to double-quote unacceptable LADR symbols. October 2, 2008. Prover9. Bug: assign(demod_size_limit, -1) is supposed to mean infinity, but it doesn't. It causes demodulation to stop prematurely. While looking at this, we decided that a better parameter would be demod_increase_limit, which would terminate demodulation when the size (symbol count) of the clause increases more than the limit. So demod_size_limit is eliminated, and demod_increase_limit (default 1000) is introduced. Also, the warning messages about demod_step_limit and demod_increase_limit have been improved. -------- LADR 2008-09A ---------- August 30, 2008. LADR. clause_ident failed to check sign when checking identity of literals. Fixed. That routine is used in several places; prooftrans caused the bug to appear (missing hints). August 28, 2008. Changelog. Reverse so that most recent entries are at the beginning. August 27, 2008. Prover9 Manual. It incorrectly said that max_weight=-1 means infinity (no limit). Fixed. August 22, 2008. Prooftrans, Directproof. These failed if the empty clause has an answer attribute with more than 1000 characters (buffer limit, not buffer overrun). Fixed. Prooftrans. Previously, the order of the arguments "expand" and "renumber" was irrelevant; it always expanded first. Now, it does the transformations in the order given on the command line. August 18, 2008. Prover9. Hint degradation: weights were artificially high, because the number of previous matches included clauses that were later forward subsumed. Fixed. Prover9. When generating Skolem functions, allow them to to occur in the hints list. When building up sets of hints by iteration, this change prevents generating new Skolem functions in each search. This involved substantial changes to code in symbol_check_and_declare. The routine accept_list takes an additional argument. August 14, 2008. Prover9. Force evaluation (w.r.t. semantics) just before clauses are "kept". Previously, clauses were evaluated only when needed by keep/delete rules or given-selection rules. The change makes sure false clauses have the "false" label if print_kept prints them. Prover9. Crash if sos is full (sos_limit) and all are high priority (e.g., hints), because a "worst" clause cannot be found. Fix: allow "worst" clauses to be high priority. -------- LADR 2008-08A ---------- (unannounced) August 5, 2008. Prover9: Another incompatibility of lex_order_vars with KBO. For example, with lex_order_vars, m(x,y,z) < m(z,y,x), but NOT m(x',y,z') < m(z',y,x'), because, although x and z are comparable, but x' and z' are not. A patch: when trying to compare f(alpha) and f(beta), go right to comparing alpha and beta, rather than checking the variable condition. This fixes this particular problem, but there may be similar ones lurking. (The change applies also without lex_order_vars, but it should not change the behavior in that that case.) Tptp_to_ladr: stupid inefficiency in list processing causes inputs with many formulas to take a very long time. Fixed. -------- LADR 2008-07A ---------- (unannounced) July 9, 2008. All code: get rid of variable declarations that are not at the beginning of a block. (To satisfy old compilers.) -------- LADR 2008-06A ---------- June 23, 2008. Prover9. Produce more output during preprocessing. Previously, in the section "CLAUSES FOR SEARCH", there could be justifications like [back_rewrite(9),rewrite([11(3)])], with clauses 9 and 11 not appearing before that point, because they had already been disabled, e.g., by back rewriting. Now, most clauses that get IDs during preprocessing are output (if print_initial_clauses is set). June 21, 2008. LADR (ladr_to_tptp and tptp_to_ladr). The May 14 changes caused a problem: operations of different parse types with the same precedence: declare_parse_type("|", 502, INFIX_RIGHT); declare_parse_type("~|", 502, INFIX); declare_parse_type("&", 503, INFIX_RIGHT); declare_parse_type("~&", 503, INFIX); This is not allowed in LADR. Solution: don't support ~| or ~&. June 12, 2008. Prover9. Remove the May 18 weighting code (too slow and broken). New code: allow a user/programmer to write weighting functions in C, and then refer to the new function, say func42, in weighting rules like this: weight(f(x,y) = call(func42,x) + weight(y). See the new source file ladr/weight2.c. Prover9. Suppress selector_report in "Low Water" messages, unless assign(stats, all). Prover9. Bug with assign(sos_limit, -1). (E.g., clear(auto_limits)). -1 is supposed to mean infinity, but Prover9 was interpreting is as a small limit, causing sos_empty. Fixed. June 11, 2008. Prover9. Bug reported by Michael Beeson. Unit deletion, in which the unit contains an answer attribute with variables: variables do not get instantiated. Fixed. Prover9. Another (minor) answer literal bug: When a proof has answers, a message containing the answer goes to stderr and at the start of the proof. When there were multiple answers, only the first was printed. (The empty clause at the end of the proof correctly printed all answers.) Fixed. May 18, 2008. Prover9. Experiment to allow weighting function to call an external program to compute the weight. Works on Mac (very slowly), fails in linux (system call popen() works differently.) -------- LADR 2008-05B ---------- May 15, 2008. Prooftrans. Added Bob Veroff's "tagged" output format. This involved some new code in ladr/{just.c,ioutil.c}. May 14, 2008. LADR (ladr_to_tptp and tptp_to_ladr). Several changes (from Geoff Sutcliffe) on parse/print declarations: "=>" and several other TPTP operations changed from INFIX_RIGHT (xfy) to INFIX (xfx). -------- LADR 2008-05A ---------- May 7, 2008. Prover9. The weighting rules now can include a vars(term) operation, which is the number of (distinct) variables in the term. This is analogous to the depth(term) operation. Prover9. The SELECTOR REPORT is printed only with assign(stats,all). Prover9. When a kept clause does not match any given_selection rules, a warning is printed (previously, it caused a fatal error). Fof-prover9. Efficiency bug when there are many (>50) subproblems having to do with new symbols. Fixed by considering function/relation symbols only. April 23, 2008. Prover9. Bug in new given_selection code: "positive" is true if any positive literals. Same for "negative". Fixed. This bug also affected list(keep) and list(delete). April 14, 2008. Expand_proof bug (called by prooftrans, directproof) occurs for assert-by-action with immediate simplification. It was producing justifications like [assumption,rewrite...]. Expand_proof could not handle it. Instead of fixing expand_proof, the assertion was changed so that if it is immediately simplified, a "copy" inference is inserted. The reason: [assumption,rewrite...] in a proof is bad, because you don't see what the actual assumption is. April 13, 2008. Directproof. Bug causes coredump. Trivial case not handled: flip negative equality, then implicit resolution with x=x. Fixed. -------- LADR 2008-04A ---------- March 24--28, 2008. LADR. New language to specify clauses by various properties. For example, "weight < 40 & (horn | variables = 3)". This will be used for deciding which clauses to keep and for selecting given clauses. See next paragraph. Prover9. Use the new language in three ways: (1) list(keep). end_of_list. (2) list(delete). end_of_list. (3) list(given_selection). ... end_of_list. See the HTML manual (new sections "Advanced Features"). list(delete) is a generalization of max_weight, max_vars, etc. list(given_selection) is a generalization of weight_part, age_part,etc. Max_weight, weight_part, etc. will still be accepted, but those operations will now be implemented by the new mechanisms. These are big changes to Prover9, and there are probably some bugs. The way sos_limit works has been changed. It has always been an ad hoc heuristic, and it still is, but it is now simpler. Warning: searches that use sos_limit *will* behave differently in the new Prover9. The new parm sos_keep_factor adjusts how sos_limit works. New naming convention for releases. March 21, 2008. Prover9. Minor bug involving lex_order_vars and hints. Fix: renumber variables in hints, just after orienting and before indexing (also for back-demodulated hints). -------- LADR March-2008A ---------- (unannounced release) February 28, 2008. Prover9. Bug involving hints with sos_limit. Clauses matching hints (i.e., really good clauses) were being deleted by sos_limit to make room for clauses that might not be as good. Also, this bug can cause clauses to be inferred, kept, deleted, inferred, kept, deleted, ... . Fixed. February 19, 2008. Tptp_to_ladr. The Feb 14 precedence change (~) was no good. After discussion with Geoff and Josef, we decided that the previous precedences were okay, so undo the Feb 14 change. -------- LADR Feb-2008B ---------- (unannounced release) February 15, 2008. LADR. Give a better error message (and catch the error sooner) if variables are used as atomic formulae, e.g., xor(x,y) <-> ((x & -y) | (-x & y)) February 14, 2008. Clausefilter. Accept new command-line option "ignore_nonevaluable" which says to skip evaluations when the formula contains symbols not in the interpretation. Tptp_to_ladr. Change precedence of ~ (TPTP spec changed). February 8, 2008. Prover9. Fix default_parts bug (clearing does nothing) introduced on Jan 29. -------- LADR Feb-2008 ---------- (unannounced release) February 4, 2008. Prover9. New action "assert(some_clause)" causes the clause to be generated and processed when the action is triggered, e.g., list(actions). given=100 -> assert(x*y=y*x). end_of_list. This does not work for non-clausal formulas. February 4, 2008. Prover9. Minor bug: failed to renumber variables after one kind of simplification (removing literal s!=t when s & t unify and do not instantiate any other literal). This causes a problem only when expanding a proof internally (e.g., newauto). Fixed. January 29, 2008. Directproof. Fix bug that caused it to fail if the unit conflict involves a flip. January 29, 2008. Prover9/LADR. Change options processing a bit so that options in the GUI make more sense. Introduce a new kind of options dependency that resets options to defaults. Several meta-options (lightest_first, breadth_first, random_given, auto2, raw) did nothing when cleared. This is okay for Prover9, but not for the GUI, which displays current values of options. -------- LADR Jan-2008 ---------- (unannounced release) January 25, 2008. Prover9. Two new flags for paramodulation: para_into_vars (paramodulate into variables) and para_from_small (paramodulate from smaller sides of oriented equalities). These are not needed for finding refutations, but they can be useful for *deriving* interesting things (fishing expeditions) and for transforming a bidirectional proof into a forward proof. Use with caution. January 23, 2008. Prooftrans. Some answer attributes were not being inherited in translated proofs. Fixed by declaring answer attributes to be inheritable. -------- LADR Dec-2007 ---------- December 12, 2007. Prover9. New flag "raw", which is a sort of anti-auto mode. This removes restrictions on inference rules and other limits on the search, allowing users to start from scratch and roll their own strategies. To see exactly what it does, set(raw) and look at the output. December 9, 2007. Mace4. New stringparm "iterate" takes values in [all, evens, odds, primes, nonprimes]. "all" is default. E.g., assign(iterate, odds). This supersedes set(iterate_primes) and set(iterate_nonprimes), and those two flags become meta-options which just assign to "iterate". December 5, 2007. New program isofilter2, which uses a different algorithm: canonicalize the interps so that isomorphic iff identical. It also accepts a file of discriminators to cut down the number of permutations. Results are mixed. Isofilter (the original version). Add new option specifying a file of discriminator clauses. Results are good. Dprofile: new program to see how discriminators behave. December 4, 2007. Prover9. Allow restrict_denials to be used for non-Horn sets. It usually doesn't make much sense for non-Horn sets (because negative clauses usually don't correspond to the conclusion), so let the user beware. December 3, 2007. Prooftrans. Get rid of multiple "Comments from original proof" messages. These occurred when running prooftrans on the output of a previous prooftrans job. Prover9. New parm: assign(multiple_interps, false_in_some). Default is false_in_all, which is the previous behavior. If there are multiple interpretations, this parm determines how a clause is labeled "false": false in some of the interps or false in all of the interps. Mace4. Bug calculating the maximum domain element in the input: it was always >=0; it should be -1 when there are none. This caused some extra isomorphic models to be produced in some cases. November 19, 2007. Prover9. New parameter backsub_check (default 500) tells Prover9, when it reaches the specified number of given clauses, to disable back subsumption if the percentage of kept clauses that have been back subsumed is less than 5%. Previously, this test was wired in (at 500 given clauses), so behavior will be the same with the default value. ladr_to_tptp. Four changes: (1) a <-> b translated correctly. (2) Attributes on all formulas simply deleted. (3) TPTP symbols that are different from the corresponding LADR symbols (e..g, <=) can now be used as ordinary function or predicate symbols in the LADR formulas; they are given new names. (4) Clausal (CNF) goals are made into non-clausal (FOF) goals. Isofilter. New command-line option "output" tells which operations to output. Syntax is the same as the "check" option. Although "check" and "output" will frequently be used together with the same operations, e.g., isofilter check '*' output '*', they are independent. Also, change ignore_constants option so that constants are neither checked nor output. October 22, 2007. Mace4. Undo the Oct 7 change to domain_size dependency, and change how domain sizes are specified: start_size (new parm, default 2) end_size (new parm, default -1 (infinity)) domain_size (meta: copy value to start_size and end_size) We'll keep iterate_up_to for a while, and make it a synonym for end_size. That way, input (before Oct-2007) should behave well. Note that that default end_size (iterate_up_to) is -1, not 10. Mace4. New flag iterate_nonprimes (analogous to iterate_primes). Mace4. There was an (arbitrary, I think) limit of 200 on the domain size. I have removed this. October 18, 2007. Prover9. While working on adding the notion of dependent option to the GUI, I decided that the dependent options in Prover9 should be simplified. From now on, options that update other options will be called meta options, and the only thing they do will be to update other options (there might be a few exceptions). The changes: 1. New flag auto_setup, whose role is to change eq_defs and predicate_elim (previously controlled by auto_inference. auto_setup is dependent on auto. 2. The back_unit_deletion flag has been removed. Now, there is just 'unit_deletion', and back unit deletion is always done when unit_deletion is set. 3. Back demodulation is set by default. 4. The flag positive_inference has been removed. (Positive inference happens by default, because literal_selection is max_negative by default. LADR. New flag ignore_option_dependences. If set, dependencies on options will be ignore during input. Dependencies will be enabled after input, because options can change after input (e.g., auto_inference, actions). This flag will be used by the GUI, because the GUI will be handling dependencies. -------- LADR Oct-2007 ---------- October 7, 2007. Mace4. Remove option dependency: domain_size=n -> iterate_up_to=0. Now, if you want to search only one domain size, you'll have to assign to both domain_size and iterate_up_to (to a value <= domain_size). Prover9: Change literal_selection option value: maximal_negative -> max_negative. October 6, 2007. Prooftrans and Interpformat: change exit codes. 0: at least one proof/model processed. 2: no proof/model processed. 1: error. October 4, 2007. Prover9 and Mace4: new flag assign(report_stderr, ) sends "some" statistics to stderr every n seconds and at the end. This is for the GUI "Info" button. October 3, 2007. Interpformat: There is now a default format: "standard2". (Previously a format had to be given.) Mace4: Change flag names: print_models to print_models_tabular, print_models_standard to print_models. Mace4: Do not print === MODEL === for print_models_tabular, because interpformat cannot handle it. September 25, 2007. Mace4: Change max_seconds and max_seconds_per so that -1 means infinity. (For consistency with Prover9 options.) Update Mace4 HTML manual with these changes. September 24, 2007. LADR: Added primitive conditional inclusion for input. The only conditions so far are "Prover9" and "Mace4". if(Prover9). assign(max_given, 100). end_if. if(Mace4). assign(domain_size, 5). end_if. The conditions can be nested (though I don't see how that would be useful so far). September 18, 2007. LADR: Change error messages for syntax errors and some other input errors such as unrecognized options. Mark the beginning of error as well as the end. This is so that errors can be highlighted in the GUI. Also fix 2 parsing bugs: 'f(.' and '[.' were crashing. -------- LADR Aug-2007 ---------- August 3, 2007. Interpformat, Mace4. Change the name of the interpretation format "portable" to "standard". This is the format that LADR programs use. This change was made so we could use "portable" for the following. Interpformat. Introduce a new output format "portable" to be used for input to Python, GAP (and possibly Java and Javascript). The new portable format is similar in structure to "standard", but it is made up of natural numbers, double-quoted strings, and lists. See the manual page "Interpformat". July 18, 2007. Prover9. Handling of redundant hints has been improved w.r.t. labels and bsub_hint_wt attributes. Bsub_hint_wt attributes on redundant (equivalent) hints are copied to the original (retained) hint. If a hints ends up with more than one bsub_hint_wt attribute, the first is used. When searching for matching hints, if an equivalent hint is available, it is used; otherwise the first subsumee is used. June 30, 2007. LADR. New language feature: allow the user to redefine several built-in operations such as equality, disjunction, attribute. For example, redeclare(equality, "=="). redeclare(negated_equality, "=/="). redeclare(disjunction, "&&"). The redeclarable operations are: true, false, conjunction, disjunction, negation, implication, backward_implication, equivalence, universal_quantification, existential_quantification, attribute, equality, negated_equality. Note: When a redeclaration occurs, the parsing/printing properties (infix, precedence, etc.) are copied from the old symbol to the new one. June 18, 2007. Prover9. New flag limit_hint_matchers (default clear). Setting the flag causes max_{weight,literals,vars,depth} to be applied to clauses that match hints. -------- LADR June-2007 ---------- June 14, 2007. LADR: Change printing of variables (standard style) to x,y,z,u,w,v5,v6,v7,... . (That is, don't use "v".) This avoids confusing terms like (v v v), because "v" is commonly used as the lattice join operation. June 13, 2007. Prooftrans: fix the "proliferating ops problem", add option striplabels, and append labels to hints only if asked to do so. See the updated HTML manual. June 12, 2007. Prover9: Disabled rule pos_binary_resolution. The parameter literal_selection (maximal_negative) will be used to do positive binary resolution (and positive paramodulation). The reason: before the change, we could have pos_binary_resolution without positive paramodulation, which blocks proofs. Change breadth_first "Starting on level" messages so they don't appear if some other part has been set. June 4, 2007. Newauto, newsax, autosketches (non-documented experimental programs): updates for expand_relational_defs broke these programs. Fixed by including call to embed_formulas_in_topforms. -------- LADR May-2007 ---------- May 21-23, 2007. Prover9: Added flag set(expand_relational_defs) (default clear), which causes Prover9 to look for relational definitions in the assumptions, and use them to expand all occurrences of the defined relation in the input, before the start of the search. See the HTML manual, page "More Prep". May 6-11, 2007. Prover9: *MAJOR* changes to binary resolution and paramodulation for non-unit clauses. The goal is improved performance for non-unit, especially non-Horn, problems. There are several changes in flags and parameters. See the Prover9 HTML manual page "Inference Rules". An unfortunate consequence of these changes is that paramodulation for (unit) equational problems can behave differently from previous versions, because paramodulants can be derived in a different order, causing given clauses to be selected in a different order. May 9, 2007. Change default predicate symbol precedence so that equality is the smallest instead of the largest. In problems with both equality and non-equality predicates, this change usually causes resolution to occur before paramodulation. May 8, 2007. Separate the lex([...]) command into two commands: function_order([...]) and predicate_order([...]). (The old lex([...]) command will continue to be accepted, and it is now a synonym for function_order([...]).) May 8, 2007. Bob Veroff reminded me that the parsing code can accept ambiguous terms, for example, if ~ is prefix and ' is postfix with the same precedence, the term (~ x ') is accepted. (Prolog systems (all Prologs??) have the same problem.) Fix: do not allow declarations of two different symbols with different parse types and the same precedence. This applies also to built-in declarations, so the error may be confusing. Also change built-in precedence of op(400, prefix, -) to op(350, prefix, -), because people tend to use 400 for infix ops. April 19, 2007. Prover9, minor bug: If predicates were eliminated in preprocessing, they were still listed in the symbol precedence for the search (at the top of the order). Fixed. April 18-19, 2007. Ken Kunen reminded me that Prover9 doesn't paramodulate from variables, making it incomplete when there are (positive) equality literals t=x in which variable x does not occur in term t. A new flag: para_from_vars (default set). Note that this is almost always irrelevant for purely equational (unit) problems. April 16, 2007. prooftrans: bug reading proofs containing justifications with more than 256 rewrites. There is a hard limit of 256 on the arity of symbols. Fix: change format of rewrite justifications from "rewrite(step1,step2, ...)" to "rewrite([step1,step2, ...])". After the fix, you can use the new prooftrans prooftrans only with new prover9 outputs, and old prooftrans only with old prover9 outputs. Related: check for arity-too-big when building terms. April 16, 2007. LADR: yet another parsing bug. Terms like "h(v) * (x + y)" (assuming v is infix (the default)) are parsed incorrectly (parser thinks v is binary and * is unary. Fixed. -------- LADR April-2007 ---------- April 12, 2007. Mace4: fixed 2 bugs in signal handling. Apps.src: updated clausefilter, clausetester, interpfilter so that they work for non-clausal formulas as well as clauses. April 9, 2007. Prooftrans bug: fatal error expanding new_constant inference with secondary justification. Fixed. April 6, 2007. Prover9, added parm var_penalty, which can be used to penalize clauses by the number of (distinct) variables. At the end of the weighing process, the weight is increased by n * number_of_variables. N can be negative, which lowers the weight. Update manual. April 5, 2007. Prover9, Bugs: max_depth, max_vars, max_literals can delete clauses that match hints. Also, sos_keep can delete clauses that match hints. These were fixed by reorganizing the cl_process_delete code. April 3, 2007. Isofilter: very slow memory leak. Fixed (zap_interp failed to free comments). April 2, 2007. Prover9, new flags and parms for selecting the given clause: parm random_part: picks random clauses from sos; flag random_given: random_part=1, other parts (except hints) 0; parm random_seed: (-1 means use "random seed"); flag default_parts: clearing sets ALL parts to 0. -------- LADR March-2007 ---------- March 16, 2007. Two new utilities to support the TPTP language: ladr_to_tptp: Prover9 input file -> TPTP problem file. tptp_to_ladr: TPTP problem file -> Prover9/Mace4 formulas. These are still in development and do not yet support all of the TPTP features. Eventually, Prover9 and Mace4 will accept the TPTP language directly. March 15, 2007. Prover9: insert several fflush() so that output is better behaved when stderr is sent to the same file as stdout. March 12, 2007. Prover9: new parms max_depth and depth_penalty. Prover9: new command-line option -p causes all output to be fully parenthesized. This is mostly to check and debug parsing declarations (op commands). March 7, 2007. LADR: Bug in clausify_prepare causes result of Skolemization to be more complex than necessary. Fixed. Prover9: max_megs limit caused fatal error if it occurred in CNF translation (before search). Fixed. LADR: Several substantial changes to basic parsing of terms: 1. Previously, some legal terms were rejected. For example, if you have a binary infix op, say *, and you use it as a unary op, and write it in standard form, say p(*(x)), it would be rejected. (Input cannot have a symbol with multiple arities, but if it is declared, but not used, that does not count.) Several cases like this have been fixed, but there may still be related problems. 2. Parsing/printing of quantified formulas has been changed. Previously, "p | all x q | r" would be rejected. Now it is accepted with association "p | (all x q) | r". Also, fewer parentheses are output for quantified formulas. Quantifiers have lower precedence (bind tighter) than other logic operations, so "all x p -> q" means "(all x p) -> q". When in doubt, include parentheses and look at the output. March 5, 2007. Bug in manual (Clauses and Formulas section): the "cons" operator is shown as "|" (as in Prolog), but it is really ":". Fixed. February 27, 2007. Prooftrans (from Kinyon): bug with options "expand renumber". The transformed proof can have strage IDs, e.g., 27A. Fixed. February 12, 2007. Prover9 bug: KBO and fold_eq, in a problem with exactly one unary operation, that happens to be an equational definition. Fold_eq can arrange the precedence in a way that violates the KBO rules, causing non-termination. Fix: do not change precedence of special unary op (such symbol is still folded). January 30, 2007 Updated the Mace4 pages of the (HTML) Prover9 Manual. Previously the Mace4 pages were cursory, with reference to the out-of-date (2003) tech memo. Now the HTML version is reasonably complete. January 26, 2007 Hints are now back demodulated (as in Otter). January 22-25, 2007 Prover9: Major overhaul of the given clause selection code. A new source file prover9.src/picker.c was introduced; the files ladr/sos.c and prover9.src/control_sos.c are now gone. BEWARE: YOU WILL NOTICE A DIFFERENCE. Even with the same input, given clauses will probably be selected in a different order from previous versions, resulting in different searches. There is no way to opt for the old method. The main difference has to do with the selection ratio. Previously, if a clause of a particular type was not available, another type could be substituted. Now, if none is available, that type is skipped. Because of this change, the default values of true_part and false_part have been changed from 2 to 4. Also, there is a new parameter "weight_part", which is used for basic selection-by-weight. (Previously, true_part and false_part were used in a round-about way for simple selection-by-eight.) There is a new (meta-)flag "lightest_first", which sets weight_part=1 and all other parts to 0 (except hints_part). Also, "pick_given_ratio" now sets weight_part=n, age_part=1, true_part=false_part=0. Selection by Hints: Previously clauses that matched hints were given preference simply by adjusting their weights. Now, clauses that match hints have their own component of the selection ratio: "hints_part", with default value infinity, and those clauses now get ordinary weights. In summary, the components of the selection ratio are (with defaults): age_part 1 true_part 4 false_part 4 weight_part 0 hints_part INT_MAX Other "_part"s may be added in the future. The manual has been updated to reflect all of these changes. January 24, 2007 Prover9 bug: answer attributes not instantiated for the "xx" (resolve with x=x) simplification rule. The first version of this rule simply removed instances of x!=x, so answer attributes didn't have to be instantiated. However, the rule was changed so that it removes s!=t, when s and t are unifiable without instantiating any other literals in the clause. When I made the change, I overlooked the fact that it can instantiate answer attributes. Fixed. --------- LADR-Jan-2007 ---------- January 4, 2007 December 11, 2006 Isofilter: A new option to specify exactly the symbols to be used for the isomorphism checks. (Sort of a generalization of "ignore_constants".) It is given on the command line, e.g., the command "isofilter check '+ *'" says to consider only those two operations (any other operations are still printed in the results). If there is more than one operation, or if some of the operations might be interpreted by the shell, include single quotes as in the example. This was prompted by Joao Araujo. December 8, 2006 Improve warning messages for symbols missing from lex command and extra symbols in lex command. December 5, 2006 Prover9 (bug reported by Sebastian Sonntag): Predicate elimination changes the basic clause properties so auto_denials gets the wrong count of number of negative clauses. Fix: move basic_clause_properties() after predicate elimination. December 3, 2006 Prooftrans: change heading on "prooftrans ivy" output. --------- LADR-November-2006 ---------- November 22, 2006 Remove index-test directory (because it's 4MB). November 21, 2006 Prover9 bug (Kinyon): Multiple proofs of the same denial when reuse_denials was clear. This was caused by negative_clause call on compressed disabled clauses. Fix: put yet another flag (negative compressed) in Topform. --------- LADR-October-2006 ---------- October 24, 2006. ladr: read_term_list(), in ladr/ioutil.c, is very slow when reading big lists because of a silly inefficiency. Fixed. Include index-test. This is a test program for a project of Michael Kohlhase. See index-test/jobs/README. October 16, 2006. ladr: If the % character that starts an ordinary comment is the last character on a line, then the following line is ignored. (I got the operator precedence wrong in an expression a = b == c). Fixed. September 14, 2006. Prover9: minor bug fixed: do not check max_literals or max_vars for restricted denials. --------- LADR-September-2006 ---------- September 13, 2006. Prover9: Change the way restrict_denials is implemented. Previously, restricted denials would get weight=0 and go into sos, so they would not be deleted by max_weight and they would be selected right away as given clauses. That caused an annoyance: adding or taking away a denial could changed the search, because sequence of given clauses would change. The fix: restricted denials now go directly into usable (e.g., when back demodulated), bypassing sos. Also, the ordinary weighting function is applied to them, but they are NOT deleted if heavier than max_weight. August 31, 2006. Prover9: Rolf Schwitter reminded me that answer attributes do not work correctly for non-clausal formulas. Solution: (1) Do not allow proper subformulas of non-clausal formulas to have any attributes. (2) Do not allow answer attributes on non-clausal formulas to have variables. Update the manual. Answer attributes with variables do make sense for formulas and subformulas in some cases, and we might accept them some day. One of the problems is that the attribute operator # is not good enough for arbitrary formulas, because we need to know whether it acts as conjunction or as disjunction. August 29, 2006. ladr: Change printing of XML proofs (prooftrans), adding a "type" attribute: . The types (so far) are goal, assumption, deny, clausify. Also change proof3.dtd and proof3.xsl so that the different types are displayed differently. August 28, 2006. Prover9: Give goal formulas the attribute "label(goal)". These formulas appear in proofs, and the label is to emphasize that these formulas have not been negated and will not be used for inferences. August 25, 2006. Prover9: Changed warning message for shared constants in denials so that it simply prints the shared constants instead of all of the pairs of clauses that share constants. Prover9: I think that sos_limit is too aggressive in deleting clauses, so I'm changing the default from 10,000 to 20,000. Also, the point at which prover9 starts being more selective about keeping clauses was changed from .5 to .9 (fullness of sos). As always, experts may wish to clear(auto_limits). August 23, 2006. Prover9: Fix variable declaration in prover9.src/prover9.c. Mace4: Fix formatting in mace4.src/print.c. Updated SOBB-II to use LADR-August-2006A. --------- LADR-August-2006A ---------- August 11, 2006. Mace4: Change the default value of "iterate_up_to" from 0 to 10, and introduce an option dependency: if "domain_size" is changed, change "iterate_up_to" to 0. If iterate_up_to is changed, it all behaves as before. These changes were made so that if no options are given (in the input file or on the command line), then it will start at domain_size=2, and iterate up to 10. Previously, it would try 2 and then terminate. August 8, 2006. Prover9, semantic guidance. If there is more than one interpretation, a clause is marked "false" if it is false in ALL (previously SOME) interpretations. The reason: In experiments, I found that I wanted fewer false clauses. August 1, 2006. Prover9: print_gen -> print_kept. Also improve print_gen messages. Prover9/LADR: change CAC redundancy so that (xy)z=x(yz) and x(yz)=y(xz) are both kept. Implement back CAC simplification. July 31, 2006. Bug: did not accept negative integer attributes. Fixed. July 30--31, 2006. Reorganize include structure in ladr/ and prover9.src/. July 25, 2006. Mace4: Prolog_style_variables specified on the command line (-V1) does not work. (I'm not sure when it broke.) Fix by simply not accepting -V1. June 27 -- July ??, 2006 (just after ADAM-2006) MAJOR CHANGES, in 3 groups. Not everything is detailed here, so see the HTML manual. LADR: Change parsing/printing so that less space is required around prefix and postfix ops. The important difference is that prefix "-" and postfix "'" need not have space, e.g., "---p'''" will be parsed as unary operations. The downside: If you wish to use a new multicharacter "special symbol", you must give an "op" command that has quotes around the symbol, e.g., op(400, infix, "--->"). The "clear" parse type has been renamed "ordinary", and it can be given in an op command without the precedence argument, e.g., op(ordinary, "###"). LADR: "Formulas" can now have free variables, so Clauses are now formulas. Prover9 (also Mace4) decides which formulas are not clauses and clausifies them. clauses(...) is no longer accepted --- everything goes into formulas(...). Also, non-clausal and "goal" formulas appear in proofs. Prover9: The flags restrict_denials, reuse_denials, and auto_denials have changed. For Horn sets, when reuse_denials is clear, and when searching for multiple proofs: when a proof is found, the first negative clause in the proof, and all of its descendants, are disabled. This allows multiple proofs, without redundant proofs, when restrict_denials is clear. Less major changes. Prover9: new flag "bell", default set. LADR: Change start of block comment from %START to %BEGIN. Prover9: flag fof_reduction is gone. There is a new program fof-prover9. --------- LADR-June-2006C ---------- June 17, 2006 Prover9: change input list name terms(kb_weights) to terms(kbo_weights). Prover9: parameters true_part and false_part are now changable by actions. Also fix some of the other changable options. LADR: parsing routines accept comment-blocks, delimited by %START and END%. (Ok if there's no END%.) See the manual. Jun 16, 2006 Prover9: disable internal flag no_fapl. This is rarely used and I think it might cause some problems. Substantial changes to Prover9: Reorganized auto flags and introduced a few secondary auto flags: auto_denials and auto_process. (See the manual.) Auto_denials (default set): if a Horn set has more than one negative clause, max_proofs is set to the the number of negative clauses (which in turn sets restrict_denials). This is questionable, because restrict_denials can substantially alter the search. This will likely change after some more thought. --------- LADR-June-2006B---------- Jun 9, 2006 Prover9: add selection code (I,A,T,F), meaning (Input, Age, True, False) to printing of given clauses. Jun 5, 2006. LADR: Reorganized and changed names of some of the resolution and paramodulation options: ordered_inference and ordered_instance are replaced with separate options for resolution and paramodulation. --------- LADR-June-2006A---------- Jun 2, 2006. LADR bug from Veroff. Fatal error if more than 2^15 different function symbols. (It happens with prooftrans, because justifications are parsed as ordinary terms.) Overflow check was broken. Changed term structure to allow 2^31 different function symbols and fixed overflow check. May 30, 2006. Changed default eval_limit from 1000 to 1024. May 29, 2006. Two weighting bugs introduced in May 2 change: minus and depth. Fixed. --------- LADR-May-2006B---------- May 25, 2006. Change Demod_limit messages if there are a lot of them. May 25, 2006. Bugs found by Veroff. 1. "Fatal error: xx_simp2, bad literal." xproofs did not handle x!=c. 2. "Fatal error: expand step, result is not identical" Unit deletion failed to mark clause vars "nonnormal". 3. search.c: "if (Opt->dont_flip_input)" forgot flag(). This gets rid of "WARNING: orient_equalities, backward eq2:x = 1" and might change behavior, because lits now get flipped. 4. max_megs_exit caused longjmp fatal exit. Fixed. --------- LADR-May-2006A---------- May 24, 2006. May 20, 2006. Prover9: When new_constants introduced in the presence of interpretations, update interps. May 17, 2006. Prover9: new parms max_minutes, max_hours, max_days; these just change max_seconds. May 15, 2006. New option dependency: assign(max_proofs, n) -> set(restrict_denials). This is a highly questionable change, because (1) you get a proof with one goal, (2) you add a goal and set max_proofs=2, (3) now you might get NO PROOFS, because restrict_denials is now in effect. May 2, 2006. LADR: change weighting, making rules more verbose, with cleaner semantics. For example, Old rule: f(a,x) = x + 2. New rule: weight(f(a,x)) = weight(x) + 2. Apr 24, 2006. Prover9: fiddle with options fold/unfold. Apr 21, 2006. Prover9: Restrict clauses(goals) so that all must be positive units. Restrict formulas(goals) to at most one formula. Apr 17, 2006. Prover9: Make set(auto) the default (undo with clear(auto).) Remove command-line option -a (auto). Remove lrs_seconds. (Keep lrs_ticks.) Change limit parms so that -1 represents infinity. --------- LADR-Apr-2006A---------- Apr 17, 2006. LADR parsing bug (Veroff). If user has an op command for a symbol that has a built-in op declaration, the built-in should be disabled. Fixed. Apr 11, 2006. Prover9: Fix a few bugs that come up with clear(process_initial_sos). (1) $F in input or produced by predicate elimination; (2) p & - p didn't trigger any inference rules in auto_inference(). (There are so few cases in which clear(process_initial_sos) should be used that I would like to remove it. This would simplify things and allow more peace of mind.) Apr 5--10, 2006. Prooftrans: add ability to produce Ivy-style proof objects (which can be checked with Ivy). This took much longer than expected, but I think it is much more robust than Otter's build_proof_object2. Mar 29, 2006. Prover9: rename flag casc_2005 to auto2. Move set(fof_reduction) and assign(new_constants, 1) from auto to auto2. With these changes, auto2 should behave about the same as casc_2005 before these changes. (However, so many changes have been made to Prover9 since the CASC-2005 contest that even with auto2, the current version will probably behave differently on the 2005 contest problems.) Mar 23, 2006. Prover9: change default demod_size_limit from 500 to 1000. Mace4: change default to set(print_models_portable). Mar 20, 2006. Rewrite prooftrans and interpformat. Change Interp data structure to include comment term, and make the portable format like this: interpretation( size, list-of-comments, list-of-ops ). Mar 17, 2006. Reformat output files for Prover9 and Mace4. This separates the output files into well-defined sections (input, proof, model, statistics, etc.). Mar 13, 2006. apps.src/modelformat. Added xml option to output interpretations in xml. Added -f option. Mar 6, 2006. apps.src/prooftrans. Added xml option to output proofs in xml. Mar 3, 2007. Reorganize command-line options. Now accepted: -h help -a auto (like set(auto) as first line of input) -x casc_2005 (special-purpose auto) -t max_seconds (overrides ordinary input) -f files to read instead of stdin (clauses, etc.) More command-line options may be added, but the primary location for options will remain in the ordinary input. Feb 28, 2006. Bug in prooftrans (Veroff) reading justification with hyper xx. Fixed. --------- LADR-Feb-2006A---------- Feb 7, 2006. Changed the way dates and versions are included in source files. Changed names of parms (OK MK): weight1_part -> true_part, weight2_part -> false_part. (These, together with age_part, specify the given clause selection ratio, oldest : false-in-some-interp : true-in-interps.) Jan 23, 2006. Incompleteness bug from Ilya Mezhirov: input clause f(x) != f(a). does not give a refutation. Fixed simplify_literals2() in ladr/subsume.c so that it removes literals like that (if the instantiated vars do not occur elsewhere in the clause). Jan 12, 2006 Bug (fatal_error) in fof_reduction (reported by Ilya Mezhirov). Changed balanced_binary so that non-AND/OR is ok. Jan 6, 2006 Get rid of clauses(denials). Instead, introduce the flag set(restrict_denials). This flag says to move negative clauses from sos to the internal denials list. From then on, the behavior is the same as before. This change was made so that "goal" clauses can be "denials". The downside: it's an all-or-nothing option; before you could select which clauses go into "denials". Remove the dollar from Skolem constants and functions. I did this because we're using them more often (goals list), and the dollars are annoying to look at. Jan 4, 2006 Prover9 and Mace4: Changed "goals" list yet again. Goals can be either clauses or formulas. If clauses, they are made into formulas by universal closure. Each is then negated and clausified, and the clauses are appended to sos. For Prover9, this means that if ANY goal is proved, a proof is given. For Mace4, models must falsify ALL goals. Note that if there are multiple nonatomic goals, the semantics are nonintuitive and might not what you expect, because a proof can involve parts of different goals. If this is not clear, you can easily do without "goals" by putting an appropriate formula into formulas(sos). --------- LADR-Dec-2005A---------- Dec 16, 2005 Mace4: changed "verbose" flag so that it prints the clauses (once) and the cell selection order (for each domain size) before the search starts. Dec 13-14, 2005. Reorganize ladr/symbols.c (it's still a hodgepodge), especially the symbol precedence routines. Precedence for Prover9 should be the same as before, but it might be different for Mace4. In Mace4, the cell ordering can be different, giving different searches (compared to the old Mace4), but (so far), differences have been minor. Accept new input: skolem([a,b,f]), which declares symbols to be Skolem constants or functions, so that they behave like real Skolem constants/function w.r.t. options, etc.. The form is just like the lex command. This is in read_from_file, so it applies to both Prover9 and Mace4. Mace4: New flag set(skolems_last) does two things. (1) it changes the order in which cells are filled in (Skolems last), and (2) prevents multiple models in which only the Skolem functions change. I was hoping that this would reduce the number of isomorphic models (ignoring Skolems), but the experimental results are not good: It can reduce the number of isomorphic models, but it seems to take much longer to find models. Dec 8-19, 2005. Semantic guidance. Accept list of interpretations and use them to help select the given clause. Changed parms (weight_part, weight_neg_part) to (weight1_part,weight2_part). Weight1_part applies to clauses TRUE in all interps, weight2_part applies to clauses FALSE in at least one interp. If there are no interps, the default interp is "all atoms true". This is consistent with the old meanings of the parms (weight_part, weight_neg_part), because, with the default interp, nonnegative clauses are TRUE, and neg clauses are FALSE. New parm: eval_limit (default 1000). If the clause to be evaluated has V variables, and the largest interp has N variables, and if N^V > eval_limit, the evaluation is skipped, and the clause is given the value TRUE. December 1, 2005. Changed isofilter so that symbols starting with $ are ignored. These are assumed to be Skolem constants and functions. A new command-line options "include_skolems" causes the old behavior. November 22, 2005. Reorganized ladr/glist.c. Changed parameters for clause printing routines (see ladr/ioutil.h). Forked search: child sends symbol table updates to parent. This allows child to introduce new symbols. November 17-18, 2005. Prover9: removed options x_proofs, r_proofs, xr_proofs, xr_proofs, standard_proofs. Now, the only kind of proof produced is standard_proof. Various proof transformations will be done by separate programs, e.g., apps.src/prooftrans.c. November 11, 2005. Changed format of justifications so they can be parsed as terms. In demodulation justifications, included an integer giving the position of the rewritten term. This is so that proofs can be easily reconstructed without knowing the demodulation parameters (term ordering, etc). This is a substantial change. Old: [para (37 (a 1) 216 (a 1 1)) demod (136 (R) 272)] New: [para(37(a,1),216(a,1,1)),demod(136(4,R),272(2))]. The term 136(4,R) means demodulation from the right (R) side of demodulator 136 at position 4 (4th nonvariable subterm, left-to-right, bottom-up). Without the R means the demodulator is used in the ordinary way (from the left). Removed parm demod_limit. Introduced parm demod_step_limit (max steps per clause) Introduced parm demod_size_limit (maximum size of rewritten term) November 7, 2005. Minor Mace4 bug: with set(trace), terms are printed with variables instead of integers (e.g., f(x,y)=z instead of f(0,1)=2) during trace. Fixed. --------- LADR-Oct-2005A---------- October 20--31, 2005. Several small changes, mostly cosmetic. October 19, 2005. Removed Prover9 CASC heuristics: limit on number of heavy clauses of the same weight, and demod_limit size increase. These were ad hoc and should be thought out before re-introduction. October 10-11, 2005. (While working on SOBB-II.) Renamed "goals" list to "denials". Introduced new "goals_positive" lists (clauses and formulas), to which the following happens. Clauses: conjoin, universal closure, negate, clausify. Formulas: conjoin, negate, clausify. The resulting clauses are appended to sos. SOBB-II uses this version. --------- LADR-Sep-2005A---------- September 30, 2005. Change auto_kbo so that if there is a lex command, the special unary processing is done only if the unary op is greatest. September 27, 2005 A new app (in apps.src) to format Mace4 models in various ways. It reads a Mace4 output and formats all of the "portable" models as one of the following: portable, portable2, cooked, raw, tabular, tex. This can replace the script get_interps. September 23, 2005 Mace4 max_megs bug. Cannot be increased beyond the default of 200 megs. Fixed by disabling the check in ladr/memory.c (mace4 handles max_megs its own way, because it allocates substantial memory without going through ladr/memory.c). September 22, 2005 When compiling on AMD64 machines, there were a few compiler warnings about pointers and integers being different sizes. All but one were inconsequential and trivial to fix. The nontrivial on was in mace4.src/propagate.c, in which something tricky was done (handling integers as pointers). The code was fixed by introducing a union to force alignment (see mace4.src/ground.h), but the warning still occurs. September 7, 2005 Check that variables in answer literals also occur in ordinary literals. Fatal error if not. September 1, 2005 Changed auto_inference for paramodulation with Horn sets. If the user has set para_units_only or para_lit_limit, the para_lit_limit is no longer changed automatically. Updated utilities/proofs_to_hints so that duplicate clauses are omitted. (Previously, clauses with duplicate IDs were omitted.) --------- LADR-Aug-2005B---------- August 25, 2005. Updated actions: (1) accept only a subset of flags/parms; (2) if weight function or given clause selection is changed, reweigh sos clauses and reconstruct the sos index. August 24, 2005 Print "level" messages for breadth_first. Accept actions triggered by level, e.g., level=3 -> set(print_kept). When printing proof, print level as well as length. August 19-21, 2005 Reorganized cac_redundancy code. Reorganized literal simplification (tautology, x=x). Reorganized examples on Prover9 Website. --------- LADR-Aug-2005A---------- August 18, 2005 Changed fold_eq and unfold_eq so that they are ignored if there is a lex command. August 16, 2005. Bug from Branden Fitelson (on PowerBook). Forking_search() (fof_reduction) sending data from child to parent. Fixed fd_read_to_ibuf() ladr/ibuffer.c. August 8, 2005. The new flag lex_order_vars introduced (exposed?) a bug in AC redundancy checking that caused associativity (when demodulated by commutativity) to be deleted. Fixed. Added parm max_vars. (Same as max_distinct_vars in otter.) Bug in term weighting if variables on right side of equation. Fixed. August 3, 2005. Changed auto (auto1_inference) so that for Horn sets with equality, para_lit_limit is set to the maximum number of literals in an input clause. (Previously it was always set to 2.) July 29, 2005 fold_eq flag. When more than one symbol gets folded, make sure that the relative precedence of those symbols stays the same. (Behavior of fold_eq with KBO (unary symbol of weight 0) still needs to be thought out.) July 29, 2005 Minor bug related to goals list. You can get multiple proofs of a goal when clear(reuse_goals) (the default). Fixed. --------- LADR-July-2005D---------- July 18, 2005 Sutcliffe found that prolog_style_variables is broken in Mace4. Fixed read_from_file(). This should not affect Prover9. July 13, 2005 New flag lex_order_vars (default clear). Similar to Otter's. New weighting feature: term depth. These allow proof of Knuth ternary problem. --------- LADR-July-2005C ---------- July 7, 2005 Prover9 released at the Milehigh talk. Michael Kinyon reports that it doesn't compile with GCC 2.96. Fixed some variable declarations in apps.src. Also made a few changes to the makefiles. July 1, 2005 Geoff points out that it can't prove a really easy theorem. Fixed a completeness problem with predicate elimination and equality. LADR-July-2005B sent to Geoff for CASC. --------- LADR-July-2005 ---------- June 30, 2005 Sent to Geoff Sutcliffe for CASC: ================================================ FILE: models/symbolic_solvers/Prover9/Makefile ================================================ help: @echo See README.make all: cd ladr && $(MAKE) lib cd mace4.src && $(MAKE) all cd provers.src && $(MAKE) all cd apps.src && $(MAKE) all /bin/cp -p utilities/* bin @echo "" @echo "**** Now try 'make test1'. ****" @echo "" ladr lib: cd ladr && $(MAKE) lib test1: bin/prover9 -f prover9.examples/x2.in | bin/prooftrans parents_only @echo "" @echo "**** If you see a proof, prover9 is probably okay. ****" @echo "**** Next try 'make test2'. ****" @echo "" test2: bin/mace4 -v0 -f mace4.examples/group2.in | bin/interpformat tabular @echo "" @echo "**** If you see a group table, mace4 is probably okay. ****" @echo "**** Next try 'make test3'. ****" @echo "" test3: bin/mace4 -n3 -m -1 < apps.examples/qg.in | bin/interpformat | bin/isofilter @echo "" @echo "*** If you see 5 interpretations, the apps are probably okay. ***" @echo "" @echo "*** All of the programs are in ./bin, and they can be copied anywhere you like. ***" @echo "" clean: cd ladr && $(MAKE) realclean cd apps.src && $(MAKE) realclean cd mace4.src && $(MAKE) realclean cd provers.src && $(MAKE) realclean realclean: $(MAKE) clean /bin/rm -f bin/* # The following cleans up, then makes a .tar.gz file of the current # directory, leaving it in the parent directory. (Gnu make only.) DIR = $(shell basename $(PWD)) dist: $(MAKE) realclean cd .. && tar cvf $(DIR).tar $(DIR) gzip -f ../$(DIR).tar ls -l ../$(DIR).tar.gz ================================================ FILE: models/symbolic_solvers/Prover9/README.AMD_64 ================================================ A few quick tests on an AMD-64 (939, 1MB cache). Comparing 64- and 32-bit versions of Prover9 and Mace4. 64-bit versions: compiled with gcc defaults on AMD-64. 32-bit versions: compiled with gcc defaults on i386. Both run on AMD-64. Nearly all of the data for both Mace4 and Prover9 consists of pointers, so the jobs on the 64-bit versions take twice the memory. Prover9: the 64-bit version seems faster. ord-rev.out.32:-------- Proof 1 -------- (27.30 + 0.36 seconds) ord-rev.out.32:Megabytes=13.05. ord-rev.out.64:-------- Proof 1 -------- (22.70 + 0.43 seconds) ord-rev.out.64:Megabytes=25.70. Mace4: the 32-bit version seems faster. m.out.32:-------- Model 1 at 18.13 seconds -------- m.out.32:Memory report, 1 @ 20 = 20 megs (13.53 megs used). m.out.64:-------- Model 1 at 22.96 seconds -------- m.out.64:Memory report, 2 @ 20 = 40 megs (26.60 megs used). Your mileage may vary. ================================================ FILE: models/symbolic_solvers/Prover9/README.first ================================================ Prover9, Mace4, and Related Programs. To compile, see README.make. See http://www.cs.unm.edu/~mccune/prover9/ for the HTML manual, examples, and updates. ================================================ FILE: models/symbolic_solvers/Prover9/README.make ================================================ Compiling Prover9, Mace4, and related programs. (Tested with Gnu make and GCC 3.3.3, 3.3.5, 4.0.0, 4.0.2., 4.1.1) % make all This compiles ladr library mace4 library mace4 prover9 (and related provers) miscellaneous apps (clausefilter, prooftrans, isofilter, etc) then it moves all the programs and utilities to ./bin. Quick tests: % make test1 % make test2 % make test3 Building a package for Debian. The file libtoolize.patch (contributed by Peter Collingbourne) can be used to update the Makefiles so that they build and use a shared LADR library. ================================================ FILE: models/symbolic_solvers/Prover9/README.release-reminder ================================================ When releaseing a new version, update the files Changelog (last entry should be release note) VERSION_DATE.h ----------------- Run examples Update manual ----------------- Rename this directory, e.g., LADR-January-2007 % trash; trashr % make realclean % packup ================================================ FILE: models/symbolic_solvers/Prover9/TODO/ADAM_2007_loose_ends ================================================ ======================================================================== McCune 1. Isofilter: quiet option, which removes "1000 interps" messages. 2. Prover9: automatic disabling of back subsumption at 500 given clauses can cause problems; make it an option? 3. LADR: give users the option of redeclaring built-in operations, e.g., redeclare(conjuntion, and) changes conjunction from the default "&" to "and". 4. Interpformat: New format so that models can be easily parsed by python, perl, etc. 5. Package manual and examples for offline Windows users. 6. Prover9: Rethink hints processing w.r.t. redundant hints. ======================================================================== Jipsen That's quite a list already, and I'm definitely going to use most of these added features. Here are a couple of longer term ideas that were mentioned (and probably weren't meant to be on your specific list). You probably remember them in some form, but since you asked... -- Set up a (Media)Wiki for theory definitions in Prover9/Mace4 syntax -- Make manual searchable -- Elaborate some glossary entries (e.g. paramodulation) with notation and (general) examples to make it easier to understand what Prover9 is doing in a proof step -- Incorporate isofilter into Mace4 at an appropriate point using the notion of a canonical partial interpretation -- Make Prover9/Mace4 available as an optional package in SAGE ======================================================================== Kinyon Let me know when you have interpformat on the table, and I'll send you a useful format for binary operations. Similarly for Mace4. I have some ideas -- not difficult, I think -- which I couldn't articulate at the workshop. ======================================================================== Veroff ======================================================================== ================================================ FILE: models/symbolic_solvers/Prover9/TODO/README ================================================ 1. mprover: count mace4 search in max_seconds? 2. compress all clauses? DONE (I hope) 3. get_given_clause: SOS1, SOS2: fix in case one isn't being used. ?? 4. KBO weights, auto and manual. DONE 5. RPO working?? DONE 6. expand_eq_defs (by arity) DONE 7. output default order DONE 8. free (instead of compress) disabled clauses ?? used_flag?? 9. cannot introduce constants in forked search. DONE? 10. xproof fails with new_constant if secondary justifications (c0!=c1). DONE? 11. FOF reduction: before starting subproblems, check for $c or $f symbols. 12. If lex command, don't do inverse_order, unfold_eq_defs. 13. If lex command without all symbols, put unspecified ones at start. DONE 14. RPO orients: (x*y)*z = E*(x*(E*(x*(E*(y*(E*(x*(E*(x*(E*z)))))))))). OK 15. check in_use clause flag and clause compression. DONE 16. proof from predicate elim not reported; DONE. 17. p & -p not proved without process_initial_sos. DONE. 18. Check for more than one unary func when explicit kb weight 0. ========================================================= 19. Auto_denials: give warning if denials share constants. DONE 20. Auto_denials: maybe check if all get proved. 21. Auto_denials: maybe check if some get subsumed. 22. Clean up Clause/Tformula. DONE 23. Non-clausal goals with actions: actions don't always get copied to denial. 24. cac_redundancy: allow all wt=11? Check efficiency. ========================================================= 25. Memory leak in isofilter?? (when most are isomorphic) DONE (zap_interp) 26. Interpformat option to output only specified operations. 27. Prover9: Level message when part added to breadth-first. DONE 28. Too many op commands generated by prooftrans. DONE. 29. Separate term ordering stuff (eq_defs, inverse_order) from auto_inference. 30. Give message for auto_denials with non-Horn. DONE 31. Check binary factoring. See factor.in. ================================ ADAM-2007 32. Isofilter: quiet option, which removes "1000 interps" messages. DONE 33. Prover9: automatic disabling of back subsumption at 500 given clauses can cause problems; make it an option? DONE 34. LADR: give users the option of redeclaring built-in operations, e.g., redeclare(conjuntion, and) changes conjunction from the default "&" to "and". DONE 35. Interpformat: New format so that models can be easily parsed by python, perl, etc. DONE 36. Package manual and examples for offline Windows users. 37. Prover9: Rethink hints processing w.r.t. redundant hints. 38. Prover9: Predicate elimination can multiple proofs with multiple goals. ================================================ FILE: models/symbolic_solvers/Prover9/TODO/factor.in ================================================ set(prolog_style_variables). clear(auto_inference). assign(literal_selection, none). set(paramodulation). set(binary_resolution). set(print_clause_properties). formulas(assumptions). -ssItem(A) | -ssItem(B) | neq(A,B) | B = A. -ssItem(A) | -ssItem(B) | B != A | -neq(A,B). ssItem(c1). ssItem(c2). c2 != c1. -ssList(A) | -ssItem(B) | memberP(A,B) | -ssList(C) | -ssList(D) | app(C,cons(B,D)) != A. -ssList(A) | -ssItem(B) | ssList(f1(A,B)) | -memberP(A,B). -ssList(A) | -ssItem(B) | ssList(f2(A,B)) | -memberP(A,B). -ssList(A) | -ssItem(B) | app(f1(A,B),cons(B,f2(A,B))) = A | -memberP(A,B). -ssList(A) | -ssItem(B) | ssList(f3(A,B)) | -ssList(C) | -ssList(D) | app(C,cons(B,D)) != A. -ssList(A) | -ssItem(B) | ssList(f4(A,B)) | -ssList(C) | -ssList(D) | app(C,cons(B,D)) != A. -ssList(A) | -ssItem(B) | app(f3(A,B),cons(B,f4(A,B))) = A | -ssList(C) | -ssList(D) | app(C,cons(B,D)) != A. -ssList(A) | singletonP(A) | -ssItem(B) | cons(B,nil) != A. -ssList(A) | ssItem(f5(A)) | -singletonP(A). -ssList(A) | cons(f5(A),nil) = A | -singletonP(A). -ssList(A) | ssItem(f6(A)) | -ssItem(B) | cons(B,nil) != A. -ssList(A) | cons(f6(A),nil) = A | -ssItem(B) | cons(B,nil) != A. -ssList(A) | -ssList(B) | frontsegP(A,B) | -ssList(C) | app(B,C) != A. -ssList(A) | -ssList(B) | ssList(f7(A,B)) | -frontsegP(A,B). -ssList(A) | -ssList(B) | app(B,f7(A,B)) = A | -frontsegP(A,B). -ssList(A) | -ssList(B) | ssList(f8(A,B)) | -ssList(C) | app(B,C) != A. -ssList(A) | -ssList(B) | app(B,f8(A,B)) = A | -ssList(C) | app(B,C) != A. -ssList(A) | -ssList(B) | rearsegP(A,B) | -ssList(C) | app(C,B) != A. -ssList(A) | -ssList(B) | ssList(f9(A,B)) | -rearsegP(A,B). -ssList(A) | -ssList(B) | app(f9(A,B),B) = A | -rearsegP(A,B). -ssList(A) | -ssList(B) | ssList(f10(A,B)) | -ssList(C) | app(C,B) != A. -ssList(A) | -ssList(B) | app(f10(A,B),B) = A | -ssList(C) | app(C,B) != A. -ssList(A) | -ssList(B) | segmentP(A,B) | -ssList(C) | -ssList(D) | app(app(C,B),D) != A. -ssList(A) | -ssList(B) | ssList(f11(A,B)) | -segmentP(A,B). -ssList(A) | -ssList(B) | ssList(f12(A,B)) | -segmentP(A,B). -ssList(A) | -ssList(B) | app(app(f11(A,B),B),f12(A,B)) = A | -segmentP(A,B). -ssList(A) | -ssList(B) | ssList(f13(A,B)) | -ssList(C) | -ssList(D) | app(app(C,B),D) != A. -ssList(A) | -ssList(B) | ssList(f14(A,B)) | -ssList(C) | -ssList(D) | app(app(C,B),D) != A. -ssList(A) | -ssList(B) | app(app(f13(A,B),B),f14(A,B)) = A | -ssList(C) | -ssList(D) | app(app(C,B),D) != A. -ssList(A) | cyclefreeP(A) | ssItem(f15(A)). -ssList(A) | cyclefreeP(A) | ssItem(f16(A)). -ssList(A) | cyclefreeP(A) | leq(f15(A),f16(A)). -ssList(A) | cyclefreeP(A) | leq(f16(A),f15(A)). -ssList(A) | cyclefreeP(A) | ssList(f17(A)). -ssList(A) | cyclefreeP(A) | ssList(f18(A)). -ssList(A) | cyclefreeP(A) | ssList(f19(A)). -ssList(A) | cyclefreeP(A) | app(app(f17(A),cons(f15(A),f18(A))),cons(f16(A),f19(A))) = A. -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -cyclefreeP(A). -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f20(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f21(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | leq(f20(A),f21(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | leq(f21(A),f20(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f22(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f23(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f24(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | app(app(f22(A),cons(f20(A),f23(A))),cons(f21(A),f24(A))) = A. -ssList(A) | totalorderP(A) | ssItem(f25(A)). -ssList(A) | totalorderP(A) | ssItem(f26(A)). -ssList(A) | totalorderP(A) | -leq(f25(A),f26(A)). -ssList(A) | totalorderP(A) | -leq(f26(A),f25(A)). -ssList(A) | totalorderP(A) | ssList(f27(A)). -ssList(A) | totalorderP(A) | ssList(f28(A)). -ssList(A) | totalorderP(A) | ssList(f29(A)). -ssList(A) | totalorderP(A) | app(app(f27(A),cons(f25(A),f28(A))),cons(f26(A),f29(A))) = A. -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -totalorderP(A). -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f30(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f31(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -leq(f30(A),f31(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -leq(f31(A),f30(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f32(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f33(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f34(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | app(app(f32(A),cons(f30(A),f33(A))),cons(f31(A),f34(A))) = A. -ssList(A) | strictorderP(A) | ssItem(f35(A)). -ssList(A) | strictorderP(A) | ssItem(f36(A)). -ssList(A) | strictorderP(A) | -lt(f35(A),f36(A)). -ssList(A) | strictorderP(A) | -lt(f36(A),f35(A)). -ssList(A) | strictorderP(A) | ssList(f37(A)). -ssList(A) | strictorderP(A) | ssList(f38(A)). -ssList(A) | strictorderP(A) | ssList(f39(A)). -ssList(A) | strictorderP(A) | app(app(f37(A),cons(f35(A),f38(A))),cons(f36(A),f39(A))) = A. -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -strictorderP(A). -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f40(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f41(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -lt(f40(A),f41(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -lt(f41(A),f40(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f42(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f43(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f44(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | app(app(f42(A),cons(f40(A),f43(A))),cons(f41(A),f44(A))) = A. -ssList(A) | totalorderedP(A) | ssItem(f45(A)). -ssList(A) | totalorderedP(A) | ssItem(f46(A)). -ssList(A) | totalorderedP(A) | -leq(f45(A),f46(A)). -ssList(A) | totalorderedP(A) | ssList(f47(A)). -ssList(A) | totalorderedP(A) | ssList(f48(A)). -ssList(A) | totalorderedP(A) | ssList(f49(A)). -ssList(A) | totalorderedP(A) | app(app(f47(A),cons(f45(A),f48(A))),cons(f46(A),f49(A))) = A. -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -totalorderedP(A). -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f50(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f51(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -leq(f50(A),f51(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f52(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f53(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f54(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | app(app(f52(A),cons(f50(A),f53(A))),cons(f51(A),f54(A))) = A. -ssList(A) | strictorderedP(A) | ssItem(f55(A)). -ssList(A) | strictorderedP(A) | ssItem(f56(A)). -ssList(A) | strictorderedP(A) | -lt(f55(A),f56(A)). -ssList(A) | strictorderedP(A) | ssList(f57(A)). -ssList(A) | strictorderedP(A) | ssList(f58(A)). -ssList(A) | strictorderedP(A) | ssList(f59(A)). -ssList(A) | strictorderedP(A) | app(app(f57(A),cons(f55(A),f58(A))),cons(f56(A),f59(A))) = A. -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -strictorderedP(A). -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f60(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f61(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -lt(f60(A),f61(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f62(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f63(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f64(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | app(app(f62(A),cons(f60(A),f63(A))),cons(f61(A),f64(A))) = A. -ssList(A) | duplicatefreeP(A) | ssItem(f65(A)). -ssList(A) | duplicatefreeP(A) | ssItem(f66(A)). -ssList(A) | duplicatefreeP(A) | f66(A) = f65(A). -ssList(A) | duplicatefreeP(A) | ssList(f67(A)). -ssList(A) | duplicatefreeP(A) | ssList(f68(A)). -ssList(A) | duplicatefreeP(A) | ssList(f69(A)). -ssList(A) | duplicatefreeP(A) | app(app(f67(A),cons(f65(A),f68(A))),cons(f66(A),f69(A))) = A. -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -duplicatefreeP(A). -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f70(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f71(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | f71(A) = f70(A). -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f72(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f73(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f74(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | app(app(f72(A),cons(f70(A),f73(A))),cons(f71(A),f74(A))) = A. -ssList(A) | equalelemsP(A) | ssItem(f75(A)). -ssList(A) | equalelemsP(A) | ssItem(f76(A)). -ssList(A) | equalelemsP(A) | f76(A) != f75(A). -ssList(A) | equalelemsP(A) | ssList(f77(A)). -ssList(A) | equalelemsP(A) | ssList(f78(A)). -ssList(A) | equalelemsP(A) | app(f77(A),cons(f75(A),cons(f76(A),f78(A)))) = A. -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | -ssList(E) | app(D,cons(B,cons(C,E))) != A | -equalelemsP(A). -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | -ssList(E) | app(D,cons(B,cons(C,E))) != A | ssItem(f79(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | -ssList(E) | app(D,cons(B,cons(C,E))) != A | ssItem(f80(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | -ssList(E) | app(D,cons(B,cons(C,E))) != A | f80(A) != f79(A). -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | -ssList(E) | app(D,cons(B,cons(C,E))) != A | ssList(f81(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | -ssList(E) | app(D,cons(B,cons(C,E))) != A | ssList(f82(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | -ssList(E) | app(D,cons(B,cons(C,E))) != A | app(f81(A),cons(f79(A),cons(f80(A),f82(A)))) = A. -ssList(A) | -ssList(B) | neq(A,B) | B = A. -ssList(A) | -ssList(B) | B != A | -neq(A,B). -ssList(A) | -ssItem(B) | ssList(cons(B,A)). ssList(nil). -ssList(A) | -ssItem(B) | cons(B,A) != A. -ssList(A) | -ssList(B) | -ssItem(C) | -ssItem(D) | cons(D,B) != cons(C,A) | D = C. -ssList(A) | -ssList(B) | B = A | -ssItem(C) | -ssItem(D) | cons(D,B) != cons(C,A). -ssList(A) | nil = A | ssList(f83(A)). -ssList(A) | nil = A | ssItem(f84(A)). -ssList(A) | nil = A | cons(f84(A),f83(A)) = A. -ssList(A) | -ssItem(B) | cons(B,A) != nil. -ssList(A) | nil = A | ssItem(hd(A)). -ssList(A) | -ssItem(B) | hd(cons(B,A)) = B. -ssList(A) | nil = A | ssList(tl(A)). -ssList(A) | -ssItem(B) | tl(cons(B,A)) = A. -ssList(A) | -ssList(B) | ssList(app(A,B)). -ssList(A) | -ssList(B) | -ssItem(C) | app(cons(C,B),A) = cons(C,app(B,A)). -ssList(A) | app(nil,A) = A. -ssItem(A) | -ssItem(B) | -leq(A,B) | -leq(B,A) | B = A. -ssItem(A) | -ssItem(B) | -leq(A,B) | -ssItem(C) | -leq(B,C) | leq(A,C). -ssItem(A) | leq(A,A). -ssItem(A) | -ssItem(B) | geq(A,B) | -leq(B,A). -ssItem(A) | -ssItem(B) | leq(B,A) | -geq(A,B). -ssItem(A) | -ssItem(B) | -lt(A,B) | -lt(B,A). -ssItem(A) | -ssItem(B) | -lt(A,B) | -ssItem(C) | -lt(B,C) | lt(A,C). -ssItem(A) | -ssItem(B) | gt(A,B) | -lt(B,A). -ssItem(A) | -ssItem(B) | lt(B,A) | -gt(A,B). -ssItem(A) | -ssList(B) | -memberP(B,A) | -ssList(C) | memberP(app(B,C),A). -ssItem(A) | -ssList(B) | -ssList(C) | memberP(app(B,C),A) | -memberP(C,A). -ssItem(A) | -ssList(B) | memberP(B,A) | -ssList(C) | memberP(C,A) | -memberP(app(B,C),A). -ssItem(A) | -ssItem(B) | B != A | -ssList(C) | memberP(cons(B,C),A). -ssItem(A) | -ssItem(B) | -ssList(C) | memberP(cons(B,C),A) | -memberP(C,A). -ssItem(A) | -ssItem(B) | B = A | -ssList(C) | memberP(C,A) | -memberP(cons(B,C),A). -ssItem(A) | -memberP(nil,A). -singletonP(nil). -ssList(A) | -ssList(B) | -frontsegP(A,B) | -ssList(C) | -frontsegP(B,C) | frontsegP(A,C). -ssList(A) | -ssList(B) | -frontsegP(A,B) | -frontsegP(B,A) | B = A. -ssList(A) | frontsegP(A,A). -ssList(A) | -ssList(B) | -frontsegP(A,B) | -ssList(C) | frontsegP(app(A,C),B). -ssItem(A) | -ssItem(B) | B != A | -ssList(C) | -ssList(D) | frontsegP(cons(A,C),cons(B,D)) | -frontsegP(C,D). -ssItem(A) | -ssItem(B) | B = A | -ssList(C) | -ssList(D) | -frontsegP(cons(A,C),cons(B,D)). -ssItem(A) | -ssItem(B) | -ssList(C) | -ssList(D) | frontsegP(C,D) | -frontsegP(cons(A,C),cons(B,D)). -ssList(A) | frontsegP(A,nil). -ssList(A) | frontsegP(nil,A) | nil != A. -ssList(A) | nil = A | -frontsegP(nil,A). -ssList(A) | -ssList(B) | -rearsegP(A,B) | -ssList(C) | -rearsegP(B,C) | rearsegP(A,C). -ssList(A) | -ssList(B) | -rearsegP(A,B) | -rearsegP(B,A) | B = A. -ssList(A) | rearsegP(A,A). -ssList(A) | -ssList(B) | -rearsegP(A,B) | -ssList(C) | rearsegP(app(C,A),B). -ssList(A) | rearsegP(A,nil). -ssList(A) | rearsegP(nil,A) | nil != A. -ssList(A) | nil = A | -rearsegP(nil,A). -ssList(A) | -ssList(B) | -segmentP(A,B) | -ssList(C) | -segmentP(B,C) | segmentP(A,C). -ssList(A) | -ssList(B) | -segmentP(A,B) | -segmentP(B,A) | B = A. -ssList(A) | segmentP(A,A). -ssList(A) | -ssList(B) | -segmentP(A,B) | -ssList(C) | -ssList(D) | segmentP(app(app(C,A),D),B). -ssList(A) | segmentP(A,nil). -ssList(A) | segmentP(nil,A) | nil != A. -ssList(A) | nil = A | -segmentP(nil,A). -ssItem(A) | cyclefreeP(cons(A,nil)). cyclefreeP(nil). -ssItem(A) | totalorderP(cons(A,nil)). totalorderP(nil). -ssItem(A) | strictorderP(cons(A,nil)). strictorderP(nil). -ssItem(A) | totalorderedP(cons(A,nil)). totalorderedP(nil). -ssItem(A) | -ssList(B) | totalorderedP(cons(A,B)) | nil != B. -ssItem(A) | -ssList(B) | totalorderedP(cons(A,B)) | nil = B | -totalorderedP(B) | -leq(A,hd(B)). -ssItem(A) | -ssList(B) | nil = B | totalorderedP(B) | -totalorderedP(cons(A,B)). -ssItem(A) | -ssList(B) | nil = B | leq(A,hd(B)) | -totalorderedP(cons(A,B)). -ssItem(A) | strictorderedP(cons(A,nil)). strictorderedP(nil). -ssItem(A) | -ssList(B) | strictorderedP(cons(A,B)) | nil != B. -ssItem(A) | -ssList(B) | strictorderedP(cons(A,B)) | nil = B | -strictorderedP(B) | -lt(A,hd(B)). -ssItem(A) | -ssList(B) | nil = B | strictorderedP(B) | -strictorderedP(cons(A,B)). -ssItem(A) | -ssList(B) | nil = B | lt(A,hd(B)) | -strictorderedP(cons(A,B)). -ssItem(A) | duplicatefreeP(cons(A,nil)). duplicatefreeP(nil). -ssItem(A) | equalelemsP(cons(A,nil)). equalelemsP(nil). -ssList(A) | nil = A | ssItem(f85(A)). -ssList(A) | nil = A | hd(A) = f85(A). -ssList(A) | nil = A | ssList(f86(A)). -ssList(A) | nil = A | tl(A) = f86(A). -ssList(A) | nil = A | -ssList(B) | nil = B | hd(B) != hd(A) | tl(B) != tl(A) | B = A. -ssList(A) | nil = A | cons(hd(A),tl(A)) = A. -ssList(A) | -ssList(B) | -ssList(C) | app(C,B) != app(A,B) | C = A. -ssList(A) | -ssList(B) | -ssList(C) | app(B,C) != app(B,A) | C = A. -ssList(A) | -ssItem(B) | app(cons(B,nil),A) = cons(B,A). -ssList(A) | -ssList(B) | -ssList(C) | app(app(A,B),C) = app(A,app(B,C)). -ssList(A) | nil != A | -ssList(B) | app(A,B) = nil | nil != B. -ssList(A) | -ssList(B) | nil = B | app(A,B) != nil. -ssList(A) | nil = A | -ssList(B) | app(A,B) != nil. -ssList(A) | app(A,nil) = A. -ssList(A) | nil = A | -ssList(B) | hd(app(A,B)) = hd(A). -ssList(A) | nil = A | -ssList(B) | tl(app(A,B)) = app(tl(A),B). -ssItem(A) | -ssItem(B) | -geq(A,B) | -geq(B,A) | B = A. -ssItem(A) | -ssItem(B) | -geq(A,B) | -ssItem(C) | -geq(B,C) | geq(A,C). -ssItem(A) | geq(A,A). -ssItem(A) | -lt(A,A). -ssItem(A) | -ssItem(B) | -leq(A,B) | -ssItem(C) | -lt(B,C) | lt(A,C). -ssItem(A) | -ssItem(B) | -leq(A,B) | B = A | lt(A,B). -ssItem(A) | -ssItem(B) | lt(A,B) | B = A | -leq(A,B). -ssItem(A) | -ssItem(B) | B != A | -lt(A,B). -ssItem(A) | -ssItem(B) | leq(A,B) | -lt(A,B). -ssItem(A) | -ssItem(B) | -gt(A,B) | -gt(B,A). -ssItem(A) | -ssItem(B) | -gt(A,B) | -ssItem(C) | -gt(B,C) | gt(A,C). ssList(c3). ssList(c4). -segmentP(c4,c3). ssList(c5). c5 = c3. totalorderedP(c5). ssList(c6). c6 = c4. ssList(c7). -ssItem(A) | -ssItem(B) | -leq(A,B) | -ssList(C) | app(cons(B,nil),C) != c5 | -ssList(D) | app(D,cons(A,nil)) != c7. ssList(c8). app(app(c7,c5),c8) = c6. -ssItem(A) | -ssItem(B) | -leq(B,A) | -ssList(C) | app(C,cons(B,nil)) != c5 | -ssList(D) | app(cons(A,nil),D) != c8. nil = c6. end_of_list. ================================================ FILE: models/symbolic_solvers/Prover9/TODO/mace4-segv.in ================================================ assign(max_seconds, 60). %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Reference % % On Some Ternary Relations in Lattices % R. Padmanabhan % Colloquium Mathematicum 15:195-198, 1966. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% set(expand_relational_defs). formulas(assumptions). % Lattice Theory x ^ y = y ^ x # label("commutativity_meet"). x v y = y v x # label("commutativity_join"). (x ^ y) ^ z = x ^ (y ^ z) # label("associativity_meet"). (x v y) v z = x v (y v z) # label("associativity_join"). (x v y) ^ x = x # label("absorption_1"). (x ^ y) v x = x # label("absorption_2"). end_of_list. formulas(assumptions). % Definition of less-than-or-equal all x all y ((x <= y) <-> x ^ y = x). % Definitions of ternary relations all x all y all z (A(x,y,z) <-> ((x <= y & y <= z) | (z <= y & y <= x))). all x all y all z (B(x,y,z) <-> (((x ^ y) v (y ^ z) = y) & ((x v y) ^ (y v z) = y))). all x all y all z (C(x,y,z) <-> ((((x ^ y) v (y ^ z)) = y) & ((x ^ z) v y = y))). all x all y all z (CS(x,y,z) <-> ((((x v y) ^ (y v z)) = y) & ((x v z) ^ y = y))). all x all y all z (D(x,y,z) <-> ( ((x ^ z) <= y) & (y <= (x v z)))). end_of_list. formulas(goals). % all a all x all b ( A(a,x,b) -> B(a,x,b)). % all a all x all b ( B(a,x,b) -> C(a,x,b)). % all a all x all b ( C(a,x,b) -> D(a,x,b)). % all a all x all b ( B(a,x,b) -> CS(a,x,b)). % all a all x all b ( CS(a,x,b) -> D(a,x,b)). % all a all x all b ( B(a,x,b) -> A(a,x,b)). % 4 % all a all x all b ( C(a,x,b) -> B(a,x,b)). % 5 all a all x all b ( C(a,x,b) -> C(a,x,b)). % end_of_list. ================================================ FILE: models/symbolic_solvers/Prover9/TODO/temp ================================================ ============================== Prover9 =============================== Prover9 (32) version June-2007-, 4 June 2007. Process 17872 was started by mccune on cleo, Tue Jun 12 11:21:51 2007 The command was "prover9 -f factor.in". ============================== end of head =========================== ============================== INPUT ================================= % Reading from file factor.in set(prolog_style_variables). clear(auto_inference). % clear(auto_inference) -> clear(predicate_elim). % clear(auto_inference) -> assign(eq_defs, pass). assign(literal_selection,none). set(paramodulation). % set(paramodulation) -> set(back_demod). set(binary_resolution). set(print_clause_properties). formulas(assumptions). -ssItem(A) | -ssItem(B) | neq(A,B) | B = A. -ssItem(A) | -ssItem(B) | B != A | -neq(A,B). ssItem(c1). ssItem(c2). c2 != c1. -ssList(A) | -ssItem(B) | memberP(A,B) | -ssList(C) | -ssList(D) | app(C,cons(B,D)) != A. -ssList(A) | -ssItem(B) | ssList(f1(A,B)) | -memberP(A,B). -ssList(A) | -ssItem(B) | ssList(f2(A,B)) | -memberP(A,B). -ssList(A) | -ssItem(B) | app(f1(A,B),cons(B,f2(A,B))) = A | -memberP(A,B). -ssList(A) | -ssItem(B) | ssList(f3(A,B)) | -ssList(C) | -ssList(D) | app(C,cons(B,D)) != A. -ssList(A) | -ssItem(B) | ssList(f4(A,B)) | -ssList(C) | -ssList(D) | app(C,cons(B,D)) != A. -ssList(A) | -ssItem(B) | app(f3(A,B),cons(B,f4(A,B))) = A | -ssList(C) | -ssList(D) | app(C,cons(B,D)) != A. -ssList(A) | singletonP(A) | -ssItem(B) | cons(B,nil) != A. -ssList(A) | ssItem(f5(A)) | -singletonP(A). -ssList(A) | cons(f5(A),nil) = A | -singletonP(A). -ssList(A) | ssItem(f6(A)) | -ssItem(B) | cons(B,nil) != A. -ssList(A) | cons(f6(A),nil) = A | -ssItem(B) | cons(B,nil) != A. -ssList(A) | -ssList(B) | frontsegP(A,B) | -ssList(C) | app(B,C) != A. -ssList(A) | -ssList(B) | ssList(f7(A,B)) | -frontsegP(A,B). -ssList(A) | -ssList(B) | app(B,f7(A,B)) = A | -frontsegP(A,B). -ssList(A) | -ssList(B) | ssList(f8(A,B)) | -ssList(C) | app(B,C) != A. -ssList(A) | -ssList(B) | app(B,f8(A,B)) = A | -ssList(C) | app(B,C) != A. -ssList(A) | -ssList(B) | rearsegP(A,B) | -ssList(C) | app(C,B) != A. -ssList(A) | -ssList(B) | ssList(f9(A,B)) | -rearsegP(A,B). -ssList(A) | -ssList(B) | app(f9(A,B),B) = A | -rearsegP(A,B). -ssList(A) | -ssList(B) | ssList(f10(A,B)) | -ssList(C) | app(C,B) != A. -ssList(A) | -ssList(B) | app(f10(A,B),B) = A | -ssList(C) | app(C,B) != A. -ssList(A) | -ssList(B) | segmentP(A,B) | -ssList(C) | -ssList(D) | app(app(C,B),D) != A. -ssList(A) | -ssList(B) | ssList(f11(A,B)) | -segmentP(A,B). -ssList(A) | -ssList(B) | ssList(f12(A,B)) | -segmentP(A,B). -ssList(A) | -ssList(B) | app(app(f11(A,B),B),f12(A,B)) = A | -segmentP(A,B). -ssList(A) | -ssList(B) | ssList(f13(A,B)) | -ssList(C) | -ssList(D) | app(app(C,B),D) != A. -ssList(A) | -ssList(B) | ssList(f14(A,B)) | -ssList(C) | -ssList(D) | app(app(C,B),D) != A. -ssList(A) | -ssList(B) | app(app(f13(A,B),B),f14(A,B)) = A | -ssList(C) | -ssList(D) | app(app(C,B),D) != A. -ssList(A) | cyclefreeP(A) | ssItem(f15(A)). -ssList(A) | cyclefreeP(A) | ssItem(f16(A)). -ssList(A) | cyclefreeP(A) | leq(f15(A),f16(A)). -ssList(A) | cyclefreeP(A) | leq(f16(A),f15(A)). -ssList(A) | cyclefreeP(A) | ssList(f17(A)). -ssList(A) | cyclefreeP(A) | ssList(f18(A)). -ssList(A) | cyclefreeP(A) | ssList(f19(A)). -ssList(A) | cyclefreeP(A) | app(app(f17(A),cons(f15(A),f18(A))),cons(f16(A),f19(A))) = A. -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -cyclefreeP(A). -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f20(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f21(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | leq(f20(A),f21(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | leq(f21(A),f20(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f22(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f23(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f24(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | app(app(f22(A),cons(f20(A),f23(A))),cons(f21(A),f24(A))) = A. -ssList(A) | totalorderP(A) | ssItem(f25(A)). -ssList(A) | totalorderP(A) | ssItem(f26(A)). -ssList(A) | totalorderP(A) | -leq(f25(A),f26(A)). -ssList(A) | totalorderP(A) | -leq(f26(A),f25(A)). -ssList(A) | totalorderP(A) | ssList(f27(A)). -ssList(A) | totalorderP(A) | ssList(f28(A)). -ssList(A) | totalorderP(A) | ssList(f29(A)). -ssList(A) | totalorderP(A) | app(app(f27(A),cons(f25(A),f28(A))),cons(f26(A),f29(A))) = A. -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -totalorderP(A). -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f30(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f31(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -leq(f30(A),f31(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -leq(f31(A),f30(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f32(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f33(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f34(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | app(app(f32(A),cons(f30(A),f33(A))),cons(f31(A),f34(A))) = A. -ssList(A) | strictorderP(A) | ssItem(f35(A)). -ssList(A) | strictorderP(A) | ssItem(f36(A)). -ssList(A) | strictorderP(A) | -lt(f35(A),f36(A)). -ssList(A) | strictorderP(A) | -lt(f36(A),f35(A)). -ssList(A) | strictorderP(A) | ssList(f37(A)). -ssList(A) | strictorderP(A) | ssList(f38(A)). -ssList(A) | strictorderP(A) | ssList(f39(A)). -ssList(A) | strictorderP(A) | app(app(f37(A),cons(f35(A),f38(A))),cons(f36(A),f39(A))) = A. -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -strictorderP(A). -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f40(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f41(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -lt(f40(A),f41(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -lt(f41(A),f40(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f42(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f43(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f44(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | app(app(f42(A),cons(f40(A),f43(A))),cons(f41(A),f44(A))) = A. -ssList(A) | totalorderedP(A) | ssItem(f45(A)). -ssList(A) | totalorderedP(A) | ssItem(f46(A)). -ssList(A) | totalorderedP(A) | -leq(f45(A),f46(A)). -ssList(A) | totalorderedP(A) | ssList(f47(A)). -ssList(A) | totalorderedP(A) | ssList(f48(A)). -ssList(A) | totalorderedP(A) | ssList(f49(A)). -ssList(A) | totalorderedP(A) | app(app(f47(A),cons(f45(A),f48(A))),cons(f46(A),f49(A))) = A. -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -totalorderedP(A). -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f50(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f51(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -leq(f50(A),f51(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f52(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f53(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f54(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | app(app(f52(A),cons(f50(A),f53(A))),cons(f51(A),f54(A))) = A. -ssList(A) | strictorderedP(A) | ssItem(f55(A)). -ssList(A) | strictorderedP(A) | ssItem(f56(A)). -ssList(A) | strictorderedP(A) | -lt(f55(A),f56(A)). -ssList(A) | strictorderedP(A) | ssList(f57(A)). -ssList(A) | strictorderedP(A) | ssList(f58(A)). -ssList(A) | strictorderedP(A) | ssList(f59(A)). -ssList(A) | strictorderedP(A) | app(app(f57(A),cons(f55(A),f58(A))),cons(f56(A),f59(A))) = A. -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -strictorderedP(A). -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f60(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f61(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -lt(f60(A),f61(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f62(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f63(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f64(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | app(app(f62(A),cons(f60(A),f63(A))),cons(f61(A),f64(A))) = A. -ssList(A) | duplicatefreeP(A) | ssItem(f65(A)). -ssList(A) | duplicatefreeP(A) | ssItem(f66(A)). -ssList(A) | duplicatefreeP(A) | f66(A) = f65(A). -ssList(A) | duplicatefreeP(A) | ssList(f67(A)). -ssList(A) | duplicatefreeP(A) | ssList(f68(A)). -ssList(A) | duplicatefreeP(A) | ssList(f69(A)). -ssList(A) | duplicatefreeP(A) | app(app(f67(A),cons(f65(A),f68(A))),cons(f66(A),f69(A))) = A. -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -duplicatefreeP(A). -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f70(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f71(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | f71(A) = f70(A). -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f72(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f73(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f74(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | app(app(f72(A),cons(f70(A),f73(A))),cons(f71(A),f74(A))) = A. -ssList(A) | equalelemsP(A) | ssItem(f75(A)). -ssList(A) | equalelemsP(A) | ssItem(f76(A)). -ssList(A) | equalelemsP(A) | f76(A) != f75(A). -ssList(A) | equalelemsP(A) | ssList(f77(A)). -ssList(A) | equalelemsP(A) | ssList(f78(A)). -ssList(A) | equalelemsP(A) | app(f77(A),cons(f75(A),cons(f76(A),f78(A)))) = A. -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | -ssList(E) | app(D,cons(B,cons(C,E))) != A | -equalelemsP(A). -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | -ssList(E) | app(D,cons(B,cons(C,E))) != A | ssItem(f79(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | -ssList(E) | app(D,cons(B,cons(C,E))) != A | ssItem(f80(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | -ssList(E) | app(D,cons(B,cons(C,E))) != A | f80(A) != f79(A). -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | -ssList(E) | app(D,cons(B,cons(C,E))) != A | ssList(f81(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | -ssList(E) | app(D,cons(B,cons(C,E))) != A | ssList(f82(A)). -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | -ssList(E) | app(D,cons(B,cons(C,E))) != A | app(f81(A),cons(f79(A),cons(f80(A),f82(A)))) = A. -ssList(A) | -ssList(B) | neq(A,B) | B = A. -ssList(A) | -ssList(B) | B != A | -neq(A,B). -ssList(A) | -ssItem(B) | ssList(cons(B,A)). ssList(nil). -ssList(A) | -ssItem(B) | cons(B,A) != A. -ssList(A) | -ssList(B) | -ssItem(C) | -ssItem(D) | cons(D,B) != cons(C,A) | D = C. -ssList(A) | -ssList(B) | B = A | -ssItem(C) | -ssItem(D) | cons(D,B) != cons(C,A). -ssList(A) | nil = A | ssList(f83(A)). -ssList(A) | nil = A | ssItem(f84(A)). -ssList(A) | nil = A | cons(f84(A),f83(A)) = A. -ssList(A) | -ssItem(B) | cons(B,A) != nil. -ssList(A) | nil = A | ssItem(hd(A)). -ssList(A) | -ssItem(B) | hd(cons(B,A)) = B. -ssList(A) | nil = A | ssList(tl(A)). -ssList(A) | -ssItem(B) | tl(cons(B,A)) = A. -ssList(A) | -ssList(B) | ssList(app(A,B)). -ssList(A) | -ssList(B) | -ssItem(C) | app(cons(C,B),A) = cons(C,app(B,A)). -ssList(A) | app(nil,A) = A. -ssItem(A) | -ssItem(B) | -leq(A,B) | -leq(B,A) | B = A. -ssItem(A) | -ssItem(B) | -leq(A,B) | -ssItem(C) | -leq(B,C) | leq(A,C). -ssItem(A) | leq(A,A). -ssItem(A) | -ssItem(B) | geq(A,B) | -leq(B,A). -ssItem(A) | -ssItem(B) | leq(B,A) | -geq(A,B). -ssItem(A) | -ssItem(B) | -lt(A,B) | -lt(B,A). -ssItem(A) | -ssItem(B) | -lt(A,B) | -ssItem(C) | -lt(B,C) | lt(A,C). -ssItem(A) | -ssItem(B) | gt(A,B) | -lt(B,A). -ssItem(A) | -ssItem(B) | lt(B,A) | -gt(A,B). -ssItem(A) | -ssList(B) | -memberP(B,A) | -ssList(C) | memberP(app(B,C),A). -ssItem(A) | -ssList(B) | -ssList(C) | memberP(app(B,C),A) | -memberP(C,A). -ssItem(A) | -ssList(B) | memberP(B,A) | -ssList(C) | memberP(C,A) | -memberP(app(B,C),A). -ssItem(A) | -ssItem(B) | B != A | -ssList(C) | memberP(cons(B,C),A). -ssItem(A) | -ssItem(B) | -ssList(C) | memberP(cons(B,C),A) | -memberP(C,A). -ssItem(A) | -ssItem(B) | B = A | -ssList(C) | memberP(C,A) | -memberP(cons(B,C),A). -ssItem(A) | -memberP(nil,A). -singletonP(nil). -ssList(A) | -ssList(B) | -frontsegP(A,B) | -ssList(C) | -frontsegP(B,C) | frontsegP(A,C). -ssList(A) | -ssList(B) | -frontsegP(A,B) | -frontsegP(B,A) | B = A. -ssList(A) | frontsegP(A,A). -ssList(A) | -ssList(B) | -frontsegP(A,B) | -ssList(C) | frontsegP(app(A,C),B). -ssItem(A) | -ssItem(B) | B != A | -ssList(C) | -ssList(D) | frontsegP(cons(A,C),cons(B,D)) | -frontsegP(C,D). -ssItem(A) | -ssItem(B) | B = A | -ssList(C) | -ssList(D) | -frontsegP(cons(A,C),cons(B,D)). -ssItem(A) | -ssItem(B) | -ssList(C) | -ssList(D) | frontsegP(C,D) | -frontsegP(cons(A,C),cons(B,D)). -ssList(A) | frontsegP(A,nil). -ssList(A) | frontsegP(nil,A) | nil != A. -ssList(A) | nil = A | -frontsegP(nil,A). -ssList(A) | -ssList(B) | -rearsegP(A,B) | -ssList(C) | -rearsegP(B,C) | rearsegP(A,C). -ssList(A) | -ssList(B) | -rearsegP(A,B) | -rearsegP(B,A) | B = A. -ssList(A) | rearsegP(A,A). -ssList(A) | -ssList(B) | -rearsegP(A,B) | -ssList(C) | rearsegP(app(C,A),B). -ssList(A) | rearsegP(A,nil). -ssList(A) | rearsegP(nil,A) | nil != A. -ssList(A) | nil = A | -rearsegP(nil,A). -ssList(A) | -ssList(B) | -segmentP(A,B) | -ssList(C) | -segmentP(B,C) | segmentP(A,C). -ssList(A) | -ssList(B) | -segmentP(A,B) | -segmentP(B,A) | B = A. -ssList(A) | segmentP(A,A). -ssList(A) | -ssList(B) | -segmentP(A,B) | -ssList(C) | -ssList(D) | segmentP(app(app(C,A),D),B). -ssList(A) | segmentP(A,nil). -ssList(A) | segmentP(nil,A) | nil != A. -ssList(A) | nil = A | -segmentP(nil,A). -ssItem(A) | cyclefreeP(cons(A,nil)). cyclefreeP(nil). -ssItem(A) | totalorderP(cons(A,nil)). totalorderP(nil). -ssItem(A) | strictorderP(cons(A,nil)). strictorderP(nil). -ssItem(A) | totalorderedP(cons(A,nil)). totalorderedP(nil). -ssItem(A) | -ssList(B) | totalorderedP(cons(A,B)) | nil != B. -ssItem(A) | -ssList(B) | totalorderedP(cons(A,B)) | nil = B | -totalorderedP(B) | -leq(A,hd(B)). -ssItem(A) | -ssList(B) | nil = B | totalorderedP(B) | -totalorderedP(cons(A,B)). -ssItem(A) | -ssList(B) | nil = B | leq(A,hd(B)) | -totalorderedP(cons(A,B)). -ssItem(A) | strictorderedP(cons(A,nil)). strictorderedP(nil). -ssItem(A) | -ssList(B) | strictorderedP(cons(A,B)) | nil != B. -ssItem(A) | -ssList(B) | strictorderedP(cons(A,B)) | nil = B | -strictorderedP(B) | -lt(A,hd(B)). -ssItem(A) | -ssList(B) | nil = B | strictorderedP(B) | -strictorderedP(cons(A,B)). -ssItem(A) | -ssList(B) | nil = B | lt(A,hd(B)) | -strictorderedP(cons(A,B)). -ssItem(A) | duplicatefreeP(cons(A,nil)). duplicatefreeP(nil). -ssItem(A) | equalelemsP(cons(A,nil)). equalelemsP(nil). -ssList(A) | nil = A | ssItem(f85(A)). -ssList(A) | nil = A | hd(A) = f85(A). -ssList(A) | nil = A | ssList(f86(A)). -ssList(A) | nil = A | tl(A) = f86(A). -ssList(A) | nil = A | -ssList(B) | nil = B | hd(B) != hd(A) | tl(B) != tl(A) | B = A. -ssList(A) | nil = A | cons(hd(A),tl(A)) = A. -ssList(A) | -ssList(B) | -ssList(C) | app(C,B) != app(A,B) | C = A. -ssList(A) | -ssList(B) | -ssList(C) | app(B,C) != app(B,A) | C = A. -ssList(A) | -ssItem(B) | app(cons(B,nil),A) = cons(B,A). -ssList(A) | -ssList(B) | -ssList(C) | app(app(A,B),C) = app(A,app(B,C)). -ssList(A) | nil != A | -ssList(B) | app(A,B) = nil | nil != B. -ssList(A) | -ssList(B) | nil = B | app(A,B) != nil. -ssList(A) | nil = A | -ssList(B) | app(A,B) != nil. -ssList(A) | app(A,nil) = A. -ssList(A) | nil = A | -ssList(B) | hd(app(A,B)) = hd(A). -ssList(A) | nil = A | -ssList(B) | tl(app(A,B)) = app(tl(A),B). -ssItem(A) | -ssItem(B) | -geq(A,B) | -geq(B,A) | B = A. -ssItem(A) | -ssItem(B) | -geq(A,B) | -ssItem(C) | -geq(B,C) | geq(A,C). -ssItem(A) | geq(A,A). -ssItem(A) | -lt(A,A). -ssItem(A) | -ssItem(B) | -leq(A,B) | -ssItem(C) | -lt(B,C) | lt(A,C). -ssItem(A) | -ssItem(B) | -leq(A,B) | B = A | lt(A,B). -ssItem(A) | -ssItem(B) | lt(A,B) | B = A | -leq(A,B). -ssItem(A) | -ssItem(B) | B != A | -lt(A,B). -ssItem(A) | -ssItem(B) | leq(A,B) | -lt(A,B). -ssItem(A) | -ssItem(B) | -gt(A,B) | -gt(B,A). -ssItem(A) | -ssItem(B) | -gt(A,B) | -ssItem(C) | -gt(B,C) | gt(A,C). ssList(c3). ssList(c4). -segmentP(c4,c3). ssList(c5). c5 = c3. totalorderedP(c5). ssList(c6). c6 = c4. ssList(c7). -ssItem(A) | -ssItem(B) | -leq(A,B) | -ssList(C) | app(cons(B,nil),C) != c5 | -ssList(D) | app(D,cons(A,nil)) != c7. ssList(c8). app(app(c7,c5),c8) = c6. -ssItem(A) | -ssItem(B) | -leq(B,A) | -ssList(C) | app(C,cons(B,nil)) != c5 | -ssList(D) | app(cons(A,nil),D) != c8. nil = c6. end_of_list. ============================== end of input ========================== ============================== PROCESS NON-CLAUSAL FORMULAS ========== % Formulas that are not ordinary clauses: ============================== end of process non-clausal formulas === ============================== PROCESS INITIAL CLAUSES =============== % Clauses before input processing: formulas(usable). end_of_list. formulas(sos). -ssItem(A) | -ssItem(B) | neq(A,B) | B = A. [assumption]. -ssItem(A) | -ssItem(B) | B != A | -neq(A,B). [assumption]. ssItem(c1). [assumption]. ssItem(c2). [assumption]. c2 != c1. [assumption]. -ssList(A) | -ssItem(B) | memberP(A,B) | -ssList(C) | -ssList(D) | app(C,cons(B,D)) != A. [assumption]. -ssList(A) | -ssItem(B) | ssList(f1(A,B)) | -memberP(A,B). [assumption]. -ssList(A) | -ssItem(B) | ssList(f2(A,B)) | -memberP(A,B). [assumption]. -ssList(A) | -ssItem(B) | app(f1(A,B),cons(B,f2(A,B))) = A | -memberP(A,B). [assumption]. -ssList(A) | -ssItem(B) | ssList(f3(A,B)) | -ssList(C) | -ssList(D) | app(C,cons(B,D)) != A. [assumption]. -ssList(A) | -ssItem(B) | ssList(f4(A,B)) | -ssList(C) | -ssList(D) | app(C,cons(B,D)) != A. [assumption]. -ssList(A) | -ssItem(B) | app(f3(A,B),cons(B,f4(A,B))) = A | -ssList(C) | -ssList(D) | app(C,cons(B,D)) != A. [assumption]. -ssList(A) | singletonP(A) | -ssItem(B) | cons(B,nil) != A. [assumption]. -ssList(A) | ssItem(f5(A)) | -singletonP(A). [assumption]. -ssList(A) | cons(f5(A),nil) = A | -singletonP(A). [assumption]. -ssList(A) | ssItem(f6(A)) | -ssItem(B) | cons(B,nil) != A. [assumption]. -ssList(A) | cons(f6(A),nil) = A | -ssItem(B) | cons(B,nil) != A. [assumption]. -ssList(A) | -ssList(B) | frontsegP(A,B) | -ssList(C) | app(B,C) != A. [assumption]. -ssList(A) | -ssList(B) | ssList(f7(A,B)) | -frontsegP(A,B). [assumption]. -ssList(A) | -ssList(B) | app(B,f7(A,B)) = A | -frontsegP(A,B). [assumption]. -ssList(A) | -ssList(B) | ssList(f8(A,B)) | -ssList(C) | app(B,C) != A. [assumption]. -ssList(A) | -ssList(B) | app(B,f8(A,B)) = A | -ssList(C) | app(B,C) != A. [assumption]. -ssList(A) | -ssList(B) | rearsegP(A,B) | -ssList(C) | app(C,B) != A. [assumption]. -ssList(A) | -ssList(B) | ssList(f9(A,B)) | -rearsegP(A,B). [assumption]. -ssList(A) | -ssList(B) | app(f9(A,B),B) = A | -rearsegP(A,B). [assumption]. -ssList(A) | -ssList(B) | ssList(f10(A,B)) | -ssList(C) | app(C,B) != A. [assumption]. -ssList(A) | -ssList(B) | app(f10(A,B),B) = A | -ssList(C) | app(C,B) != A. [assumption]. -ssList(A) | -ssList(B) | segmentP(A,B) | -ssList(C) | -ssList(D) | app(app(C,B),D) != A. [assumption]. -ssList(A) | -ssList(B) | ssList(f11(A,B)) | -segmentP(A,B). [assumption]. -ssList(A) | -ssList(B) | ssList(f12(A,B)) | -segmentP(A,B). [assumption]. -ssList(A) | -ssList(B) | app(app(f11(A,B),B),f12(A,B)) = A | -segmentP(A,B). [assumption]. -ssList(A) | -ssList(B) | ssList(f13(A,B)) | -ssList(C) | -ssList(D) | app(app(C,B),D) != A. [assumption]. -ssList(A) | -ssList(B) | ssList(f14(A,B)) | -ssList(C) | -ssList(D) | app(app(C,B),D) != A. [assumption]. -ssList(A) | -ssList(B) | app(app(f13(A,B),B),f14(A,B)) = A | -ssList(C) | -ssList(D) | app(app(C,B),D) != A. [assumption]. -ssList(A) | cyclefreeP(A) | ssItem(f15(A)). [assumption]. -ssList(A) | cyclefreeP(A) | ssItem(f16(A)). [assumption]. -ssList(A) | cyclefreeP(A) | leq(f15(A),f16(A)). [assumption]. -ssList(A) | cyclefreeP(A) | leq(f16(A),f15(A)). [assumption]. -ssList(A) | cyclefreeP(A) | ssList(f17(A)). [assumption]. -ssList(A) | cyclefreeP(A) | ssList(f18(A)). [assumption]. -ssList(A) | cyclefreeP(A) | ssList(f19(A)). [assumption]. -ssList(A) | cyclefreeP(A) | app(app(f17(A),cons(f15(A),f18(A))),cons(f16(A),f19(A))) = A. [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -cyclefreeP(A). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f20(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f21(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | leq(f20(A),f21(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | leq(f21(A),f20(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f22(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f23(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f24(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | app(app(f22(A),cons(f20(A),f23(A))),cons(f21(A),f24(A))) = A. [assumption]. -ssList(A) | totalorderP(A) | ssItem(f25(A)). [assumption]. -ssList(A) | totalorderP(A) | ssItem(f26(A)). [assumption]. -ssList(A) | totalorderP(A) | -leq(f25(A),f26(A)). [assumption]. -ssList(A) | totalorderP(A) | -leq(f26(A),f25(A)). [assumption]. -ssList(A) | totalorderP(A) | ssList(f27(A)). [assumption]. -ssList(A) | totalorderP(A) | ssList(f28(A)). [assumption]. -ssList(A) | totalorderP(A) | ssList(f29(A)). [assumption]. -ssList(A) | totalorderP(A) | app(app(f27(A),cons(f25(A),f28(A))),cons(f26(A),f29(A))) = A. [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -totalorderP(A). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f30(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f31(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -leq(f30(A),f31(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -leq(f31(A),f30(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f32(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f33(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f34(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | app(app(f32(A),cons(f30(A),f33(A))),cons(f31(A),f34(A))) = A. [assumption]. -ssList(A) | strictorderP(A) | ssItem(f35(A)). [assumption]. -ssList(A) | strictorderP(A) | ssItem(f36(A)). [assumption]. -ssList(A) | strictorderP(A) | -lt(f35(A),f36(A)). [assumption]. -ssList(A) | strictorderP(A) | -lt(f36(A),f35(A)). [assumption]. -ssList(A) | strictorderP(A) | ssList(f37(A)). [assumption]. -ssList(A) | strictorderP(A) | ssList(f38(A)). [assumption]. -ssList(A) | strictorderP(A) | ssList(f39(A)). [assumption]. -ssList(A) | strictorderP(A) | app(app(f37(A),cons(f35(A),f38(A))),cons(f36(A),f39(A))) = A. [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -strictorderP(A). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f40(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f41(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -lt(f40(A),f41(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -lt(f41(A),f40(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f42(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f43(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f44(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | app(app(f42(A),cons(f40(A),f43(A))),cons(f41(A),f44(A))) = A. [assumption]. -ssList(A) | totalorderedP(A) | ssItem(f45(A)). [assumption]. -ssList(A) | totalorderedP(A) | ssItem(f46(A)). [assumption]. -ssList(A) | totalorderedP(A) | -leq(f45(A),f46(A)). [assumption]. -ssList(A) | totalorderedP(A) | ssList(f47(A)). [assumption]. -ssList(A) | totalorderedP(A) | ssList(f48(A)). [assumption]. -ssList(A) | totalorderedP(A) | ssList(f49(A)). [assumption]. -ssList(A) | totalorderedP(A) | app(app(f47(A),cons(f45(A),f48(A))),cons(f46(A),f49(A))) = A. [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -totalorderedP(A). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f50(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f51(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -leq(f50(A),f51(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f52(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f53(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f54(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | app(app(f52(A),cons(f50(A),f53(A))),cons(f51(A),f54(A))) = A. [assumption]. -ssList(A) | strictorderedP(A) | ssItem(f55(A)). [assumption]. -ssList(A) | strictorderedP(A) | ssItem(f56(A)). [assumption]. -ssList(A) | strictorderedP(A) | -lt(f55(A),f56(A)). [assumption]. -ssList(A) | strictorderedP(A) | ssList(f57(A)). [assumption]. -ssList(A) | strictorderedP(A) | ssList(f58(A)). [assumption]. -ssList(A) | strictorderedP(A) | ssList(f59(A)). [assumption]. -ssList(A) | strictorderedP(A) | app(app(f57(A),cons(f55(A),f58(A))),cons(f56(A),f59(A))) = A. [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -strictorderedP(A). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f60(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f61(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -lt(f60(A),f61(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f62(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f63(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f64(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | app(app(f62(A),cons(f60(A),f63(A))),cons(f61(A),f64(A))) = A. [assumption]. -ssList(A) | duplicatefreeP(A) | ssItem(f65(A)). [assumption]. -ssList(A) | duplicatefreeP(A) | ssItem(f66(A)). [assumption]. -ssList(A) | duplicatefreeP(A) | f66(A) = f65(A). [assumption]. -ssList(A) | duplicatefreeP(A) | ssList(f67(A)). [assumption]. -ssList(A) | duplicatefreeP(A) | ssList(f68(A)). [assumption]. -ssList(A) | duplicatefreeP(A) | ssList(f69(A)). [assumption]. -ssList(A) | duplicatefreeP(A) | app(app(f67(A),cons(f65(A),f68(A))),cons(f66(A),f69(A))) = A. [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -duplicatefreeP(A). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f70(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f71(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | f71(A) = f70(A). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f72(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f73(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f74(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | app(app(f72(A),cons(f70(A),f73(A))),cons(f71(A),f74(A))) = A. [assumption]. -ssList(A) | equalelemsP(A) | ssItem(f75(A)). [assumption]. -ssList(A) | equalelemsP(A) | ssItem(f76(A)). [assumption]. -ssList(A) | equalelemsP(A) | f76(A) != f75(A). [assumption]. -ssList(A) | equalelemsP(A) | ssList(f77(A)). [assumption]. -ssList(A) | equalelemsP(A) | ssList(f78(A)). [assumption]. -ssList(A) | equalelemsP(A) | app(f77(A),cons(f75(A),cons(f76(A),f78(A)))) = A. [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | -ssList(E) | app(D,cons(B,cons(C,E))) != A | -equalelemsP(A). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | -ssList(E) | app(D,cons(B,cons(C,E))) != A | ssItem(f79(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | -ssList(E) | app(D,cons(B,cons(C,E))) != A | ssItem(f80(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | -ssList(E) | app(D,cons(B,cons(C,E))) != A | f80(A) != f79(A). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | -ssList(E) | app(D,cons(B,cons(C,E))) != A | ssList(f81(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | -ssList(E) | app(D,cons(B,cons(C,E))) != A | ssList(f82(A)). [assumption]. -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | -ssList(E) | app(D,cons(B,cons(C,E))) != A | app(f81(A),cons(f79(A),cons(f80(A),f82(A)))) = A. [assumption]. -ssList(A) | -ssList(B) | neq(A,B) | B = A. [assumption]. -ssList(A) | -ssList(B) | B != A | -neq(A,B). [assumption]. -ssList(A) | -ssItem(B) | ssList(cons(B,A)). [assumption]. ssList(nil). [assumption]. -ssList(A) | -ssItem(B) | cons(B,A) != A. [assumption]. -ssList(A) | -ssList(B) | -ssItem(C) | -ssItem(D) | cons(D,B) != cons(C,A) | D = C. [assumption]. -ssList(A) | -ssList(B) | B = A | -ssItem(C) | -ssItem(D) | cons(D,B) != cons(C,A). [assumption]. -ssList(A) | nil = A | ssList(f83(A)). [assumption]. -ssList(A) | nil = A | ssItem(f84(A)). [assumption]. -ssList(A) | nil = A | cons(f84(A),f83(A)) = A. [assumption]. -ssList(A) | -ssItem(B) | cons(B,A) != nil. [assumption]. -ssList(A) | nil = A | ssItem(hd(A)). [assumption]. -ssList(A) | -ssItem(B) | hd(cons(B,A)) = B. [assumption]. -ssList(A) | nil = A | ssList(tl(A)). [assumption]. -ssList(A) | -ssItem(B) | tl(cons(B,A)) = A. [assumption]. -ssList(A) | -ssList(B) | ssList(app(A,B)). [assumption]. -ssList(A) | -ssList(B) | -ssItem(C) | app(cons(C,B),A) = cons(C,app(B,A)). [assumption]. -ssList(A) | app(nil,A) = A. [assumption]. -ssItem(A) | -ssItem(B) | -leq(A,B) | -leq(B,A) | B = A. [assumption]. -ssItem(A) | -ssItem(B) | -leq(A,B) | -ssItem(C) | -leq(B,C) | leq(A,C). [assumption]. -ssItem(A) | leq(A,A). [assumption]. -ssItem(A) | -ssItem(B) | geq(A,B) | -leq(B,A). [assumption]. -ssItem(A) | -ssItem(B) | leq(B,A) | -geq(A,B). [assumption]. -ssItem(A) | -ssItem(B) | -lt(A,B) | -lt(B,A). [assumption]. -ssItem(A) | -ssItem(B) | -lt(A,B) | -ssItem(C) | -lt(B,C) | lt(A,C). [assumption]. -ssItem(A) | -ssItem(B) | gt(A,B) | -lt(B,A). [assumption]. -ssItem(A) | -ssItem(B) | lt(B,A) | -gt(A,B). [assumption]. -ssItem(A) | -ssList(B) | -memberP(B,A) | -ssList(C) | memberP(app(B,C),A). [assumption]. -ssItem(A) | -ssList(B) | -ssList(C) | memberP(app(B,C),A) | -memberP(C,A). [assumption]. -ssItem(A) | -ssList(B) | memberP(B,A) | -ssList(C) | memberP(C,A) | -memberP(app(B,C),A). [assumption]. -ssItem(A) | -ssItem(B) | B != A | -ssList(C) | memberP(cons(B,C),A). [assumption]. -ssItem(A) | -ssItem(B) | -ssList(C) | memberP(cons(B,C),A) | -memberP(C,A). [assumption]. -ssItem(A) | -ssItem(B) | B = A | -ssList(C) | memberP(C,A) | -memberP(cons(B,C),A). [assumption]. -ssItem(A) | -memberP(nil,A). [assumption]. -singletonP(nil). [assumption]. -ssList(A) | -ssList(B) | -frontsegP(A,B) | -ssList(C) | -frontsegP(B,C) | frontsegP(A,C). [assumption]. -ssList(A) | -ssList(B) | -frontsegP(A,B) | -frontsegP(B,A) | B = A. [assumption]. -ssList(A) | frontsegP(A,A). [assumption]. -ssList(A) | -ssList(B) | -frontsegP(A,B) | -ssList(C) | frontsegP(app(A,C),B). [assumption]. -ssItem(A) | -ssItem(B) | B != A | -ssList(C) | -ssList(D) | frontsegP(cons(A,C),cons(B,D)) | -frontsegP(C,D). [assumption]. -ssItem(A) | -ssItem(B) | B = A | -ssList(C) | -ssList(D) | -frontsegP(cons(A,C),cons(B,D)). [assumption]. -ssItem(A) | -ssItem(B) | -ssList(C) | -ssList(D) | frontsegP(C,D) | -frontsegP(cons(A,C),cons(B,D)). [assumption]. -ssList(A) | frontsegP(A,nil). [assumption]. -ssList(A) | frontsegP(nil,A) | nil != A. [assumption]. -ssList(A) | nil = A | -frontsegP(nil,A). [assumption]. -ssList(A) | -ssList(B) | -rearsegP(A,B) | -ssList(C) | -rearsegP(B,C) | rearsegP(A,C). [assumption]. -ssList(A) | -ssList(B) | -rearsegP(A,B) | -rearsegP(B,A) | B = A. [assumption]. -ssList(A) | rearsegP(A,A). [assumption]. -ssList(A) | -ssList(B) | -rearsegP(A,B) | -ssList(C) | rearsegP(app(C,A),B). [assumption]. -ssList(A) | rearsegP(A,nil). [assumption]. -ssList(A) | rearsegP(nil,A) | nil != A. [assumption]. -ssList(A) | nil = A | -rearsegP(nil,A). [assumption]. -ssList(A) | -ssList(B) | -segmentP(A,B) | -ssList(C) | -segmentP(B,C) | segmentP(A,C). [assumption]. -ssList(A) | -ssList(B) | -segmentP(A,B) | -segmentP(B,A) | B = A. [assumption]. -ssList(A) | segmentP(A,A). [assumption]. -ssList(A) | -ssList(B) | -segmentP(A,B) | -ssList(C) | -ssList(D) | segmentP(app(app(C,A),D),B). [assumption]. -ssList(A) | segmentP(A,nil). [assumption]. -ssList(A) | segmentP(nil,A) | nil != A. [assumption]. -ssList(A) | nil = A | -segmentP(nil,A). [assumption]. -ssItem(A) | cyclefreeP(cons(A,nil)). [assumption]. cyclefreeP(nil). [assumption]. -ssItem(A) | totalorderP(cons(A,nil)). [assumption]. totalorderP(nil). [assumption]. -ssItem(A) | strictorderP(cons(A,nil)). [assumption]. strictorderP(nil). [assumption]. -ssItem(A) | totalorderedP(cons(A,nil)). [assumption]. totalorderedP(nil). [assumption]. -ssItem(A) | -ssList(B) | totalorderedP(cons(A,B)) | nil != B. [assumption]. -ssItem(A) | -ssList(B) | totalorderedP(cons(A,B)) | nil = B | -totalorderedP(B) | -leq(A,hd(B)). [assumption]. -ssItem(A) | -ssList(B) | nil = B | totalorderedP(B) | -totalorderedP(cons(A,B)). [assumption]. -ssItem(A) | -ssList(B) | nil = B | leq(A,hd(B)) | -totalorderedP(cons(A,B)). [assumption]. -ssItem(A) | strictorderedP(cons(A,nil)). [assumption]. strictorderedP(nil). [assumption]. -ssItem(A) | -ssList(B) | strictorderedP(cons(A,B)) | nil != B. [assumption]. -ssItem(A) | -ssList(B) | strictorderedP(cons(A,B)) | nil = B | -strictorderedP(B) | -lt(A,hd(B)). [assumption]. -ssItem(A) | -ssList(B) | nil = B | strictorderedP(B) | -strictorderedP(cons(A,B)). [assumption]. -ssItem(A) | -ssList(B) | nil = B | lt(A,hd(B)) | -strictorderedP(cons(A,B)). [assumption]. -ssItem(A) | duplicatefreeP(cons(A,nil)). [assumption]. duplicatefreeP(nil). [assumption]. -ssItem(A) | equalelemsP(cons(A,nil)). [assumption]. equalelemsP(nil). [assumption]. -ssList(A) | nil = A | ssItem(f85(A)). [assumption]. -ssList(A) | nil = A | hd(A) = f85(A). [assumption]. -ssList(A) | nil = A | ssList(f86(A)). [assumption]. -ssList(A) | nil = A | tl(A) = f86(A). [assumption]. -ssList(A) | nil = A | -ssList(B) | nil = B | hd(B) != hd(A) | tl(B) != tl(A) | B = A. [assumption]. -ssList(A) | nil = A | cons(hd(A),tl(A)) = A. [assumption]. -ssList(A) | -ssList(B) | -ssList(C) | app(C,B) != app(A,B) | C = A. [assumption]. -ssList(A) | -ssList(B) | -ssList(C) | app(B,C) != app(B,A) | C = A. [assumption]. -ssList(A) | -ssItem(B) | app(cons(B,nil),A) = cons(B,A). [assumption]. -ssList(A) | -ssList(B) | -ssList(C) | app(app(A,B),C) = app(A,app(B,C)). [assumption]. -ssList(A) | nil != A | -ssList(B) | app(A,B) = nil | nil != B. [assumption]. -ssList(A) | -ssList(B) | nil = B | app(A,B) != nil. [assumption]. -ssList(A) | nil = A | -ssList(B) | app(A,B) != nil. [assumption]. -ssList(A) | app(A,nil) = A. [assumption]. -ssList(A) | nil = A | -ssList(B) | hd(app(A,B)) = hd(A). [assumption]. -ssList(A) | nil = A | -ssList(B) | tl(app(A,B)) = app(tl(A),B). [assumption]. -ssItem(A) | -ssItem(B) | -geq(A,B) | -geq(B,A) | B = A. [assumption]. -ssItem(A) | -ssItem(B) | -geq(A,B) | -ssItem(C) | -geq(B,C) | geq(A,C). [assumption]. -ssItem(A) | geq(A,A). [assumption]. -ssItem(A) | -lt(A,A). [assumption]. -ssItem(A) | -ssItem(B) | -leq(A,B) | -ssItem(C) | -lt(B,C) | lt(A,C). [assumption]. -ssItem(A) | -ssItem(B) | -leq(A,B) | B = A | lt(A,B). [assumption]. -ssItem(A) | -ssItem(B) | lt(A,B) | B = A | -leq(A,B). [assumption]. -ssItem(A) | -ssItem(B) | B != A | -lt(A,B). [assumption]. -ssItem(A) | -ssItem(B) | leq(A,B) | -lt(A,B). [assumption]. -ssItem(A) | -ssItem(B) | -gt(A,B) | -gt(B,A). [assumption]. -ssItem(A) | -ssItem(B) | -gt(A,B) | -ssItem(C) | -gt(B,C) | gt(A,C). [assumption]. ssList(c3). [assumption]. ssList(c4). [assumption]. -segmentP(c4,c3). [assumption]. ssList(c5). [assumption]. c5 = c3. [assumption]. totalorderedP(c5). [assumption]. ssList(c6). [assumption]. c6 = c4. [assumption]. ssList(c7). [assumption]. -ssItem(A) | -ssItem(B) | -leq(A,B) | -ssList(C) | app(cons(B,nil),C) != c5 | -ssList(D) | app(D,cons(A,nil)) != c7. [assumption]. ssList(c8). [assumption]. app(app(c7,c5),c8) = c6. [assumption]. -ssItem(A) | -ssItem(B) | -leq(B,A) | -ssList(C) | app(C,cons(B,nil)) != c5 | -ssList(D) | app(cons(A,nil),D) != c8. [assumption]. nil = c6. [assumption]. end_of_list. formulas(demodulators). end_of_list. Auto_denials: (no changes). Term ordering decisions: Predicate symbol precedence: predicate_order([ =, ssList, ssItem, totalorderedP, strictorderedP, strictorderP, totalorderP, cyclefreeP, duplicatefreeP, equalelemsP, singletonP, leq, lt, frontsegP, memberP, segmentP, rearsegP, geq, gt, neq ]). Function symbol precedence: function_order([ nil, c5, c6, c3, c4, c7, c8, c1, c2, app, cons, f1, f10, f11, f12, f13, f14, f2, f3, f4, f7, f8, f9, hd, tl, f15, f16, f20, f21, f25, f26, f30, f31, f35, f36, f40, f41, f45, f46, f50, f51, f55, f56, f60, f61, f65, f66, f70, f71, f75, f76, f79, f80, f17, f18, f19, f22, f23, f24, f27, f28, f29, f32, f33, f34, f37, f38, f39, f42, f43, f44, f47, f48, f49, f5, f52, f53, f54, f57, f58, f59, f6, f62, f63, f64, f67, f68, f69, f72, f73, f74, f77, f78, f81, f82, f83, f84, f85, f86 ]). After inverse_order: (no changes). Auto_process settings: % set(factor). % (non-Horn) % set(back_unit_deletion). % (non-Horn) % set(back_unit_deletion) -> set(unit_deletion). ============================== end of process initial clauses ======== ============================== CLAUSES FOR SEARCH ==================== % Clauses after input processing: formulas(usable). end_of_list. formulas(sos). 1 -ssItem(A) | -ssItem(B) | neq(A,B) | B = A # props([maximal([3]),maximal_signed([1,2,3]),selected([])]). [assumption]. 2 -ssItem(A) | -ssItem(B) | B != A | -neq(A,B) # props([maximal([4]),maximal_signed([4]),selected([])]). [assumption]. 3 ssItem(c1) # props([maximal([1]),maximal_signed([1]),selected([])]). [assumption]. 4 ssItem(c2) # props([maximal([1]),maximal_signed([1]),selected([])]). [assumption]. 5 c2 != c1 # props([maximal([1]),maximal_signed([1]),selected([])]). [assumption]. 6 -ssList(A) | -ssItem(B) | memberP(A,B) | -ssList(C) | -ssList(D) | app(C,cons(B,D)) != A # props([maximal([3]),maximal_signed([2,3]),selected([])]). [assumption]. 7 -ssList(A) | -ssItem(B) | ssList(f1(A,B)) | -memberP(A,B) # props([maximal([4]),maximal_signed([3,4]),selected([])]). [assumption]. 8 -ssList(A) | -ssItem(B) | ssList(f2(A,B)) | -memberP(A,B) # props([maximal([4]),maximal_signed([3,4]),selected([])]). [assumption]. 9 -ssList(A) | -ssItem(B) | app(f1(A,B),cons(B,f2(A,B))) = A | -memberP(A,B) # props([maximal([4]),maximal_signed([3,4]),selected([])]). [assumption]. 10 -ssList(A) | -ssItem(B) | ssList(f3(A,B)) | -ssList(C) | -ssList(D) | app(C,cons(B,D)) != A # props([maximal([2]),maximal_signed([2,3]),selected([])]). [assumption]. 11 -ssList(A) | -ssItem(B) | ssList(f4(A,B)) | -ssList(C) | -ssList(D) | app(C,cons(B,D)) != A # props([maximal([2]),maximal_signed([2,3]),selected([])]). [assumption]. 12 -ssList(A) | -ssItem(B) | app(f3(A,B),cons(B,f4(A,B))) = A | -ssList(C) | -ssList(D) | app(C,cons(B,D)) != A # props([maximal([2]),maximal_signed([2,3]),selected([])]). [assumption]. 13 -ssList(A) | singletonP(A) | -ssItem(B) | cons(B,nil) != A # props([maximal([2]),maximal_signed([2,3]),selected([])]). [assumption]. 14 -ssList(A) | ssItem(f5(A)) | -singletonP(A) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [assumption]. 15 -ssList(A) | cons(f5(A),nil) = A | -singletonP(A) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [assumption]. 16 -ssList(A) | ssItem(f6(A)) | -ssItem(B) | cons(B,nil) != A # props([maximal([2,3]),maximal_signed([2,3]),selected([])]). [assumption]. 17 -ssList(A) | cons(f6(A),nil) = A | -ssItem(B) | cons(B,nil) != A # props([maximal([3]),maximal_signed([2,3]),selected([])]). [assumption]. 18 -ssList(A) | -ssList(B) | frontsegP(A,B) | -ssList(C) | app(B,C) != A # props([maximal([3]),maximal_signed([1,2,3,4]),selected([])]). [assumption]. 19 -ssList(A) | -ssList(B) | ssList(f7(A,B)) | -frontsegP(A,B) # props([maximal([4]),maximal_signed([3,4]),selected([])]). [assumption]. 20 -ssList(A) | -ssList(B) | app(B,f7(A,B)) = A | -frontsegP(A,B) # props([maximal([4]),maximal_signed([3,4]),selected([])]). [assumption]. 21 -ssList(A) | -ssList(B) | ssList(f8(A,B)) | -ssList(C) | app(B,C) != A # props([maximal([3,4]),maximal_signed([1,2,3,4]),selected([])]). [assumption]. 22 -ssList(A) | -ssList(B) | app(B,f8(A,B)) = A | -ssList(C) | app(B,C) != A # props([maximal([1,2,4]),maximal_signed([1,2,3,4]),selected([])]). [assumption]. 23 -ssList(A) | -ssList(B) | rearsegP(A,B) | -ssList(C) | app(C,B) != A # props([maximal([3]),maximal_signed([1,2,3,4]),selected([])]). [assumption]. 24 -ssList(A) | -ssList(B) | ssList(f9(A,B)) | -rearsegP(A,B) # props([maximal([4]),maximal_signed([3,4]),selected([])]). [assumption]. 25 -ssList(A) | -ssList(B) | app(f9(A,B),B) = A | -rearsegP(A,B) # props([maximal([4]),maximal_signed([3,4]),selected([])]). [assumption]. 26 -ssList(A) | -ssList(B) | ssList(f10(A,B)) | -ssList(C) | app(C,B) != A # props([maximal([3,4]),maximal_signed([1,2,3,4]),selected([])]). [assumption]. 27 -ssList(A) | -ssList(B) | app(f10(A,B),B) = A | -ssList(C) | app(C,B) != A # props([maximal([1,2,4]),maximal_signed([1,2,3,4]),selected([])]). [assumption]. 28 -ssList(A) | -ssList(B) | segmentP(A,B) | -ssList(C) | -ssList(D) | app(app(C,B),D) != A # props([maximal([3]),maximal_signed([1,2,3,4,5]),selected([])]). [assumption]. 29 -ssList(A) | -ssList(B) | ssList(f11(A,B)) | -segmentP(A,B) # props([maximal([4]),maximal_signed([3,4]),selected([])]). [assumption]. 30 -ssList(A) | -ssList(B) | ssList(f12(A,B)) | -segmentP(A,B) # props([maximal([4]),maximal_signed([3,4]),selected([])]). [assumption]. 31 -ssList(A) | -ssList(B) | app(app(f11(A,B),B),f12(A,B)) = A | -segmentP(A,B) # props([maximal([4]),maximal_signed([3,4]),selected([])]). [assumption]. 32 -ssList(A) | -ssList(B) | ssList(f13(A,B)) | -ssList(C) | -ssList(D) | app(app(C,B),D) != A # props([maximal([3,4,5]),maximal_signed([1,2,3,4,5]),selected([])]). [assumption]. 33 -ssList(A) | -ssList(B) | ssList(f14(A,B)) | -ssList(C) | -ssList(D) | app(app(C,B),D) != A # props([maximal([3,4,5]),maximal_signed([1,2,3,4,5]),selected([])]). [assumption]. 34 -ssList(A) | -ssList(B) | app(app(f13(A,B),B),f14(A,B)) = A | -ssList(C) | -ssList(D) | app(app(C,B),D) != A # props([maximal([1,2,4,5]),maximal_signed([1,2,3,4,5]),selected([])]). [assumption]. 35 -ssList(A) | cyclefreeP(A) | ssItem(f15(A)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 36 -ssList(A) | cyclefreeP(A) | ssItem(f16(A)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 37 -ssList(A) | cyclefreeP(A) | leq(f15(A),f16(A)) # props([maximal([3]),maximal_signed([1,3]),selected([])]). [assumption]. 38 -ssList(A) | cyclefreeP(A) | leq(f16(A),f15(A)) # props([maximal([3]),maximal_signed([1,3]),selected([])]). [assumption]. 39 -ssList(A) | cyclefreeP(A) | ssList(f17(A)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 40 -ssList(A) | cyclefreeP(A) | ssList(f18(A)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 41 -ssList(A) | cyclefreeP(A) | ssList(f19(A)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 42 -ssList(A) | cyclefreeP(A) | app(app(f17(A),cons(f15(A),f18(A))),cons(f16(A),f19(A))) = A # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 43 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -cyclefreeP(A) # props([maximal([4,5]),maximal_signed([4,5]),selected([])]). [assumption]. 44 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f20(A)) # props([maximal([4,5]),maximal_signed([4,5,10]),selected([])]). [assumption]. 45 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f21(A)) # props([maximal([4,5]),maximal_signed([4,5,10]),selected([])]). [assumption]. 46 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | leq(f20(A),f21(A)) # props([maximal([4,5,10]),maximal_signed([4,5,10]),selected([])]). [assumption]. 47 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | leq(f21(A),f20(A)) # props([maximal([4,5,10]),maximal_signed([4,5,10]),selected([])]). [assumption]. 48 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f22(A)) # props([maximal([4,5]),maximal_signed([4,5,10]),selected([])]). [assumption]. 49 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f23(A)) # props([maximal([4,5]),maximal_signed([4,5,10]),selected([])]). [assumption]. 50 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f24(A)) # props([maximal([4,5]),maximal_signed([4,5,10]),selected([])]). [assumption]. 51 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | app(app(f22(A),cons(f20(A),f23(A))),cons(f21(A),f24(A))) = A # props([maximal([4,5]),maximal_signed([4,5,10]),selected([])]). [assumption]. 52 -ssList(A) | totalorderP(A) | ssItem(f25(A)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 53 -ssList(A) | totalorderP(A) | ssItem(f26(A)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 54 -ssList(A) | totalorderP(A) | -leq(f25(A),f26(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [assumption]. 55 -ssList(A) | totalorderP(A) | -leq(f26(A),f25(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [assumption]. 56 -ssList(A) | totalorderP(A) | ssList(f27(A)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 57 -ssList(A) | totalorderP(A) | ssList(f28(A)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 58 -ssList(A) | totalorderP(A) | ssList(f29(A)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 59 -ssList(A) | totalorderP(A) | app(app(f27(A),cons(f25(A),f28(A))),cons(f26(A),f29(A))) = A # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 60 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -totalorderP(A) # props([maximal([4,5]),maximal_signed([4,5,10]),selected([])]). [assumption]. 61 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f30(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [assumption]. 62 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f31(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [assumption]. 63 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -leq(f30(A),f31(A)) # props([maximal([4,5,10]),maximal_signed([4,5,10]),selected([])]). [assumption]. 64 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -leq(f31(A),f30(A)) # props([maximal([4,5,10]),maximal_signed([4,5,10]),selected([])]). [assumption]. 65 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f32(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [assumption]. 66 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f33(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [assumption]. 67 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f34(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [assumption]. 68 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | app(app(f32(A),cons(f30(A),f33(A))),cons(f31(A),f34(A))) = A # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [assumption]. 69 -ssList(A) | strictorderP(A) | ssItem(f35(A)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 70 -ssList(A) | strictorderP(A) | ssItem(f36(A)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 71 -ssList(A) | strictorderP(A) | -lt(f35(A),f36(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [assumption]. 72 -ssList(A) | strictorderP(A) | -lt(f36(A),f35(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [assumption]. 73 -ssList(A) | strictorderP(A) | ssList(f37(A)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 74 -ssList(A) | strictorderP(A) | ssList(f38(A)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 75 -ssList(A) | strictorderP(A) | ssList(f39(A)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 76 -ssList(A) | strictorderP(A) | app(app(f37(A),cons(f35(A),f38(A))),cons(f36(A),f39(A))) = A # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 77 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -strictorderP(A) # props([maximal([4,5]),maximal_signed([4,5,10]),selected([])]). [assumption]. 78 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f40(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [assumption]. 79 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f41(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [assumption]. 80 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -lt(f40(A),f41(A)) # props([maximal([4,5,10]),maximal_signed([4,5,10]),selected([])]). [assumption]. 81 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -lt(f41(A),f40(A)) # props([maximal([4,5,10]),maximal_signed([4,5,10]),selected([])]). [assumption]. 82 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f42(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [assumption]. 83 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f43(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [assumption]. 84 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f44(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [assumption]. 85 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | app(app(f42(A),cons(f40(A),f43(A))),cons(f41(A),f44(A))) = A # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [assumption]. 86 -ssList(A) | totalorderedP(A) | ssItem(f45(A)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 87 -ssList(A) | totalorderedP(A) | ssItem(f46(A)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 88 -ssList(A) | totalorderedP(A) | -leq(f45(A),f46(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [assumption]. 89 -ssList(A) | totalorderedP(A) | ssList(f47(A)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 90 -ssList(A) | totalorderedP(A) | ssList(f48(A)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 91 -ssList(A) | totalorderedP(A) | ssList(f49(A)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 92 -ssList(A) | totalorderedP(A) | app(app(f47(A),cons(f45(A),f48(A))),cons(f46(A),f49(A))) = A # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 93 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -totalorderedP(A) # props([maximal([4]),maximal_signed([4,9]),selected([])]). [assumption]. 94 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f50(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [assumption]. 95 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f51(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [assumption]. 96 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -leq(f50(A),f51(A)) # props([maximal([4,9]),maximal_signed([4,9]),selected([])]). [assumption]. 97 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f52(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [assumption]. 98 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f53(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [assumption]. 99 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f54(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [assumption]. 100 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | app(app(f52(A),cons(f50(A),f53(A))),cons(f51(A),f54(A))) = A # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [assumption]. 101 -ssList(A) | strictorderedP(A) | ssItem(f55(A)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 102 -ssList(A) | strictorderedP(A) | ssItem(f56(A)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 103 -ssList(A) | strictorderedP(A) | -lt(f55(A),f56(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [assumption]. 104 -ssList(A) | strictorderedP(A) | ssList(f57(A)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 105 -ssList(A) | strictorderedP(A) | ssList(f58(A)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 106 -ssList(A) | strictorderedP(A) | ssList(f59(A)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 107 -ssList(A) | strictorderedP(A) | app(app(f57(A),cons(f55(A),f58(A))),cons(f56(A),f59(A))) = A # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 108 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -strictorderedP(A) # props([maximal([4]),maximal_signed([4,9]),selected([])]). [assumption]. 109 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f60(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [assumption]. 110 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f61(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [assumption]. 111 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -lt(f60(A),f61(A)) # props([maximal([4,9]),maximal_signed([4,9]),selected([])]). [assumption]. 112 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f62(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [assumption]. 113 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f63(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [assumption]. 114 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f64(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [assumption]. 115 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | app(app(f62(A),cons(f60(A),f63(A))),cons(f61(A),f64(A))) = A # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [assumption]. 116 -ssList(A) | duplicatefreeP(A) | ssItem(f65(A)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 117 -ssList(A) | duplicatefreeP(A) | ssItem(f66(A)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 118 -ssList(A) | duplicatefreeP(A) | f66(A) = f65(A) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 119 -ssList(A) | duplicatefreeP(A) | ssList(f67(A)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 120 -ssList(A) | duplicatefreeP(A) | ssList(f68(A)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 121 -ssList(A) | duplicatefreeP(A) | ssList(f69(A)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 122 -ssList(A) | duplicatefreeP(A) | app(app(f67(A),cons(f65(A),f68(A))),cons(f66(A),f69(A))) = A # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 123 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | -duplicatefreeP(A) # props([maximal([9]),maximal_signed([9]),selected([])]). [assumption]. 124 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f70(A)) # props([maximal([2,3,9]),maximal_signed([2,3,9]),selected([])]). [assumption]. 125 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssItem(f71(A)) # props([maximal([2,3,9]),maximal_signed([2,3,9]),selected([])]). [assumption]. 126 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | f71(A) = f70(A) # props([maximal([2,3]),maximal_signed([2,3,9]),selected([])]). [assumption]. 127 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f72(A)) # props([maximal([2,3]),maximal_signed([2,3,9]),selected([])]). [assumption]. 128 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f73(A)) # props([maximal([2,3]),maximal_signed([2,3,9]),selected([])]). [assumption]. 129 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | ssList(f74(A)) # props([maximal([2,3]),maximal_signed([2,3,9]),selected([])]). [assumption]. 130 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | -ssList(F) | app(app(D,cons(B,E)),cons(C,F)) != A | app(app(f72(A),cons(f70(A),f73(A))),cons(f71(A),f74(A))) = A # props([maximal([2,3]),maximal_signed([2,3,9]),selected([])]). [assumption]. 131 -ssList(A) | equalelemsP(A) | ssItem(f75(A)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 132 -ssList(A) | equalelemsP(A) | ssItem(f76(A)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 133 -ssList(A) | equalelemsP(A) | f76(A) != f75(A) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 134 -ssList(A) | equalelemsP(A) | ssList(f77(A)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 135 -ssList(A) | equalelemsP(A) | ssList(f78(A)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 136 -ssList(A) | equalelemsP(A) | app(f77(A),cons(f75(A),cons(f76(A),f78(A)))) = A # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 137 -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | -ssList(E) | app(D,cons(B,cons(C,E))) != A | -equalelemsP(A) # props([maximal([8]),maximal_signed([4,8]),selected([])]). [assumption]. 138 -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | -ssList(E) | app(D,cons(B,cons(C,E))) != A | ssItem(f79(A)) # props([maximal([2,3,8]),maximal_signed([2,3,8]),selected([])]). [assumption]. 139 -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | -ssList(E) | app(D,cons(B,cons(C,E))) != A | ssItem(f80(A)) # props([maximal([2,3,8]),maximal_signed([2,3,8]),selected([])]). [assumption]. 140 -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | -ssList(E) | app(D,cons(B,cons(C,E))) != A | f80(A) != f79(A) # props([maximal([2,3]),maximal_signed([2,3,4]),selected([])]). [assumption]. 141 -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | -ssList(E) | app(D,cons(B,cons(C,E))) != A | ssList(f81(A)) # props([maximal([2,3]),maximal_signed([2,3,8]),selected([])]). [assumption]. 142 -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | -ssList(E) | app(D,cons(B,cons(C,E))) != A | ssList(f82(A)) # props([maximal([2,3]),maximal_signed([2,3,8]),selected([])]). [assumption]. 143 -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | -ssList(E) | app(D,cons(B,cons(C,E))) != A | app(f81(A),cons(f79(A),cons(f80(A),f82(A)))) = A # props([maximal([2,3]),maximal_signed([2,3,4,8]),selected([])]). [assumption]. 144 -ssList(A) | -ssList(B) | neq(A,B) | B = A # props([maximal([3]),maximal_signed([1,2,3]),selected([])]). [assumption]. 145 -ssList(A) | -ssList(B) | B != A | -neq(A,B) # props([maximal([4]),maximal_signed([4]),selected([])]). [assumption]. 146 -ssList(A) | -ssItem(B) | ssList(cons(B,A)) # props([maximal([2]),maximal_signed([2,3]),selected([])]). [assumption]. 147 ssList(nil) # props([maximal([1]),maximal_signed([1]),selected([])]). [assumption]. 148 -ssList(A) | -ssItem(B) | cons(B,A) != A # props([maximal([2]),maximal_signed([2]),selected([])]). [assumption]. 149 -ssList(A) | -ssList(B) | -ssItem(C) | -ssItem(D) | cons(D,B) != cons(C,A) | D = C # props([maximal([3,4]),maximal_signed([3,4,6]),selected([])]). [assumption]. 150 -ssList(A) | -ssList(B) | B = A | -ssItem(C) | -ssItem(D) | cons(D,B) != cons(C,A) # props([maximal([4,5]),maximal_signed([3,4,5]),selected([])]). [assumption]. 151 -ssList(A) | nil = A | ssList(f83(A)) # props([maximal([3]),maximal_signed([1,3]),selected([])]). [assumption]. 152 -ssList(A) | nil = A | ssItem(f84(A)) # props([maximal([3]),maximal_signed([1,3]),selected([])]). [assumption]. 153 -ssList(A) | nil = A | cons(f84(A),f83(A)) = A # props([maximal([1]),maximal_signed([1,3]),selected([])]). [assumption]. 154 -ssList(A) | -ssItem(B) | cons(B,A) != nil # props([maximal([2]),maximal_signed([2]),selected([])]). [assumption]. 155 -ssList(A) | nil = A | ssItem(hd(A)) # props([maximal([3]),maximal_signed([1,3]),selected([])]). [assumption]. 156 -ssList(A) | -ssItem(B) | hd(cons(B,A)) = B # props([maximal([2]),maximal_signed([2,3]),selected([])]). [assumption]. 157 -ssList(A) | nil = A | ssList(tl(A)) # props([maximal([3]),maximal_signed([1,3]),selected([])]). [assumption]. 158 -ssList(A) | -ssItem(B) | tl(cons(B,A)) = A # props([maximal([2]),maximal_signed([2,3]),selected([])]). [assumption]. 159 -ssList(A) | -ssList(B) | ssList(app(A,B)) # props([maximal([3]),maximal_signed([1,2,3]),selected([])]). [assumption]. 161 -ssList(A) | -ssList(B) | -ssItem(C) | cons(C,app(B,A)) = app(cons(C,B),A) # props([maximal([3]),maximal_signed([3,4]),selected([])]). [copy(160),flip(d)]. 162 -ssList(A) | app(nil,A) = A # props([maximal([1]),maximal_signed([1,2]),selected([])]). [assumption]. 163 -ssItem(A) | -ssItem(B) | -leq(A,B) | -leq(B,A) | B = A # props([maximal([3,4]),maximal_signed([3,4,5]),selected([])]). [assumption]. 164 -ssItem(A) | -ssItem(B) | -leq(A,B) | -ssItem(C) | -leq(B,C) | leq(A,C) # props([maximal([3,5,6]),maximal_signed([3,5,6]),selected([])]). [assumption]. 165 -ssItem(A) | leq(A,A) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 166 -ssItem(A) | -ssItem(B) | geq(A,B) | -leq(B,A) # props([maximal([3]),maximal_signed([3,4]),selected([])]). [assumption]. 167 -ssItem(A) | -ssItem(B) | leq(B,A) | -geq(A,B) # props([maximal([4]),maximal_signed([3,4]),selected([])]). [assumption]. 168 -ssItem(A) | -ssItem(B) | -lt(A,B) | -lt(B,A) # props([maximal([3,4]),maximal_signed([3,4]),selected([])]). [assumption]. 169 -ssItem(A) | -ssItem(B) | -lt(A,B) | -ssItem(C) | -lt(B,C) | lt(A,C) # props([maximal([3,5,6]),maximal_signed([3,5,6]),selected([])]). [assumption]. 170 -ssItem(A) | -ssItem(B) | gt(A,B) | -lt(B,A) # props([maximal([3]),maximal_signed([3,4]),selected([])]). [assumption]. 171 -ssItem(A) | -ssItem(B) | lt(B,A) | -gt(A,B) # props([maximal([4]),maximal_signed([3,4]),selected([])]). [assumption]. 172 -ssItem(A) | -ssList(B) | -memberP(B,A) | -ssList(C) | memberP(app(B,C),A) # props([maximal([5]),maximal_signed([3,5]),selected([])]). [assumption]. 173 -ssItem(A) | -ssList(B) | -ssList(C) | memberP(app(B,C),A) | -memberP(C,A) # props([maximal([4]),maximal_signed([4,5]),selected([])]). [assumption]. 174 -ssItem(A) | -ssList(B) | memberP(B,A) | -ssList(C) | memberP(C,A) | -memberP(app(B,C),A) # props([maximal([6]),maximal_signed([3,5,6]),selected([])]). [assumption]. 175 -ssItem(A) | -ssItem(B) | B != A | -ssList(C) | memberP(cons(B,C),A) # props([maximal([5]),maximal_signed([1,2,5]),selected([])]). [assumption]. 176 -ssItem(A) | -ssItem(B) | -ssList(C) | memberP(cons(B,C),A) | -memberP(C,A) # props([maximal([4]),maximal_signed([4,5]),selected([])]). [assumption]. 177 -ssItem(A) | -ssItem(B) | B = A | -ssList(C) | memberP(C,A) | -memberP(cons(B,C),A) # props([maximal([6]),maximal_signed([5,6]),selected([])]). [assumption]. 178 -ssItem(A) | -memberP(nil,A) # props([maximal([2]),maximal_signed([2]),selected([])]). [assumption]. 179 -singletonP(nil) # props([maximal([1]),maximal_signed([1]),selected([])]). [assumption]. 180 -ssList(A) | -ssList(B) | -frontsegP(A,B) | -ssList(C) | -frontsegP(B,C) | frontsegP(A,C) # props([maximal([3,5,6]),maximal_signed([3,5,6]),selected([])]). [assumption]. 181 -ssList(A) | -ssList(B) | -frontsegP(A,B) | -frontsegP(B,A) | B = A # props([maximal([3,4]),maximal_signed([3,4,5]),selected([])]). [assumption]. 182 -ssList(A) | frontsegP(A,A) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 183 -ssList(A) | -ssList(B) | -frontsegP(A,B) | -ssList(C) | frontsegP(app(A,C),B) # props([maximal([5]),maximal_signed([3,5]),selected([])]). [assumption]. 184 -ssItem(A) | -ssItem(B) | B != A | -ssList(C) | -ssList(D) | frontsegP(cons(A,C),cons(B,D)) | -frontsegP(C,D) # props([maximal([6]),maximal_signed([6,7]),selected([])]). [assumption]. 185 -ssItem(A) | -ssItem(B) | B = A | -ssList(C) | -ssList(D) | -frontsegP(cons(A,C),cons(B,D)) # props([maximal([6]),maximal_signed([3,6]),selected([])]). [assumption]. 186 -ssItem(A) | -ssItem(B) | -ssList(C) | -ssList(D) | frontsegP(C,D) | -frontsegP(cons(A,C),cons(B,D)) # props([maximal([6]),maximal_signed([5,6]),selected([])]). [assumption]. 187 -ssList(A) | frontsegP(A,nil) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 188 -ssList(A) | frontsegP(nil,A) | nil != A # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 189 -ssList(A) | nil = A | -frontsegP(nil,A) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [assumption]. 190 -ssList(A) | -ssList(B) | -rearsegP(A,B) | -ssList(C) | -rearsegP(B,C) | rearsegP(A,C) # props([maximal([3,5,6]),maximal_signed([3,5,6]),selected([])]). [assumption]. 191 -ssList(A) | -ssList(B) | -rearsegP(A,B) | -rearsegP(B,A) | B = A # props([maximal([3,4]),maximal_signed([3,4,5]),selected([])]). [assumption]. 192 -ssList(A) | rearsegP(A,A) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 193 -ssList(A) | -ssList(B) | -rearsegP(A,B) | -ssList(C) | rearsegP(app(C,A),B) # props([maximal([5]),maximal_signed([3,5]),selected([])]). [assumption]. 194 -ssList(A) | rearsegP(A,nil) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 195 -ssList(A) | rearsegP(nil,A) | nil != A # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 196 -ssList(A) | nil = A | -rearsegP(nil,A) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [assumption]. 197 -ssList(A) | -ssList(B) | -segmentP(A,B) | -ssList(C) | -segmentP(B,C) | segmentP(A,C) # props([maximal([3,5,6]),maximal_signed([3,5,6]),selected([])]). [assumption]. 198 -ssList(A) | -ssList(B) | -segmentP(A,B) | -segmentP(B,A) | B = A # props([maximal([3,4]),maximal_signed([3,4,5]),selected([])]). [assumption]. 199 -ssList(A) | segmentP(A,A) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 200 -ssList(A) | -ssList(B) | -segmentP(A,B) | -ssList(C) | -ssList(D) | segmentP(app(app(C,A),D),B) # props([maximal([6]),maximal_signed([3,6]),selected([])]). [assumption]. 201 -ssList(A) | segmentP(A,nil) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 202 -ssList(A) | segmentP(nil,A) | nil != A # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 203 -ssList(A) | nil = A | -segmentP(nil,A) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [assumption]. 204 -ssItem(A) | cyclefreeP(cons(A,nil)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 205 cyclefreeP(nil) # props([maximal([1]),maximal_signed([1]),selected([])]). [assumption]. 206 -ssItem(A) | totalorderP(cons(A,nil)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 207 totalorderP(nil) # props([maximal([1]),maximal_signed([1]),selected([])]). [assumption]. 208 -ssItem(A) | strictorderP(cons(A,nil)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 209 strictorderP(nil) # props([maximal([1]),maximal_signed([1]),selected([])]). [assumption]. 210 -ssItem(A) | totalorderedP(cons(A,nil)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 211 totalorderedP(nil) # props([maximal([1]),maximal_signed([1]),selected([])]). [assumption]. 212 -ssItem(A) | -ssList(B) | totalorderedP(cons(A,B)) | nil != B # props([maximal([3]),maximal_signed([1,3]),selected([])]). [assumption]. 213 -ssItem(A) | -ssList(B) | totalorderedP(cons(A,B)) | nil = B | -totalorderedP(B) | -leq(A,hd(B)) # props([maximal([6]),maximal_signed([3,6]),selected([])]). [assumption]. 214 -ssItem(A) | -ssList(B) | nil = B | totalorderedP(B) | -totalorderedP(cons(A,B)) # props([maximal([5]),maximal_signed([4,5]),selected([])]). [assumption]. 215 -ssItem(A) | -ssList(B) | nil = B | leq(A,hd(B)) | -totalorderedP(cons(A,B)) # props([maximal([4]),maximal_signed([4,5]),selected([])]). [assumption]. 216 -ssItem(A) | strictorderedP(cons(A,nil)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 217 strictorderedP(nil) # props([maximal([1]),maximal_signed([1]),selected([])]). [assumption]. 218 -ssItem(A) | -ssList(B) | strictorderedP(cons(A,B)) | nil != B # props([maximal([3]),maximal_signed([1,3]),selected([])]). [assumption]. 219 -ssItem(A) | -ssList(B) | strictorderedP(cons(A,B)) | nil = B | -strictorderedP(B) | -lt(A,hd(B)) # props([maximal([6]),maximal_signed([3,6]),selected([])]). [assumption]. 220 -ssItem(A) | -ssList(B) | nil = B | strictorderedP(B) | -strictorderedP(cons(A,B)) # props([maximal([5]),maximal_signed([4,5]),selected([])]). [assumption]. 221 -ssItem(A) | -ssList(B) | nil = B | lt(A,hd(B)) | -strictorderedP(cons(A,B)) # props([maximal([4]),maximal_signed([4,5]),selected([])]). [assumption]. 222 -ssItem(A) | duplicatefreeP(cons(A,nil)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 223 duplicatefreeP(nil) # props([maximal([1]),maximal_signed([1]),selected([])]). [assumption]. 224 -ssItem(A) | equalelemsP(cons(A,nil)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 225 equalelemsP(nil) # props([maximal([1]),maximal_signed([1]),selected([])]). [assumption]. 226 -ssList(A) | nil = A | ssItem(f85(A)) # props([maximal([3]),maximal_signed([1,3]),selected([])]). [assumption]. 228 -ssList(A) | nil = A | f85(A) = hd(A) # props([maximal([1]),maximal_signed([1,3]),selected([])]). [copy(227),flip(c)]. 229 -ssList(A) | nil = A | ssList(f86(A)) # props([maximal([3]),maximal_signed([1,3]),selected([])]). [assumption]. 231 -ssList(A) | nil = A | f86(A) = tl(A) # props([maximal([1]),maximal_signed([1,3]),selected([])]). [copy(230),flip(c)]. 232 -ssList(A) | nil = A | -ssList(B) | nil = B | hd(B) != hd(A) | tl(B) != tl(A) | B = A # props([maximal([1,3]),maximal_signed([1,2,3,4,7]),selected([])]). [assumption]. 233 -ssList(A) | nil = A | cons(hd(A),tl(A)) = A # props([maximal([1]),maximal_signed([1,3]),selected([])]). [assumption]. 234 -ssList(A) | -ssList(B) | -ssList(C) | app(C,B) != app(A,B) | C = A # props([maximal([1,2,3]),maximal_signed([1,2,3,5]),selected([])]). [assumption]. 235 -ssList(A) | -ssList(B) | -ssList(C) | app(B,C) != app(B,A) | C = A # props([maximal([1,2,3]),maximal_signed([1,2,3,5]),selected([])]). [assumption]. 236 -ssList(A) | -ssItem(B) | app(cons(B,nil),A) = cons(B,A) # props([maximal([2]),maximal_signed([2,3]),selected([])]). [assumption]. 237 -ssList(A) | -ssList(B) | -ssList(C) | app(app(A,B),C) = app(A,app(B,C)) # props([maximal([1,2,3]),maximal_signed([1,2,3,4]),selected([])]). [assumption]. 238 -ssList(A) | nil != A | -ssList(B) | app(A,B) = nil | nil != B # props([maximal([1,3]),maximal_signed([1,3,4]),selected([])]). [assumption]. 239 -ssList(A) | -ssList(B) | nil = B | app(A,B) != nil # props([maximal([1,2]),maximal_signed([1,2,3]),selected([])]). [assumption]. 240 -ssList(A) | nil = A | -ssList(B) | app(A,B) != nil # props([maximal([1,3]),maximal_signed([1,2,3]),selected([])]). [assumption]. 241 -ssList(A) | app(A,nil) = A # props([maximal([1]),maximal_signed([1,2]),selected([])]). [assumption]. 242 -ssList(A) | nil = A | -ssList(B) | hd(app(A,B)) = hd(A) # props([maximal([1,3]),maximal_signed([1,3,4]),selected([])]). [assumption]. 243 -ssList(A) | nil = A | -ssList(B) | tl(app(A,B)) = app(tl(A),B) # props([maximal([1,3]),maximal_signed([1,3,4]),selected([])]). [assumption]. 244 -ssItem(A) | -ssItem(B) | -geq(A,B) | -geq(B,A) | B = A # props([maximal([3,4]),maximal_signed([3,4,5]),selected([])]). [assumption]. 245 -ssItem(A) | -ssItem(B) | -geq(A,B) | -ssItem(C) | -geq(B,C) | geq(A,C) # props([maximal([3,5,6]),maximal_signed([3,5,6]),selected([])]). [assumption]. 246 -ssItem(A) | geq(A,A) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [assumption]. 247 -ssItem(A) | -lt(A,A) # props([maximal([2]),maximal_signed([2]),selected([])]). [assumption]. 248 -ssItem(A) | -ssItem(B) | -leq(A,B) | -ssItem(C) | -lt(B,C) | lt(A,C) # props([maximal([5,6]),maximal_signed([5,6]),selected([])]). [assumption]. 249 -ssItem(A) | -ssItem(B) | -leq(A,B) | B = A | lt(A,B) # props([maximal([5]),maximal_signed([3,5]),selected([])]). [assumption]. 250 -ssItem(A) | -ssItem(B) | B != A | -lt(A,B) # props([maximal([4]),maximal_signed([4]),selected([])]). [assumption]. 251 -ssItem(A) | -ssItem(B) | leq(A,B) | -lt(A,B) # props([maximal([4]),maximal_signed([3,4]),selected([])]). [assumption]. 252 -ssItem(A) | -ssItem(B) | -gt(A,B) | -gt(B,A) # props([maximal([3,4]),maximal_signed([3,4]),selected([])]). [assumption]. 253 -ssItem(A) | -ssItem(B) | -gt(A,B) | -ssItem(C) | -gt(B,C) | gt(A,C) # props([maximal([3,5,6]),maximal_signed([3,5,6]),selected([])]). [assumption]. 257 ssList(c5) # props([maximal([1]),maximal_signed([1]),selected([])]). [assumption]. 259 c3 = c5 # props([maximal([1]),maximal_signed([1]),selected([])]). [copy(258),flip(a)]. 260 totalorderedP(c5) # props([maximal([1]),maximal_signed([1]),selected([])]). [assumption]. 264 ssList(c7) # props([maximal([1]),maximal_signed([1]),selected([])]). [assumption]. 265 -ssItem(A) | -ssItem(B) | -leq(A,B) | -ssList(C) | app(cons(B,nil),C) != c5 | -ssList(D) | app(D,cons(A,nil)) != c7 # props([maximal([3]),maximal_signed([3]),selected([])]). [assumption]. 266 ssList(c8) # props([maximal([1]),maximal_signed([1]),selected([])]). [assumption]. 268 -ssItem(A) | -ssItem(B) | -leq(B,A) | -ssList(C) | app(C,cons(B,nil)) != c5 | -ssList(D) | app(cons(A,nil),D) != c8 # props([maximal([3]),maximal_signed([3]),selected([])]). [assumption]. 270 c6 = nil # props([maximal([1]),maximal_signed([1]),selected([])]). [copy(269),flip(a)]. 271 -ssItem(A) | -neq(A,A) # props([maximal([2]),maximal_signed([2]),selected([])]). [factor(2,a,b),xx(b)]. 272 -ssList(A) | -ssItem(B) | memberP(A,B) | -ssList(C) | app(A,cons(B,C)) != A # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(6,a,d)]. 273 -ssList(A) | -ssItem(B) | memberP(A,B) | -ssList(C) | app(C,cons(B,A)) != A # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(6,a,e)]. 274 -ssList(A) | -ssItem(B) | memberP(A,B) | -ssList(C) | app(C,cons(B,C)) != A # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(6,d,e)]. 275 -ssList(A) | -ssItem(B) | ssList(f3(A,B)) | -ssList(C) | app(A,cons(B,C)) != A # props([maximal([2]),maximal_signed([2,3]),selected([])]). [factor(10,a,d)]. 276 -ssList(A) | -ssItem(B) | ssList(f3(A,B)) | -ssList(C) | app(C,cons(B,A)) != A # props([maximal([2]),maximal_signed([2,3]),selected([])]). [factor(10,a,e)]. 277 -ssList(A) | -ssItem(B) | ssList(f3(A,B)) | -ssList(C) | app(C,cons(B,C)) != A # props([maximal([2]),maximal_signed([2,3]),selected([])]). [factor(10,d,e)]. 278 -ssList(A) | -ssItem(B) | ssList(f4(A,B)) | -ssList(C) | app(A,cons(B,C)) != A # props([maximal([2]),maximal_signed([2,3]),selected([])]). [factor(11,a,d)]. 279 -ssList(A) | -ssItem(B) | ssList(f4(A,B)) | -ssList(C) | app(C,cons(B,A)) != A # props([maximal([2]),maximal_signed([2,3]),selected([])]). [factor(11,a,e)]. 280 -ssList(A) | -ssItem(B) | ssList(f4(A,B)) | -ssList(C) | app(C,cons(B,C)) != A # props([maximal([2]),maximal_signed([2,3]),selected([])]). [factor(11,d,e)]. 281 -ssList(A) | -ssItem(B) | app(f3(A,B),cons(B,f4(A,B))) = A | -ssList(C) | app(A,cons(B,C)) != A # props([maximal([2]),maximal_signed([2,3]),selected([])]). [factor(12,a,d)]. 282 -ssList(A) | -ssItem(B) | app(f3(A,B),cons(B,f4(A,B))) = A | -ssList(C) | app(C,cons(B,A)) != A # props([maximal([2]),maximal_signed([2,3]),selected([])]). [factor(12,a,e)]. 283 -ssList(A) | -ssItem(B) | app(f3(A,B),cons(B,f4(A,B))) = A | -ssList(C) | app(C,cons(B,C)) != A # props([maximal([2]),maximal_signed([2,3]),selected([])]). [factor(12,d,e)]. 284 -ssList(A) | -ssList(B) | frontsegP(A,B) | app(B,A) != A # props([maximal([3]),maximal_signed([1,2,3]),selected([])]). [factor(18,a,d)]. 285 -ssList(A) | -ssList(B) | frontsegP(A,B) | app(B,B) != A # props([maximal([3]),maximal_signed([1,2,3]),selected([])]). [factor(18,b,d)]. 286 -ssList(A) | ssList(f7(A,A)) | -frontsegP(A,A) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(19,a,b)]. 287 -ssList(A) | app(A,f7(A,A)) = A | -frontsegP(A,A) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(20,a,b)]. 288 -ssList(A) | ssList(f8(A,A)) | -ssList(B) | app(A,B) != A # props([maximal([2,3]),maximal_signed([1,2,3]),selected([])]). [factor(21,a,b)]. 289 -ssList(A) | -ssList(B) | ssList(f8(A,B)) | app(B,A) != A # props([maximal([3]),maximal_signed([1,2,3]),selected([])]). [factor(21,a,d)]. 290 -ssList(A) | -ssList(B) | ssList(f8(A,B)) | app(B,B) != A # props([maximal([3]),maximal_signed([1,2,3]),selected([])]). [factor(21,b,d)]. 291 -ssList(A) | app(A,f8(A,A)) = A | -ssList(B) | app(A,B) != A # props([maximal([1,3]),maximal_signed([1,2,3]),selected([])]). [factor(22,a,b)]. 292 -ssList(A) | -ssList(B) | app(B,f8(A,B)) = A | app(B,A) != A # props([maximal([1,2]),maximal_signed([1,2,3]),selected([])]). [factor(22,a,d)]. 293 -ssList(A) | -ssList(B) | app(B,f8(A,B)) = A | app(B,B) != A # props([maximal([1,2]),maximal_signed([1,2,3]),selected([])]). [factor(22,b,d)]. 294 -ssList(A) | -ssList(B) | rearsegP(A,B) | app(A,B) != A # props([maximal([3]),maximal_signed([1,2,3]),selected([])]). [factor(23,a,d)]. 295 -ssList(A) | -ssList(B) | rearsegP(A,B) | app(B,B) != A # props([maximal([3]),maximal_signed([1,2,3]),selected([])]). [factor(23,b,d)]. 296 -ssList(A) | ssList(f9(A,A)) | -rearsegP(A,A) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(24,a,b)]. 297 -ssList(A) | app(f9(A,A),A) = A | -rearsegP(A,A) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(25,a,b)]. 298 -ssList(A) | ssList(f10(A,A)) | -ssList(B) | app(B,A) != A # props([maximal([2,3]),maximal_signed([1,2,3]),selected([])]). [factor(26,a,b)]. 299 -ssList(A) | -ssList(B) | ssList(f10(A,B)) | app(A,B) != A # props([maximal([3]),maximal_signed([1,2,3]),selected([])]). [factor(26,a,d)]. 300 -ssList(A) | -ssList(B) | ssList(f10(A,B)) | app(B,B) != A # props([maximal([3]),maximal_signed([1,2,3]),selected([])]). [factor(26,b,d)]. 301 -ssList(A) | app(f10(A,A),A) = A | -ssList(B) | app(B,A) != A # props([maximal([1,3]),maximal_signed([1,2,3]),selected([])]). [factor(27,a,b)]. 302 -ssList(A) | -ssList(B) | app(f10(A,B),B) = A | app(A,B) != A # props([maximal([1,2]),maximal_signed([1,2,3]),selected([])]). [factor(27,a,d)]. 303 -ssList(A) | -ssList(B) | app(f10(A,B),B) = A | app(B,B) != A # props([maximal([1,2]),maximal_signed([1,2,3]),selected([])]). [factor(27,b,d)]. 304 -ssList(A) | -ssList(B) | segmentP(A,B) | -ssList(C) | app(app(A,B),C) != A # props([maximal([3]),maximal_signed([1,2,3,4]),selected([])]). [factor(28,a,d)]. 305 -ssList(A) | -ssList(B) | segmentP(A,B) | -ssList(C) | app(app(C,B),A) != A # props([maximal([3]),maximal_signed([1,2,3,4]),selected([])]). [factor(28,a,e)]. 306 -ssList(A) | -ssList(B) | segmentP(A,B) | -ssList(C) | app(app(B,B),C) != A # props([maximal([3]),maximal_signed([1,2,3,4]),selected([])]). [factor(28,b,d)]. 307 -ssList(A) | -ssList(B) | segmentP(A,B) | -ssList(C) | app(app(C,B),B) != A # props([maximal([3]),maximal_signed([1,2,3,4]),selected([])]). [factor(28,b,e)]. 308 -ssList(A) | -ssList(B) | segmentP(A,B) | -ssList(C) | app(app(C,B),C) != A # props([maximal([3]),maximal_signed([1,2,3,4]),selected([])]). [factor(28,d,e)]. 309 -ssList(A) | ssList(f11(A,A)) | -segmentP(A,A) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(29,a,b)]. 310 -ssList(A) | ssList(f12(A,A)) | -segmentP(A,A) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(30,a,b)]. 311 -ssList(A) | app(app(f11(A,A),A),f12(A,A)) = A | -segmentP(A,A) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(31,a,b)]. 312 -ssList(A) | ssList(f13(A,A)) | -ssList(B) | -ssList(C) | app(app(B,A),C) != A # props([maximal([2,3,4]),maximal_signed([1,2,3,4]),selected([])]). [factor(32,a,b)]. 313 -ssList(A) | -ssList(B) | ssList(f13(A,B)) | -ssList(C) | app(app(A,B),C) != A # props([maximal([3,4]),maximal_signed([1,2,3,4]),selected([])]). [factor(32,a,d)]. 314 -ssList(A) | -ssList(B) | ssList(f13(A,B)) | -ssList(C) | app(app(C,B),A) != A # props([maximal([3,4]),maximal_signed([1,2,3,4]),selected([])]). [factor(32,a,e)]. 315 -ssList(A) | -ssList(B) | ssList(f13(A,B)) | -ssList(C) | app(app(B,B),C) != A # props([maximal([3,4]),maximal_signed([1,2,3,4]),selected([])]). [factor(32,b,d)]. 316 -ssList(A) | -ssList(B) | ssList(f13(A,B)) | -ssList(C) | app(app(C,B),B) != A # props([maximal([3,4]),maximal_signed([1,2,3,4]),selected([])]). [factor(32,b,e)]. 317 -ssList(A) | -ssList(B) | ssList(f13(A,B)) | -ssList(C) | app(app(C,B),C) != A # props([maximal([3,4]),maximal_signed([1,2,3,4]),selected([])]). [factor(32,d,e)]. 318 -ssList(A) | ssList(f14(A,A)) | -ssList(B) | -ssList(C) | app(app(B,A),C) != A # props([maximal([2,3,4]),maximal_signed([1,2,3,4]),selected([])]). [factor(33,a,b)]. 319 -ssList(A) | -ssList(B) | ssList(f14(A,B)) | -ssList(C) | app(app(A,B),C) != A # props([maximal([3,4]),maximal_signed([1,2,3,4]),selected([])]). [factor(33,a,d)]. 320 -ssList(A) | -ssList(B) | ssList(f14(A,B)) | -ssList(C) | app(app(C,B),A) != A # props([maximal([3,4]),maximal_signed([1,2,3,4]),selected([])]). [factor(33,a,e)]. 321 -ssList(A) | -ssList(B) | ssList(f14(A,B)) | -ssList(C) | app(app(B,B),C) != A # props([maximal([3,4]),maximal_signed([1,2,3,4]),selected([])]). [factor(33,b,d)]. 322 -ssList(A) | -ssList(B) | ssList(f14(A,B)) | -ssList(C) | app(app(C,B),B) != A # props([maximal([3,4]),maximal_signed([1,2,3,4]),selected([])]). [factor(33,b,e)]. 323 -ssList(A) | -ssList(B) | ssList(f14(A,B)) | -ssList(C) | app(app(C,B),C) != A # props([maximal([3,4]),maximal_signed([1,2,3,4]),selected([])]). [factor(33,d,e)]. 324 -ssList(A) | app(app(f13(A,A),A),f14(A,A)) = A | -ssList(B) | -ssList(C) | app(app(B,A),C) != A # props([maximal([1,3,4]),maximal_signed([1,2,3,4]),selected([])]). [factor(34,a,b)]. 325 -ssList(A) | -ssList(B) | app(app(f13(A,B),B),f14(A,B)) = A | -ssList(C) | app(app(A,B),C) != A # props([maximal([1,2,4]),maximal_signed([1,2,3,4]),selected([])]). [factor(34,a,d)]. 326 -ssList(A) | -ssList(B) | app(app(f13(A,B),B),f14(A,B)) = A | -ssList(C) | app(app(C,B),A) != A # props([maximal([1,2,4]),maximal_signed([1,2,3,4]),selected([])]). [factor(34,a,e)]. 327 -ssList(A) | -ssList(B) | app(app(f13(A,B),B),f14(A,B)) = A | -ssList(C) | app(app(B,B),C) != A # props([maximal([1,2,4]),maximal_signed([1,2,3,4]),selected([])]). [factor(34,b,d)]. 328 -ssList(A) | -ssList(B) | app(app(f13(A,B),B),f14(A,B)) = A | -ssList(C) | app(app(C,B),B) != A # props([maximal([1,2,4]),maximal_signed([1,2,3,4]),selected([])]). [factor(34,b,e)]. 329 -ssList(A) | -ssList(B) | app(app(f13(A,B),B),f14(A,B)) = A | -ssList(C) | app(app(C,B),C) != A # props([maximal([1,2,4]),maximal_signed([1,2,3,4]),selected([])]). [factor(34,d,e)]. 330 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | -cyclefreeP(A) # props([maximal([4,5]),maximal_signed([4,5]),selected([])]). [factor(43,a,f)]. 331 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | -cyclefreeP(A) # props([maximal([4,5]),maximal_signed([4,5]),selected([])]). [factor(43,a,g)]. 332 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | -cyclefreeP(A) # props([maximal([4,5]),maximal_signed([4,5]),selected([])]). [factor(43,a,h)]. 333 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | -ssList(E) | app(app(C,cons(B,D)),cons(B,E)) != A | -cyclefreeP(A) # props([maximal([3]),maximal_signed([3]),selected([])]). [factor(43,b,c),merge(d)]. 334 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | -cyclefreeP(A) # props([maximal([4,5]),maximal_signed([4,5]),selected([])]). [factor(43,f,g)]. 335 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | -cyclefreeP(A) # props([maximal([4,5]),maximal_signed([4,5]),selected([])]). [factor(43,f,h)]. 336 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | -cyclefreeP(A) # props([maximal([4,5]),maximal_signed([4,5]),selected([])]). [factor(43,g,h)]. 337 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | ssItem(f20(A)) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(44,a,f)]. 338 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | ssItem(f20(A)) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(44,a,g)]. 339 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | ssItem(f20(A)) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(44,a,h)]. 340 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | -ssList(E) | app(app(C,cons(B,D)),cons(B,E)) != A | ssItem(f20(A)) # props([maximal([3]),maximal_signed([3,8]),selected([])]). [factor(44,b,c),merge(d)]. 341 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | ssItem(f20(A)) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(44,f,g)]. 342 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | ssItem(f20(A)) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(44,f,h)]. 343 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | ssItem(f20(A)) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(44,g,h)]. 344 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | ssItem(f21(A)) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(45,a,f)]. 345 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | ssItem(f21(A)) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(45,a,g)]. 346 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | ssItem(f21(A)) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(45,a,h)]. 347 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | -ssList(E) | app(app(C,cons(B,D)),cons(B,E)) != A | ssItem(f21(A)) # props([maximal([3]),maximal_signed([3,8]),selected([])]). [factor(45,b,c),merge(d)]. 348 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | ssItem(f21(A)) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(45,f,g)]. 349 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | ssItem(f21(A)) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(45,f,h)]. 350 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | ssItem(f21(A)) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(45,g,h)]. 351 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | leq(f20(A),f21(A)) # props([maximal([4,5,9]),maximal_signed([4,5,9]),selected([])]). [factor(46,a,f)]. 352 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | leq(f20(A),f21(A)) # props([maximal([4,5,9]),maximal_signed([4,5,9]),selected([])]). [factor(46,a,g)]. 353 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | leq(f20(A),f21(A)) # props([maximal([4,5,9]),maximal_signed([4,5,9]),selected([])]). [factor(46,a,h)]. 354 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | -ssList(E) | app(app(C,cons(B,D)),cons(B,E)) != A | leq(f20(A),f21(A)) # props([maximal([3,8]),maximal_signed([3,8]),selected([])]). [factor(46,b,c),merge(d)]. 355 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | leq(f20(A),f21(A)) # props([maximal([4,5,9]),maximal_signed([4,5,9]),selected([])]). [factor(46,f,g)]. 356 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | leq(f20(A),f21(A)) # props([maximal([4,5,9]),maximal_signed([4,5,9]),selected([])]). [factor(46,f,h)]. 357 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | leq(f20(A),f21(A)) # props([maximal([4,5,9]),maximal_signed([4,5,9]),selected([])]). [factor(46,g,h)]. 358 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | leq(f21(A),f20(A)) # props([maximal([4,5,9]),maximal_signed([4,5,9]),selected([])]). [factor(47,a,f)]. 359 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | leq(f21(A),f20(A)) # props([maximal([4,5,9]),maximal_signed([4,5,9]),selected([])]). [factor(47,a,g)]. 360 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | leq(f21(A),f20(A)) # props([maximal([4,5,9]),maximal_signed([4,5,9]),selected([])]). [factor(47,a,h)]. 361 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | -ssList(E) | app(app(C,cons(B,D)),cons(B,E)) != A | leq(f21(A),f20(A)) # props([maximal([3,8]),maximal_signed([3,8]),selected([])]). [factor(47,b,c),merge(d)]. 362 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | leq(f21(A),f20(A)) # props([maximal([4,5,9]),maximal_signed([4,5,9]),selected([])]). [factor(47,f,g)]. 363 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | leq(f21(A),f20(A)) # props([maximal([4,5,9]),maximal_signed([4,5,9]),selected([])]). [factor(47,f,h)]. 364 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | leq(f21(A),f20(A)) # props([maximal([4,5,9]),maximal_signed([4,5,9]),selected([])]). [factor(47,g,h)]. 365 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | ssList(f22(A)) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(48,a,f)]. 366 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | ssList(f22(A)) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(48,a,g)]. 367 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | ssList(f22(A)) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(48,a,h)]. 368 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | -ssList(E) | app(app(C,cons(B,D)),cons(B,E)) != A | ssList(f22(A)) # props([maximal([3]),maximal_signed([3,8]),selected([])]). [factor(48,b,c),merge(d)]. 369 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | ssList(f22(A)) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(48,f,g)]. 370 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | ssList(f22(A)) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(48,f,h)]. 371 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | ssList(f22(A)) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(48,g,h)]. 372 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | ssList(f23(A)) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(49,a,f)]. 373 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | ssList(f23(A)) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(49,a,g)]. 374 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | ssList(f23(A)) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(49,a,h)]. 375 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | -ssList(E) | app(app(C,cons(B,D)),cons(B,E)) != A | ssList(f23(A)) # props([maximal([3]),maximal_signed([3,8]),selected([])]). [factor(49,b,c),merge(d)]. 376 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | ssList(f23(A)) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(49,f,g)]. 377 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | ssList(f23(A)) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(49,f,h)]. 378 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | ssList(f23(A)) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(49,g,h)]. 379 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | ssList(f24(A)) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(50,a,f)]. 380 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | ssList(f24(A)) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(50,a,g)]. 381 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | ssList(f24(A)) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(50,a,h)]. 382 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | -ssList(E) | app(app(C,cons(B,D)),cons(B,E)) != A | ssList(f24(A)) # props([maximal([3]),maximal_signed([3,8]),selected([])]). [factor(50,b,c),merge(d)]. 383 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | ssList(f24(A)) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(50,f,g)]. 384 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | ssList(f24(A)) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(50,f,h)]. 385 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | ssList(f24(A)) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(50,g,h)]. 386 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | app(app(f22(A),cons(f20(A),f23(A))),cons(f21(A),f24(A))) = A # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(51,a,f)]. 387 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | app(app(f22(A),cons(f20(A),f23(A))),cons(f21(A),f24(A))) = A # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(51,a,g)]. 388 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | app(app(f22(A),cons(f20(A),f23(A))),cons(f21(A),f24(A))) = A # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(51,a,h)]. 389 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | -ssList(E) | app(app(C,cons(B,D)),cons(B,E)) != A | app(app(f22(A),cons(f20(A),f23(A))),cons(f21(A),f24(A))) = A # props([maximal([3]),maximal_signed([3,8]),selected([])]). [factor(51,b,c),merge(d)]. 390 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | app(app(f22(A),cons(f20(A),f23(A))),cons(f21(A),f24(A))) = A # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(51,f,g)]. 391 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | app(app(f22(A),cons(f20(A),f23(A))),cons(f21(A),f24(A))) = A # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(51,f,h)]. 392 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | app(app(f22(A),cons(f20(A),f23(A))),cons(f21(A),f24(A))) = A # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(51,g,h)]. 393 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | -totalorderP(A) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(60,a,f)]. 394 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | -totalorderP(A) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(60,a,g)]. 395 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | -totalorderP(A) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(60,a,h)]. 396 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | -totalorderP(A) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(60,f,g)]. 397 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | -totalorderP(A) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(60,f,h)]. 398 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | -totalorderP(A) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(60,g,h)]. 399 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | ssItem(f30(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(61,a,f)]. 400 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | ssItem(f30(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(61,a,g)]. 401 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | ssItem(f30(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(61,a,h)]. 402 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | ssItem(f30(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(61,f,g)]. 403 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | ssItem(f30(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(61,f,h)]. 404 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | ssItem(f30(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(61,g,h)]. 405 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | ssItem(f31(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(62,a,f)]. 406 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | ssItem(f31(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(62,a,g)]. 407 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | ssItem(f31(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(62,a,h)]. 408 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | ssItem(f31(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(62,f,g)]. 409 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | ssItem(f31(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(62,f,h)]. 410 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | ssItem(f31(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(62,g,h)]. 411 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | -leq(f30(A),f31(A)) # props([maximal([4,5,9]),maximal_signed([4,5,9]),selected([])]). [factor(63,a,f)]. 412 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | -leq(f30(A),f31(A)) # props([maximal([4,5,9]),maximal_signed([4,5,9]),selected([])]). [factor(63,a,g)]. 413 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | -leq(f30(A),f31(A)) # props([maximal([4,5,9]),maximal_signed([4,5,9]),selected([])]). [factor(63,a,h)]. 414 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | -leq(f30(A),f31(A)) # props([maximal([4,5,9]),maximal_signed([4,5,9]),selected([])]). [factor(63,f,g)]. 415 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | -leq(f30(A),f31(A)) # props([maximal([4,5,9]),maximal_signed([4,5,9]),selected([])]). [factor(63,f,h)]. 416 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | -leq(f30(A),f31(A)) # props([maximal([4,5,9]),maximal_signed([4,5,9]),selected([])]). [factor(63,g,h)]. 417 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | -leq(f31(A),f30(A)) # props([maximal([4,5,9]),maximal_signed([4,5,9]),selected([])]). [factor(64,a,f)]. 418 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | -leq(f31(A),f30(A)) # props([maximal([4,5,9]),maximal_signed([4,5,9]),selected([])]). [factor(64,a,g)]. 419 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | -leq(f31(A),f30(A)) # props([maximal([4,5,9]),maximal_signed([4,5,9]),selected([])]). [factor(64,a,h)]. 420 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | -leq(f31(A),f30(A)) # props([maximal([4,5,9]),maximal_signed([4,5,9]),selected([])]). [factor(64,f,g)]. 421 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | -leq(f31(A),f30(A)) # props([maximal([4,5,9]),maximal_signed([4,5,9]),selected([])]). [factor(64,f,h)]. 422 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | -leq(f31(A),f30(A)) # props([maximal([4,5,9]),maximal_signed([4,5,9]),selected([])]). [factor(64,g,h)]. 423 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | ssList(f32(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(65,a,f)]. 424 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | ssList(f32(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(65,a,g)]. 425 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | ssList(f32(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(65,a,h)]. 426 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | ssList(f32(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(65,f,g)]. 427 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | ssList(f32(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(65,f,h)]. 428 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | ssList(f32(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(65,g,h)]. 429 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | ssList(f33(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(66,a,f)]. 430 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | ssList(f33(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(66,a,g)]. 431 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | ssList(f33(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(66,a,h)]. 432 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | ssList(f33(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(66,f,g)]. 433 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | ssList(f33(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(66,f,h)]. 434 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | ssList(f33(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(66,g,h)]. 435 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | ssList(f34(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(67,a,f)]. 436 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | ssList(f34(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(67,a,g)]. 437 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | ssList(f34(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(67,a,h)]. 438 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | ssList(f34(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(67,f,g)]. 439 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | ssList(f34(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(67,f,h)]. 440 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | ssList(f34(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(67,g,h)]. 441 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | app(app(f32(A),cons(f30(A),f33(A))),cons(f31(A),f34(A))) = A # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(68,a,f)]. 442 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | app(app(f32(A),cons(f30(A),f33(A))),cons(f31(A),f34(A))) = A # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(68,a,g)]. 443 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | app(app(f32(A),cons(f30(A),f33(A))),cons(f31(A),f34(A))) = A # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(68,a,h)]. 444 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | app(app(f32(A),cons(f30(A),f33(A))),cons(f31(A),f34(A))) = A # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(68,f,g)]. 445 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | app(app(f32(A),cons(f30(A),f33(A))),cons(f31(A),f34(A))) = A # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(68,f,h)]. 446 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | app(app(f32(A),cons(f30(A),f33(A))),cons(f31(A),f34(A))) = A # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(68,g,h)]. 447 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | -strictorderP(A) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(77,a,f)]. 448 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | -strictorderP(A) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(77,a,g)]. 449 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | -strictorderP(A) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(77,a,h)]. 450 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | -ssList(E) | app(app(C,cons(B,D)),cons(B,E)) != A | -strictorderP(A) # props([maximal([3]),maximal_signed([3,8]),selected([])]). [factor(77,b,c),merge(d)]. 451 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | -strictorderP(A) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(77,f,g)]. 452 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | -strictorderP(A) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(77,f,h)]. 453 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | -strictorderP(A) # props([maximal([4,5]),maximal_signed([4,5,9]),selected([])]). [factor(77,g,h)]. 454 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | ssItem(f40(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(78,a,f)]. 455 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | ssItem(f40(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(78,a,g)]. 456 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | ssItem(f40(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(78,a,h)]. 457 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | -ssList(E) | app(app(C,cons(B,D)),cons(B,E)) != A | ssItem(f40(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(78,b,c),merge(d)]. 458 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | ssItem(f40(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(78,f,g)]. 459 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | ssItem(f40(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(78,f,h)]. 460 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | ssItem(f40(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(78,g,h)]. 461 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | ssItem(f41(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(79,a,f)]. 462 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | ssItem(f41(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(79,a,g)]. 463 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | ssItem(f41(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(79,a,h)]. 464 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | -ssList(E) | app(app(C,cons(B,D)),cons(B,E)) != A | ssItem(f41(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(79,b,c),merge(d)]. 465 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | ssItem(f41(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(79,f,g)]. 466 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | ssItem(f41(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(79,f,h)]. 467 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | ssItem(f41(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(79,g,h)]. 468 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | -lt(f40(A),f41(A)) # props([maximal([4,5,9]),maximal_signed([4,5,9]),selected([])]). [factor(80,a,f)]. 469 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | -lt(f40(A),f41(A)) # props([maximal([4,5,9]),maximal_signed([4,5,9]),selected([])]). [factor(80,a,g)]. 470 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | -lt(f40(A),f41(A)) # props([maximal([4,5,9]),maximal_signed([4,5,9]),selected([])]). [factor(80,a,h)]. 471 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | -ssList(E) | app(app(C,cons(B,D)),cons(B,E)) != A | -lt(f40(A),f41(A)) # props([maximal([3,8]),maximal_signed([3,8]),selected([])]). [factor(80,b,c),merge(d)]. 472 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | -lt(f40(A),f41(A)) # props([maximal([4,5,9]),maximal_signed([4,5,9]),selected([])]). [factor(80,f,g)]. 473 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | -lt(f40(A),f41(A)) # props([maximal([4,5,9]),maximal_signed([4,5,9]),selected([])]). [factor(80,f,h)]. 474 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | -lt(f40(A),f41(A)) # props([maximal([4,5,9]),maximal_signed([4,5,9]),selected([])]). [factor(80,g,h)]. 475 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | -lt(f41(A),f40(A)) # props([maximal([4,5,9]),maximal_signed([4,5,9]),selected([])]). [factor(81,a,f)]. 476 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | -lt(f41(A),f40(A)) # props([maximal([4,5,9]),maximal_signed([4,5,9]),selected([])]). [factor(81,a,g)]. 477 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | -lt(f41(A),f40(A)) # props([maximal([4,5,9]),maximal_signed([4,5,9]),selected([])]). [factor(81,a,h)]. 478 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | -ssList(E) | app(app(C,cons(B,D)),cons(B,E)) != A | -lt(f41(A),f40(A)) # props([maximal([3,8]),maximal_signed([3,8]),selected([])]). [factor(81,b,c),merge(d)]. 479 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | -lt(f41(A),f40(A)) # props([maximal([4,5,9]),maximal_signed([4,5,9]),selected([])]). [factor(81,f,g)]. 480 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | -lt(f41(A),f40(A)) # props([maximal([4,5,9]),maximal_signed([4,5,9]),selected([])]). [factor(81,f,h)]. 481 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | -lt(f41(A),f40(A)) # props([maximal([4,5,9]),maximal_signed([4,5,9]),selected([])]). [factor(81,g,h)]. 482 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | ssList(f42(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(82,a,f)]. 483 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | ssList(f42(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(82,a,g)]. 484 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | ssList(f42(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(82,a,h)]. 485 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | -ssList(E) | app(app(C,cons(B,D)),cons(B,E)) != A | ssList(f42(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(82,b,c),merge(d)]. 486 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | ssList(f42(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(82,f,g)]. 487 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | ssList(f42(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(82,f,h)]. 488 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | ssList(f42(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(82,g,h)]. 489 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | ssList(f43(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(83,a,f)]. 490 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | ssList(f43(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(83,a,g)]. 491 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | ssList(f43(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(83,a,h)]. 492 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | -ssList(E) | app(app(C,cons(B,D)),cons(B,E)) != A | ssList(f43(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(83,b,c),merge(d)]. 493 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | ssList(f43(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(83,f,g)]. 494 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | ssList(f43(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(83,f,h)]. 495 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | ssList(f43(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(83,g,h)]. 496 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | ssList(f44(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(84,a,f)]. 497 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | ssList(f44(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(84,a,g)]. 498 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | ssList(f44(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(84,a,h)]. 499 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | -ssList(E) | app(app(C,cons(B,D)),cons(B,E)) != A | ssList(f44(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(84,b,c),merge(d)]. 500 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | ssList(f44(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(84,f,g)]. 501 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | ssList(f44(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(84,f,h)]. 502 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | ssList(f44(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(84,g,h)]. 503 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | app(app(f42(A),cons(f40(A),f43(A))),cons(f41(A),f44(A))) = A # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(85,a,f)]. 504 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | app(app(f42(A),cons(f40(A),f43(A))),cons(f41(A),f44(A))) = A # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(85,a,g)]. 505 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | app(app(f42(A),cons(f40(A),f43(A))),cons(f41(A),f44(A))) = A # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(85,a,h)]. 506 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | -ssList(E) | app(app(C,cons(B,D)),cons(B,E)) != A | app(app(f42(A),cons(f40(A),f43(A))),cons(f41(A),f44(A))) = A # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(85,b,c),merge(d)]. 507 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | app(app(f42(A),cons(f40(A),f43(A))),cons(f41(A),f44(A))) = A # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(85,f,g)]. 508 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | app(app(f42(A),cons(f40(A),f43(A))),cons(f41(A),f44(A))) = A # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(85,f,h)]. 509 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | app(app(f42(A),cons(f40(A),f43(A))),cons(f41(A),f44(A))) = A # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(85,g,h)]. 510 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | -totalorderedP(A) # props([maximal([4]),maximal_signed([4,8]),selected([])]). [factor(93,a,e)]. 511 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | -totalorderedP(A) # props([maximal([4]),maximal_signed([4,8]),selected([])]). [factor(93,a,f)]. 512 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | -totalorderedP(A) # props([maximal([4]),maximal_signed([4,8]),selected([])]). [factor(93,a,g)]. 513 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | -totalorderedP(A) # props([maximal([4]),maximal_signed([4,8]),selected([])]). [factor(93,e,f)]. 514 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | -totalorderedP(A) # props([maximal([4]),maximal_signed([4,8]),selected([])]). [factor(93,e,g)]. 515 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | -totalorderedP(A) # props([maximal([4]),maximal_signed([4,8]),selected([])]). [factor(93,f,g)]. 516 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | ssItem(f50(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(94,a,e)]. 517 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | ssItem(f50(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(94,a,f)]. 518 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | ssItem(f50(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(94,a,g)]. 519 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | ssItem(f50(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(94,e,f)]. 520 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | ssItem(f50(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(94,e,g)]. 521 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | ssItem(f50(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(94,f,g)]. 522 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | ssItem(f51(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(95,a,e)]. 523 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | ssItem(f51(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(95,a,f)]. 524 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | ssItem(f51(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(95,a,g)]. 525 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | ssItem(f51(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(95,e,f)]. 526 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | ssItem(f51(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(95,e,g)]. 527 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | ssItem(f51(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(95,f,g)]. 528 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | -leq(f50(A),f51(A)) # props([maximal([4,8]),maximal_signed([4,8]),selected([])]). [factor(96,a,e)]. 529 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | -leq(f50(A),f51(A)) # props([maximal([4,8]),maximal_signed([4,8]),selected([])]). [factor(96,a,f)]. 530 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | -leq(f50(A),f51(A)) # props([maximal([4,8]),maximal_signed([4,8]),selected([])]). [factor(96,a,g)]. 531 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | -leq(f50(A),f51(A)) # props([maximal([4,8]),maximal_signed([4,8]),selected([])]). [factor(96,e,f)]. 532 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | -leq(f50(A),f51(A)) # props([maximal([4,8]),maximal_signed([4,8]),selected([])]). [factor(96,e,g)]. 533 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | -leq(f50(A),f51(A)) # props([maximal([4,8]),maximal_signed([4,8]),selected([])]). [factor(96,f,g)]. 534 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | ssList(f52(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(97,a,e)]. 535 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | ssList(f52(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(97,a,f)]. 536 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | ssList(f52(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(97,a,g)]. 537 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | ssList(f52(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(97,e,f)]. 538 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | ssList(f52(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(97,e,g)]. 539 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | ssList(f52(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(97,f,g)]. 540 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | ssList(f53(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(98,a,e)]. 541 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | ssList(f53(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(98,a,f)]. 542 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | ssList(f53(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(98,a,g)]. 543 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | ssList(f53(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(98,e,f)]. 544 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | ssList(f53(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(98,e,g)]. 545 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | ssList(f53(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(98,f,g)]. 546 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | ssList(f54(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(99,a,e)]. 547 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | ssList(f54(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(99,a,f)]. 548 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | ssList(f54(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(99,a,g)]. 549 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | ssList(f54(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(99,e,f)]. 550 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | ssList(f54(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(99,e,g)]. 551 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | ssList(f54(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(99,f,g)]. 552 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | app(app(f52(A),cons(f50(A),f53(A))),cons(f51(A),f54(A))) = A # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(100,a,e)]. 553 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | app(app(f52(A),cons(f50(A),f53(A))),cons(f51(A),f54(A))) = A # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(100,a,f)]. 554 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | app(app(f52(A),cons(f50(A),f53(A))),cons(f51(A),f54(A))) = A # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(100,a,g)]. 555 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | app(app(f52(A),cons(f50(A),f53(A))),cons(f51(A),f54(A))) = A # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(100,e,f)]. 556 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | app(app(f52(A),cons(f50(A),f53(A))),cons(f51(A),f54(A))) = A # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(100,e,g)]. 557 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | app(app(f52(A),cons(f50(A),f53(A))),cons(f51(A),f54(A))) = A # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(100,f,g)]. 558 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | -strictorderedP(A) # props([maximal([4]),maximal_signed([4,8]),selected([])]). [factor(108,a,e)]. 559 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | -strictorderedP(A) # props([maximal([4]),maximal_signed([4,8]),selected([])]). [factor(108,a,f)]. 560 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | -strictorderedP(A) # props([maximal([4]),maximal_signed([4,8]),selected([])]). [factor(108,a,g)]. 561 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | -ssList(E) | app(app(C,cons(B,D)),cons(B,E)) != A | -strictorderedP(A) # props([maximal([3]),maximal_signed([3,8]),selected([])]). [factor(108,b,c)]. 562 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | -strictorderedP(A) # props([maximal([4]),maximal_signed([4,8]),selected([])]). [factor(108,e,f)]. 563 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | -strictorderedP(A) # props([maximal([4]),maximal_signed([4,8]),selected([])]). [factor(108,e,g)]. 564 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | -strictorderedP(A) # props([maximal([4]),maximal_signed([4,8]),selected([])]). [factor(108,f,g)]. 565 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | ssItem(f60(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(109,a,e)]. 566 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | ssItem(f60(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(109,a,f)]. 567 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | ssItem(f60(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(109,a,g)]. 568 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | -ssList(E) | app(app(C,cons(B,D)),cons(B,E)) != A | ssItem(f60(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(109,b,c)]. 569 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | ssItem(f60(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(109,e,f)]. 570 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | ssItem(f60(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(109,e,g)]. 571 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | ssItem(f60(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(109,f,g)]. 572 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | ssItem(f61(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(110,a,e)]. 573 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | ssItem(f61(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(110,a,f)]. 574 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | ssItem(f61(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(110,a,g)]. 575 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | -ssList(E) | app(app(C,cons(B,D)),cons(B,E)) != A | ssItem(f61(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(110,b,c)]. 576 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | ssItem(f61(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(110,e,f)]. 577 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | ssItem(f61(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(110,e,g)]. 578 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | ssItem(f61(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(110,f,g)]. 579 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | -lt(f60(A),f61(A)) # props([maximal([4,8]),maximal_signed([4,8]),selected([])]). [factor(111,a,e)]. 580 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | -lt(f60(A),f61(A)) # props([maximal([4,8]),maximal_signed([4,8]),selected([])]). [factor(111,a,f)]. 581 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | -lt(f60(A),f61(A)) # props([maximal([4,8]),maximal_signed([4,8]),selected([])]). [factor(111,a,g)]. 582 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | -ssList(E) | app(app(C,cons(B,D)),cons(B,E)) != A | -lt(f60(A),f61(A)) # props([maximal([3,8]),maximal_signed([3,8]),selected([])]). [factor(111,b,c)]. 583 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | -lt(f60(A),f61(A)) # props([maximal([4,8]),maximal_signed([4,8]),selected([])]). [factor(111,e,f)]. 584 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | -lt(f60(A),f61(A)) # props([maximal([4,8]),maximal_signed([4,8]),selected([])]). [factor(111,e,g)]. 585 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | -lt(f60(A),f61(A)) # props([maximal([4,8]),maximal_signed([4,8]),selected([])]). [factor(111,f,g)]. 586 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | ssList(f62(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(112,a,e)]. 587 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | ssList(f62(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(112,a,f)]. 588 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | ssList(f62(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(112,a,g)]. 589 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | -ssList(E) | app(app(C,cons(B,D)),cons(B,E)) != A | ssList(f62(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(112,b,c)]. 590 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | ssList(f62(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(112,e,f)]. 591 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | ssList(f62(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(112,e,g)]. 592 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | ssList(f62(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(112,f,g)]. 593 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | ssList(f63(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(113,a,e)]. 594 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | ssList(f63(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(113,a,f)]. 595 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | ssList(f63(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(113,a,g)]. 596 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | -ssList(E) | app(app(C,cons(B,D)),cons(B,E)) != A | ssList(f63(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(113,b,c)]. 597 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | ssList(f63(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(113,e,f)]. 598 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | ssList(f63(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(113,e,g)]. 599 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | ssList(f63(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(113,f,g)]. 600 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | ssList(f64(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(114,a,e)]. 601 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | ssList(f64(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(114,a,f)]. 602 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | ssList(f64(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(114,a,g)]. 603 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | -ssList(E) | app(app(C,cons(B,D)),cons(B,E)) != A | ssList(f64(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(114,b,c)]. 604 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | ssList(f64(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(114,e,f)]. 605 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | ssList(f64(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(114,e,g)]. 606 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | ssList(f64(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(114,f,g)]. 607 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | app(app(f62(A),cons(f60(A),f63(A))),cons(f61(A),f64(A))) = A # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(115,a,e)]. 608 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | app(app(f62(A),cons(f60(A),f63(A))),cons(f61(A),f64(A))) = A # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(115,a,f)]. 609 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | app(app(f62(A),cons(f60(A),f63(A))),cons(f61(A),f64(A))) = A # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(115,a,g)]. 610 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | -ssList(E) | app(app(C,cons(B,D)),cons(B,E)) != A | app(app(f62(A),cons(f60(A),f63(A))),cons(f61(A),f64(A))) = A # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(115,b,c)]. 611 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | app(app(f62(A),cons(f60(A),f63(A))),cons(f61(A),f64(A))) = A # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(115,e,f)]. 612 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | app(app(f62(A),cons(f60(A),f63(A))),cons(f61(A),f64(A))) = A # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(115,e,g)]. 613 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | app(app(f62(A),cons(f60(A),f63(A))),cons(f61(A),f64(A))) = A # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(115,f,g)]. 614 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | -duplicatefreeP(A) # props([maximal([8]),maximal_signed([8]),selected([])]). [factor(123,a,e)]. 615 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | -duplicatefreeP(A) # props([maximal([8]),maximal_signed([8]),selected([])]). [factor(123,a,f)]. 616 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | -duplicatefreeP(A) # props([maximal([8]),maximal_signed([8]),selected([])]). [factor(123,a,g)]. 617 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | -ssList(E) | app(app(C,cons(B,D)),cons(B,E)) != A | -duplicatefreeP(A) # props([maximal([7]),maximal_signed([7]),selected([])]). [factor(123,b,c),xx(c)]. 618 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | -duplicatefreeP(A) # props([maximal([8]),maximal_signed([8]),selected([])]). [factor(123,e,f)]. 619 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | -duplicatefreeP(A) # props([maximal([8]),maximal_signed([8]),selected([])]). [factor(123,e,g)]. 620 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | -duplicatefreeP(A) # props([maximal([8]),maximal_signed([8]),selected([])]). [factor(123,f,g)]. 621 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | ssItem(f70(A)) # props([maximal([2,3,8]),maximal_signed([2,3,8]),selected([])]). [factor(124,a,e)]. 622 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | ssItem(f70(A)) # props([maximal([2,3,8]),maximal_signed([2,3,8]),selected([])]). [factor(124,a,f)]. 623 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | ssItem(f70(A)) # props([maximal([2,3,8]),maximal_signed([2,3,8]),selected([])]). [factor(124,a,g)]. 624 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | -ssList(E) | app(app(C,cons(B,D)),cons(B,E)) != A | ssItem(f70(A)) # props([maximal([2,7]),maximal_signed([2,7]),selected([])]). [factor(124,b,c),xx(c)]. 625 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | ssItem(f70(A)) # props([maximal([2,3,8]),maximal_signed([2,3,8]),selected([])]). [factor(124,e,f)]. 626 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | ssItem(f70(A)) # props([maximal([2,3,8]),maximal_signed([2,3,8]),selected([])]). [factor(124,e,g)]. 627 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | ssItem(f70(A)) # props([maximal([2,3,8]),maximal_signed([2,3,8]),selected([])]). [factor(124,f,g)]. 628 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | ssItem(f71(A)) # props([maximal([2,3,8]),maximal_signed([2,3,8]),selected([])]). [factor(125,a,e)]. 629 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | ssItem(f71(A)) # props([maximal([2,3,8]),maximal_signed([2,3,8]),selected([])]). [factor(125,a,f)]. 630 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | ssItem(f71(A)) # props([maximal([2,3,8]),maximal_signed([2,3,8]),selected([])]). [factor(125,a,g)]. 631 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | -ssList(E) | app(app(C,cons(B,D)),cons(B,E)) != A | ssItem(f71(A)) # props([maximal([2,7]),maximal_signed([2,7]),selected([])]). [factor(125,b,c),xx(c)]. 632 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | ssItem(f71(A)) # props([maximal([2,3,8]),maximal_signed([2,3,8]),selected([])]). [factor(125,e,f)]. 633 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | ssItem(f71(A)) # props([maximal([2,3,8]),maximal_signed([2,3,8]),selected([])]). [factor(125,e,g)]. 634 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | ssItem(f71(A)) # props([maximal([2,3,8]),maximal_signed([2,3,8]),selected([])]). [factor(125,f,g)]. 635 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | f71(A) = f70(A) # props([maximal([2,3]),maximal_signed([2,3,8]),selected([])]). [factor(126,a,e)]. 636 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | f71(A) = f70(A) # props([maximal([2,3]),maximal_signed([2,3,8]),selected([])]). [factor(126,a,f)]. 637 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | f71(A) = f70(A) # props([maximal([2,3]),maximal_signed([2,3,8]),selected([])]). [factor(126,a,g)]. 638 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | -ssList(E) | app(app(C,cons(B,D)),cons(B,E)) != A | f71(A) = f70(A) # props([maximal([2]),maximal_signed([2,7]),selected([])]). [factor(126,b,c),xx(c)]. 639 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | f71(A) = f70(A) # props([maximal([2,3]),maximal_signed([2,3,8]),selected([])]). [factor(126,e,f)]. 640 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | f71(A) = f70(A) # props([maximal([2,3]),maximal_signed([2,3,8]),selected([])]). [factor(126,e,g)]. 641 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | f71(A) = f70(A) # props([maximal([2,3]),maximal_signed([2,3,8]),selected([])]). [factor(126,f,g)]. 642 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | ssList(f72(A)) # props([maximal([2,3]),maximal_signed([2,3,8]),selected([])]). [factor(127,a,e)]. 643 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | ssList(f72(A)) # props([maximal([2,3]),maximal_signed([2,3,8]),selected([])]). [factor(127,a,f)]. 644 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | ssList(f72(A)) # props([maximal([2,3]),maximal_signed([2,3,8]),selected([])]). [factor(127,a,g)]. 645 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | -ssList(E) | app(app(C,cons(B,D)),cons(B,E)) != A | ssList(f72(A)) # props([maximal([2]),maximal_signed([2,7]),selected([])]). [factor(127,b,c),xx(c)]. 646 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | ssList(f72(A)) # props([maximal([2,3]),maximal_signed([2,3,8]),selected([])]). [factor(127,e,f)]. 647 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | ssList(f72(A)) # props([maximal([2,3]),maximal_signed([2,3,8]),selected([])]). [factor(127,e,g)]. 648 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | ssList(f72(A)) # props([maximal([2,3]),maximal_signed([2,3,8]),selected([])]). [factor(127,f,g)]. 649 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | ssList(f73(A)) # props([maximal([2,3]),maximal_signed([2,3,8]),selected([])]). [factor(128,a,e)]. 650 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | ssList(f73(A)) # props([maximal([2,3]),maximal_signed([2,3,8]),selected([])]). [factor(128,a,f)]. 651 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | ssList(f73(A)) # props([maximal([2,3]),maximal_signed([2,3,8]),selected([])]). [factor(128,a,g)]. 652 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | -ssList(E) | app(app(C,cons(B,D)),cons(B,E)) != A | ssList(f73(A)) # props([maximal([2]),maximal_signed([2,7]),selected([])]). [factor(128,b,c),xx(c)]. 653 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | ssList(f73(A)) # props([maximal([2,3]),maximal_signed([2,3,8]),selected([])]). [factor(128,e,f)]. 654 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | ssList(f73(A)) # props([maximal([2,3]),maximal_signed([2,3,8]),selected([])]). [factor(128,e,g)]. 655 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | ssList(f73(A)) # props([maximal([2,3]),maximal_signed([2,3,8]),selected([])]). [factor(128,f,g)]. 656 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | ssList(f74(A)) # props([maximal([2,3]),maximal_signed([2,3,8]),selected([])]). [factor(129,a,e)]. 657 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | ssList(f74(A)) # props([maximal([2,3]),maximal_signed([2,3,8]),selected([])]). [factor(129,a,f)]. 658 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | ssList(f74(A)) # props([maximal([2,3]),maximal_signed([2,3,8]),selected([])]). [factor(129,a,g)]. 659 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | -ssList(E) | app(app(C,cons(B,D)),cons(B,E)) != A | ssList(f74(A)) # props([maximal([2]),maximal_signed([2,7]),selected([])]). [factor(129,b,c),xx(c)]. 660 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | ssList(f74(A)) # props([maximal([2,3]),maximal_signed([2,3,8]),selected([])]). [factor(129,e,f)]. 661 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | ssList(f74(A)) # props([maximal([2,3]),maximal_signed([2,3,8]),selected([])]). [factor(129,e,g)]. 662 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | ssList(f74(A)) # props([maximal([2,3]),maximal_signed([2,3,8]),selected([])]). [factor(129,f,g)]. 663 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(A,cons(B,D)),cons(C,E)) != A | app(app(f72(A),cons(f70(A),f73(A))),cons(f71(A),f74(A))) = A # props([maximal([2,3]),maximal_signed([2,3,8]),selected([])]). [factor(130,a,e)]. 664 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,A)),cons(C,E)) != A | app(app(f72(A),cons(f70(A),f73(A))),cons(f71(A),f74(A))) = A # props([maximal([2,3]),maximal_signed([2,3,8]),selected([])]). [factor(130,a,f)]. 665 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,A)) != A | app(app(f72(A),cons(f70(A),f73(A))),cons(f71(A),f74(A))) = A # props([maximal([2,3]),maximal_signed([2,3,8]),selected([])]). [factor(130,a,g)]. 666 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | -ssList(E) | app(app(C,cons(B,D)),cons(B,E)) != A | app(app(f72(A),cons(f70(A),f73(A))),cons(f71(A),f74(A))) = A # props([maximal([2]),maximal_signed([2,7]),selected([])]). [factor(130,b,c),xx(c)]. 667 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,D)),cons(C,E)) != A | app(app(f72(A),cons(f70(A),f73(A))),cons(f71(A),f74(A))) = A # props([maximal([2,3]),maximal_signed([2,3,8]),selected([])]). [factor(130,e,f)]. 668 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,D)) != A | app(app(f72(A),cons(f70(A),f73(A))),cons(f71(A),f74(A))) = A # props([maximal([2,3]),maximal_signed([2,3,8]),selected([])]). [factor(130,e,g)]. 669 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | -ssList(E) | app(app(D,cons(B,E)),cons(C,E)) != A | app(app(f72(A),cons(f70(A),f73(A))),cons(f71(A),f74(A))) = A # props([maximal([2,3]),maximal_signed([2,3,8]),selected([])]). [factor(130,f,g)]. 670 -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | app(A,cons(B,cons(C,D))) != A | -equalelemsP(A) # props([maximal([7]),maximal_signed([4,7]),selected([])]). [factor(137,a,e)]. 671 -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | app(D,cons(B,cons(C,A))) != A | -equalelemsP(A) # props([maximal([7]),maximal_signed([4,7]),selected([])]). [factor(137,a,f)]. 672 -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | app(D,cons(B,cons(C,D))) != A | -equalelemsP(A) # props([maximal([7]),maximal_signed([4,7]),selected([])]). [factor(137,e,f)]. 673 -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | app(A,cons(B,cons(C,D))) != A | ssItem(f79(A)) # props([maximal([2,3,7]),maximal_signed([2,3,7]),selected([])]). [factor(138,a,e)]. 674 -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | app(D,cons(B,cons(C,A))) != A | ssItem(f79(A)) # props([maximal([2,3,7]),maximal_signed([2,3,7]),selected([])]). [factor(138,a,f)]. 675 -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | app(D,cons(B,cons(C,D))) != A | ssItem(f79(A)) # props([maximal([2,3,7]),maximal_signed([2,3,7]),selected([])]). [factor(138,e,f)]. 676 -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | app(A,cons(B,cons(C,D))) != A | ssItem(f80(A)) # props([maximal([2,3,7]),maximal_signed([2,3,7]),selected([])]). [factor(139,a,e)]. 677 -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | app(D,cons(B,cons(C,A))) != A | ssItem(f80(A)) # props([maximal([2,3,7]),maximal_signed([2,3,7]),selected([])]). [factor(139,a,f)]. 678 -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | app(D,cons(B,cons(C,D))) != A | ssItem(f80(A)) # props([maximal([2,3,7]),maximal_signed([2,3,7]),selected([])]). [factor(139,e,f)]. 679 -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | app(A,cons(B,cons(C,D))) != A | f80(A) != f79(A) # props([maximal([2,3]),maximal_signed([2,3,4]),selected([])]). [factor(140,a,e)]. 680 -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | app(D,cons(B,cons(C,A))) != A | f80(A) != f79(A) # props([maximal([2,3]),maximal_signed([2,3,4]),selected([])]). [factor(140,a,f)]. 681 -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | app(D,cons(B,cons(C,D))) != A | f80(A) != f79(A) # props([maximal([2,3]),maximal_signed([2,3,4]),selected([])]). [factor(140,e,f)]. 682 -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | app(A,cons(B,cons(C,D))) != A | ssList(f81(A)) # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(141,a,e)]. 683 -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | app(D,cons(B,cons(C,A))) != A | ssList(f81(A)) # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(141,a,f)]. 684 -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | app(D,cons(B,cons(C,D))) != A | ssList(f81(A)) # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(141,e,f)]. 685 -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | app(A,cons(B,cons(C,D))) != A | ssList(f82(A)) # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(142,a,e)]. 686 -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | app(D,cons(B,cons(C,A))) != A | ssList(f82(A)) # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(142,a,f)]. 687 -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | app(D,cons(B,cons(C,D))) != A | ssList(f82(A)) # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(142,e,f)]. 688 -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | app(A,cons(B,cons(C,D))) != A | app(f81(A),cons(f79(A),cons(f80(A),f82(A)))) = A # props([maximal([2,3]),maximal_signed([2,3,4,7]),selected([])]). [factor(143,a,e)]. 689 -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | app(D,cons(B,cons(C,A))) != A | app(f81(A),cons(f79(A),cons(f80(A),f82(A)))) = A # props([maximal([2,3]),maximal_signed([2,3,4,7]),selected([])]). [factor(143,a,f)]. 690 -ssList(A) | -ssItem(A) | -ssItem(app(f81(A),cons(f79(A),cons(f80(A),f82(A))))) | app(f81(A),cons(f79(A),cons(f80(A),f82(A)))) = A | -ssList(B) | -ssList(C) | app(B,cons(A,cons(app(f81(A),cons(f79(A),cons(f80(A),f82(A)))),C))) != A # props([maximal([3]),maximal_signed([3,4]),selected([])]). [factor(143,d,h)]. 691 -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | -ssList(D) | app(D,cons(B,cons(C,D))) != A | app(f81(A),cons(f79(A),cons(f80(A),f82(A)))) = A # props([maximal([2,3]),maximal_signed([2,3,4,7]),selected([])]). [factor(143,e,f)]. 692 -ssList(A) | -neq(A,A) # props([maximal([2]),maximal_signed([2]),selected([])]). [factor(145,a,b),xx(b)]. 693 -ssList(A) | -ssItem(B) | -ssItem(C) | cons(C,A) != cons(B,A) | C = B # props([maximal([2,3]),maximal_signed([2,3,5]),selected([])]). [factor(149,a,b)]. 694 -ssList(A) | -ssList(B) | B = A | -ssItem(C) | cons(C,B) != cons(C,A) # props([maximal([4]),maximal_signed([3,4]),selected([])]). [factor(150,d,e)]. 695 -ssList(A) | ssList(app(A,A)) # props([maximal([2]),maximal_signed([1,2]),selected([])]). [factor(159,a,b)]. 696 -ssList(A) | -ssItem(B) | cons(B,app(A,A)) = app(cons(B,A),A) # props([maximal([2]),maximal_signed([2,3]),selected([])]). [factor(161,a,b)]. 698 -ssItem(A) | -ssList(B) | -memberP(B,A) | memberP(app(B,B),A) # props([maximal([4]),maximal_signed([3,4]),selected([])]). [factor(172,b,d)]. 699 -ssItem(A) | -ssList(B) | memberP(B,A) | -memberP(app(B,B),A) # props([maximal([4]),maximal_signed([3,4]),selected([])]). [factor(174,b,d),merge(d)]. 700 -ssItem(A) | -ssList(B) | memberP(cons(A,B),A) # props([maximal([3]),maximal_signed([1,3]),selected([])]). [factor(175,a,b),xx(b)]. 701 -ssList(A) | -frontsegP(A,A) | -ssList(B) | frontsegP(app(A,B),A) # props([maximal([4]),maximal_signed([2,4]),selected([])]). [factor(183,a,b)]. 702 -ssList(A) | -ssList(B) | -frontsegP(A,B) | frontsegP(app(A,A),B) # props([maximal([4]),maximal_signed([3,4]),selected([])]). [factor(183,a,d)]. 703 -ssList(A) | -ssList(B) | -frontsegP(A,B) | frontsegP(app(A,B),B) # props([maximal([4]),maximal_signed([3,4]),selected([])]). [factor(183,b,d)]. 704 -ssItem(A) | -ssList(B) | -ssList(C) | frontsegP(cons(A,B),cons(A,C)) | -frontsegP(B,C) # props([maximal([4]),maximal_signed([4,5]),selected([])]). [factor(184,a,b),xx(b)]. 705 -ssItem(A) | -ssItem(B) | B != A | -ssList(C) | frontsegP(cons(A,C),cons(B,C)) | -frontsegP(C,C) # props([maximal([5]),maximal_signed([5,6]),selected([])]). [factor(184,d,e)]. 706 -ssItem(A) | -ssItem(B) | B = A | -ssList(C) | -frontsegP(cons(A,C),cons(B,C)) # props([maximal([5]),maximal_signed([3,5]),selected([])]). [factor(185,d,e)]. 707 -ssItem(A) | -ssList(B) | -ssList(C) | frontsegP(B,C) | -frontsegP(cons(A,B),cons(A,C)) # props([maximal([5]),maximal_signed([4,5]),selected([])]). [factor(186,a,b)]. 708 -ssList(A) | -rearsegP(A,A) | -ssList(B) | rearsegP(app(B,A),A) # props([maximal([4]),maximal_signed([2,4]),selected([])]). [factor(193,a,b)]. 709 -ssList(A) | -ssList(B) | -rearsegP(A,B) | rearsegP(app(A,A),B) # props([maximal([4]),maximal_signed([3,4]),selected([])]). [factor(193,a,d)]. 710 -ssList(A) | -ssList(B) | -rearsegP(A,B) | rearsegP(app(B,A),B) # props([maximal([4]),maximal_signed([3,4]),selected([])]). [factor(193,b,d)]. 711 -ssList(A) | -segmentP(A,A) | -ssList(B) | -ssList(C) | segmentP(app(app(B,A),C),A) # props([maximal([5]),maximal_signed([2,5]),selected([])]). [factor(200,a,b)]. 712 -ssList(A) | -ssList(B) | -segmentP(A,B) | -ssList(C) | segmentP(app(app(A,A),C),B) # props([maximal([5]),maximal_signed([3,5]),selected([])]). [factor(200,a,d)]. 713 -ssList(A) | -ssList(B) | -segmentP(A,B) | -ssList(C) | segmentP(app(app(C,A),A),B) # props([maximal([5]),maximal_signed([3,5]),selected([])]). [factor(200,a,e)]. 714 -ssList(A) | -ssList(B) | -segmentP(A,B) | -ssList(C) | segmentP(app(app(B,A),C),B) # props([maximal([5]),maximal_signed([3,5]),selected([])]). [factor(200,b,d)]. 715 -ssList(A) | -ssList(B) | -segmentP(A,B) | -ssList(C) | segmentP(app(app(C,A),B),B) # props([maximal([5]),maximal_signed([3,5]),selected([])]). [factor(200,b,e)]. 716 -ssList(A) | -ssList(B) | -segmentP(A,B) | -ssList(C) | segmentP(app(app(C,A),C),B) # props([maximal([5]),maximal_signed([3,5]),selected([])]). [factor(200,d,e)]. 717 -ssList(A) | -ssList(B) | app(B,A) != app(A,A) | B = A # props([maximal([1,2]),maximal_signed([1,2,4]),selected([])]). [factor(234,a,b)]. 718 -ssList(A) | -ssList(B) | app(A,B) != app(B,B) | B = A # props([maximal([1,2]),maximal_signed([1,2,4]),selected([])]). [factor(234,b,c),flip(c)]. 719 -ssList(A) | -ssList(B) | app(A,B) != app(A,A) | B = A # props([maximal([1,2]),maximal_signed([1,2,4]),selected([])]). [factor(235,a,b)]. 720 -ssList(A) | -ssList(B) | app(B,A) != app(B,B) | B = A # props([maximal([1,2]),maximal_signed([1,2,4]),selected([])]). [factor(235,b,c),flip(c)]. 721 -ssList(A) | -ssList(B) | app(app(A,A),B) = app(A,app(A,B)) # props([maximal([1,2]),maximal_signed([1,2,3]),selected([])]). [factor(237,a,b)]. 722 -ssList(A) | -ssList(B) | app(app(A,B),A) = app(A,app(B,A)) # props([maximal([1,2]),maximal_signed([1,2,3]),selected([])]). [factor(237,a,c)]. 723 -ssList(A) | -ssList(B) | app(app(A,B),B) = app(A,app(B,B)) # props([maximal([1,2]),maximal_signed([1,2,3]),selected([])]). [factor(237,b,c)]. 724 -ssList(A) | nil != A | app(A,A) = nil # props([maximal([1]),maximal_signed([1,3]),selected([])]). [factor(238,a,c),merge(d)]. 725 -ssList(A) | nil = A | app(A,A) != nil # props([maximal([1]),maximal_signed([1,2]),selected([])]). [factor(239,a,b)]. 726 -ssList(A) | nil = A | hd(app(A,A)) = hd(A) # props([maximal([1]),maximal_signed([1,3]),selected([])]). [factor(242,a,c)]. 727 -ssList(A) | nil = A | tl(app(A,A)) = app(tl(A),A) # props([maximal([1]),maximal_signed([1,3]),selected([])]). [factor(243,a,c)]. 728 -ssItem(A) | -ssItem(B) | -leq(A,B) | -lt(B,A) | lt(A,A) # props([maximal([4,5]),maximal_signed([4,5]),selected([])]). [factor(248,a,d)]. 729 -ssItem(A) | -gt(A,A) # props([maximal([2]),maximal_signed([2]),selected([])]). [factor(252,a,b),merge(c)]. 730 -segmentP(nil,c5) # props([maximal([1]),maximal_signed([1]),selected([])]). [back_rewrite(256),rewrite([263(1),270(1),259(2)])]. 731 -ssItem(A) | -leq(A,A) | -ssList(B) | app(cons(A,nil),B) != c5 | -ssList(C) | app(C,cons(A,nil)) != c7 # props([maximal([2]),maximal_signed([2]),selected([])]). [factor(265,a,b)]. 732 -ssItem(A) | -ssItem(B) | -leq(A,B) | -ssList(C) | app(cons(B,nil),C) != c5 | app(C,cons(A,nil)) != c7 # props([maximal([3]),maximal_signed([3]),selected([])]). [factor(265,d,f)]. 733 -ssItem(A) | -leq(A,A) | -ssList(B) | app(B,cons(A,nil)) != c5 | -ssList(C) | app(cons(A,nil),C) != c8 # props([maximal([2]),maximal_signed([2]),selected([])]). [factor(268,a,b)]. 734 -ssItem(A) | -ssItem(B) | -leq(B,A) | -ssList(C) | app(C,cons(B,nil)) != c5 | app(cons(A,nil),C) != c8 # props([maximal([3]),maximal_signed([3]),selected([])]). [factor(268,d,f)]. 735 app(app(c7,c5),c8) = nil # props([maximal([1]),maximal_signed([1]),selected([])]). [back_rewrite(267),rewrite([270(6)])]. 736 c4 = nil # props([maximal([1]),maximal_signed([1]),selected([])]). [back_rewrite(263),rewrite([270(2)])]. 737 -ssList(A) | -ssItem(B) | memberP(A,B) | app(A,cons(B,A)) != A # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(272,a,d)]. 738 -ssList(A) | -ssItem(B) | ssList(f3(A,B)) | app(A,cons(B,A)) != A # props([maximal([2]),maximal_signed([2,3]),selected([])]). [factor(275,a,d)]. 739 -ssList(A) | -ssItem(B) | ssList(f4(A,B)) | app(A,cons(B,A)) != A # props([maximal([2]),maximal_signed([2,3]),selected([])]). [factor(278,a,d)]. 740 -ssList(A) | -ssItem(B) | app(f3(A,B),cons(B,f4(A,B))) = A | app(A,cons(B,A)) != A # props([maximal([2]),maximal_signed([2,3]),selected([])]). [factor(281,a,d)]. 741 -ssList(A) | ssList(f8(A,A)) | app(A,A) != A # props([maximal([2]),maximal_signed([1,2]),selected([])]). [factor(288,a,c)]. 742 -ssList(A) | app(A,f8(A,A)) = A | app(A,A) != A # props([maximal([1]),maximal_signed([1,2]),selected([])]). [factor(291,a,c)]. 743 -ssList(A) | ssList(f10(A,A)) | app(A,A) != A # props([maximal([2]),maximal_signed([1,2]),selected([])]). [factor(298,a,c)]. 744 -ssList(A) | app(f10(A,A),A) = A | app(A,A) != A # props([maximal([1]),maximal_signed([1,2]),selected([])]). [factor(301,a,c)]. 745 -ssList(A) | -ssList(B) | segmentP(A,B) | app(app(A,B),A) != A # props([maximal([3]),maximal_signed([1,2,3]),selected([])]). [factor(304,a,d)]. 746 -ssList(A) | -ssList(B) | segmentP(A,B) | app(app(A,B),B) != A # props([maximal([3]),maximal_signed([1,2,3]),selected([])]). [factor(304,b,d)]. 747 -ssList(A) | -ssList(B) | segmentP(A,B) | app(app(B,B),A) != A # props([maximal([3]),maximal_signed([1,2,3]),selected([])]). [factor(305,b,d)]. 748 -ssList(A) | -ssList(B) | segmentP(A,B) | app(app(B,B),B) != A # props([maximal([3]),maximal_signed([1,2,3]),selected([])]). [factor(306,b,d)]. 749 -ssList(A) | ssList(f13(A,A)) | -ssList(B) | app(app(A,A),B) != A # props([maximal([2,3]),maximal_signed([1,2,3]),selected([])]). [factor(312,a,c)]. 750 -ssList(A) | ssList(f13(A,A)) | -ssList(B) | app(app(B,A),A) != A # props([maximal([2,3]),maximal_signed([1,2,3]),selected([])]). [factor(312,a,d)]. 751 -ssList(A) | ssList(f13(A,A)) | -ssList(B) | app(app(B,A),B) != A # props([maximal([2,3]),maximal_signed([1,2,3]),selected([])]). [factor(312,c,d)]. 752 -ssList(A) | -ssList(B) | ssList(f13(A,B)) | app(app(A,B),A) != A # props([maximal([3]),maximal_signed([1,2,3]),selected([])]). [factor(313,a,d)]. 753 -ssList(A) | -ssList(B) | ssList(f13(A,B)) | app(app(A,B),B) != A # props([maximal([3]),maximal_signed([1,2,3]),selected([])]). [factor(313,b,d)]. 754 -ssList(A) | -ssList(B) | ssList(f13(A,B)) | app(app(B,B),A) != A # props([maximal([3]),maximal_signed([1,2,3]),selected([])]). [factor(314,b,d)]. 755 -ssList(A) | -ssList(B) | ssList(f13(A,B)) | app(app(B,B),B) != A # props([maximal([3]),maximal_signed([1,2,3]),selected([])]). [factor(315,b,d)]. 756 -ssList(A) | ssList(f14(A,A)) | -ssList(B) | app(app(A,A),B) != A # props([maximal([2,3]),maximal_signed([1,2,3]),selected([])]). [factor(318,a,c)]. 757 -ssList(A) | ssList(f14(A,A)) | -ssList(B) | app(app(B,A),A) != A # props([maximal([2,3]),maximal_signed([1,2,3]),selected([])]). [factor(318,a,d)]. 758 -ssList(A) | ssList(f14(A,A)) | -ssList(B) | app(app(B,A),B) != A # props([maximal([2,3]),maximal_signed([1,2,3]),selected([])]). [factor(318,c,d)]. 759 -ssList(A) | -ssList(B) | ssList(f14(A,B)) | app(app(A,B),A) != A # props([maximal([3]),maximal_signed([1,2,3]),selected([])]). [factor(319,a,d)]. 760 -ssList(A) | -ssList(B) | ssList(f14(A,B)) | app(app(A,B),B) != A # props([maximal([3]),maximal_signed([1,2,3]),selected([])]). [factor(319,b,d)]. 761 -ssList(A) | -ssList(B) | ssList(f14(A,B)) | app(app(B,B),A) != A # props([maximal([3]),maximal_signed([1,2,3]),selected([])]). [factor(320,b,d)]. 762 -ssList(A) | -ssList(B) | ssList(f14(A,B)) | app(app(B,B),B) != A # props([maximal([3]),maximal_signed([1,2,3]),selected([])]). [factor(321,b,d)]. 763 -ssList(A) | app(app(f13(A,A),A),f14(A,A)) = A | -ssList(B) | app(app(A,A),B) != A # props([maximal([1,3]),maximal_signed([1,2,3]),selected([])]). [factor(324,a,c)]. 764 -ssList(A) | app(app(f13(A,A),A),f14(A,A)) = A | -ssList(B) | app(app(B,A),A) != A # props([maximal([1,3]),maximal_signed([1,2,3]),selected([])]). [factor(324,a,d)]. 765 -ssList(A) | app(app(f13(A,A),A),f14(A,A)) = A | -ssList(B) | app(app(B,A),B) != A # props([maximal([1,3]),maximal_signed([1,2,3]),selected([])]). [factor(324,c,d)]. 766 -ssList(A) | -ssList(B) | app(app(f13(A,B),B),f14(A,B)) = A | app(app(A,B),A) != A # props([maximal([1,2]),maximal_signed([1,2,3]),selected([])]). [factor(325,a,d)]. 767 -ssList(A) | -ssList(B) | app(app(f13(A,B),B),f14(A,B)) = A | app(app(A,B),B) != A # props([maximal([1,2]),maximal_signed([1,2,3]),selected([])]). [factor(325,b,d)]. 768 -ssList(A) | -ssList(B) | app(app(f13(A,B),B),f14(A,B)) = A | app(app(B,B),A) != A # props([maximal([1,2]),maximal_signed([1,2,3]),selected([])]). [factor(326,b,d)]. 769 -ssList(A) | -ssList(B) | app(app(f13(A,B),B),f14(A,B)) = A | app(app(B,B),B) != A # props([maximal([1,2]),maximal_signed([1,2,3]),selected([])]). [factor(327,b,d)]. 770 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | -cyclefreeP(A) # props([maximal([4,5]),maximal_signed([4,5]),selected([])]). [factor(330,a,f)]. 771 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | -cyclefreeP(A) # props([maximal([4,5]),maximal_signed([4,5]),selected([])]). [factor(330,a,g)]. 772 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(A,cons(B,C)),cons(B,D)) != A | -cyclefreeP(A) # props([maximal([3]),maximal_signed([3]),selected([])]). [factor(330,b,c),merge(d)]. 773 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | -cyclefreeP(A) # props([maximal([4,5]),maximal_signed([4,5]),selected([])]). [factor(330,f,g)]. 774 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | -cyclefreeP(A) # props([maximal([4,5]),maximal_signed([4,5]),selected([])]). [factor(331,a,g)]. 775 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,A)),cons(B,D)) != A | -cyclefreeP(A) # props([maximal([3]),maximal_signed([3]),selected([])]). [factor(331,b,c),merge(d)]. 776 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | -cyclefreeP(A) # props([maximal([4,5]),maximal_signed([4,5]),selected([])]). [factor(331,f,g)]. 777 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,A)) != A | -cyclefreeP(A) # props([maximal([3]),maximal_signed([3]),selected([])]). [factor(332,b,c),merge(d)]. 778 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | -cyclefreeP(A) # props([maximal([4,5]),maximal_signed([4,5]),selected([])]). [factor(332,f,g)]. 779 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,C)),cons(B,D)) != A | -cyclefreeP(A) # props([maximal([3]),maximal_signed([3]),selected([])]). [factor(333,d,e)]. 780 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,C)) != A | -cyclefreeP(A) # props([maximal([3]),maximal_signed([3]),selected([])]). [factor(333,d,f)]. 781 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,D)) != A | -cyclefreeP(A) # props([maximal([3]),maximal_signed([3]),selected([])]). [factor(333,e,f)]. 782 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | -cyclefreeP(A) # props([maximal([4,5]),maximal_signed([4,5]),selected([])]). [factor(334,f,g)]. 783 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | ssItem(f20(A)) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(337,a,f)]. 784 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | ssItem(f20(A)) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(337,a,g)]. 785 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(A,cons(B,C)),cons(B,D)) != A | ssItem(f20(A)) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(337,b,c),merge(d)]. 786 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | ssItem(f20(A)) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(337,f,g)]. 787 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | ssItem(f20(A)) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(338,a,g)]. 788 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,A)),cons(B,D)) != A | ssItem(f20(A)) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(338,b,c),merge(d)]. 789 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | ssItem(f20(A)) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(338,f,g)]. 790 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,A)) != A | ssItem(f20(A)) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(339,b,c),merge(d)]. 791 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | ssItem(f20(A)) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(339,f,g)]. 792 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,C)),cons(B,D)) != A | ssItem(f20(A)) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(340,d,e)]. 793 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,C)) != A | ssItem(f20(A)) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(340,d,f)]. 794 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,D)) != A | ssItem(f20(A)) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(340,e,f)]. 795 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | ssItem(f20(A)) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(341,f,g)]. 796 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | ssItem(f21(A)) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(344,a,f)]. 797 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | ssItem(f21(A)) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(344,a,g)]. 798 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(A,cons(B,C)),cons(B,D)) != A | ssItem(f21(A)) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(344,b,c),merge(d)]. 799 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | ssItem(f21(A)) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(344,f,g)]. 800 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | ssItem(f21(A)) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(345,a,g)]. 801 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,A)),cons(B,D)) != A | ssItem(f21(A)) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(345,b,c),merge(d)]. 802 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | ssItem(f21(A)) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(345,f,g)]. 803 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,A)) != A | ssItem(f21(A)) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(346,b,c),merge(d)]. 804 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | ssItem(f21(A)) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(346,f,g)]. 805 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,C)),cons(B,D)) != A | ssItem(f21(A)) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(347,d,e)]. 806 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,C)) != A | ssItem(f21(A)) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(347,d,f)]. 807 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,D)) != A | ssItem(f21(A)) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(347,e,f)]. 808 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | ssItem(f21(A)) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(348,f,g)]. 809 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | leq(f20(A),f21(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(351,a,f)]. 810 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | leq(f20(A),f21(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(351,a,g)]. 811 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(A,cons(B,C)),cons(B,D)) != A | leq(f20(A),f21(A)) # props([maximal([3,7]),maximal_signed([3,7]),selected([])]). [factor(351,b,c),merge(d)]. 812 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | leq(f20(A),f21(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(351,f,g)]. 813 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | leq(f20(A),f21(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(352,a,g)]. 814 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,A)),cons(B,D)) != A | leq(f20(A),f21(A)) # props([maximal([3,7]),maximal_signed([3,7]),selected([])]). [factor(352,b,c),merge(d)]. 815 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | leq(f20(A),f21(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(352,f,g)]. 816 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,A)) != A | leq(f20(A),f21(A)) # props([maximal([3,7]),maximal_signed([3,7]),selected([])]). [factor(353,b,c),merge(d)]. 817 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | leq(f20(A),f21(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(353,f,g)]. 818 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,C)),cons(B,D)) != A | leq(f20(A),f21(A)) # props([maximal([3,7]),maximal_signed([3,7]),selected([])]). [factor(354,d,e)]. 819 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,C)) != A | leq(f20(A),f21(A)) # props([maximal([3,7]),maximal_signed([3,7]),selected([])]). [factor(354,d,f)]. 820 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,D)) != A | leq(f20(A),f21(A)) # props([maximal([3,7]),maximal_signed([3,7]),selected([])]). [factor(354,e,f)]. 821 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | leq(f20(A),f21(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(355,f,g)]. 822 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | leq(f21(A),f20(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(358,a,f)]. 823 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | leq(f21(A),f20(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(358,a,g)]. 824 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(A,cons(B,C)),cons(B,D)) != A | leq(f21(A),f20(A)) # props([maximal([3,7]),maximal_signed([3,7]),selected([])]). [factor(358,b,c),merge(d)]. 825 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | leq(f21(A),f20(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(358,f,g)]. 826 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | leq(f21(A),f20(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(359,a,g)]. 827 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,A)),cons(B,D)) != A | leq(f21(A),f20(A)) # props([maximal([3,7]),maximal_signed([3,7]),selected([])]). [factor(359,b,c),merge(d)]. 828 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | leq(f21(A),f20(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(359,f,g)]. 829 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,A)) != A | leq(f21(A),f20(A)) # props([maximal([3,7]),maximal_signed([3,7]),selected([])]). [factor(360,b,c),merge(d)]. 830 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | leq(f21(A),f20(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(360,f,g)]. 831 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,C)),cons(B,D)) != A | leq(f21(A),f20(A)) # props([maximal([3,7]),maximal_signed([3,7]),selected([])]). [factor(361,d,e)]. 832 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,C)) != A | leq(f21(A),f20(A)) # props([maximal([3,7]),maximal_signed([3,7]),selected([])]). [factor(361,d,f)]. 833 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,D)) != A | leq(f21(A),f20(A)) # props([maximal([3,7]),maximal_signed([3,7]),selected([])]). [factor(361,e,f)]. 834 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | leq(f21(A),f20(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(362,f,g)]. 835 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | ssList(f22(A)) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(365,a,f)]. 836 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | ssList(f22(A)) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(365,a,g)]. 837 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(A,cons(B,C)),cons(B,D)) != A | ssList(f22(A)) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(365,b,c),merge(d)]. 838 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | ssList(f22(A)) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(365,f,g)]. 839 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | ssList(f22(A)) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(366,a,g)]. 840 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,A)),cons(B,D)) != A | ssList(f22(A)) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(366,b,c),merge(d)]. 841 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | ssList(f22(A)) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(366,f,g)]. 842 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,A)) != A | ssList(f22(A)) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(367,b,c),merge(d)]. 843 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | ssList(f22(A)) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(367,f,g)]. 844 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,C)),cons(B,D)) != A | ssList(f22(A)) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(368,d,e)]. 845 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,C)) != A | ssList(f22(A)) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(368,d,f)]. 846 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,D)) != A | ssList(f22(A)) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(368,e,f)]. 847 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | ssList(f22(A)) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(369,f,g)]. 848 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | ssList(f23(A)) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(372,a,f)]. 849 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | ssList(f23(A)) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(372,a,g)]. 850 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(A,cons(B,C)),cons(B,D)) != A | ssList(f23(A)) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(372,b,c),merge(d)]. 851 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | ssList(f23(A)) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(372,f,g)]. 852 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | ssList(f23(A)) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(373,a,g)]. 853 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,A)),cons(B,D)) != A | ssList(f23(A)) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(373,b,c),merge(d)]. 854 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | ssList(f23(A)) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(373,f,g)]. 855 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,A)) != A | ssList(f23(A)) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(374,b,c),merge(d)]. 856 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | ssList(f23(A)) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(374,f,g)]. 857 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,C)),cons(B,D)) != A | ssList(f23(A)) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(375,d,e)]. 858 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,C)) != A | ssList(f23(A)) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(375,d,f)]. 859 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,D)) != A | ssList(f23(A)) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(375,e,f)]. 860 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | ssList(f23(A)) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(376,f,g)]. 861 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | ssList(f24(A)) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(379,a,f)]. 862 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | ssList(f24(A)) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(379,a,g)]. 863 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(A,cons(B,C)),cons(B,D)) != A | ssList(f24(A)) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(379,b,c),merge(d)]. 864 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | ssList(f24(A)) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(379,f,g)]. 865 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | ssList(f24(A)) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(380,a,g)]. 866 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,A)),cons(B,D)) != A | ssList(f24(A)) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(380,b,c),merge(d)]. 867 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | ssList(f24(A)) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(380,f,g)]. 868 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,A)) != A | ssList(f24(A)) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(381,b,c),merge(d)]. 869 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | ssList(f24(A)) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(381,f,g)]. 870 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,C)),cons(B,D)) != A | ssList(f24(A)) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(382,d,e)]. 871 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,C)) != A | ssList(f24(A)) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(382,d,f)]. 872 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,D)) != A | ssList(f24(A)) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(382,e,f)]. 873 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | ssList(f24(A)) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(383,f,g)]. 874 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | app(app(f22(A),cons(f20(A),f23(A))),cons(f21(A),f24(A))) = A # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(386,a,f)]. 875 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | app(app(f22(A),cons(f20(A),f23(A))),cons(f21(A),f24(A))) = A # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(386,a,g)]. 876 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(A,cons(B,C)),cons(B,D)) != A | app(app(f22(A),cons(f20(A),f23(A))),cons(f21(A),f24(A))) = A # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(386,b,c),merge(d)]. 877 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | app(app(f22(A),cons(f20(A),f23(A))),cons(f21(A),f24(A))) = A # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(386,f,g)]. 878 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | app(app(f22(A),cons(f20(A),f23(A))),cons(f21(A),f24(A))) = A # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(387,a,g)]. 879 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,A)),cons(B,D)) != A | app(app(f22(A),cons(f20(A),f23(A))),cons(f21(A),f24(A))) = A # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(387,b,c),merge(d)]. 880 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | app(app(f22(A),cons(f20(A),f23(A))),cons(f21(A),f24(A))) = A # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(387,f,g)]. 881 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,A)) != A | app(app(f22(A),cons(f20(A),f23(A))),cons(f21(A),f24(A))) = A # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(388,b,c),merge(d)]. 882 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | app(app(f22(A),cons(f20(A),f23(A))),cons(f21(A),f24(A))) = A # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(388,f,g)]. 883 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,C)),cons(B,D)) != A | app(app(f22(A),cons(f20(A),f23(A))),cons(f21(A),f24(A))) = A # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(389,d,e)]. 884 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,C)) != A | app(app(f22(A),cons(f20(A),f23(A))),cons(f21(A),f24(A))) = A # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(389,d,f)]. 885 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,D)) != A | app(app(f22(A),cons(f20(A),f23(A))),cons(f21(A),f24(A))) = A # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(389,e,f)]. 886 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | app(app(f22(A),cons(f20(A),f23(A))),cons(f21(A),f24(A))) = A # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(390,f,g)]. 887 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | -totalorderP(A) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(393,a,f)]. 888 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | -totalorderP(A) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(393,a,g)]. 889 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | -totalorderP(A) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(393,f,g)]. 890 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | -totalorderP(A) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(394,a,g)]. 891 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | -totalorderP(A) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(394,f,g)]. 892 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | -totalorderP(A) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(395,f,g)]. 893 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | -totalorderP(A) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(396,f,g)]. 894 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | ssItem(f30(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(399,a,f)]. 895 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | ssItem(f30(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(399,a,g)]. 896 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | ssItem(f30(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(399,f,g)]. 897 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | ssItem(f30(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(400,a,g)]. 898 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | ssItem(f30(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(400,f,g)]. 899 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | ssItem(f30(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(401,f,g)]. 900 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | ssItem(f30(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(402,f,g)]. 901 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | ssItem(f31(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(405,a,f)]. 902 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | ssItem(f31(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(405,a,g)]. 903 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | ssItem(f31(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(405,f,g)]. 904 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | ssItem(f31(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(406,a,g)]. 905 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | ssItem(f31(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(406,f,g)]. 906 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | ssItem(f31(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(407,f,g)]. 907 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | ssItem(f31(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(408,f,g)]. 908 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | -leq(f30(A),f31(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(411,a,f)]. 909 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | -leq(f30(A),f31(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(411,a,g)]. 910 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | -leq(f30(A),f31(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(411,f,g)]. 911 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | -leq(f30(A),f31(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(412,a,g)]. 912 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | -leq(f30(A),f31(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(412,f,g)]. 913 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | -leq(f30(A),f31(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(413,f,g)]. 914 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | -leq(f30(A),f31(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(414,f,g)]. 915 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | -leq(f31(A),f30(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(417,a,f)]. 916 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | -leq(f31(A),f30(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(417,a,g)]. 917 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | -leq(f31(A),f30(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(417,f,g)]. 918 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | -leq(f31(A),f30(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(418,a,g)]. 919 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | -leq(f31(A),f30(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(418,f,g)]. 920 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | -leq(f31(A),f30(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(419,f,g)]. 921 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | -leq(f31(A),f30(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(420,f,g)]. 922 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | ssList(f32(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(423,a,f)]. 923 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | ssList(f32(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(423,a,g)]. 924 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | ssList(f32(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(423,f,g)]. 925 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | ssList(f32(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(424,a,g)]. 926 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | ssList(f32(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(424,f,g)]. 927 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | ssList(f32(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(425,f,g)]. 928 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | ssList(f32(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(426,f,g)]. 929 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | ssList(f33(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(429,a,f)]. 930 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | ssList(f33(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(429,a,g)]. 931 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | ssList(f33(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(429,f,g)]. 932 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | ssList(f33(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(430,a,g)]. 933 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | ssList(f33(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(430,f,g)]. 934 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | ssList(f33(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(431,f,g)]. 935 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | ssList(f33(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(432,f,g)]. 936 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | ssList(f34(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(435,a,f)]. 937 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | ssList(f34(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(435,a,g)]. 938 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | ssList(f34(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(435,f,g)]. 939 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | ssList(f34(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(436,a,g)]. 940 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | ssList(f34(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(436,f,g)]. 941 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | ssList(f34(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(437,f,g)]. 942 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | ssList(f34(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(438,f,g)]. 943 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | app(app(f32(A),cons(f30(A),f33(A))),cons(f31(A),f34(A))) = A # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(441,a,f)]. 944 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | app(app(f32(A),cons(f30(A),f33(A))),cons(f31(A),f34(A))) = A # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(441,a,g)]. 945 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | app(app(f32(A),cons(f30(A),f33(A))),cons(f31(A),f34(A))) = A # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(441,f,g)]. 946 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | app(app(f32(A),cons(f30(A),f33(A))),cons(f31(A),f34(A))) = A # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(442,a,g)]. 947 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | app(app(f32(A),cons(f30(A),f33(A))),cons(f31(A),f34(A))) = A # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(442,f,g)]. 948 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | app(app(f32(A),cons(f30(A),f33(A))),cons(f31(A),f34(A))) = A # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(443,f,g)]. 949 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | app(app(f32(A),cons(f30(A),f33(A))),cons(f31(A),f34(A))) = A # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(444,f,g)]. 950 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | -strictorderP(A) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(447,a,f)]. 951 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | -strictorderP(A) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(447,a,g)]. 952 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(A,cons(B,C)),cons(B,D)) != A | -strictorderP(A) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(447,b,c),merge(d)]. 953 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | -strictorderP(A) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(447,f,g)]. 954 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | -strictorderP(A) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(448,a,g)]. 955 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,A)),cons(B,D)) != A | -strictorderP(A) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(448,b,c),merge(d)]. 956 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | -strictorderP(A) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(448,f,g)]. 957 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,A)) != A | -strictorderP(A) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(449,b,c),merge(d)]. 958 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | -strictorderP(A) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(449,f,g)]. 959 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,C)),cons(B,D)) != A | -strictorderP(A) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(450,d,e)]. 960 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,C)) != A | -strictorderP(A) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(450,d,f)]. 961 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,D)) != A | -strictorderP(A) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(450,e,f)]. 962 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | -strictorderP(A) # props([maximal([4,5]),maximal_signed([4,5,8]),selected([])]). [factor(451,f,g)]. 963 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | ssItem(f40(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(454,a,f)]. 964 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | ssItem(f40(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(454,a,g)]. 965 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(A,cons(B,C)),cons(B,D)) != A | ssItem(f40(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(454,b,c),merge(d)]. 966 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | ssItem(f40(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(454,f,g)]. 967 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | ssItem(f40(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(455,a,g)]. 968 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,A)),cons(B,D)) != A | ssItem(f40(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(455,b,c),merge(d)]. 969 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | ssItem(f40(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(455,f,g)]. 970 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,A)) != A | ssItem(f40(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(456,b,c),merge(d)]. 971 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | ssItem(f40(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(456,f,g)]. 972 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,C)),cons(B,D)) != A | ssItem(f40(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(457,d,e)]. 973 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,C)) != A | ssItem(f40(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(457,d,f)]. 974 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,D)) != A | ssItem(f40(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(457,e,f)]. 975 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | ssItem(f40(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(458,f,g)]. 976 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | ssItem(f41(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(461,a,f)]. 977 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | ssItem(f41(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(461,a,g)]. 978 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(A,cons(B,C)),cons(B,D)) != A | ssItem(f41(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(461,b,c),merge(d)]. 979 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | ssItem(f41(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(461,f,g)]. 980 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | ssItem(f41(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(462,a,g)]. 981 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,A)),cons(B,D)) != A | ssItem(f41(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(462,b,c),merge(d)]. 982 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | ssItem(f41(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(462,f,g)]. 983 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,A)) != A | ssItem(f41(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(463,b,c),merge(d)]. 984 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | ssItem(f41(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(463,f,g)]. 985 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,C)),cons(B,D)) != A | ssItem(f41(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(464,d,e)]. 986 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,C)) != A | ssItem(f41(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(464,d,f)]. 987 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,D)) != A | ssItem(f41(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(464,e,f)]. 988 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | ssItem(f41(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(465,f,g)]. 989 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | -lt(f40(A),f41(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(468,a,f)]. 990 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | -lt(f40(A),f41(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(468,a,g)]. 991 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(A,cons(B,C)),cons(B,D)) != A | -lt(f40(A),f41(A)) # props([maximal([3,7]),maximal_signed([3,7]),selected([])]). [factor(468,b,c),merge(d)]. 992 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | -lt(f40(A),f41(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(468,f,g)]. 993 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | -lt(f40(A),f41(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(469,a,g)]. 994 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,A)),cons(B,D)) != A | -lt(f40(A),f41(A)) # props([maximal([3,7]),maximal_signed([3,7]),selected([])]). [factor(469,b,c),merge(d)]. 995 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | -lt(f40(A),f41(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(469,f,g)]. 996 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,A)) != A | -lt(f40(A),f41(A)) # props([maximal([3,7]),maximal_signed([3,7]),selected([])]). [factor(470,b,c),merge(d)]. 997 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | -lt(f40(A),f41(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(470,f,g)]. 998 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,C)),cons(B,D)) != A | -lt(f40(A),f41(A)) # props([maximal([3,7]),maximal_signed([3,7]),selected([])]). [factor(471,d,e)]. 999 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,C)) != A | -lt(f40(A),f41(A)) # props([maximal([3,7]),maximal_signed([3,7]),selected([])]). [factor(471,d,f)]. 1000 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,D)) != A | -lt(f40(A),f41(A)) # props([maximal([3,7]),maximal_signed([3,7]),selected([])]). [factor(471,e,f)]. 1001 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | -lt(f40(A),f41(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(472,f,g)]. 1002 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | -lt(f41(A),f40(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(475,a,f)]. 1003 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | -lt(f41(A),f40(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(475,a,g)]. 1004 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(A,cons(B,C)),cons(B,D)) != A | -lt(f41(A),f40(A)) # props([maximal([3,7]),maximal_signed([3,7]),selected([])]). [factor(475,b,c),merge(d)]. 1005 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | -lt(f41(A),f40(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(475,f,g)]. 1006 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | -lt(f41(A),f40(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(476,a,g)]. 1007 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,A)),cons(B,D)) != A | -lt(f41(A),f40(A)) # props([maximal([3,7]),maximal_signed([3,7]),selected([])]). [factor(476,b,c),merge(d)]. 1008 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | -lt(f41(A),f40(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(476,f,g)]. 1009 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,A)) != A | -lt(f41(A),f40(A)) # props([maximal([3,7]),maximal_signed([3,7]),selected([])]). [factor(477,b,c),merge(d)]. 1010 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | -lt(f41(A),f40(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(477,f,g)]. 1011 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,C)),cons(B,D)) != A | -lt(f41(A),f40(A)) # props([maximal([3,7]),maximal_signed([3,7]),selected([])]). [factor(478,d,e)]. 1012 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,C)) != A | -lt(f41(A),f40(A)) # props([maximal([3,7]),maximal_signed([3,7]),selected([])]). [factor(478,d,f)]. 1013 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,D)) != A | -lt(f41(A),f40(A)) # props([maximal([3,7]),maximal_signed([3,7]),selected([])]). [factor(478,e,f)]. 1014 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | -lt(f41(A),f40(A)) # props([maximal([4,5,8]),maximal_signed([4,5,8]),selected([])]). [factor(479,f,g)]. 1015 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | ssList(f42(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(482,a,f)]. 1016 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | ssList(f42(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(482,a,g)]. 1017 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(A,cons(B,C)),cons(B,D)) != A | ssList(f42(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(482,b,c),merge(d)]. 1018 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | ssList(f42(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(482,f,g)]. 1019 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | ssList(f42(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(483,a,g)]. 1020 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,A)),cons(B,D)) != A | ssList(f42(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(483,b,c),merge(d)]. 1021 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | ssList(f42(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(483,f,g)]. 1022 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,A)) != A | ssList(f42(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(484,b,c),merge(d)]. 1023 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | ssList(f42(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(484,f,g)]. 1024 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,C)),cons(B,D)) != A | ssList(f42(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(485,d,e)]. 1025 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,C)) != A | ssList(f42(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(485,d,f)]. 1026 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,D)) != A | ssList(f42(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(485,e,f)]. 1027 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | ssList(f42(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(486,f,g)]. 1028 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | ssList(f43(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(489,a,f)]. 1029 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | ssList(f43(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(489,a,g)]. 1030 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(A,cons(B,C)),cons(B,D)) != A | ssList(f43(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(489,b,c),merge(d)]. 1031 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | ssList(f43(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(489,f,g)]. 1032 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | ssList(f43(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(490,a,g)]. 1033 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,A)),cons(B,D)) != A | ssList(f43(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(490,b,c),merge(d)]. 1034 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | ssList(f43(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(490,f,g)]. 1035 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,A)) != A | ssList(f43(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(491,b,c),merge(d)]. 1036 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | ssList(f43(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(491,f,g)]. 1037 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,C)),cons(B,D)) != A | ssList(f43(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(492,d,e)]. 1038 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,C)) != A | ssList(f43(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(492,d,f)]. 1039 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,D)) != A | ssList(f43(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(492,e,f)]. 1040 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | ssList(f43(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(493,f,g)]. 1041 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | ssList(f44(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(496,a,f)]. 1042 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | ssList(f44(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(496,a,g)]. 1043 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(A,cons(B,C)),cons(B,D)) != A | ssList(f44(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(496,b,c),merge(d)]. 1044 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | ssList(f44(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(496,f,g)]. 1045 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | ssList(f44(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(497,a,g)]. 1046 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,A)),cons(B,D)) != A | ssList(f44(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(497,b,c),merge(d)]. 1047 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | ssList(f44(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(497,f,g)]. 1048 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,A)) != A | ssList(f44(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(498,b,c),merge(d)]. 1049 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | ssList(f44(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(498,f,g)]. 1050 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,C)),cons(B,D)) != A | ssList(f44(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(499,d,e)]. 1051 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,C)) != A | ssList(f44(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(499,d,f)]. 1052 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,D)) != A | ssList(f44(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(499,e,f)]. 1053 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | ssList(f44(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(500,f,g)]. 1054 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | app(app(f42(A),cons(f40(A),f43(A))),cons(f41(A),f44(A))) = A # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(503,a,f)]. 1055 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | app(app(f42(A),cons(f40(A),f43(A))),cons(f41(A),f44(A))) = A # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(503,a,g)]. 1056 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(A,cons(B,C)),cons(B,D)) != A | app(app(f42(A),cons(f40(A),f43(A))),cons(f41(A),f44(A))) = A # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(503,b,c),merge(d)]. 1057 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | app(app(f42(A),cons(f40(A),f43(A))),cons(f41(A),f44(A))) = A # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(503,f,g)]. 1058 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | app(app(f42(A),cons(f40(A),f43(A))),cons(f41(A),f44(A))) = A # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(504,a,g)]. 1059 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,A)),cons(B,D)) != A | app(app(f42(A),cons(f40(A),f43(A))),cons(f41(A),f44(A))) = A # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(504,b,c),merge(d)]. 1060 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | app(app(f42(A),cons(f40(A),f43(A))),cons(f41(A),f44(A))) = A # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(504,f,g)]. 1061 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,A)) != A | app(app(f42(A),cons(f40(A),f43(A))),cons(f41(A),f44(A))) = A # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(505,b,c),merge(d)]. 1062 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | app(app(f42(A),cons(f40(A),f43(A))),cons(f41(A),f44(A))) = A # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(505,f,g)]. 1063 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,C)),cons(B,D)) != A | app(app(f42(A),cons(f40(A),f43(A))),cons(f41(A),f44(A))) = A # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(506,d,e)]. 1064 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,C)) != A | app(app(f42(A),cons(f40(A),f43(A))),cons(f41(A),f44(A))) = A # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(506,d,f)]. 1065 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,D)) != A | app(app(f42(A),cons(f40(A),f43(A))),cons(f41(A),f44(A))) = A # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(506,e,f)]. 1066 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | app(app(f42(A),cons(f40(A),f43(A))),cons(f41(A),f44(A))) = A # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(507,f,g)]. 1067 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | -totalorderedP(A) # props([maximal([4]),maximal_signed([4,7]),selected([])]). [factor(510,a,e)]. 1068 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | -totalorderedP(A) # props([maximal([4]),maximal_signed([4,7]),selected([])]). [factor(510,a,f)]. 1069 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | -totalorderedP(A) # props([maximal([4]),maximal_signed([4,7]),selected([])]). [factor(510,e,f)]. 1070 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | -totalorderedP(A) # props([maximal([4]),maximal_signed([4,7]),selected([])]). [factor(511,a,f)]. 1071 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | -totalorderedP(A) # props([maximal([4]),maximal_signed([4,7]),selected([])]). [factor(511,e,f)]. 1072 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | -totalorderedP(A) # props([maximal([4]),maximal_signed([4,7]),selected([])]). [factor(512,e,f)]. 1073 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | -totalorderedP(A) # props([maximal([4]),maximal_signed([4,7]),selected([])]). [factor(513,e,f)]. 1074 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | ssItem(f50(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(516,a,e)]. 1075 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | ssItem(f50(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(516,a,f)]. 1076 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | ssItem(f50(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(516,e,f)]. 1077 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | ssItem(f50(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(517,a,f)]. 1078 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | ssItem(f50(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(517,e,f)]. 1079 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | ssItem(f50(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(518,e,f)]. 1080 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | ssItem(f50(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(519,e,f)]. 1081 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | ssItem(f51(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(522,a,e)]. 1082 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | ssItem(f51(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(522,a,f)]. 1083 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | ssItem(f51(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(522,e,f)]. 1084 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | ssItem(f51(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(523,a,f)]. 1085 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | ssItem(f51(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(523,e,f)]. 1086 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | ssItem(f51(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(524,e,f)]. 1087 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | ssItem(f51(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(525,e,f)]. 1088 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | -leq(f50(A),f51(A)) # props([maximal([4,7]),maximal_signed([4,7]),selected([])]). [factor(528,a,e)]. 1089 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | -leq(f50(A),f51(A)) # props([maximal([4,7]),maximal_signed([4,7]),selected([])]). [factor(528,a,f)]. 1090 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | -leq(f50(A),f51(A)) # props([maximal([4,7]),maximal_signed([4,7]),selected([])]). [factor(528,e,f)]. 1091 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | -leq(f50(A),f51(A)) # props([maximal([4,7]),maximal_signed([4,7]),selected([])]). [factor(529,a,f)]. 1092 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | -leq(f50(A),f51(A)) # props([maximal([4,7]),maximal_signed([4,7]),selected([])]). [factor(529,e,f)]. 1093 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | -leq(f50(A),f51(A)) # props([maximal([4,7]),maximal_signed([4,7]),selected([])]). [factor(530,e,f)]. 1094 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | -leq(f50(A),f51(A)) # props([maximal([4,7]),maximal_signed([4,7]),selected([])]). [factor(531,e,f)]. 1095 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | ssList(f52(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(534,a,e)]. 1096 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | ssList(f52(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(534,a,f)]. 1097 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | ssList(f52(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(534,e,f)]. 1098 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | ssList(f52(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(535,a,f)]. 1099 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | ssList(f52(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(535,e,f)]. 1100 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | ssList(f52(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(536,e,f)]. 1101 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | ssList(f52(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(537,e,f)]. 1102 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | ssList(f53(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(540,a,e)]. 1103 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | ssList(f53(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(540,a,f)]. 1104 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | ssList(f53(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(540,e,f)]. 1105 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | ssList(f53(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(541,a,f)]. 1106 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | ssList(f53(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(541,e,f)]. 1107 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | ssList(f53(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(542,e,f)]. 1108 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | ssList(f53(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(543,e,f)]. 1109 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | ssList(f54(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(546,a,e)]. 1110 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | ssList(f54(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(546,a,f)]. 1111 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | ssList(f54(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(546,e,f)]. 1112 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | ssList(f54(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(547,a,f)]. 1113 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | ssList(f54(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(547,e,f)]. 1114 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | ssList(f54(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(548,e,f)]. 1115 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | ssList(f54(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(549,e,f)]. 1116 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | app(app(f52(A),cons(f50(A),f53(A))),cons(f51(A),f54(A))) = A # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(552,a,e)]. 1117 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | app(app(f52(A),cons(f50(A),f53(A))),cons(f51(A),f54(A))) = A # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(552,a,f)]. 1118 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | app(app(f52(A),cons(f50(A),f53(A))),cons(f51(A),f54(A))) = A # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(552,e,f)]. 1119 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | app(app(f52(A),cons(f50(A),f53(A))),cons(f51(A),f54(A))) = A # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(553,a,f)]. 1120 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | app(app(f52(A),cons(f50(A),f53(A))),cons(f51(A),f54(A))) = A # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(553,e,f)]. 1121 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | app(app(f52(A),cons(f50(A),f53(A))),cons(f51(A),f54(A))) = A # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(554,e,f)]. 1122 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | app(app(f52(A),cons(f50(A),f53(A))),cons(f51(A),f54(A))) = A # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(555,e,f)]. 1123 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | -strictorderedP(A) # props([maximal([4]),maximal_signed([4,7]),selected([])]). [factor(558,a,e)]. 1124 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | -strictorderedP(A) # props([maximal([4]),maximal_signed([4,7]),selected([])]). [factor(558,a,f)]. 1125 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(A,cons(B,C)),cons(B,D)) != A | -strictorderedP(A) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(558,b,c)]. 1126 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | -strictorderedP(A) # props([maximal([4]),maximal_signed([4,7]),selected([])]). [factor(558,e,f)]. 1127 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | -strictorderedP(A) # props([maximal([4]),maximal_signed([4,7]),selected([])]). [factor(559,a,f)]. 1128 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,A)),cons(B,D)) != A | -strictorderedP(A) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(559,b,c)]. 1129 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | -strictorderedP(A) # props([maximal([4]),maximal_signed([4,7]),selected([])]). [factor(559,e,f)]. 1130 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,A)) != A | -strictorderedP(A) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(560,b,c)]. 1131 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | -strictorderedP(A) # props([maximal([4]),maximal_signed([4,7]),selected([])]). [factor(560,e,f)]. 1132 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,C)),cons(B,D)) != A | -strictorderedP(A) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(561,d,e)]. 1133 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,C)) != A | -strictorderedP(A) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(561,d,f)]. 1134 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,D)) != A | -strictorderedP(A) # props([maximal([3]),maximal_signed([3,7]),selected([])]). [factor(561,e,f)]. 1135 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | -strictorderedP(A) # props([maximal([4]),maximal_signed([4,7]),selected([])]). [factor(562,e,f)]. 1136 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | ssItem(f60(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(565,a,e)]. 1137 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | ssItem(f60(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(565,a,f)]. 1138 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(A,cons(B,C)),cons(B,D)) != A | ssItem(f60(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(565,b,c)]. 1139 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | ssItem(f60(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(565,e,f)]. 1140 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | ssItem(f60(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(566,a,f)]. 1141 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,A)),cons(B,D)) != A | ssItem(f60(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(566,b,c)]. 1142 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | ssItem(f60(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(566,e,f)]. 1143 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,A)) != A | ssItem(f60(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(567,b,c)]. 1144 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | ssItem(f60(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(567,e,f)]. 1145 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,C)),cons(B,D)) != A | ssItem(f60(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(568,d,e)]. 1146 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,C)) != A | ssItem(f60(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(568,d,f)]. 1147 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,D)) != A | ssItem(f60(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(568,e,f)]. 1148 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | ssItem(f60(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(569,e,f)]. 1149 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | ssItem(f61(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(572,a,e)]. 1150 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | ssItem(f61(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(572,a,f)]. 1151 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(A,cons(B,C)),cons(B,D)) != A | ssItem(f61(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(572,b,c)]. 1152 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | ssItem(f61(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(572,e,f)]. 1153 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | ssItem(f61(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(573,a,f)]. 1154 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,A)),cons(B,D)) != A | ssItem(f61(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(573,b,c)]. 1155 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | ssItem(f61(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(573,e,f)]. 1156 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,A)) != A | ssItem(f61(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(574,b,c)]. 1157 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | ssItem(f61(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(574,e,f)]. 1158 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,C)),cons(B,D)) != A | ssItem(f61(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(575,d,e)]. 1159 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,C)) != A | ssItem(f61(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(575,d,f)]. 1160 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,D)) != A | ssItem(f61(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(575,e,f)]. 1161 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | ssItem(f61(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(576,e,f)]. 1162 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | -lt(f60(A),f61(A)) # props([maximal([4,7]),maximal_signed([4,7]),selected([])]). [factor(579,a,e)]. 1163 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | -lt(f60(A),f61(A)) # props([maximal([4,7]),maximal_signed([4,7]),selected([])]). [factor(579,a,f)]. 1164 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(A,cons(B,C)),cons(B,D)) != A | -lt(f60(A),f61(A)) # props([maximal([3,7]),maximal_signed([3,7]),selected([])]). [factor(579,b,c)]. 1165 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | -lt(f60(A),f61(A)) # props([maximal([4,7]),maximal_signed([4,7]),selected([])]). [factor(579,e,f)]. 1166 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | -lt(f60(A),f61(A)) # props([maximal([4,7]),maximal_signed([4,7]),selected([])]). [factor(580,a,f)]. 1167 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,A)),cons(B,D)) != A | -lt(f60(A),f61(A)) # props([maximal([3,7]),maximal_signed([3,7]),selected([])]). [factor(580,b,c)]. 1168 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | -lt(f60(A),f61(A)) # props([maximal([4,7]),maximal_signed([4,7]),selected([])]). [factor(580,e,f)]. 1169 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,A)) != A | -lt(f60(A),f61(A)) # props([maximal([3,7]),maximal_signed([3,7]),selected([])]). [factor(581,b,c)]. 1170 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | -lt(f60(A),f61(A)) # props([maximal([4,7]),maximal_signed([4,7]),selected([])]). [factor(581,e,f)]. 1171 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,C)),cons(B,D)) != A | -lt(f60(A),f61(A)) # props([maximal([3,7]),maximal_signed([3,7]),selected([])]). [factor(582,d,e)]. 1172 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,C)) != A | -lt(f60(A),f61(A)) # props([maximal([3,7]),maximal_signed([3,7]),selected([])]). [factor(582,d,f)]. 1173 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,D)) != A | -lt(f60(A),f61(A)) # props([maximal([3,7]),maximal_signed([3,7]),selected([])]). [factor(582,e,f)]. 1174 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | -lt(f60(A),f61(A)) # props([maximal([4,7]),maximal_signed([4,7]),selected([])]). [factor(583,e,f)]. 1175 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | ssList(f62(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(586,a,e)]. 1176 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | ssList(f62(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(586,a,f)]. 1177 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(A,cons(B,C)),cons(B,D)) != A | ssList(f62(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(586,b,c)]. 1178 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | ssList(f62(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(586,e,f)]. 1179 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | ssList(f62(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(587,a,f)]. 1180 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,A)),cons(B,D)) != A | ssList(f62(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(587,b,c)]. 1181 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | ssList(f62(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(587,e,f)]. 1182 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,A)) != A | ssList(f62(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(588,b,c)]. 1183 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | ssList(f62(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(588,e,f)]. 1184 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,C)),cons(B,D)) != A | ssList(f62(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(589,d,e)]. 1185 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,C)) != A | ssList(f62(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(589,d,f)]. 1186 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,D)) != A | ssList(f62(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(589,e,f)]. 1187 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | ssList(f62(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(590,e,f)]. 1188 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | ssList(f63(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(593,a,e)]. 1189 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | ssList(f63(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(593,a,f)]. 1190 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(A,cons(B,C)),cons(B,D)) != A | ssList(f63(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(593,b,c)]. 1191 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | ssList(f63(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(593,e,f)]. 1192 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | ssList(f63(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(594,a,f)]. 1193 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,A)),cons(B,D)) != A | ssList(f63(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(594,b,c)]. 1194 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | ssList(f63(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(594,e,f)]. 1195 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,A)) != A | ssList(f63(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(595,b,c)]. 1196 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | ssList(f63(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(595,e,f)]. 1197 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,C)),cons(B,D)) != A | ssList(f63(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(596,d,e)]. 1198 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,C)) != A | ssList(f63(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(596,d,f)]. 1199 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,D)) != A | ssList(f63(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(596,e,f)]. 1200 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | ssList(f63(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(597,e,f)]. 1201 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | ssList(f64(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(600,a,e)]. 1202 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | ssList(f64(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(600,a,f)]. 1203 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(A,cons(B,C)),cons(B,D)) != A | ssList(f64(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(600,b,c)]. 1204 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | ssList(f64(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(600,e,f)]. 1205 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | ssList(f64(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(601,a,f)]. 1206 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,A)),cons(B,D)) != A | ssList(f64(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(601,b,c)]. 1207 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | ssList(f64(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(601,e,f)]. 1208 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,A)) != A | ssList(f64(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(602,b,c)]. 1209 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | ssList(f64(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(602,e,f)]. 1210 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,C)),cons(B,D)) != A | ssList(f64(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(603,d,e)]. 1211 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,C)) != A | ssList(f64(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(603,d,f)]. 1212 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,D)) != A | ssList(f64(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(603,e,f)]. 1213 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | ssList(f64(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(604,e,f)]. 1214 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | app(app(f62(A),cons(f60(A),f63(A))),cons(f61(A),f64(A))) = A # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(607,a,e)]. 1215 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | app(app(f62(A),cons(f60(A),f63(A))),cons(f61(A),f64(A))) = A # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(607,a,f)]. 1216 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(A,cons(B,C)),cons(B,D)) != A | app(app(f62(A),cons(f60(A),f63(A))),cons(f61(A),f64(A))) = A # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(607,b,c)]. 1217 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | app(app(f62(A),cons(f60(A),f63(A))),cons(f61(A),f64(A))) = A # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(607,e,f)]. 1218 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | app(app(f62(A),cons(f60(A),f63(A))),cons(f61(A),f64(A))) = A # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(608,a,f)]. 1219 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,A)),cons(B,D)) != A | app(app(f62(A),cons(f60(A),f63(A))),cons(f61(A),f64(A))) = A # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(608,b,c)]. 1220 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | app(app(f62(A),cons(f60(A),f63(A))),cons(f61(A),f64(A))) = A # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(608,e,f)]. 1221 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,A)) != A | app(app(f62(A),cons(f60(A),f63(A))),cons(f61(A),f64(A))) = A # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(609,b,c)]. 1222 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | app(app(f62(A),cons(f60(A),f63(A))),cons(f61(A),f64(A))) = A # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(609,e,f)]. 1223 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,C)),cons(B,D)) != A | app(app(f62(A),cons(f60(A),f63(A))),cons(f61(A),f64(A))) = A # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(610,d,e)]. 1224 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,C)) != A | app(app(f62(A),cons(f60(A),f63(A))),cons(f61(A),f64(A))) = A # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(610,d,f)]. 1225 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,D)) != A | app(app(f62(A),cons(f60(A),f63(A))),cons(f61(A),f64(A))) = A # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(610,e,f)]. 1226 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | app(app(f62(A),cons(f60(A),f63(A))),cons(f61(A),f64(A))) = A # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(611,e,f)]. 1227 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | -duplicatefreeP(A) # props([maximal([7]),maximal_signed([7]),selected([])]). [factor(614,a,e)]. 1228 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | -duplicatefreeP(A) # props([maximal([7]),maximal_signed([7]),selected([])]). [factor(614,a,f)]. 1229 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(A,cons(B,C)),cons(B,D)) != A | -duplicatefreeP(A) # props([maximal([6]),maximal_signed([6]),selected([])]). [factor(614,b,c),xx(c)]. 1230 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | -duplicatefreeP(A) # props([maximal([7]),maximal_signed([7]),selected([])]). [factor(614,e,f)]. 1231 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | -duplicatefreeP(A) # props([maximal([7]),maximal_signed([7]),selected([])]). [factor(615,a,f)]. 1232 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,A)),cons(B,D)) != A | -duplicatefreeP(A) # props([maximal([6]),maximal_signed([6]),selected([])]). [factor(615,b,c),xx(c)]. 1233 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | -duplicatefreeP(A) # props([maximal([7]),maximal_signed([7]),selected([])]). [factor(615,e,f)]. 1234 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,A)) != A | -duplicatefreeP(A) # props([maximal([6]),maximal_signed([6]),selected([])]). [factor(616,b,c),xx(c)]. 1235 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | -duplicatefreeP(A) # props([maximal([7]),maximal_signed([7]),selected([])]). [factor(616,e,f)]. 1236 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,C)),cons(B,D)) != A | -duplicatefreeP(A) # props([maximal([6]),maximal_signed([6]),selected([])]). [factor(617,c,d)]. 1237 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,C)) != A | -duplicatefreeP(A) # props([maximal([6]),maximal_signed([6]),selected([])]). [factor(617,c,e)]. 1238 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,D)) != A | -duplicatefreeP(A) # props([maximal([6]),maximal_signed([6]),selected([])]). [factor(617,d,e)]. 1239 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | -duplicatefreeP(A) # props([maximal([7]),maximal_signed([7]),selected([])]). [factor(618,e,f)]. 1240 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | ssItem(f70(A)) # props([maximal([2,3,7]),maximal_signed([2,3,7]),selected([])]). [factor(621,a,e)]. 1241 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | ssItem(f70(A)) # props([maximal([2,3,7]),maximal_signed([2,3,7]),selected([])]). [factor(621,a,f)]. 1242 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(A,cons(B,C)),cons(B,D)) != A | ssItem(f70(A)) # props([maximal([2,6]),maximal_signed([2,6]),selected([])]). [factor(621,b,c),xx(c)]. 1243 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | ssItem(f70(A)) # props([maximal([2,3,7]),maximal_signed([2,3,7]),selected([])]). [factor(621,e,f)]. 1244 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | ssItem(f70(A)) # props([maximal([2,3,7]),maximal_signed([2,3,7]),selected([])]). [factor(622,a,f)]. 1245 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,A)),cons(B,D)) != A | ssItem(f70(A)) # props([maximal([2,6]),maximal_signed([2,6]),selected([])]). [factor(622,b,c),xx(c)]. 1246 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | ssItem(f70(A)) # props([maximal([2,3,7]),maximal_signed([2,3,7]),selected([])]). [factor(622,e,f)]. 1247 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,A)) != A | ssItem(f70(A)) # props([maximal([2,6]),maximal_signed([2,6]),selected([])]). [factor(623,b,c),xx(c)]. 1248 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | ssItem(f70(A)) # props([maximal([2,3,7]),maximal_signed([2,3,7]),selected([])]). [factor(623,e,f)]. 1249 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,C)),cons(B,D)) != A | ssItem(f70(A)) # props([maximal([2,6]),maximal_signed([2,6]),selected([])]). [factor(624,c,d)]. 1250 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,C)) != A | ssItem(f70(A)) # props([maximal([2,6]),maximal_signed([2,6]),selected([])]). [factor(624,c,e)]. 1251 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,D)) != A | ssItem(f70(A)) # props([maximal([2,6]),maximal_signed([2,6]),selected([])]). [factor(624,d,e)]. 1252 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | ssItem(f70(A)) # props([maximal([2,3,7]),maximal_signed([2,3,7]),selected([])]). [factor(625,e,f)]. 1253 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | ssItem(f71(A)) # props([maximal([2,3,7]),maximal_signed([2,3,7]),selected([])]). [factor(628,a,e)]. 1254 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | ssItem(f71(A)) # props([maximal([2,3,7]),maximal_signed([2,3,7]),selected([])]). [factor(628,a,f)]. 1255 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(A,cons(B,C)),cons(B,D)) != A | ssItem(f71(A)) # props([maximal([2,6]),maximal_signed([2,6]),selected([])]). [factor(628,b,c),xx(c)]. 1256 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | ssItem(f71(A)) # props([maximal([2,3,7]),maximal_signed([2,3,7]),selected([])]). [factor(628,e,f)]. 1257 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | ssItem(f71(A)) # props([maximal([2,3,7]),maximal_signed([2,3,7]),selected([])]). [factor(629,a,f)]. 1258 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,A)),cons(B,D)) != A | ssItem(f71(A)) # props([maximal([2,6]),maximal_signed([2,6]),selected([])]). [factor(629,b,c),xx(c)]. 1259 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | ssItem(f71(A)) # props([maximal([2,3,7]),maximal_signed([2,3,7]),selected([])]). [factor(629,e,f)]. 1260 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,A)) != A | ssItem(f71(A)) # props([maximal([2,6]),maximal_signed([2,6]),selected([])]). [factor(630,b,c),xx(c)]. 1261 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | ssItem(f71(A)) # props([maximal([2,3,7]),maximal_signed([2,3,7]),selected([])]). [factor(630,e,f)]. 1262 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,C)),cons(B,D)) != A | ssItem(f71(A)) # props([maximal([2,6]),maximal_signed([2,6]),selected([])]). [factor(631,c,d)]. 1263 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,C)) != A | ssItem(f71(A)) # props([maximal([2,6]),maximal_signed([2,6]),selected([])]). [factor(631,c,e)]. 1264 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,D)) != A | ssItem(f71(A)) # props([maximal([2,6]),maximal_signed([2,6]),selected([])]). [factor(631,d,e)]. 1265 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | ssItem(f71(A)) # props([maximal([2,3,7]),maximal_signed([2,3,7]),selected([])]). [factor(632,e,f)]. 1266 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | f71(A) = f70(A) # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(635,a,e)]. 1267 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | f71(A) = f70(A) # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(635,a,f)]. 1268 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(A,cons(B,C)),cons(B,D)) != A | f71(A) = f70(A) # props([maximal([2]),maximal_signed([2,6]),selected([])]). [factor(635,b,c),xx(c)]. 1269 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | f71(A) = f70(A) # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(635,e,f)]. 1270 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | f71(A) = f70(A) # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(636,a,f)]. 1271 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,A)),cons(B,D)) != A | f71(A) = f70(A) # props([maximal([2]),maximal_signed([2,6]),selected([])]). [factor(636,b,c),xx(c)]. 1272 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | f71(A) = f70(A) # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(636,e,f)]. 1273 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,A)) != A | f71(A) = f70(A) # props([maximal([2]),maximal_signed([2,6]),selected([])]). [factor(637,b,c),xx(c)]. 1274 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | f71(A) = f70(A) # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(637,e,f)]. 1275 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,C)),cons(B,D)) != A | f71(A) = f70(A) # props([maximal([2]),maximal_signed([2,6]),selected([])]). [factor(638,c,d)]. 1276 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,C)) != A | f71(A) = f70(A) # props([maximal([2]),maximal_signed([2,6]),selected([])]). [factor(638,c,e)]. 1277 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,D)) != A | f71(A) = f70(A) # props([maximal([2]),maximal_signed([2,6]),selected([])]). [factor(638,d,e)]. 1278 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | f71(A) = f70(A) # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(639,e,f)]. 1279 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | ssList(f72(A)) # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(642,a,e)]. 1280 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | ssList(f72(A)) # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(642,a,f)]. 1281 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(A,cons(B,C)),cons(B,D)) != A | ssList(f72(A)) # props([maximal([2]),maximal_signed([2,6]),selected([])]). [factor(642,b,c),xx(c)]. 1282 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | ssList(f72(A)) # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(642,e,f)]. 1283 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | ssList(f72(A)) # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(643,a,f)]. 1284 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,A)),cons(B,D)) != A | ssList(f72(A)) # props([maximal([2]),maximal_signed([2,6]),selected([])]). [factor(643,b,c),xx(c)]. 1285 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | ssList(f72(A)) # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(643,e,f)]. 1286 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,A)) != A | ssList(f72(A)) # props([maximal([2]),maximal_signed([2,6]),selected([])]). [factor(644,b,c),xx(c)]. 1287 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | ssList(f72(A)) # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(644,e,f)]. 1288 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,C)),cons(B,D)) != A | ssList(f72(A)) # props([maximal([2]),maximal_signed([2,6]),selected([])]). [factor(645,c,d)]. 1289 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,C)) != A | ssList(f72(A)) # props([maximal([2]),maximal_signed([2,6]),selected([])]). [factor(645,c,e)]. 1290 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,D)) != A | ssList(f72(A)) # props([maximal([2]),maximal_signed([2,6]),selected([])]). [factor(645,d,e)]. 1291 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | ssList(f72(A)) # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(646,e,f)]. 1292 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | ssList(f73(A)) # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(649,a,e)]. 1293 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | ssList(f73(A)) # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(649,a,f)]. 1294 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(A,cons(B,C)),cons(B,D)) != A | ssList(f73(A)) # props([maximal([2]),maximal_signed([2,6]),selected([])]). [factor(649,b,c),xx(c)]. 1295 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | ssList(f73(A)) # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(649,e,f)]. 1296 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | ssList(f73(A)) # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(650,a,f)]. 1297 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,A)),cons(B,D)) != A | ssList(f73(A)) # props([maximal([2]),maximal_signed([2,6]),selected([])]). [factor(650,b,c),xx(c)]. 1298 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | ssList(f73(A)) # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(650,e,f)]. 1299 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,A)) != A | ssList(f73(A)) # props([maximal([2]),maximal_signed([2,6]),selected([])]). [factor(651,b,c),xx(c)]. 1300 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | ssList(f73(A)) # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(651,e,f)]. 1301 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,C)),cons(B,D)) != A | ssList(f73(A)) # props([maximal([2]),maximal_signed([2,6]),selected([])]). [factor(652,c,d)]. 1302 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,C)) != A | ssList(f73(A)) # props([maximal([2]),maximal_signed([2,6]),selected([])]). [factor(652,c,e)]. 1303 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,D)) != A | ssList(f73(A)) # props([maximal([2]),maximal_signed([2,6]),selected([])]). [factor(652,d,e)]. 1304 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | ssList(f73(A)) # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(653,e,f)]. 1305 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | ssList(f74(A)) # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(656,a,e)]. 1306 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | ssList(f74(A)) # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(656,a,f)]. 1307 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(A,cons(B,C)),cons(B,D)) != A | ssList(f74(A)) # props([maximal([2]),maximal_signed([2,6]),selected([])]). [factor(656,b,c),xx(c)]. 1308 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | ssList(f74(A)) # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(656,e,f)]. 1309 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | ssList(f74(A)) # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(657,a,f)]. 1310 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,A)),cons(B,D)) != A | ssList(f74(A)) # props([maximal([2]),maximal_signed([2,6]),selected([])]). [factor(657,b,c),xx(c)]. 1311 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | ssList(f74(A)) # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(657,e,f)]. 1312 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,A)) != A | ssList(f74(A)) # props([maximal([2]),maximal_signed([2,6]),selected([])]). [factor(658,b,c),xx(c)]. 1313 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | ssList(f74(A)) # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(658,e,f)]. 1314 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,C)),cons(B,D)) != A | ssList(f74(A)) # props([maximal([2]),maximal_signed([2,6]),selected([])]). [factor(659,c,d)]. 1315 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,C)) != A | ssList(f74(A)) # props([maximal([2]),maximal_signed([2,6]),selected([])]). [factor(659,c,e)]. 1316 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,D)) != A | ssList(f74(A)) # props([maximal([2]),maximal_signed([2,6]),selected([])]). [factor(659,d,e)]. 1317 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | ssList(f74(A)) # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(660,e,f)]. 1318 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(A,cons(B,A)),cons(C,D)) != A | app(app(f72(A),cons(f70(A),f73(A))),cons(f71(A),f74(A))) = A # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(663,a,e)]. 1319 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(A,cons(B,D)),cons(C,A)) != A | app(app(f72(A),cons(f70(A),f73(A))),cons(f71(A),f74(A))) = A # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(663,a,f)]. 1320 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(A,cons(B,C)),cons(B,D)) != A | app(app(f72(A),cons(f70(A),f73(A))),cons(f71(A),f74(A))) = A # props([maximal([2]),maximal_signed([2,6]),selected([])]). [factor(663,b,c),xx(c)]. 1321 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(A,cons(B,D)),cons(C,D)) != A | app(app(f72(A),cons(f70(A),f73(A))),cons(f71(A),f74(A))) = A # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(663,e,f)]. 1322 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(D,cons(B,A)),cons(C,A)) != A | app(app(f72(A),cons(f70(A),f73(A))),cons(f71(A),f74(A))) = A # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(664,a,f)]. 1323 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,A)),cons(B,D)) != A | app(app(f72(A),cons(f70(A),f73(A))),cons(f71(A),f74(A))) = A # props([maximal([2]),maximal_signed([2,6]),selected([])]). [factor(664,b,c),xx(c)]. 1324 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(D,cons(B,A)),cons(C,D)) != A | app(app(f72(A),cons(f70(A),f73(A))),cons(f71(A),f74(A))) = A # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(664,e,f)]. 1325 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,A)) != A | app(app(f72(A),cons(f70(A),f73(A))),cons(f71(A),f74(A))) = A # props([maximal([2]),maximal_signed([2,6]),selected([])]). [factor(665,b,c),xx(c)]. 1326 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(D,cons(B,D)),cons(C,A)) != A | app(app(f72(A),cons(f70(A),f73(A))),cons(f71(A),f74(A))) = A # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(665,e,f)]. 1327 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,C)),cons(B,D)) != A | app(app(f72(A),cons(f70(A),f73(A))),cons(f71(A),f74(A))) = A # props([maximal([2]),maximal_signed([2,6]),selected([])]). [factor(666,c,d)]. 1328 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,C)) != A | app(app(f72(A),cons(f70(A),f73(A))),cons(f71(A),f74(A))) = A # props([maximal([2]),maximal_signed([2,6]),selected([])]). [factor(666,c,e)]. 1329 -ssList(A) | -ssItem(B) | -ssList(C) | -ssList(D) | app(app(C,cons(B,D)),cons(B,D)) != A | app(app(f72(A),cons(f70(A),f73(A))),cons(f71(A),f74(A))) = A # props([maximal([2]),maximal_signed([2,6]),selected([])]). [factor(666,d,e)]. 1330 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | -ssList(D) | app(app(D,cons(B,D)),cons(C,D)) != A | app(app(f72(A),cons(f70(A),f73(A))),cons(f71(A),f74(A))) = A # props([maximal([2,3]),maximal_signed([2,3,7]),selected([])]). [factor(667,e,f)]. 1331 -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | app(A,cons(B,cons(C,A))) != A | -equalelemsP(A) # props([maximal([6]),maximal_signed([4,6]),selected([])]). [factor(670,a,e)]. 1332 -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | app(A,cons(B,cons(C,A))) != A | ssItem(f79(A)) # props([maximal([2,3,6]),maximal_signed([2,3,6]),selected([])]). [factor(673,a,e)]. 1333 -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | app(A,cons(B,cons(C,A))) != A | ssItem(f80(A)) # props([maximal([2,3,6]),maximal_signed([2,3,6]),selected([])]). [factor(676,a,e)]. 1334 -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | app(A,cons(B,cons(C,A))) != A | f80(A) != f79(A) # props([maximal([2,3]),maximal_signed([2,3,4]),selected([])]). [factor(679,a,e)]. 1335 -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | app(A,cons(B,cons(C,A))) != A | ssList(f81(A)) # props([maximal([2,3]),maximal_signed([2,3,6]),selected([])]). [factor(682,a,e)]. 1336 -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | app(A,cons(B,cons(C,A))) != A | ssList(f82(A)) # props([maximal([2,3]),maximal_signed([2,3,6]),selected([])]). [factor(685,a,e)]. 1337 -ssList(A) | -ssItem(B) | -ssItem(C) | C = B | app(A,cons(B,cons(C,A))) != A | app(f81(A),cons(f79(A),cons(f80(A),f82(A)))) = A # props([maximal([2,3]),maximal_signed([2,3,4,6]),selected([])]). [factor(688,a,e)]. 1338 -ssList(A) | -ssItem(A) | -ssItem(app(f81(A),cons(f79(A),cons(f80(A),f82(A))))) | app(f81(A),cons(f79(A),cons(f80(A),f82(A)))) = A | -ssList(B) | app(A,cons(A,cons(app(f81(A),cons(f79(A),cons(f80(A),f82(A)))),B))) != A # props([maximal([3]),maximal_signed([3,4]),selected([])]). [factor(688,d,g)]. 1339 -ssList(A) | -ssItem(A) | -ssItem(app(f81(A),cons(f79(A),cons(f80(A),f82(A))))) | app(f81(A),cons(f79(A),cons(f80(A),f82(A)))) = A | -ssList(B) | app(B,cons(A,cons(app(f81(A),cons(f79(A),cons(f80(A),f82(A)))),A))) != A # props([maximal([3]),maximal_signed([3,4]),selected([])]). [factor(689,d,g)]. 1340 -ssList(A) | -ssItem(A) | -ssItem(app(f81(A),cons(f79(A),cons(f80(A),f82(A))))) | app(f81(A),cons(f79(A),cons(f80(A),f82(A)))) = A | -ssList(B) | app(B,cons(A,cons(app(f81(A),cons(f79(A),cons(f80(A),f82(A)))),B))) != A # props([maximal([3]),maximal_signed([3,4]),selected([])]). [factor(690,e,f)]. 1341 -ssList(A) | -frontsegP(A,A) | frontsegP(app(A,A),A) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(701,a,c)]. 1342 -ssItem(A) | -ssList(B) | frontsegP(cons(A,B),cons(A,B)) | -frontsegP(B,B) # props([maximal([3]),maximal_signed([3,4]),selected([])]). [factor(704,b,c)]. 1343 -ssList(A) | -rearsegP(A,A) | rearsegP(app(A,A),A) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(708,a,c)]. 1344 -ssList(A) | -segmentP(A,A) | -ssList(B) | segmentP(app(app(A,A),B),A) # props([maximal([4]),maximal_signed([2,4]),selected([])]). [factor(711,a,c)]. 1345 -ssList(A) | -segmentP(A,A) | -ssList(B) | segmentP(app(app(B,A),A),A) # props([maximal([4]),maximal_signed([2,4]),selected([])]). [factor(711,a,d)]. 1346 -ssList(A) | -segmentP(A,A) | -ssList(B) | segmentP(app(app(B,A),B),A) # props([maximal([4]),maximal_signed([2,4]),selected([])]). [factor(711,c,d)]. 1347 -ssList(A) | -ssList(B) | -segmentP(A,B) | segmentP(app(app(A,A),A),B) # props([maximal([4]),maximal_signed([3,4]),selected([])]). [factor(712,a,d)]. 1348 -ssList(A) | -ssList(B) | -segmentP(A,B) | segmentP(app(app(A,A),B),B) # props([maximal([4]),maximal_signed([3,4]),selected([])]). [factor(712,b,d)]. 1349 -ssList(A) | -ssList(B) | -segmentP(A,B) | segmentP(app(app(B,A),A),B) # props([maximal([4]),maximal_signed([3,4]),selected([])]). [factor(713,b,d)]. 1350 -ssList(A) | -ssList(B) | -segmentP(A,B) | segmentP(app(app(B,A),B),B) # props([maximal([4]),maximal_signed([3,4]),selected([])]). [factor(714,b,d)]. 1351 -ssList(A) | app(app(A,A),A) = app(A,app(A,A)) # props([maximal([1]),maximal_signed([1,2]),selected([])]). [factor(721,a,b)]. 1352 -ssItem(A) | -leq(A,A) | -ssList(B) | app(cons(A,nil),B) != c5 | app(B,cons(A,nil)) != c7 # props([maximal([2]),maximal_signed([2]),selected([])]). [factor(731,c,e)]. 1353 -ssItem(A) | -leq(A,A) | -ssList(B) | app(B,cons(A,nil)) != c5 | app(cons(A,nil),B) != c8 # props([maximal([2]),maximal_signed([2]),selected([])]). [factor(733,c,e)]. 1354 -ssList(A) | ssList(f13(A,A)) | app(app(A,A),A) != A # props([maximal([2]),maximal_signed([1,2]),selected([])]). [factor(749,a,c)]. 1355 -ssList(A) | ssList(f14(A,A)) | app(app(A,A),A) != A # props([maximal([2]),maximal_signed([1,2]),selected([])]). [factor(756,a,c)]. 1356 -ssList(A) | app(app(f13(A,A),A),f14(A,A)) = A | app(app(A,A),A) != A # props([maximal([1]),maximal_signed([1,2]),selected([])]). [factor(763,a,c)]. 1357 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | app(app(A,cons(B,A)),cons(C,A)) != A | -cyclefreeP(A) # props([maximal([4,5]),maximal_signed([4,5]),selected([])]). [factor(770,a,f)]. 1358 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(A,cons(B,A)),cons(B,C)) != A | -cyclefreeP(A) # props([maximal([3]),maximal_signed([3]),selected([])]). [factor(770,b,c),merge(d)]. 1359 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,A)) != A | -cyclefreeP(A) # props([maximal([3]),maximal_signed([3]),selected([])]). [factor(771,b,c),merge(d)]. 1360 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,C)) != A | -cyclefreeP(A) # props([maximal([3]),maximal_signed([3]),selected([])]). [factor(772,d,e)]. 1361 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,A)) != A | -cyclefreeP(A) # props([maximal([3]),maximal_signed([3]),selected([])]). [factor(774,b,c),merge(d)]. 1362 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,C)) != A | -cyclefreeP(A) # props([maximal([3]),maximal_signed([3]),selected([])]). [factor(775,d,e)]. 1363 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,A)) != A | -cyclefreeP(A) # props([maximal([3]),maximal_signed([3]),selected([])]). [factor(777,d,e)]. 1364 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,C)) != A | -cyclefreeP(A) # props([maximal([3]),maximal_signed([3]),selected([])]). [factor(779,d,e)]. 1365 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | app(app(A,cons(B,A)),cons(C,A)) != A | ssItem(f20(A)) # props([maximal([4,5]),maximal_signed([4,5,7]),selected([])]). [factor(783,a,f)]. 1366 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(A,cons(B,A)),cons(B,C)) != A | ssItem(f20(A)) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(783,b,c),merge(d)]. 1367 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,A)) != A | ssItem(f20(A)) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(784,b,c),merge(d)]. 1368 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,C)) != A | ssItem(f20(A)) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(785,d,e)]. 1369 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,A)) != A | ssItem(f20(A)) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(787,b,c),merge(d)]. 1370 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,C)) != A | ssItem(f20(A)) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(788,d,e)]. 1371 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,A)) != A | ssItem(f20(A)) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(790,d,e)]. 1372 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,C)) != A | ssItem(f20(A)) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(792,d,e)]. 1373 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | app(app(A,cons(B,A)),cons(C,A)) != A | ssItem(f21(A)) # props([maximal([4,5]),maximal_signed([4,5,7]),selected([])]). [factor(796,a,f)]. 1374 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(A,cons(B,A)),cons(B,C)) != A | ssItem(f21(A)) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(796,b,c),merge(d)]. 1375 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,A)) != A | ssItem(f21(A)) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(797,b,c),merge(d)]. 1376 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,C)) != A | ssItem(f21(A)) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(798,d,e)]. 1377 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,A)) != A | ssItem(f21(A)) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(800,b,c),merge(d)]. 1378 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,C)) != A | ssItem(f21(A)) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(801,d,e)]. 1379 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,A)) != A | ssItem(f21(A)) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(803,d,e)]. 1380 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,C)) != A | ssItem(f21(A)) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(805,d,e)]. 1381 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | app(app(A,cons(B,A)),cons(C,A)) != A | leq(f20(A),f21(A)) # props([maximal([4,5,7]),maximal_signed([4,5,7]),selected([])]). [factor(809,a,f)]. 1382 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(A,cons(B,A)),cons(B,C)) != A | leq(f20(A),f21(A)) # props([maximal([3,6]),maximal_signed([3,6]),selected([])]). [factor(809,b,c),merge(d)]. 1383 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,A)) != A | leq(f20(A),f21(A)) # props([maximal([3,6]),maximal_signed([3,6]),selected([])]). [factor(810,b,c),merge(d)]. 1384 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,C)) != A | leq(f20(A),f21(A)) # props([maximal([3,6]),maximal_signed([3,6]),selected([])]). [factor(811,d,e)]. 1385 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,A)) != A | leq(f20(A),f21(A)) # props([maximal([3,6]),maximal_signed([3,6]),selected([])]). [factor(813,b,c),merge(d)]. 1386 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,C)) != A | leq(f20(A),f21(A)) # props([maximal([3,6]),maximal_signed([3,6]),selected([])]). [factor(814,d,e)]. 1387 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,A)) != A | leq(f20(A),f21(A)) # props([maximal([3,6]),maximal_signed([3,6]),selected([])]). [factor(816,d,e)]. 1388 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,C)) != A | leq(f20(A),f21(A)) # props([maximal([3,6]),maximal_signed([3,6]),selected([])]). [factor(818,d,e)]. 1389 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | app(app(A,cons(B,A)),cons(C,A)) != A | leq(f21(A),f20(A)) # props([maximal([4,5,7]),maximal_signed([4,5,7]),selected([])]). [factor(822,a,f)]. 1390 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(A,cons(B,A)),cons(B,C)) != A | leq(f21(A),f20(A)) # props([maximal([3,6]),maximal_signed([3,6]),selected([])]). [factor(822,b,c),merge(d)]. 1391 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,A)) != A | leq(f21(A),f20(A)) # props([maximal([3,6]),maximal_signed([3,6]),selected([])]). [factor(823,b,c),merge(d)]. 1392 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,C)) != A | leq(f21(A),f20(A)) # props([maximal([3,6]),maximal_signed([3,6]),selected([])]). [factor(824,d,e)]. 1393 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,A)) != A | leq(f21(A),f20(A)) # props([maximal([3,6]),maximal_signed([3,6]),selected([])]). [factor(826,b,c),merge(d)]. 1394 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,C)) != A | leq(f21(A),f20(A)) # props([maximal([3,6]),maximal_signed([3,6]),selected([])]). [factor(827,d,e)]. 1395 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,A)) != A | leq(f21(A),f20(A)) # props([maximal([3,6]),maximal_signed([3,6]),selected([])]). [factor(829,d,e)]. 1396 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,C)) != A | leq(f21(A),f20(A)) # props([maximal([3,6]),maximal_signed([3,6]),selected([])]). [factor(831,d,e)]. 1397 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | app(app(A,cons(B,A)),cons(C,A)) != A | ssList(f22(A)) # props([maximal([4,5]),maximal_signed([4,5,7]),selected([])]). [factor(835,a,f)]. 1398 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(A,cons(B,A)),cons(B,C)) != A | ssList(f22(A)) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(835,b,c),merge(d)]. 1399 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,A)) != A | ssList(f22(A)) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(836,b,c),merge(d)]. 1400 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,C)) != A | ssList(f22(A)) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(837,d,e)]. 1401 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,A)) != A | ssList(f22(A)) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(839,b,c),merge(d)]. 1402 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,C)) != A | ssList(f22(A)) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(840,d,e)]. 1403 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,A)) != A | ssList(f22(A)) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(842,d,e)]. 1404 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,C)) != A | ssList(f22(A)) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(844,d,e)]. 1405 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | app(app(A,cons(B,A)),cons(C,A)) != A | ssList(f23(A)) # props([maximal([4,5]),maximal_signed([4,5,7]),selected([])]). [factor(848,a,f)]. 1406 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(A,cons(B,A)),cons(B,C)) != A | ssList(f23(A)) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(848,b,c),merge(d)]. 1407 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,A)) != A | ssList(f23(A)) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(849,b,c),merge(d)]. 1408 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,C)) != A | ssList(f23(A)) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(850,d,e)]. 1409 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,A)) != A | ssList(f23(A)) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(852,b,c),merge(d)]. 1410 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,C)) != A | ssList(f23(A)) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(853,d,e)]. 1411 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,A)) != A | ssList(f23(A)) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(855,d,e)]. 1412 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,C)) != A | ssList(f23(A)) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(857,d,e)]. 1413 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | app(app(A,cons(B,A)),cons(C,A)) != A | ssList(f24(A)) # props([maximal([4,5]),maximal_signed([4,5,7]),selected([])]). [factor(861,a,f)]. 1414 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(A,cons(B,A)),cons(B,C)) != A | ssList(f24(A)) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(861,b,c),merge(d)]. 1415 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,A)) != A | ssList(f24(A)) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(862,b,c),merge(d)]. 1416 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,C)) != A | ssList(f24(A)) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(863,d,e)]. 1417 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,A)) != A | ssList(f24(A)) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(865,b,c),merge(d)]. 1418 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,C)) != A | ssList(f24(A)) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(866,d,e)]. 1419 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,A)) != A | ssList(f24(A)) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(868,d,e)]. 1420 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,C)) != A | ssList(f24(A)) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(870,d,e)]. 1421 -ssList(A) | -ssItem(B) | -ssItem(C) | -leq(B,C) | -leq(C,B) | app(app(A,cons(B,A)),cons(C,A)) != A | app(app(f22(A),cons(f20(A),f23(A))),cons(f21(A),f24(A))) = A # props([maximal([4,5]),maximal_signed([4,5,7]),selected([])]). [factor(874,a,f)]. 1422 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(A,cons(B,A)),cons(B,C)) != A | app(app(f22(A),cons(f20(A),f23(A))),cons(f21(A),f24(A))) = A # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(874,b,c),merge(d)]. 1423 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,A)) != A | app(app(f22(A),cons(f20(A),f23(A))),cons(f21(A),f24(A))) = A # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(875,b,c),merge(d)]. 1424 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,C)) != A | app(app(f22(A),cons(f20(A),f23(A))),cons(f21(A),f24(A))) = A # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(876,d,e)]. 1425 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,A)) != A | app(app(f22(A),cons(f20(A),f23(A))),cons(f21(A),f24(A))) = A # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(878,b,c),merge(d)]. 1426 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,C)) != A | app(app(f22(A),cons(f20(A),f23(A))),cons(f21(A),f24(A))) = A # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(879,d,e)]. 1427 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,A)) != A | app(app(f22(A),cons(f20(A),f23(A))),cons(f21(A),f24(A))) = A # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(881,d,e)]. 1428 -ssList(A) | -ssItem(B) | -leq(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,C)) != A | app(app(f22(A),cons(f20(A),f23(A))),cons(f21(A),f24(A))) = A # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(883,d,e)]. 1429 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | app(app(A,cons(B,A)),cons(C,A)) != A | -totalorderP(A) # props([maximal([4,5]),maximal_signed([4,5,7]),selected([])]). [factor(887,a,f)]. 1430 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | app(app(A,cons(B,A)),cons(C,A)) != A | ssItem(f30(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(894,a,f)]. 1431 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | app(app(A,cons(B,A)),cons(C,A)) != A | ssItem(f31(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(901,a,f)]. 1432 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | app(app(A,cons(B,A)),cons(C,A)) != A | -leq(f30(A),f31(A)) # props([maximal([4,5,7]),maximal_signed([4,5,7]),selected([])]). [factor(908,a,f)]. 1433 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | app(app(A,cons(B,A)),cons(C,A)) != A | -leq(f31(A),f30(A)) # props([maximal([4,5,7]),maximal_signed([4,5,7]),selected([])]). [factor(915,a,f)]. 1434 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | app(app(A,cons(B,A)),cons(C,A)) != A | ssList(f32(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(922,a,f)]. 1435 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | app(app(A,cons(B,A)),cons(C,A)) != A | ssList(f33(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(929,a,f)]. 1436 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | app(app(A,cons(B,A)),cons(C,A)) != A | ssList(f34(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(936,a,f)]. 1437 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | leq(C,B) | app(app(A,cons(B,A)),cons(C,A)) != A | app(app(f32(A),cons(f30(A),f33(A))),cons(f31(A),f34(A))) = A # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(943,a,f)]. 1438 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | app(app(A,cons(B,A)),cons(C,A)) != A | -strictorderP(A) # props([maximal([4,5]),maximal_signed([4,5,7]),selected([])]). [factor(950,a,f)]. 1439 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,A)),cons(B,C)) != A | -strictorderP(A) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(950,b,c),merge(d)]. 1440 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,A)) != A | -strictorderP(A) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(951,b,c),merge(d)]. 1441 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,C)) != A | -strictorderP(A) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(952,d,e)]. 1442 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,A)) != A | -strictorderP(A) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(954,b,c),merge(d)]. 1443 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,C)) != A | -strictorderP(A) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(955,d,e)]. 1444 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,A)) != A | -strictorderP(A) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(957,d,e)]. 1445 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,C)) != A | -strictorderP(A) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(959,d,e)]. 1446 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | app(app(A,cons(B,A)),cons(C,A)) != A | ssItem(f40(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(963,a,f)]. 1447 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,A)),cons(B,C)) != A | ssItem(f40(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(963,b,c),merge(d)]. 1448 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,A)) != A | ssItem(f40(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(964,b,c),merge(d)]. 1449 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,C)) != A | ssItem(f40(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(965,d,e)]. 1450 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,A)) != A | ssItem(f40(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(967,b,c),merge(d)]. 1451 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,C)) != A | ssItem(f40(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(968,d,e)]. 1452 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,A)) != A | ssItem(f40(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(970,d,e)]. 1453 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,C)) != A | ssItem(f40(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(972,d,e)]. 1454 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | app(app(A,cons(B,A)),cons(C,A)) != A | ssItem(f41(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(976,a,f)]. 1455 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,A)),cons(B,C)) != A | ssItem(f41(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(976,b,c),merge(d)]. 1456 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,A)) != A | ssItem(f41(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(977,b,c),merge(d)]. 1457 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,C)) != A | ssItem(f41(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(978,d,e)]. 1458 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,A)) != A | ssItem(f41(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(980,b,c),merge(d)]. 1459 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,C)) != A | ssItem(f41(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(981,d,e)]. 1460 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,A)) != A | ssItem(f41(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(983,d,e)]. 1461 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,C)) != A | ssItem(f41(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(985,d,e)]. 1462 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | app(app(A,cons(B,A)),cons(C,A)) != A | -lt(f40(A),f41(A)) # props([maximal([4,5,7]),maximal_signed([4,5,7]),selected([])]). [factor(989,a,f)]. 1463 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,A)),cons(B,C)) != A | -lt(f40(A),f41(A)) # props([maximal([3,6]),maximal_signed([3,6]),selected([])]). [factor(989,b,c),merge(d)]. 1464 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,A)) != A | -lt(f40(A),f41(A)) # props([maximal([3,6]),maximal_signed([3,6]),selected([])]). [factor(990,b,c),merge(d)]. 1465 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,C)) != A | -lt(f40(A),f41(A)) # props([maximal([3,6]),maximal_signed([3,6]),selected([])]). [factor(991,d,e)]. 1466 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,A)) != A | -lt(f40(A),f41(A)) # props([maximal([3,6]),maximal_signed([3,6]),selected([])]). [factor(993,b,c),merge(d)]. 1467 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,C)) != A | -lt(f40(A),f41(A)) # props([maximal([3,6]),maximal_signed([3,6]),selected([])]). [factor(994,d,e)]. 1468 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,A)) != A | -lt(f40(A),f41(A)) # props([maximal([3,6]),maximal_signed([3,6]),selected([])]). [factor(996,d,e)]. 1469 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,C)) != A | -lt(f40(A),f41(A)) # props([maximal([3,6]),maximal_signed([3,6]),selected([])]). [factor(998,d,e)]. 1470 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | app(app(A,cons(B,A)),cons(C,A)) != A | -lt(f41(A),f40(A)) # props([maximal([4,5,7]),maximal_signed([4,5,7]),selected([])]). [factor(1002,a,f)]. 1471 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,A)),cons(B,C)) != A | -lt(f41(A),f40(A)) # props([maximal([3,6]),maximal_signed([3,6]),selected([])]). [factor(1002,b,c),merge(d)]. 1472 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,A)) != A | -lt(f41(A),f40(A)) # props([maximal([3,6]),maximal_signed([3,6]),selected([])]). [factor(1003,b,c),merge(d)]. 1473 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,C)) != A | -lt(f41(A),f40(A)) # props([maximal([3,6]),maximal_signed([3,6]),selected([])]). [factor(1004,d,e)]. 1474 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,A)) != A | -lt(f41(A),f40(A)) # props([maximal([3,6]),maximal_signed([3,6]),selected([])]). [factor(1006,b,c),merge(d)]. 1475 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,C)) != A | -lt(f41(A),f40(A)) # props([maximal([3,6]),maximal_signed([3,6]),selected([])]). [factor(1007,d,e)]. 1476 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,A)) != A | -lt(f41(A),f40(A)) # props([maximal([3,6]),maximal_signed([3,6]),selected([])]). [factor(1009,d,e)]. 1477 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,C)) != A | -lt(f41(A),f40(A)) # props([maximal([3,6]),maximal_signed([3,6]),selected([])]). [factor(1011,d,e)]. 1478 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | app(app(A,cons(B,A)),cons(C,A)) != A | ssList(f42(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(1015,a,f)]. 1479 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,A)),cons(B,C)) != A | ssList(f42(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1015,b,c),merge(d)]. 1480 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,A)) != A | ssList(f42(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1016,b,c),merge(d)]. 1481 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,C)) != A | ssList(f42(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1017,d,e)]. 1482 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,A)) != A | ssList(f42(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1019,b,c),merge(d)]. 1483 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,C)) != A | ssList(f42(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1020,d,e)]. 1484 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,A)) != A | ssList(f42(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1022,d,e)]. 1485 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,C)) != A | ssList(f42(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1024,d,e)]. 1486 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | app(app(A,cons(B,A)),cons(C,A)) != A | ssList(f43(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(1028,a,f)]. 1487 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,A)),cons(B,C)) != A | ssList(f43(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1028,b,c),merge(d)]. 1488 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,A)) != A | ssList(f43(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1029,b,c),merge(d)]. 1489 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,C)) != A | ssList(f43(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1030,d,e)]. 1490 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,A)) != A | ssList(f43(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1032,b,c),merge(d)]. 1491 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,C)) != A | ssList(f43(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1033,d,e)]. 1492 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,A)) != A | ssList(f43(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1035,d,e)]. 1493 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,C)) != A | ssList(f43(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1037,d,e)]. 1494 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | app(app(A,cons(B,A)),cons(C,A)) != A | ssList(f44(A)) # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(1041,a,f)]. 1495 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,A)),cons(B,C)) != A | ssList(f44(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1041,b,c),merge(d)]. 1496 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,A)) != A | ssList(f44(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1042,b,c),merge(d)]. 1497 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,C)) != A | ssList(f44(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1043,d,e)]. 1498 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,A)) != A | ssList(f44(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1045,b,c),merge(d)]. 1499 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,C)) != A | ssList(f44(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1046,d,e)]. 1500 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,A)) != A | ssList(f44(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1048,d,e)]. 1501 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,C)) != A | ssList(f44(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1050,d,e)]. 1502 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | lt(C,B) | app(app(A,cons(B,A)),cons(C,A)) != A | app(app(f42(A),cons(f40(A),f43(A))),cons(f41(A),f44(A))) = A # props([maximal([4,5]),maximal_signed([2,3,4,5]),selected([])]). [factor(1054,a,f)]. 1503 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,A)),cons(B,C)) != A | app(app(f42(A),cons(f40(A),f43(A))),cons(f41(A),f44(A))) = A # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1054,b,c),merge(d)]. 1504 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,A)) != A | app(app(f42(A),cons(f40(A),f43(A))),cons(f41(A),f44(A))) = A # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1055,b,c),merge(d)]. 1505 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,C)) != A | app(app(f42(A),cons(f40(A),f43(A))),cons(f41(A),f44(A))) = A # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1056,d,e)]. 1506 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,A)) != A | app(app(f42(A),cons(f40(A),f43(A))),cons(f41(A),f44(A))) = A # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1058,b,c),merge(d)]. 1507 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,C)) != A | app(app(f42(A),cons(f40(A),f43(A))),cons(f41(A),f44(A))) = A # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1059,d,e)]. 1508 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,A)) != A | app(app(f42(A),cons(f40(A),f43(A))),cons(f41(A),f44(A))) = A # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1061,d,e)]. 1509 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,C)) != A | app(app(f42(A),cons(f40(A),f43(A))),cons(f41(A),f44(A))) = A # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1063,d,e)]. 1510 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | app(app(A,cons(B,A)),cons(C,A)) != A | -totalorderedP(A) # props([maximal([4]),maximal_signed([4,6]),selected([])]). [factor(1067,a,e)]. 1511 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | app(app(A,cons(B,A)),cons(C,A)) != A | ssItem(f50(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(1074,a,e)]. 1512 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | app(app(A,cons(B,A)),cons(C,A)) != A | ssItem(f51(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(1081,a,e)]. 1513 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | app(app(A,cons(B,A)),cons(C,A)) != A | -leq(f50(A),f51(A)) # props([maximal([4,6]),maximal_signed([4,6]),selected([])]). [factor(1088,a,e)]. 1514 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | app(app(A,cons(B,A)),cons(C,A)) != A | ssList(f52(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(1095,a,e)]. 1515 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | app(app(A,cons(B,A)),cons(C,A)) != A | ssList(f53(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(1102,a,e)]. 1516 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | app(app(A,cons(B,A)),cons(C,A)) != A | ssList(f54(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(1109,a,e)]. 1517 -ssList(A) | -ssItem(B) | -ssItem(C) | leq(B,C) | app(app(A,cons(B,A)),cons(C,A)) != A | app(app(f52(A),cons(f50(A),f53(A))),cons(f51(A),f54(A))) = A # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(1116,a,e)]. 1518 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | app(app(A,cons(B,A)),cons(C,A)) != A | -strictorderedP(A) # props([maximal([4]),maximal_signed([4,6]),selected([])]). [factor(1123,a,e)]. 1519 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,A)),cons(B,C)) != A | -strictorderedP(A) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(1123,b,c)]. 1520 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,A)) != A | -strictorderedP(A) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(1124,b,c)]. 1521 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,C)) != A | -strictorderedP(A) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(1125,d,e)]. 1522 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,A)) != A | -strictorderedP(A) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(1127,b,c)]. 1523 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,C)) != A | -strictorderedP(A) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(1128,d,e)]. 1524 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,A)) != A | -strictorderedP(A) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(1130,d,e)]. 1525 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,C)) != A | -strictorderedP(A) # props([maximal([3]),maximal_signed([3,6]),selected([])]). [factor(1132,d,e)]. 1526 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | app(app(A,cons(B,A)),cons(C,A)) != A | ssItem(f60(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(1136,a,e)]. 1527 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,A)),cons(B,C)) != A | ssItem(f60(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1136,b,c)]. 1528 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,A)) != A | ssItem(f60(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1137,b,c)]. 1529 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,C)) != A | ssItem(f60(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1138,d,e)]. 1530 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,A)) != A | ssItem(f60(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1140,b,c)]. 1531 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,C)) != A | ssItem(f60(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1141,d,e)]. 1532 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,A)) != A | ssItem(f60(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1143,d,e)]. 1533 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,C)) != A | ssItem(f60(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1145,d,e)]. 1534 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | app(app(A,cons(B,A)),cons(C,A)) != A | ssItem(f61(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(1149,a,e)]. 1535 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,A)),cons(B,C)) != A | ssItem(f61(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1149,b,c)]. 1536 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,A)) != A | ssItem(f61(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1150,b,c)]. 1537 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,C)) != A | ssItem(f61(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1151,d,e)]. 1538 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,A)) != A | ssItem(f61(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1153,b,c)]. 1539 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,C)) != A | ssItem(f61(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1154,d,e)]. 1540 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,A)) != A | ssItem(f61(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1156,d,e)]. 1541 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,C)) != A | ssItem(f61(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1158,d,e)]. 1542 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | app(app(A,cons(B,A)),cons(C,A)) != A | -lt(f60(A),f61(A)) # props([maximal([4,6]),maximal_signed([4,6]),selected([])]). [factor(1162,a,e)]. 1543 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,A)),cons(B,C)) != A | -lt(f60(A),f61(A)) # props([maximal([3,6]),maximal_signed([3,6]),selected([])]). [factor(1162,b,c)]. 1544 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,A)) != A | -lt(f60(A),f61(A)) # props([maximal([3,6]),maximal_signed([3,6]),selected([])]). [factor(1163,b,c)]. 1545 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,C)) != A | -lt(f60(A),f61(A)) # props([maximal([3,6]),maximal_signed([3,6]),selected([])]). [factor(1164,d,e)]. 1546 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,A)) != A | -lt(f60(A),f61(A)) # props([maximal([3,6]),maximal_signed([3,6]),selected([])]). [factor(1166,b,c)]. 1547 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,C)) != A | -lt(f60(A),f61(A)) # props([maximal([3,6]),maximal_signed([3,6]),selected([])]). [factor(1167,d,e)]. 1548 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,A)) != A | -lt(f60(A),f61(A)) # props([maximal([3,6]),maximal_signed([3,6]),selected([])]). [factor(1169,d,e)]. 1549 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,C)) != A | -lt(f60(A),f61(A)) # props([maximal([3,6]),maximal_signed([3,6]),selected([])]). [factor(1171,d,e)]. 1550 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | app(app(A,cons(B,A)),cons(C,A)) != A | ssList(f62(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(1175,a,e)]. 1551 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,A)),cons(B,C)) != A | ssList(f62(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1175,b,c)]. 1552 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,A)) != A | ssList(f62(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1176,b,c)]. 1553 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,C)) != A | ssList(f62(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1177,d,e)]. 1554 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,A)) != A | ssList(f62(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1179,b,c)]. 1555 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,C)) != A | ssList(f62(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1180,d,e)]. 1556 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,A)) != A | ssList(f62(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1182,d,e)]. 1557 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,C)) != A | ssList(f62(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1184,d,e)]. 1558 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | app(app(A,cons(B,A)),cons(C,A)) != A | ssList(f63(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(1188,a,e)]. 1559 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,A)),cons(B,C)) != A | ssList(f63(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1188,b,c)]. 1560 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,A)) != A | ssList(f63(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1189,b,c)]. 1561 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,C)) != A | ssList(f63(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1190,d,e)]. 1562 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,A)) != A | ssList(f63(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1192,b,c)]. 1563 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,C)) != A | ssList(f63(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1193,d,e)]. 1564 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,A)) != A | ssList(f63(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1195,d,e)]. 1565 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,C)) != A | ssList(f63(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1197,d,e)]. 1566 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | app(app(A,cons(B,A)),cons(C,A)) != A | ssList(f64(A)) # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(1201,a,e)]. 1567 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,A)),cons(B,C)) != A | ssList(f64(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1201,b,c)]. 1568 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,A)) != A | ssList(f64(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1202,b,c)]. 1569 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,C)) != A | ssList(f64(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1203,d,e)]. 1570 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,A)) != A | ssList(f64(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1205,b,c)]. 1571 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,C)) != A | ssList(f64(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1206,d,e)]. 1572 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,A)) != A | ssList(f64(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1208,d,e)]. 1573 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,C)) != A | ssList(f64(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1210,d,e)]. 1574 -ssList(A) | -ssItem(B) | -ssItem(C) | lt(B,C) | app(app(A,cons(B,A)),cons(C,A)) != A | app(app(f62(A),cons(f60(A),f63(A))),cons(f61(A),f64(A))) = A # props([maximal([4]),maximal_signed([2,3,4]),selected([])]). [factor(1214,a,e)]. 1575 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,A)),cons(B,C)) != A | app(app(f62(A),cons(f60(A),f63(A))),cons(f61(A),f64(A))) = A # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1214,b,c)]. 1576 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,A)) != A | app(app(f62(A),cons(f60(A),f63(A))),cons(f61(A),f64(A))) = A # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1215,b,c)]. 1577 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,C)) != A | app(app(f62(A),cons(f60(A),f63(A))),cons(f61(A),f64(A))) = A # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1216,d,e)]. 1578 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,A)) != A | app(app(f62(A),cons(f60(A),f63(A))),cons(f61(A),f64(A))) = A # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1218,b,c)]. 1579 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,C)) != A | app(app(f62(A),cons(f60(A),f63(A))),cons(f61(A),f64(A))) = A # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1219,d,e)]. 1580 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,A)) != A | app(app(f62(A),cons(f60(A),f63(A))),cons(f61(A),f64(A))) = A # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1221,d,e)]. 1581 -ssList(A) | -ssItem(B) | lt(B,B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,C)) != A | app(app(f62(A),cons(f60(A),f63(A))),cons(f61(A),f64(A))) = A # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1223,d,e)]. 1582 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | app(app(A,cons(B,A)),cons(C,A)) != A | -duplicatefreeP(A) # props([maximal([6]),maximal_signed([6]),selected([])]). [factor(1227,a,e)]. 1583 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(A,cons(B,A)),cons(B,C)) != A | -duplicatefreeP(A) # props([maximal([5]),maximal_signed([5]),selected([])]). [factor(1227,b,c),xx(c)]. 1584 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,A)) != A | -duplicatefreeP(A) # props([maximal([5]),maximal_signed([5]),selected([])]). [factor(1228,b,c),xx(c)]. 1585 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,C)) != A | -duplicatefreeP(A) # props([maximal([5]),maximal_signed([5]),selected([])]). [factor(1229,c,d)]. 1586 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,A)) != A | -duplicatefreeP(A) # props([maximal([5]),maximal_signed([5]),selected([])]). [factor(1231,b,c),xx(c)]. 1587 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,C)) != A | -duplicatefreeP(A) # props([maximal([5]),maximal_signed([5]),selected([])]). [factor(1232,c,d)]. 1588 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,A)) != A | -duplicatefreeP(A) # props([maximal([5]),maximal_signed([5]),selected([])]). [factor(1234,c,d)]. 1589 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,C)) != A | -duplicatefreeP(A) # props([maximal([5]),maximal_signed([5]),selected([])]). [factor(1236,c,d)]. 1590 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | app(app(A,cons(B,A)),cons(C,A)) != A | ssItem(f70(A)) # props([maximal([2,3,6]),maximal_signed([2,3,6]),selected([])]). [factor(1240,a,e)]. 1591 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(A,cons(B,A)),cons(B,C)) != A | ssItem(f70(A)) # props([maximal([2,5]),maximal_signed([2,5]),selected([])]). [factor(1240,b,c),xx(c)]. 1592 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,A)) != A | ssItem(f70(A)) # props([maximal([2,5]),maximal_signed([2,5]),selected([])]). [factor(1241,b,c),xx(c)]. 1593 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,C)) != A | ssItem(f70(A)) # props([maximal([2,5]),maximal_signed([2,5]),selected([])]). [factor(1242,c,d)]. 1594 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,A)) != A | ssItem(f70(A)) # props([maximal([2,5]),maximal_signed([2,5]),selected([])]). [factor(1244,b,c),xx(c)]. 1595 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,C)) != A | ssItem(f70(A)) # props([maximal([2,5]),maximal_signed([2,5]),selected([])]). [factor(1245,c,d)]. 1596 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,A)) != A | ssItem(f70(A)) # props([maximal([2,5]),maximal_signed([2,5]),selected([])]). [factor(1247,c,d)]. 1597 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,C)) != A | ssItem(f70(A)) # props([maximal([2,5]),maximal_signed([2,5]),selected([])]). [factor(1249,c,d)]. 1598 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | app(app(A,cons(B,A)),cons(C,A)) != A | ssItem(f71(A)) # props([maximal([2,3,6]),maximal_signed([2,3,6]),selected([])]). [factor(1253,a,e)]. 1599 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(A,cons(B,A)),cons(B,C)) != A | ssItem(f71(A)) # props([maximal([2,5]),maximal_signed([2,5]),selected([])]). [factor(1253,b,c),xx(c)]. 1600 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,A)) != A | ssItem(f71(A)) # props([maximal([2,5]),maximal_signed([2,5]),selected([])]). [factor(1254,b,c),xx(c)]. 1601 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,C)) != A | ssItem(f71(A)) # props([maximal([2,5]),maximal_signed([2,5]),selected([])]). [factor(1255,c,d)]. 1602 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,A)) != A | ssItem(f71(A)) # props([maximal([2,5]),maximal_signed([2,5]),selected([])]). [factor(1257,b,c),xx(c)]. 1603 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,C)) != A | ssItem(f71(A)) # props([maximal([2,5]),maximal_signed([2,5]),selected([])]). [factor(1258,c,d)]. 1604 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,A)) != A | ssItem(f71(A)) # props([maximal([2,5]),maximal_signed([2,5]),selected([])]). [factor(1260,c,d)]. 1605 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,C)) != A | ssItem(f71(A)) # props([maximal([2,5]),maximal_signed([2,5]),selected([])]). [factor(1262,c,d)]. 1606 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | app(app(A,cons(B,A)),cons(C,A)) != A | f71(A) = f70(A) # props([maximal([2,3]),maximal_signed([2,3,6]),selected([])]). [factor(1266,a,e)]. 1607 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(A,cons(B,A)),cons(B,C)) != A | f71(A) = f70(A) # props([maximal([2]),maximal_signed([2,5]),selected([])]). [factor(1266,b,c),xx(c)]. 1608 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,A)) != A | f71(A) = f70(A) # props([maximal([2]),maximal_signed([2,5]),selected([])]). [factor(1267,b,c),xx(c)]. 1609 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,C)) != A | f71(A) = f70(A) # props([maximal([2]),maximal_signed([2,5]),selected([])]). [factor(1268,c,d)]. 1610 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,A)) != A | f71(A) = f70(A) # props([maximal([2]),maximal_signed([2,5]),selected([])]). [factor(1270,b,c),xx(c)]. 1611 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,C)) != A | f71(A) = f70(A) # props([maximal([2]),maximal_signed([2,5]),selected([])]). [factor(1271,c,d)]. 1612 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,A)) != A | f71(A) = f70(A) # props([maximal([2]),maximal_signed([2,5]),selected([])]). [factor(1273,c,d)]. 1613 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,C)) != A | f71(A) = f70(A) # props([maximal([2]),maximal_signed([2,5]),selected([])]). [factor(1275,c,d)]. 1614 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | app(app(A,cons(B,A)),cons(C,A)) != A | ssList(f72(A)) # props([maximal([2,3]),maximal_signed([2,3,6]),selected([])]). [factor(1279,a,e)]. 1615 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(A,cons(B,A)),cons(B,C)) != A | ssList(f72(A)) # props([maximal([2]),maximal_signed([2,5]),selected([])]). [factor(1279,b,c),xx(c)]. 1616 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,A)) != A | ssList(f72(A)) # props([maximal([2]),maximal_signed([2,5]),selected([])]). [factor(1280,b,c),xx(c)]. 1617 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,C)) != A | ssList(f72(A)) # props([maximal([2]),maximal_signed([2,5]),selected([])]). [factor(1281,c,d)]. 1618 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,A)) != A | ssList(f72(A)) # props([maximal([2]),maximal_signed([2,5]),selected([])]). [factor(1283,b,c),xx(c)]. 1619 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,C)) != A | ssList(f72(A)) # props([maximal([2]),maximal_signed([2,5]),selected([])]). [factor(1284,c,d)]. 1620 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,A)) != A | ssList(f72(A)) # props([maximal([2]),maximal_signed([2,5]),selected([])]). [factor(1286,c,d)]. 1621 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,C)) != A | ssList(f72(A)) # props([maximal([2]),maximal_signed([2,5]),selected([])]). [factor(1288,c,d)]. 1622 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | app(app(A,cons(B,A)),cons(C,A)) != A | ssList(f73(A)) # props([maximal([2,3]),maximal_signed([2,3,6]),selected([])]). [factor(1292,a,e)]. 1623 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(A,cons(B,A)),cons(B,C)) != A | ssList(f73(A)) # props([maximal([2]),maximal_signed([2,5]),selected([])]). [factor(1292,b,c),xx(c)]. 1624 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,A)) != A | ssList(f73(A)) # props([maximal([2]),maximal_signed([2,5]),selected([])]). [factor(1293,b,c),xx(c)]. 1625 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,C)) != A | ssList(f73(A)) # props([maximal([2]),maximal_signed([2,5]),selected([])]). [factor(1294,c,d)]. 1626 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,A)) != A | ssList(f73(A)) # props([maximal([2]),maximal_signed([2,5]),selected([])]). [factor(1296,b,c),xx(c)]. 1627 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,C)) != A | ssList(f73(A)) # props([maximal([2]),maximal_signed([2,5]),selected([])]). [factor(1297,c,d)]. 1628 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,A)) != A | ssList(f73(A)) # props([maximal([2]),maximal_signed([2,5]),selected([])]). [factor(1299,c,d)]. 1629 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,C)) != A | ssList(f73(A)) # props([maximal([2]),maximal_signed([2,5]),selected([])]). [factor(1301,c,d)]. 1630 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | app(app(A,cons(B,A)),cons(C,A)) != A | ssList(f74(A)) # props([maximal([2,3]),maximal_signed([2,3,6]),selected([])]). [factor(1305,a,e)]. 1631 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(A,cons(B,A)),cons(B,C)) != A | ssList(f74(A)) # props([maximal([2]),maximal_signed([2,5]),selected([])]). [factor(1305,b,c),xx(c)]. 1632 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,A)) != A | ssList(f74(A)) # props([maximal([2]),maximal_signed([2,5]),selected([])]). [factor(1306,b,c),xx(c)]. 1633 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,C)) != A | ssList(f74(A)) # props([maximal([2]),maximal_signed([2,5]),selected([])]). [factor(1307,c,d)]. 1634 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,A)) != A | ssList(f74(A)) # props([maximal([2]),maximal_signed([2,5]),selected([])]). [factor(1309,b,c),xx(c)]. 1635 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,C)) != A | ssList(f74(A)) # props([maximal([2]),maximal_signed([2,5]),selected([])]). [factor(1310,c,d)]. 1636 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,A)) != A | ssList(f74(A)) # props([maximal([2]),maximal_signed([2,5]),selected([])]). [factor(1312,c,d)]. 1637 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,C)) != A | ssList(f74(A)) # props([maximal([2]),maximal_signed([2,5]),selected([])]). [factor(1314,c,d)]. 1638 -ssList(A) | -ssItem(B) | -ssItem(C) | C != B | app(app(A,cons(B,A)),cons(C,A)) != A | app(app(f72(A),cons(f70(A),f73(A))),cons(f71(A),f74(A))) = A # props([maximal([2,3]),maximal_signed([2,3,6]),selected([])]). [factor(1318,a,e)]. 1639 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(A,cons(B,A)),cons(B,C)) != A | app(app(f72(A),cons(f70(A),f73(A))),cons(f71(A),f74(A))) = A # props([maximal([2]),maximal_signed([2,5]),selected([])]). [factor(1318,b,c),xx(c)]. 1640 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,A)) != A | app(app(f72(A),cons(f70(A),f73(A))),cons(f71(A),f74(A))) = A # props([maximal([2]),maximal_signed([2,5]),selected([])]). [factor(1319,b,c),xx(c)]. 1641 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(A,cons(B,C)),cons(B,C)) != A | app(app(f72(A),cons(f70(A),f73(A))),cons(f71(A),f74(A))) = A # props([maximal([2]),maximal_signed([2,5]),selected([])]). [factor(1320,c,d)]. 1642 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,A)) != A | app(app(f72(A),cons(f70(A),f73(A))),cons(f71(A),f74(A))) = A # props([maximal([2]),maximal_signed([2,5]),selected([])]). [factor(1322,b,c),xx(c)]. 1643 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(C,cons(B,A)),cons(B,C)) != A | app(app(f72(A),cons(f70(A),f73(A))),cons(f71(A),f74(A))) = A # props([maximal([2]),maximal_signed([2,5]),selected([])]). [factor(1323,c,d)]. 1644 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,A)) != A | app(app(f72(A),cons(f70(A),f73(A))),cons(f71(A),f74(A))) = A # props([maximal([2]),maximal_signed([2,5]),selected([])]). [factor(1325,c,d)]. 1645 -ssList(A) | -ssItem(B) | -ssList(C) | app(app(C,cons(B,C)),cons(B,C)) != A | app(app(f72(A),cons(f70(A),f73(A))),cons(f71(A),f74(A))) = A # props([maximal([2]),maximal_signed([2,5]),selected([])]). [factor(1327,c,d)]. 1646 -ssList(A) | -ssItem(A) | -ssItem(app(f81(A),cons(f79(A),cons(f80(A),f82(A))))) | app(f81(A),cons(f79(A),cons(f80(A),f82(A)))) = A | app(A,cons(A,cons(app(f81(A),cons(f79(A),cons(f80(A),f82(A)))),A))) != A # props([maximal([3]),maximal_signed([3,4]),selected([])]). [factor(1337,d,f)]. 1647 -ssList(A) | -segmentP(A,A) | segmentP(app(app(A,A),A),A) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1344,a,c)]. 1648 -ssList(A) | -ssItem(B) | -leq(B,B) | app(app(A,cons(B,A)),cons(B,A)) != A | -cyclefreeP(A) # props([maximal([3]),maximal_signed([3]),selected([])]). [factor(1357,b,c),merge(d)]. 1649 -ssList(A) | -ssItem(B) | -leq(B,B) | app(app(A,cons(B,A)),cons(B,A)) != A | ssItem(f20(A)) # props([maximal([3]),maximal_signed([3,5]),selected([])]). [factor(1365,b,c),merge(d)]. 1650 -ssList(A) | -ssItem(B) | -leq(B,B) | app(app(A,cons(B,A)),cons(B,A)) != A | ssItem(f21(A)) # props([maximal([3]),maximal_signed([3,5]),selected([])]). [factor(1373,b,c),merge(d)]. 1651 -ssList(A) | -ssItem(B) | -leq(B,B) | app(app(A,cons(B,A)),cons(B,A)) != A | leq(f20(A),f21(A)) # props([maximal([3,5]),maximal_signed([3,5]),selected([])]). [factor(1381,b,c),merge(d)]. 1652 -ssList(A) | -ssItem(B) | -leq(B,B) | app(app(A,cons(B,A)),cons(B,A)) != A | leq(f21(A),f20(A)) # props([maximal([3,5]),maximal_signed([3,5]),selected([])]). [factor(1389,b,c),merge(d)]. 1653 -ssList(A) | -ssItem(B) | -leq(B,B) | app(app(A,cons(B,A)),cons(B,A)) != A | ssList(f22(A)) # props([maximal([3]),maximal_signed([3,5]),selected([])]). [factor(1397,b,c),merge(d)]. 1654 -ssList(A) | -ssItem(B) | -leq(B,B) | app(app(A,cons(B,A)),cons(B,A)) != A | ssList(f23(A)) # props([maximal([3]),maximal_signed([3,5]),selected([])]). [factor(1405,b,c),merge(d)]. 1655 -ssList(A) | -ssItem(B) | -leq(B,B) | app(app(A,cons(B,A)),cons(B,A)) != A | ssList(f24(A)) # props([maximal([3]),maximal_signed([3,5]),selected([])]). [factor(1413,b,c),merge(d)]. 1656 -ssList(A) | -ssItem(B) | -leq(B,B) | app(app(A,cons(B,A)),cons(B,A)) != A | app(app(f22(A),cons(f20(A),f23(A))),cons(f21(A),f24(A))) = A # props([maximal([3]),maximal_signed([3,5]),selected([])]). [factor(1421,b,c),merge(d)]. 1657 -ssList(A) | -ssItem(B) | lt(B,B) | app(app(A,cons(B,A)),cons(B,A)) != A | -strictorderP(A) # props([maximal([3]),maximal_signed([3,5]),selected([])]). [factor(1438,b,c),merge(d)]. 1658 -ssList(A) | -ssItem(B) | lt(B,B) | app(app(A,cons(B,A)),cons(B,A)) != A | ssItem(f40(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1446,b,c),merge(d)]. 1659 -ssList(A) | -ssItem(B) | lt(B,B) | app(app(A,cons(B,A)),cons(B,A)) != A | ssItem(f41(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1454,b,c),merge(d)]. 1660 -ssList(A) | -ssItem(B) | lt(B,B) | app(app(A,cons(B,A)),cons(B,A)) != A | -lt(f40(A),f41(A)) # props([maximal([3,5]),maximal_signed([3,5]),selected([])]). [factor(1462,b,c),merge(d)]. 1661 -ssList(A) | -ssItem(B) | lt(B,B) | app(app(A,cons(B,A)),cons(B,A)) != A | -lt(f41(A),f40(A)) # props([maximal([3,5]),maximal_signed([3,5]),selected([])]). [factor(1470,b,c),merge(d)]. 1662 -ssList(A) | -ssItem(B) | lt(B,B) | app(app(A,cons(B,A)),cons(B,A)) != A | ssList(f42(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1478,b,c),merge(d)]. 1663 -ssList(A) | -ssItem(B) | lt(B,B) | app(app(A,cons(B,A)),cons(B,A)) != A | ssList(f43(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1486,b,c),merge(d)]. 1664 -ssList(A) | -ssItem(B) | lt(B,B) | app(app(A,cons(B,A)),cons(B,A)) != A | ssList(f44(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1494,b,c),merge(d)]. 1665 -ssList(A) | -ssItem(B) | lt(B,B) | app(app(A,cons(B,A)),cons(B,A)) != A | app(app(f42(A),cons(f40(A),f43(A))),cons(f41(A),f44(A))) = A # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1502,b,c),merge(d)]. 1666 -ssList(A) | -ssItem(B) | lt(B,B) | app(app(A,cons(B,A)),cons(B,A)) != A | -strictorderedP(A) # props([maximal([3]),maximal_signed([3,5]),selected([])]). [factor(1518,b,c)]. 1667 -ssList(A) | -ssItem(B) | lt(B,B) | app(app(A,cons(B,A)),cons(B,A)) != A | ssItem(f60(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1526,b,c)]. 1668 -ssList(A) | -ssItem(B) | lt(B,B) | app(app(A,cons(B,A)),cons(B,A)) != A | ssItem(f61(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1534,b,c)]. 1669 -ssList(A) | -ssItem(B) | lt(B,B) | app(app(A,cons(B,A)),cons(B,A)) != A | -lt(f60(A),f61(A)) # props([maximal([3,5]),maximal_signed([3,5]),selected([])]). [factor(1542,b,c)]. 1670 -ssList(A) | -ssItem(B) | lt(B,B) | app(app(A,cons(B,A)),cons(B,A)) != A | ssList(f62(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1550,b,c)]. 1671 -ssList(A) | -ssItem(B) | lt(B,B) | app(app(A,cons(B,A)),cons(B,A)) != A | ssList(f63(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1558,b,c)]. 1672 -ssList(A) | -ssItem(B) | lt(B,B) | app(app(A,cons(B,A)),cons(B,A)) != A | ssList(f64(A)) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1566,b,c)]. 1673 -ssList(A) | -ssItem(B) | lt(B,B) | app(app(A,cons(B,A)),cons(B,A)) != A | app(app(f62(A),cons(f60(A),f63(A))),cons(f61(A),f64(A))) = A # props([maximal([3]),maximal_signed([2,3]),selected([])]). [factor(1574,b,c)]. 1674 -ssList(A) | -ssItem(B) | app(app(A,cons(B,A)),cons(B,A)) != A | -duplicatefreeP(A) # props([maximal([4]),maximal_signed([4]),selected([])]). [factor(1582,b,c),xx(c)]. 1675 -ssList(A) | -ssItem(B) | app(app(A,cons(B,A)),cons(B,A)) != A | ssItem(f70(A)) # props([maximal([2,4]),maximal_signed([2,4]),selected([])]). [factor(1590,b,c),xx(c)]. 1676 -ssList(A) | -ssItem(B) | app(app(A,cons(B,A)),cons(B,A)) != A | ssItem(f71(A)) # props([maximal([2,4]),maximal_signed([2,4]),selected([])]). [factor(1598,b,c),xx(c)]. 1677 -ssList(A) | -ssItem(B) | app(app(A,cons(B,A)),cons(B,A)) != A | f71(A) = f70(A) # props([maximal([2]),maximal_signed([2,4]),selected([])]). [factor(1606,b,c),xx(c)]. 1678 -ssList(A) | -ssItem(B) | app(app(A,cons(B,A)),cons(B,A)) != A | ssList(f72(A)) # props([maximal([2]),maximal_signed([2,4]),selected([])]). [factor(1614,b,c),xx(c)]. 1679 -ssList(A) | -ssItem(B) | app(app(A,cons(B,A)),cons(B,A)) != A | ssList(f73(A)) # props([maximal([2]),maximal_signed([2,4]),selected([])]). [factor(1622,b,c),xx(c)]. 1680 -ssList(A) | -ssItem(B) | app(app(A,cons(B,A)),cons(B,A)) != A | ssList(f74(A)) # props([maximal([2]),maximal_signed([2,4]),selected([])]). [factor(1630,b,c),xx(c)]. 1681 -ssList(A) | -ssItem(B) | app(app(A,cons(B,A)),cons(B,A)) != A | app(app(f72(A),cons(f70(A),f73(A))),cons(f71(A),f74(A))) = A # props([maximal([2]),maximal_signed([2,4]),selected([])]). [factor(1638,b,c),xx(c)]. end_of_list. formulas(demodulators). 259 c3 = c5 # props([maximal([1]),maximal_signed([1]),selected([])]). [copy(258),flip(a)]. 270 c6 = nil # props([maximal([1]),maximal_signed([1]),selected([])]). [copy(269),flip(a)]. 735 app(app(c7,c5),c8) = nil # props([maximal([1]),maximal_signed([1]),selected([])]). [back_rewrite(267),rewrite([270(6)])]. 736 c4 = nil # props([maximal([1]),maximal_signed([1]),selected([])]). [back_rewrite(263),rewrite([270(2)])]. end_of_list. ============================== end of clauses for search ============= ============================== SEARCH ================================ % Starting search at 0.77 seconds. given #1 (I,wt=10): 1 -ssItem(A) | -ssItem(B) | neq(A,B) | B = A # props([maximal([3]),maximal_signed([1,2,3]),selected([])]). [assumption]. given #2 (I,wt=10): 2 -ssItem(A) | -ssItem(B) | B != A | -neq(A,B) # props([maximal([4]),maximal_signed([4]),selected([])]). [assumption]. given #3 (I,wt=2): 3 ssItem(c1) # props([maximal([1]),maximal_signed([1]),selected([])]). [assumption]. given #4 (I,wt=2): 4 ssItem(c2) # props([maximal([1]),maximal_signed([1]),selected([])]). [assumption]. given #5 (I,wt=3): 5 c2 != c1 # props([maximal([1]),maximal_signed([1]),selected([])]). [assumption]. given #6 (I,wt=18): 6 -ssList(A) | -ssItem(B) | memberP(A,B) | -ssList(C) | -ssList(D) | app(C,cons(B,D)) != A # props([maximal([3]),maximal_signed([2,3]),selected([])]). [assumption]. given #7 (I,wt=11): 7 -ssList(A) | -ssItem(B) | ssList(f1(A,B)) | -memberP(A,B) # props([maximal([4]),maximal_signed([3,4]),selected([])]). [assumption]. given #8 (I,wt=11): 8 -ssList(A) | -ssItem(B) | ssList(f2(A,B)) | -memberP(A,B) # props([maximal([4]),maximal_signed([3,4]),selected([])]). [assumption]. given #9 (I,wt=18): 9 -ssList(A) | -ssItem(B) | app(f1(A,B),cons(B,f2(A,B))) = A | -memberP(A,B) # props([maximal([4]),maximal_signed([3,4]),selected([])]). [assumption]. given #10 (I,wt=19): 10 -ssList(A) | -ssItem(B) | ssList(f3(A,B)) | -ssList(C) | -ssList(D) | app(C,cons(B,D)) != A # props([maximal([2]),maximal_signed([2,3]),selected([])]). [assumption]. given #11 (I,wt=19): 11 -ssList(A) | -ssItem(B) | ssList(f4(A,B)) | -ssList(C) | -ssList(D) | app(C,cons(B,D)) != A # props([maximal([2]),maximal_signed([2,3]),selected([])]). [assumption]. given #12 (I,wt=26): 12 -ssList(A) | -ssItem(B) | app(f3(A,B),cons(B,f4(A,B))) = A | -ssList(C) | -ssList(D) | app(C,cons(B,D)) != A # props([maximal([2]),maximal_signed([2,3]),selected([])]). [assumption]. given #13 (I,wt=11): 13 -ssList(A) | singletonP(A) | -ssItem(B) | cons(B,nil) != A # props([maximal([2]),maximal_signed([2,3]),selected([])]). [assumption]. given #14 (I,wt=7): 14 -ssList(A) | ssItem(f5(A)) | -singletonP(A) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [assumption]. given #15 (I,wt=10): 15 -ssList(A) | cons(f5(A),nil) = A | -singletonP(A) # props([maximal([3]),maximal_signed([2,3]),selected([])]). [assumption]. given #16 (I,wt=12): 16 -ssList(A) | ssItem(f6(A)) | -ssItem(B) | cons(B,nil) != A # props([maximal([2,3]),maximal_signed([2,3]),selected([])]). [assumption]. given #17 (I,wt=15): 17 -ssList(A) | cons(f6(A),nil) = A | -ssItem(B) | cons(B,nil) != A # props([maximal([3]),maximal_signed([2,3]),selected([])]). [assumption]. given #18 (I,wt=14): 18 -ssList(A) | -ssList(B) | frontsegP(A,B) | -ssList(C) | app(B,C) != A # props([maximal([3]),maximal_signed([1,2,3,4]),selected([])]). [assumption]. given #19 (I,wt=11): 19 -ssList(A) | -ssList(B) | ssList(f7(A,B)) | -frontsegP(A,B) # props([maximal([4]),maximal_signed([3,4]),selected([])]). [assumption]. given #20 (I,wt=14): 20 -ssList(A) | -ssList(B) | app(B,f7(A,B)) = A | -frontsegP(A,B) # props([maximal([4]),maximal_signed([3,4]),selected([])]). [assumption]. given #21 (I,wt=15): 21 -ssList(A) | -ssList(B) | ssList(f8(A,B)) | -ssList(C) | app(B,C) != A # props([maximal([3,4]),maximal_signed([1,2,3,4]),selected([])]). [assumption]. given #22 (I,wt=18): 22 -ssList(A) | -ssList(B) | app(B,f8(A,B)) = A | -ssList(C) | app(B,C) != A # props([maximal([1,2,4]),maximal_signed([1,2,3,4]),selected([])]). [assumption]. given #23 (I,wt=14): 23 -ssList(A) | -ssList(B) | rearsegP(A,B) | -ssList(C) | app(C,B) != A # props([maximal([3]),maximal_signed([1,2,3,4]),selected([])]). [assumption]. given #24 (I,wt=11): 24 -ssList(A) | -ssList(B) | ssList(f9(A,B)) | -rearsegP(A,B) # props([maximal([4]),maximal_signed([3,4]),selected([])]). [assumption]. given #25 (I,wt=14): 25 -ssList(A) | -ssList(B) | app(f9(A,B),B) = A | -rearsegP(A,B) # props([maximal([4]),maximal_signed([3,4]),selected([])]). [assumption]. given #26 (I,wt=15): 26 -ssList(A) | -ssList(B) | ssList(f10(A,B)) | -ssList(C) | app(C,B) != A # props([maximal([3,4]),maximal_signed([1,2,3,4]),selected([])]). [assumption]. given #27 (I,wt=18): 27 -ssList(A) | -ssList(B) | app(f10(A,B),B) = A | -ssList(C) | app(C,B) != A # props([maximal([1,2,4]),maximal_signed([1,2,3,4]),selected([])]). [assumption]. given #28 (I,wt=18): 28 -ssList(A) | -ssList(B) | segmentP(A,B) | -ssList(C) | -ssList(D) | app(app(C,B),D) != A # props([maximal([3]),maximal_signed([1,2,3,4,5]),selected([])]). [assumption]. given #29 (I,wt=11): 29 -ssList(A) | -ssList(B) | ssList(f11(A,B)) | -segmentP(A,B) # props([maximal([4]),maximal_signed([3,4]),selected([])]). [assumption]. given #30 (I,wt=11): 30 -ssList(A) | -ssList(B) | ssList(f12(A,B)) | -segmentP(A,B) # props([maximal([4]),maximal_signed([3,4]),selected([])]). [assumption]. given #31 (I,wt=18): 31 -ssList(A) | -ssList(B) | app(app(f11(A,B),B),f12(A,B)) = A | -segmentP(A,B) # props([maximal([4]),maximal_signed([3,4]),selected([])]). [assumption]. given #32 (I,wt=19): 32 -ssList(A) | -ssList(B) | ssList(f13(A,B)) | -ssList(C) | -ssList(D) | app(app(C,B),D) != A # props([maximal([3,4,5]),maximal_signed([1,2,3,4,5]),selected([])]). [assumption]. Prover catching signal 2. ============================== STATISTICS ============================ Given=32. Generated=8268. Kept=3143. proofs=0. Usable=32. Sos=2643. Demods=4. Limbo=461, Disabled=272. Hints=0. Weight_deleted=0. Literals_deleted=0. Forward_subsumed=5124. Back_subsumed=1. Sos_limit_deleted=0. Sos_displaced=0. Sos_removed=0. New_demodulators=6 (0 lex), Back_demodulated=6. Back_unit_deleted=0. Demod_attempts=97098. Demod_rewrites=9. Res_instance_prunes=0. Para_instance_prunes=0. Basic_paramod_prunes=0. Nonunit_fsub_feature_tests=155162. Nonunit_bsub_feature_tests=69082. Megabytes=7.20. User_CPU=9.92, System_CPU=0.01, Wall_clock=10. ============================== end of statistics ===================== Exiting with failure. Process 17872 exit (SIGINT) Tue Jun 12 11:22:01 2007 ================================================ FILE: models/symbolic_solvers/Prover9/VERSION_DATE.h ================================================ #define PROGRAM_DATE "November 2009" #define PROGRAM_VERSION "2009-11A" ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/BA-sheffer ================================================ % These are Boolean Algebra identities in terms of the Sheffer stroke. % Every such identity (or its mirror image), up through length 15, % is captured by a member of this list. f(f(x,x),f(x,y)) = x. f(f(x,x),f(y,x)) = x. f(f(y,f(y,y)),f(x,x)) = x. f(f(f(y,y),y),f(x,x)) = x. f(f(x,f(y,z)),f(x,z)) = x. f(f(x,f(y,z)),f(z,x)) = x. f(f(x,f(y,z)),f(x,y)) = x. f(f(x,f(y,z)),f(y,x)) = x. f(f(f(y,z),x),f(x,z)) = x. f(f(f(y,z),x),f(z,x)) = x. f(f(f(y,z),x),f(x,y)) = x. f(f(f(y,z),x),f(y,x)) = x. f(f(x,f(y,f(y,y))),f(x,z)) = x. f(f(x,f(f(y,y),y)),f(x,z)) = x. f(f(x,f(y,f(y,y))),f(z,x)) = x. f(f(x,f(f(y,y),y)),f(z,x)) = x. f(f(f(y,f(y,y)),x),f(x,z)) = x. f(f(f(f(y,y),y),x),f(x,z)) = x. f(f(f(y,f(y,y)),x),f(z,x)) = x. f(f(f(f(y,y),y),x),f(z,x)) = x. f(f(x,f(f(x,y),y)),f(x,z)) = x. f(f(x,f(f(x,y),y)),f(z,x)) = x. f(f(f(f(x,y),z),z),f(x,x)) = x. f(f(x,f(y,f(x,y))),f(x,z)) = x. f(f(x,f(f(y,x),y)),f(x,z)) = x. f(f(x,f(y,f(x,y))),f(z,x)) = x. f(f(x,f(f(y,x),y)),f(z,x)) = x. f(f(x,f(y,f(y,x))),f(x,z)) = x. f(f(f(f(x,y),y),x),f(x,z)) = x. f(f(x,f(y,f(y,x))),f(z,x)) = x. f(f(f(f(x,y),y),x),f(z,x)) = x. f(f(f(f(y,x),z),z),f(x,x)) = x. f(f(y,f(f(x,z),y)),f(x,x)) = x. f(f(f(y,f(x,z)),y),f(x,x)) = x. f(f(f(y,f(x,y)),x),f(x,z)) = x. f(f(f(f(y,x),y),x),f(x,z)) = x. f(f(f(y,f(x,y)),x),f(z,x)) = x. f(f(f(f(y,x),y),x),f(z,x)) = x. f(f(y,f(f(z,x),y)),f(x,x)) = x. f(f(f(y,f(z,x)),y),f(x,x)) = x. f(f(f(y,f(y,x)),x),f(x,z)) = x. f(f(f(y,f(y,x)),x),f(z,x)) = x. f(f(y,f(y,f(x,z))),f(x,x)) = x. f(f(y,f(y,f(z,x))),f(x,x)) = x. f(f(x,f(f(x,x),y)),f(x,z)) = x. f(f(x,f(f(x,x),y)),f(z,x)) = x. f(f(f(f(x,x),y),x),f(x,z)) = x. f(f(f(f(x,x),y),x),f(z,x)) = x. f(f(x,f(y,f(x,x))),f(x,z)) = x. f(f(x,f(y,f(x,x))),f(z,x)) = x. f(f(f(y,f(x,x)),x),f(x,z)) = x. f(f(f(y,f(x,x)),x),f(z,x)) = x. f(f(x,f(y,f(y,y))),f(z,f(z,z))) = x. f(f(x,f(f(y,y),y)),f(z,f(z,z))) = x. f(f(x,f(y,f(y,y))),f(f(z,z),z)) = x. f(f(x,f(f(y,y),y)),f(f(z,z),z)) = x. f(f(f(y,f(y,y)),x),f(z,f(z,z))) = x. f(f(f(f(y,y),y),x),f(z,f(z,z))) = x. f(f(f(y,f(y,y)),x),f(f(z,z),z)) = x. f(f(f(f(y,y),y),x),f(f(z,z),z)) = x. f(f(f(f(x,y),y),y),f(x,f(z,y))) = x. f(f(f(f(x,y),y),y),f(x,f(y,z))) = x. f(f(f(f(x,y),y),y),f(f(z,y),x)) = x. f(f(f(f(x,y),y),y),f(f(y,z),x)) = x. f(f(y,f(f(x,y),y)),f(x,f(z,y))) = x. f(f(f(y,f(x,y)),y),f(x,f(z,y))) = x. f(f(f(f(y,x),y),y),f(x,f(z,y))) = x. f(f(y,f(f(x,y),y)),f(x,f(y,z))) = x. f(f(f(y,f(x,y)),y),f(x,f(y,z))) = x. f(f(f(f(y,x),y),y),f(x,f(y,z))) = x. f(f(y,f(f(x,y),y)),f(f(z,y),x)) = x. f(f(f(y,f(x,y)),y),f(f(z,y),x)) = x. f(f(f(f(y,x),y),y),f(f(z,y),x)) = x. f(f(y,f(f(x,y),y)),f(f(y,z),x)) = x. f(f(f(y,f(x,y)),y),f(f(y,z),x)) = x. f(f(f(f(y,x),y),y),f(f(y,z),x)) = x. f(f(y,f(y,f(x,y))),f(x,f(z,y))) = x. f(f(y,f(f(y,x),y)),f(x,f(z,y))) = x. f(f(f(y,f(y,x)),y),f(x,f(z,y))) = x. f(f(y,f(y,f(x,y))),f(x,f(y,z))) = x. f(f(y,f(f(y,x),y)),f(x,f(y,z))) = x. f(f(f(y,f(y,x)),y),f(x,f(y,z))) = x. f(f(y,f(y,f(x,y))),f(f(z,y),x)) = x. f(f(y,f(f(y,x),y)),f(f(z,y),x)) = x. f(f(f(y,f(y,x)),y),f(f(z,y),x)) = x. f(f(y,f(y,f(x,y))),f(f(y,z),x)) = x. f(f(y,f(f(y,x),y)),f(f(y,z),x)) = x. f(f(f(y,f(y,x)),y),f(f(y,z),x)) = x. f(f(y,f(y,f(y,x))),f(x,f(z,y))) = x. f(f(y,f(y,f(y,x))),f(x,f(y,z))) = x. f(f(y,f(y,f(y,x))),f(f(z,y),x)) = x. f(f(y,f(y,f(y,x))),f(f(y,z),x)) = x. f(f(x,f(f(x,y),y)),f(z,f(z,z))) = x. f(f(x,f(f(x,y),y)),f(f(z,z),z)) = x. f(f(x,f(y,f(x,y))),f(z,f(z,z))) = x. f(f(x,f(f(y,x),y)),f(z,f(z,z))) = x. f(f(x,f(y,f(x,y))),f(f(z,z),z)) = x. f(f(x,f(f(y,x),y)),f(f(z,z),z)) = x. f(f(x,f(y,f(y,x))),f(z,f(z,z))) = x. f(f(f(f(x,y),y),x),f(z,f(z,z))) = x. f(f(x,f(y,f(y,x))),f(f(z,z),z)) = x. f(f(f(f(x,y),y),x),f(f(z,z),z)) = x. f(f(f(f(x,y),z),z),f(x,f(y,z))) = x. f(f(f(f(x,y),z),z),f(x,f(z,y))) = x. f(f(f(f(x,y),z),z),f(f(y,z),x)) = x. f(f(f(f(x,y),z),z),f(f(z,y),x)) = x. f(f(f(y,f(x,y)),x),f(z,f(z,z))) = x. f(f(f(f(y,x),y),x),f(z,f(z,z))) = x. f(f(f(y,f(x,y)),x),f(f(z,z),z)) = x. f(f(f(f(y,x),y),x),f(f(z,z),z)) = x. f(f(f(f(y,x),z),z),f(x,f(y,z))) = x. f(f(f(f(y,x),z),z),f(x,f(z,y))) = x. f(f(f(f(y,x),z),z),f(f(y,z),x)) = x. f(f(f(f(y,x),z),z),f(f(z,y),x)) = x. f(f(f(y,f(y,x)),x),f(z,f(z,z))) = x. f(f(f(y,f(y,x)),x),f(f(z,z),z)) = x. f(f(y,f(f(x,z),y)),f(x,f(z,y))) = x. f(f(f(y,f(x,z)),y),f(x,f(z,y))) = x. f(f(y,f(f(x,z),y)),f(x,f(y,z))) = x. f(f(f(y,f(x,z)),y),f(x,f(y,z))) = x. f(f(y,f(f(x,z),y)),f(f(z,y),x)) = x. f(f(f(y,f(x,z)),y),f(f(z,y),x)) = x. f(f(y,f(f(x,z),y)),f(f(y,z),x)) = x. f(f(f(y,f(x,z)),y),f(f(y,z),x)) = x. f(f(y,f(f(z,x),y)),f(x,f(z,y))) = x. f(f(f(y,f(z,x)),y),f(x,f(z,y))) = x. f(f(y,f(f(z,x),y)),f(x,f(y,z))) = x. f(f(f(y,f(z,x)),y),f(x,f(y,z))) = x. f(f(y,f(f(z,x),y)),f(f(z,y),x)) = x. f(f(f(y,f(z,x)),y),f(f(z,y),x)) = x. f(f(y,f(f(z,x),y)),f(f(y,z),x)) = x. f(f(f(y,f(z,x)),y),f(f(y,z),x)) = x. f(f(y,f(y,f(x,z))),f(x,f(z,y))) = x. f(f(y,f(y,f(x,z))),f(x,f(y,z))) = x. f(f(y,f(y,f(x,z))),f(f(z,y),x)) = x. f(f(y,f(y,f(x,z))),f(f(y,z),x)) = x. f(f(y,f(y,f(z,x))),f(x,f(z,y))) = x. f(f(y,f(y,f(z,x))),f(x,f(y,z))) = x. f(f(y,f(y,f(z,x))),f(f(z,y),x)) = x. f(f(y,f(y,f(z,x))),f(f(y,z),x)) = x. f(f(x,f(f(x,x),y)),f(z,f(z,z))) = x. f(f(x,f(f(x,x),y)),f(f(z,z),z)) = x. f(f(f(f(x,x),y),x),f(z,f(z,z))) = x. f(f(f(f(x,x),y),x),f(f(z,z),z)) = x. f(f(f(f(x,x),y),y),f(x,f(z,y))) = x. f(f(f(f(x,x),y),y),f(x,f(y,z))) = x. f(f(f(f(x,x),y),y),f(f(z,y),x)) = x. f(f(f(f(x,x),y),y),f(f(y,z),x)) = x. f(f(x,f(y,f(x,x))),f(z,f(z,z))) = x. f(f(x,f(y,f(x,x))),f(f(z,z),z)) = x. f(f(f(y,f(x,x)),x),f(z,f(z,z))) = x. f(f(f(y,f(x,x)),x),f(f(z,z),z)) = x. f(f(y,f(f(x,x),y)),f(x,f(z,y))) = x. f(f(f(y,f(x,x)),y),f(x,f(z,y))) = x. f(f(y,f(f(x,x),y)),f(x,f(y,z))) = x. f(f(f(y,f(x,x)),y),f(x,f(y,z))) = x. f(f(y,f(f(x,x),y)),f(f(z,y),x)) = x. f(f(f(y,f(x,x)),y),f(f(z,y),x)) = x. f(f(y,f(f(x,x),y)),f(f(y,z),x)) = x. f(f(f(y,f(x,x)),y),f(f(y,z),x)) = x. f(f(y,f(y,f(x,x))),f(x,f(z,y))) = x. f(f(y,f(y,f(x,x))),f(x,f(y,z))) = x. f(f(y,f(y,f(x,x))),f(f(z,y),x)) = x. f(f(y,f(y,f(x,x))),f(f(y,z),x)) = x. f(f(x,f(y,f(z,z))),f(x,f(u,z))) = x. f(f(x,f(y,f(z,z))),f(x,f(z,u))) = x. f(f(x,f(y,f(z,z))),f(f(u,z),x)) = x. f(f(x,f(y,f(z,z))),f(f(z,u),x)) = x. f(f(x,f(f(y,y),z)),f(x,f(u,y))) = x. f(f(x,f(f(y,y),z)),f(x,f(y,u))) = x. f(f(x,f(f(y,y),z)),f(f(u,y),x)) = x. f(f(x,f(f(y,y),z)),f(f(y,u),x)) = x. f(f(f(y,f(z,z)),x),f(x,f(u,z))) = x. f(f(f(y,f(z,z)),x),f(x,f(z,u))) = x. f(f(f(y,f(z,z)),x),f(f(u,z),x)) = x. f(f(f(y,f(z,z)),x),f(f(z,u),x)) = x. f(f(f(f(y,y),z),x),f(x,f(u,y))) = x. f(f(f(f(y,y),z),x),f(x,f(y,u))) = x. f(f(f(f(y,y),z),x),f(f(u,y),x)) = x. f(f(f(f(y,y),z),x),f(f(y,u),x)) = x. f(f(x,f(y,f(z,u))),f(x,f(u,z))) = x. f(f(x,f(y,f(z,u))),f(f(u,z),x)) = x. f(f(x,f(y,f(y,z))),f(x,f(u,z))) = x. f(f(x,f(y,f(y,z))),f(x,f(z,u))) = x. f(f(x,f(y,f(y,z))),f(f(u,z),x)) = x. f(f(x,f(y,f(y,z))),f(f(z,u),x)) = x. f(f(x,f(f(y,z),u)),f(x,f(z,y))) = x. f(f(x,f(f(y,z),u)),f(f(z,y),x)) = x. f(f(x,f(y,f(z,y))),f(x,f(u,z))) = x. f(f(x,f(f(y,z),y)),f(x,f(u,z))) = x. f(f(x,f(y,f(z,y))),f(x,f(z,u))) = x. f(f(x,f(f(y,z),y)),f(x,f(z,u))) = x. f(f(x,f(y,f(z,y))),f(f(u,z),x)) = x. f(f(x,f(f(y,z),y)),f(f(u,z),x)) = x. f(f(x,f(y,f(z,y))),f(f(z,u),x)) = x. f(f(x,f(f(y,z),y)),f(f(z,u),x)) = x. f(f(x,f(f(y,z),z)),f(x,f(u,y))) = x. f(f(x,f(f(y,z),z)),f(x,f(y,u))) = x. f(f(x,f(f(y,z),z)),f(f(u,y),x)) = x. f(f(x,f(f(y,z),z)),f(f(y,u),x)) = x. f(f(f(y,f(z,u)),x),f(x,f(u,z))) = x. f(f(f(y,f(z,u)),x),f(f(u,z),x)) = x. f(f(f(y,f(y,z)),x),f(x,f(u,z))) = x. f(f(f(y,f(y,z)),x),f(x,f(z,u))) = x. f(f(f(y,f(y,z)),x),f(f(u,z),x)) = x. f(f(f(y,f(y,z)),x),f(f(z,u),x)) = x. f(f(f(f(y,z),u),x),f(x,f(z,y))) = x. f(f(f(f(y,z),u),x),f(f(z,y),x)) = x. f(f(f(y,f(z,y)),x),f(x,f(u,z))) = x. f(f(f(f(y,z),y),x),f(x,f(u,z))) = x. f(f(f(y,f(z,y)),x),f(x,f(z,u))) = x. f(f(f(f(y,z),y),x),f(x,f(z,u))) = x. f(f(f(y,f(z,y)),x),f(f(u,z),x)) = x. f(f(f(f(y,z),y),x),f(f(u,z),x)) = x. f(f(f(y,f(z,y)),x),f(f(z,u),x)) = x. f(f(f(f(y,z),y),x),f(f(z,u),x)) = x. f(f(f(f(y,z),z),x),f(x,f(u,y))) = x. f(f(f(f(y,z),z),x),f(x,f(y,u))) = x. f(f(f(f(y,z),z),x),f(f(u,y),x)) = x. f(f(f(f(y,z),z),x),f(f(y,u),x)) = x. f(f(x,f(f(x,y),z)),f(x,f(u,y))) = x. f(f(x,f(f(x,y),z)),f(x,f(y,u))) = x. f(f(x,f(f(x,y),z)),f(f(u,y),x)) = x. f(f(x,f(f(x,y),z)),f(f(y,u),x)) = x. f(f(x,f(y,f(x,z))),f(x,f(u,z))) = x. f(f(x,f(y,f(x,z))),f(x,f(z,u))) = x. f(f(x,f(y,f(x,z))),f(f(u,z),x)) = x. f(f(x,f(y,f(x,z))),f(f(z,u),x)) = x. f(f(x,f(y,f(z,x))),f(x,f(u,z))) = x. f(f(x,f(y,f(z,x))),f(x,f(z,u))) = x. f(f(x,f(y,f(z,x))),f(f(u,z),x)) = x. f(f(x,f(y,f(z,x))),f(f(z,u),x)) = x. f(f(x,f(f(y,x),z)),f(x,f(u,y))) = x. f(f(x,f(f(y,x),z)),f(x,f(y,u))) = x. f(f(x,f(f(y,x),z)),f(f(u,y),x)) = x. f(f(x,f(f(y,x),z)),f(f(y,u),x)) = x. f(f(f(f(x,y),z),x),f(x,f(u,y))) = x. f(f(f(f(x,y),z),x),f(x,f(y,u))) = x. f(f(f(f(x,y),z),x),f(f(u,y),x)) = x. f(f(f(f(x,y),z),x),f(f(y,u),x)) = x. f(f(f(y,f(x,z)),x),f(x,f(u,z))) = x. f(f(f(y,f(x,z)),x),f(x,f(z,u))) = x. f(f(f(y,f(x,z)),x),f(f(u,z),x)) = x. f(f(f(y,f(x,z)),x),f(f(z,u),x)) = x. f(f(f(y,f(z,x)),x),f(x,f(u,z))) = x. f(f(f(y,f(z,x)),x),f(x,f(z,u))) = x. f(f(f(y,f(z,x)),x),f(f(u,z),x)) = x. f(f(f(y,f(z,x)),x),f(f(z,u),x)) = x. f(f(f(f(y,x),z),x),f(x,f(u,y))) = x. f(f(f(f(y,x),z),x),f(x,f(y,u))) = x. f(f(f(f(y,x),z),x),f(f(u,y),x)) = x. f(f(f(f(y,x),z),x),f(f(y,u),x)) = x. f(f(f(f(y,f(z,z)),z),z),f(x,x)) = x. f(f(y,f(f(z,f(y,y)),y)),f(x,x)) = x. f(f(f(y,f(z,f(y,y))),y),f(x,x)) = x. f(f(y,f(y,f(z,f(y,y)))),f(x,x)) = x. f(f(f(f(f(y,y),z),y),y),f(x,x)) = x. f(f(y,f(f(f(y,y),z),y)),f(x,x)) = x. f(f(f(y,f(f(y,y),z)),y),f(x,x)) = x. f(f(y,f(y,f(f(y,y),z))),f(x,x)) = x. f(f(y,f(y,f(z,f(z,z)))),f(x,x)) = x. f(f(y,f(y,f(f(z,z),z))),f(x,x)) = x. f(f(f(f(y,f(y,z)),z),z),f(x,x)) = x. f(f(f(f(y,f(z,y)),z),z),f(x,x)) = x. f(f(f(f(f(y,z),y),z),z),f(x,x)) = x. f(f(y,f(f(z,f(z,z)),y)),f(x,x)) = x. f(f(y,f(f(f(z,z),z),y)),f(x,x)) = x. f(f(f(y,f(z,f(z,z))),y),f(x,x)) = x. f(f(f(y,f(f(z,z),z)),y),f(x,x)) = x. f(f(y,f(f(z,f(z,y)),y)),f(x,x)) = x. f(f(f(y,f(z,f(z,y))),y),f(x,x)) = x. f(f(f(f(f(y,z),z),y),y),f(x,x)) = x. f(f(y,f(f(z,f(y,z)),y)),f(x,x)) = x. f(f(y,f(f(f(z,y),z),y)),f(x,x)) = x. f(f(f(y,f(z,f(y,z))),y),f(x,x)) = x. f(f(f(y,f(f(z,y),z)),y),f(x,x)) = x. f(f(y,f(y,f(z,f(z,y)))),f(x,x)) = x. f(f(y,f(f(f(y,z),z),y)),f(x,x)) = x. f(f(f(y,f(f(y,z),z)),y),f(x,x)) = x. f(f(y,f(y,f(z,f(y,z)))),f(x,x)) = x. f(f(y,f(y,f(f(z,y),z))),f(x,x)) = x. f(f(y,f(y,f(f(y,z),z))),f(x,x)) = x. f(f(f(f(y,f(y,y)),z),z),f(x,x)) = x. f(f(f(f(f(y,y),y),z),z),f(x,x)) = x. f(f(x,f(f(f(y,z),u),u)),f(x,z)) = x. f(f(x,f(f(f(y,z),u),u)),f(z,x)) = x. f(f(x,f(y,f(f(z,u),y))),f(x,u)) = x. f(f(x,f(f(y,f(z,u)),y)),f(x,u)) = x. f(f(x,f(y,f(f(z,u),y))),f(u,x)) = x. f(f(x,f(f(y,f(z,u)),y)),f(u,x)) = x. f(f(x,f(f(f(y,z),u),u)),f(x,y)) = x. f(f(x,f(f(f(y,z),u),u)),f(y,x)) = x. f(f(x,f(y,f(y,f(z,u)))),f(x,u)) = x. f(f(x,f(y,f(y,f(z,u)))),f(u,x)) = x. f(f(x,f(y,f(y,f(z,u)))),f(x,z)) = x. f(f(x,f(y,f(y,f(z,u)))),f(z,x)) = x. f(f(x,f(y,f(f(z,u),y))),f(x,z)) = x. f(f(x,f(f(y,f(z,u)),y)),f(x,z)) = x. f(f(x,f(y,f(f(z,u),y))),f(z,x)) = x. f(f(x,f(f(y,f(z,u)),y)),f(z,x)) = x. f(f(f(f(f(y,z),u),u),x),f(x,z)) = x. f(f(f(f(f(y,z),u),u),x),f(z,x)) = x. f(f(f(y,f(f(z,u),y)),x),f(x,u)) = x. f(f(f(f(y,f(z,u)),y),x),f(x,u)) = x. f(f(f(y,f(f(z,u),y)),x),f(u,x)) = x. f(f(f(f(y,f(z,u)),y),x),f(u,x)) = x. f(f(f(f(f(y,z),u),u),x),f(x,y)) = x. f(f(f(f(f(y,z),u),u),x),f(y,x)) = x. f(f(f(y,f(y,f(z,u))),x),f(x,u)) = x. f(f(f(y,f(y,f(z,u))),x),f(u,x)) = x. f(f(f(y,f(y,f(z,u))),x),f(x,z)) = x. f(f(f(y,f(y,f(z,u))),x),f(z,x)) = x. f(f(f(y,f(f(z,u),y)),x),f(x,z)) = x. f(f(f(f(y,f(z,u)),y),x),f(x,z)) = x. f(f(f(y,f(f(z,u),y)),x),f(z,x)) = x. f(f(f(f(y,f(z,u)),y),x),f(z,x)) = x. f(f(x,f(f(x,f(y,z)),u)),f(x,z)) = x. f(f(x,f(f(x,f(y,z)),u)),f(z,x)) = x. f(f(x,f(f(x,f(y,z)),u)),f(x,y)) = x. f(f(x,f(f(x,f(y,z)),u)),f(y,x)) = x. f(f(x,f(y,f(x,f(z,u)))),f(x,u)) = x. f(f(x,f(y,f(x,f(z,u)))),f(u,x)) = x. f(f(x,f(y,f(x,f(z,u)))),f(x,z)) = x. f(f(x,f(y,f(x,f(z,u)))),f(z,x)) = x. f(f(x,f(y,f(f(z,u),x))),f(x,u)) = x. f(f(x,f(y,f(f(z,u),x))),f(u,x)) = x. f(f(x,f(f(f(y,z),x),u)),f(x,z)) = x. f(f(x,f(f(f(y,z),x),u)),f(z,x)) = x. f(f(x,f(y,f(f(z,u),x))),f(x,z)) = x. f(f(f(f(x,f(y,z)),u),x),f(x,z)) = x. f(f(x,f(y,f(f(z,u),x))),f(z,x)) = x. f(f(f(f(x,f(y,z)),u),x),f(z,x)) = x. f(f(x,f(f(f(y,z),x),u)),f(x,y)) = x. f(f(x,f(f(f(y,z),x),u)),f(y,x)) = x. f(f(f(f(x,f(y,z)),u),x),f(x,y)) = x. f(f(f(f(x,f(y,z)),u),x),f(y,x)) = x. f(f(f(y,f(x,f(z,u))),x),f(x,u)) = x. f(f(f(y,f(x,f(z,u))),x),f(u,x)) = x. f(f(f(y,f(x,f(z,u))),x),f(x,z)) = x. f(f(f(y,f(x,f(z,u))),x),f(z,x)) = x. f(f(f(y,f(f(z,u),x)),x),f(x,u)) = x. f(f(f(y,f(f(z,u),x)),x),f(u,x)) = x. f(f(f(f(f(y,z),x),u),x),f(x,z)) = x. f(f(f(f(f(y,z),x),u),x),f(z,x)) = x. f(f(f(y,f(f(z,u),x)),x),f(x,z)) = x. f(f(f(y,f(f(z,u),x)),x),f(z,x)) = x. f(f(f(f(f(y,z),x),u),x),f(x,y)) = x. f(f(f(f(f(y,z),x),u),x),f(y,x)) = x. f(f(f(f(x,y),f(x,z)),u),f(x,x)) = x. f(f(f(f(x,y),f(z,x)),u),f(x,x)) = x. f(f(f(f(y,x),f(x,z)),u),f(x,x)) = x. f(f(y,f(f(x,z),f(x,u))),f(x,x)) = x. f(f(f(f(y,x),f(z,x)),u),f(x,x)) = x. f(f(y,f(f(x,z),f(u,x))),f(x,x)) = x. f(f(y,f(f(z,x),f(x,u))),f(x,x)) = x. f(f(y,f(f(z,x),f(u,x))),f(x,x)) = x. ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/MOL-cand.296 ================================================ f(f(f(f(f(x,z),y),y),z),f(f(f(x,z),f(y,z)),x)) = z. f(f(f(f(f(x,z),y),y),z),f(x,f(f(z,x),f(z,y)))) = z. f(f(f(f(f(x,z),y),y),z),f(x,f(f(y,z),f(z,x)))) = z. f(f(f(f(f(x,z),y),y),z),f(x,f(f(x,z),f(z,y)))) = z. f(f(f(f(f(x,z),y),y),z),f(x,f(f(z,z),f(z,y)))) = z. f(f(f(f(f(x,z),y),y),z),f(x,f(f(z,z),f(z,x)))) = z. f(f(f(f(x,f(z,y)),x),z),f(f(f(y,z),f(y,z)),y)) = z. f(f(f(f(x,f(y,z)),x),z),f(f(f(y,z),f(y,z)),y)) = z. f(f(f(f(x,f(z,y)),x),z),f(f(f(y,z),f(x,z)),y)) = z. f(f(f(f(x,f(z,y)),x),z),f(f(f(x,z),f(y,z)),y)) = z. f(f(f(f(x,f(y,z)),x),z),f(f(f(y,z),f(x,z)),y)) = z. f(f(f(f(x,f(y,z)),x),z),f(f(f(x,z),f(y,z)),y)) = z. f(f(f(f(x,f(z,y)),x),z),f(y,f(f(y,z),f(z,y)))) = z. f(f(f(f(x,f(z,y)),x),z),f(y,f(f(z,y),f(z,x)))) = z. f(f(f(f(x,f(y,z)),x),z),f(y,f(f(z,y),f(z,x)))) = z. f(f(f(f(x,f(y,z)),x),z),f(y,f(f(z,x),f(z,y)))) = z. f(f(f(f(x,f(y,z)),x),z),f(y,f(f(x,z),f(z,y)))) = z. f(f(f(f(x,f(z,y)),x),z),f(y,f(f(z,z),f(z,x)))) = z. f(f(f(f(x,f(y,z)),x),z),f(y,f(f(z,z),f(z,y)))) = z. f(f(f(f(x,f(y,z)),x),z),f(y,f(f(z,z),f(z,x)))) = z. f(f(f(f(x,z),f(z,x)),x),f(z,f(f(f(z,x),y),y))) = z. f(f(f(f(x,z),f(z,y)),y),f(z,f(f(f(z,y),x),x))) = z. f(f(f(f(x,z),f(z,y)),y),f(z,f(f(f(y,z),x),x))) = z. f(f(f(f(x,z),f(z,y)),x),f(z,f(f(f(z,x),y),y))) = z. f(f(f(f(x,z),f(z,y)),x),f(z,f(f(f(x,z),y),y))) = z. f(f(f(f(x,z),f(y,z)),y),f(z,f(f(f(z,y),x),x))) = z. f(f(f(f(x,z),f(y,z)),y),f(z,f(f(f(y,z),x),x))) = z. f(f(f(f(x,z),f(y,z)),x),f(z,f(f(f(x,z),y),y))) = z. f(f(f(f(x,z),f(z,z)),y),f(z,f(f(f(z,y),x),x))) = z. f(f(f(f(x,z),f(z,z)),y),f(z,f(f(f(y,z),x),x))) = z. f(f(f(f(x,z),f(z,x)),x),f(z,f(f(y,f(z,x)),y))) = z. f(f(f(f(x,z),f(z,y)),y),f(z,f(f(x,f(y,z)),x))) = z. f(f(f(f(x,z),f(z,y)),x),f(z,f(f(y,f(x,z)),y))) = z. f(f(f(f(x,z),f(y,z)),y),f(z,f(f(x,f(z,y)),x))) = z. f(f(f(f(x,z),f(y,z)),y),f(z,f(f(x,f(y,z)),x))) = z. f(f(f(f(x,z),f(y,z)),x),f(z,f(f(y,f(z,x)),y))) = z. f(f(f(f(x,z),f(z,z)),y),f(z,f(f(x,f(z,y)),x))) = z. f(f(f(f(x,z),f(z,z)),y),f(z,f(f(x,f(y,z)),x))) = z. f(f(f(f(x,z),f(z,y)),x),f(z,f(y,f(f(z,x),y)))) = z. f(f(f(f(x,z),f(y,z)),y),f(z,f(x,f(f(z,y),x)))) = z. f(f(f(f(x,z),f(y,z)),y),f(z,f(x,f(f(y,z),x)))) = z. f(f(f(f(x,z),f(y,z)),x),f(z,f(y,f(f(z,x),y)))) = z. f(f(f(f(x,z),f(z,z)),y),f(z,f(x,f(f(z,y),x)))) = z. f(f(f(f(x,z),f(z,z)),y),f(z,f(x,f(f(y,z),x)))) = z. f(f(f(f(x,z),f(z,z)),x),f(z,f(y,f(f(z,x),y)))) = z. f(f(f(f(x,z),f(z,y)),x),f(z,f(y,f(y,f(z,x))))) = z. f(f(f(f(x,z),f(y,z)),y),f(z,f(x,f(x,f(z,y))))) = z. f(f(f(f(x,z),f(z,z)),y),f(z,f(x,f(x,f(z,y))))) = z. f(f(f(f(x,z),f(z,z)),x),f(z,f(y,f(y,f(z,x))))) = z. f(f(f(x,f(f(z,y),x)),z),f(f(f(y,z),f(y,z)),y)) = z. f(f(f(x,f(f(y,z),x)),z),f(f(f(y,z),f(y,z)),y)) = z. f(f(f(x,f(f(z,y),x)),z),f(f(f(x,z),f(y,z)),y)) = z. f(f(f(x,f(f(y,z),x)),z),f(f(f(y,z),f(x,z)),y)) = z. f(f(f(x,f(f(y,z),x)),z),f(f(f(x,z),f(y,z)),y)) = z. f(f(f(x,f(f(y,z),x)),z),f(y,f(f(y,z),f(z,y)))) = z. f(f(f(x,f(f(z,y),x)),z),f(y,f(f(z,y),f(z,x)))) = z. f(f(f(x,f(f(z,y),x)),z),f(y,f(f(y,z),f(z,x)))) = z. f(f(f(x,f(f(z,y),x)),z),f(y,f(f(x,z),f(z,y)))) = z. f(f(f(x,f(f(y,z),x)),z),f(y,f(f(z,y),f(z,x)))) = z. f(f(f(x,f(f(y,z),x)),z),f(y,f(f(z,x),f(z,y)))) = z. f(f(f(x,f(f(z,y),x)),z),f(y,f(f(z,z),f(z,x)))) = z. f(f(f(x,f(f(y,z),x)),z),f(y,f(f(z,z),f(z,x)))) = z. f(f(f(x,f(x,f(z,y))),z),f(f(f(y,z),f(x,z)),y)) = z. f(f(f(x,f(x,f(y,z))),z),f(f(f(y,z),f(x,z)),y)) = z. f(f(f(x,f(x,f(y,z))),z),f(f(f(x,z),f(y,z)),y)) = z. f(f(f(x,f(x,f(y,z))),z),f(y,f(f(y,z),f(z,y)))) = z. f(f(f(x,f(x,f(z,y))),z),f(y,f(f(z,y),f(z,x)))) = z. f(f(f(x,f(x,f(z,y))),z),f(y,f(f(z,x),f(z,y)))) = z. f(f(f(x,f(x,f(z,y))),z),f(y,f(f(y,z),f(z,x)))) = z. f(f(f(x,f(x,f(z,y))),z),f(y,f(f(x,z),f(z,y)))) = z. f(f(f(x,f(x,f(y,z))),z),f(y,f(f(z,y),f(z,x)))) = z. f(f(f(x,f(x,f(y,z))),z),f(y,f(f(x,z),f(z,y)))) = z. f(f(f(x,f(x,f(z,y))),z),f(y,f(f(z,z),f(z,x)))) = z. f(f(f(x,f(x,f(y,z))),z),f(y,f(f(z,z),f(z,x)))) = z. f(f(x,f(f(z,x),f(z,x))),f(z,f(f(f(x,z),y),y))) = z. f(f(x,f(f(z,y),f(z,x))),f(z,f(f(f(z,x),y),y))) = z. f(f(x,f(f(z,y),f(z,x))),f(z,f(f(f(x,z),y),y))) = z. f(f(x,f(f(z,x),f(z,y))),f(z,f(f(f(z,x),y),y))) = z. f(f(x,f(f(z,x),f(z,x))),f(z,f(f(y,f(z,x)),y))) = z. f(f(x,f(f(z,x),f(z,x))),f(z,f(f(y,f(x,z)),y))) = z. f(f(x,f(f(z,y),f(z,x))),f(z,f(f(y,f(z,x)),y))) = z. f(f(x,f(f(z,x),f(z,y))),f(z,f(f(y,f(z,x)),y))) = z. f(f(x,f(f(z,x),f(z,y))),f(z,f(f(y,f(x,z)),y))) = z. f(f(x,f(f(z,x),f(z,x))),f(z,f(y,f(f(z,x),y)))) = z. f(f(x,f(f(z,x),f(z,x))),f(z,f(y,f(f(x,z),y)))) = z. f(f(x,f(f(z,y),f(z,x))),f(z,f(y,f(f(z,x),y)))) = z. f(f(x,f(f(z,y),f(z,x))),f(z,f(y,f(f(x,z),y)))) = z. f(f(x,f(f(z,x),f(z,y))),f(z,f(y,f(f(z,x),y)))) = z. f(f(x,f(f(z,x),f(z,y))),f(z,f(y,f(f(x,z),y)))) = z. f(f(x,f(f(z,y),f(z,x))),f(z,f(y,f(y,f(z,x))))) = z. f(f(f(x,f(z,z)),z),f(f(f(f(y,x),x),f(y,z)),y)) = z. f(f(f(x,f(z,z)),z),f(f(f(f(x,y),x),f(y,z)),y)) = z. f(f(f(x,f(z,z)),z),f(f(f(x,f(y,x)),f(y,z)),y)) = z. f(f(f(x,f(z,z)),z),f(f(f(y,z),f(f(y,x),x)),y)) = z. f(f(f(x,f(z,z)),z),f(f(f(y,z),f(f(x,y),x)),y)) = z. f(f(f(x,f(z,z)),z),f(f(f(y,z),f(x,f(y,x))),y)) = z. f(f(f(x,f(z,z)),z),f(f(f(y,z),f(x,f(x,y))),y)) = z. f(f(f(x,f(z,z)),z),f(y,f(f(f(x,y),x),f(z,y)))) = z. f(f(f(x,f(z,z)),z),f(y,f(f(x,f(y,x)),f(z,y)))) = z. f(f(f(x,f(z,z)),z),f(y,f(f(x,f(x,y)),f(z,y)))) = z. f(f(f(x,f(z,z)),z),f(y,f(f(z,y),f(f(y,x),x)))) = z. f(f(f(x,f(z,z)),z),f(y,f(f(z,y),f(f(x,y),x)))) = z. f(f(f(x,f(z,z)),z),f(y,f(f(y,z),f(f(y,x),x)))) = z. f(f(f(x,f(z,z)),z),f(y,f(f(y,z),f(f(x,y),x)))) = z. f(f(f(x,f(z,z)),z),f(y,f(f(z,y),f(x,f(y,x))))) = z. f(f(f(x,f(z,z)),z),f(y,f(f(z,y),f(x,f(x,y))))) = z. f(f(f(x,z),z),f(f(f(z,y),f(x,z)),f(f(x,x),y))) = z. f(f(f(x,z),z),f(f(f(y,z),f(x,z)),f(y,f(x,x)))) = z. f(f(f(x,z),z),f(f(y,f(x,x)),f(f(z,y),f(z,x)))) = z. f(f(f(x,z),z),f(f(y,f(x,x)),f(f(x,z),f(z,y)))) = z. f(f(f(x,f(x,z)),x),f(z,f(z,f(f(y,x),f(u,x))))) = z. f(f(f(x,f(x,z)),x),f(z,f(z,f(f(y,x),f(x,u))))) = z. f(f(f(x,f(x,z)),x),f(z,f(z,f(f(x,y),f(u,x))))) = z. f(f(f(x,f(x,z)),x),f(z,f(z,f(f(x,y),f(x,u))))) = z. f(f(x,f(x,f(z,x))),f(z,f(z,f(f(y,x),f(u,x))))) = z. f(f(x,f(x,f(z,x))),f(z,f(z,f(f(y,x),f(x,u))))) = z. f(f(x,f(x,f(z,x))),f(z,f(z,f(f(x,y),f(u,x))))) = z. f(f(x,f(x,f(z,x))),f(z,f(z,f(f(x,y),f(x,u))))) = z. f(f(x,f(x,f(x,z))),f(z,f(z,f(f(y,x),f(u,x))))) = z. f(f(x,f(x,f(x,z))),f(z,f(z,f(f(y,x),f(x,u))))) = z. f(f(x,f(x,f(x,z))),f(z,f(z,f(f(x,y),f(u,x))))) = z. f(f(x,f(x,f(x,z))),f(z,f(z,f(f(x,y),f(x,u))))) = z. f(f(f(f(f(x,z),y),y),z),f(f(f(u,z),f(x,z)),x)) = z. f(f(f(f(f(x,z),y),y),z),f(f(f(z,u),f(x,z)),x)) = z. f(f(f(f(f(x,z),y),y),z),f(f(f(x,z),f(u,z)),x)) = z. f(f(f(f(f(x,z),y),y),z),f(x,f(f(u,z),f(z,x)))) = z. f(f(f(f(f(x,z),y),y),z),f(x,f(f(z,u),f(z,x)))) = z. f(f(f(f(f(x,z),y),y),z),f(x,f(f(z,x),f(z,u)))) = z. f(f(f(f(f(x,z),y),y),z),f(x,f(f(x,z),f(z,u)))) = z. f(f(f(f(f(x,z),y),y),z),f(x,f(f(z,z),f(z,u)))) = z. f(f(f(f(x,f(z,y)),x),z),f(f(f(u,z),f(y,z)),y)) = z. f(f(f(f(x,f(z,y)),x),z),f(f(f(z,u),f(y,z)),y)) = z. f(f(f(f(x,f(z,y)),x),z),f(f(f(y,z),f(u,z)),y)) = z. f(f(f(f(x,f(y,z)),x),z),f(f(f(u,z),f(y,z)),y)) = z. f(f(f(f(x,f(y,z)),x),z),f(f(f(z,u),f(y,z)),y)) = z. f(f(f(f(x,f(y,z)),x),z),f(f(f(y,z),f(u,z)),y)) = z. f(f(f(f(x,f(z,y)),x),z),f(y,f(f(u,z),f(z,y)))) = z. f(f(f(f(x,f(z,y)),x),z),f(y,f(f(z,u),f(z,y)))) = z. f(f(f(f(x,f(z,y)),x),z),f(y,f(f(z,y),f(z,u)))) = z. f(f(f(f(x,f(z,y)),x),z),f(y,f(f(y,z),f(z,u)))) = z. f(f(f(f(x,f(y,z)),x),z),f(y,f(f(u,z),f(z,y)))) = z. f(f(f(f(x,f(y,z)),x),z),f(y,f(f(z,u),f(z,y)))) = z. f(f(f(f(x,f(y,z)),x),z),f(y,f(f(z,y),f(z,u)))) = z. f(f(f(f(x,f(y,z)),x),z),f(y,f(f(y,z),f(z,u)))) = z. f(f(f(f(x,f(z,y)),x),z),f(y,f(f(z,z),f(z,u)))) = z. f(f(f(f(x,f(y,z)),x),z),f(y,f(f(z,z),f(z,u)))) = z. f(f(f(f(x,z),f(z,y)),y),f(z,f(f(f(z,y),u),u))) = z. f(f(f(f(x,z),f(z,y)),y),f(z,f(f(f(y,z),u),u))) = z. f(f(f(f(x,z),f(z,y)),x),f(z,f(f(f(z,x),u),u))) = z. f(f(f(f(x,z),f(z,y)),x),f(z,f(f(f(x,z),u),u))) = z. f(f(f(f(x,z),f(y,z)),y),f(z,f(f(f(z,y),u),u))) = z. f(f(f(f(x,z),f(y,z)),y),f(z,f(f(f(y,z),u),u))) = z. f(f(f(f(x,z),f(y,z)),x),f(z,f(f(f(z,x),u),u))) = z. f(f(f(f(x,z),f(y,z)),x),f(z,f(f(f(x,z),u),u))) = z. f(f(f(f(x,z),f(z,z)),y),f(z,f(f(f(z,y),u),u))) = z. f(f(f(f(x,z),f(z,z)),y),f(z,f(f(f(y,z),u),u))) = z. f(f(f(f(x,z),f(z,y)),y),f(z,f(f(u,f(z,y)),u))) = z. f(f(f(f(x,z),f(z,y)),y),f(z,f(f(u,f(y,z)),u))) = z. f(f(f(f(x,z),f(z,y)),x),f(z,f(f(u,f(z,x)),u))) = z. f(f(f(f(x,z),f(z,y)),x),f(z,f(f(u,f(x,z)),u))) = z. f(f(f(f(x,z),f(y,z)),y),f(z,f(f(u,f(z,y)),u))) = z. f(f(f(f(x,z),f(y,z)),y),f(z,f(f(u,f(y,z)),u))) = z. f(f(f(f(x,z),f(y,z)),x),f(z,f(f(u,f(z,x)),u))) = z. f(f(f(f(x,z),f(y,z)),x),f(z,f(f(u,f(x,z)),u))) = z. f(f(f(f(x,z),f(z,z)),y),f(z,f(f(u,f(z,y)),u))) = z. f(f(f(f(x,z),f(z,z)),y),f(z,f(f(u,f(y,z)),u))) = z. f(f(f(f(x,z),f(z,y)),y),f(z,f(u,f(f(z,y),u)))) = z. f(f(f(f(x,z),f(z,y)),y),f(z,f(u,f(f(y,z),u)))) = z. f(f(f(f(x,z),f(z,y)),x),f(z,f(u,f(f(z,x),u)))) = z. f(f(f(f(x,z),f(z,y)),x),f(z,f(u,f(f(x,z),u)))) = z. f(f(f(f(x,z),f(y,z)),y),f(z,f(u,f(f(z,y),u)))) = z. f(f(f(f(x,z),f(y,z)),y),f(z,f(u,f(f(y,z),u)))) = z. f(f(f(f(x,z),f(y,z)),x),f(z,f(u,f(f(z,x),u)))) = z. f(f(f(f(x,z),f(y,z)),x),f(z,f(u,f(f(x,z),u)))) = z. f(f(f(f(x,z),f(z,z)),y),f(z,f(u,f(f(z,y),u)))) = z. f(f(f(f(x,z),f(z,z)),y),f(z,f(u,f(f(y,z),u)))) = z. f(f(f(f(x,z),f(z,y)),y),f(z,f(u,f(u,f(z,y))))) = z. f(f(f(f(x,z),f(z,y)),x),f(z,f(u,f(u,f(z,x))))) = z. f(f(f(f(x,z),f(y,z)),y),f(z,f(u,f(u,f(z,y))))) = z. f(f(f(f(x,z),f(y,z)),x),f(z,f(u,f(u,f(z,x))))) = z. f(f(f(f(x,z),f(z,z)),y),f(z,f(u,f(u,f(z,y))))) = z. f(f(f(x,f(f(z,y),x)),z),f(f(f(u,z),f(y,z)),y)) = z. f(f(f(x,f(f(z,y),x)),z),f(f(f(z,u),f(y,z)),y)) = z. f(f(f(x,f(f(z,y),x)),z),f(f(f(y,z),f(u,z)),y)) = z. f(f(f(x,f(f(y,z),x)),z),f(f(f(u,z),f(y,z)),y)) = z. f(f(f(x,f(f(y,z),x)),z),f(f(f(z,u),f(y,z)),y)) = z. f(f(f(x,f(f(y,z),x)),z),f(f(f(y,z),f(u,z)),y)) = z. f(f(f(x,f(f(z,y),x)),z),f(y,f(f(u,z),f(z,y)))) = z. f(f(f(x,f(f(z,y),x)),z),f(y,f(f(z,u),f(z,y)))) = z. f(f(f(x,f(f(z,y),x)),z),f(y,f(f(z,y),f(z,u)))) = z. f(f(f(x,f(f(z,y),x)),z),f(y,f(f(y,z),f(z,u)))) = z. f(f(f(x,f(f(y,z),x)),z),f(y,f(f(u,z),f(z,y)))) = z. f(f(f(x,f(f(y,z),x)),z),f(y,f(f(z,u),f(z,y)))) = z. f(f(f(x,f(f(y,z),x)),z),f(y,f(f(z,y),f(z,u)))) = z. f(f(f(x,f(f(y,z),x)),z),f(y,f(f(y,z),f(z,u)))) = z. f(f(f(x,f(f(z,y),x)),z),f(y,f(f(z,z),f(z,u)))) = z. f(f(f(x,f(f(y,z),x)),z),f(y,f(f(z,z),f(z,u)))) = z. f(f(f(x,f(x,f(z,y))),z),f(f(f(u,z),f(y,z)),y)) = z. f(f(f(x,f(x,f(z,y))),z),f(f(f(z,u),f(y,z)),y)) = z. f(f(f(x,f(x,f(z,y))),z),f(f(f(y,z),f(u,z)),y)) = z. f(f(f(x,f(x,f(y,z))),z),f(f(f(u,z),f(y,z)),y)) = z. f(f(f(x,f(x,f(y,z))),z),f(f(f(z,u),f(y,z)),y)) = z. f(f(f(x,f(x,f(y,z))),z),f(f(f(y,z),f(u,z)),y)) = z. f(f(f(x,f(x,f(z,y))),z),f(y,f(f(u,z),f(z,y)))) = z. f(f(f(x,f(x,f(z,y))),z),f(y,f(f(z,u),f(z,y)))) = z. f(f(f(x,f(x,f(z,y))),z),f(y,f(f(z,y),f(z,u)))) = z. f(f(f(x,f(x,f(z,y))),z),f(y,f(f(y,z),f(z,u)))) = z. f(f(f(x,f(x,f(y,z))),z),f(y,f(f(u,z),f(z,y)))) = z. f(f(f(x,f(x,f(y,z))),z),f(y,f(f(z,u),f(z,y)))) = z. f(f(f(x,f(x,f(y,z))),z),f(y,f(f(z,y),f(z,u)))) = z. f(f(f(x,f(x,f(y,z))),z),f(y,f(f(y,z),f(z,u)))) = z. f(f(f(x,f(x,f(z,y))),z),f(y,f(f(z,z),f(z,u)))) = z. f(f(f(x,f(x,f(y,z))),z),f(y,f(f(z,z),f(z,u)))) = z. f(f(x,f(f(z,y),f(z,x))),f(z,f(f(f(z,x),u),u))) = z. f(f(x,f(f(z,y),f(z,x))),f(z,f(f(f(x,z),u),u))) = z. f(f(x,f(f(z,x),f(z,y))),f(z,f(f(f(z,x),u),u))) = z. f(f(x,f(f(z,x),f(z,y))),f(z,f(f(f(x,z),u),u))) = z. f(f(x,f(f(z,x),f(y,z))),f(z,f(f(f(z,x),u),u))) = z. f(f(x,f(f(z,x),f(y,z))),f(z,f(f(f(x,z),u),u))) = z. f(f(x,f(f(z,y),f(z,x))),f(z,f(f(u,f(z,x)),u))) = z. f(f(x,f(f(z,y),f(z,x))),f(z,f(f(u,f(x,z)),u))) = z. f(f(x,f(f(z,x),f(z,y))),f(z,f(f(u,f(z,x)),u))) = z. f(f(x,f(f(z,x),f(z,y))),f(z,f(f(u,f(x,z)),u))) = z. f(f(x,f(f(z,x),f(y,z))),f(z,f(f(u,f(z,x)),u))) = z. f(f(x,f(f(z,x),f(y,z))),f(z,f(f(u,f(x,z)),u))) = z. f(f(x,f(f(z,y),f(z,x))),f(z,f(u,f(f(z,x),u)))) = z. f(f(x,f(f(z,y),f(z,x))),f(z,f(u,f(f(x,z),u)))) = z. f(f(x,f(f(z,x),f(z,y))),f(z,f(u,f(f(z,x),u)))) = z. f(f(x,f(f(z,x),f(z,y))),f(z,f(u,f(f(x,z),u)))) = z. f(f(x,f(f(z,x),f(y,z))),f(z,f(u,f(f(z,x),u)))) = z. f(f(x,f(f(z,x),f(y,z))),f(z,f(u,f(f(x,z),u)))) = z. f(f(x,f(f(z,y),f(z,x))),f(z,f(u,f(u,f(z,x))))) = z. f(f(x,f(f(z,x),f(z,y))),f(z,f(u,f(u,f(z,x))))) = z. f(f(x,f(f(z,x),f(y,z))),f(z,f(u,f(u,f(z,x))))) = z. f(f(f(x,f(z,z)),z),f(f(f(f(y,u),u),f(y,z)),y)) = z. f(f(f(x,f(z,z)),z),f(f(f(f(y,u),y),f(u,z)),u)) = z. f(f(f(x,f(z,z)),z),f(f(f(y,f(u,y)),f(u,z)),u)) = z. f(f(f(x,f(z,z)),z),f(f(f(y,f(y,u)),f(u,z)),u)) = z. f(f(f(x,f(z,z)),z),f(f(f(y,z),f(f(u,y),u)),y)) = z. f(f(f(x,f(z,z)),z),f(f(f(y,z),f(f(y,u),u)),y)) = z. f(f(f(x,f(z,z)),z),f(f(f(y,z),f(u,f(u,y))),y)) = z. f(f(f(x,f(z,z)),z),f(f(f(y,z),f(u,f(y,u))),y)) = z. f(f(f(x,f(z,z)),z),f(y,f(f(f(u,y),u),f(z,y)))) = z. f(f(f(x,f(z,z)),z),f(y,f(f(f(y,u),u),f(z,y)))) = z. f(f(f(x,f(z,z)),z),f(y,f(f(u,f(u,y)),f(z,y)))) = z. f(f(f(x,f(z,z)),z),f(y,f(f(u,f(y,u)),f(z,y)))) = z. f(f(f(x,f(z,z)),z),f(y,f(f(z,y),f(f(u,y),u)))) = z. f(f(f(x,f(z,z)),z),f(y,f(f(z,y),f(f(y,u),u)))) = z. f(f(f(x,f(z,z)),z),f(y,f(f(y,z),f(f(u,y),u)))) = z. f(f(f(x,f(z,z)),z),f(y,f(f(y,z),f(f(y,u),u)))) = z. f(f(f(x,f(z,z)),z),f(y,f(f(z,y),f(u,f(u,y))))) = z. f(f(f(x,f(z,z)),z),f(y,f(f(z,y),f(u,f(y,u))))) = z. f(f(f(x,f(z,z)),z),f(y,f(f(y,z),f(u,f(u,y))))) = z. f(f(f(x,f(z,z)),z),f(y,f(f(y,z),f(u,f(y,u))))) = z. f(f(f(x,z),z),f(f(f(f(f(x,x),y),z),f(u,z)),x)) = z. f(f(f(x,z),z),f(f(f(f(y,f(x,x)),z),f(u,z)),x)) = z. f(f(f(x,z),z),f(f(f(z,y),f(f(f(x,x),u),z)),x)) = z. f(f(f(x,z),z),f(f(f(y,z),f(f(f(x,x),u),z)),x)) = z. f(f(f(x,z),z),f(f(f(z,y),f(f(u,f(x,x)),z)),x)) = z. f(f(f(x,z),z),f(f(f(y,z),f(f(u,f(x,x)),z)),x)) = z. f(f(f(x,z),z),f(f(f(z,y),f(x,z)),f(f(x,x),u))) = z. f(f(f(x,z),z),f(f(f(y,z),f(x,z)),f(f(x,x),u))) = z. f(f(f(x,z),z),f(f(f(x,z),f(y,z)),f(f(x,x),u))) = z. f(f(f(x,z),z),f(f(f(z,y),f(x,z)),f(f(z,z),u))) = z. f(f(f(x,z),z),f(f(f(y,z),f(x,z)),f(f(z,z),u))) = z. f(f(f(x,z),z),f(f(f(x,z),f(y,z)),f(f(z,z),u))) = z. f(f(f(x,z),z),f(f(f(z,y),f(x,z)),f(u,f(x,x)))) = z. f(f(f(x,z),z),f(f(f(y,z),f(x,z)),f(u,f(x,x)))) = z. f(f(f(x,z),z),f(f(f(x,z),f(y,z)),f(u,f(x,x)))) = z. f(f(f(x,z),z),f(f(f(x,x),y),f(f(u,z),f(z,x)))) = z. f(f(f(x,z),z),f(f(f(x,x),y),f(f(z,u),f(z,x)))) = z. f(f(f(x,z),z),f(f(f(x,x),y),f(f(z,x),f(z,u)))) = z. f(f(f(x,z),z),f(f(f(x,x),y),f(f(x,z),f(z,u)))) = z. f(f(f(x,z),z),f(f(f(z,z),y),f(f(u,z),f(z,x)))) = z. f(f(f(x,z),z),f(f(f(z,z),y),f(f(x,z),f(z,u)))) = z. f(f(f(x,z),z),f(f(y,f(x,x)),f(f(u,z),f(z,x)))) = z. f(f(f(x,z),z),f(f(y,f(x,x)),f(f(z,u),f(z,x)))) = z. f(f(f(x,z),z),f(f(y,f(x,x)),f(f(z,x),f(z,u)))) = z. f(f(f(x,z),z),f(f(y,f(x,x)),f(f(x,z),f(z,u)))) = z. f(f(f(x,z),z),f(x,f(f(f(f(x,x),y),z),f(z,u)))) = z. f(f(f(x,z),z),f(x,f(f(f(y,f(x,x)),z),f(z,u)))) = z. f(f(f(x,z),z),f(x,f(f(z,f(f(x,x),y)),f(z,u)))) = z. f(f(f(x,z),z),f(x,f(f(z,f(y,f(x,x))),f(z,u)))) = z. f(f(f(x,z),z),f(x,f(f(z,y),f(z,f(f(x,x),u))))) = z. f(f(f(x,z),z),f(x,f(f(y,z),f(z,f(f(x,x),u))))) = z. f(f(f(x,z),z),f(x,f(f(z,y),f(z,f(u,f(x,x)))))) = z. f(f(f(x,z),z),f(x,f(f(y,z),f(z,f(u,f(x,x)))))) = z. f(f(x,z),f(f(f(f(z,x),z),f(y,z)),f(f(z,z),u))) = z. f(f(x,z),f(f(f(f(x,z),z),f(y,z)),f(f(z,z),u))) = z. f(f(x,z),f(f(f(z,f(z,x)),f(y,z)),f(f(z,z),u))) = z. f(f(x,z),f(f(f(z,f(x,z)),f(y,z)),f(f(z,z),u))) = z. f(f(x,z),f(f(f(z,z),y),f(f(f(z,x),z),f(z,u)))) = z. f(f(x,z),f(f(f(z,z),y),f(f(f(x,z),z),f(z,u)))) = z. f(f(x,z),f(f(f(z,z),y),f(f(z,f(z,x)),f(z,u)))) = z. f(f(x,z),f(f(f(z,z),y),f(f(z,f(x,z)),f(z,u)))) = z. f(f(x,z),f(f(f(z,z),y),f(f(z,u),f(z,f(z,x))))) = z. ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/Makefile ================================================ OUTPUTS = qg.out3 qg.iso3 MOL-cand.238 OL.8 OL.8.out OL.6 BA-sheffer.out \ lattice-sax.rewritten meet-join-equations.out mjc01s-equations.out \ OL.8.upper-covers test: $(MAKE) backup ./run-all clean: /bin/rm -rf $(OUTPUTS) backup backup: /bin/rm -rf backup mkdir backup && mv $(OUTPUTS) backup ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/OL.in ================================================ op(400, infix, ^). op(400, infix, v). set(print_models_portable). assign(max_models, -1). % This means there is no limit. clauses(theory). x v y = y v x. (x v y) v z = x v (y v z). x v (x ^ y) = x. x ^ y = y ^ x. (x ^ y) ^ z = x ^ (y ^ z). x ^ (x v y) = x. % Add the following pair for complemented lattice x v c(x) = 1. x ^ c(x) = 0. % Add the following for ortholattice c(x ^ y) = c(x) v c(y). c(x v y) = c(x) ^ c(y). c(c(x)) = x. % definition of Sheffer Stroke f(x,y) = c(x) v c(y). end_of_list. ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/README ================================================ This directory has examples of running the auxiliary programs described in the MACE4 manual. See the files run-all and index.html. ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/backup.Jan14/BA-sheffer.out ================================================ f(f(x,x),f(x,y)) = x. % 1 2 f(f(x,x),f(y,x)) = x. % 1 2 f(f(x,f(x,x)),f(y,y)) = y. % 1 2 f(f(f(x,x),x),f(y,y)) = y. % 1 2 f(f(x,f(y,z)),f(x,z)) = x. % f(f(x,f(y,z)),f(z,x)) = x. % f(f(x,f(y,z)),f(x,y)) = x. % f(f(x,f(y,z)),f(y,x)) = x. % f(f(f(x,y),z),f(z,y)) = z. % f(f(f(x,y),z),f(y,z)) = z. % f(f(f(x,y),z),f(z,x)) = z. % f(f(f(x,y),z),f(x,z)) = z. % f(f(x,f(y,f(y,y))),f(x,z)) = x. % 1 2 f(f(x,f(f(y,y),y)),f(x,z)) = x. % 1 2 f(f(x,f(y,f(y,y))),f(z,x)) = x. % 1 2 f(f(x,f(f(y,y),y)),f(z,x)) = x. % 1 2 f(f(f(x,f(x,x)),y),f(y,z)) = y. % 1 2 f(f(f(f(x,x),x),y),f(y,z)) = y. % 1 2 f(f(f(x,f(x,x)),y),f(z,y)) = y. % 1 2 f(f(f(f(x,x),x),y),f(z,y)) = y. % 1 2 f(f(x,f(f(x,y),y)),f(x,z)) = x. % f(f(x,f(f(x,y),y)),f(z,x)) = x. % f(f(f(f(x,y),z),z),f(x,x)) = x. % f(f(x,f(y,f(x,y))),f(x,z)) = x. % f(f(x,f(f(y,x),y)),f(x,z)) = x. % f(f(x,f(y,f(x,y))),f(z,x)) = x. % f(f(x,f(f(y,x),y)),f(z,x)) = x. % f(f(x,f(y,f(y,x))),f(x,z)) = x. % f(f(f(f(x,y),y),x),f(x,z)) = x. % f(f(x,f(y,f(y,x))),f(z,x)) = x. % f(f(f(f(x,y),y),x),f(z,x)) = x. % f(f(f(f(x,y),z),z),f(y,y)) = y. % f(f(x,f(f(y,z),x)),f(y,y)) = y. % f(f(f(x,f(y,z)),x),f(y,y)) = y. % f(f(f(x,f(y,x)),y),f(y,z)) = y. % f(f(f(f(x,y),x),y),f(y,z)) = y. % f(f(f(x,f(y,x)),y),f(z,y)) = y. % f(f(f(f(x,y),x),y),f(z,y)) = y. % f(f(x,f(f(y,z),x)),f(z,z)) = z. % f(f(f(x,f(y,z)),x),f(z,z)) = z. % f(f(f(x,f(x,y)),y),f(y,z)) = y. % f(f(f(x,f(x,y)),y),f(z,y)) = y. % f(f(x,f(x,f(y,z))),f(y,y)) = y. % f(f(x,f(x,f(y,z))),f(z,z)) = z. % f(f(x,f(f(x,x),y)),f(x,z)) = x. % 1 2 f(f(x,f(f(x,x),y)),f(z,x)) = x. % 1 2 f(f(f(f(x,x),y),x),f(x,z)) = x. % 1 2 f(f(f(f(x,x),y),x),f(z,x)) = x. % 1 2 f(f(x,f(y,f(x,x))),f(x,z)) = x. % 1 2 f(f(x,f(y,f(x,x))),f(z,x)) = x. % 1 2 f(f(f(x,f(y,y)),y),f(y,z)) = y. % 1 2 f(f(f(x,f(y,y)),y),f(z,y)) = y. % 1 2 f(f(x,f(y,f(y,y))),f(z,f(z,z))) = x. % 1 2 f(f(x,f(f(y,y),y)),f(z,f(z,z))) = x. % 1 2 f(f(x,f(y,f(y,y))),f(f(z,z),z)) = x. % 1 2 f(f(x,f(f(y,y),y)),f(f(z,z),z)) = x. % 1 2 f(f(f(x,f(x,x)),y),f(z,f(z,z))) = y. % 1 2 f(f(f(f(x,x),x),y),f(z,f(z,z))) = y. % 1 2 f(f(f(x,f(x,x)),y),f(f(z,z),z)) = y. % 1 2 f(f(f(f(x,x),x),y),f(f(z,z),z)) = y. % 1 2 f(f(f(f(x,y),y),y),f(x,f(z,y))) = x. % f(f(f(f(x,y),y),y),f(x,f(y,z))) = x. % f(f(f(f(x,y),y),y),f(f(z,y),x)) = x. % f(f(f(f(x,y),y),y),f(f(y,z),x)) = x. % f(f(x,f(f(y,x),x)),f(y,f(z,x))) = y. % f(f(f(x,f(y,x)),x),f(y,f(z,x))) = y. % f(f(f(f(x,y),x),x),f(y,f(z,x))) = y. % f(f(x,f(f(y,x),x)),f(y,f(x,z))) = y. % f(f(f(x,f(y,x)),x),f(y,f(x,z))) = y. % f(f(f(f(x,y),x),x),f(y,f(x,z))) = y. % f(f(x,f(f(y,x),x)),f(f(z,x),y)) = y. % f(f(f(x,f(y,x)),x),f(f(z,x),y)) = y. % f(f(f(f(x,y),x),x),f(f(z,x),y)) = y. % f(f(x,f(f(y,x),x)),f(f(x,z),y)) = y. % f(f(f(x,f(y,x)),x),f(f(x,z),y)) = y. % f(f(f(f(x,y),x),x),f(f(x,z),y)) = y. % f(f(x,f(x,f(y,x))),f(y,f(z,x))) = y. % f(f(x,f(f(x,y),x)),f(y,f(z,x))) = y. % f(f(f(x,f(x,y)),x),f(y,f(z,x))) = y. % f(f(x,f(x,f(y,x))),f(y,f(x,z))) = y. % f(f(x,f(f(x,y),x)),f(y,f(x,z))) = y. % f(f(f(x,f(x,y)),x),f(y,f(x,z))) = y. % f(f(x,f(x,f(y,x))),f(f(z,x),y)) = y. % f(f(x,f(f(x,y),x)),f(f(z,x),y)) = y. % f(f(f(x,f(x,y)),x),f(f(z,x),y)) = y. % f(f(x,f(x,f(y,x))),f(f(x,z),y)) = y. % f(f(x,f(f(x,y),x)),f(f(x,z),y)) = y. % f(f(f(x,f(x,y)),x),f(f(x,z),y)) = y. % f(f(x,f(x,f(x,y))),f(y,f(z,x))) = y. % f(f(x,f(x,f(x,y))),f(y,f(x,z))) = y. % f(f(x,f(x,f(x,y))),f(f(z,x),y)) = y. % f(f(x,f(x,f(x,y))),f(f(x,z),y)) = y. % f(f(x,f(f(x,y),y)),f(z,f(z,z))) = x. % f(f(x,f(f(x,y),y)),f(f(z,z),z)) = x. % f(f(x,f(y,f(x,y))),f(z,f(z,z))) = x. % f(f(x,f(f(y,x),y)),f(z,f(z,z))) = x. % f(f(x,f(y,f(x,y))),f(f(z,z),z)) = x. % f(f(x,f(f(y,x),y)),f(f(z,z),z)) = x. % f(f(x,f(y,f(y,x))),f(z,f(z,z))) = x. % f(f(f(f(x,y),y),x),f(z,f(z,z))) = x. % f(f(x,f(y,f(y,x))),f(f(z,z),z)) = x. % f(f(f(f(x,y),y),x),f(f(z,z),z)) = x. % f(f(f(f(x,y),z),z),f(x,f(y,z))) = x. % f(f(f(f(x,y),z),z),f(x,f(z,y))) = x. % f(f(f(f(x,y),z),z),f(f(y,z),x)) = x. % f(f(f(f(x,y),z),z),f(f(z,y),x)) = x. % f(f(f(x,f(y,x)),y),f(z,f(z,z))) = y. % f(f(f(f(x,y),x),y),f(z,f(z,z))) = y. % f(f(f(x,f(y,x)),y),f(f(z,z),z)) = y. % f(f(f(f(x,y),x),y),f(f(z,z),z)) = y. % f(f(f(f(x,y),z),z),f(y,f(x,z))) = y. % f(f(f(f(x,y),z),z),f(y,f(z,x))) = y. % f(f(f(f(x,y),z),z),f(f(x,z),y)) = y. % f(f(f(f(x,y),z),z),f(f(z,x),y)) = y. % f(f(f(x,f(x,y)),y),f(z,f(z,z))) = y. % f(f(f(x,f(x,y)),y),f(f(z,z),z)) = y. % f(f(x,f(f(y,z),x)),f(y,f(z,x))) = y. % f(f(f(x,f(y,z)),x),f(y,f(z,x))) = y. % f(f(x,f(f(y,z),x)),f(y,f(x,z))) = y. % f(f(f(x,f(y,z)),x),f(y,f(x,z))) = y. % f(f(x,f(f(y,z),x)),f(f(z,x),y)) = y. % f(f(f(x,f(y,z)),x),f(f(z,x),y)) = y. % f(f(x,f(f(y,z),x)),f(f(x,z),y)) = y. % f(f(f(x,f(y,z)),x),f(f(x,z),y)) = y. % f(f(x,f(f(y,z),x)),f(z,f(y,x))) = z. % f(f(f(x,f(y,z)),x),f(z,f(y,x))) = z. % f(f(x,f(f(y,z),x)),f(z,f(x,y))) = z. % f(f(f(x,f(y,z)),x),f(z,f(x,y))) = z. % f(f(x,f(f(y,z),x)),f(f(y,x),z)) = z. % f(f(f(x,f(y,z)),x),f(f(y,x),z)) = z. % f(f(x,f(f(y,z),x)),f(f(x,y),z)) = z. % f(f(f(x,f(y,z)),x),f(f(x,y),z)) = z. % f(f(x,f(x,f(y,z))),f(y,f(z,x))) = y. % f(f(x,f(x,f(y,z))),f(y,f(x,z))) = y. % f(f(x,f(x,f(y,z))),f(f(z,x),y)) = y. % f(f(x,f(x,f(y,z))),f(f(x,z),y)) = y. % f(f(x,f(x,f(y,z))),f(z,f(y,x))) = z. % f(f(x,f(x,f(y,z))),f(z,f(x,y))) = z. % f(f(x,f(x,f(y,z))),f(f(y,x),z)) = z. % f(f(x,f(x,f(y,z))),f(f(x,y),z)) = z. % f(f(x,f(f(x,x),y)),f(z,f(z,z))) = x. % 1 2 f(f(x,f(f(x,x),y)),f(f(z,z),z)) = x. % 1 2 f(f(f(f(x,x),y),x),f(z,f(z,z))) = x. % 1 2 f(f(f(f(x,x),y),x),f(f(z,z),z)) = x. % 1 2 f(f(f(f(x,x),y),y),f(x,f(z,y))) = x. % f(f(f(f(x,x),y),y),f(x,f(y,z))) = x. % f(f(f(f(x,x),y),y),f(f(z,y),x)) = x. % f(f(f(f(x,x),y),y),f(f(y,z),x)) = x. % f(f(x,f(y,f(x,x))),f(z,f(z,z))) = x. % 1 2 f(f(x,f(y,f(x,x))),f(f(z,z),z)) = x. % 1 2 f(f(f(x,f(y,y)),y),f(z,f(z,z))) = y. % 1 2 f(f(f(x,f(y,y)),y),f(f(z,z),z)) = y. % 1 2 f(f(x,f(f(y,y),x)),f(y,f(z,x))) = y. % f(f(f(x,f(y,y)),x),f(y,f(z,x))) = y. % f(f(x,f(f(y,y),x)),f(y,f(x,z))) = y. % f(f(f(x,f(y,y)),x),f(y,f(x,z))) = y. % f(f(x,f(f(y,y),x)),f(f(z,x),y)) = y. % f(f(f(x,f(y,y)),x),f(f(z,x),y)) = y. % f(f(x,f(f(y,y),x)),f(f(x,z),y)) = y. % f(f(f(x,f(y,y)),x),f(f(x,z),y)) = y. % f(f(x,f(x,f(y,y))),f(y,f(z,x))) = y. % f(f(x,f(x,f(y,y))),f(y,f(x,z))) = y. % f(f(x,f(x,f(y,y))),f(f(z,x),y)) = y. % f(f(x,f(x,f(y,y))),f(f(x,z),y)) = y. % f(f(x,f(y,f(z,z))),f(x,f(u,z))) = x. % f(f(x,f(y,f(z,z))),f(x,f(z,u))) = x. % f(f(x,f(y,f(z,z))),f(f(u,z),x)) = x. % f(f(x,f(y,f(z,z))),f(f(z,u),x)) = x. % f(f(x,f(f(y,y),z)),f(x,f(u,y))) = x. % f(f(x,f(f(y,y),z)),f(x,f(y,u))) = x. % f(f(x,f(f(y,y),z)),f(f(u,y),x)) = x. % f(f(x,f(f(y,y),z)),f(f(y,u),x)) = x. % f(f(f(x,f(y,y)),z),f(z,f(u,y))) = z. % f(f(f(x,f(y,y)),z),f(z,f(y,u))) = z. % f(f(f(x,f(y,y)),z),f(f(u,y),z)) = z. % f(f(f(x,f(y,y)),z),f(f(y,u),z)) = z. % f(f(f(f(x,x),y),z),f(z,f(u,x))) = z. % f(f(f(f(x,x),y),z),f(z,f(x,u))) = z. % f(f(f(f(x,x),y),z),f(f(u,x),z)) = z. % f(f(f(f(x,x),y),z),f(f(x,u),z)) = z. % f(f(x,f(y,f(z,u))),f(x,f(u,z))) = x. % f(f(x,f(y,f(z,u))),f(f(u,z),x)) = x. % f(f(x,f(y,f(y,z))),f(x,f(u,z))) = x. % f(f(x,f(y,f(y,z))),f(x,f(z,u))) = x. % f(f(x,f(y,f(y,z))),f(f(u,z),x)) = x. % f(f(x,f(y,f(y,z))),f(f(z,u),x)) = x. % f(f(x,f(f(y,z),u)),f(x,f(z,y))) = x. % f(f(x,f(f(y,z),u)),f(f(z,y),x)) = x. % f(f(x,f(y,f(z,y))),f(x,f(u,z))) = x. % f(f(x,f(f(y,z),y)),f(x,f(u,z))) = x. % f(f(x,f(y,f(z,y))),f(x,f(z,u))) = x. % f(f(x,f(f(y,z),y)),f(x,f(z,u))) = x. % f(f(x,f(y,f(z,y))),f(f(u,z),x)) = x. % f(f(x,f(f(y,z),y)),f(f(u,z),x)) = x. % f(f(x,f(y,f(z,y))),f(f(z,u),x)) = x. % f(f(x,f(f(y,z),y)),f(f(z,u),x)) = x. % f(f(x,f(f(y,z),z)),f(x,f(u,y))) = x. % f(f(x,f(f(y,z),z)),f(x,f(y,u))) = x. % f(f(x,f(f(y,z),z)),f(f(u,y),x)) = x. % f(f(x,f(f(y,z),z)),f(f(y,u),x)) = x. % f(f(f(x,f(y,z)),u),f(u,f(z,y))) = u. % f(f(f(x,f(y,z)),u),f(f(z,y),u)) = u. % f(f(f(x,f(x,y)),z),f(z,f(u,y))) = z. % f(f(f(x,f(x,y)),z),f(z,f(y,u))) = z. % f(f(f(x,f(x,y)),z),f(f(u,y),z)) = z. % f(f(f(x,f(x,y)),z),f(f(y,u),z)) = z. % f(f(f(f(x,y),z),u),f(u,f(y,x))) = u. % f(f(f(f(x,y),z),u),f(f(y,x),u)) = u. % f(f(f(x,f(y,x)),z),f(z,f(u,y))) = z. % f(f(f(f(x,y),x),z),f(z,f(u,y))) = z. % f(f(f(x,f(y,x)),z),f(z,f(y,u))) = z. % f(f(f(f(x,y),x),z),f(z,f(y,u))) = z. % f(f(f(x,f(y,x)),z),f(f(u,y),z)) = z. % f(f(f(f(x,y),x),z),f(f(u,y),z)) = z. % f(f(f(x,f(y,x)),z),f(f(y,u),z)) = z. % f(f(f(f(x,y),x),z),f(f(y,u),z)) = z. % f(f(f(f(x,y),y),z),f(z,f(u,x))) = z. % f(f(f(f(x,y),y),z),f(z,f(x,u))) = z. % f(f(f(f(x,y),y),z),f(f(u,x),z)) = z. % f(f(f(f(x,y),y),z),f(f(x,u),z)) = z. % f(f(x,f(f(x,y),z)),f(x,f(u,y))) = x. % f(f(x,f(f(x,y),z)),f(x,f(y,u))) = x. % f(f(x,f(f(x,y),z)),f(f(u,y),x)) = x. % f(f(x,f(f(x,y),z)),f(f(y,u),x)) = x. % f(f(x,f(y,f(x,z))),f(x,f(u,z))) = x. % f(f(x,f(y,f(x,z))),f(x,f(z,u))) = x. % f(f(x,f(y,f(x,z))),f(f(u,z),x)) = x. % f(f(x,f(y,f(x,z))),f(f(z,u),x)) = x. % f(f(x,f(y,f(z,x))),f(x,f(u,z))) = x. % f(f(x,f(y,f(z,x))),f(x,f(z,u))) = x. % f(f(x,f(y,f(z,x))),f(f(u,z),x)) = x. % f(f(x,f(y,f(z,x))),f(f(z,u),x)) = x. % f(f(x,f(f(y,x),z)),f(x,f(u,y))) = x. % f(f(x,f(f(y,x),z)),f(x,f(y,u))) = x. % f(f(x,f(f(y,x),z)),f(f(u,y),x)) = x. % f(f(x,f(f(y,x),z)),f(f(y,u),x)) = x. % f(f(f(f(x,y),z),x),f(x,f(u,y))) = x. % f(f(f(f(x,y),z),x),f(x,f(y,u))) = x. % f(f(f(f(x,y),z),x),f(f(u,y),x)) = x. % f(f(f(f(x,y),z),x),f(f(y,u),x)) = x. % f(f(f(x,f(y,z)),y),f(y,f(u,z))) = y. % f(f(f(x,f(y,z)),y),f(y,f(z,u))) = y. % f(f(f(x,f(y,z)),y),f(f(u,z),y)) = y. % f(f(f(x,f(y,z)),y),f(f(z,u),y)) = y. % f(f(f(x,f(y,z)),z),f(z,f(u,y))) = z. % f(f(f(x,f(y,z)),z),f(z,f(y,u))) = z. % f(f(f(x,f(y,z)),z),f(f(u,y),z)) = z. % f(f(f(x,f(y,z)),z),f(f(y,u),z)) = z. % f(f(f(f(x,y),z),y),f(y,f(u,x))) = y. % f(f(f(f(x,y),z),y),f(y,f(x,u))) = y. % f(f(f(f(x,y),z),y),f(f(u,x),y)) = y. % f(f(f(f(x,y),z),y),f(f(x,u),y)) = y. % f(f(f(f(x,f(y,y)),y),y),f(z,z)) = z. % 1 2 f(f(x,f(f(y,f(x,x)),x)),f(z,z)) = z. % 1 2 f(f(f(x,f(y,f(x,x))),x),f(z,z)) = z. % 1 2 f(f(x,f(x,f(y,f(x,x)))),f(z,z)) = z. % 1 2 f(f(f(f(f(x,x),y),x),x),f(z,z)) = z. % 1 2 f(f(x,f(f(f(x,x),y),x)),f(z,z)) = z. % 1 2 f(f(f(x,f(f(x,x),y)),x),f(z,z)) = z. % 1 2 f(f(x,f(x,f(f(x,x),y))),f(z,z)) = z. % 1 2 f(f(x,f(x,f(y,f(y,y)))),f(z,z)) = z. % 1 2 f(f(x,f(x,f(f(y,y),y))),f(z,z)) = z. % 1 2 f(f(f(f(x,f(x,y)),y),y),f(z,z)) = z. % 2 f(f(f(f(x,f(y,x)),y),y),f(z,z)) = z. % 2 f(f(f(f(f(x,y),x),y),y),f(z,z)) = z. % 2 f(f(x,f(f(y,f(y,y)),x)),f(z,z)) = z. % 1 2 f(f(x,f(f(f(y,y),y),x)),f(z,z)) = z. % 1 2 f(f(f(x,f(y,f(y,y))),x),f(z,z)) = z. % 1 2 f(f(f(x,f(f(y,y),y)),x),f(z,z)) = z. % 1 2 f(f(x,f(f(y,f(y,x)),x)),f(z,z)) = z. % 2 f(f(f(x,f(y,f(y,x))),x),f(z,z)) = z. % 2 f(f(f(f(f(x,y),y),x),x),f(z,z)) = z. % 2 f(f(x,f(f(y,f(x,y)),x)),f(z,z)) = z. % 2 f(f(x,f(f(f(y,x),y),x)),f(z,z)) = z. % 2 f(f(f(x,f(y,f(x,y))),x),f(z,z)) = z. % 2 f(f(f(x,f(f(y,x),y)),x),f(z,z)) = z. % 2 f(f(x,f(x,f(y,f(y,x)))),f(z,z)) = z. % 2 f(f(x,f(f(f(x,y),y),x)),f(z,z)) = z. % 2 f(f(f(x,f(f(x,y),y)),x),f(z,z)) = z. % 2 f(f(x,f(x,f(y,f(x,y)))),f(z,z)) = z. % 2 f(f(x,f(x,f(f(y,x),y))),f(z,z)) = z. % 2 f(f(x,f(x,f(f(x,y),y))),f(z,z)) = z. % 2 f(f(f(f(x,f(x,x)),y),y),f(z,z)) = z. % 1 2 f(f(f(f(f(x,x),x),y),y),f(z,z)) = z. % 1 2 f(f(x,f(f(f(y,z),u),u)),f(x,z)) = x. % f(f(x,f(f(f(y,z),u),u)),f(z,x)) = x. % f(f(x,f(y,f(f(z,u),y))),f(x,u)) = x. % f(f(x,f(f(y,f(z,u)),y)),f(x,u)) = x. % f(f(x,f(y,f(f(z,u),y))),f(u,x)) = x. % f(f(x,f(f(y,f(z,u)),y)),f(u,x)) = x. % f(f(x,f(f(f(y,z),u),u)),f(x,y)) = x. % f(f(x,f(f(f(y,z),u),u)),f(y,x)) = x. % f(f(x,f(y,f(y,f(z,u)))),f(x,u)) = x. % f(f(x,f(y,f(y,f(z,u)))),f(u,x)) = x. % f(f(x,f(y,f(y,f(z,u)))),f(x,z)) = x. % f(f(x,f(y,f(y,f(z,u)))),f(z,x)) = x. % f(f(x,f(y,f(f(z,u),y))),f(x,z)) = x. % f(f(x,f(f(y,f(z,u)),y)),f(x,z)) = x. % f(f(x,f(y,f(f(z,u),y))),f(z,x)) = x. % f(f(x,f(f(y,f(z,u)),y)),f(z,x)) = x. % f(f(f(f(f(x,y),z),z),u),f(u,y)) = u. % f(f(f(f(f(x,y),z),z),u),f(y,u)) = u. % f(f(f(x,f(f(y,z),x)),u),f(u,z)) = u. % f(f(f(f(x,f(y,z)),x),u),f(u,z)) = u. % f(f(f(x,f(f(y,z),x)),u),f(z,u)) = u. % f(f(f(f(x,f(y,z)),x),u),f(z,u)) = u. % f(f(f(f(f(x,y),z),z),u),f(u,x)) = u. % f(f(f(f(f(x,y),z),z),u),f(x,u)) = u. % f(f(f(x,f(x,f(y,z))),u),f(u,z)) = u. % f(f(f(x,f(x,f(y,z))),u),f(z,u)) = u. % f(f(f(x,f(x,f(y,z))),u),f(u,y)) = u. % f(f(f(x,f(x,f(y,z))),u),f(y,u)) = u. % f(f(f(x,f(f(y,z),x)),u),f(u,y)) = u. % f(f(f(f(x,f(y,z)),x),u),f(u,y)) = u. % f(f(f(x,f(f(y,z),x)),u),f(y,u)) = u. % f(f(f(f(x,f(y,z)),x),u),f(y,u)) = u. % f(f(x,f(f(x,f(y,z)),u)),f(x,z)) = x. % f(f(x,f(f(x,f(y,z)),u)),f(z,x)) = x. % f(f(x,f(f(x,f(y,z)),u)),f(x,y)) = x. % f(f(x,f(f(x,f(y,z)),u)),f(y,x)) = x. % f(f(x,f(y,f(x,f(z,u)))),f(x,u)) = x. % f(f(x,f(y,f(x,f(z,u)))),f(u,x)) = x. % f(f(x,f(y,f(x,f(z,u)))),f(x,z)) = x. % f(f(x,f(y,f(x,f(z,u)))),f(z,x)) = x. % f(f(x,f(y,f(f(z,u),x))),f(x,u)) = x. % f(f(x,f(y,f(f(z,u),x))),f(u,x)) = x. % f(f(x,f(f(f(y,z),x),u)),f(x,z)) = x. % f(f(x,f(f(f(y,z),x),u)),f(z,x)) = x. % f(f(x,f(y,f(f(z,u),x))),f(x,z)) = x. % f(f(f(f(x,f(y,z)),u),x),f(x,z)) = x. % f(f(x,f(y,f(f(z,u),x))),f(z,x)) = x. % f(f(f(f(x,f(y,z)),u),x),f(z,x)) = x. % f(f(x,f(f(f(y,z),x),u)),f(x,y)) = x. % f(f(x,f(f(f(y,z),x),u)),f(y,x)) = x. % f(f(f(f(x,f(y,z)),u),x),f(x,y)) = x. % f(f(f(f(x,f(y,z)),u),x),f(y,x)) = x. % f(f(f(x,f(y,f(z,u))),y),f(y,u)) = y. % f(f(f(x,f(y,f(z,u))),y),f(u,y)) = y. % f(f(f(x,f(y,f(z,u))),y),f(y,z)) = y. % f(f(f(x,f(y,f(z,u))),y),f(z,y)) = y. % f(f(f(x,f(f(y,z),u)),u),f(u,z)) = u. % f(f(f(x,f(f(y,z),u)),u),f(z,u)) = u. % f(f(f(f(f(x,y),z),u),z),f(z,y)) = z. % f(f(f(f(f(x,y),z),u),z),f(y,z)) = z. % f(f(f(x,f(f(y,z),u)),u),f(u,y)) = u. % f(f(f(x,f(f(y,z),u)),u),f(y,u)) = u. % f(f(f(f(f(x,y),z),u),z),f(z,x)) = z. % f(f(f(f(f(x,y),z),u),z),f(x,z)) = z. % f(f(f(f(x,y),f(x,z)),u),f(x,x)) = x. % 1 2 f(f(f(f(x,y),f(z,x)),u),f(x,x)) = x. % 1 2 f(f(f(f(x,y),f(y,z)),u),f(y,y)) = y. % 1 2 f(f(x,f(f(y,z),f(y,u))),f(y,y)) = y. % 1 2 f(f(f(f(x,y),f(z,y)),u),f(y,y)) = y. % 1 2 f(f(x,f(f(y,z),f(u,y))),f(y,y)) = y. % 1 2 f(f(x,f(f(y,z),f(z,u))),f(z,z)) = z. % 1 2 f(f(x,f(f(y,z),f(u,z))),f(z,z)) = z. % 1 2 % interp 1 models 60 clauses. % interp 2 models 76 clauses. ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/backup.Jan14/MOL-cand.238 ================================================ f(f(f(f(f(x,y),z),z),y),f(f(f(x,y),f(z,y)),x)) = y. f(f(f(f(f(x,y),z),z),y),f(x,f(f(y,x),f(y,z)))) = y. f(f(f(f(f(x,y),z),z),y),f(x,f(f(z,y),f(y,x)))) = y. f(f(f(f(f(x,y),z),z),y),f(x,f(f(x,y),f(y,z)))) = y. f(f(f(f(f(x,y),z),z),y),f(x,f(f(y,y),f(y,z)))) = y. f(f(f(f(f(x,y),z),z),y),f(x,f(f(y,y),f(y,x)))) = y. f(f(f(f(x,f(y,z)),x),y),f(f(f(z,y),f(z,y)),z)) = y. f(f(f(f(x,f(y,z)),x),z),f(f(f(y,z),f(y,z)),y)) = z. f(f(f(f(x,f(y,z)),x),y),f(f(f(z,y),f(x,y)),z)) = y. f(f(f(f(x,f(y,z)),x),y),f(f(f(x,y),f(z,y)),z)) = y. f(f(f(f(x,f(y,z)),x),z),f(f(f(y,z),f(x,z)),y)) = z. f(f(f(f(x,f(y,z)),x),z),f(f(f(x,z),f(y,z)),y)) = z. f(f(f(f(x,f(y,z)),x),y),f(z,f(f(z,y),f(y,z)))) = y. f(f(f(f(x,f(y,z)),x),y),f(z,f(f(y,z),f(y,x)))) = y. f(f(f(f(x,f(y,z)),x),z),f(y,f(f(z,y),f(z,x)))) = z. f(f(f(f(x,f(y,z)),x),z),f(y,f(f(z,x),f(z,y)))) = z. f(f(f(f(x,f(y,z)),x),z),f(y,f(f(x,z),f(z,y)))) = z. f(f(f(f(x,f(y,z)),x),y),f(z,f(f(y,y),f(y,x)))) = y. f(f(f(f(x,f(y,z)),x),z),f(y,f(f(z,z),f(z,y)))) = z. f(f(f(f(x,f(y,z)),x),z),f(y,f(f(z,z),f(z,x)))) = z. f(f(f(f(x,y),f(y,x)),x),f(y,f(f(f(y,x),z),z))) = y. f(f(f(f(x,y),f(y,z)),z),f(y,f(f(f(y,z),x),x))) = y. f(f(f(f(x,y),f(y,z)),z),f(y,f(f(f(z,y),x),x))) = y. f(f(f(f(x,y),f(y,z)),x),f(y,f(f(f(y,x),z),z))) = y. f(f(f(f(x,y),f(y,z)),x),f(y,f(f(f(x,y),z),z))) = y. f(f(f(f(x,y),f(z,y)),z),f(y,f(f(f(y,z),x),x))) = y. f(f(f(f(x,y),f(z,y)),z),f(y,f(f(f(z,y),x),x))) = y. f(f(f(f(x,y),f(z,y)),x),f(y,f(f(f(x,y),z),z))) = y. f(f(f(f(x,y),f(y,y)),z),f(y,f(f(f(y,z),x),x))) = y. f(f(f(f(x,y),f(y,y)),z),f(y,f(f(f(z,y),x),x))) = y. f(f(f(f(x,y),f(y,x)),x),f(y,f(f(z,f(y,x)),z))) = y. f(f(f(f(x,y),f(y,z)),z),f(y,f(f(x,f(z,y)),x))) = y. f(f(f(f(x,y),f(y,z)),x),f(y,f(f(z,f(x,y)),z))) = y. f(f(f(f(x,y),f(z,y)),z),f(y,f(f(x,f(y,z)),x))) = y. f(f(f(f(x,y),f(z,y)),z),f(y,f(f(x,f(z,y)),x))) = y. f(f(f(f(x,y),f(z,y)),x),f(y,f(f(z,f(y,x)),z))) = y. f(f(f(f(x,y),f(y,y)),z),f(y,f(f(x,f(y,z)),x))) = y. f(f(f(f(x,y),f(y,y)),z),f(y,f(f(x,f(z,y)),x))) = y. f(f(f(f(x,y),f(y,z)),x),f(y,f(z,f(f(y,x),z)))) = y. f(f(f(f(x,y),f(z,y)),z),f(y,f(x,f(f(y,z),x)))) = y. f(f(f(f(x,y),f(z,y)),z),f(y,f(x,f(f(z,y),x)))) = y. f(f(f(f(x,y),f(z,y)),x),f(y,f(z,f(f(y,x),z)))) = y. f(f(f(f(x,y),f(y,y)),z),f(y,f(x,f(f(y,z),x)))) = y. f(f(f(f(x,y),f(y,y)),z),f(y,f(x,f(f(z,y),x)))) = y. f(f(f(f(x,y),f(y,y)),x),f(y,f(z,f(f(y,x),z)))) = y. f(f(f(f(x,y),f(y,z)),x),f(y,f(z,f(z,f(y,x))))) = y. f(f(f(f(x,y),f(z,y)),z),f(y,f(x,f(x,f(y,z))))) = y. f(f(f(f(x,y),f(y,y)),z),f(y,f(x,f(x,f(y,z))))) = y. f(f(f(f(x,y),f(y,y)),x),f(y,f(z,f(z,f(y,x))))) = y. f(f(f(x,f(f(y,z),x)),y),f(f(f(z,y),f(z,y)),z)) = y. f(f(f(x,f(f(y,z),x)),z),f(f(f(y,z),f(y,z)),y)) = z. f(f(f(x,f(f(y,z),x)),y),f(f(f(x,y),f(z,y)),z)) = y. f(f(f(x,f(f(y,z),x)),z),f(f(f(y,z),f(x,z)),y)) = z. f(f(f(x,f(f(y,z),x)),z),f(f(f(x,z),f(y,z)),y)) = z. f(f(f(x,f(f(y,z),x)),z),f(y,f(f(y,z),f(z,y)))) = z. f(f(f(x,f(f(y,z),x)),y),f(z,f(f(y,z),f(y,x)))) = y. f(f(f(x,f(f(y,z),x)),y),f(z,f(f(z,y),f(y,x)))) = y. f(f(f(x,f(f(y,z),x)),y),f(z,f(f(x,y),f(y,z)))) = y. f(f(f(x,f(f(y,z),x)),z),f(y,f(f(z,y),f(z,x)))) = z. f(f(f(x,f(f(y,z),x)),z),f(y,f(f(z,x),f(z,y)))) = z. f(f(f(x,f(f(y,z),x)),y),f(z,f(f(y,y),f(y,x)))) = y. f(f(f(x,f(f(y,z),x)),z),f(y,f(f(z,z),f(z,x)))) = z. f(f(f(x,f(x,f(y,z))),y),f(f(f(z,y),f(x,y)),z)) = y. f(f(f(x,f(x,f(y,z))),z),f(f(f(y,z),f(x,z)),y)) = z. f(f(f(x,f(x,f(y,z))),z),f(f(f(x,z),f(y,z)),y)) = z. f(f(f(x,f(x,f(y,z))),z),f(y,f(f(y,z),f(z,y)))) = z. f(f(f(x,f(x,f(y,z))),y),f(z,f(f(y,z),f(y,x)))) = y. f(f(f(x,f(x,f(y,z))),y),f(z,f(f(y,x),f(y,z)))) = y. f(f(f(x,f(x,f(y,z))),y),f(z,f(f(z,y),f(y,x)))) = y. f(f(f(x,f(x,f(y,z))),y),f(z,f(f(x,y),f(y,z)))) = y. f(f(f(x,f(x,f(y,z))),z),f(y,f(f(z,y),f(z,x)))) = z. f(f(f(x,f(x,f(y,z))),z),f(y,f(f(x,z),f(z,y)))) = z. f(f(f(x,f(x,f(y,z))),y),f(z,f(f(y,y),f(y,x)))) = y. f(f(f(x,f(x,f(y,z))),z),f(y,f(f(z,z),f(z,x)))) = z. f(f(x,f(f(y,x),f(y,x))),f(y,f(f(f(x,y),z),z))) = y. f(f(x,f(f(y,z),f(y,x))),f(y,f(f(f(y,x),z),z))) = y. f(f(x,f(f(y,z),f(y,x))),f(y,f(f(f(x,y),z),z))) = y. f(f(x,f(f(y,x),f(y,z))),f(y,f(f(f(y,x),z),z))) = y. f(f(x,f(f(y,x),f(y,x))),f(y,f(f(z,f(y,x)),z))) = y. f(f(x,f(f(y,x),f(y,x))),f(y,f(f(z,f(x,y)),z))) = y. f(f(x,f(f(y,z),f(y,x))),f(y,f(f(z,f(y,x)),z))) = y. f(f(x,f(f(y,x),f(y,z))),f(y,f(f(z,f(y,x)),z))) = y. f(f(x,f(f(y,x),f(y,z))),f(y,f(f(z,f(x,y)),z))) = y. f(f(x,f(f(y,x),f(y,x))),f(y,f(z,f(f(y,x),z)))) = y. f(f(x,f(f(y,x),f(y,x))),f(y,f(z,f(f(x,y),z)))) = y. f(f(x,f(f(y,z),f(y,x))),f(y,f(z,f(f(y,x),z)))) = y. f(f(x,f(f(y,z),f(y,x))),f(y,f(z,f(f(x,y),z)))) = y. f(f(x,f(f(y,x),f(y,z))),f(y,f(z,f(f(y,x),z)))) = y. f(f(x,f(f(y,x),f(y,z))),f(y,f(z,f(f(x,y),z)))) = y. f(f(x,f(f(y,z),f(y,x))),f(y,f(z,f(z,f(y,x))))) = y. f(f(f(x,f(y,y)),y),f(f(f(f(z,x),x),f(z,y)),z)) = y. f(f(f(x,f(y,y)),y),f(f(f(f(x,z),x),f(z,y)),z)) = y. f(f(f(x,f(y,y)),y),f(f(f(x,f(z,x)),f(z,y)),z)) = y. f(f(f(x,f(y,y)),y),f(f(f(z,y),f(f(z,x),x)),z)) = y. f(f(f(x,f(y,y)),y),f(f(f(z,y),f(f(x,z),x)),z)) = y. f(f(f(x,f(y,y)),y),f(f(f(z,y),f(x,f(z,x))),z)) = y. f(f(f(x,f(y,y)),y),f(f(f(z,y),f(x,f(x,z))),z)) = y. f(f(f(x,f(y,y)),y),f(z,f(f(f(x,z),x),f(y,z)))) = y. f(f(f(x,f(y,y)),y),f(z,f(f(x,f(z,x)),f(y,z)))) = y. f(f(f(x,f(y,y)),y),f(z,f(f(x,f(x,z)),f(y,z)))) = y. f(f(f(x,f(y,y)),y),f(z,f(f(y,z),f(f(z,x),x)))) = y. f(f(f(x,f(y,y)),y),f(z,f(f(y,z),f(f(x,z),x)))) = y. f(f(f(x,f(y,y)),y),f(z,f(f(z,y),f(f(z,x),x)))) = y. f(f(f(x,f(y,y)),y),f(z,f(f(z,y),f(f(x,z),x)))) = y. f(f(f(x,f(y,y)),y),f(z,f(f(y,z),f(x,f(z,x))))) = y. f(f(f(x,f(y,y)),y),f(z,f(f(y,z),f(x,f(x,z))))) = y. f(f(f(f(f(x,y),z),z),y),f(f(f(u,y),f(x,y)),x)) = y. f(f(f(f(f(x,y),z),z),y),f(f(f(y,u),f(x,y)),x)) = y. f(f(f(f(f(x,y),z),z),y),f(f(f(x,y),f(u,y)),x)) = y. f(f(f(f(f(x,y),z),z),y),f(x,f(f(u,y),f(y,x)))) = y. f(f(f(f(f(x,y),z),z),y),f(x,f(f(y,u),f(y,x)))) = y. f(f(f(f(f(x,y),z),z),y),f(x,f(f(y,x),f(y,u)))) = y. f(f(f(f(f(x,y),z),z),y),f(x,f(f(x,y),f(y,u)))) = y. f(f(f(f(f(x,y),z),z),y),f(x,f(f(y,y),f(y,u)))) = y. f(f(f(f(x,f(y,z)),x),y),f(f(f(u,y),f(z,y)),z)) = y. f(f(f(f(x,f(y,z)),x),y),f(f(f(y,u),f(z,y)),z)) = y. f(f(f(f(x,f(y,z)),x),y),f(f(f(z,y),f(u,y)),z)) = y. f(f(f(f(x,f(y,z)),x),z),f(f(f(u,z),f(y,z)),y)) = z. f(f(f(f(x,f(y,z)),x),z),f(f(f(z,u),f(y,z)),y)) = z. f(f(f(f(x,f(y,z)),x),z),f(f(f(y,z),f(u,z)),y)) = z. f(f(f(f(x,f(y,z)),x),y),f(z,f(f(u,y),f(y,z)))) = y. f(f(f(f(x,f(y,z)),x),y),f(z,f(f(y,u),f(y,z)))) = y. f(f(f(f(x,f(y,z)),x),y),f(z,f(f(y,z),f(y,u)))) = y. f(f(f(f(x,f(y,z)),x),y),f(z,f(f(z,y),f(y,u)))) = y. f(f(f(f(x,f(y,z)),x),z),f(y,f(f(u,z),f(z,y)))) = z. f(f(f(f(x,f(y,z)),x),z),f(y,f(f(z,u),f(z,y)))) = z. f(f(f(f(x,f(y,z)),x),z),f(y,f(f(z,y),f(z,u)))) = z. f(f(f(f(x,f(y,z)),x),z),f(y,f(f(y,z),f(z,u)))) = z. f(f(f(f(x,f(y,z)),x),y),f(z,f(f(y,y),f(y,u)))) = y. f(f(f(f(x,f(y,z)),x),z),f(y,f(f(z,z),f(z,u)))) = z. f(f(f(f(x,y),f(y,z)),z),f(y,f(f(f(y,z),u),u))) = y. f(f(f(f(x,y),f(y,z)),z),f(y,f(f(f(z,y),u),u))) = y. f(f(f(f(x,y),f(y,z)),x),f(y,f(f(f(y,x),u),u))) = y. f(f(f(f(x,y),f(y,z)),x),f(y,f(f(f(x,y),u),u))) = y. f(f(f(f(x,y),f(z,y)),z),f(y,f(f(f(y,z),u),u))) = y. f(f(f(f(x,y),f(z,y)),z),f(y,f(f(f(z,y),u),u))) = y. f(f(f(f(x,y),f(z,y)),x),f(y,f(f(f(y,x),u),u))) = y. f(f(f(f(x,y),f(z,y)),x),f(y,f(f(f(x,y),u),u))) = y. f(f(f(f(x,y),f(y,y)),z),f(y,f(f(f(y,z),u),u))) = y. f(f(f(f(x,y),f(y,y)),z),f(y,f(f(f(z,y),u),u))) = y. f(f(f(f(x,y),f(y,z)),z),f(y,f(f(u,f(y,z)),u))) = y. f(f(f(f(x,y),f(y,z)),z),f(y,f(f(u,f(z,y)),u))) = y. f(f(f(f(x,y),f(y,z)),x),f(y,f(f(u,f(y,x)),u))) = y. f(f(f(f(x,y),f(y,z)),x),f(y,f(f(u,f(x,y)),u))) = y. f(f(f(f(x,y),f(z,y)),z),f(y,f(f(u,f(y,z)),u))) = y. f(f(f(f(x,y),f(z,y)),z),f(y,f(f(u,f(z,y)),u))) = y. f(f(f(f(x,y),f(z,y)),x),f(y,f(f(u,f(y,x)),u))) = y. f(f(f(f(x,y),f(z,y)),x),f(y,f(f(u,f(x,y)),u))) = y. f(f(f(f(x,y),f(y,y)),z),f(y,f(f(u,f(y,z)),u))) = y. f(f(f(f(x,y),f(y,y)),z),f(y,f(f(u,f(z,y)),u))) = y. f(f(f(f(x,y),f(y,z)),z),f(y,f(u,f(f(y,z),u)))) = y. f(f(f(f(x,y),f(y,z)),z),f(y,f(u,f(f(z,y),u)))) = y. f(f(f(f(x,y),f(y,z)),x),f(y,f(u,f(f(y,x),u)))) = y. f(f(f(f(x,y),f(y,z)),x),f(y,f(u,f(f(x,y),u)))) = y. f(f(f(f(x,y),f(z,y)),z),f(y,f(u,f(f(y,z),u)))) = y. f(f(f(f(x,y),f(z,y)),z),f(y,f(u,f(f(z,y),u)))) = y. f(f(f(f(x,y),f(z,y)),x),f(y,f(u,f(f(y,x),u)))) = y. f(f(f(f(x,y),f(z,y)),x),f(y,f(u,f(f(x,y),u)))) = y. f(f(f(f(x,y),f(y,y)),z),f(y,f(u,f(f(y,z),u)))) = y. f(f(f(f(x,y),f(y,y)),z),f(y,f(u,f(f(z,y),u)))) = y. f(f(f(f(x,y),f(y,z)),z),f(y,f(u,f(u,f(y,z))))) = y. f(f(f(f(x,y),f(y,z)),x),f(y,f(u,f(u,f(y,x))))) = y. f(f(f(f(x,y),f(z,y)),z),f(y,f(u,f(u,f(y,z))))) = y. f(f(f(f(x,y),f(z,y)),x),f(y,f(u,f(u,f(y,x))))) = y. f(f(f(f(x,y),f(y,y)),z),f(y,f(u,f(u,f(y,z))))) = y. f(f(f(x,f(f(y,z),x)),y),f(f(f(u,y),f(z,y)),z)) = y. f(f(f(x,f(f(y,z),x)),y),f(f(f(y,u),f(z,y)),z)) = y. f(f(f(x,f(f(y,z),x)),y),f(f(f(z,y),f(u,y)),z)) = y. f(f(f(x,f(f(y,z),x)),z),f(f(f(u,z),f(y,z)),y)) = z. f(f(f(x,f(f(y,z),x)),z),f(f(f(z,u),f(y,z)),y)) = z. f(f(f(x,f(f(y,z),x)),z),f(f(f(y,z),f(u,z)),y)) = z. f(f(f(x,f(f(y,z),x)),y),f(z,f(f(u,y),f(y,z)))) = y. f(f(f(x,f(f(y,z),x)),y),f(z,f(f(y,u),f(y,z)))) = y. f(f(f(x,f(f(y,z),x)),y),f(z,f(f(y,z),f(y,u)))) = y. f(f(f(x,f(f(y,z),x)),y),f(z,f(f(z,y),f(y,u)))) = y. f(f(f(x,f(f(y,z),x)),z),f(y,f(f(u,z),f(z,y)))) = z. f(f(f(x,f(f(y,z),x)),z),f(y,f(f(z,u),f(z,y)))) = z. f(f(f(x,f(f(y,z),x)),z),f(y,f(f(z,y),f(z,u)))) = z. f(f(f(x,f(f(y,z),x)),z),f(y,f(f(y,z),f(z,u)))) = z. f(f(f(x,f(f(y,z),x)),y),f(z,f(f(y,y),f(y,u)))) = y. f(f(f(x,f(f(y,z),x)),z),f(y,f(f(z,z),f(z,u)))) = z. f(f(f(x,f(x,f(y,z))),y),f(f(f(u,y),f(z,y)),z)) = y. f(f(f(x,f(x,f(y,z))),y),f(f(f(y,u),f(z,y)),z)) = y. f(f(f(x,f(x,f(y,z))),y),f(f(f(z,y),f(u,y)),z)) = y. f(f(f(x,f(x,f(y,z))),z),f(f(f(u,z),f(y,z)),y)) = z. f(f(f(x,f(x,f(y,z))),z),f(f(f(z,u),f(y,z)),y)) = z. f(f(f(x,f(x,f(y,z))),z),f(f(f(y,z),f(u,z)),y)) = z. f(f(f(x,f(x,f(y,z))),y),f(z,f(f(u,y),f(y,z)))) = y. f(f(f(x,f(x,f(y,z))),y),f(z,f(f(y,u),f(y,z)))) = y. f(f(f(x,f(x,f(y,z))),y),f(z,f(f(y,z),f(y,u)))) = y. f(f(f(x,f(x,f(y,z))),y),f(z,f(f(z,y),f(y,u)))) = y. f(f(f(x,f(x,f(y,z))),z),f(y,f(f(u,z),f(z,y)))) = z. f(f(f(x,f(x,f(y,z))),z),f(y,f(f(z,u),f(z,y)))) = z. f(f(f(x,f(x,f(y,z))),z),f(y,f(f(z,y),f(z,u)))) = z. f(f(f(x,f(x,f(y,z))),z),f(y,f(f(y,z),f(z,u)))) = z. f(f(f(x,f(x,f(y,z))),y),f(z,f(f(y,y),f(y,u)))) = y. f(f(f(x,f(x,f(y,z))),z),f(y,f(f(z,z),f(z,u)))) = z. f(f(x,f(f(y,z),f(y,x))),f(y,f(f(f(y,x),u),u))) = y. f(f(x,f(f(y,z),f(y,x))),f(y,f(f(f(x,y),u),u))) = y. f(f(x,f(f(y,x),f(y,z))),f(y,f(f(f(y,x),u),u))) = y. f(f(x,f(f(y,x),f(y,z))),f(y,f(f(f(x,y),u),u))) = y. f(f(x,f(f(y,x),f(z,y))),f(y,f(f(f(y,x),u),u))) = y. f(f(x,f(f(y,x),f(z,y))),f(y,f(f(f(x,y),u),u))) = y. f(f(x,f(f(y,z),f(y,x))),f(y,f(f(u,f(y,x)),u))) = y. f(f(x,f(f(y,z),f(y,x))),f(y,f(f(u,f(x,y)),u))) = y. f(f(x,f(f(y,x),f(y,z))),f(y,f(f(u,f(y,x)),u))) = y. f(f(x,f(f(y,x),f(y,z))),f(y,f(f(u,f(x,y)),u))) = y. f(f(x,f(f(y,x),f(z,y))),f(y,f(f(u,f(y,x)),u))) = y. f(f(x,f(f(y,x),f(z,y))),f(y,f(f(u,f(x,y)),u))) = y. f(f(x,f(f(y,z),f(y,x))),f(y,f(u,f(f(y,x),u)))) = y. f(f(x,f(f(y,z),f(y,x))),f(y,f(u,f(f(x,y),u)))) = y. f(f(x,f(f(y,x),f(y,z))),f(y,f(u,f(f(y,x),u)))) = y. f(f(x,f(f(y,x),f(y,z))),f(y,f(u,f(f(x,y),u)))) = y. f(f(x,f(f(y,x),f(z,y))),f(y,f(u,f(f(y,x),u)))) = y. f(f(x,f(f(y,x),f(z,y))),f(y,f(u,f(f(x,y),u)))) = y. f(f(x,f(f(y,z),f(y,x))),f(y,f(u,f(u,f(y,x))))) = y. f(f(x,f(f(y,x),f(y,z))),f(y,f(u,f(u,f(y,x))))) = y. f(f(x,f(f(y,x),f(z,y))),f(y,f(u,f(u,f(y,x))))) = y. f(f(f(x,f(y,y)),y),f(f(f(f(z,u),u),f(z,y)),z)) = y. f(f(f(x,f(y,y)),y),f(f(f(f(z,u),z),f(u,y)),u)) = y. f(f(f(x,f(y,y)),y),f(f(f(z,f(u,z)),f(u,y)),u)) = y. f(f(f(x,f(y,y)),y),f(f(f(z,f(z,u)),f(u,y)),u)) = y. f(f(f(x,f(y,y)),y),f(f(f(z,y),f(f(u,z),u)),z)) = y. f(f(f(x,f(y,y)),y),f(f(f(z,y),f(f(z,u),u)),z)) = y. f(f(f(x,f(y,y)),y),f(f(f(z,y),f(u,f(u,z))),z)) = y. f(f(f(x,f(y,y)),y),f(f(f(z,y),f(u,f(z,u))),z)) = y. f(f(f(x,f(y,y)),y),f(z,f(f(f(u,z),u),f(y,z)))) = y. f(f(f(x,f(y,y)),y),f(z,f(f(f(z,u),u),f(y,z)))) = y. f(f(f(x,f(y,y)),y),f(z,f(f(u,f(u,z)),f(y,z)))) = y. f(f(f(x,f(y,y)),y),f(z,f(f(u,f(z,u)),f(y,z)))) = y. f(f(f(x,f(y,y)),y),f(z,f(f(y,z),f(f(u,z),u)))) = y. f(f(f(x,f(y,y)),y),f(z,f(f(y,z),f(f(z,u),u)))) = y. f(f(f(x,f(y,y)),y),f(z,f(f(z,y),f(f(u,z),u)))) = y. f(f(f(x,f(y,y)),y),f(z,f(f(z,y),f(f(z,u),u)))) = y. f(f(f(x,f(y,y)),y),f(z,f(f(y,z),f(u,f(u,z))))) = y. f(f(f(x,f(y,y)),y),f(z,f(f(y,z),f(u,f(z,u))))) = y. f(f(f(x,f(y,y)),y),f(z,f(f(z,y),f(u,f(u,z))))) = y. f(f(f(x,f(y,y)),y),f(z,f(f(z,y),f(u,f(z,u))))) = y. % clausefilter non-MOL-OML false_in_all: checked 296, passed 238, 3.90 seconds. ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/backup.Jan14/OL.6 ================================================ interpretation(6, [ function(^(_,_), [ 0,0,0,0,0,0, 0,1,2,3,4,5, 0,2,2,0,0,0, 0,3,0,3,0,0, 0,4,0,0,4,0, 0,5,0,0,0,5]), function(v(_,_), [ 0,1,2,3,4,5, 1,1,1,1,1,1, 2,1,2,1,1,1, 3,1,1,3,1,1, 4,1,1,1,4,1, 5,1,1,1,1,5]), function(c(_), [1,0,3,2,5,4]), function(f(_,_), [ 1,1,1,1,1,1, 1,0,3,2,5,4, 1,3,3,1,1,1, 1,2,1,2,1,1, 1,5,1,1,5,1, 1,4,1,1,1,4])]). interpretation(6, [ function(^(_,_), [ 0,0,0,0,0,0, 0,1,2,3,4,5, 0,2,2,0,0,5, 0,3,0,3,3,0, 0,4,0,3,4,0, 0,5,5,0,0,5]), function(v(_,_), [ 0,1,2,3,4,5, 1,1,1,1,1,1, 2,1,2,1,1,2, 3,1,1,3,4,1, 4,1,1,4,4,1, 5,1,2,1,1,5]), function(c(_), [1,0,3,2,5,4]), function(f(_,_), [ 1,1,1,1,1,1, 1,0,3,2,5,4, 1,3,3,1,1,4, 1,2,1,2,2,1, 1,5,1,2,5,1, 1,4,4,1,1,4])]). % isofilter: input=5, kept=2, checks=3, perms=3, 0.01 seconds. ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/backup.Jan14/OL.8 ================================================ interpretation(8, [ function(^(_,_), [ 0,0,0,0,0,0,0,0, 0,1,2,3,4,5,6,7, 0,2,2,0,0,0,0,0, 0,3,0,3,0,0,0,0, 0,4,0,0,4,0,0,0, 0,5,0,0,0,5,0,0, 0,6,0,0,0,0,6,0, 0,7,0,0,0,0,0,7]), function(v(_,_), [ 0,1,2,3,4,5,6,7, 1,1,1,1,1,1,1,1, 2,1,2,1,1,1,1,1, 3,1,1,3,1,1,1,1, 4,1,1,1,4,1,1,1, 5,1,1,1,1,5,1,1, 6,1,1,1,1,1,6,1, 7,1,1,1,1,1,1,7]), function(c(_), [1,0,3,2,5,4,7,6]), function(f(_,_), [ 1,1,1,1,1,1,1,1, 1,0,3,2,5,4,7,6, 1,3,3,1,1,1,1,1, 1,2,1,2,1,1,1,1, 1,5,1,1,5,1,1,1, 1,4,1,1,1,4,1,1, 1,7,1,1,1,1,7,1, 1,6,1,1,1,1,1,6])]). interpretation(8, [ function(^(_,_), [ 0,0,0,0,0,0,0,0, 0,1,2,3,4,5,6,7, 0,2,2,0,0,0,0,0, 0,3,0,3,0,0,0,0, 0,4,0,0,4,0,0,7, 0,5,0,0,0,5,5,0, 0,6,0,0,0,5,6,0, 0,7,0,0,7,0,0,7]), function(v(_,_), [ 0,1,2,3,4,5,6,7, 1,1,1,1,1,1,1,1, 2,1,2,1,1,1,1,1, 3,1,1,3,1,1,1,1, 4,1,1,1,4,1,1,4, 5,1,1,1,1,5,6,1, 6,1,1,1,1,6,6,1, 7,1,1,1,4,1,1,7]), function(c(_), [1,0,3,2,5,4,7,6]), function(f(_,_), [ 1,1,1,1,1,1,1,1, 1,0,3,2,5,4,7,6, 1,3,3,1,1,1,1,1, 1,2,1,2,1,1,1,1, 1,5,1,1,5,1,1,6, 1,4,1,1,1,4,4,1, 1,7,1,1,1,4,7,1, 1,6,1,1,6,1,1,6])]). interpretation(8, [ function(^(_,_), [ 0,0,0,0,0,0,0,0, 0,1,2,3,4,5,6,7, 0,2,2,0,0,7,0,7, 0,3,0,3,0,0,3,0, 0,4,0,0,4,0,4,0, 0,5,7,0,0,5,0,7, 0,6,0,3,4,0,6,0, 0,7,7,0,0,7,0,7]), function(v(_,_), [ 0,1,2,3,4,5,6,7, 1,1,1,1,1,1,1,1, 2,1,2,1,1,1,1,2, 3,1,1,3,6,1,6,1, 4,1,1,6,4,1,6,1, 5,1,1,1,1,5,1,5, 6,1,1,6,6,1,6,1, 7,1,2,1,1,5,1,7]), function(c(_), [1,0,3,2,5,4,7,6]), function(f(_,_), [ 1,1,1,1,1,1,1,1, 1,0,3,2,5,4,7,6, 1,3,3,1,1,6,1,6, 1,2,1,2,1,1,2,1, 1,5,1,1,5,1,5,1, 1,4,6,1,1,4,1,6, 1,7,1,2,5,1,7,1, 1,6,6,1,1,6,1,6])]). interpretation(8, [ function(^(_,_), [ 0,0,0,0,0,0,0,0, 0,1,2,3,4,5,6,7, 0,2,2,0,0,5,2,0, 0,3,0,3,3,0,0,7, 0,4,0,3,4,0,0,7, 0,5,5,0,0,5,5,0, 0,6,2,0,0,5,6,0, 0,7,0,7,7,0,0,7]), function(v(_,_), [ 0,1,2,3,4,5,6,7, 1,1,1,1,1,1,1,1, 2,1,2,1,1,2,6,1, 3,1,1,3,4,1,1,3, 4,1,1,4,4,1,1,4, 5,1,2,1,1,5,6,1, 6,1,6,1,1,6,6,1, 7,1,1,3,4,1,1,7]), function(c(_), [1,0,3,2,5,4,7,6]), function(f(_,_), [ 1,1,1,1,1,1,1,1, 1,0,3,2,5,4,7,6, 1,3,3,1,1,4,3,1, 1,2,1,2,2,1,1,6, 1,5,1,2,5,1,1,6, 1,4,4,1,1,4,4,1, 1,7,3,1,1,4,7,1, 1,6,1,6,6,1,1,6])]). interpretation(8, [ function(^(_,_), [ 0,0,0,0,0,0,0,0, 0,1,2,3,4,5,6,7, 0,2,2,0,0,2,2,0, 0,3,0,3,4,7,4,7, 0,4,0,4,4,0,4,0, 0,5,2,7,0,5,2,7, 0,6,2,4,4,2,6,0, 0,7,0,7,0,7,0,7]), function(v(_,_), [ 0,1,2,3,4,5,6,7, 1,1,1,1,1,1,1,1, 2,1,2,1,6,5,6,5, 3,1,1,3,3,1,1,3, 4,1,6,3,4,1,6,3, 5,1,5,1,1,5,1,5, 6,1,6,1,6,1,6,1, 7,1,5,3,3,5,1,7]), function(c(_), [1,0,3,2,5,4,7,6]), function(f(_,_), [ 1,1,1,1,1,1,1,1, 1,0,3,2,5,4,7,6, 1,3,3,1,1,3,3,1, 1,2,1,2,5,6,5,6, 1,5,1,5,5,1,5,1, 1,4,3,6,1,4,3,6, 1,7,3,5,5,3,7,1, 1,6,1,6,1,6,1,6])]). % isofilter: input=61, kept=5, checks=56, perms=80, 0.13 seconds. ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/backup.Jan14/OL.8.out ================================================ interpretation(8, [ function(^(_,_), [0,0,0,0,0,0,0,0,0,1,2,3,4,5,6,7,0,2,2,0,0,0,0,0,0,3,0,3,0,0,0,0,0,4,0,0,4,0,0,0,0,5,0,0,0,5,0,0,0,6,0,0,0,0,6,0,0,7,0,0,0,0,0,7]), function(v(_,_), [0,1,2,3,4,5,6,7,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,3,1,1,3,1,1,1,1,4,1,1,1,4,1,1,1,5,1,1,1,1,5,1,1,6,1,1,1,1,1,6,1,7,1,1,1,1,1,1,7]), function(c(_), [1,0,3,2,5,4,7,6]), function(f(_,_), [1,1,1,1,1,1,1,1,1,0,3,2,5,4,7,6,1,3,3,1,1,1,1,1,1,2,1,2,1,1,1,1,1,5,1,1,5,1,1,1,1,4,1,1,1,4,1,1,1,7,1,1,1,1,7,1,1,6,1,1,1,1,1,6])]). interpretation(8, [ function(^(_,_), [0,0,0,0,0,0,0,0,0,1,2,3,4,5,6,7,0,2,2,0,0,0,0,0,0,3,0,3,0,0,0,0,0,4,0,0,4,0,0,7,0,5,0,0,0,5,5,0,0,6,0,0,0,5,6,0,0,7,0,0,7,0,0,7]), function(v(_,_), [0,1,2,3,4,5,6,7,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,3,1,1,3,1,1,1,1,4,1,1,1,4,1,1,4,5,1,1,1,1,5,6,1,6,1,1,1,1,6,6,1,7,1,1,1,4,1,1,7]), function(c(_), [1,0,3,2,5,4,7,6]), function(f(_,_), [1,1,1,1,1,1,1,1,1,0,3,2,5,4,7,6,1,3,3,1,1,1,1,1,1,2,1,2,1,1,1,1,1,5,1,1,5,1,1,6,1,4,1,1,1,4,4,1,1,7,1,1,1,4,7,1,1,6,1,1,6,1,1,6])]). interpretation(8, [ function(^(_,_), [0,0,0,0,0,0,0,0,0,1,2,3,4,5,6,7,0,2,2,0,0,7,0,7,0,3,0,3,0,0,3,0,0,4,0,0,4,0,4,0,0,5,7,0,0,5,0,7,0,6,0,3,4,0,6,0,0,7,7,0,0,7,0,7]), function(v(_,_), [0,1,2,3,4,5,6,7,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,2,3,1,1,3,6,1,6,1,4,1,1,6,4,1,6,1,5,1,1,1,1,5,1,5,6,1,1,6,6,1,6,1,7,1,2,1,1,5,1,7]), function(c(_), [1,0,3,2,5,4,7,6]), function(f(_,_), [1,1,1,1,1,1,1,1,1,0,3,2,5,4,7,6,1,3,3,1,1,6,1,6,1,2,1,2,1,1,2,1,1,5,1,1,5,1,5,1,1,4,6,1,1,4,1,6,1,7,1,2,5,1,7,1,1,6,6,1,1,6,1,6])]). interpretation(8, [ function(^(_,_), [0,0,0,0,0,0,0,0,0,1,2,3,4,5,6,7,0,2,2,0,0,5,2,0,0,3,0,3,3,0,0,7,0,4,0,3,4,0,0,7,0,5,5,0,0,5,5,0,0,6,2,0,0,5,6,0,0,7,0,7,7,0,0,7]), function(v(_,_), [0,1,2,3,4,5,6,7,1,1,1,1,1,1,1,1,2,1,2,1,1,2,6,1,3,1,1,3,4,1,1,3,4,1,1,4,4,1,1,4,5,1,2,1,1,5,6,1,6,1,6,1,1,6,6,1,7,1,1,3,4,1,1,7]), function(c(_), [1,0,3,2,5,4,7,6]), function(f(_,_), [1,1,1,1,1,1,1,1,1,0,3,2,5,4,7,6,1,3,3,1,1,4,3,1,1,2,1,2,2,1,1,6,1,5,1,2,5,1,1,6,1,4,4,1,1,4,4,1,1,7,3,1,1,4,7,1,1,6,1,6,6,1,1,6])]). % interpfilter distributivity some_false: checked 5, passed 4, 0.01 seconds. ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/backup.Jan14/OL.8.upper-covers ================================================ % UPPER-COVERS of Lattice 1 ( (0 (2 3 4 5 6 7)) (1 ()) (2 (1)) (3 (1)) (4 (1)) (5 (1)) (6 (1)) (7 (1)) ) % end of upper-covers % UPPER-COVERS of Lattice 2 ( (0 (2 3 5 7)) (1 ()) (2 (1)) (3 (1)) (4 (1)) (5 (6)) (6 (1)) (7 (4)) ) % end of upper-covers % UPPER-COVERS of Lattice 3 ( (0 (3 4 7)) (1 ()) (2 (1)) (3 (6)) (4 (6)) (5 (1)) (6 (1)) (7 (2 5)) ) % end of upper-covers % UPPER-COVERS of Lattice 4 ( (0 (5 7)) (1 ()) (2 (6)) (3 (4)) (4 (1)) (5 (2)) (6 (1)) (7 (3)) ) % end of upper-covers % UPPER-COVERS of Lattice 5 ( (0 (2 4 7)) (1 ()) (2 (5 6)) (3 (1)) (4 (3 6)) (5 (1)) (6 (1)) (7 (3 5)) ) % end of upper-covers % upper-covers: translated=5 ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/backup.Jan14/lattice-sax.rewritten ================================================ y = y. y = y. (x v (v ^ ((x ^ z) v (x ^ u)))) ^ (w v ((x v v6) ^ (x v v7))) = x. (x v (v ^ ((x ^ z) v (x ^ u)))) ^ (v7 v ((x v w) ^ (x v v6))) = x. % rewriter lattice.rules: rewrote 4 terms with 42 rewrite steps in 0.02 seconds. ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/backup.Jan14/meet-join-equations.out ================================================ x v y = y v x. (x v y) v z = x v (y v z). x v (x ^ y) = x. (((y v x) ^ x) v (((z ^ (x v x)) v (u ^ x)) ^ v)) ^ (w v ((v6 v x) ^ (x v v7))) = x. % latfilter: checked 6, passed 4, user 0.00, system 0.00. ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/backup.Jan14/mjc01s-equations.out ================================================ x v y = y v x. (x v y) v z = x v (y v z). x v (x ^ y) = x. (((y v x) ^ x) v (((z ^ (x v x)) v (u ^ x)) ^ v)) ^ (w v ((v6 v x) ^ (x v v7))) = x. x ^ c(x) = 0. c(x ^ y) = c(x) v c(y). c(x v y) = c(x) ^ c(y). c(c(x)) = x. f(f(x,x),f(x,y)) = x. f(x,f(x,x)) = f(y,f(y,y)). f(x,f(f(y,z),f(y,z))) = f(z,f(f(y,x),f(y,x))). % olfilter: checked 16, passed 11, user 0.00, system 0.00. ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/backup.Jan14/qg.iso3 ================================================ interpretation(3, [ function(*(_,_), [ 0,1,2, 1,2,0, 2,0,1]), function(/(_,_), [ 0,2,1, 1,0,2, 2,1,0]), function(\(_,_), [ 0,1,2, 2,0,1, 1,2,0])]). interpretation(3, [ function(*(_,_), [ 0,1,2, 2,0,1, 1,2,0]), function(/(_,_), [ 0,1,2, 2,0,1, 1,2,0]), function(\(_,_), [ 0,1,2, 1,2,0, 2,0,1])]). interpretation(3, [ function(*(_,_), [ 0,2,1, 1,0,2, 2,1,0]), function(/(_,_), [ 0,1,2, 1,2,0, 2,0,1]), function(\(_,_), [ 0,2,1, 1,0,2, 2,1,0])]). interpretation(3, [ function(*(_,_), [ 0,2,1, 2,1,0, 1,0,2]), function(/(_,_), [ 0,2,1, 2,1,0, 1,0,2]), function(\(_,_), [ 0,2,1, 2,1,0, 1,0,2])]). interpretation(3, [ function(*(_,_), [ 1,0,2, 0,2,1, 2,1,0]), function(/(_,_), [ 1,0,2, 0,2,1, 2,1,0]), function(\(_,_), [ 1,0,2, 0,2,1, 2,1,0])]). % isofilter: input=8, kept=5, checks=16, perms=88, 0.00 seconds. ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/backup.Jan14/qg.out3 ================================================ interpretation( 3, [ function(*(_,_), [0,1,2, 1,2,0, 2,0,1]), function(\(_,_), [0,1,2, 2,0,1, 1,2,0]), function(/(_,_), [0,2,1, 1,0,2, 2,1,0]) ]). interpretation( 3, [ function(*(_,_), [0,1,2, 2,0,1, 1,2,0]), function(\(_,_), [0,1,2, 1,2,0, 2,0,1]), function(/(_,_), [0,1,2, 2,0,1, 1,2,0]) ]). interpretation( 3, [ function(*(_,_), [0,2,1, 1,0,2, 2,1,0]), function(\(_,_), [0,2,1, 1,0,2, 2,1,0]), function(/(_,_), [0,1,2, 1,2,0, 2,0,1]) ]). interpretation( 3, [ function(*(_,_), [0,2,1, 2,1,0, 1,0,2]), function(\(_,_), [0,2,1, 2,1,0, 1,0,2]), function(/(_,_), [0,2,1, 2,1,0, 1,0,2]) ]). interpretation( 3, [ function(*(_,_), [1,0,2, 0,2,1, 2,1,0]), function(\(_,_), [1,0,2, 0,2,1, 2,1,0]), function(/(_,_), [1,0,2, 0,2,1, 2,1,0]) ]). interpretation( 3, [ function(*(_,_), [1,0,2, 2,1,0, 0,2,1]), function(\(_,_), [1,0,2, 2,1,0, 0,2,1]), function(/(_,_), [2,0,1, 0,1,2, 1,2,0]) ]). interpretation( 3, [ function(*(_,_), [1,2,0, 0,1,2, 2,0,1]), function(\(_,_), [2,0,1, 0,1,2, 1,2,0]), function(/(_,_), [1,2,0, 0,1,2, 2,0,1]) ]). interpretation( 3, [ function(*(_,_), [1,2,0, 2,0,1, 0,1,2]), function(\(_,_), [2,0,1, 1,2,0, 0,1,2]), function(/(_,_), [2,1,0, 0,2,1, 1,0,2]) ]). ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/backup.Mar10/BA-sheffer.out ================================================ f(f(x,x),f(x,y)) = x. % 1 2 f(f(x,x),f(y,x)) = x. % 1 2 f(f(x,f(x,x)),f(y,y)) = y. % 1 2 f(f(f(x,x),x),f(y,y)) = y. % 1 2 f(f(x,f(y,z)),f(x,z)) = x. % f(f(x,f(y,z)),f(z,x)) = x. % f(f(x,f(y,z)),f(x,y)) = x. % f(f(x,f(y,z)),f(y,x)) = x. % f(f(f(x,y),z),f(z,y)) = z. % f(f(f(x,y),z),f(y,z)) = z. % f(f(f(x,y),z),f(z,x)) = z. % f(f(f(x,y),z),f(x,z)) = z. % f(f(x,f(y,f(y,y))),f(x,z)) = x. % 1 2 f(f(x,f(f(y,y),y)),f(x,z)) = x. % 1 2 f(f(x,f(y,f(y,y))),f(z,x)) = x. % 1 2 f(f(x,f(f(y,y),y)),f(z,x)) = x. % 1 2 f(f(f(x,f(x,x)),y),f(y,z)) = y. % 1 2 f(f(f(f(x,x),x),y),f(y,z)) = y. % 1 2 f(f(f(x,f(x,x)),y),f(z,y)) = y. % 1 2 f(f(f(f(x,x),x),y),f(z,y)) = y. % 1 2 f(f(x,f(f(x,y),y)),f(x,z)) = x. % f(f(x,f(f(x,y),y)),f(z,x)) = x. % f(f(f(f(x,y),z),z),f(x,x)) = x. % f(f(x,f(y,f(x,y))),f(x,z)) = x. % f(f(x,f(f(y,x),y)),f(x,z)) = x. % f(f(x,f(y,f(x,y))),f(z,x)) = x. % f(f(x,f(f(y,x),y)),f(z,x)) = x. % f(f(x,f(y,f(y,x))),f(x,z)) = x. % f(f(f(f(x,y),y),x),f(x,z)) = x. % f(f(x,f(y,f(y,x))),f(z,x)) = x. % f(f(f(f(x,y),y),x),f(z,x)) = x. % f(f(f(f(x,y),z),z),f(y,y)) = y. % f(f(x,f(f(y,z),x)),f(y,y)) = y. % f(f(f(x,f(y,z)),x),f(y,y)) = y. % f(f(f(x,f(y,x)),y),f(y,z)) = y. % f(f(f(f(x,y),x),y),f(y,z)) = y. % f(f(f(x,f(y,x)),y),f(z,y)) = y. % f(f(f(f(x,y),x),y),f(z,y)) = y. % f(f(x,f(f(y,z),x)),f(z,z)) = z. % f(f(f(x,f(y,z)),x),f(z,z)) = z. % f(f(f(x,f(x,y)),y),f(y,z)) = y. % f(f(f(x,f(x,y)),y),f(z,y)) = y. % f(f(x,f(x,f(y,z))),f(y,y)) = y. % f(f(x,f(x,f(y,z))),f(z,z)) = z. % f(f(x,f(f(x,x),y)),f(x,z)) = x. % 1 2 f(f(x,f(f(x,x),y)),f(z,x)) = x. % 1 2 f(f(f(f(x,x),y),x),f(x,z)) = x. % 1 2 f(f(f(f(x,x),y),x),f(z,x)) = x. % 1 2 f(f(x,f(y,f(x,x))),f(x,z)) = x. % 1 2 f(f(x,f(y,f(x,x))),f(z,x)) = x. % 1 2 f(f(f(x,f(y,y)),y),f(y,z)) = y. % 1 2 f(f(f(x,f(y,y)),y),f(z,y)) = y. % 1 2 f(f(x,f(y,f(y,y))),f(z,f(z,z))) = x. % 1 2 f(f(x,f(f(y,y),y)),f(z,f(z,z))) = x. % 1 2 f(f(x,f(y,f(y,y))),f(f(z,z),z)) = x. % 1 2 f(f(x,f(f(y,y),y)),f(f(z,z),z)) = x. % 1 2 f(f(f(x,f(x,x)),y),f(z,f(z,z))) = y. % 1 2 f(f(f(f(x,x),x),y),f(z,f(z,z))) = y. % 1 2 f(f(f(x,f(x,x)),y),f(f(z,z),z)) = y. % 1 2 f(f(f(f(x,x),x),y),f(f(z,z),z)) = y. % 1 2 f(f(f(f(x,y),y),y),f(x,f(z,y))) = x. % f(f(f(f(x,y),y),y),f(x,f(y,z))) = x. % f(f(f(f(x,y),y),y),f(f(z,y),x)) = x. % f(f(f(f(x,y),y),y),f(f(y,z),x)) = x. % f(f(x,f(f(y,x),x)),f(y,f(z,x))) = y. % f(f(f(x,f(y,x)),x),f(y,f(z,x))) = y. % f(f(f(f(x,y),x),x),f(y,f(z,x))) = y. % f(f(x,f(f(y,x),x)),f(y,f(x,z))) = y. % f(f(f(x,f(y,x)),x),f(y,f(x,z))) = y. % f(f(f(f(x,y),x),x),f(y,f(x,z))) = y. % f(f(x,f(f(y,x),x)),f(f(z,x),y)) = y. % f(f(f(x,f(y,x)),x),f(f(z,x),y)) = y. % f(f(f(f(x,y),x),x),f(f(z,x),y)) = y. % f(f(x,f(f(y,x),x)),f(f(x,z),y)) = y. % f(f(f(x,f(y,x)),x),f(f(x,z),y)) = y. % f(f(f(f(x,y),x),x),f(f(x,z),y)) = y. % f(f(x,f(x,f(y,x))),f(y,f(z,x))) = y. % f(f(x,f(f(x,y),x)),f(y,f(z,x))) = y. % f(f(f(x,f(x,y)),x),f(y,f(z,x))) = y. % f(f(x,f(x,f(y,x))),f(y,f(x,z))) = y. % f(f(x,f(f(x,y),x)),f(y,f(x,z))) = y. % f(f(f(x,f(x,y)),x),f(y,f(x,z))) = y. % f(f(x,f(x,f(y,x))),f(f(z,x),y)) = y. % f(f(x,f(f(x,y),x)),f(f(z,x),y)) = y. % f(f(f(x,f(x,y)),x),f(f(z,x),y)) = y. % f(f(x,f(x,f(y,x))),f(f(x,z),y)) = y. % f(f(x,f(f(x,y),x)),f(f(x,z),y)) = y. % f(f(f(x,f(x,y)),x),f(f(x,z),y)) = y. % f(f(x,f(x,f(x,y))),f(y,f(z,x))) = y. % f(f(x,f(x,f(x,y))),f(y,f(x,z))) = y. % f(f(x,f(x,f(x,y))),f(f(z,x),y)) = y. % f(f(x,f(x,f(x,y))),f(f(x,z),y)) = y. % f(f(x,f(f(x,y),y)),f(z,f(z,z))) = x. % f(f(x,f(f(x,y),y)),f(f(z,z),z)) = x. % f(f(x,f(y,f(x,y))),f(z,f(z,z))) = x. % f(f(x,f(f(y,x),y)),f(z,f(z,z))) = x. % f(f(x,f(y,f(x,y))),f(f(z,z),z)) = x. % f(f(x,f(f(y,x),y)),f(f(z,z),z)) = x. % f(f(x,f(y,f(y,x))),f(z,f(z,z))) = x. % f(f(f(f(x,y),y),x),f(z,f(z,z))) = x. % f(f(x,f(y,f(y,x))),f(f(z,z),z)) = x. % f(f(f(f(x,y),y),x),f(f(z,z),z)) = x. % f(f(f(f(x,y),z),z),f(x,f(y,z))) = x. % f(f(f(f(x,y),z),z),f(x,f(z,y))) = x. % f(f(f(f(x,y),z),z),f(f(y,z),x)) = x. % f(f(f(f(x,y),z),z),f(f(z,y),x)) = x. % f(f(f(x,f(y,x)),y),f(z,f(z,z))) = y. % f(f(f(f(x,y),x),y),f(z,f(z,z))) = y. % f(f(f(x,f(y,x)),y),f(f(z,z),z)) = y. % f(f(f(f(x,y),x),y),f(f(z,z),z)) = y. % f(f(f(f(x,y),z),z),f(y,f(x,z))) = y. % f(f(f(f(x,y),z),z),f(y,f(z,x))) = y. % f(f(f(f(x,y),z),z),f(f(x,z),y)) = y. % f(f(f(f(x,y),z),z),f(f(z,x),y)) = y. % f(f(f(x,f(x,y)),y),f(z,f(z,z))) = y. % f(f(f(x,f(x,y)),y),f(f(z,z),z)) = y. % f(f(x,f(f(y,z),x)),f(y,f(z,x))) = y. % f(f(f(x,f(y,z)),x),f(y,f(z,x))) = y. % f(f(x,f(f(y,z),x)),f(y,f(x,z))) = y. % f(f(f(x,f(y,z)),x),f(y,f(x,z))) = y. % f(f(x,f(f(y,z),x)),f(f(z,x),y)) = y. % f(f(f(x,f(y,z)),x),f(f(z,x),y)) = y. % f(f(x,f(f(y,z),x)),f(f(x,z),y)) = y. % f(f(f(x,f(y,z)),x),f(f(x,z),y)) = y. % f(f(x,f(f(y,z),x)),f(z,f(y,x))) = z. % f(f(f(x,f(y,z)),x),f(z,f(y,x))) = z. % f(f(x,f(f(y,z),x)),f(z,f(x,y))) = z. % f(f(f(x,f(y,z)),x),f(z,f(x,y))) = z. % f(f(x,f(f(y,z),x)),f(f(y,x),z)) = z. % f(f(f(x,f(y,z)),x),f(f(y,x),z)) = z. % f(f(x,f(f(y,z),x)),f(f(x,y),z)) = z. % f(f(f(x,f(y,z)),x),f(f(x,y),z)) = z. % f(f(x,f(x,f(y,z))),f(y,f(z,x))) = y. % f(f(x,f(x,f(y,z))),f(y,f(x,z))) = y. % f(f(x,f(x,f(y,z))),f(f(z,x),y)) = y. % f(f(x,f(x,f(y,z))),f(f(x,z),y)) = y. % f(f(x,f(x,f(y,z))),f(z,f(y,x))) = z. % f(f(x,f(x,f(y,z))),f(z,f(x,y))) = z. % f(f(x,f(x,f(y,z))),f(f(y,x),z)) = z. % f(f(x,f(x,f(y,z))),f(f(x,y),z)) = z. % f(f(x,f(f(x,x),y)),f(z,f(z,z))) = x. % 1 2 f(f(x,f(f(x,x),y)),f(f(z,z),z)) = x. % 1 2 f(f(f(f(x,x),y),x),f(z,f(z,z))) = x. % 1 2 f(f(f(f(x,x),y),x),f(f(z,z),z)) = x. % 1 2 f(f(f(f(x,x),y),y),f(x,f(z,y))) = x. % f(f(f(f(x,x),y),y),f(x,f(y,z))) = x. % f(f(f(f(x,x),y),y),f(f(z,y),x)) = x. % f(f(f(f(x,x),y),y),f(f(y,z),x)) = x. % f(f(x,f(y,f(x,x))),f(z,f(z,z))) = x. % 1 2 f(f(x,f(y,f(x,x))),f(f(z,z),z)) = x. % 1 2 f(f(f(x,f(y,y)),y),f(z,f(z,z))) = y. % 1 2 f(f(f(x,f(y,y)),y),f(f(z,z),z)) = y. % 1 2 f(f(x,f(f(y,y),x)),f(y,f(z,x))) = y. % f(f(f(x,f(y,y)),x),f(y,f(z,x))) = y. % f(f(x,f(f(y,y),x)),f(y,f(x,z))) = y. % f(f(f(x,f(y,y)),x),f(y,f(x,z))) = y. % f(f(x,f(f(y,y),x)),f(f(z,x),y)) = y. % f(f(f(x,f(y,y)),x),f(f(z,x),y)) = y. % f(f(x,f(f(y,y),x)),f(f(x,z),y)) = y. % f(f(f(x,f(y,y)),x),f(f(x,z),y)) = y. % f(f(x,f(x,f(y,y))),f(y,f(z,x))) = y. % f(f(x,f(x,f(y,y))),f(y,f(x,z))) = y. % f(f(x,f(x,f(y,y))),f(f(z,x),y)) = y. % f(f(x,f(x,f(y,y))),f(f(x,z),y)) = y. % f(f(x,f(y,f(z,z))),f(x,f(u,z))) = x. % f(f(x,f(y,f(z,z))),f(x,f(z,u))) = x. % f(f(x,f(y,f(z,z))),f(f(u,z),x)) = x. % f(f(x,f(y,f(z,z))),f(f(z,u),x)) = x. % f(f(x,f(f(y,y),z)),f(x,f(u,y))) = x. % f(f(x,f(f(y,y),z)),f(x,f(y,u))) = x. % f(f(x,f(f(y,y),z)),f(f(u,y),x)) = x. % f(f(x,f(f(y,y),z)),f(f(y,u),x)) = x. % f(f(f(x,f(y,y)),z),f(z,f(u,y))) = z. % f(f(f(x,f(y,y)),z),f(z,f(y,u))) = z. % f(f(f(x,f(y,y)),z),f(f(u,y),z)) = z. % f(f(f(x,f(y,y)),z),f(f(y,u),z)) = z. % f(f(f(f(x,x),y),z),f(z,f(u,x))) = z. % f(f(f(f(x,x),y),z),f(z,f(x,u))) = z. % f(f(f(f(x,x),y),z),f(f(u,x),z)) = z. % f(f(f(f(x,x),y),z),f(f(x,u),z)) = z. % f(f(x,f(y,f(z,u))),f(x,f(u,z))) = x. % f(f(x,f(y,f(z,u))),f(f(u,z),x)) = x. % f(f(x,f(y,f(y,z))),f(x,f(u,z))) = x. % f(f(x,f(y,f(y,z))),f(x,f(z,u))) = x. % f(f(x,f(y,f(y,z))),f(f(u,z),x)) = x. % f(f(x,f(y,f(y,z))),f(f(z,u),x)) = x. % f(f(x,f(f(y,z),u)),f(x,f(z,y))) = x. % f(f(x,f(f(y,z),u)),f(f(z,y),x)) = x. % f(f(x,f(y,f(z,y))),f(x,f(u,z))) = x. % f(f(x,f(f(y,z),y)),f(x,f(u,z))) = x. % f(f(x,f(y,f(z,y))),f(x,f(z,u))) = x. % f(f(x,f(f(y,z),y)),f(x,f(z,u))) = x. % f(f(x,f(y,f(z,y))),f(f(u,z),x)) = x. % f(f(x,f(f(y,z),y)),f(f(u,z),x)) = x. % f(f(x,f(y,f(z,y))),f(f(z,u),x)) = x. % f(f(x,f(f(y,z),y)),f(f(z,u),x)) = x. % f(f(x,f(f(y,z),z)),f(x,f(u,y))) = x. % f(f(x,f(f(y,z),z)),f(x,f(y,u))) = x. % f(f(x,f(f(y,z),z)),f(f(u,y),x)) = x. % f(f(x,f(f(y,z),z)),f(f(y,u),x)) = x. % f(f(f(x,f(y,z)),u),f(u,f(z,y))) = u. % f(f(f(x,f(y,z)),u),f(f(z,y),u)) = u. % f(f(f(x,f(x,y)),z),f(z,f(u,y))) = z. % f(f(f(x,f(x,y)),z),f(z,f(y,u))) = z. % f(f(f(x,f(x,y)),z),f(f(u,y),z)) = z. % f(f(f(x,f(x,y)),z),f(f(y,u),z)) = z. % f(f(f(f(x,y),z),u),f(u,f(y,x))) = u. % f(f(f(f(x,y),z),u),f(f(y,x),u)) = u. % f(f(f(x,f(y,x)),z),f(z,f(u,y))) = z. % f(f(f(f(x,y),x),z),f(z,f(u,y))) = z. % f(f(f(x,f(y,x)),z),f(z,f(y,u))) = z. % f(f(f(f(x,y),x),z),f(z,f(y,u))) = z. % f(f(f(x,f(y,x)),z),f(f(u,y),z)) = z. % f(f(f(f(x,y),x),z),f(f(u,y),z)) = z. % f(f(f(x,f(y,x)),z),f(f(y,u),z)) = z. % f(f(f(f(x,y),x),z),f(f(y,u),z)) = z. % f(f(f(f(x,y),y),z),f(z,f(u,x))) = z. % f(f(f(f(x,y),y),z),f(z,f(x,u))) = z. % f(f(f(f(x,y),y),z),f(f(u,x),z)) = z. % f(f(f(f(x,y),y),z),f(f(x,u),z)) = z. % f(f(x,f(f(x,y),z)),f(x,f(u,y))) = x. % f(f(x,f(f(x,y),z)),f(x,f(y,u))) = x. % f(f(x,f(f(x,y),z)),f(f(u,y),x)) = x. % f(f(x,f(f(x,y),z)),f(f(y,u),x)) = x. % f(f(x,f(y,f(x,z))),f(x,f(u,z))) = x. % f(f(x,f(y,f(x,z))),f(x,f(z,u))) = x. % f(f(x,f(y,f(x,z))),f(f(u,z),x)) = x. % f(f(x,f(y,f(x,z))),f(f(z,u),x)) = x. % f(f(x,f(y,f(z,x))),f(x,f(u,z))) = x. % f(f(x,f(y,f(z,x))),f(x,f(z,u))) = x. % f(f(x,f(y,f(z,x))),f(f(u,z),x)) = x. % f(f(x,f(y,f(z,x))),f(f(z,u),x)) = x. % f(f(x,f(f(y,x),z)),f(x,f(u,y))) = x. % f(f(x,f(f(y,x),z)),f(x,f(y,u))) = x. % f(f(x,f(f(y,x),z)),f(f(u,y),x)) = x. % f(f(x,f(f(y,x),z)),f(f(y,u),x)) = x. % f(f(f(f(x,y),z),x),f(x,f(u,y))) = x. % f(f(f(f(x,y),z),x),f(x,f(y,u))) = x. % f(f(f(f(x,y),z),x),f(f(u,y),x)) = x. % f(f(f(f(x,y),z),x),f(f(y,u),x)) = x. % f(f(f(x,f(y,z)),y),f(y,f(u,z))) = y. % f(f(f(x,f(y,z)),y),f(y,f(z,u))) = y. % f(f(f(x,f(y,z)),y),f(f(u,z),y)) = y. % f(f(f(x,f(y,z)),y),f(f(z,u),y)) = y. % f(f(f(x,f(y,z)),z),f(z,f(u,y))) = z. % f(f(f(x,f(y,z)),z),f(z,f(y,u))) = z. % f(f(f(x,f(y,z)),z),f(f(u,y),z)) = z. % f(f(f(x,f(y,z)),z),f(f(y,u),z)) = z. % f(f(f(f(x,y),z),y),f(y,f(u,x))) = y. % f(f(f(f(x,y),z),y),f(y,f(x,u))) = y. % f(f(f(f(x,y),z),y),f(f(u,x),y)) = y. % f(f(f(f(x,y),z),y),f(f(x,u),y)) = y. % f(f(f(f(x,f(y,y)),y),y),f(z,z)) = z. % 1 2 f(f(x,f(f(y,f(x,x)),x)),f(z,z)) = z. % 1 2 f(f(f(x,f(y,f(x,x))),x),f(z,z)) = z. % 1 2 f(f(x,f(x,f(y,f(x,x)))),f(z,z)) = z. % 1 2 f(f(f(f(f(x,x),y),x),x),f(z,z)) = z. % 1 2 f(f(x,f(f(f(x,x),y),x)),f(z,z)) = z. % 1 2 f(f(f(x,f(f(x,x),y)),x),f(z,z)) = z. % 1 2 f(f(x,f(x,f(f(x,x),y))),f(z,z)) = z. % 1 2 f(f(x,f(x,f(y,f(y,y)))),f(z,z)) = z. % 1 2 f(f(x,f(x,f(f(y,y),y))),f(z,z)) = z. % 1 2 f(f(f(f(x,f(x,y)),y),y),f(z,z)) = z. % 2 f(f(f(f(x,f(y,x)),y),y),f(z,z)) = z. % 2 f(f(f(f(f(x,y),x),y),y),f(z,z)) = z. % 2 f(f(x,f(f(y,f(y,y)),x)),f(z,z)) = z. % 1 2 f(f(x,f(f(f(y,y),y),x)),f(z,z)) = z. % 1 2 f(f(f(x,f(y,f(y,y))),x),f(z,z)) = z. % 1 2 f(f(f(x,f(f(y,y),y)),x),f(z,z)) = z. % 1 2 f(f(x,f(f(y,f(y,x)),x)),f(z,z)) = z. % 2 f(f(f(x,f(y,f(y,x))),x),f(z,z)) = z. % 2 f(f(f(f(f(x,y),y),x),x),f(z,z)) = z. % 2 f(f(x,f(f(y,f(x,y)),x)),f(z,z)) = z. % 2 f(f(x,f(f(f(y,x),y),x)),f(z,z)) = z. % 2 f(f(f(x,f(y,f(x,y))),x),f(z,z)) = z. % 2 f(f(f(x,f(f(y,x),y)),x),f(z,z)) = z. % 2 f(f(x,f(x,f(y,f(y,x)))),f(z,z)) = z. % 2 f(f(x,f(f(f(x,y),y),x)),f(z,z)) = z. % 2 f(f(f(x,f(f(x,y),y)),x),f(z,z)) = z. % 2 f(f(x,f(x,f(y,f(x,y)))),f(z,z)) = z. % 2 f(f(x,f(x,f(f(y,x),y))),f(z,z)) = z. % 2 f(f(x,f(x,f(f(x,y),y))),f(z,z)) = z. % 2 f(f(f(f(x,f(x,x)),y),y),f(z,z)) = z. % 1 2 f(f(f(f(f(x,x),x),y),y),f(z,z)) = z. % 1 2 f(f(x,f(f(f(y,z),u),u)),f(x,z)) = x. % f(f(x,f(f(f(y,z),u),u)),f(z,x)) = x. % f(f(x,f(y,f(f(z,u),y))),f(x,u)) = x. % f(f(x,f(f(y,f(z,u)),y)),f(x,u)) = x. % f(f(x,f(y,f(f(z,u),y))),f(u,x)) = x. % f(f(x,f(f(y,f(z,u)),y)),f(u,x)) = x. % f(f(x,f(f(f(y,z),u),u)),f(x,y)) = x. % f(f(x,f(f(f(y,z),u),u)),f(y,x)) = x. % f(f(x,f(y,f(y,f(z,u)))),f(x,u)) = x. % f(f(x,f(y,f(y,f(z,u)))),f(u,x)) = x. % f(f(x,f(y,f(y,f(z,u)))),f(x,z)) = x. % f(f(x,f(y,f(y,f(z,u)))),f(z,x)) = x. % f(f(x,f(y,f(f(z,u),y))),f(x,z)) = x. % f(f(x,f(f(y,f(z,u)),y)),f(x,z)) = x. % f(f(x,f(y,f(f(z,u),y))),f(z,x)) = x. % f(f(x,f(f(y,f(z,u)),y)),f(z,x)) = x. % f(f(f(f(f(x,y),z),z),u),f(u,y)) = u. % f(f(f(f(f(x,y),z),z),u),f(y,u)) = u. % f(f(f(x,f(f(y,z),x)),u),f(u,z)) = u. % f(f(f(f(x,f(y,z)),x),u),f(u,z)) = u. % f(f(f(x,f(f(y,z),x)),u),f(z,u)) = u. % f(f(f(f(x,f(y,z)),x),u),f(z,u)) = u. % f(f(f(f(f(x,y),z),z),u),f(u,x)) = u. % f(f(f(f(f(x,y),z),z),u),f(x,u)) = u. % f(f(f(x,f(x,f(y,z))),u),f(u,z)) = u. % f(f(f(x,f(x,f(y,z))),u),f(z,u)) = u. % f(f(f(x,f(x,f(y,z))),u),f(u,y)) = u. % f(f(f(x,f(x,f(y,z))),u),f(y,u)) = u. % f(f(f(x,f(f(y,z),x)),u),f(u,y)) = u. % f(f(f(f(x,f(y,z)),x),u),f(u,y)) = u. % f(f(f(x,f(f(y,z),x)),u),f(y,u)) = u. % f(f(f(f(x,f(y,z)),x),u),f(y,u)) = u. % f(f(x,f(f(x,f(y,z)),u)),f(x,z)) = x. % f(f(x,f(f(x,f(y,z)),u)),f(z,x)) = x. % f(f(x,f(f(x,f(y,z)),u)),f(x,y)) = x. % f(f(x,f(f(x,f(y,z)),u)),f(y,x)) = x. % f(f(x,f(y,f(x,f(z,u)))),f(x,u)) = x. % f(f(x,f(y,f(x,f(z,u)))),f(u,x)) = x. % f(f(x,f(y,f(x,f(z,u)))),f(x,z)) = x. % f(f(x,f(y,f(x,f(z,u)))),f(z,x)) = x. % f(f(x,f(y,f(f(z,u),x))),f(x,u)) = x. % f(f(x,f(y,f(f(z,u),x))),f(u,x)) = x. % f(f(x,f(f(f(y,z),x),u)),f(x,z)) = x. % f(f(x,f(f(f(y,z),x),u)),f(z,x)) = x. % f(f(x,f(y,f(f(z,u),x))),f(x,z)) = x. % f(f(f(f(x,f(y,z)),u),x),f(x,z)) = x. % f(f(x,f(y,f(f(z,u),x))),f(z,x)) = x. % f(f(f(f(x,f(y,z)),u),x),f(z,x)) = x. % f(f(x,f(f(f(y,z),x),u)),f(x,y)) = x. % f(f(x,f(f(f(y,z),x),u)),f(y,x)) = x. % f(f(f(f(x,f(y,z)),u),x),f(x,y)) = x. % f(f(f(f(x,f(y,z)),u),x),f(y,x)) = x. % f(f(f(x,f(y,f(z,u))),y),f(y,u)) = y. % f(f(f(x,f(y,f(z,u))),y),f(u,y)) = y. % f(f(f(x,f(y,f(z,u))),y),f(y,z)) = y. % f(f(f(x,f(y,f(z,u))),y),f(z,y)) = y. % f(f(f(x,f(f(y,z),u)),u),f(u,z)) = u. % f(f(f(x,f(f(y,z),u)),u),f(z,u)) = u. % f(f(f(f(f(x,y),z),u),z),f(z,y)) = z. % f(f(f(f(f(x,y),z),u),z),f(y,z)) = z. % f(f(f(x,f(f(y,z),u)),u),f(u,y)) = u. % f(f(f(x,f(f(y,z),u)),u),f(y,u)) = u. % f(f(f(f(f(x,y),z),u),z),f(z,x)) = z. % f(f(f(f(f(x,y),z),u),z),f(x,z)) = z. % f(f(f(f(x,y),f(x,z)),u),f(x,x)) = x. % 1 2 f(f(f(f(x,y),f(z,x)),u),f(x,x)) = x. % 1 2 f(f(f(f(x,y),f(y,z)),u),f(y,y)) = y. % 1 2 f(f(x,f(f(y,z),f(y,u))),f(y,y)) = y. % 1 2 f(f(f(f(x,y),f(z,y)),u),f(y,y)) = y. % 1 2 f(f(x,f(f(y,z),f(u,y))),f(y,y)) = y. % 1 2 f(f(x,f(f(y,z),f(z,u))),f(z,z)) = z. % 1 2 f(f(x,f(f(y,z),f(u,z))),f(z,z)) = z. % 1 2 % interp 1 models 60 clauses. % interp 2 models 76 clauses. ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/backup.Mar10/MOL-cand.238 ================================================ f(f(f(f(f(x,y),z),z),y),f(f(f(x,y),f(z,y)),x)) = y. f(f(f(f(f(x,y),z),z),y),f(x,f(f(y,x),f(y,z)))) = y. f(f(f(f(f(x,y),z),z),y),f(x,f(f(z,y),f(y,x)))) = y. f(f(f(f(f(x,y),z),z),y),f(x,f(f(x,y),f(y,z)))) = y. f(f(f(f(f(x,y),z),z),y),f(x,f(f(y,y),f(y,z)))) = y. f(f(f(f(f(x,y),z),z),y),f(x,f(f(y,y),f(y,x)))) = y. f(f(f(f(x,f(y,z)),x),y),f(f(f(z,y),f(z,y)),z)) = y. f(f(f(f(x,f(y,z)),x),z),f(f(f(y,z),f(y,z)),y)) = z. f(f(f(f(x,f(y,z)),x),y),f(f(f(z,y),f(x,y)),z)) = y. f(f(f(f(x,f(y,z)),x),y),f(f(f(x,y),f(z,y)),z)) = y. f(f(f(f(x,f(y,z)),x),z),f(f(f(y,z),f(x,z)),y)) = z. f(f(f(f(x,f(y,z)),x),z),f(f(f(x,z),f(y,z)),y)) = z. f(f(f(f(x,f(y,z)),x),y),f(z,f(f(z,y),f(y,z)))) = y. f(f(f(f(x,f(y,z)),x),y),f(z,f(f(y,z),f(y,x)))) = y. f(f(f(f(x,f(y,z)),x),z),f(y,f(f(z,y),f(z,x)))) = z. f(f(f(f(x,f(y,z)),x),z),f(y,f(f(z,x),f(z,y)))) = z. f(f(f(f(x,f(y,z)),x),z),f(y,f(f(x,z),f(z,y)))) = z. f(f(f(f(x,f(y,z)),x),y),f(z,f(f(y,y),f(y,x)))) = y. f(f(f(f(x,f(y,z)),x),z),f(y,f(f(z,z),f(z,y)))) = z. f(f(f(f(x,f(y,z)),x),z),f(y,f(f(z,z),f(z,x)))) = z. f(f(f(f(x,y),f(y,x)),x),f(y,f(f(f(y,x),z),z))) = y. f(f(f(f(x,y),f(y,z)),z),f(y,f(f(f(y,z),x),x))) = y. f(f(f(f(x,y),f(y,z)),z),f(y,f(f(f(z,y),x),x))) = y. f(f(f(f(x,y),f(y,z)),x),f(y,f(f(f(y,x),z),z))) = y. f(f(f(f(x,y),f(y,z)),x),f(y,f(f(f(x,y),z),z))) = y. f(f(f(f(x,y),f(z,y)),z),f(y,f(f(f(y,z),x),x))) = y. f(f(f(f(x,y),f(z,y)),z),f(y,f(f(f(z,y),x),x))) = y. f(f(f(f(x,y),f(z,y)),x),f(y,f(f(f(x,y),z),z))) = y. f(f(f(f(x,y),f(y,y)),z),f(y,f(f(f(y,z),x),x))) = y. f(f(f(f(x,y),f(y,y)),z),f(y,f(f(f(z,y),x),x))) = y. f(f(f(f(x,y),f(y,x)),x),f(y,f(f(z,f(y,x)),z))) = y. f(f(f(f(x,y),f(y,z)),z),f(y,f(f(x,f(z,y)),x))) = y. f(f(f(f(x,y),f(y,z)),x),f(y,f(f(z,f(x,y)),z))) = y. f(f(f(f(x,y),f(z,y)),z),f(y,f(f(x,f(y,z)),x))) = y. f(f(f(f(x,y),f(z,y)),z),f(y,f(f(x,f(z,y)),x))) = y. f(f(f(f(x,y),f(z,y)),x),f(y,f(f(z,f(y,x)),z))) = y. f(f(f(f(x,y),f(y,y)),z),f(y,f(f(x,f(y,z)),x))) = y. f(f(f(f(x,y),f(y,y)),z),f(y,f(f(x,f(z,y)),x))) = y. f(f(f(f(x,y),f(y,z)),x),f(y,f(z,f(f(y,x),z)))) = y. f(f(f(f(x,y),f(z,y)),z),f(y,f(x,f(f(y,z),x)))) = y. f(f(f(f(x,y),f(z,y)),z),f(y,f(x,f(f(z,y),x)))) = y. f(f(f(f(x,y),f(z,y)),x),f(y,f(z,f(f(y,x),z)))) = y. f(f(f(f(x,y),f(y,y)),z),f(y,f(x,f(f(y,z),x)))) = y. f(f(f(f(x,y),f(y,y)),z),f(y,f(x,f(f(z,y),x)))) = y. f(f(f(f(x,y),f(y,y)),x),f(y,f(z,f(f(y,x),z)))) = y. f(f(f(f(x,y),f(y,z)),x),f(y,f(z,f(z,f(y,x))))) = y. f(f(f(f(x,y),f(z,y)),z),f(y,f(x,f(x,f(y,z))))) = y. f(f(f(f(x,y),f(y,y)),z),f(y,f(x,f(x,f(y,z))))) = y. f(f(f(f(x,y),f(y,y)),x),f(y,f(z,f(z,f(y,x))))) = y. f(f(f(x,f(f(y,z),x)),y),f(f(f(z,y),f(z,y)),z)) = y. f(f(f(x,f(f(y,z),x)),z),f(f(f(y,z),f(y,z)),y)) = z. f(f(f(x,f(f(y,z),x)),y),f(f(f(x,y),f(z,y)),z)) = y. f(f(f(x,f(f(y,z),x)),z),f(f(f(y,z),f(x,z)),y)) = z. f(f(f(x,f(f(y,z),x)),z),f(f(f(x,z),f(y,z)),y)) = z. f(f(f(x,f(f(y,z),x)),z),f(y,f(f(y,z),f(z,y)))) = z. f(f(f(x,f(f(y,z),x)),y),f(z,f(f(y,z),f(y,x)))) = y. f(f(f(x,f(f(y,z),x)),y),f(z,f(f(z,y),f(y,x)))) = y. f(f(f(x,f(f(y,z),x)),y),f(z,f(f(x,y),f(y,z)))) = y. f(f(f(x,f(f(y,z),x)),z),f(y,f(f(z,y),f(z,x)))) = z. f(f(f(x,f(f(y,z),x)),z),f(y,f(f(z,x),f(z,y)))) = z. f(f(f(x,f(f(y,z),x)),y),f(z,f(f(y,y),f(y,x)))) = y. f(f(f(x,f(f(y,z),x)),z),f(y,f(f(z,z),f(z,x)))) = z. f(f(f(x,f(x,f(y,z))),y),f(f(f(z,y),f(x,y)),z)) = y. f(f(f(x,f(x,f(y,z))),z),f(f(f(y,z),f(x,z)),y)) = z. f(f(f(x,f(x,f(y,z))),z),f(f(f(x,z),f(y,z)),y)) = z. f(f(f(x,f(x,f(y,z))),z),f(y,f(f(y,z),f(z,y)))) = z. f(f(f(x,f(x,f(y,z))),y),f(z,f(f(y,z),f(y,x)))) = y. f(f(f(x,f(x,f(y,z))),y),f(z,f(f(y,x),f(y,z)))) = y. f(f(f(x,f(x,f(y,z))),y),f(z,f(f(z,y),f(y,x)))) = y. f(f(f(x,f(x,f(y,z))),y),f(z,f(f(x,y),f(y,z)))) = y. f(f(f(x,f(x,f(y,z))),z),f(y,f(f(z,y),f(z,x)))) = z. f(f(f(x,f(x,f(y,z))),z),f(y,f(f(x,z),f(z,y)))) = z. f(f(f(x,f(x,f(y,z))),y),f(z,f(f(y,y),f(y,x)))) = y. f(f(f(x,f(x,f(y,z))),z),f(y,f(f(z,z),f(z,x)))) = z. f(f(x,f(f(y,x),f(y,x))),f(y,f(f(f(x,y),z),z))) = y. f(f(x,f(f(y,z),f(y,x))),f(y,f(f(f(y,x),z),z))) = y. f(f(x,f(f(y,z),f(y,x))),f(y,f(f(f(x,y),z),z))) = y. f(f(x,f(f(y,x),f(y,z))),f(y,f(f(f(y,x),z),z))) = y. f(f(x,f(f(y,x),f(y,x))),f(y,f(f(z,f(y,x)),z))) = y. f(f(x,f(f(y,x),f(y,x))),f(y,f(f(z,f(x,y)),z))) = y. f(f(x,f(f(y,z),f(y,x))),f(y,f(f(z,f(y,x)),z))) = y. f(f(x,f(f(y,x),f(y,z))),f(y,f(f(z,f(y,x)),z))) = y. f(f(x,f(f(y,x),f(y,z))),f(y,f(f(z,f(x,y)),z))) = y. f(f(x,f(f(y,x),f(y,x))),f(y,f(z,f(f(y,x),z)))) = y. f(f(x,f(f(y,x),f(y,x))),f(y,f(z,f(f(x,y),z)))) = y. f(f(x,f(f(y,z),f(y,x))),f(y,f(z,f(f(y,x),z)))) = y. f(f(x,f(f(y,z),f(y,x))),f(y,f(z,f(f(x,y),z)))) = y. f(f(x,f(f(y,x),f(y,z))),f(y,f(z,f(f(y,x),z)))) = y. f(f(x,f(f(y,x),f(y,z))),f(y,f(z,f(f(x,y),z)))) = y. f(f(x,f(f(y,z),f(y,x))),f(y,f(z,f(z,f(y,x))))) = y. f(f(f(x,f(y,y)),y),f(f(f(f(z,x),x),f(z,y)),z)) = y. f(f(f(x,f(y,y)),y),f(f(f(f(x,z),x),f(z,y)),z)) = y. f(f(f(x,f(y,y)),y),f(f(f(x,f(z,x)),f(z,y)),z)) = y. f(f(f(x,f(y,y)),y),f(f(f(z,y),f(f(z,x),x)),z)) = y. f(f(f(x,f(y,y)),y),f(f(f(z,y),f(f(x,z),x)),z)) = y. f(f(f(x,f(y,y)),y),f(f(f(z,y),f(x,f(z,x))),z)) = y. f(f(f(x,f(y,y)),y),f(f(f(z,y),f(x,f(x,z))),z)) = y. f(f(f(x,f(y,y)),y),f(z,f(f(f(x,z),x),f(y,z)))) = y. f(f(f(x,f(y,y)),y),f(z,f(f(x,f(z,x)),f(y,z)))) = y. f(f(f(x,f(y,y)),y),f(z,f(f(x,f(x,z)),f(y,z)))) = y. f(f(f(x,f(y,y)),y),f(z,f(f(y,z),f(f(z,x),x)))) = y. f(f(f(x,f(y,y)),y),f(z,f(f(y,z),f(f(x,z),x)))) = y. f(f(f(x,f(y,y)),y),f(z,f(f(z,y),f(f(z,x),x)))) = y. f(f(f(x,f(y,y)),y),f(z,f(f(z,y),f(f(x,z),x)))) = y. f(f(f(x,f(y,y)),y),f(z,f(f(y,z),f(x,f(z,x))))) = y. f(f(f(x,f(y,y)),y),f(z,f(f(y,z),f(x,f(x,z))))) = y. f(f(f(f(f(x,y),z),z),y),f(f(f(u,y),f(x,y)),x)) = y. f(f(f(f(f(x,y),z),z),y),f(f(f(y,u),f(x,y)),x)) = y. f(f(f(f(f(x,y),z),z),y),f(f(f(x,y),f(u,y)),x)) = y. f(f(f(f(f(x,y),z),z),y),f(x,f(f(u,y),f(y,x)))) = y. f(f(f(f(f(x,y),z),z),y),f(x,f(f(y,u),f(y,x)))) = y. f(f(f(f(f(x,y),z),z),y),f(x,f(f(y,x),f(y,u)))) = y. f(f(f(f(f(x,y),z),z),y),f(x,f(f(x,y),f(y,u)))) = y. f(f(f(f(f(x,y),z),z),y),f(x,f(f(y,y),f(y,u)))) = y. f(f(f(f(x,f(y,z)),x),y),f(f(f(u,y),f(z,y)),z)) = y. f(f(f(f(x,f(y,z)),x),y),f(f(f(y,u),f(z,y)),z)) = y. f(f(f(f(x,f(y,z)),x),y),f(f(f(z,y),f(u,y)),z)) = y. f(f(f(f(x,f(y,z)),x),z),f(f(f(u,z),f(y,z)),y)) = z. f(f(f(f(x,f(y,z)),x),z),f(f(f(z,u),f(y,z)),y)) = z. f(f(f(f(x,f(y,z)),x),z),f(f(f(y,z),f(u,z)),y)) = z. f(f(f(f(x,f(y,z)),x),y),f(z,f(f(u,y),f(y,z)))) = y. f(f(f(f(x,f(y,z)),x),y),f(z,f(f(y,u),f(y,z)))) = y. f(f(f(f(x,f(y,z)),x),y),f(z,f(f(y,z),f(y,u)))) = y. f(f(f(f(x,f(y,z)),x),y),f(z,f(f(z,y),f(y,u)))) = y. f(f(f(f(x,f(y,z)),x),z),f(y,f(f(u,z),f(z,y)))) = z. f(f(f(f(x,f(y,z)),x),z),f(y,f(f(z,u),f(z,y)))) = z. f(f(f(f(x,f(y,z)),x),z),f(y,f(f(z,y),f(z,u)))) = z. f(f(f(f(x,f(y,z)),x),z),f(y,f(f(y,z),f(z,u)))) = z. f(f(f(f(x,f(y,z)),x),y),f(z,f(f(y,y),f(y,u)))) = y. f(f(f(f(x,f(y,z)),x),z),f(y,f(f(z,z),f(z,u)))) = z. f(f(f(f(x,y),f(y,z)),z),f(y,f(f(f(y,z),u),u))) = y. f(f(f(f(x,y),f(y,z)),z),f(y,f(f(f(z,y),u),u))) = y. f(f(f(f(x,y),f(y,z)),x),f(y,f(f(f(y,x),u),u))) = y. f(f(f(f(x,y),f(y,z)),x),f(y,f(f(f(x,y),u),u))) = y. f(f(f(f(x,y),f(z,y)),z),f(y,f(f(f(y,z),u),u))) = y. f(f(f(f(x,y),f(z,y)),z),f(y,f(f(f(z,y),u),u))) = y. f(f(f(f(x,y),f(z,y)),x),f(y,f(f(f(y,x),u),u))) = y. f(f(f(f(x,y),f(z,y)),x),f(y,f(f(f(x,y),u),u))) = y. f(f(f(f(x,y),f(y,y)),z),f(y,f(f(f(y,z),u),u))) = y. f(f(f(f(x,y),f(y,y)),z),f(y,f(f(f(z,y),u),u))) = y. f(f(f(f(x,y),f(y,z)),z),f(y,f(f(u,f(y,z)),u))) = y. f(f(f(f(x,y),f(y,z)),z),f(y,f(f(u,f(z,y)),u))) = y. f(f(f(f(x,y),f(y,z)),x),f(y,f(f(u,f(y,x)),u))) = y. f(f(f(f(x,y),f(y,z)),x),f(y,f(f(u,f(x,y)),u))) = y. f(f(f(f(x,y),f(z,y)),z),f(y,f(f(u,f(y,z)),u))) = y. f(f(f(f(x,y),f(z,y)),z),f(y,f(f(u,f(z,y)),u))) = y. f(f(f(f(x,y),f(z,y)),x),f(y,f(f(u,f(y,x)),u))) = y. f(f(f(f(x,y),f(z,y)),x),f(y,f(f(u,f(x,y)),u))) = y. f(f(f(f(x,y),f(y,y)),z),f(y,f(f(u,f(y,z)),u))) = y. f(f(f(f(x,y),f(y,y)),z),f(y,f(f(u,f(z,y)),u))) = y. f(f(f(f(x,y),f(y,z)),z),f(y,f(u,f(f(y,z),u)))) = y. f(f(f(f(x,y),f(y,z)),z),f(y,f(u,f(f(z,y),u)))) = y. f(f(f(f(x,y),f(y,z)),x),f(y,f(u,f(f(y,x),u)))) = y. f(f(f(f(x,y),f(y,z)),x),f(y,f(u,f(f(x,y),u)))) = y. f(f(f(f(x,y),f(z,y)),z),f(y,f(u,f(f(y,z),u)))) = y. f(f(f(f(x,y),f(z,y)),z),f(y,f(u,f(f(z,y),u)))) = y. f(f(f(f(x,y),f(z,y)),x),f(y,f(u,f(f(y,x),u)))) = y. f(f(f(f(x,y),f(z,y)),x),f(y,f(u,f(f(x,y),u)))) = y. f(f(f(f(x,y),f(y,y)),z),f(y,f(u,f(f(y,z),u)))) = y. f(f(f(f(x,y),f(y,y)),z),f(y,f(u,f(f(z,y),u)))) = y. f(f(f(f(x,y),f(y,z)),z),f(y,f(u,f(u,f(y,z))))) = y. f(f(f(f(x,y),f(y,z)),x),f(y,f(u,f(u,f(y,x))))) = y. f(f(f(f(x,y),f(z,y)),z),f(y,f(u,f(u,f(y,z))))) = y. f(f(f(f(x,y),f(z,y)),x),f(y,f(u,f(u,f(y,x))))) = y. f(f(f(f(x,y),f(y,y)),z),f(y,f(u,f(u,f(y,z))))) = y. f(f(f(x,f(f(y,z),x)),y),f(f(f(u,y),f(z,y)),z)) = y. f(f(f(x,f(f(y,z),x)),y),f(f(f(y,u),f(z,y)),z)) = y. f(f(f(x,f(f(y,z),x)),y),f(f(f(z,y),f(u,y)),z)) = y. f(f(f(x,f(f(y,z),x)),z),f(f(f(u,z),f(y,z)),y)) = z. f(f(f(x,f(f(y,z),x)),z),f(f(f(z,u),f(y,z)),y)) = z. f(f(f(x,f(f(y,z),x)),z),f(f(f(y,z),f(u,z)),y)) = z. f(f(f(x,f(f(y,z),x)),y),f(z,f(f(u,y),f(y,z)))) = y. f(f(f(x,f(f(y,z),x)),y),f(z,f(f(y,u),f(y,z)))) = y. f(f(f(x,f(f(y,z),x)),y),f(z,f(f(y,z),f(y,u)))) = y. f(f(f(x,f(f(y,z),x)),y),f(z,f(f(z,y),f(y,u)))) = y. f(f(f(x,f(f(y,z),x)),z),f(y,f(f(u,z),f(z,y)))) = z. f(f(f(x,f(f(y,z),x)),z),f(y,f(f(z,u),f(z,y)))) = z. f(f(f(x,f(f(y,z),x)),z),f(y,f(f(z,y),f(z,u)))) = z. f(f(f(x,f(f(y,z),x)),z),f(y,f(f(y,z),f(z,u)))) = z. f(f(f(x,f(f(y,z),x)),y),f(z,f(f(y,y),f(y,u)))) = y. f(f(f(x,f(f(y,z),x)),z),f(y,f(f(z,z),f(z,u)))) = z. f(f(f(x,f(x,f(y,z))),y),f(f(f(u,y),f(z,y)),z)) = y. f(f(f(x,f(x,f(y,z))),y),f(f(f(y,u),f(z,y)),z)) = y. f(f(f(x,f(x,f(y,z))),y),f(f(f(z,y),f(u,y)),z)) = y. f(f(f(x,f(x,f(y,z))),z),f(f(f(u,z),f(y,z)),y)) = z. f(f(f(x,f(x,f(y,z))),z),f(f(f(z,u),f(y,z)),y)) = z. f(f(f(x,f(x,f(y,z))),z),f(f(f(y,z),f(u,z)),y)) = z. f(f(f(x,f(x,f(y,z))),y),f(z,f(f(u,y),f(y,z)))) = y. f(f(f(x,f(x,f(y,z))),y),f(z,f(f(y,u),f(y,z)))) = y. f(f(f(x,f(x,f(y,z))),y),f(z,f(f(y,z),f(y,u)))) = y. f(f(f(x,f(x,f(y,z))),y),f(z,f(f(z,y),f(y,u)))) = y. f(f(f(x,f(x,f(y,z))),z),f(y,f(f(u,z),f(z,y)))) = z. f(f(f(x,f(x,f(y,z))),z),f(y,f(f(z,u),f(z,y)))) = z. f(f(f(x,f(x,f(y,z))),z),f(y,f(f(z,y),f(z,u)))) = z. f(f(f(x,f(x,f(y,z))),z),f(y,f(f(y,z),f(z,u)))) = z. f(f(f(x,f(x,f(y,z))),y),f(z,f(f(y,y),f(y,u)))) = y. f(f(f(x,f(x,f(y,z))),z),f(y,f(f(z,z),f(z,u)))) = z. f(f(x,f(f(y,z),f(y,x))),f(y,f(f(f(y,x),u),u))) = y. f(f(x,f(f(y,z),f(y,x))),f(y,f(f(f(x,y),u),u))) = y. f(f(x,f(f(y,x),f(y,z))),f(y,f(f(f(y,x),u),u))) = y. f(f(x,f(f(y,x),f(y,z))),f(y,f(f(f(x,y),u),u))) = y. f(f(x,f(f(y,x),f(z,y))),f(y,f(f(f(y,x),u),u))) = y. f(f(x,f(f(y,x),f(z,y))),f(y,f(f(f(x,y),u),u))) = y. f(f(x,f(f(y,z),f(y,x))),f(y,f(f(u,f(y,x)),u))) = y. f(f(x,f(f(y,z),f(y,x))),f(y,f(f(u,f(x,y)),u))) = y. f(f(x,f(f(y,x),f(y,z))),f(y,f(f(u,f(y,x)),u))) = y. f(f(x,f(f(y,x),f(y,z))),f(y,f(f(u,f(x,y)),u))) = y. f(f(x,f(f(y,x),f(z,y))),f(y,f(f(u,f(y,x)),u))) = y. f(f(x,f(f(y,x),f(z,y))),f(y,f(f(u,f(x,y)),u))) = y. f(f(x,f(f(y,z),f(y,x))),f(y,f(u,f(f(y,x),u)))) = y. f(f(x,f(f(y,z),f(y,x))),f(y,f(u,f(f(x,y),u)))) = y. f(f(x,f(f(y,x),f(y,z))),f(y,f(u,f(f(y,x),u)))) = y. f(f(x,f(f(y,x),f(y,z))),f(y,f(u,f(f(x,y),u)))) = y. f(f(x,f(f(y,x),f(z,y))),f(y,f(u,f(f(y,x),u)))) = y. f(f(x,f(f(y,x),f(z,y))),f(y,f(u,f(f(x,y),u)))) = y. f(f(x,f(f(y,z),f(y,x))),f(y,f(u,f(u,f(y,x))))) = y. f(f(x,f(f(y,x),f(y,z))),f(y,f(u,f(u,f(y,x))))) = y. f(f(x,f(f(y,x),f(z,y))),f(y,f(u,f(u,f(y,x))))) = y. f(f(f(x,f(y,y)),y),f(f(f(f(z,u),u),f(z,y)),z)) = y. f(f(f(x,f(y,y)),y),f(f(f(f(z,u),z),f(u,y)),u)) = y. f(f(f(x,f(y,y)),y),f(f(f(z,f(u,z)),f(u,y)),u)) = y. f(f(f(x,f(y,y)),y),f(f(f(z,f(z,u)),f(u,y)),u)) = y. f(f(f(x,f(y,y)),y),f(f(f(z,y),f(f(u,z),u)),z)) = y. f(f(f(x,f(y,y)),y),f(f(f(z,y),f(f(z,u),u)),z)) = y. f(f(f(x,f(y,y)),y),f(f(f(z,y),f(u,f(u,z))),z)) = y. f(f(f(x,f(y,y)),y),f(f(f(z,y),f(u,f(z,u))),z)) = y. f(f(f(x,f(y,y)),y),f(z,f(f(f(u,z),u),f(y,z)))) = y. f(f(f(x,f(y,y)),y),f(z,f(f(f(z,u),u),f(y,z)))) = y. f(f(f(x,f(y,y)),y),f(z,f(f(u,f(u,z)),f(y,z)))) = y. f(f(f(x,f(y,y)),y),f(z,f(f(u,f(z,u)),f(y,z)))) = y. f(f(f(x,f(y,y)),y),f(z,f(f(y,z),f(f(u,z),u)))) = y. f(f(f(x,f(y,y)),y),f(z,f(f(y,z),f(f(z,u),u)))) = y. f(f(f(x,f(y,y)),y),f(z,f(f(z,y),f(f(u,z),u)))) = y. f(f(f(x,f(y,y)),y),f(z,f(f(z,y),f(f(z,u),u)))) = y. f(f(f(x,f(y,y)),y),f(z,f(f(y,z),f(u,f(u,z))))) = y. f(f(f(x,f(y,y)),y),f(z,f(f(y,z),f(u,f(z,u))))) = y. f(f(f(x,f(y,y)),y),f(z,f(f(z,y),f(u,f(u,z))))) = y. f(f(f(x,f(y,y)),y),f(z,f(f(z,y),f(u,f(z,u))))) = y. % clausefilter non-MOL-OML false_in_all: checked 296, passed 238, 4.42 seconds. ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/backup.Mar10/OL.6 ================================================ interpretation(6, [ function(^(_,_), [ 0,0,0,0,0,0, 0,1,2,3,4,5, 0,2,2,0,0,0, 0,3,0,3,0,0, 0,4,0,0,4,0, 0,5,0,0,0,5]), function(v(_,_), [ 0,1,2,3,4,5, 1,1,1,1,1,1, 2,1,2,1,1,1, 3,1,1,3,1,1, 4,1,1,1,4,1, 5,1,1,1,1,5]), function(c(_), [1,0,3,2,5,4]), function(f(_,_), [ 1,1,1,1,1,1, 1,0,3,2,5,4, 1,3,3,1,1,1, 1,2,1,2,1,1, 1,5,1,1,5,1, 1,4,1,1,1,4])]). interpretation(6, [ function(^(_,_), [ 0,0,0,0,0,0, 0,1,2,3,4,5, 0,2,2,0,0,5, 0,3,0,3,3,0, 0,4,0,3,4,0, 0,5,5,0,0,5]), function(v(_,_), [ 0,1,2,3,4,5, 1,1,1,1,1,1, 2,1,2,1,1,2, 3,1,1,3,4,1, 4,1,1,4,4,1, 5,1,2,1,1,5]), function(c(_), [1,0,3,2,5,4]), function(f(_,_), [ 1,1,1,1,1,1, 1,0,3,2,5,4, 1,3,3,1,1,4, 1,2,1,2,2,1, 1,5,1,2,5,1, 1,4,4,1,1,4])]). % isofilter: input=5, kept=2, checks=3, perms=3, 0.01 seconds. ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/backup.Mar10/OL.8 ================================================ interpretation(8, [ function(^(_,_), [ 0,0,0,0,0,0,0,0, 0,1,2,3,4,5,6,7, 0,2,2,0,0,0,0,0, 0,3,0,3,0,0,0,0, 0,4,0,0,4,0,0,0, 0,5,0,0,0,5,0,0, 0,6,0,0,0,0,6,0, 0,7,0,0,0,0,0,7]), function(v(_,_), [ 0,1,2,3,4,5,6,7, 1,1,1,1,1,1,1,1, 2,1,2,1,1,1,1,1, 3,1,1,3,1,1,1,1, 4,1,1,1,4,1,1,1, 5,1,1,1,1,5,1,1, 6,1,1,1,1,1,6,1, 7,1,1,1,1,1,1,7]), function(c(_), [1,0,3,2,5,4,7,6]), function(f(_,_), [ 1,1,1,1,1,1,1,1, 1,0,3,2,5,4,7,6, 1,3,3,1,1,1,1,1, 1,2,1,2,1,1,1,1, 1,5,1,1,5,1,1,1, 1,4,1,1,1,4,1,1, 1,7,1,1,1,1,7,1, 1,6,1,1,1,1,1,6])]). interpretation(8, [ function(^(_,_), [ 0,0,0,0,0,0,0,0, 0,1,2,3,4,5,6,7, 0,2,2,0,0,0,0,0, 0,3,0,3,0,0,0,0, 0,4,0,0,4,0,0,7, 0,5,0,0,0,5,5,0, 0,6,0,0,0,5,6,0, 0,7,0,0,7,0,0,7]), function(v(_,_), [ 0,1,2,3,4,5,6,7, 1,1,1,1,1,1,1,1, 2,1,2,1,1,1,1,1, 3,1,1,3,1,1,1,1, 4,1,1,1,4,1,1,4, 5,1,1,1,1,5,6,1, 6,1,1,1,1,6,6,1, 7,1,1,1,4,1,1,7]), function(c(_), [1,0,3,2,5,4,7,6]), function(f(_,_), [ 1,1,1,1,1,1,1,1, 1,0,3,2,5,4,7,6, 1,3,3,1,1,1,1,1, 1,2,1,2,1,1,1,1, 1,5,1,1,5,1,1,6, 1,4,1,1,1,4,4,1, 1,7,1,1,1,4,7,1, 1,6,1,1,6,1,1,6])]). interpretation(8, [ function(^(_,_), [ 0,0,0,0,0,0,0,0, 0,1,2,3,4,5,6,7, 0,2,2,0,0,7,0,7, 0,3,0,3,0,0,3,0, 0,4,0,0,4,0,4,0, 0,5,7,0,0,5,0,7, 0,6,0,3,4,0,6,0, 0,7,7,0,0,7,0,7]), function(v(_,_), [ 0,1,2,3,4,5,6,7, 1,1,1,1,1,1,1,1, 2,1,2,1,1,1,1,2, 3,1,1,3,6,1,6,1, 4,1,1,6,4,1,6,1, 5,1,1,1,1,5,1,5, 6,1,1,6,6,1,6,1, 7,1,2,1,1,5,1,7]), function(c(_), [1,0,3,2,5,4,7,6]), function(f(_,_), [ 1,1,1,1,1,1,1,1, 1,0,3,2,5,4,7,6, 1,3,3,1,1,6,1,6, 1,2,1,2,1,1,2,1, 1,5,1,1,5,1,5,1, 1,4,6,1,1,4,1,6, 1,7,1,2,5,1,7,1, 1,6,6,1,1,6,1,6])]). interpretation(8, [ function(^(_,_), [ 0,0,0,0,0,0,0,0, 0,1,2,3,4,5,6,7, 0,2,2,0,0,5,2,0, 0,3,0,3,3,0,0,7, 0,4,0,3,4,0,0,7, 0,5,5,0,0,5,5,0, 0,6,2,0,0,5,6,0, 0,7,0,7,7,0,0,7]), function(v(_,_), [ 0,1,2,3,4,5,6,7, 1,1,1,1,1,1,1,1, 2,1,2,1,1,2,6,1, 3,1,1,3,4,1,1,3, 4,1,1,4,4,1,1,4, 5,1,2,1,1,5,6,1, 6,1,6,1,1,6,6,1, 7,1,1,3,4,1,1,7]), function(c(_), [1,0,3,2,5,4,7,6]), function(f(_,_), [ 1,1,1,1,1,1,1,1, 1,0,3,2,5,4,7,6, 1,3,3,1,1,4,3,1, 1,2,1,2,2,1,1,6, 1,5,1,2,5,1,1,6, 1,4,4,1,1,4,4,1, 1,7,3,1,1,4,7,1, 1,6,1,6,6,1,1,6])]). interpretation(8, [ function(^(_,_), [ 0,0,0,0,0,0,0,0, 0,1,2,3,4,5,6,7, 0,2,2,0,0,2,2,0, 0,3,0,3,4,7,4,7, 0,4,0,4,4,0,4,0, 0,5,2,7,0,5,2,7, 0,6,2,4,4,2,6,0, 0,7,0,7,0,7,0,7]), function(v(_,_), [ 0,1,2,3,4,5,6,7, 1,1,1,1,1,1,1,1, 2,1,2,1,6,5,6,5, 3,1,1,3,3,1,1,3, 4,1,6,3,4,1,6,3, 5,1,5,1,1,5,1,5, 6,1,6,1,6,1,6,1, 7,1,5,3,3,5,1,7]), function(c(_), [1,0,3,2,5,4,7,6]), function(f(_,_), [ 1,1,1,1,1,1,1,1, 1,0,3,2,5,4,7,6, 1,3,3,1,1,3,3,1, 1,2,1,2,5,6,5,6, 1,5,1,5,5,1,5,1, 1,4,3,6,1,4,3,6, 1,7,3,5,5,3,7,1, 1,6,1,6,1,6,1,6])]). % isofilter: input=61, kept=5, checks=56, perms=80, 0.18 seconds. ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/backup.Mar10/OL.8.out ================================================ interpretation(8, [ function(^(_,_), [0,0,0,0,0,0,0,0,0,1,2,3,4,5,6,7,0,2,2,0,0,0,0,0,0,3,0,3,0,0,0,0,0,4,0,0,4,0,0,0,0,5,0,0,0,5,0,0,0,6,0,0,0,0,6,0,0,7,0,0,0,0,0,7]), function(v(_,_), [0,1,2,3,4,5,6,7,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,3,1,1,3,1,1,1,1,4,1,1,1,4,1,1,1,5,1,1,1,1,5,1,1,6,1,1,1,1,1,6,1,7,1,1,1,1,1,1,7]), function(c(_), [1,0,3,2,5,4,7,6]), function(f(_,_), [1,1,1,1,1,1,1,1,1,0,3,2,5,4,7,6,1,3,3,1,1,1,1,1,1,2,1,2,1,1,1,1,1,5,1,1,5,1,1,1,1,4,1,1,1,4,1,1,1,7,1,1,1,1,7,1,1,6,1,1,1,1,1,6])]). interpretation(8, [ function(^(_,_), [0,0,0,0,0,0,0,0,0,1,2,3,4,5,6,7,0,2,2,0,0,0,0,0,0,3,0,3,0,0,0,0,0,4,0,0,4,0,0,7,0,5,0,0,0,5,5,0,0,6,0,0,0,5,6,0,0,7,0,0,7,0,0,7]), function(v(_,_), [0,1,2,3,4,5,6,7,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,3,1,1,3,1,1,1,1,4,1,1,1,4,1,1,4,5,1,1,1,1,5,6,1,6,1,1,1,1,6,6,1,7,1,1,1,4,1,1,7]), function(c(_), [1,0,3,2,5,4,7,6]), function(f(_,_), [1,1,1,1,1,1,1,1,1,0,3,2,5,4,7,6,1,3,3,1,1,1,1,1,1,2,1,2,1,1,1,1,1,5,1,1,5,1,1,6,1,4,1,1,1,4,4,1,1,7,1,1,1,4,7,1,1,6,1,1,6,1,1,6])]). interpretation(8, [ function(^(_,_), [0,0,0,0,0,0,0,0,0,1,2,3,4,5,6,7,0,2,2,0,0,7,0,7,0,3,0,3,0,0,3,0,0,4,0,0,4,0,4,0,0,5,7,0,0,5,0,7,0,6,0,3,4,0,6,0,0,7,7,0,0,7,0,7]), function(v(_,_), [0,1,2,3,4,5,6,7,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,2,3,1,1,3,6,1,6,1,4,1,1,6,4,1,6,1,5,1,1,1,1,5,1,5,6,1,1,6,6,1,6,1,7,1,2,1,1,5,1,7]), function(c(_), [1,0,3,2,5,4,7,6]), function(f(_,_), [1,1,1,1,1,1,1,1,1,0,3,2,5,4,7,6,1,3,3,1,1,6,1,6,1,2,1,2,1,1,2,1,1,5,1,1,5,1,5,1,1,4,6,1,1,4,1,6,1,7,1,2,5,1,7,1,1,6,6,1,1,6,1,6])]). interpretation(8, [ function(^(_,_), [0,0,0,0,0,0,0,0,0,1,2,3,4,5,6,7,0,2,2,0,0,5,2,0,0,3,0,3,3,0,0,7,0,4,0,3,4,0,0,7,0,5,5,0,0,5,5,0,0,6,2,0,0,5,6,0,0,7,0,7,7,0,0,7]), function(v(_,_), [0,1,2,3,4,5,6,7,1,1,1,1,1,1,1,1,2,1,2,1,1,2,6,1,3,1,1,3,4,1,1,3,4,1,1,4,4,1,1,4,5,1,2,1,1,5,6,1,6,1,6,1,1,6,6,1,7,1,1,3,4,1,1,7]), function(c(_), [1,0,3,2,5,4,7,6]), function(f(_,_), [1,1,1,1,1,1,1,1,1,0,3,2,5,4,7,6,1,3,3,1,1,4,3,1,1,2,1,2,2,1,1,6,1,5,1,2,5,1,1,6,1,4,4,1,1,4,4,1,1,7,3,1,1,4,7,1,1,6,1,6,6,1,1,6])]). % interpfilter distributivity some_false: checked 5, passed 4, 0.01 seconds. ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/backup.Mar10/OL.8.upper-covers ================================================ % UPPER-COVERS of Lattice 1 ( (0 (2 3 4 5 6 7)) (1 ()) (2 (1)) (3 (1)) (4 (1)) (5 (1)) (6 (1)) (7 (1)) ) % end of upper-covers % UPPER-COVERS of Lattice 2 ( (0 (2 3 5 7)) (1 ()) (2 (1)) (3 (1)) (4 (1)) (5 (6)) (6 (1)) (7 (4)) ) % end of upper-covers % UPPER-COVERS of Lattice 3 ( (0 (3 4 7)) (1 ()) (2 (1)) (3 (6)) (4 (6)) (5 (1)) (6 (1)) (7 (2 5)) ) % end of upper-covers % UPPER-COVERS of Lattice 4 ( (0 (5 7)) (1 ()) (2 (6)) (3 (4)) (4 (1)) (5 (2)) (6 (1)) (7 (3)) ) % end of upper-covers % UPPER-COVERS of Lattice 5 ( (0 (2 4 7)) (1 ()) (2 (5 6)) (3 (1)) (4 (3 6)) (5 (1)) (6 (1)) (7 (3 5)) ) % end of upper-covers % upper-covers: translated=5 ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/backup.Mar10/lattice-sax.rewritten ================================================ y = y. y = y. (x v (v ^ ((x ^ z) v (x ^ u)))) ^ (w v ((x v v6) ^ (x v v7))) = x. (x v (v ^ ((x ^ z) v (x ^ u)))) ^ (v7 v ((x v w) ^ (x v v6))) = x. % rewriter lattice.rules: rewrote 4 terms with 42 rewrite steps in 0.00 seconds. ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/backup.Mar10/meet-join-equations.out ================================================ x v y = y v x. (x v y) v z = x v (y v z). x v (x ^ y) = x. (((y v x) ^ x) v (((z ^ (x v x)) v (u ^ x)) ^ v)) ^ (w v ((v6 v x) ^ (x v v7))) = x. % latfilter: checked 6, passed 4, user 0.00, system 0.00. ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/backup.Mar10/mjc01s-equations.out ================================================ x v y = y v x. (x v y) v z = x v (y v z). x v (x ^ y) = x. (((y v x) ^ x) v (((z ^ (x v x)) v (u ^ x)) ^ v)) ^ (w v ((v6 v x) ^ (x v v7))) = x. x ^ c(x) = 0. c(x ^ y) = c(x) v c(y). c(x v y) = c(x) ^ c(y). c(c(x)) = x. f(f(x,x),f(x,y)) = x. f(x,f(x,x)) = f(y,f(y,y)). f(x,f(f(y,z),f(y,z))) = f(z,f(f(y,x),f(y,x))). % olfilter: checked 16, passed 11, user 0.00, system 0.00. ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/backup.Mar10/qg.iso3 ================================================ interpretation(3, [ function(*(_,_), [ 0,1,2, 1,2,0, 2,0,1]), function(/(_,_), [ 0,2,1, 1,0,2, 2,1,0]), function(\(_,_), [ 0,1,2, 2,0,1, 1,2,0])]). interpretation(3, [ function(*(_,_), [ 0,1,2, 2,0,1, 1,2,0]), function(/(_,_), [ 0,1,2, 2,0,1, 1,2,0]), function(\(_,_), [ 0,1,2, 1,2,0, 2,0,1])]). interpretation(3, [ function(*(_,_), [ 0,2,1, 1,0,2, 2,1,0]), function(/(_,_), [ 0,1,2, 1,2,0, 2,0,1]), function(\(_,_), [ 0,2,1, 1,0,2, 2,1,0])]). interpretation(3, [ function(*(_,_), [ 0,2,1, 2,1,0, 1,0,2]), function(/(_,_), [ 0,2,1, 2,1,0, 1,0,2]), function(\(_,_), [ 0,2,1, 2,1,0, 1,0,2])]). interpretation(3, [ function(*(_,_), [ 1,0,2, 0,2,1, 2,1,0]), function(/(_,_), [ 1,0,2, 0,2,1, 2,1,0]), function(\(_,_), [ 1,0,2, 0,2,1, 2,1,0])]). % isofilter: input=8, kept=5, checks=16, perms=88, 0.01 seconds. ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/backup.Mar10/qg.out3 ================================================ interpretation( 3, [ function(*(_,_), [0,1,2, 1,2,0, 2,0,1]), function(/(_,_), [0,2,1, 1,0,2, 2,1,0]), function(\(_,_), [0,1,2, 2,0,1, 1,2,0]) ]). interpretation( 3, [ function(*(_,_), [0,1,2, 2,0,1, 1,2,0]), function(/(_,_), [0,1,2, 2,0,1, 1,2,0]), function(\(_,_), [0,1,2, 1,2,0, 2,0,1]) ]). interpretation( 3, [ function(*(_,_), [0,2,1, 1,0,2, 2,1,0]), function(/(_,_), [0,1,2, 1,2,0, 2,0,1]), function(\(_,_), [0,2,1, 1,0,2, 2,1,0]) ]). interpretation( 3, [ function(*(_,_), [0,2,1, 2,1,0, 1,0,2]), function(/(_,_), [0,2,1, 2,1,0, 1,0,2]), function(\(_,_), [0,2,1, 2,1,0, 1,0,2]) ]). interpretation( 3, [ function(*(_,_), [1,0,2, 0,2,1, 2,1,0]), function(/(_,_), [1,0,2, 0,2,1, 2,1,0]), function(\(_,_), [1,0,2, 0,2,1, 2,1,0]) ]). interpretation( 3, [ function(*(_,_), [1,2,0, 0,1,2, 2,0,1]), function(/(_,_), [1,2,0, 0,1,2, 2,0,1]), function(\(_,_), [2,0,1, 0,1,2, 1,2,0]) ]). interpretation( 3, [ function(*(_,_), [1,0,2, 2,1,0, 0,2,1]), function(/(_,_), [2,0,1, 0,1,2, 1,2,0]), function(\(_,_), [1,0,2, 2,1,0, 0,2,1]) ]). interpretation( 3, [ function(*(_,_), [1,2,0, 2,0,1, 0,1,2]), function(/(_,_), [2,1,0, 0,2,1, 1,0,2]), function(\(_,_), [2,0,1, 1,2,0, 0,1,2]) ]). ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/distributivity ================================================ x ^ (y v z) = (x ^ y) v (x ^ z). ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/err ================================================ ====== Starting search for domain size 3. ====== ----- ALL_MODELS EXIT (8 models) ----- ====== Starting search for domain size 8. ====== ----- ALL_MODELS EXIT (61 models) ----- ====== Starting search for domain size 6. ====== ----- ALL_MODELS EXIT (5 models) ----- ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/index.html ================================================ Miscellaneous LADR Applications

Miscellaneous LADR Applications


Here are examples of running the auxiliary programs described in the MACE4 manual. You can get a synopsis of each program by giving it an argument "help".

These activities are projects of the Mathematics and Computer Science Division of Argonne National Laboratory. ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/interp.OL6 ================================================ interpretation(6, [ function(c(_), [1,0,3,2,5,4]), function(^(_,_), [0,0,0,0,0,0,0,1,2,3,4,5,0,2,2,0,0,0,0,3,0,3,0,0,0,4,0,0,4,0,0,5,0,0,0,5]), function(v(_,_), [0,1,2,3,4,5,1,1,1,1,1,1,2,1,2,1,1,1,3,1,1,3,1,1,4,1,1,1,4,1,5,1,1,1,1,5]), function(f(_,_), [1,1,1,1,1,1,1,0,3,2,5,4,1,3,3,1,1,1,1,2,1,2,1,1,1,5,1,1,5,1,1,4,1,1,1,4]), function(m(_,_), [0,0,0,0,0,0,0,1,2,3,4,5,0,2,2,0,0,0,0,3,0,3,0,0,0,4,0,0,4,0,0,5,0,0,0,5]), function(j(_,_), [0,1,2,3,4,5,1,1,1,1,1,1,2,1,2,1,1,1,3,1,1,3,1,1,4,1,1,1,4,1,5,1,1,1,1,5])]). interpretation(6, [ function(c(_), [1,0,3,2,5,4]), function(^(_,_), [0,0,0,0,0,0,0,1,2,3,4,5,0,2,2,0,0,5,0,3,0,3,3,0,0,4,0,3,4,0,0,5,5,0,0,5]), function(v(_,_), [0,1,2,3,4,5,1,1,1,1,1,1,2,1,2,1,1,2,3,1,1,3,4,1,4,1,1,4,4,1,5,1,2,1,1,5]), function(f(_,_), [1,1,1,1,1,1,1,0,3,2,5,4,1,3,3,1,1,4,1,2,1,2,2,1,1,5,1,2,5,1,1,4,4,1,1,4]), function(m(_,_), [0,0,0,0,0,0,0,1,2,3,4,5,0,2,2,0,0,5,0,3,0,3,3,0,0,4,0,3,4,0,0,5,5,0,0,5]), function(j(_,_), [0,1,2,3,4,5,1,1,1,1,1,1,2,1,2,1,1,2,3,1,1,3,4,1,4,1,1,4,4,1,5,1,2,1,1,5])]). % isofilter: input=5, kept=2, checks=3, perms=3, 0.01 seconds. ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/lattice-sax ================================================ % Each these four equations is single axiom for lattice theory (((x ^ y) v (y ^ (x v y))) ^ z) v (((x ^ (((x1 ^ y) v (y ^ x2)) v y)) v (((y ^ (((x1 v (y v x2)) ^ (x3 v y)) ^ y)) v (u ^ (y v (((x1 v (y v x2)) ^ (x3 v y)) ^ y)))) ^ (x v (((x1 ^ y) v (y ^ x2)) v y)))) ^ (((x ^ y) v (y ^ (x v y))) v z)) = y. % length 79, 7 variables (((x ^ y) v (y ^ (x v y))) ^ z) v (((x ^ (((x1 ^ y) v (y ^ x2)) v y)) v (((y ^ (((x1 v (y v x2)) ^ (x3 v y)) ^ y)) v (u ^ (y v (((y v xnew) ^ (x3 v y)) ^ y)))) ^ (x v (((x1 ^ y) v (y ^ x2)) v y)))) ^ (((x ^ y) v (y ^ (x v y))) v z)) = y. % length 77, 8 variables (((y v x) ^ x) v (((z ^ (x v x)) v (u ^ x)) ^ v)) ^ (w v ((v6 v x) ^ (x v v7))) = x. % A1 (((y v x) ^ x) v (((z ^ (x v x)) v (u ^ x)) ^ v)) ^ (((w v x) ^ (v6 v x)) v v7) = x. % A2 ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/lattice-sax.id-check ================================================ (((x ^ y) v (y ^ (x v y))) ^ z) v (((x ^ (((x1 ^ y) v (y ^ x2)) v y)) v (((y ^ (((x1 v (y v x2)) ^ (x3 v y)) ^ y)) v (u ^ (y v (((x1 v (y v x2)) ^ (x3 v y)) ^ y)))) ^ (x v (((x1 ^ y) v (y ^ x2)) v y)))) ^ (((x ^ y) v (y ^ (x v y))) v z)) = y. (((x ^ y) v (y ^ (x v y))) ^ z) v (((x ^ (((x1 ^ y) v (y ^ x2)) v y)) v (((y ^ (((x1 v (y v x2)) ^ (x3 v y)) ^ y)) v (u ^ (y v (((y v xnew) ^ (x3 v y)) ^ y)))) ^ (x v (((x1 ^ y) v (y ^ x2)) v y)))) ^ (((x ^ y) v (y ^ (x v y))) v z)) = y. (((y v x) ^ x) v (((z ^ (x v x)) v (u ^ x)) ^ v)) ^ (w v ((v6 v x) ^ (x v v7))) = x. (((y v x) ^ x) v (((z ^ (x v x)) v (u ^ x)) ^ v)) ^ (((w v x) ^ (v6 v x)) v v7) = x. % olfilter: checked 4, passed 4, user 0.00, system 0.01. ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/lattice.rules ================================================ op(400, infix, ^). op(400, infix, v). assoc_comm(^). % meet is associative and commutative assoc_comm(v). % join is associative and commutative clauses(theory). x ^ x = x. x ^ (x v y) = x. x v x = x. x v (x ^ y) = x. end_of_list. ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/meet-join-equations ================================================ % These are lattice identities x v y = y v x. (x v y) v z = x v (y v z). x v (x ^ y) = x. (((y v x) ^ x) v (((z ^ (x v x)) v (u ^ x)) ^ v)) ^ (w v ((v6 v x) ^ (x v v7))) = x. % A1 % These are not lattice identities x v (y ^ (x v z)) = (x v y) ^ (x v z). % Modularity x v (y ^ z) = (x v y) ^ (x v z). % Distributivity ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/mjc01s-equations ================================================ % These are OL identities x v y = y v x. (x v y) v z = x v (y v z). x v (x ^ y) = x. (((y v x) ^ x) v (((z ^ (x v x)) v (u ^ x)) ^ v)) ^ (w v ((v6 v x) ^ (x v v7))) = x. % A1 x ^ c(x) = 0. c(x ^ y) = c(x) v c(y). c(x v y) = c(x) ^ c(y). c(c(x)) = x. f(f(x,x),f(x,y)) = x. % f is the Sheffer stroke f(x,f(x,x)) = f(y,f(y,y)). f(x,f(f(y,z),f(y,z))) = f(z,f(f(y,x),f(y,x))). % These are not OL identities x v (y ^ (x v z)) = (x v y) ^ (x v z). % Modularity x v (y ^ z) = (x v y) ^ (x v z). % Distributivity x v (c(x) ^ (x v y)) = x v y. % OML law f(x,f(x,f(x,y))) = f(x,y). % OML law f(x,f(y,f(x,f(z,z)))) = f(x,f(z,f(x,f(y,y)))). % Modularity ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/non-MOL-OML ================================================ % These are all of the nonmodular OMLs up through size 16. interpretation(10, [ function(c(_), [1,0,5,6,7,2,3,4,9,8]), function(v(_,_), [0,1,2,3,4,5,6,7,8,9,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,2,1,2,3,1,1,3,1,1,1,1,1,1,4,1,1,1,4,4,1,1,1,4,5,1,1,1,4,5,1,8,8,4,6,1,1,1,1,1,6,1,1,1,7,1,2,1,1,8,1,7,8,2,8,1,1,1,1,8,1,8,8,1,9,1,2,1,4,4,1,2,1,9]), function(^(_,_), [0,0,0,0,0,0,0,0,0,0,0,1,2,3,4,5,6,7,8,9,0,2,2,0,9,0,0,7,7,9,0,3,0,3,0,0,0,0,0,0,0,4,9,0,4,5,0,0,5,9,0,5,0,0,5,5,0,0,5,0,0,6,0,0,0,0,6,0,0,0,0,7,7,0,0,0,0,7,7,0,0,8,7,0,5,5,0,7,8,0,0,9,9,0,9,0,0,0,0,9]), function(f(_,_), [1,1,1,1,1,1,1,1,1,1,1,0,5,6,7,2,3,4,9,8,1,5,5,1,8,1,1,4,4,8,1,6,1,6,1,1,1,1,1,1,1,7,8,1,7,2,1,1,2,8,1,2,1,1,2,2,1,1,2,1,1,3,1,1,1,1,3,1,1,1,1,4,4,1,1,1,1,4,4,1,1,9,4,1,2,2,1,4,9,1,1,8,8,1,8,1,1,1,1,8])]). % isofilter: input=2, kept=1, checks=1, perms=5, 0.02 seconds. interpretation(12, [ function(c(_), [1,0,5,6,7,2,3,4,9,8,11,10]), function(v(_,_), [0,1,2,3,4,5,6,7,8,9,10,11,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,2,1,2,1,1,3,1,1,3,1,1,1,1,1,1,1,1,4,1,1,1,4,4,1,1,1,4,1,1,5,1,1,1,4,5,1,8,8,4,1,1,6,1,1,1,1,1,6,1,1,1,1,1,7,1,2,1,1,8,1,7,8,2,1,1,8,1,1,1,1,8,1,8,8,1,1,1,9,1,2,1,4,4,1,2,1,9,1,1,10,1,1,1,1,1,1,1,1,1,10,1,11,1,1,1,1,1,1,1,1,1,1,11]), function(^(_,_), [0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,4,5,6,7,8,9,10,11,0,2,2,0,9,0,0,7,7,9,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,4,9,0,4,5,0,0,5,9,0,0,0,5,0,0,5,5,0,0,5,0,0,0,0,6,0,0,0,0,6,0,0,0,0,0,0,7,7,0,0,0,0,7,7,0,0,0,0,8,7,0,5,5,0,7,8,0,0,0,0,9,9,0,9,0,0,0,0,9,0,0,0,10,0,0,0,0,0,0,0,0,10,0,0,11,0,0,0,0,0,0,0,0,0,11]), function(f(_,_), [1,1,1,1,1,1,1,1,1,1,1,1,1,0,5,6,7,2,3,4,9,8,11,10,1,5,5,1,8,1,1,4,4,8,1,1,1,6,1,6,1,1,1,1,1,1,1,1,1,7,8,1,7,2,1,1,2,8,1,1,1,2,1,1,2,2,1,1,2,1,1,1,1,3,1,1,1,1,3,1,1,1,1,1,1,4,4,1,1,1,1,4,4,1,1,1,1,9,4,1,2,2,1,4,9,1,1,1,1,8,8,1,8,1,1,1,1,8,1,1,1,11,1,1,1,1,1,1,1,1,11,1,1,10,1,1,1,1,1,1,1,1,1,10])]). % isofilter: input=2, kept=1, checks=1, perms=49, 0.03 seconds. interpretation(14, [ function(c(_), [1,0,5,6,7,2,3,4,9,8,11,10,13,12]), function(v(_,_), [0,1,2,3,4,5,6,7,8,9,10,11,12,13,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,2,1,2,1,1,3,1,1,3,1,1,1,1,1,1,1,1,1,1,4,1,1,1,4,1,1,1,1,4,1,1,1,4,5,1,1,1,1,5,1,8,8,10,10,8,1,8,6,1,1,1,1,1,6,1,1,1,1,1,1,1,7,1,1,1,1,8,1,7,8,12,1,8,12,8,8,1,1,1,1,8,1,8,8,1,1,8,1,8,9,1,2,1,4,10,1,12,1,9,10,2,12,4,10,1,1,1,1,10,1,1,1,10,10,1,1,1,11,1,2,1,1,8,1,8,8,2,1,11,1,8,12,1,1,1,1,1,1,12,1,12,1,1,12,1,13,1,1,1,4,8,1,8,8,4,1,8,1,13]), function(^(_,_), [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,2,2,0,9,0,0,0,11,9,9,11,9,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,4,9,0,4,0,0,0,13,9,9,0,9,13,0,5,0,0,0,5,0,0,5,0,5,0,0,0,0,6,0,0,0,0,6,0,0,0,0,0,0,0,0,7,0,0,0,0,0,7,7,0,0,0,7,0,0,8,11,0,13,5,0,7,8,0,5,11,7,13,0,9,9,0,9,0,0,0,0,9,9,0,9,0,0,10,9,0,9,5,0,0,5,9,10,0,9,0,0,11,11,0,0,0,0,0,11,0,0,11,0,0,0,12,9,0,9,0,0,7,7,9,9,0,12,0,0,13,0,0,13,0,0,0,13,0,0,0,0,13]), function(f(_,_), [1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,5,6,7,2,3,4,9,8,11,10,13,12,1,5,5,1,8,1,1,1,10,8,8,10,8,1,1,6,1,6,1,1,1,1,1,1,1,1,1,1,1,7,8,1,7,1,1,1,12,8,8,1,8,12,1,2,1,1,1,2,1,1,2,1,2,1,1,1,1,3,1,1,1,1,3,1,1,1,1,1,1,1,1,4,1,1,1,1,1,4,4,1,1,1,4,1,1,9,10,1,12,2,1,4,9,1,2,10,4,12,1,8,8,1,8,1,1,1,1,8,8,1,8,1,1,11,8,1,8,2,1,1,2,8,11,1,8,1,1,10,10,1,1,1,1,1,10,1,1,10,1,1,1,13,8,1,8,1,1,4,4,8,8,1,13,1,1,12,1,1,12,1,1,1,12,1,1,1,1,12])]). interpretation(14, [ function(c(_), [1,0,5,6,7,2,3,4,9,8,11,10,13,12]), function(v(_,_), [0,1,2,3,4,5,6,7,8,9,10,11,12,13,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,2,1,2,1,1,1,1,3,1,1,3,1,1,1,1,1,1,1,1,1,1,4,1,1,1,4,4,1,1,1,4,1,1,1,1,5,1,1,1,4,5,1,8,8,4,1,1,1,1,6,1,1,1,1,1,6,1,1,1,1,1,1,1,7,1,2,1,1,8,1,7,8,2,1,1,1,1,8,1,1,1,1,8,1,8,8,1,1,1,1,1,9,1,2,1,4,4,1,2,1,9,1,1,1,1,10,1,1,1,1,1,1,1,1,1,10,1,1,1,11,1,1,1,1,1,1,1,1,1,1,11,1,1,12,1,1,1,1,1,1,1,1,1,1,1,12,1,13,1,1,1,1,1,1,1,1,1,1,1,1,13]), function(^(_,_), [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,2,2,0,9,0,0,7,7,9,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,4,9,0,4,5,0,0,5,9,0,0,0,0,0,5,0,0,5,5,0,0,5,0,0,0,0,0,0,6,0,0,0,0,6,0,0,0,0,0,0,0,0,7,7,0,0,0,0,7,7,0,0,0,0,0,0,8,7,0,5,5,0,7,8,0,0,0,0,0,0,9,9,0,9,0,0,0,0,9,0,0,0,0,0,10,0,0,0,0,0,0,0,0,10,0,0,0,0,11,0,0,0,0,0,0,0,0,0,11,0,0,0,12,0,0,0,0,0,0,0,0,0,0,12,0,0,13,0,0,0,0,0,0,0,0,0,0,0,13]), function(f(_,_), [1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,5,6,7,2,3,4,9,8,11,10,13,12,1,5,5,1,8,1,1,4,4,8,1,1,1,1,1,6,1,6,1,1,1,1,1,1,1,1,1,1,1,7,8,1,7,2,1,1,2,8,1,1,1,1,1,2,1,1,2,2,1,1,2,1,1,1,1,1,1,3,1,1,1,1,3,1,1,1,1,1,1,1,1,4,4,1,1,1,1,4,4,1,1,1,1,1,1,9,4,1,2,2,1,4,9,1,1,1,1,1,1,8,8,1,8,1,1,1,1,8,1,1,1,1,1,11,1,1,1,1,1,1,1,1,11,1,1,1,1,10,1,1,1,1,1,1,1,1,1,10,1,1,1,13,1,1,1,1,1,1,1,1,1,1,13,1,1,12,1,1,1,1,1,1,1,1,1,1,1,12])]). interpretation(14, [ function(c(_), [1,0,5,6,7,2,3,4,9,8,11,10,13,12]), function(v(_,_), [0,1,2,3,4,5,6,7,8,9,10,11,12,13,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,2,1,2,1,1,1,1,3,1,1,3,1,1,1,1,1,1,1,3,1,3,4,1,1,1,4,4,1,1,1,4,1,1,1,1,5,1,1,1,4,5,1,8,8,4,1,1,1,1,6,1,1,1,1,1,6,1,1,1,10,12,12,10,7,1,2,1,1,8,1,7,8,2,1,1,1,1,8,1,1,1,1,8,1,8,8,1,1,1,1,1,9,1,2,1,4,4,1,2,1,9,1,1,1,1,10,1,1,1,1,1,10,1,1,1,10,1,1,10,11,1,1,3,1,1,12,1,1,1,1,11,12,3,12,1,1,1,1,1,12,1,1,1,1,12,12,1,13,1,1,3,1,1,10,1,1,1,10,3,1,13]), function(^(_,_), [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,2,2,0,9,0,0,7,7,9,0,0,0,0,0,3,0,3,0,0,0,0,0,0,13,11,11,13,0,4,9,0,4,5,0,0,5,9,0,0,0,0,0,5,0,0,5,5,0,0,5,0,0,0,0,0,0,6,0,0,0,0,6,0,0,0,6,0,6,0,0,7,7,0,0,0,0,7,7,0,0,0,0,0,0,8,7,0,5,5,0,7,8,0,0,0,0,0,0,9,9,0,9,0,0,0,0,9,0,0,0,0,0,10,0,13,0,0,6,0,0,0,10,0,6,13,0,11,0,11,0,0,0,0,0,0,0,11,11,0,0,12,0,11,0,0,6,0,0,0,6,11,12,0,0,13,0,13,0,0,0,0,0,0,13,0,0,13]), function(f(_,_), [1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,5,6,7,2,3,4,9,8,11,10,13,12,1,5,5,1,8,1,1,4,4,8,1,1,1,1,1,6,1,6,1,1,1,1,1,1,12,10,10,12,1,7,8,1,7,2,1,1,2,8,1,1,1,1,1,2,1,1,2,2,1,1,2,1,1,1,1,1,1,3,1,1,1,1,3,1,1,1,3,1,3,1,1,4,4,1,1,1,1,4,4,1,1,1,1,1,1,9,4,1,2,2,1,4,9,1,1,1,1,1,1,8,8,1,8,1,1,1,1,8,1,1,1,1,1,11,1,12,1,1,3,1,1,1,11,1,3,12,1,10,1,10,1,1,1,1,1,1,1,10,10,1,1,13,1,10,1,1,3,1,1,1,3,10,13,1,1,12,1,12,1,1,1,1,1,1,12,1,1,12])]). % isofilter: input=23, kept=3, checks=20, perms=38324, 0.52 seconds. interpretation(16, [ function(c(_), [1,0,5,6,7,2,3,4,9,8,11,10,13,12,15,14]), function(v(_,_), [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,2,1,2,1,1,1,1,3,1,1,3,1,1,1,1,1,1,1,1,1,1,1,1,4,1,1,1,4,1,1,1,1,4,1,1,1,4,1,1,5,1,1,1,1,5,1,8,8,10,10,8,1,8,1,1,6,1,1,1,1,1,6,1,1,1,1,1,1,1,1,1,7,1,1,1,1,8,1,7,8,12,1,8,12,8,1,1,8,1,1,1,1,8,1,8,8,1,1,8,1,8,1,1,9,1,2,1,4,10,1,12,1,9,10,2,12,4,1,1,10,1,1,1,1,10,1,1,1,10,10,1,1,1,1,1,11,1,2,1,1,8,1,8,8,2,1,11,1,8,1,1,12,1,1,1,1,1,1,12,1,12,1,1,12,1,1,1,13,1,1,1,4,8,1,8,8,4,1,8,1,13,1,1,14,1,1,1,1,1,1,1,1,1,1,1,1,1,14,1,15,1,1,1,1,1,1,1,1,1,1,1,1,1,1,15]), function(^(_,_), [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,2,2,0,9,0,0,0,11,9,9,11,9,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,0,4,0,0,0,13,9,9,0,9,13,0,0,0,5,0,0,0,5,0,0,5,0,5,0,0,0,0,0,0,6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,7,7,0,0,0,7,0,0,0,0,8,11,0,13,5,0,7,8,0,5,11,7,13,0,0,0,9,9,0,9,0,0,0,0,9,9,0,9,0,0,0,0,10,9,0,9,5,0,0,5,9,10,0,9,0,0,0,0,11,11,0,0,0,0,0,11,0,0,11,0,0,0,0,0,12,9,0,9,0,0,7,7,9,9,0,12,0,0,0,0,13,0,0,13,0,0,0,13,0,0,0,0,13,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,15]), function(f(_,_), [1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,5,6,7,2,3,4,9,8,11,10,13,12,15,14,1,5,5,1,8,1,1,1,10,8,8,10,8,1,1,1,1,6,1,6,1,1,1,1,1,1,1,1,1,1,1,1,1,7,8,1,7,1,1,1,12,8,8,1,8,12,1,1,1,2,1,1,1,2,1,1,2,1,2,1,1,1,1,1,1,3,1,1,1,1,3,1,1,1,1,1,1,1,1,1,1,4,1,1,1,1,1,4,4,1,1,1,4,1,1,1,1,9,10,1,12,2,1,4,9,1,2,10,4,12,1,1,1,8,8,1,8,1,1,1,1,8,8,1,8,1,1,1,1,11,8,1,8,2,1,1,2,8,11,1,8,1,1,1,1,10,10,1,1,1,1,1,10,1,1,10,1,1,1,1,1,13,8,1,8,1,1,4,4,8,8,1,13,1,1,1,1,12,1,1,12,1,1,1,12,1,1,1,1,12,1,1,1,15,1,1,1,1,1,1,1,1,1,1,1,1,15,1,1,14,1,1,1,1,1,1,1,1,1,1,1,1,1,14])]). interpretation(16, [ function(c(_), [1,0,5,6,7,2,3,4,9,8,11,10,13,12,15,14]), function(v(_,_), [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,2,1,2,1,1,1,1,3,1,1,3,1,1,1,1,1,1,1,1,1,3,1,3,4,1,1,1,4,1,1,1,1,4,1,1,1,4,1,1,5,1,1,1,1,5,1,8,8,10,10,8,1,8,1,1,6,1,1,1,1,1,6,12,1,12,1,1,12,14,14,12,7,1,1,1,1,8,12,7,8,12,1,8,12,8,1,12,8,1,1,1,1,8,1,8,8,1,1,8,1,8,1,1,9,1,2,1,4,10,12,12,1,9,10,2,12,4,1,12,10,1,1,1,1,10,1,1,1,10,10,1,1,1,1,1,11,1,2,1,1,8,1,8,8,2,1,11,1,8,1,1,12,1,1,1,1,1,12,12,1,12,1,1,12,1,1,12,13,1,1,3,4,8,14,8,8,4,1,8,1,13,14,3,14,1,1,1,1,1,14,1,1,1,1,1,1,14,14,1,15,1,1,3,1,1,12,12,1,12,1,1,12,3,1,15]), function(^(_,_), [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,2,2,0,9,0,0,0,11,9,9,11,9,0,0,0,0,3,0,3,13,0,0,0,13,0,0,0,15,13,13,15,0,4,9,13,4,0,0,0,13,9,9,0,9,13,13,0,0,5,0,0,0,5,0,0,5,0,5,0,0,0,0,0,0,6,0,0,0,0,6,0,0,0,0,0,6,0,6,0,0,7,0,0,0,0,0,7,7,0,0,0,7,0,0,0,0,8,11,13,13,5,0,7,8,0,5,11,7,13,13,0,0,9,9,0,9,0,0,0,0,9,9,0,9,0,0,0,0,10,9,0,9,5,0,0,5,9,10,0,9,0,0,0,0,11,11,0,0,0,0,0,11,0,0,11,0,0,0,0,0,12,9,15,9,0,6,7,7,9,9,0,12,0,6,15,0,13,0,13,13,0,0,0,13,0,0,0,0,13,13,0,0,14,0,13,13,0,6,0,13,0,0,0,6,13,14,0,0,15,0,15,0,0,0,0,0,0,0,0,15,0,0,15]), function(f(_,_), [1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,5,6,7,2,3,4,9,8,11,10,13,12,15,14,1,5,5,1,8,1,1,1,10,8,8,10,8,1,1,1,1,6,1,6,12,1,1,1,12,1,1,1,14,12,12,14,1,7,8,12,7,1,1,1,12,8,8,1,8,12,12,1,1,2,1,1,1,2,1,1,2,1,2,1,1,1,1,1,1,3,1,1,1,1,3,1,1,1,1,1,3,1,3,1,1,4,1,1,1,1,1,4,4,1,1,1,4,1,1,1,1,9,10,12,12,2,1,4,9,1,2,10,4,12,12,1,1,8,8,1,8,1,1,1,1,8,8,1,8,1,1,1,1,11,8,1,8,2,1,1,2,8,11,1,8,1,1,1,1,10,10,1,1,1,1,1,10,1,1,10,1,1,1,1,1,13,8,14,8,1,3,4,4,8,8,1,13,1,3,14,1,12,1,12,12,1,1,1,12,1,1,1,1,12,12,1,1,15,1,12,12,1,3,1,12,1,1,1,3,12,15,1,1,14,1,14,1,1,1,1,1,1,1,1,14,1,1,14])]). interpretation(16, [ function(c(_), [1,0,5,6,7,2,3,4,9,8,11,10,13,12,15,14]), function(v(_,_), [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,2,1,2,1,1,1,1,1,1,3,1,1,3,1,1,1,1,1,1,1,1,1,1,1,1,4,1,1,1,4,4,1,1,1,4,1,1,1,1,1,1,5,1,1,1,4,5,1,8,8,4,1,1,1,1,1,1,6,1,1,1,1,1,6,1,1,1,1,1,1,1,1,1,7,1,2,1,1,8,1,7,8,2,1,1,1,1,1,1,8,1,1,1,1,8,1,8,8,1,1,1,1,1,1,1,9,1,2,1,4,4,1,2,1,9,1,1,1,1,1,1,10,1,1,1,1,1,1,1,1,1,10,1,1,1,1,1,11,1,1,1,1,1,1,1,1,1,1,11,1,1,1,1,12,1,1,1,1,1,1,1,1,1,1,1,12,1,1,1,13,1,1,1,1,1,1,1,1,1,1,1,1,13,1,1,14,1,1,1,1,1,1,1,1,1,1,1,1,1,14,1,15,1,1,1,1,1,1,1,1,1,1,1,1,1,1,15]), function(^(_,_), [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,2,2,0,9,0,0,7,7,9,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,0,4,5,0,0,5,9,0,0,0,0,0,0,0,5,0,0,5,5,0,0,5,0,0,0,0,0,0,0,0,6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,7,7,0,0,0,0,7,7,0,0,0,0,0,0,0,0,8,7,0,5,5,0,7,8,0,0,0,0,0,0,0,0,9,9,0,9,0,0,0,0,9,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,15]), function(f(_,_), [1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,5,6,7,2,3,4,9,8,11,10,13,12,15,14,1,5,5,1,8,1,1,4,4,8,1,1,1,1,1,1,1,6,1,6,1,1,1,1,1,1,1,1,1,1,1,1,1,7,8,1,7,2,1,1,2,8,1,1,1,1,1,1,1,2,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,3,1,1,1,1,3,1,1,1,1,1,1,1,1,1,1,4,4,1,1,1,1,4,4,1,1,1,1,1,1,1,1,9,4,1,2,2,1,4,9,1,1,1,1,1,1,1,1,8,8,1,8,1,1,1,1,8,1,1,1,1,1,1,1,11,1,1,1,1,1,1,1,1,11,1,1,1,1,1,1,10,1,1,1,1,1,1,1,1,1,10,1,1,1,1,1,13,1,1,1,1,1,1,1,1,1,1,13,1,1,1,1,12,1,1,1,1,1,1,1,1,1,1,1,12,1,1,1,15,1,1,1,1,1,1,1,1,1,1,1,1,15,1,1,14,1,1,1,1,1,1,1,1,1,1,1,1,1,14])]). interpretation(16, [ function(c(_), [1,0,5,6,7,2,3,4,9,8,11,10,13,12,15,14]), function(v(_,_), [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,2,1,2,1,1,1,1,1,1,3,1,1,3,1,1,1,1,1,1,1,1,1,1,1,1,4,1,1,1,4,4,1,1,1,4,1,1,1,1,1,1,5,1,1,1,4,5,1,8,8,4,1,1,1,1,1,1,6,1,1,1,1,1,6,1,1,1,1,1,1,1,1,1,7,1,2,1,1,8,1,7,8,2,1,1,1,1,1,1,8,1,1,1,1,8,1,8,8,1,1,1,1,1,1,1,9,1,2,1,4,4,1,2,1,9,1,1,1,1,1,1,10,1,1,1,1,1,1,1,1,1,10,1,1,10,1,10,11,1,1,1,1,1,1,1,1,1,1,11,12,14,14,12,12,1,1,1,1,1,1,1,1,1,1,12,12,1,1,12,13,1,1,1,1,1,1,1,1,1,10,14,1,13,14,10,14,1,1,1,1,1,1,1,1,1,1,14,1,14,14,1,15,1,1,1,1,1,1,1,1,1,10,12,12,10,1,15]), function(^(_,_), [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,2,2,0,9,0,0,7,7,9,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,0,4,5,0,0,5,9,0,0,0,0,0,0,0,5,0,0,5,5,0,0,5,0,0,0,0,0,0,0,0,6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,7,7,0,0,0,0,7,7,0,0,0,0,0,0,0,0,8,7,0,5,5,0,7,8,0,0,0,0,0,0,0,0,9,9,0,9,0,0,0,0,9,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,10,0,15,13,13,15,0,11,0,0,0,0,0,0,0,0,0,11,11,0,11,0,0,12,0,0,0,0,0,0,0,0,15,11,12,0,11,15,0,13,0,0,0,0,0,0,0,0,13,0,0,13,13,0,0,14,0,0,0,0,0,0,0,0,13,11,11,13,14,0,0,15,0,0,0,0,0,0,0,0,15,0,15,0,0,15]), function(f(_,_), [1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,5,6,7,2,3,4,9,8,11,10,13,12,15,14,1,5,5,1,8,1,1,4,4,8,1,1,1,1,1,1,1,6,1,6,1,1,1,1,1,1,1,1,1,1,1,1,1,7,8,1,7,2,1,1,2,8,1,1,1,1,1,1,1,2,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,3,1,1,1,1,3,1,1,1,1,1,1,1,1,1,1,4,4,1,1,1,1,4,4,1,1,1,1,1,1,1,1,9,4,1,2,2,1,4,9,1,1,1,1,1,1,1,1,8,8,1,8,1,1,1,1,8,1,1,1,1,1,1,1,11,1,1,1,1,1,1,1,1,11,1,14,12,12,14,1,10,1,1,1,1,1,1,1,1,1,10,10,1,10,1,1,13,1,1,1,1,1,1,1,1,14,10,13,1,10,14,1,12,1,1,1,1,1,1,1,1,12,1,1,12,12,1,1,15,1,1,1,1,1,1,1,1,12,10,10,12,15,1,1,14,1,1,1,1,1,1,1,1,14,1,14,1,1,14])]). % isofilter: input=61, kept=4, checks=57, perms=993828, 3.45 seconds. ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/qg.in ================================================ assign(max_models, -1). % This means there is no limit. op(400, infix, *). op(400, infix, \). op(400, infix, /). formulas(theory). % Quasigroup axioms x * (x \ y) = y. x \ (x * y) = y. (x / y) * y = x. (x * y) / y = x. end_of_list. ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/run-all ================================================ #!/bin/csh # This script should run the examples described in index.html. set path = (../bin $path) # Remove isomorphic interpretations. mace4 -n3 < qg.in | get_interps > qg.out3 isofilter < qg.out3 > qg.iso3 # Use a set of interpretations to filter a stream of clauses. clausefilter non-MOL-OML false_in_all < MOL-cand.296 > MOL-cand.238 # Use a set of clauses to filter a stream of interpretations: # Get the nondistributive OLs (BAs) of order 8. mace4 -n8 < OL.in | get_interps | isofilter > OL.8 interpfilter distributivity some_false < OL.8 > OL.8.out # Given a set of interpretations and a stream of clauses, # print the interpretations that model each clause. mace4 -n6 < OL.in | get_interps | isofilter > OL.6 clausetester OL.6 < BA-sheffer > BA-sheffer.out # Given a set of rewrite rules, rewrite a stream of terms or clauses. rewriter lattice.rules < lattice-sax > lattice-sax.rewritten # Decision procedure for lattice identities in meet and join. latfilter < meet-join-equations > meet-join-equations.out # Decision procedure for ortholattice identities in # meet/join/complement/0/1/shefferstroke. olfilter < mjc01s-equations > mjc01s-equations.out # Print the upper covers of the 5 ortholattices of order 8. upper-covers < OL.8 > OL.8.upper-covers ================================================ FILE: models/symbolic_solvers/Prover9/apps.examples/sed1 ================================================ s/list(clauses)/clauses(theory)/ s/list(interpretations)/terms(interpretations)/ ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/.gdb_history ================================================ complete run ../lattice.rul run ../apps.examples/lattice.rules < ../apps.examples/lattice-sax break memory.c:129 run where up down up break ol_identity run < temp3 call p_term(equality) break neg_normal_form cont break neg_norm_form run cont call p_term(t) next call p_term(t) cont call p_term(t) cont call p_term(t) run cont call p_term(t) next cont call p_term(t) next call p_term(t) up call p_term(equality) run next call p_term(equality) next disable 2 run next call p_term(b0) next call p_term(b1) call p_term(equality) next print ok print ok1 print ok2 run enable 2 cont call p_term(t) next call p_term(a0) call p_term(a1) call p_term(s) ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/H65d.givens ================================================ x v y = y v x. (x v y) v z = x v (y v z). x ^ y = y ^ x. (x ^ y) ^ z = x ^ (y ^ z). x ^ (x v y) = x. x v (x ^ y) = x. x v x' = 1. x ^ x' = 0. x v y != 1 | x ^ y != 0 | x' = y. x ^ (y v (x ^ ((x ^ y) v (z ^ u)))) = x ^ (y v (z ^ u)). (c1 ^ c2) v (c1 ^ c3) != c1 ^ (c2 v c3) # answer(distributivity). x v (y v z) = y v (x v z). x ^ x = x. x v x = x. x ^ 1 = x. x v 0 = x. x ^ (y ^ z) = y ^ (x ^ z). 1 ^ x = x. 1' = 0. 0 v x = x. 0' = 1. x ^ (y v x) = x. 1 v x = 1. 0 ^ x = 0. x v 1 = 1. x ^ 0 = 0. (x v y) ^ (x v (y v z)) = x v y. x v (y ^ x) = x. 1 != x | x' = 0. 0 != x | x' = 1. x v (x' v y) = 1. x ^ ((x v y) ^ z) = x ^ z. x ^ (x' ^ y) = 0. x v (y v x') = 1. x ^ (y ^ x') = 0. x ^ (x v y)' = 0. x ^ (y ^ ((x ^ y) v z)) = x ^ y. x ^ (y v x)' = 0. x ^ (y v (x v z)) = x. x ^ (x ^ y) = x ^ y. x ^ (y ^ x) = y ^ x. x v ((x ^ y) v z) = x v z. x v (x ^ y)' = 1. x v (y ^ x)' = 1. x v (x v y) = x v y. x v (y v x) = y v x. x v (y v ((x v y) ^ z)) = x v y. x v (y ^ (x ^ z)) = x. x ^ (y v (z v x)) = x. x v (y ^ (z ^ x)) = x. x v (y v (x v y)') = 1. (x ^ y) v (x ^ (y ^ z)) = x ^ y. x ^ (y ^ (x ^ y)') = 0. 1 != x | 0 != x | x' = x. x v (y v (x' v z)) = 1. x ^ (y ^ (x' ^ z)) = 0. x v y != 1 | y ^ x != 0 | y' = x. x'' = x. x' v (y v x) = 1. x' ^ (y ^ x) = 0. x ^ ((x v y)' ^ z) = 0. x v (y v z) != 1 | (x v y) ^ z != 0 | (x v y)' = z. x v (y v (z v x')) = 1. x ^ (y ^ (z ^ x')) = 0. x ^ (y ^ (x v z)') = 0. x ^ (y v (x v z))' = 0. x ^ (y v (x ^ ((z ^ u) v (x ^ y)))) = x ^ (y v (z ^ u)). x ^ (y v (z v x))' = 0. x ^ ((y v x)' ^ z) = 0. x ^ (y ^ (z v x)') = 0. x v ((x ^ y)' v z) = 1. x ^ (y v (z v (x ^ ((x ^ (y v z)) v (u ^ w))))) = x ^ (y v (z v (u ^ w))). x v (y v (x ^ z)') = 1. x v (y ^ (x ^ z))' = 1. x v ((y ^ x)' v z) = 1. x v (y ^ (z ^ x))' = 1. x ^ (y v (x ^ ((y ^ x) v (z ^ u)))) = x ^ (y v (z ^ u)). x v (y v (z ^ x)') = 1. x v (y v (y v x)') = 1. x ^ (y ^ (y ^ x)') = 0. x' v (y v (x v z)) = 1. x ^ ((y v (x ^ ((x ^ y) v (z ^ u)))) ^ w) = x ^ ((y v (z ^ u)) ^ w). x' ^ (y ^ (x ^ z)) = 0. x' v (y v (z v x)) = 1. x' ^ (y ^ (z ^ x)) = 0. (x ^ y)' v (z v x) = 1. x ^ (y ^ (z v (x ^ (y ^ ((x ^ (y ^ z)) v (u ^ w)))))) = x ^ (y ^ (z v (u ^ w))). (x ^ y)' v (z v y) = 1. (x v y)' ^ (z ^ x) = 0. (x v y)' ^ (z ^ y) = 0. x v (y v (x ^ z)) = y v x. x ^ (y v (x ^ ((x ^ y) v z))) = x ^ (y v z). x ^ (y ^ (x v z)) = y ^ x. x ^ ((y v x) ^ z) = x ^ z. x ^ (y ^ (z v x)) = y ^ x. x v ((y ^ x) v z) = x v z. x v (y v z) != 1 | y ^ (x v z) != 0 | y' = x v z. x v (y v (z ^ x)) = y v x. x ^ (y v (z v (x v u))) = x. (x v y) ^ (z ^ x) = z ^ x. (x v y) ^ (y v x) = x v y. 1 != x | x ^ y != 0 | x' = x ^ y. x' != 1 | 0 = x. (x v y) ^ (y v x)' = 0. (x ^ y) v (z v x) = z v x. x v (y ^ (z ^ (x ^ u))) = x. x ^ (y ^ (z v (x ^ y))) = x ^ y. x ^ (y v (z v (u v x))) = x. x v (y ^ (z ^ (u ^ x))) = x. (x ^ y) v (y ^ x) = x ^ y. (x ^ y) v (y ^ x)' = 1. (x v y) ^ (x v (z v y)) = x v y. x v y != 1 | (x v y)' = 0. x v y != 0 | (x v y)' = 1. (x v y) ^ (z ^ y) = z ^ y. (x ^ y) v (z v y) = z v y. (x v y) ^ (y v (x v z)) = y v x. (x v y)' != 1 | x v y = 0. x v y != 1 | (y v x)' = 0. x ^ y != 1 | (x ^ y)' = 0. x v y != 0 | (y v x)' = 1. (x v y) ^ (y v (z v x)) = x v y. x ^ y != 0 | (x ^ y)' = 1. (x v y)' != 1 | y v x = 0. (x ^ y)' != 1 | x ^ y = 0. x ^ y != 1 | (y ^ x)' = 0. (x v (y v z)) ^ (x v (y v (z v u))) = x v (y v z). x ^ y != 0 | (y ^ x)' = 1. (x ^ y)' != 1 | y ^ x = 0. x v (y v ((x v y)' v z)) = 1. x ^ (y ^ ((x ^ y)' ^ z)) = 0. (x v y) ^ ((x v (y v z)) ^ u) = (x v y) ^ u. x v (y v (z v (x v y)')) = 1. x ^ (y ^ (z ^ (x ^ y)')) = 0. (x v y) ^ (x v (y v z))' = 0. x ^ (y ^ ((x ^ y) v z)') = 0. (x v (y v z)) ^ (y v (x v (z v u))) = y v (x v z). x ^ (y ^ (z v (x ^ y))') = 0. (x v y) ^ (x v (z v y))' = 0. ((x ^ y) v z) ^ (x v z)' = 0. x v (y v ((x v y) ^ z)') = 1. (x v y) ^ (x v (z v (y v u))) = x v y. (x ^ y) v (x ^ (y ^ z))' = 1. x v (y v (z ^ (x v y))') = 1. (x ^ y) v (x ^ (z ^ y))' = 1. ((x v y) ^ z) v (x ^ z)' = 1. (x v y) ^ (z ^ (x v (y v u))) = z ^ (x v y). x v (y v (z v (x v z)')) = 1. x v (y v ((x ^ z) v y)') = 1. x ^ (y ^ (z ^ (x ^ z)')) = 0. x ^ (y ^ ((x v z) ^ y)') = 0. x v (y v (z ^ (x v y))) = x v y. x v (y v (z v (x' v u))) = 1. x v (y v ((x ^ z)' v u)) = 1. x ^ (y ^ (z ^ (x' ^ u))) = 0. x ^ (y ^ ((x v z)' ^ u)) = 0. 1 != x | y ^ x != 0 | x' = y ^ x. x v ((x v y)' v (z v y)) = 1. x ^ ((x ^ y)' ^ (z ^ y)) = 0. x ^ ((y v (x v z))' ^ u) = 0. x v (y v (z v (u v x'))) = 1. (x ^ y) v (x ^ (z ^ y)) = x ^ y. x v (y v (z v (x ^ u)')) = 1. x ^ (y ^ (z ^ (u ^ x'))) = 0. x ^ (y ^ (z ^ (x v u)')) = 0. x ^ (y ^ (z v (x v u))') = 0. x ^ (x' v y) != 0 | x' v y = x'. x ^ (y v (z v (x v u)))' = 0. x ^ (y v (z v (u v x)))' = 0. x ^ ((y v (z v x))' ^ u) = 0. x ^ (y ^ (z v (u v x))') = 0. x ^ (y ^ (((x ^ y) v z) ^ u)) = x ^ (y ^ u). x ^ (y ^ ((z v x)' ^ u)) = 0. x ^ (y ^ (z ^ (u v x)')) = 0. x v ((y ^ (x ^ z))' v u) = 1. x v (y v (z ^ (x ^ u))') = 1. x ^ ((y v (x v z)) ^ u) = x ^ u. x v (y ^ (z ^ (x ^ u)))' = 1. x v ((y ^ (z ^ x))' v u) = 1. x v (y v ((z ^ x)' v u)) = 1. x v (y ^ (z ^ (u ^ x)))' = 1. x ^ (y ^ ((x v z) ^ u)) = y ^ (x ^ u). x v (y v (z ^ (u ^ x))') = 1. x v (y v (z v (u ^ x)')) = 1. x v (y v ((y v x)' v z)) = 1. x v (y v (z v (z v x)')) = 1. (x ^ y) v ((x v z) ^ y) = (x v z) ^ y. x v (y v (y v (x ^ z))') = 1. x ^ (y ^ ((y ^ x)' ^ z)) = 0. x ^ (y ^ (z ^ (z ^ x)')) = 0. x ^ (y ^ (y ^ (x v z))') = 0. x ^ (y v x') != 0 | y v x' = x'. x' v (y v (z v (x v u))) = 1. x' ^ (y ^ (z ^ (x ^ u))) = 0. x' v (y v (z v (u v x))) = 1. (x ^ (y ^ z))' v (u v y) = 1. x ^ (y ^ ((y ^ x) v z)) = x ^ y. (x ^ (y ^ z))' v (u v z) = 1. x' ^ (y ^ (z ^ (u ^ x))) = 0. (x v (y v z))' ^ (u ^ y) = 0. (x v (y v z))' ^ (u ^ z) = 0. x ^ (y ^ (z ^ ((x ^ (y ^ z)) v u))) = x ^ (y ^ z). (x ^ y)' v (z v (x v u)) = 1. (x ^ y)' v (z v (u v x)) = 1. (x ^ y)' v (z v (y v u)) = 1. (x ^ y)' v (z v (u v y)) = 1. x ^ (y ^ (z v ((x ^ y) v u))) = x ^ y. (x v y)' ^ (z ^ (x ^ u)) = 0. (x v y)' ^ (z ^ (u ^ x)) = 0. (x v y)' ^ (z ^ (y ^ u)) = 0. (x v y)' ^ (z ^ (u ^ y)) = 0. x ^ (y ^ (z ^ ((x ^ z) v u))) = y ^ (x ^ z). (x v (y ^ z)) ^ (x v y)' = 0. x v (y v (x v (y ^ z))') = 1. (x ^ (y v z)) v (x ^ y)' = 1. x ^ (y ^ (x ^ (y v z))') = 0. x ^ (y ^ (z ^ ((y ^ (x ^ z)) v u))) = x ^ (y ^ z). ((x v y) ^ z) v (y ^ z)' = 1. x ^ (y ^ ((z v x) ^ y)') = 0. x ^ (y ^ (y ^ (z v x))') = 0. (x ^ (y v z)) v (x ^ z)' = 1. (x ^ y) v (y ^ ((x ^ y) v z)) = y ^ ((x ^ y) v z). x ^ (y ^ (x ^ (z v y))') = 0. ((x ^ y) v z) ^ (y v z)' = 0. x v (y v ((z ^ x) v y)') = 1. x v (y v (y v (z ^ x))') = 1. x ^ (y ^ (((x v z) ^ y) v u)) = x ^ y. (x v (y ^ z)) ^ (x v z)' = 0. x v (y v (x v (z ^ y))') = 1. x v (y v (z ^ (y v x))') = 1. x v (y v (z v (y v x)')) = 1. (x v y) ^ (z v (x v (y v u))) = x v y. (x v y)' ^ (z ^ (y v x)) = 0. (x v y)' v (z v (y v x)) = 1. (x v y) ^ (y v (x v z))' = 0. (x v y) ^ (z v (y v x))' = 0. x ^ (y ^ (z v (x v u))) = y ^ x. (x v y) ^ ((y v x)' ^ z) = 0. (x v y) ^ (z ^ (y v x)') = 0. x ^ (y ^ (z v (y ^ x))') = 0. x ^ (y ^ (z ^ (y ^ x)')) = 0. x v (y v (x v z)) = y v (x v z). (x ^ y)' v (z v (y ^ x)) = 1. (x ^ y) v (y ^ (x ^ z))' = 1. (x ^ y) v (z ^ (y ^ x))' = 1. (x ^ y)' ^ (z ^ (y ^ x)) = 0. x ^ (y ^ (x ^ z)) = y ^ (x ^ z). (x ^ y) v ((y ^ x)' v z) = 1. (x ^ y) v (z v (y ^ x)') = 1. x v ((y v x)' v (z v y)) = 1. (x v y) ^ (y v (z v x))' = 0. x ^ (y ^ (z ^ x)) = y ^ (z ^ x). ((x ^ y) v z) ^ (z v x)' = 0. ((x ^ y) v z) ^ (z v y)' = 0. x ^ (y ^ ((y ^ x) v z)') = 0. (x v (y ^ z)) ^ (y v x)' = 0. x v (y v (((x v y) ^ z) v u)) = x v (y v u). (x v y)' ^ ((x ^ z) v y) = 0. ((x ^ y) v (x ^ z)) ^ x' = 0. ((x ^ y) v (z ^ x)) ^ x' = 0. x v (y v ((y v x) ^ z)') = 1. (x ^ y) v ((x ^ (y ^ z)) v u) = (x ^ y) v u. (x ^ y) v (y ^ (z ^ x))' = 1. ((x v y) ^ z) v (z ^ x)' = 1. ((x v y) ^ z) v (z ^ y)' = 1. (x ^ y)' v ((x v z) ^ y) = 1. x v y != 1 | x ^ ((x ^ z) v y) != 0 | x' = (x ^ z) v y. (x ^ (y v z)) v (y ^ x)' = 1. ((x v y) ^ (x v z)) v x' = 1. ((x v y) ^ (z v x)) v x' = 1. x v (y v ((y ^ z) v x)') = 1. x v (y v ((x ^ z) v u)) = y v (x v u). x v ((x ^ y) v (x ^ z))' = 1. x v ((x ^ y) v (z ^ x))' = 1. x ^ (y ^ ((y v z) ^ x)') = 0. x ^ ((x v y) ^ (x v z))' = 0. x v ((y ^ (x ^ z)) v u) = x v u. x ^ ((x v y) ^ (z v x))' = 0. x ^ ((y ^ x)' ^ (z ^ y)) = 0. x v (y v ((z ^ y) v x)') = 1. x v ((y ^ x) v (x ^ z))' = 1. (x v y) ^ ((x ^ z) v y) = (x ^ z) v y. x ^ (y ^ ((z v y) ^ x)') = 0. x ^ ((y v x) ^ (x v z))' = 0. (x v y)' ^ (x v (y ^ z)) = 0. (x ^ y)' v (x ^ (y v z)) = 1. x ^ (x ^ y)' != 0 | (x ^ y)' = x'. x' != 0 | 1 = x. (x v y)' != 0 | x v y = 1. (x ^ y)' != 0 | x ^ y = 1. (x v y)' != 0 | y v x = 1. x ^ (y ^ x)' != 0 | (y ^ x)' = x'. (x ^ y)' != 0 | y ^ x = 1. (x ^ y)' v ((z v x) ^ y) = 1. (x ^ (y v z)) v (z ^ x)' = 1. ((x v y) ^ (y v z)) v y' = 1. (x ^ ((y ^ x) v z)) v (y ^ x)' = 1. ((x v y) ^ (z v y)) v y' = 1. x ^ ((y v x) ^ (z v x))' = 0. (x ^ y)' v (x ^ (z v y)) = 1. (x v (y ^ z)) ^ (z v x)' = 0. x v y != 1 | 0 != x | x' = x v y. (x v y)' ^ ((z ^ x) v y) = 0. ((x ^ y) v (y ^ z)) ^ y' = 0. ((x ^ y) v (z ^ y)) ^ y' = 0. x v ((y ^ x) v (z ^ x))' = 1. x v (y v (z v x)) = y v (z v x). (x v y)' ^ (x v (z ^ y)) = 0. (x v y)' ^ ((y ^ z) v x) = 0. (x v y)' ^ ((z ^ y) v x) = 0. (x v y)' ^ (y v (x ^ z)) = 0. x v y != 1 | 0 != y | y' = x v y. x' ^ ((x ^ y) v (x ^ z)) = 0. x' ^ ((x ^ y) v (z ^ x)) = 0. (x ^ y)' v ((y v z) ^ x) = 1. (x ^ y)' v ((z v y) ^ x) = 1. x v (y v ((y v x) ^ z)) = x v y. (x ^ y)' v (y ^ (x v z)) = 1. x' v ((x v y) ^ (x v z)) = 1. x' v ((x v y) ^ (z v x)) = 1. (x ^ y)' v (y ^ (z v x)) = 1. x v (y v (z v ((x v (y v z)) ^ u))) = x v (y v z). x' v ((y v x) ^ (x v z)) = 1. x' v ((y v x) ^ (z v x)) = 1. (x v y)' ^ (y v (z ^ x)) = 0. x' ^ ((y ^ x) v (x ^ z)) = 0. x v y != 1 | x ^ (y v ((x v y) ^ z)) != 0 | x' = y v ((x v y) ^ z). x' ^ ((y ^ x) v (z ^ x)) = 0. x v (y v (z ^ (x ^ u))) = y v x. x ^ ((y v (z v x)) ^ u) = x ^ u. x ^ (y ^ (z v (u v x))) = y ^ x. x v (y v (z v ((x v z) ^ u))) = y v (x v z). x v ((y ^ (z ^ x)) v u) = x v u. x v (y v (z ^ (u ^ x))) = y v x. (x ^ y) v (y ^ (x ^ z)) = y ^ x. (x ^ y) v (y ^ (z ^ x)) = x ^ y. x v (y v (z v ((y v (x v z)) ^ u))) = x v (y v z). x ^ (x ^ y)' != 0 | x ^ y = x. x ^ (y ^ x)' != 0 | y ^ x = x. x' ^ (y v x) != 0 | y v x = x. x' ^ (x v y) != 0 | x v y = x. x v (y v (z ^ ((x v y) ^ u))) = x v y. x ^ (y v (z v (u v (x v w)))) = x. (x v (y v z)) ^ (u ^ y) = u ^ y. x v (y v (z ^ (y v x))) = x v y. (x v (y v z)) ^ (y v x) = y v x. (x v y) ^ (y v ((x v y) ^ z)) = y v ((x v y) ^ z). (x ^ (y ^ z)) v (u v y) = u v y. x v (y ^ (z ^ (u ^ (x ^ w)))) = x. x ^ (y ^ (z v (y ^ x))) = x ^ y. x ^ (y v (z v (u v (w v x)))) = x. (x v ((y v x) ^ z)) ^ (y v x)' = 0. x v (y ^ (z ^ (u ^ (w ^ x)))) = x. (x ^ (y ^ z)) v (y ^ x) = x ^ y. (x v y) ^ (z v (y v x)) = x v y. (x v (y v z)) ^ (u ^ z) = u ^ z. x v (y v (((x ^ z) v y) ^ u)) = x v y. (x v (y v z)) ^ (z v y) = z v y. (x ^ (y ^ z)) v (u v z) = u v z. (x ^ (y ^ z)) v (z ^ y) = z ^ y. (x v (y v z)) ^ (z v x) = z v x. (x ^ y) v (z ^ (x ^ (y ^ u))) = x ^ y. (x ^ y) v (z ^ (y ^ x)) = x ^ y. x ^ (((x v y) ^ (x v z)) v u) = x. x ^ (((x v y) ^ (z v x)) v u) = x. x ^ ((x' ^ y) v (x' ^ z)) = 0. 1 != x | y ^ (x ^ z) != 0 | x' = y ^ (x ^ z). x ^ ((x' ^ y) v (z ^ x')) = 0. x v ((x' v y) ^ (x' v z)) = 1. x v ((x' v y) ^ (z v x')) = 1. x v ((y v x') ^ (x' v z)) = 1. x ^ (y ^ (z v (u v (x ^ y)))) = x ^ y. x v ((y v x') ^ (z v x')) = 1. x v (y v x)' != 1 | y v x = x. x ^ ((y ^ x') v (x' ^ z)) = 0. x ^ ((y ^ x') v (z ^ x')) = 0. (x v y) ^ (z v (x v (u v y))) = x v y. x v (x v y)' != 1 | x v y = x. x' v (x ^ y) != 1 | x ^ y = x. x' v (y ^ x) != 1 | y ^ x = x. (x ^ (y ^ z)) v (z ^ x) = z ^ x. ((x ^ y) v z) ^ (u v (x v z)) = (x ^ y) v z. x ^ (y ^ x)' != 0 | x ^ y = x. x ^ (x ^ y)' != 0 | y ^ x = x. (x v y) ^ x' != 0 | x v y = x. (x v y) ^ y' != 0 | x v y = y. (x v ((y v x) ^ z)) ^ (u v (y v x)) = x v ((y v x) ^ z). x' ^ (x v y) != 0 | y v x = x. x' ^ (y v x) != 0 | x v y = x. x v (((x ^ y) v (x ^ z)) ^ u) = x. x v (((x ^ y) v (z ^ x)) ^ u) = x. x v (y v (z ^ (u ^ (x v y)))) = x v y. x ^ (((y v x) ^ (x v z)) v u) = x. x ^ (y v ((x v z) ^ (x v u))) = x. x ^ (((y v x) ^ (z v x)) v u) = x. x ^ (y v ((x v z) ^ (u v x))) = x. 1 != x | y ^ (z ^ x) != 0 | x' = y ^ (z ^ x). x v (x v y)' != 1 | y v x = x. (x ^ y) v x' != 1 | x ^ y = x. (x ^ y) v y' != 1 | x ^ y = y. x v (y v x)' != 1 | x v y = x. (x ^ y) v (z ^ (x ^ (u ^ y))) = x ^ y. x' v (y ^ x) != 1 | x ^ y = x. x' v (x ^ y) != 1 | y ^ x = x. (x v y) ^ y' != 0 | y v x = y. (x v y) ^ x' != 0 | y v x = x. x v (y v (z v (u ^ (x v y)))) = x v (y v z). x v (((y ^ x) v (x ^ z)) ^ u) = x. x v (y ^ ((x ^ z) v (x ^ u))) = x. x v (((y ^ x) v (z ^ x)) ^ u) = x. x v (y ^ ((x ^ z) v (u ^ x))) = x. ((x v y) ^ z) v (u ^ (x ^ z)) = (x v y) ^ z. x ^ (y v ((z v x) ^ (x v u))) = x. x ^ (y v ((z v x) ^ (u v x))) = x. (x ^ y) v y' != 1 | y ^ x = y. (x ^ y) v x' != 1 | y ^ x = x. (x ^ ((y ^ x) v z)) v (u ^ (y ^ x)) = x ^ ((y ^ x) v z). x v (y ^ ((z ^ x) v (x ^ u))) = x. x v (y ^ ((z ^ x) v (u ^ x))) = x. x v (y v (z v (x v (y v z))')) = 1. x v (y v (z v (y v (x v z))')) = 1. x ^ (y v (x v y)') != 0 | y v (x v y)' = x'. x ^ (y ^ (z ^ (x ^ (y ^ z))')) = 0. x ^ (y ^ (z ^ (y ^ (x ^ z))')) = 0. x v (y v (z v ((x v y)' v u))) = 1. x ^ (y ^ (z ^ ((x ^ y)' ^ u))) = 0. (x ^ (y ^ z)) v (x ^ (y ^ (z ^ u))) = x ^ (y ^ z). 1 != x | x ^ y != 0 | (x ^ y)' = x. 1 != x | y ^ x != 0 | (y ^ x)' = x. x v y != 1 | 0 != x | (x v y)' = x. x v y != 1 | 0 != y | (x v y)' = y. x ^ y != 1 | x ^ (y ^ z) != 0 | (x ^ y)' = x ^ (y ^ z). x v (y v (y v ((x v y) ^ z))') = 1. x ^ (y ^ (y ^ ((x ^ y) v z))') = 0. (x v y) ^ ((x v (y v z))' ^ u) = 0. x ^ (y ^ (((x ^ y) v z)' ^ u)) = 0. (x ^ y) v (z v (x ^ (y ^ u))) = z v (x ^ y). x v y != 1 | 0 != y | (y v x)' = y. x v (y v (z v (u v (x v y)'))) = 1. x ^ (y ^ (z ^ (u ^ (x ^ y)'))) = 0. (x v y) ^ (z ^ (x v (y v u))') = 0. (x ^ (y ^ z)) v (y ^ (x ^ (z ^ u))) = y ^ (x ^ z). x ^ (y ^ (z ^ ((x ^ y) v u)')) = 0. (x v y) ^ (z v (x v (y v u)))' = 0. x ^ (y ^ (z v ((x ^ y) v u))') = 0. x ^ (y ^ (z v (u v (x ^ y)))') = 0. (x ^ y) v (x ^ (z ^ (y ^ u))) = x ^ y. (x v y) ^ (z v (x v (u v y)))' = 0. ((x ^ y) v z) ^ (u v (x v z))' = 0. x ^ (y ^ (z ^ (u v (x ^ y))')) = 0. x ^ (y ^ ((z v (x ^ y))' ^ u)) = 0. x ^ (y ^ (z ^ (u v (x ^ y)))) = x ^ (y ^ z). (x v y) ^ ((x v (z v y))' ^ u) = 0. ((x ^ y) v z) ^ ((x v z)' ^ u) = 0. (x v y) ^ (z ^ (x v (u v y))') = 0. ((x ^ y) v z) ^ (u ^ (x v z)') = 0. x ^ (y v (x' v z)) != 0 | y v (x' v z) = x'. x v (y v (((x v y) ^ z)' v u)) = 1. (x ^ y) v ((x ^ (y ^ z))' v u) = 1. x v (y v (z v ((x v y) ^ u)')) = 1. (x ^ y) v (z v (x ^ (y ^ u))') = 1. x v (y v z) != 1 | z ^ (x v y) != 0 | z' = x v y. x v (y v (z ^ ((x v y) ^ u))') = 1. (x ^ y) v (z ^ (x ^ (y ^ u)))' = 1. x v (y v ((z ^ (x v y))' v u)) = 1. (x ^ y) v ((x ^ (z ^ y))' v u) = 1. x v (y v z) != 1 | (x v z) ^ y != 0 | (x v z)' = y. ((x v y) ^ z) v ((x ^ z)' v u) = 1. x v (y v (z ^ (u ^ (x v y)))') = 1. (x ^ y) v (z ^ (x ^ (u ^ y)))' = 1. x v (y v (z v (u ^ (x v y))')) = 1. x ^ (x' v y) != 0 | (x' v y)' = x. ((x v y) ^ z) v (u ^ (x ^ z))' = 1. (x ^ y) v (z v (x ^ (u ^ y))') = 1. ((x v y) ^ z) v (u v (x ^ z)') = 1. x v (y v (z v (z v (x v y))')) = 1. x ^ (y v x') != 0 | (y v x')' = x. x v (y v (z v (y v (z v x))')) = 1. x v (y v (z v (x v (z v y))')) = 1. x ^ (y ^ (z ^ (z ^ (x ^ y))')) = 0. x ^ (y ^ (z ^ (y ^ (z ^ x))')) = 0. x v y != 1 | x ^ ((x ^ z) v y) != 0 | ((x ^ z) v y)' = x. x ^ (y ^ (z ^ (x ^ (z ^ y))')) = 0. (x v y)' v (z v (x v (y v u))) = 1. (x ^ y)' ^ (z ^ (x ^ (y ^ u))) = 0. (x v y)' v (z v (x v (u v y))) = 1. x v y != 1 | x ^ (y v ((x v y) ^ z)) != 0 | (y v ((x v y) ^ z))' = x. ((x ^ y) v z)' v (u v (x v z)) = 1. (x ^ (y ^ z))' v (u v (x ^ y)) = 1. (x ^ y)' ^ (z ^ (x ^ (u ^ y))) = 0. (x v (y v z))' ^ (u ^ (x v y)) = 0. 1 != x | y ^ (x ^ z) != 0 | (y ^ (x ^ z))' = x. ((x v y) ^ z)' ^ (u ^ (x ^ z)) = 0. x v (((x v y) ^ z)' v (u v y)) = 1. x v (y v (((x ^ z) v y) ^ u)') = 1. x v ((y ^ (x v z))' v (u v z)) = 1. 1 != x | y ^ (z ^ x) != 0 | (y ^ (z ^ x))' = x. (x ^ (y ^ z))' v (u v (x ^ z)) = 1. (x ^ y)' v (z v ((x v u) ^ y)) = 1. x v (y v (z ^ ((x ^ u) v y))') = 1. x ^ (((x ^ y) v z)' ^ (u ^ y)) = 0. x ^ (y v (x v y)') != 0 | (y v (x v y)')' = x. x ^ (y ^ (((x v z) ^ y) v u)') = 0. (x v (y v z))' ^ (u ^ (x v z)) = 0. x ^ ((y v (x ^ z))' ^ (u ^ z)) = 0. x ^ (y ^ (z v ((x v u) ^ y))') = 0. x ^ y != 1 | x ^ (y ^ z) != 0 | (x ^ (y ^ z))' = x ^ y. (x v y)' ^ (z ^ ((x ^ u) v y)) = 0. (x v (y ^ z)) ^ (u v (x v y))' = 0. (x v (y ^ z)) ^ ((x v y)' ^ u) = 0. (x v (y ^ z)) ^ (u ^ (x v y)') = 0. x ^ (y v (x' v z)) != 0 | (y v (x' v z))' = x. (x v (y ^ z))' v (u v (x v y)) = 1. x v (y v ((x v (y ^ z)) ^ u)') = 1. x v (y v (z ^ (x v (y ^ u)))') = 1. (x v y)' ^ (z ^ (x v (y ^ u))) = 0. (x v y) ^ y' != 0 | (x v y)' = y'. (x ^ (y v z)) v ((x ^ y)' v u) = 1. (x ^ (y v z)) v (u ^ (x ^ y))' = 1. (x ^ (y v z)) v (u v (x ^ y)') = 1. (x ^ (y v z))' ^ (u ^ (x ^ y)) = 0. x v (y v z) != 1 | (z v x) ^ y != 0 | (z v x)' = y. (x ^ y)' v (z v (x ^ (y v u))) = 1. x ^ (y ^ ((x ^ (y v z)) v u)') = 0. x ^ (y ^ (z v (x ^ (y v u)))') = 0. ((x v y) ^ z) v ((y ^ z)' v u) = 1. x v (y v (z v u)) != 1 | (x v (y v z)) ^ u != 0 | (x v (y v z))' = u. ((x v y) ^ z) v (u ^ (y ^ z))' = 1. ((x v y) ^ z) v (u v (y ^ z)') = 1. ((x v y) ^ z)' ^ (u ^ (y ^ z)) = 0. (x ^ y)' v (z v ((u v x) ^ y)) = 1. x v y != 1 | y ^ z != 0 | (x v y)' = y ^ z. x ^ (y ^ (((z v x) ^ y) v u)') = 0. x ^ (y ^ (z v ((u v x) ^ y))') = 0. (x ^ (y v z)) v ((x ^ z)' v u) = 1. (x ^ (y v z)) v (u ^ (x ^ z))' = 1. x v (y v (z v u)) != 1 | (x v z) ^ (y v u) != 0 | (x v z)' = y v u. (x ^ (y v z)) v (u v (x ^ z)') = 1. (x ^ (y v z))' ^ (u ^ (x ^ z)) = 0. (x ^ y)' v (z v (x ^ (u v y))) = 1. x ^ (y ^ ((x ^ (z v y)) v u)') = 0. x v (y v z) != 1 | (y v x) ^ z != 0 | (y v x)' = z. x ^ (y ^ (z v (x ^ (u v y)))') = 0. ((x ^ y) v z) ^ (u v (y v z))' = 0. ((x ^ y) v z) ^ ((y v z)' ^ u) = 0. ((x ^ y) v z) ^ (u ^ (y v z)') = 0. (x v y) ^ (y' v z) != 0 | (x v y)' = y' v z. ((x ^ y) v z)' v (u v (y v z)) = 1. x v (y v (((z ^ x) v y) ^ u)') = 1. x v (y v (z ^ ((u ^ x) v y))') = 1. (x v y)' ^ (z ^ ((u ^ x) v y)) = 0. (x v y) ^ (z v y') != 0 | (x v y)' = z v y'. (x v (y ^ z)) ^ (u v (x v z))' = 0. (x v (y ^ z)) ^ ((x v z)' ^ u) = 0. (x v (y ^ z)) ^ (u ^ (x v z)') = 0. (x v (y ^ z))' v (u v (x v z)) = 1. (x v y) ^ x' != 0 | (x v y)' = x'. x v (y v ((x v (z ^ y)) ^ u)') = 1. x v (y v (z ^ (x v (u ^ y)))') = 1. (x v y)' ^ (z ^ (x v (u ^ y))) = 0. (x v (y v (z v u)))' ^ (w ^ z) = 0. x v (y v z) != 1 | (x v y) ^ ((y ^ u) v z) != 0 | (x v y)' = (y ^ u) v z. x' v (y v (z v (u v (x v w)))) = 1. x ^ (y v (z v (u v (x v w))))' = 0. 1 != x | y ^ x != 0 | x' = x ^ y. (x v (y v z)) ^ (z v (x v y))' = 0. (x v y) ^ (y ^ z)' != 0 | (x v y)' = (y ^ z)'. (x v (y v z)) ^ (y v (z v x))' = 0. (x v (y v z)) ^ (x v (z v y))' = 0. (x ^ (y ^ (z ^ u)))' v (w v z) = 1. x v (y ^ (z ^ (u ^ (x ^ w))))' = 1. (x v y) ^ (z ^ y)' != 0 | (x v y)' = (z ^ y)'. x' ^ (y ^ (z ^ (u ^ (x ^ w)))) = 0. (x ^ (y v (z ^ x))) v (z ^ x)' = 1. x ^ (y ^ (y ^ (z v (x ^ y)))') = 0. (x v (y v (z v u)))' ^ (w ^ u) = 0. x v (y v z) != 1 | (x v y) ^ (y v z) != 0 | (x v y)' = y v z. x' v (y v (z v (u v (w v x)))) = 1. x ^ (y v (z v (u v (w v x))))' = 0. (x ^ (y ^ (z ^ u)))' v (w v u) = 1. x v (y ^ (z ^ (u ^ (w ^ x))))' = 1. x v (y v z) != 1 | (x v z) ^ (y v z) != 0 | (x v z)' = y v z. x' ^ (y ^ (z ^ (u ^ (w ^ x)))) = 0. (x ^ (y ^ z)) v (z ^ (x ^ y))' = 1. (x ^ (y ^ z)) v (y ^ (z ^ x))' = 1. (x ^ (y ^ z)) v (x ^ (z ^ y))' = 1. x v (y v z) != 1 | (x v y) ^ (z v ((y v z) ^ u)) != 0 | (x v y)' = z v ((y v z) ^ u). x v (y v (z v ((x v z)' v u))) = 1. x v (y v (z v (u ^ (x v z))')) = 1. x v (y v (z v (u v (x v z)'))) = 1. (x v y) ^ (x v (z v (y v u)))' = 0. x v y != 1 | (x v y) ^ z != 0 | (x v y)' = (x v y) ^ z. x v (y v (z v ((z v x)' v u))) = 1. x v (y v (z v (u ^ (z v x))')) = 1. x v (y v (z v (u v (z v x)'))) = 1. (x v (y v z))' ^ (u ^ (z v x)) = 0. (x v y) ^ (z v (y v z)') != 0 | (x v y)' = z v (y v z)'. (x v y)' v (z v (y v (u v x))) = 1. (x v y) ^ (y v (z v (x v u)))' = 0. (x v y) ^ (z v (y v (u v x)))' = 0. x v (y v (((x ^ z) v y)' v u)) = 1. (x v y) ^ (z v (y' v u)) != 0 | (x v y)' = z v (y' v u). x v (y v (((z ^ x) v y)' v u)) = 1. x v ((y v x)' v (z v (u v y))) = 1. x ^ (y ^ (z ^ ((x ^ z)' ^ u))) = 0. x ^ (y ^ (((x v z) ^ y)' ^ u)) = 0. (x v y) ^ (x' v z) != 0 | (x v y)' = x' v z. x ^ (y ^ (((z v x) ^ y)' ^ u)) = 0. x v (y v (z v ((x ^ u) v y)')) = 1. x v (y v (z v ((u ^ x) v y)')) = 1. x v (y v ((z v x)' v (u v z))) = 1. (x v y') ^ (z v y) != 0 | (x v y')' = z v y. x ^ (y ^ (z ^ (u ^ (x ^ z)'))) = 0. x ^ (y ^ (z ^ ((x v u) ^ y)')) = 0. x ^ (y ^ (z ^ ((u v x) ^ y)')) = 0. (x v (y ^ z)) ^ (x v (u v y))' = 0. x ^ (y v (z v x')) != 0 | y v (z v x') = x'. (x v (y ^ z)) ^ (x v (u v z))' = 0. x ^ (y ^ (z ^ ((x ^ z) v u)')) = 0. x v (y v (z v (u v (x' v w)))) = 1. x v (y v (z v ((x ^ u)' v w))) = 1. x ^ (y v (z v x')) != 0 | (y v (z v x'))' = x. x v y != 0 | y v x = 0. x ^ y != 0 | y ^ x = 0. x v (y v ((z ^ (x ^ u))' v w)) = 1. x v (y v ((z ^ (u ^ x))' v w)) = 1. (x v y) ^ (z v (u v y')) != 0 | (x v y)' = z v (u v y'). x v (y v (z v ((u ^ x)' v w))) = 1. (x ^ y)' v (z v (u v (x v w))) = 1. (x ^ y)' v (z v (u v (y v w))) = 1. (x ^ y) v (z v ((y ^ x)' v u)) = 1. (x v y) ^ (z v x') != 0 | (x v y)' = z v x'. x v (y v (z v ((y v x)' v u))) = 1. x ^ (y ^ (z ^ (u v (x ^ z))')) = 0. (x v y) ^ (x v (z v (u v y)))' = 0. (x v ((x v y) ^ z)) ^ (x v y)' = 0. x ^ (y v (z v (x ^ ((u ^ w) v (x ^ (y v z)))))) = x ^ (y v (z v (u ^ w))). (x v (y ^ (z ^ u))) ^ (x v z)' = 0. (x v (y ^ (z ^ u))) ^ (x v u)' = 0. (x v (y ^ z)) ^ (x v (z ^ y))' = 0. ((x ^ (y ^ z)) v u) ^ (y v u)' = 0. x ^ (y v (x ^ ((z ^ u) v (y ^ x)))) = x ^ (y v (z ^ u)). ((x ^ y) v (z ^ (x ^ u))) ^ x' = 0. ((x ^ y) v (z ^ (u ^ x))) ^ x' = 0. ((x ^ y) v z) ^ (y v (u v z))' = 0. (x v (y v z)) ^ (y v (x v z))' = 0. x ^ ((y v (x ^ ((z ^ u) v (x ^ y)))) ^ w) = x ^ ((y v (z ^ u)) ^ w). ((x ^ y) v z) ^ (x v (z v u))' = 0. x v (y v (z v ((x v z) ^ u)')) = 1. x v (((y v x) ^ z)' v (u v y)) = 1. x v (y v (((y v x) ^ z)' v u)) = 1. x ^ (y ^ (z v (x ^ (y ^ ((u ^ w) v (x ^ (y ^ z))))))) = x ^ (y ^ (z v (u ^ w))). (x ^ y) v (x ^ (z ^ (y ^ u)))' = 1. (x ^ (y v z)) v (x ^ (u ^ y))' = 1. (x ^ (y v z)) v (x ^ (u ^ z))' = 1. (x ^ (y v z)) v (x ^ (z v y))' = 1. x ^ (y v (x ^ (z v (x ^ y)))) = x ^ (y v z). x ^ ((y ^ z) v (x ^ y)) = x ^ y. x ^ ((y ^ z) v (x ^ z)) = x ^ z. x ^ ((y ^ z) v (y ^ x)) = x ^ y. x ^ ((x ^ y) v (y ^ z)) = x ^ y. x ^ (y ^ (z v (x ^ ((u ^ w) v (x ^ z))))) = y ^ (x ^ (z v (u ^ w))). x ^ ((x ^ y) v (z ^ y)) = x ^ y. x ^ ((y ^ z) v (z ^ x)) = x ^ z. x ^ ((y ^ x) v (y ^ z)) = x ^ y. x ^ ((y ^ x) v (z ^ y)) = x ^ y. x ^ ((y ^ z) v (x ^ ((u ^ w) v (y ^ (x ^ z))))) = x ^ ((y ^ z) v (u ^ w)). x v ((y ^ (z v x))' v (u v z)) = 1. x v (y v ((z ^ (y v x))' v u)) = 1. (x ^ y) v (x ^ (z ^ (u ^ y)))' = 1. (x ^ ((x ^ y) v z)) v (x ^ y)' = 1. x ^ (y v (x ^ (z v (u v (x ^ y))))) = x ^ (y v (z v u)). (x ^ (y v (z v u))) v (x ^ z)' = 1. (x ^ (y v (z v u))) v (x ^ u)' = 1. (x ^ (y v (x ^ z))) v (x ^ z)' = 1. ((x v (y v z)) ^ u) v (y ^ u)' = 1. x v ((y ^ (x v (z ^ u))) v (y ^ ((z ^ u) v (y ^ x)))) = x v (y ^ ((z ^ u) v (y ^ x))). ((x v y) ^ (z v (x v u))) v x' = 1. ((x v y) ^ (z v (u v x))) v x' = 1. ((x v y) ^ z) v (y ^ (u ^ z))' = 1. (x ^ y)' v (((x v z) ^ y) v u) = 1. x ^ (y v ((x v z) ^ ((u ^ w) v ((x v z) ^ y)))) = x ^ (y v (u ^ w)). x v (y v (z v (u v (x v u)'))) = 1. x v (y v (z v ((x ^ u) v z)')) = 1. x v (y v (z v ((u ^ x) v z)')) = 1. x v (y v ((z ^ (x ^ u)) v y)') = 1. x ^ (((x v y) ^ z) v (x ^ ((u ^ w) v (x ^ z)))) = x ^ (((x v y) ^ z) v (u ^ w)). x v (((y ^ z) v x)' v (u v y)) = 1. x v (y v (((y ^ z) v x)' v u)) = 1. x ^ (y ^ (z ^ (u ^ (x ^ u)'))) = 0. x ^ (y ^ (z ^ ((x v u) ^ z)')) = 0. x ^ ((y ^ ((x ^ y) v z)) v (x ^ ((u ^ w) v (x ^ y)))) = x ^ ((y ^ ((x ^ y) v z)) v (u ^ w)). x ^ (y ^ (z ^ ((u v x) ^ z)')) = 0. x ^ (y ^ ((z v (x v u)) ^ y)') = 0. (x v (y ^ (z v x))) ^ (z v x)' = 0. x v (y v (y v (z ^ (x v y)))') = 1. x ^ ((y ^ (z ^ u)) v (x ^ (y ^ z))) = x ^ (y ^ z). (x v (y ^ (x v z))) ^ (x v z)' = 0. x ^ (y ^ (z ^ (u ^ (x' ^ w)))) = 0. x ^ (y ^ (z ^ ((x v u)' ^ w))) = 0. x ^ (y ^ (z ^ ((u v x)' ^ w))) = 0. x v ((y ^ ((z ^ u) v (y ^ x))) v (w ^ (y ^ (x v (z ^ u))))) = x v (y ^ ((z ^ u) v (y ^ x))). x ^ (y ^ ((z v (x v u))' ^ w)) = 0. 1 != x | x ^ y != 0 | x' = y ^ x. x v ((x v y)' v (z v (y v u))) = 1. x v ((x v y)' v (z v (u v y))) = 1. x ^ (y v ((x ^ ((z ^ u) v (x ^ y))) v (x ^ ((w ^ v5) v (x ^ (y v (z ^ u))))))) = x ^ (y v ((x ^ ((z ^ u) v (x ^ y))) v (w ^ v5))). x v (y v ((x v z)' v (u v z))) = 1. x v (((x ^ y) v z)' v (u v z)) = 1. x v (y v (x v (z ^ (y ^ u)))') = 1. x v (y v (x v (z ^ (u ^ y)))') = 1. (x v ((y v x) ^ z)) ^ (u v (y v x))' = 0. x v (((y ^ x) v z)' v (u v z)) = 1. x v ((y ^ z) v (x v (z ^ y))') = 1. x ^ ((x ^ y)' ^ (z ^ (y ^ u))) = 0. x ^ ((x ^ y)' ^ (z ^ (u ^ y))) = 0. (x v ((y v x) ^ z)) ^ ((y v x)' ^ u) = 0. x ^ (y ^ ((x ^ z)' ^ (u ^ z))) = 0. x ^ (((x v y) ^ z)' ^ (u ^ z)) = 0. x ^ (y ^ (x ^ (z v (y v u)))') = 0. x ^ (y ^ (x ^ (z v (u v y)))') = 0. (x v ((y v x) ^ z)) ^ (u ^ (y v x)') = 0. x ^ (((y v x) ^ z)' ^ (u ^ z)) = 0. x ^ ((y v z) ^ (x ^ (z v y))') = 0. x ^ ((y v (z v (x v u)))' ^ w) = 0. x ^ (y ^ ((z v (u v x))' ^ w)) = 0. x ^ ((x ^ y)' v z) != 0 | (x ^ y)' v z = x'. x v (y v (z v (u v (w v x')))) = 1. x v (y v (z v (u v (x ^ w)'))) = 1. x v (y v (z v (u v (w ^ x)'))) = 1. x v (y v (z v (u ^ (x ^ w))')) = 1. x ^ ((x ^ y)' v z) != 0 | ((x ^ y)' v z)' = x. x v (y v (z v (u v (y v x)'))) = 1. x ^ (y ^ (z ^ (u ^ (w ^ x')))) = 0. x ^ (y ^ (z ^ (u ^ (x v w)'))) = 0. x ^ (y ^ (z ^ (u ^ (w v x)'))) = 0. (x v y) ^ ((y ^ z)' v u) != 0 | (x v y)' = (y ^ z)' v u. x ^ (y ^ (z ^ (u v (x v w))')) = 0. x ^ (y ^ (z v (u v (x v w)))') = 0. x ^ (y ^ (z ^ (u v (w v x))')) = 0. x ^ (y ^ (z v (u v (w v x)))') = 0. x ^ (y v (z v (x ^ ((x ^ (z v y)) v (u ^ w))))) = x ^ (y v (z v (u ^ w))). x ^ ((y v (z v (u v x)))' ^ w) = 0. x ^ (y ^ (z v (u v (y ^ x)))') = 0. x ^ (y ^ ((z v (y ^ x))' ^ u)) = 0. x ^ (y ^ (z ^ (u v (y ^ x))')) = 0. x ^ (y v (z v (u v (x ^ ((x ^ (y v (z v u))) v (w ^ v5)))))) = x ^ (y v (z v (u v (w ^ v5)))). x ^ (y ^ (x ^ ((x ^ y) v z))') = 0. x ^ (y ^ (z ^ ((y ^ x)' ^ u))) = 0. x ^ (y ^ (z ^ (u ^ (y ^ x)'))) = 0. x v ((y ^ (z ^ (x ^ u)))' v w) = 1. x ^ (y v (z v (x ^ (((y v z) ^ x) v (u ^ w))))) = x ^ (y v (z v (u ^ w))). (x ^ (y ^ z))' v (u v (w v y)) = 1. x v (y v (z ^ (u ^ (x ^ w)))') = 1. x v (y v (z v (u ^ (w ^ x))')) = 1. x v (y v (z v (u ^ (y v x))')) = 1. x ^ ((y v (z v (x ^ ((x ^ (y v z)) v (u ^ w))))) ^ v5) = x ^ ((y v (z v (u ^ w))) ^ v5). x ^ (y ^ (y ^ (z v (x v u)))') = 0. x ^ ((x v y) ^ (z v (x v u)))' = 0. x v (y v (z ^ (u ^ (w ^ x)))') = 1. x v (y v (z ^ (u ^ (y v x)))') = 1. x ^ (y ^ (z v (u v (x ^ (y ^ ((x ^ (y ^ (z v u))) v (w ^ v5))))))) = x ^ (y ^ (z v (u v (w ^ v5)))). x v ((y ^ (z ^ (u ^ x)))' v w) = 1. (x ^ (y ^ z))' v (u v (w v z)) = 1. x ^ (y ^ ((x ^ (y v z))' ^ u)) = 0. x ^ (y ^ (z ^ (x ^ (y v u))')) = 0. x ^ (y v (z v (x ^ ((x ^ (y v z)) v u)))) = x ^ (y v (z v u)). x ^ (y ^ ((x v z) ^ (y v u))') = 0. x v (y v ((y v (x ^ z))' v u)) = 1. x v (y v ((y v (z ^ x))' v u)) = 1. x v (y v (z v (u v (u v x)'))) = 1. x ^ (y v (z v (u v (x ^ ((x ^ (z v (y v u))) v (w ^ v5)))))) = x ^ (y v (z v (u v (w ^ v5)))). x v (y v (z v (z v (x ^ u))')) = 1. x v (y v (z v (z v (u ^ x))')) = 1. x v (y v (y v (z ^ (x ^ u)))') = 1. x v (y v (z v (z v (y v x))')) = 1. x ^ (y ^ (z v (u v (x ^ ((x ^ (z v u)) v (w ^ v5)))))) = y ^ (x ^ (z v (u v (w ^ v5)))). x v ((x v (y ^ z))' v (u v y)) = 1. x v (y v ((x v (y ^ z))' v u)) = 1. x ^ (y ^ (z ^ ((z ^ x)' ^ u))) = 0. x ^ (y ^ ((y ^ (x v z))' ^ u)) = 0. x v (y v ((z ^ (x v (y v (u ^ w)))) v (z ^ ((z ^ (x v y)) v (u ^ w))))) = x v (y v (z ^ ((z ^ (x v y)) v (u ^ w)))). x ^ (y ^ ((y ^ (z v x))' ^ u)) = 0. (x v y)' ^ (((x ^ z) v y) ^ u) = 0. x ^ (y ^ (((y v z) ^ x)' ^ u)) = 0. x ^ (y ^ (z ^ (u ^ (u ^ x)'))) = 0. x ^ (y v (z v ((x v u) ^ (((x v u) ^ (y v z)) v (w ^ v5))))) = x ^ (y v (z v (w ^ v5))). x ^ (y ^ (z ^ (z ^ (x v u))')) = 0. x ^ (y ^ (z ^ (z ^ (u v x))')) = 0. x ^ ((y ^ x)' ^ (z ^ (u ^ y))) = 0. x ^ (y ^ ((z ^ x)' ^ (u ^ z))) = 0. x v (y v ((z ^ ((z ^ (x v y)) v (u ^ w))) v (z ^ (x v (y v (u ^ w))))')) = 1. x ^ (((y ^ x) v z)' ^ (u ^ y)) = 0. x ^ ((y v (z ^ x))' ^ (u ^ z)) = 0. x ^ (((y v z) ^ x)' ^ (u ^ y)) = 0. (x ^ y)' ^ (z ^ (y ^ (u ^ x))) = 0. x v (y v ((z ^ ((z ^ (x v y)) v (u ^ w))) v (v5 ^ (z ^ (x v (y v (u ^ w))))))) = x v (y v (z ^ ((z ^ (x v y)) v (u ^ w)))). (x v (y v z))' ^ (u ^ (w ^ y)) = 0. (x v (y v z))' ^ (u ^ (w ^ z)) = 0. x ^ (y ^ ((z v (y v u)) ^ x)') = 0. x ^ ((y v (x v z)) ^ (x v u))' = 0. x ^ ((y v (z v (u ^ w))) ^ (y v (z v (x ^ ((x ^ (y v z)) v (u ^ w)))))') = 0. x ^ (y ^ ((y v z) ^ (x v u))') = 0. x ^ ((x ^ (y v z))' ^ (u ^ y)) = 0. (x ^ y)' v (z v (u v (w v x))) = 1. (x ^ y)' v (z v (u v (w v y))) = 1. x ^ (y v (z v ((x ^ ((x ^ (y v z)) v (u ^ w))) v (x ^ ((x ^ (y v (z v (u ^ w)))) v (v5 ^ v6)))))) = x ^ (y v (z v ((x ^ ((x ^ (y v z)) v (u ^ w))) v (v5 ^ v6)))). (x v y)' ^ (z ^ (u ^ (w ^ x))) = 0. (x v y)' ^ (z ^ (u ^ (w ^ y))) = 0. (x v y)' ^ (z ^ (u ^ (y v x))) = 0. (x v (y v z))' ^ (u ^ (y ^ w)) = 0. x ^ (y v (x ^ z)') != 0 | y v (x ^ z)' = x'. (x ^ y)' v (z v (u v (y ^ x))) = 1. (x ^ (y ^ z))' v (u v (y v w)) = 1. (x ^ (y ^ z))' v (u v (z v w)) = 1. (x ^ y) v (z ^ (y ^ (x ^ u)))' = 1. x ^ (y v (x ^ z)') != 0 | (y v (x ^ z)')' = x. (x ^ (y v z))' v (u v (z v y)) = 1. (x ^ ((x ^ y) v z)) v (y ^ x)' = 1. x ^ (y ^ (y ^ ((y ^ x) v z))') = 0. (x ^ ((y ^ x) v z)) v (x ^ y)' = 1. (x v y) ^ (z v (y ^ u)') != 0 | (x v y)' = z v (y ^ u)'. (x ^ y) v (z v (u ^ (y ^ x))') = 1. (x ^ y) v (z v (u v (y ^ x)')) = 1. (x ^ y) v (z ^ (u ^ (y ^ x)))' = 1. (x ^ y)' v (z v ((y ^ x) v u)) = 1. (x v y) ^ (x ^ z)' != 0 | (x v y)' = (x ^ z)'. ((x ^ y) v z)' ^ (u ^ (y ^ x)) = 0. (x v y) ^ (z v (y v (x v u)))' = 0. (x v (y v z))' ^ (u ^ (z ^ w)) = 0. (x v y)' ^ (z ^ (u ^ (y ^ w))) = 0. x ^ (y ^ (x ^ z))' != 0 | (y ^ (x ^ z))' = x'. (x v y) ^ (z v (u v (y v x)))' = 0. (x v (y ^ z))' ^ (u ^ (z ^ y)) = 0. (x v y)' v (z v (y v (x v u))) = 1. (x ^ (y ^ z))' v (u v (y ^ x)) = 1. x ^ (y ^ (x ^ z))' != 0 | y ^ (x ^ z) = x. (x v y)' v (z v (u v (y v x))) = 1. (x ^ (y ^ z))' v (u v (z ^ y)) = 1. (x v y)' ^ (z ^ (u ^ (x ^ w))) = 0. (x v (y v z))' ^ (u ^ (y v x)) = 0. (x v y) ^ (z ^ (y ^ u))' != 0 | (x v y)' = (z ^ (y ^ u))'. (x ^ y)' ^ (z ^ (y ^ (x ^ u))) = 0. (x v (y v z))' ^ (u ^ (z v y)) = 0. (x ^ y)' ^ (z ^ (u ^ (y ^ x))) = 0. x ^ (y ^ (z v ((y ^ x) v u))') = 0. x ^ ((y ^ x)' v z) != 0 | (y ^ x)' v z = x'. (x v y) ^ (z ^ ((y v x)' ^ u)) = 0. (x v (y ^ z)) ^ (x v (z v u))' = 0. (x v y)' ^ ((x v (y ^ z)) ^ u) = 0. x v (y v (z v (x v (z ^ u))')) = 1. (x ^ ((y ^ x) v z)) v ((y ^ x)' v u) = 1. x v (y v ((x ^ z) v (y ^ u))') = 1. x v (y v ((z ^ x) v (y ^ u))') = 1. x v (y v (z v (x v (u ^ y))')) = 1. x v (y v (z v (x v (u ^ z))')) = 1. x ^ ((y ^ x)' v z) != 0 | ((y ^ x)' v z)' = x. x v ((y v (x ^ z))' v (u v y)) = 1. (x ^ (y v z)) v (x ^ (z ^ u))' = 1. (x ^ y)' v ((x ^ (y v z)) v u) = 1. x ^ (y ^ (z ^ (x ^ (z v u))')) = 0. (x v y) ^ ((z ^ y)' v u) != 0 | (x v y)' = (z ^ y)' v u. x ^ (y ^ ((z v x) ^ (y v u))') = 0. x ^ (y ^ (z ^ (x ^ (u v y))')) = 0. x ^ (y ^ (z ^ (x ^ (u v z))')) = 0. x ^ ((y ^ (x v z))' ^ (u ^ y)) = 0. x ^ (y ^ (z ^ x))' != 0 | (y ^ (z ^ x))' = x'. x ^ (y ^ (((y ^ x) v z)' ^ u)) = 0. ((x v (y v z)) ^ u) v (z ^ u)' = 1. ((x v y) ^ (z v (y v u))) v y' = 1. ((x v y) ^ (z v (u v y))) v y' = 1. (x ^ ((y ^ x) v z)) v (u ^ (y ^ x))' = 1. (x ^ (y ^ z)) v (y ^ (x ^ z))' = 1. (x ^ y)' v (((z v x) ^ y) v u) = 1. x ^ (y ^ ((z v (u v x)) ^ y)') = 0. x ^ ((y v x) ^ (z v (x v u)))' = 0. x ^ (y ^ (z ^ x))' != 0 | y ^ (z ^ x) = x. x ^ (((y v z) ^ x)' ^ (u ^ z)) = 0. x ^ (y ^ (((z v y) ^ x)' ^ u)) = 0. x ^ (y ^ (y ^ (z v (u v x)))') = 0. x ^ (y ^ (z ^ (z ^ (y ^ x))')) = 0. (x v y) ^ (z ^ (u ^ y))' != 0 | (x v y)' = (z ^ (u ^ y))'. x ^ ((y v (x v z)) ^ (u v x))' = 0. x ^ (y ^ ((y v z) ^ (u v x))') = 0. x ^ ((x ^ (y v z))' ^ (u ^ z)) = 0. x ^ (y ^ ((x ^ (z v y))' ^ u)) = 0. x ^ (y ^ (z v (x ^ (y ^ ((z ^ (x ^ y)) v (u ^ w)))))) = x ^ (y ^ (z v (u ^ w))). (x ^ y)' v ((x ^ (z v y)) v u) = 1. x ^ (y ^ ((x v z) ^ (u v y))') = 0. x ^ (y ^ ((z v x) ^ (u v y))') = 0. x ^ ((y ^ (z v x))' ^ (u ^ y)) = 0. x ^ ((y ^ z) v (x ^ ((y ^ (z ^ x)) v (u ^ w)))) = x ^ ((y ^ z) v (u ^ w)). ((x ^ (y ^ z)) v u) ^ (z v u)' = 0. ((x ^ y) v (z ^ (y ^ u))) ^ y' = 0. ((x ^ y) v (z ^ (u ^ y))) ^ y' = 0. ((x ^ y) v z) ^ (y v (z v u))' = 0. x ^ (y v (x ^ ((y ^ x) v z))) = x ^ (y v z). (x v y)' ^ (((z ^ x) v y) ^ u) = 0. x v (y v ((z ^ (u ^ x)) v y)') = 1. x v (((y ^ z) v x)' v (u v z)) = 1. x v (y v (((z ^ y) v x)' v u)) = 1. x ^ (y ^ (z v (x ^ (y ^ ((x ^ (z ^ y)) v (u ^ w)))))) = x ^ (y ^ (z v (u ^ w))). x v (y v (y v (z ^ (u ^ x)))') = 1. x v ((x v (y ^ z))' v (u v z)) = 1. x v (y v ((x v (z ^ y))' v u)) = 1. (x v y)' ^ ((x v (z ^ y)) ^ u) = 0. (x v y) ^ (z ^ (x v ((x v y) ^ (z ^ ((x ^ z) v (u ^ w)))))) = (x v y) ^ (z ^ (x v (u ^ w))). x v (y v ((x ^ z) v (u ^ y))') = 1. x v (y v ((z ^ x) v (u ^ y))') = 1. x v ((y v (z ^ x))' v (u v y)) = 1. x v (y v (z ^ (y v (x ^ u)))') = 1. x' ^ (y ^ (x v (x' ^ (y ^ (z ^ u))))) = x' ^ (y ^ (x v (z ^ u))). x' ^ (y ^ (x v (y' ^ z))) = 0. x' ^ (y ^ (x v y')) = 0. x ^ ((y v x') ^ y') = 0. x ^ (y' ^ (y v x')) = 0. x ^ (y' ^ (y v (x ^ (y' ^ (z ^ u))))) = x ^ (y' ^ (y v (z ^ u))). (x v y') ^ (x' ^ y) = 0. x' ^ (y ^ (y' v x)) = 0. x ^ (x' v y) = x ^ y. x ^ (x' ^ y)' = x. (x v y)' ^ (x v ((x v y)' ^ (z ^ u))) = (x v y)' ^ (x v (z ^ u)). x ^ (y ^ x')' = x. x ^ (y v x') = x ^ y. x' ^ (x ^ y)' = x'. x' ^ (y ^ x)' = x'. (x v y)' ^ (y v ((x v y)' ^ (z ^ u))) = (x v y)' ^ (y v (z ^ u)). x' ^ ((y v x) ^ y') = 0. (x' v y) ^ (y' ^ x) = 0. x ^ (y v (x' v y)') = x. x' ^ (x v y) = x' ^ y. x ^ ((y ^ x)' ^ (y v (x ^ ((y ^ x)' ^ (z ^ u))))) = x ^ ((y ^ x)' ^ (y v (z ^ u))). x ^ ((x' ^ y)' v z) = x. x ^ (y v (x' ^ z)') = x. x ^ (y ^ (x' ^ z))' = x. x ^ ((y ^ x')' v z) = x. x ^ (y' ^ (z ^ (y v (x ^ (y' ^ (z ^ (u ^ w))))))) = x ^ (y' ^ (z ^ (y v (u ^ w)))). x ^ (y ^ (z ^ x'))' = x. x ^ (y v (z ^ x')') = x. x ^ (y v (y v x')') = x. x ^ ((y v x)' ^ z)' = x. (x v y)' ^ (z ^ (x v ((x v y)' ^ (z ^ (u ^ w))))) = (x v y)' ^ (z ^ (x v (u ^ w))). x ^ (y ^ (x v z)')' = x. x ^ (y ^ (z v x)')' = x. x' ^ (y v x) = x' ^ y. x' ^ y != 0 | x v y = x. x v ((y ^ ((x ^ y) v (z ^ u))) v ((y ^ (x v (z ^ u)))' v w)) = 1. x v (y v x')' = x. x v (x' v y)' = x. x' v (y v x)' = x'. x' v (x v y)' = x'. x v ((y ^ ((x ^ y) v (z ^ u))) v (w ^ (y ^ (x v (z ^ u))))') = 1. x' ^ y != 0 | y v x = x. (x v y) ^ (x' ^ y') = 0. (x v y) ^ (y' ^ x') = 0. x' ^ y = (y v x) ^ x'. x ^ (y v (z ^ x)') != 0 | y v (z ^ x)' = x'. x' ^ y = (x v y) ^ x'. x ^ ((x v y)' ^ z)' = x. x v (y ^ (y ^ x')') = x. x v (y ^ (z v x')') = x. (x ^ ((y ^ x) v z)) v (u v (y ^ x)') = 1. x v (y ^ (x' ^ y)') = x. x ^ y' != 0 | y v x = y. x v (y' v x)' = x v y. (x' v y) ^ (y v x) = y. x ^ ((y v (x ^ ((x ^ y) v z))) ^ u) = x ^ ((y v z) ^ u). (x ^ y) v (y' ^ x) = x. x v (x' ^ y) = x v y. (x v y) ^ (x v y') = x. (x v y) ^ (x' v y) = y. x ^ (y ^ ((z v (x ^ ((x ^ z) v (u ^ w)))) ^ v5)) = y ^ (x ^ ((z v (u ^ w)) ^ v5)). (x v y) ^ (y' v x) = x. (x v y') ^ (y v x) = x. (x v y) ^ (y v x') = y. (x v y)' = y' ^ x'. x ^ ((y v ((x v z) ^ (((x v z) ^ y) v (u ^ w)))) ^ v5) = x ^ ((y v (u ^ w)) ^ v5). x v (y ^ x') = x v y. (x ^ y) v (x ^ y') = x. (x ^ y)' = x' v y'. x ^ y' != 0 | x v y = y. x' ^ (((y ^ x) v (x' ^ (z ^ u))) ^ w) = x' ^ (((y ^ x) v (z ^ u)) ^ w). (x v y) ^ y' = x ^ y'. (x v y) ^ x' = y ^ x'. x v y != 1 | y' v x = x. x ^ y != 1 | y ^ x = 1. x ^ (y ^ (z v (x ^ (y ^ ((y ^ (z ^ x)) v (u ^ w)))))) = x ^ (y ^ (z v (u ^ w))). x v y != 1 | y v x = 1. x v y != 1 | x v y' = x. x v y' != 1 | x v y = x. x v y' != 1 | y v x = x. x ^ (y ^ (z v (x ^ (y ^ ((x ^ (y ^ z)) v u))))) = x ^ (y ^ (z v u)). x ^ y != 0 | y' ^ x = x. 0 != x | x v y = x' ^ y. x ^ y != 0 | x ^ y' = x. (x ^ y) v x' = y v x'. ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/Makefile ================================================ # LADR/apps.src CC = gcc # XFLAGS can be specified on the command line (see XFLAGS below) CFLAGS = $(XFLAGS) -O -Wall # CFLAGS = $(XFLAGS) -O6 -Wall # CFLAGS = $(XFLAGS) -g -O -Wall # CFLAGS = $(XFLAGS) -g -O0 -Wall # CFLAGS = $(XFLAGS) -pg -O -Wall # CFLAGS = $(XFLAGS) -Wall -pedantic PROGRAMS = latfilter olfilter clausefilter idfilter renamer unfast clausetester rewriter isofilter0 isofilter isofilter2 dprofiles interpfilter upper-covers miniscope interpformat prooftrans mirror-flip perm3 sigtest directproof test_clause_eval test_complex complex gen_trc_defs all: ladr apps install realclean ladr: cd ../ladr && $(MAKE) libladr.a clean: /bin/rm -f *.o realclean: /bin/rm -f *.o $(PROGRAMS) install: /bin/mv $(PROGRAMS) ../bin tags: etags *.c ../ladr/*.c apps: $(PROGRAMS) test: test.o $(CC) $(CFLAGS) -o test test.o ../ladr/libladr.a interpformat: interpformat.o $(CC) $(CFLAGS) -o interpformat interpformat.o ../ladr/libladr.a prooftrans: prooftrans.o $(CC) $(CFLAGS) -o prooftrans prooftrans.o ../ladr/libladr.a directproof: directproof.o $(CC) $(CFLAGS) -o directproof directproof.o ../ladr/libladr.a test_clause_eval: test_clause_eval.o $(CC) $(CFLAGS) -o test_clause_eval test_clause_eval.o ../ladr/libladr.a test_complex: test_complex.o $(CC) $(CFLAGS) -o test_complex test_complex.o ../ladr/libladr.a complex: complex.o $(CC) $(CFLAGS) -o complex complex.o ../ladr/libladr.a latfilter: latfilter.o $(CC) $(CFLAGS) -o latfilter latfilter.o ../ladr/libladr.a olfilter: olfilter.o $(CC) $(CFLAGS) -o olfilter olfilter.o ../ladr/libladr.a unfast: unfast.o $(CC) $(CFLAGS) -o unfast unfast.o ../ladr/libladr.a upper-covers: upper-covers.o $(CC) $(CFLAGS) -o upper-covers upper-covers.o ../ladr/libladr.a miniscope: miniscope.o $(CC) $(CFLAGS) -o miniscope miniscope.o ../ladr/libladr.a isofilter0: isofilter0.o $(CC) $(CFLAGS) -o isofilter0 isofilter0.o ../ladr/libladr.a isofilter: isofilter.o $(CC) $(CFLAGS) -o isofilter isofilter.o ../ladr/libladr.a isofilter2: isofilter2.o $(CC) $(CFLAGS) -o isofilter2 isofilter2.o ../ladr/libladr.a dprofiles: dprofiles.o $(CC) $(CFLAGS) -o dprofiles dprofiles.o ../ladr/libladr.a renamer: renamer.o $(CC) $(CFLAGS) -o renamer renamer.o ../ladr/libladr.a rewriter: rewriter.o $(CC) $(CFLAGS) -o rewriter rewriter.o ../ladr/libladr.a idfilter: idfilter.o $(CC) $(CFLAGS) -o idfilter idfilter.o ../ladr/libladr.a clausefilter: clausefilter.o $(CC) $(CFLAGS) -o clausefilter clausefilter.o ../ladr/libladr.a interpfilter: interpfilter.o $(CC) $(CFLAGS) -o interpfilter interpfilter.o ../ladr/libladr.a clausetester: clausetester.o $(CC) $(CFLAGS) -o clausetester clausetester.o ../ladr/libladr.a mirror-flip: mirror-flip.o $(CC) $(CFLAGS) -o mirror-flip mirror-flip.o ../ladr/libladr.a perm3: perm3.o $(CC) $(CFLAGS) -o perm3 perm3.o ../ladr/libladr.a sigtest: sigtest.o $(CC) $(CFLAGS) -o sigtest sigtest.o ../ladr/libladr.a rewriter2: rewriter2.o $(CC) $(CFLAGS) -o rewriter2 rewriter2.o ../ladr/libladr.a gen_trc_defs: gen_trc_defs.o $(CC) $(CFLAGS) -o gen_trc_defs gen_trc_defs.o ../ladr/libladr.a ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/README.directproof ================================================ Directproof. This applies to Horn sets in which the only relation is equality, and the denial is a unit. It starts with a Prover9 proof. If there are nonunit clauses in the proof, they must be used with hyperresolution or positive resolution (e.g, no UR or paramodulation). Def: a proof is bidirectional if a negative clause is used for something (including flipping) other than unit conflict. Algorithm: While the proof is bidirectional: eliminate the last backward step. Note that if a proof is bidirectional, there is a backward step right at the end, so all of the transformations are at the end of the proof (involve the empty clause). Note that the transformations can introduce para into variables, para from variables, "instantiate" inferences, and instances of x=x as new assumptions. Cases handled so far: Case 1: Flip negative clause then apply unit conflict: Case 1a: Unit conflict does an implicit flip. 1. a != b. [ ... ] 2. b != a. [1,flip] 3. a = b. [ ... ] 4. $F [resolve,2,3(flip)] Transform this by simply removing lines 2 and 4, then applying unit conflict to 1 and 3. Case 1b: Unit conflict does not do implicit flip. 1. a != b. [ ... ] 2. b != a. [1,flip] 3. b = a. [ ... ] 4. $F [resolve,2,3] Transform this in the obvious way by removing steps 2 and 4, flipping 3, and then applying unit conflict with 1. Case 2: Para into negative clause to get an instance of x != x. Case 2a: Para into top of negative clause 1. a = b. [ ... ] 2. a != b. [ ... ] 5. b != b. [para,1,3] 6. $F [3,xx_res] (1 and 2 give unit conflict, but the proof can be as shown.) Transform this by simply doing a unit conflict between 1 and 2 If para goes from or into the wrong side, we might have to flip the positive one first. Case 2b: Para into proper subterm of neg clause. 1. a = b. [ ... ] 2. f(g(a)) != f(g(b)). [ ... ] 3. f(g(b)) != f(g(b)). [para,1(left),2] 4. $F [3,xx_res] Transformation: We have to derive f(g(a)) = f(g(b)) from a=b. First assume f(g(x)) = f(g(x)), then para the *opposite* side of a=b into the position in f(g(x)) = f(g(x)) that corresponds to the into position of 2 (that is, the first occurrence of x). Result: 1. a = b. [ ... ] 2. f(g(a)) != f(g(b)). [ ... ] 5. f(g(x)) = f(g(x)). [assumption] 6. f(g(a)) = f(g(b)). [para,1(right),5] 7. $F [resolve,2,6] (Instead we could have an inference rule that takes a=b and derives g(a) = g(b), and then apply it again to get f(g(a))=f(g(b)). I have two objections to this: first, the IVY proof checker cannot handle inferences like that; second, you have to build up the equality you need one step at a time.) Case 3: Para into a neg clause, then unit conflict with some positive clause. Note: unit conflict can involve implicit flip. In that case, flip the positive equality participating in the unit conflict (clause 3 below) before doing anything else. 1. a = b1. [ ... ] 2. f[a] != c. [ ... ] 3. f[b2] = c. [ ... ] 4. f[b1] != c. [para,1(left),2] 5. $F [resolve,3,4] (b1 and b2 unify) Case 3a: In clause 3, term b2 exists. Transformation: Para *opposite* side of 1 into position in 3 (b2) corresponding to the into position of 2. Then unit conflict with 2. Result: 1. a = b1. [ ... ] 2. f[a] != c. [ ... ] 3. f[b2] = c. [ ... ] 6. f[a] = c. [para,1(right),3] 7. $F [resolve 2,6] Case 3b: In clause 3, term at position b2 does not exist. Transformation: Instantiate clause 3 (minimally) so that the position exists, then proceed as in case 3a. An example of case 3b: Bidirectional: 1 a = b. [assumption]. 2 f(c,g(h(g(a),d))) != g(h(g(b),d)). [assumption]. 3 f(c,x) = x. [assumption]. 4 f(c,g(h(g(b),d))) != g(h(g(b),d)). [para(1(a,1),2(a,1,2,1,1,1))]. 5 $F. [resolve(3,a,4,a)]. Transformed: 1 a = b. [assumption]. 2 f(c,g(h(g(a),d))) != g(h(g(b),d)). [assumption]. 3 f(c,x) = x. [assumption]. 6 f(c,g(h(g(y),z))) = g(h(g(y),z)). [instantiate(3,[[x:g(h(g(y),z))]])]. 7 f(c,g(h(g(a),x))) = g(h(g(b),x)). [para(1(a,2),6(a,1,2,1,1,1))]. 8 $F. [resolve(7,a,2,a)]. ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/README.solaris ================================================ 1. make -C doesn't work (changes directories) 2. CFLAGS don't work -O6 and -Wall 3. // comments don't work ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/TAGS ================================================ clausefilter.c,368 #define PROGRAM_NAME 22,815 static char Help_string[25,884 static Ordertype interp_compare(33,1240 void sort_interps(50,1541 Interp find_interp(76,2230 enum {TRUE_IN_ALL,95,2679 enum {TRUE_IN_ALL, TRUE_IN_SOME,95,2679 enum {TRUE_IN_ALL, TRUE_IN_SOME, FALSE_IN_ALL,95,2679 enum {TRUE_IN_ALL, TRUE_IN_SOME, FALSE_IN_ALL, FALSE_IN_SOME}95,2679 int main(97,2743 clausetester.c,79 #define PROGRAM_NAME 22,815 static char Help_string[25,884 int main(32,1151 complex.c,155 #define PROGRAM_NAME 21,787 void complex4_compare(31,920 BOOL complex4_p2(56,1412 void complex4_p1(77,1748 double complex4(96,2022 int main(115,2297 directproof.c,702 #define PROGRAM_NAME 27,907 static char Help_string[30,972 static int Transformations 31,1004 #define BUF_MAX 33,1037 String_buf read_heading(42,1124 void read_program_input(70,1641 BOOL read_to_line(117,3040 void print_proof(135,3366 BOOL horn_eq_clauses(188,4679 BOOL pos_bin_res(214,5165 BOOL all_resolutions_pos_binary(244,5877 BOOL all_paramodulations_unit(264,6186 Topform first_pos_parent(283,6529 Topform first_neg_parent(302,6903 BOOL bidirectional(321,7274 void last_two_steps(340,7615 Term xx_recurse(358,7990 Topform xx_instance(389,8497 Term instance_from_position_recurse(410,9022 Term instance_from_position(430,9440 Plist forward_proof(445,9830 int main(640,16260 dprofiles.c,79 #define PROGRAM_NAME 25,888 static char Help_string[28,953 int main(33,1126 idfilter.c,79 #define PROGRAM_NAME 22,814 static char Help_string[25,879 int main(47,1679 interpfilter.c,271 #define PROGRAM_NAME 22,815 static char Help_string[25,884 Topform find_clause(47,1628 enum {ALL_TRUE,60,1906 enum {ALL_TRUE, SOME_TRUE,60,1906 enum {ALL_TRUE, SOME_TRUE, ALL_FALSE,60,1906 enum {ALL_TRUE, SOME_TRUE, ALL_FALSE, SOME_FALSE}60,1906 int main(62,1958 interpformat.c,643 #define PROGRAM_NAME 26,892 static char Help_string[29,960 enum {STANDARD,44,1743 enum {STANDARD, STANDARD2,44,1743 enum {STANDARD, STANDARD2, PORTABLE,44,1743 enum {STANDARD, STANDARD2, PORTABLE, TABULAR,44,1743 enum {STANDARD, STANDARD2, PORTABLE, TABULAR, RAW,44,1743 enum {STANDARD, STANDARD2, PORTABLE, TABULAR, RAW, COOKED,44,1743 enum {STANDARD, STANDARD2, PORTABLE, TABULAR, RAW, COOKED, TEX,44,1743 enum {STANDARD, STANDARD2, PORTABLE, TABULAR, RAW, COOKED, TEX, XML}44,1743 String_buf read_next_section(53,1884 String_buf read_mace4_input(81,2438 BOOL read_to_line(118,3217 Term next_interp(136,3528 int main(159,3996 isofilter.c,111 #define PROGRAM_NAME 25,888 static char Help_string[28,954 static BOOL iso_member(42,1493 int main(52,1722 isofilter0.c,111 #define PROGRAM_NAME 25,888 static char Help_string[28,955 static BOOL iso_member(41,1443 int main(51,1672 isofilter2.c,114 #define PROGRAM_NAME 25,888 static char Help_string[28,955 static BOOL interp_member(42,1494 int main(52,1720 latfilter.c,267 #define PROGRAM_NAME 21,787 static char Help_string[24,853 int Meet_sym;38,1520 int Join_sym;39,1543 int M_sym;40,1566 int J_sym;41,1589 BOOL meet_term(49,1668 BOOL join_term(60,1824 BOOL lattice_leq(84,2457 int lattice_identity(125,3572 int main(139,3834 miniscope.c,46 #define PROGRAM_NAME 22,812 int main(31,928 mirror-flip.c,213 #define PROGRAM_NAME 21,787 static char Help_string[24,855 static BOOL Debug 27,909 Term mirror_term(36,1001 Topform mirror(62,1488 Topform flip(79,1786 BOOL contains_mirror_flip(97,2090 int main(126,2806 olfilter.c,758 #define PROGRAM_NAME 21,787 static char Help_string[24,852 int Meet_sym;50,1919 int Join_sym;51,1933 int Comp_sym;52,1947 int Zero_sym;53,1961 int One_sym;54,1975 int Sheffer_sym;55,1988 #define MEET_TERM(MEET_TERM57,2006 #define JOIN_TERM(JOIN_TERM58,2058 #define COMPLEMENT_TERM(COMPLEMENT_TERM59,2110 #define ZERO_TERM(ZERO_TERM60,2162 #define ONE_TERM(ONE_TERM61,2214 #define SHEFFER_TERM(SHEFFER_TERM62,2265 static Term complement(74,2583 static Term neg_norm_form(98,3170 static Term simplify_01(154,4515 BOOL ol_leq(229,6355 static BOOL reduced_join(292,7631 static BOOL reduced_meet(306,7866 static BOOL reduced(322,8137 static Term beta(361,9035 BOOL ol_identity(405,9896 Term expand_defs(437,10736 int main(463,11255 perm3.c,182 #define PROGRAM_NAME 21,787 static char Help_string[24,849 static BOOL Debug 27,903 Term perm3_term(36,993 Topform perm3(57,1346 BOOL contains_perm3(74,1664 int main(117,2906 prooftrans.c,685 #define PROGRAM_NAME 27,922 static char Help_string[30,986 enum {NO_TRANS,39,1478 enum {NO_TRANS, EXPAND_EQ,39,1478 enum {NO_TRANS, EXPAND_EQ, EXPAND,39,1478 enum {NO_TRANS, EXPAND_EQ, EXPAND, EXPAND_IVY}39,1478 enum {ORDINARY,41,1557 enum {ORDINARY, PARENTS_ONLY,41,1557 enum {ORDINARY, PARENTS_ONLY, XML,41,1557 enum {ORDINARY, PARENTS_ONLY, XML, HINTS,41,1557 enum {ORDINARY, PARENTS_ONLY, XML, HINTS, IVY,41,1557 enum {ORDINARY, PARENTS_ONLY, XML, HINTS, IVY, TAGGED}41,1557 #define BUF_MAX 43,1636 String_buf read_heading(52,1723 void read_program_input(82,2314 BOOL read_to_line(133,3891 void print_proof(151,4217 Plist add_to_hints(197,5379 int main(213,5651 renamer.c,79 #define PROGRAM_NAME 21,787 static char Help_string[24,851 int main(32,1184 rewriter.c,79 #define PROGRAM_NAME 22,814 static char Help_string[25,879 int main(46,1617 rewriter2.c,79 #define PROGRAM_NAME 22,815 static char Help_string[25,880 int main(40,1455 sigtest.c,78 #define PROGRAM_NAME 22,815 static char Help_string[25,879 int main(29,921 test_clause_eval.c,46 #define PROGRAM_NAME 23,848 int main(26,921 test_complex.c,46 #define PROGRAM_NAME 22,816 int main(25,885 unfast.c,79 #define PROGRAM_NAME 21,787 static char Help_string[24,850 int main(37,1286 upper-covers.c,167 #define I2(I225,895 #define PROGRAM_NAME 27,936 static char Help_string[30,1005 static BOOL adjacent(43,1390 static void upper_covers(52,1573 int main(106,2869 ../ladr/ac_redun.c,440 static Ilist C_symbols 21,778 static Ilist A1_symbols 22,833 static Ilist A2_symbols 23,905 static Ilist AC_symbols 24,977 BOOL same_top(39,1200 int commutativity(59,1569 int associativity(91,2262 int c_associativity(132,3207 int associativity3(179,4198 int associativity4(231,5386 Ordertype can_compare(272,6474 Term canon(293,6928 BOOL cac_redundant_atom(342,7960 BOOL cac_tautology(387,9107 BOOL cac_redundancy(425,10067 ../ladr/accanon.c,142 void flatten(36,1030 void right_associate(69,1748 void ac_canonical2(121,2627 void ac_canonical(180,4499 int check_ac_canonical(234,5902 ../ladr/attrib.c,1700 struct attribute attribute25,875 #define MAX_ATTRIBUTE_NAMES 37,1170 } Attribute_names[43,1482 static int Next_attribute_name 45,1523 #define PTRS_ATTRIBUTE 51,1589 static unsigned Attribute_gets,52,1643 static unsigned Attribute_gets, Attribute_frees;52,1643 Attribute get_attribute(61,1769 void free_attribute(75,1968 void fprint_attrib_mem(94,2362 void p_attrib_mem(120,2992 Attribute_type attribute_type(136,3176 char *attribute_name(148,3351 int register_attribute(166,3693 void declare_term_attribute_inheritable(195,4526 BOOL inheritable(209,4840 Attribute set_int_attribute(228,5206 int get_int_attribute(261,5911 BOOL exists_attribute(287,6465 Attribute set_term_attribute(312,6950 void replace_term_attribute(346,7713 void replace_int_attribute(378,8531 Term get_term_attribute(410,9327 Term get_term_attributes(441,10052 Attribute set_string_attribute(477,10858 char *get_string_attribute(512,11717 BOOL string_attribute_member(542,12414 void zap_attributes(567,12990 Attribute delete_attributes(589,13421 Attribute cat_att(619,14026 Term build_attr_term(644,14497 Term attributes_to_term(689,15504 Attribute cat_attributes(709,15928 int attribute_name_to_id(732,16387 Attribute term_to_attributes(762,17061 Attribute inheritable_att_instances(814,18323 Attribute copy_attributes(840,18889 void instantiate_inheritable_attributes(869,19513 void renumber_vars_attributes(892,20006 void set_vars_attributes(913,20429 Plist vars_in_attributes(935,20868 int label_att(959,21280 BOOL attributes_contain_variables(982,21725 Attribute copy_int_attribute(1009,22234 Attribute copy_string_attribute(1030,22613 Attribute copy_term_attribute(1051,22993 ../ladr/avltree.c,964 struct avl_node avl_node24,832 static BOOL Debug 31,1046 #define PTRS_AVL_NODE 37,1103 static unsigned Avl_node_gets,38,1155 static unsigned Avl_node_gets, Avl_node_frees;38,1155 Avl_node get_avl_node(47,1277 void free_avl_node(61,1468 void fprint_avltree_mem(80,1859 void p_avltree_mem(106,2486 int avl_height(126,2753 int avl_size(142,2972 void set_height_and_size(154,3126 BOOL balance_ok(167,3383 Avl_node rotate_left(179,3563 Avl_node rotate_right(198,3893 Avl_node avl_fix(217,4220 Avl_node avl_insert(262,5260 Avl_node remove_and_return_largest(295,6105 Avl_node remove_and_return_smallest(315,6512 Avl_node avl_delete(342,7133 Avl_node avl_lookup(383,8118 void *avl_find(414,8891 void *avl_smallest(432,9226 void *avl_largest(453,9575 int avl_place(476,10045 double avl_position(510,10853 void *avl_nth_item(529,11236 void *avl_item_at_position(556,11890 void avl_zap(580,12406 void avl_check(604,12878 void p_avl(646,14150 ../ladr/backdemod.c,234 void index_term_back_demod(30,890 void index_clause_back_demod(51,1303 BOOL rewritable_term(70,1684 BOOL rewritable_clause(99,2257 Plist back_demod_linear(129,2996 BOOL lex_rewritable(149,3404 Plist back_demod_indexed(177,4113 ../ladr/banner.c,57 void print_separator(40,1020 void print_banner(66,1615 ../ladr/basic.c,453 static BOOL Basic_paramodulation 64,2487 static int Nonbasic_flag 65,2561 void init_basic_paramod(77,2744 void set_basic_paramod(95,3090 BOOL basic_paramod(111,3311 void mark_term_nonbasic(126,3491 void mark_all_nonbasic(143,3781 BOOL nonbasic_term(165,4200 BOOL basic_term(181,4448 int nonbasic_flag(196,4627 Term apply_basic(213,4932 Term apply_basic_substitute(258,6220 void clear_all_nonbasic_marks(287,6842 void p_term_basic(308,7218 ../ladr/btm.c,1920 typedef struct ac_match_pos * Ac_match_pos;Ac_match_pos23,810 typedef struct ac_match_free_vars_pos * Ac_match_free_vars_pos;Ac_match_free_vars_pos24,854 struct btm_state btm_state26,919 struct ac_match_pos ac_match_pos47,1586 struct ac_match_free_vars_pos ac_match_free_vars_pos70,2776 #define POP 81,3224 #define BACKTRACK 82,3244 #define GO 83,3264 #define SUCCESS 84,3284 #define FAILURE 85,3304 #define BIND_BT(BIND_BT89,3378 #define PTRS_AC_MATCH_POS 101,3681 static unsigned Ac_match_pos_gets,102,3741 static unsigned Ac_match_pos_gets, Ac_match_pos_frees;102,3741 #define PTRS_AC_MATCH_FREE_VARS_POS 104,3797 static unsigned Ac_match_free_vars_pos_gets,105,3877 static unsigned Ac_match_free_vars_pos_gets, Ac_match_free_vars_pos_frees;105,3877 #define PTRS_BTM_STATE 107,3953 static unsigned Btm_state_gets,108,4007 static unsigned Btm_state_gets, Btm_state_frees;108,4007 Ac_match_pos get_ac_match_pos(117,4139 void free_ac_match_pos(131,4359 Ac_match_free_vars_pos get_ac_match_free_vars_pos(144,4588 void free_ac_match_free_vars_pos(158,4878 Btm_state get_btm_state(171,5131 void free_btm_state(187,5375 void fprint_btm_mem(206,5763 void p_btm_mem(244,7007 void flatten_mult(265,7447 int macbv_rec(302,8180 int match_ac_bound_vars(340,9232 void set_up_free_vars(382,10517 void unbind_free_var(442,11941 int free_var_match(477,12690 Term build_partial_term(591,15486 void clear_partial_term(621,16054 #define GO_FUNCTORS 637,16348 #define GO_BOUND_VARS 638,16372 #define GO_FREE_VARS 639,16396 #define SUCCESS 640,16420 #define FAILURE 641,16444 int match_ac(661,16973 void match_ac_cancel(860,22259 Btm_state match_bt_backup(888,22838 Btm_state match_bt_guts(932,23563 int match_commute(1081,26575 void p_acm(1134,27766 void p_btm_state(1177,28734 Btm_state match_bt_first(1234,30497 Btm_state match_bt_next(1259,30987 void match_bt_cancel(1294,31787 ../ladr/btu.c,1356 #define MAX_ACU_ARGS 23,810 typedef struct ac_position * Ac_position;Ac_position25,836 struct ac_position ac_position27,879 struct btu_state btu_state45,1792 #define GO 67,2411 #define SUCCESS 68,2431 #define EXHAUSTED 69,2451 #define FAILURE 70,2471 #define POP 71,2491 #define BACKTRACK 72,2511 #define BIND_BT(BIND_BT76,2598 #define PTRS_BTU_STATE 88,2836 static unsigned Btu_state_gets,89,2890 static unsigned Btu_state_gets, Btu_state_frees;89,2890 #define PTRS_AC_POSITION 91,2940 static unsigned Ac_position_gets,92,2998 static unsigned Ac_position_gets, Ac_position_frees;92,2998 Btu_state get_btu_state(101,3128 void free_btu_state(116,3345 Ac_position get_ac_position(129,3537 void free_ac_position(143,3750 void fprint_btu_mem(162,4148 void p_btu_mem(194,5020 void p_binding(210,5195 void flatten_deref(244,6222 int compare_ncv_context(287,7062 void sort_ac(345,8378 void elim_con_context(382,9030 void ac_mult_context(411,9681 void ac_prepare(466,10784 void set_up_basis_terms(514,12013 int unify_ac(560,13210 void unify_ac_cancel(897,22343 void p_ac_position(956,23602 Btu_state unify_bt_backup(986,24303 int unify_commute(1040,25430 Btu_state unify_bt_first(1152,28803 Btu_state unify_bt_next(1175,29320 void unify_bt_cancel(1208,30123 Btu_state unify_bt_guts(1246,30927 void p_bt_tree(1434,34834 ../ladr/clash.c,438 #define PTRS_CLASH 27,841 static unsigned Clash_gets,28,887 static unsigned Clash_gets, Clash_frees;28,887 Clash get_clash(37,997 void free_clash(51,1168 void fprint_clash_mem(70,1540 void p_clash_mem(96,2138 Clash append_clash(116,2451 void zap_clash(136,2773 Literals atom_to_literal(158,3124 Literals apply_lit(179,3547 int lit_position(191,3732 Topform resolve(212,4064 void clash_recurse(272,5622 void clash(356,8078 ../ladr/clause_eval.c,1430 enum { CL_EVAL_AND,39,1420 CL_EVAL_OR,40,1440 CL_EVAL_NOT,41,1459 CL_EVAL_ALL,42,1479 CL_EVAL_LESS,44,1500 CL_EVAL_LESS_EQUAL,45,1521 CL_EVAL_GREATER,46,1548 CL_EVAL_GREATER_EQUAL,47,1572 CL_EVAL_EQUAL,48,1602 CL_EVAL_POSITIVE,50,1625 CL_EVAL_NEGATIVE,51,1650 CL_EVAL_MIXED,52,1675 CL_EVAL_HINT,54,1698 CL_EVAL_TRUE,56,1720 CL_EVAL_FALSE,57,1741 CL_EVAL_HAS_EQUALITY,59,1764 CL_EVAL_HORN,60,1793 CL_EVAL_DEFINITE,61,1814 CL_EVAL_UNIT,62,1839 CL_EVAL_INITIAL,64,1861 CL_EVAL_RESOLVENT,65,1885 CL_EVAL_UR_RESOLVENT,66,1911 CL_EVAL_HYPER_RESOLVENT,67,1940 CL_EVAL_FACTOR,68,1972 CL_EVAL_PARAMODULANT,69,1995 CL_EVAL_BACK_DEMODULANT,70,2024 CL_EVAL_SUBSUMER,71,2056 CL_EVAL_WEIGHT,73,2082 CL_EVAL_VARIABLES,74,2105 CL_EVAL_DEPTH,75,2131 CL_EVAL_LITERALS,76,2153 CL_EVAL_LEVEL77,2178 struct clause_eval clause_eval82,2300 #define PTRS_EVAL_RULE 94,2608 static unsigned Clause_eval_gets,95,2682 static unsigned Clause_eval_gets, Clause_eval_frees;95,2682 Clause_eval get_clause_eval(104,2816 void free_clause_eval(118,3027 void zap_clause_eval_rule(138,3280 Clause_eval compile_clause_eval_rule(160,3685 BOOL eval_clause_in_rule(284,7091 BOOL rule_contains_semantics(384,9884 ../ladr/clause_misc.c,317 Clist clist_copy(39,1033 Clist copy_clauses_to_clist(64,1527 Clist move_clauses_to_clist(90,2067 Plist input_clauses(115,2549 void delete_clause(145,3153 void delete_clist(169,3732 Topform copy_clause_ija(199,4222 Plist copy_clauses_ija(220,4687 void delete_clauses(244,5109 void make_clause_basic(264,5419 ../ladr/clauseid.c,421 #define CLAUSE_ID_TAB_SIZE 23,815 static Plist Topform_id_tab[25,850 static unsigned Topform_id_count 26,903 int next_clause_id(35,1010 int clause_ids_assigned(51,1236 void assign_clause_id(70,1642 void unassign_clause_id(97,2232 Topform find_clause_by_id(135,3043 void fprint_clause_id_tab(161,3524 void p_clause_id_tab(184,3955 Plist insert_clause_into_plist(204,4377 BOOL clause_plist_member(239,5183 ../ladr/clauses.c,437 Topform clause_member_plist(38,1022 Plist intersect_clauses(62,1485 int max_clause_weight(87,1954 int max_clause_symbol_count(110,2355 Plist nonneg_clauses(132,2776 BOOL all_clauses_horn(155,3173 BOOL all_clauses_unit(177,3512 BOOL all_clauses_positive(199,3855 int neg_nonunit_clauses(221,4219 int negative_clauses(244,4615 int most_literals(268,4988 BOOL pos_equality_in_clauses(291,5389 BOOL equality_in_clauses(315,5835 ../ladr/clausify.c,280 Literals formula_to_literal(39,1157 Literals formula_to_literals(59,1553 Topform formula_to_clause(91,2367 Plist formula_to_clauses(117,2962 Plist clausify_formula(147,3746 Term vars_to_names(170,4123 Formula literal_to_formula(207,4852 Formula clause_to_formula(231,5263 ../ladr/clist.c,1622 #define PTRS_CLIST_POS 27,841 static unsigned Clist_pos_gets,28,895 static unsigned Clist_pos_gets, Clist_pos_frees;28,895 #define PTRS_CLIST 30,945 static unsigned Clist_gets,31,991 static unsigned Clist_gets, Clist_frees;31,991 Clist_pos get_clist_pos(40,1109 void free_clist_pos(54,1308 Clist get_clist(67,1488 void free_clist(81,1659 void fprint_clist_mem(100,2031 void p_clist_mem(132,2871 Clist clist_init(155,3359 void name_clist(178,3714 void clist_free(201,4068 void clist_append(223,4378 void clist_prepend(255,4847 void clist_insert_before(287,5333 void clist_insert_after(319,5861 void clist_remove(353,6518 void clist_remove_all_clauses(397,7384 int clist_remove_all(415,7735 int clist_member(436,8061 void fprint_clist(461,8549 void p_clist(486,8968 void clist_zap(504,9279 void clist_check(532,9736 void clist_append_all(570,10469 BOOL clist_empty(589,10852 int clist_length(604,11025 int max_wt_in_clist(620,11248 BOOL horn_clist(641,11587 BOOL unit_clist(661,11901 BOOL equality_in_clist(681,12244 BOOL neg_nonunit_in_clist(701,12592 Plist clauses_in_clist(722,13005 void clist_swap(746,13489 void clist_move_clauses(772,14011 Plist move_clist_to_plist(791,14285 Plist copy_clist_to_plist_shallow(814,14637 Clist plist_to_clist(833,14955 void clist_reverse(854,15260 Clist_pos pos_in_clist(879,15637 void clist_append_plist(896,15894 Plist prepend_clist_to_plist(914,16159 int clist_number_of_weight(936,16490 Ordertype compare_clause_ids(958,16827 void sort_clist_by_id(978,17126 Plist neg_clauses_in_clist(1008,17641 void fprint_clause_clist(1031,18092 ../ladr/clock.c,937 struct clock clock23,812 static BOOL Clocks_enabled 30,1081 static unsigned Clock_starts 31,1146 static unsigned Wall_start;33,1203 #define CPU_TIME(CPU_TIME42,1527 #define CPU_TIME(CPU_TIME45,1674 #define PTRS_CLOCK 52,1761 static unsigned Clock_gets,53,1807 static unsigned Clock_gets, Clock_frees;53,1807 Clock get_clock(62,1917 void free_clock(79,2115 Clock clock_init(107,2663 void clock_start(127,2968 void clock_stop(151,3396 unsigned clock_milliseconds(179,3912 double clock_seconds(207,4372 BOOL clock_running(234,4808 void clock_reset(251,5106 void fprint_clock(270,5325 char * get_date(287,5644 unsigned user_time(305,5933 double user_seconds(329,6331 unsigned system_time(356,6877 double system_seconds(383,7425 unsigned absolute_wallclock(405,7739 void init_wallclock(422,8004 unsigned wallclock(439,8293 void disable_clocks(454,8474 void enable_clocks(469,8646 BOOL clocks_enabled(484,8816 ../ladr/cnf.c,1177 static jmp_buf Jump_env;41,1433 static unsigned Fid_call_limit 43,1491 static unsigned Fid_calls 44,1534 Formula share_formula(53,1632 Formula consolidate_formula(90,2386 BOOL formula_ident_share(115,2931 Formula formula_copy_share(152,3804 BOOL complementary_share(180,4399 BOOL contains_complements_share(197,4738 BOOL prop_member_share(216,5099 BOOL prop_subset_share(232,5423 BOOL prop_subsume_share(250,5741 Formula remove_subsumed_share(274,6226 Formula bbt(316,7052 Formula balanced_binary(338,7474 Formula disjoin_flatten_simplify(360,7885 Formula simplify_and_share(407,9049 Formula distribute_top(436,9582 Formula distribute(473,10375 Formula cnf(502,10907 Formula dnf(535,11490 Formula skolem(547,11617 Formula skolemize(621,13568 Ilist unique_qvars(634,13719 Formula unique_quantified_vars(679,14878 void mark_free_vars_formula(697,15195 Formula remove_uni_quant(717,15650 Formula remove_universal_quantifiers(751,16407 Formula clausify_prepare(781,17249 Formula ms_free_vars(811,17860 Formula miniscope(871,19356 typedef void (*sighandler_t)sighandler_t932,20765 Formula miniscope_formula(938,20835 int cnf_max_clauses(990,22135 ../ladr/complex.c,399 #define IMAX(IMAX24,936 double complexity1(51,1570 double complexity2(111,2721 double complexity3(152,3498 Term complex4_devar(185,4140 Term complex4_revar(207,4566 void complex4_compare(229,4954 BOOL complex4_p2(249,5423 void complex4_p1(271,5813 double complex4(302,6749 void term_to_ints(335,7465 double term_complexity(358,7801 double clause_complexity(390,8370 int main(401,8659 ../ladr/compress.c,192 Term uncompress_term(33,910 void compress_term_recurse(55,1319 char *compress_term(78,1696 void compress_clause(103,2153 void uncompress_clause(132,2862 void uncompress_clauses(162,3508 ../ladr/definitions.c,379 BOOL is_definition(37,940 Term subst_terms(78,1936 void subst_free_vars(112,2782 Formula subst_atomic_formula(135,3358 Formula strip_quantifiers(174,4541 BOOL definition_applies(188,4735 Formula expand_with_definition(210,5158 Topform first_definition(236,5869 void process_definitions(260,6261 void expand_with_definitions(303,7215 void separate_definitions(344,8150 ../ladr/demod.c,397 static int Demod_attempts 26,866 static int Demod_rewrites 27,897 int demodulator_type(40,1100 void idx_demodulator(90,2289 int demod_attempts(117,2927 int demod_rewrites(133,3167 Term demod(147,3324 Term contract_bt(207,4875 Term demod_bt(242,5761 Term demodulate(288,6961 Term demod1_recurse(312,7536 void demod1(372,8902 Term part_recurse(403,9616 void particular_demod(468,11105 ../ladr/di_tree.c,869 static int Nonunit_fsub_tests;23,814 static int Nonunit_bsub_tests;24,845 static unsigned Sub_calls 26,877 static unsigned Sub_calls_overflows 27,908 #define BUMP_SUB_CALLS 28,949 int nonunit_fsub_tests(40,1133 int nonunit_bsub_tests(55,1324 #define PTRS_DI_TREE 64,1442 static unsigned Di_tree_gets,65,1492 static unsigned Di_tree_gets, Di_tree_frees;65,1492 Di_tree get_di_tree(77,1637 void free_di_tree(94,1849 void fprint_di_tree_mem(113,2235 void p_di_tree_mem(139,2855 Di_tree init_di_tree(160,3152 void di_tree_insert(175,3322 BOOL di_tree_delete(215,4094 void zap_di_tree(256,4984 void p_di_tree(281,5358 BOOL subsume_di_literals(311,5899 BOOL subsumes_di(343,6538 Topform di_tree_forward(359,6817 Topform forward_feature_subsume(395,7566 void di_tree_back(412,7903 Plist back_feature_subsume(448,8685 unsigned mega_sub_calls(469,9075 ../ladr/dioph.c,641 int gcd(28,860 int lcm(44,1095 int less_vec(57,1316 int var_check_1(79,1794 int var_check_2(105,2379 int add_solution(131,2924 int a_in_bounds(158,3623 int b_in_bounds(199,4664 int dio(242,5899 #define ADD_TO_SUM(ADD_TO_SUM359,8409 #define SUBTRACT_FROM_SUM(SUBTRACT_FROM_SUM362,8507 int next_combo_a(391,9547 int next_combo_b(451,10916 #define DOWN 514,12188 #define OVER 515,12206 #define BACKUP 516,12224 #define SUCCESS 517,12242 #define FAILURE 518,12260 int next_combo_c(527,12463 int superset_degree(615,14638 int next_combo_ss(661,16079 void p_ac_basis(722,17305 int all_combos(745,17807 int main(790,18715 ../ladr/discrim.c,598 #define PTRS_DISCRIM 27,843 static unsigned Discrim_gets,28,893 static unsigned Discrim_gets, Discrim_frees;28,893 #define PTRS_DISCRIM_POS 30,939 static unsigned Discrim_pos_gets,31,997 static unsigned Discrim_pos_gets, Discrim_pos_frees;31,997 Discrim get_discrim(43,1150 void free_discrim(60,1362 Discrim_pos get_discrim_pos(77,1605 void free_discrim_pos(94,1867 void fprint_discrim_mem(113,2273 void p_discrim_mem(145,3149 Discrim discrim_init(166,3480 void discrim_dealloc(182,3717 void zap_discrim_tree(198,3950 void destroy_discrim_tree(235,4636 BOOL discrim_empty(252,4937 ../ladr/discrimb.c,913 typedef struct flat2 * Flat2;Flat227,844 struct flat2 flat229,875 #define GO 38,1079 #define BACKTRACK 39,1099 #define SUCCESS 40,1119 #define FAILURE 41,1139 #define PTRS_FLAT2 47,1189 static unsigned Flat2_gets,48,1235 static unsigned Flat2_gets, Flat2_frees;48,1235 Flat2 get_flat2(57,1345 void free_flat2(71,1516 void fprint_discrimb_mem(90,1894 void p_discrimb_mem(116,2504 void print_discrim_bind_tree(132,2724 void fprint_discrim_bind_index(176,3623 void p_discrim_bind_index(192,3913 Discrim discrim_bind_insert_rec(207,4231 void discrim_bind_insert(279,5800 Discrim discrim_bind_end(313,6725 void discrim_bind_delete(364,7795 void discrim_bind_update(447,9650 Flat2 check_flat2(462,9927 void p_flat2(489,10403 Plist discrim_bind_retrieve_leaf(512,10803 void *discrim_bind_retrieve_first(681,14446 void *discrim_bind_retrieve_next(721,15400 void discrim_bind_cancel(758,16255 ../ladr/discrimw.c,1022 typedef struct flat * Flat;Flat23,815 struct flat flat25,844 #define GO 38,1324 #define BACKTRACK 39,1344 #define SUCCESS 40,1364 #define FAILURE 41,1384 #define PTRS_FLAT 47,1434 static unsigned Flat_gets,48,1478 static unsigned Flat_gets, Flat_frees;48,1478 Flat get_flat(57,1584 void free_flat(85,1982 void fprint_discrimw_mem(104,2355 void p_discrimw_mem(130,2958 Flat check_flat(146,3145 void p_flat(173,3612 void flip_flat(193,3918 int num_ac_args(230,4647 int num_ac_nv_args(246,4937 void print_discrim_wild_tree(262,5259 void fprint_discrim_wild_index(313,6394 void p_discrim_wild_index(329,6685 Discrim discrim_wild_insert_ac(341,6876 Discrim discrim_wild_insert_rec(390,7938 void discrim_wild_insert(459,9393 Discrim discrim_wild_end(493,10311 void discrim_wild_delete(568,11780 void discrim_wild_update(650,13625 Plist discrim_wild_retrieve_leaf(665,13937 void *discrim_wild_retrieve_first(895,19451 void *discrim_wild_retrieve_next(932,20234 void discrim_wild_cancel(968,20980 ../ladr/dollar.c,1127 struct rule rule26,963 SUM_OP=35,1067 SUM_OP=1, PROD_OP,35,1067 SUM_OP=1, PROD_OP, DIV_OP,35,1067 SUM_OP=1, PROD_OP, DIV_OP, MOD_OP,35,1067 SUM_OP=1, PROD_OP, DIV_OP, MOD_OP, MIN_OP,35,1067 SUM_OP=1, PROD_OP, DIV_OP, MOD_OP, MIN_OP, MAX_OP,35,1067 SUM_OP=1, PROD_OP, DIV_OP, MOD_OP, MIN_OP, MAX_OP, ABS_OP,35,1067 NEG_OP,36,1128 LT_OP,37,1138 LT_OP, LE_OP,37,1138 LT_OP, LE_OP, GT_OP,37,1138 LT_OP, LE_OP, GT_OP, GE_OP,37,1138 LLT_OP,38,1201 LLT_OP, LLE_OP,38,1201 LLT_OP, LLE_OP, LGT_OP,38,1201 LLT_OP, LLE_OP, LGT_OP, LGE_OP,38,1201 AND_OP,39,1261 AND_OP, OR_OP,39,1261 AND2_OP,40,1278 AND2_OP, OR2_OP,40,1278 IF_OP,41,1297 ID_OP,42,1306 ID_OP, NID_OP,42,1306 VAR_OP,43,1381 VAR_OP, CONST_OP,43,1381 VAR_OP, CONST_OP, GROUND_OP}43,1381 static int Symbols_size;45,1414 static int *Op_codes;46,1439 static struct rule **Rules;47,1461 static int Local_evals;48,1489 void init_dollar_eval(64,1639 BOOL evaluable_predicate(167,4724 Term dollar_eval(189,5046 Term rewrite_top(364,8968 Term rewrite(419,10202 void rewrite_with_eval(510,11971 ../ladr/fastparse.c,354 static int Arity[23,816 static int Symnum[24,883 static int Pos;26,951 #define MAX_LINE 28,1003 void fast_set_symbol(48,1442 void fast_set_defaults(79,2054 Term fast_parse(105,2556 Term fast_read_term(169,4110 void fast_fwrite_term(201,4733 void fast_fwrite_term_nl(245,5761 Topform fast_read_clause(271,6328 void fast_fwrite_clause(305,7065 ../ladr/fatal.c,146 static int Fatal_exit_code 23,812 void bell(36,971 int get_fatal_exit_code(53,1223 void set_fatal_exit_code(70,1517 void fatal_error(88,1880 ../ladr/features.c,384 static Ilist Feature_symbols;23,815 static int Work_size;30,1078 static int *Pos_occurrences;31,1139 static int *Neg_occurrences;32,1168 static int *Pos_maxdepth;33,1197 static int *Neg_maxdepth;34,1223 void init_features(46,1343 void fill_in_arrays(66,1852 Ilist features(114,2905 int feature_length(161,3850 BOOL features_less_or_equal(185,4281 void p_features(204,4544 ../ladr/flatdemod.c,528 static int Fdemod_attempts 23,816 static int Fdemod_rewrites 24,848 Flatterm fapply_demod(45,1284 enum { GO,75,1854 enum { GO, BACKTRACK 75,1854 void maybe_unbind(85,1964 #define MAYBE_UNBIND(MAYBE_UNBIND94,2152 Plist discrim_flat_retrieve_leaf(100,2309 void *discrim_flat_retrieve_first(187,3981 void *discrim_flat_retrieve_next(217,4536 void discrim_flat_cancel(250,5155 Flatterm fdemod(272,5561 Term fdemodulate(387,8548 int fdemod_attempts(426,9492 int fdemod_rewrites(442,9721 void fdemod_clause(462,10083 ../ladr/flatterm.c,646 #define PTRS_FLATTERM 27,844 static unsigned Flatterm_gets,28,896 static unsigned Flatterm_gets, Flatterm_frees;28,896 Flatterm get_flatterm(40,1045 void free_flatterm(63,1450 void fprint_flatterm_mem(82,1843 void p_flatterm_mem(108,2474 BOOL flatterm_ident(127,2691 void zap_flatterm(146,3031 Flatterm term_to_flatterm(166,3302 Term flatterm_to_term(204,3921 Flatterm copy_flatterm(230,4367 void print_flatterm(264,4906 int flatterm_symbol_count(300,5563 void p_flatterm(326,5941 BOOL flat_occurs_in(342,6123 I2list flat_multiset_vars(361,6434 BOOL flat_variables_multisubset(381,6778 int flatterm_count_without_vars(401,7167 ../ladr/formula.c,2323 #define PTRS_FORMULA 27,843 static unsigned Formula_gets,28,893 static unsigned Formula_gets, Formula_frees;28,893 static unsigned Arg_mem;30,939 Formula get_formula(39,1081 void free_formula(59,1367 void fprint_formula_mem(82,1891 void p_formula_mem(111,2630 unsigned formula_megs(131,2917 Formula formula_get(151,3208 void zap_formula(170,3576 BOOL logic_term(200,4042 void gather_symbols_in_term(220,4455 void gather_symbols_in_formula_term(248,5073 void gather_symbols_in_formula(277,5701 void gather_symbols_in_formulas(305,6386 Ilist function_symbols_in_formula(322,6699 Ilist relation_symbols_in_formula(344,7080 BOOL relation_symbol_in_formula(366,7460 Formula term_to_formula(386,7870 Term formula_to_term(459,9600 void fprint_formula(533,11467 void p_formula(602,13310 unsigned hash_formula(621,13611 BOOL formula_ident(652,14307 Formula formula_copy(682,14976 BOOL dual_type(708,15395 Formula dual(730,15755 Formula and(750,16001 Formula or(768,16221 Formula imp(786,16439 Formula impby(804,16662 Formula not(819,16862 Formula negate(836,17057 BOOL quant_form(851,17241 Formula flatten_top(866,17466 Formula formula_flatten(922,18562 Formula nnf2(949,19247 Formula nnf(1069,22166 Formula make_conjunction(1085,22381 Formula make_disjunction(1107,22721 void formula_canon_eq(1130,23122 int formula_size(1161,23679 int greatest_qvar(1189,24231 int greatest_symnum_in_formula(1222,24937 void subst_free_var(1256,25698 Formula elim_rebind(1277,26210 Formula eliminate_rebinding(1332,27677 Plist free_vars(1345,27850 BOOL closed_formula(1374,28407 Formula get_quant_form(1392,28686 Formula uni_close(1407,28935 Formula universal_closure(1430,29364 BOOL free_var(1445,29616 BOOL free_variable(1472,30064 Formula formulas_to_conjunction(1495,30575 Formula formulas_to_disjunction(1522,31168 Plist copy_plist_of_formulas(1544,31530 BOOL literal_formula(1567,31927 BOOL clausal_formula(1587,32226 void formula_set_vars_recurse(1608,32559 void formula_set_variables(1639,33407 BOOL positive_formula(1697,34792 BOOL formula_contains_attributes(1726,35312 BOOL subformula_contains_attributes(1752,35792 Ilist constants_in_formula(1775,36170 BOOL relation_in_formula(1792,36426 void rename_all_bound_vars(1815,36815 void rename_these_bound_vars(1843,37364 ../ladr/fpa.c,2247 static unsigned Fpa_id_count 23,810 static unsigned Next_calls 25,845 static unsigned Next_calls_overflows 26,877 #define BUMP_NEXT_CALLS 27,919 typedef struct fpa_trie * Fpa_trie;Fpa_trie29,1005 struct fpa_trie fpa_trie31,1042 struct fpa_index fpa_index40,1180 struct fpa_state fpa_state46,1261 struct path path61,1661 enum { LEAF,66,1708 enum { LEAF, UNION,66,1708 enum { LEAF, UNION, INTERSECT 66,1708 #define PTRS_FPA_TRIE 77,1963 static unsigned Fpa_trie_gets,78,2015 static unsigned Fpa_trie_gets, Fpa_trie_frees;78,2015 #define PTRS_FPA_STATE 80,2063 static unsigned Fpa_state_gets,81,2117 static unsigned Fpa_state_gets, Fpa_state_frees;81,2117 #define PTRS_FPA_INDEX 83,2167 static unsigned Fpa_index_gets,84,2221 static unsigned Fpa_index_gets, Fpa_index_frees;84,2221 Fpa_trie get_fpa_trie(93,2345 void free_fpa_trie(108,2554 Fpa_state get_fpa_state(121,2737 void free_fpa_state(135,2936 Fpa_index get_fpa_index(148,3124 void free_fpa_index(163,3340 void fprint_fpa_mem(182,3728 void p_fpa_mem(220,4823 void fprint_path(240,5096 void p_path(271,5602 void fprint_fpa_trie(284,5785 void fprint_fpa_index(326,6666 void p_fpa_index(345,7117 Fpa_trie fpa_trie_member_insert(360,7486 Fpa_trie fpa_trie_member(400,8533 void fpa_trie_possible_delete(430,9371 void path_insert(457,9995 void path_delete(479,10475 Ilist path_push(506,11060 void path_restore(529,11490 void fpa_paths(548,11912 Fpa_index fpa_init_index(591,12904 void fpa_update(616,13461 Fpa_state query_leaf_full(645,14164 Fpa_state query_leaf(663,14497 Fpa_state query_intersect(690,14941 Fpa_state query_union(707,15219 Fpa_state query_special(729,15561 void zap_fpa_state(779,16950 Fpa_state union_commuted(798,17226 BOOL var_in_context(846,18193 BOOL all_args_vars_in_context(859,18379 Fpa_state build_query(878,18691 void fprint_fpa_state(961,21085 void p_fpa_state(1007,22033 void p_fpa_query(1023,22283 Term next_term(1063,23565 Term fpa_next_answer(1180,26140 Term fpa_first_answer(1206,26777 void fpa_cancel(1229,27278 void zap_fpa_trie(1241,27415 void zap_fpa_index(1273,27873 BOOL fpa_empty(1290,28131 void fpa_density(1302,28304 void p_fpa_density(1325,28682 unsigned mega_next_calls(1340,28864 ../ladr/fpalist.c,985 #define F_INITIAL_SIZE 48,1970 #define F_MAX_SIZE 49,2050 #define PTRS_FPA_CHUNK 55,2135 static unsigned Fpa_chunk_gets,56,2189 static unsigned Fpa_chunk_gets, Fpa_chunk_frees;56,2189 #define PTRS_FPA_LIST 58,2239 static unsigned Fpa_list_gets,59,2291 static unsigned Fpa_list_gets, Fpa_list_frees;59,2291 static unsigned Chunk_mem;61,2339 Fpa_chunk get_fpa_chunk(70,2493 void free_fpa_chunk(87,2748 Fpa_list get_fpa_list(105,3012 void free_fpa_list(120,3233 void fprint_fpalist_mem(139,3624 void p_fpalist_mem(173,4613 #define FLAST(FLAST184,4799 #define FFIRST(FFIRST185,4838 Fpa_chunk double_chunksize(194,4953 Fpa_chunk flist_insert(232,5850 void fpalist_insert(314,7782 Fpa_chunk consolidate(344,8542 Fpa_chunk flist_delete(367,8977 void fpalist_delete(413,9894 struct fposition first_fpos(433,10232 struct fposition next_fpos(448,10440 void zap_fpa_chunks(474,10917 void zap_fpalist(492,11143 BOOL fpalist_empty(508,11338 void p_fpa_list(523,11519 ../ladr/glist.c,3091 #define PTRS_ILIST 25,804 static unsigned Ilist_gets,26,850 static unsigned Ilist_gets, Ilist_frees;26,850 #define PTRS_PLIST 28,892 static unsigned Plist_gets,29,938 static unsigned Plist_gets, Plist_frees;29,938 #define PTRS_I2LIST 31,980 static unsigned I2list_gets,32,1028 static unsigned I2list_gets, I2list_frees;32,1028 #define PTRS_I3LIST 34,1072 static unsigned I3list_gets,35,1120 static unsigned I3list_gets, I3list_frees;35,1120 Ilist get_ilist(47,1259 void free_ilist(65,1474 Plist get_plist(81,1661 void free_plist(99,1876 I2list get_i2list(115,2065 void free_i2list(133,2287 I3list get_i3list(149,2481 void free_i3list(167,2703 void fprint_glist_mem(186,3080 void p_glist_mem(224,4113 Plist plist_cat(251,4747 Plist plist_cat2(282,5266 Plist plist_pop(299,5589 int plist_count(318,5830 Plist rev_app_plist(332,6009 Plist reverse_plist(361,6506 Plist copy_plist(377,6752 void zap_plist(408,7226 Plist plist_append(432,7563 Plist plist_prepend(458,7987 BOOL plist_member(477,8269 Plist plist_subtract(500,8630 BOOL plist_subset(523,8978 Plist plist_remove(544,9317 Plist plist_remove_string(572,9760 Plist sort_plist(599,10177 Plist plist_remove_last(624,10653 int position_of_string_in_plist(649,11055 BOOL string_member_plist(674,11454 int longest_string_in_plist(690,11714 void *ith_in_plist(711,12022 void *plist_last(731,12298 Ilist ilist_cat(759,12990 Ilist ilist_cat2(788,13481 Ilist ilist_pop(810,13878 int ilist_count(829,14119 Ilist rev_app_ilist(843,14298 Ilist reverse_ilist(872,14795 Ilist copy_ilist(888,15041 void zap_ilist(918,15461 Ilist ilist_append(942,15799 Ilist ilist_prepend(968,16222 Ilist ilist_last(986,16442 BOOL ilist_member(1009,16859 Ilist ilist_subtract(1032,17218 Ilist ilist_removeall(1058,17629 Ilist ilist_intersect(1086,18078 Ilist ilist_union(1114,18550 Ilist ilist_set(1137,19085 Ilist ilist_rem_dups(1163,19488 BOOL ilist_is_set(1190,19851 BOOL ilist_subset(1210,20128 void fprint_ilist(1232,20497 void p_ilist(1255,20899 Ilist ilist_copy(1272,21092 Ilist ilist_remove_last(1294,21386 int ilist_occurrences(1319,21769 Ilist ilist_insert_up(1337,22034 int position_in_ilist(1362,22431 void zap_i2list(1392,23069 I2list i2list_append(1416,23415 I2list i2list_prepend(1443,23879 I2list i2list_removeall(1465,24190 I2list i2list_member(1490,24565 void p_i2list(1512,24930 int i2list_count(1534,25272 BOOL i3list_member(1556,25786 I3list i3list_append(1578,26196 I3list i3list_prepend(1606,26684 void zap_i3list(1627,26995 I3list rev_app_i3list(1646,27243 I3list reverse_i3list(1675,27751 I3list copy_i3list(1691,28005 int i3list_count(1723,28469 I2list alist_insert(1750,29242 int assoc(1766,29456 I3list alist2_insert(1793,30040 int assoc2a(1809,30265 int assoc2b(1831,30591 I3list alist2_remove(1852,30904 BOOL i2list_multimember(1889,31720 BOOL i2list_multisubset(1909,32029 I2list multiset_add_n(1930,32385 I2list multiset_add(1955,32761 I2list multiset_union(1973,33095 Ilist multiset_to_set(1992,33369 int multiset_occurrences(2014,33674 ../ladr/hash.c,644 struct hashtab hashtab23,811 struct hashnode hashnode28,868 #define PTRS_HASHTAB 37,952 static unsigned Hashtab_gets,38,1002 static unsigned Hashtab_gets, Hashtab_frees;38,1002 #define PTRS_HASHNODE 40,1048 static unsigned Hashnode_gets,41,1100 static unsigned Hashnode_gets, Hashnode_frees;41,1100 Hashtab get_hashtab(50,1220 void free_hashtab(64,1405 Hashnode get_hashnode(77,1581 void free_hashnode(91,1773 void fprint_hash_mem(110,2158 void p_hash_mem(142,3001 Hashtab hash_init(161,3256 void hash_insert(180,3502 void *hash_lookup(199,3796 void hash_delete(220,4134 void hash_destroy(255,4798 void hash_info(280,5152 ../ladr/hints.c,647 static Lindex Hints_idx 23,812 static Clist Redundant_hints 24,876 static Mindex Back_demod_idx;25,946 static int Bsub_wt_attr;26,1026 static BOOL Back_demod_hints;27,1051 static BOOL Collect_labels;28,1081 static int Hint_id_count 36,1258 static int Active_hints_count 37,1288 static int Redundant_hints_count 38,1323 void init_hints(50,1452 void done_with_hints(76,2040 int redundant_hints(99,2474 Topform find_equivalent_hint(111,2641 Topform find_matching_hint(139,3373 void index_hint(168,4042 void unindex_hint(208,5136 void adjust_weight_with_hints(232,5571 void keep_hint_matcher(300,7373 void back_demod_hints(316,7586 ../ladr/ibuffer.c,317 Ibuffer ibuf_init(39,1002 void ibuf_free(60,1356 void ibuf_write(77,1562 void ibuf_write_block(106,2183 void ibuf_rewind(124,2447 int ibuf_read(141,2725 int ibuf_xread(165,3175 int ibuf_length(185,3499 int *ibuf_buffer(200,3675 #define ISIZE 211,3811 Ibuffer fd_read_to_ibuf(217,3864 void p_ibuf(254,4562 ../ladr/int_code.c,374 void put_ilist_to_ibuf(30,885 Ilist get_ilist_from_ibuf(45,1158 void put_i3list_to_ibuf(63,1473 I3list get_i3list_from_ibuf(81,1814 void put_term_to_ibuf(103,2226 Term get_term_from_ibuf(123,2563 void put_just_to_ibuf(150,3118 Just get_just_from_ibuf(208,4462 void put_clause_to_ibuf(277,6069 Topform get_clause_from_ibuf(312,6775 void check_ibuf_clause(348,7493 ../ladr/interp.c,2821 struct interp interp28,878 #define ISWAP(ISWAP50,1726 #define I2(I254,1828 #define I3(I355,1868 #define UNDEFINED 57,1927 #define FUNCTION 58,1947 #define RELATION 59,1967 #define MAX_VARS_EVAL 61,1988 static long unsigned Iso_checks 65,2033 static long unsigned Iso_perms 66,2070 #define PTRS_INTERP 72,2136 static unsigned Interp_gets,73,2184 static unsigned Interp_gets, Interp_frees;73,2184 Interp get_interp(82,2298 void free_interp(96,2476 void fprint_interp_mem(115,2855 void p_interp_mem(141,3464 int *trivial_permutation(157,3653 int int_power(179,4009 Interp compile_interp(219,4800 void transpose_binary(355,8547 void zap_interp(394,9407 void fprint_interp_tex(436,10153 void compute_args(535,12726 void fprint_interp_xml(558,13122 void fprint_interp_standard(669,16515 void fprint_interp_standard2(727,17968 static void portable_indent(785,19409 void portable_recurse(800,19634 void fprint_interp_portable(834,20417 void p_interp(891,21744 void fprint_interp_cooked(908,22019 void fprint_interp_tabular(979,23652 void fprint_interp_raw(1065,25522 int eval_term_ground(1120,26821 BOOL eval_literals_ground(1169,27986 BOOL all_recurse(1195,28581 BOOL eval_literals(1238,29798 int all_recurse2(1263,30229 int eval_literals_true_instances(1295,31009 int eval_literals_false_instances(1322,31558 int eval_fterm_ground(1340,32021 BOOL eval_form(1390,33153 BOOL eval_formula(1483,35753 Term interp_remove_constants_recurse(1524,36471 void interp_remove_constants(1552,37072 Term interp_remove_others_recurse(1568,37362 void interp_remove_others(1596,38002 Interp copy_interp(1612,38304 Interp permute_interp(1697,40420 BOOL ident_interp_perm(1765,42087 Interp normal_interp(1846,44462 BOOL iso_interp_recurse(1890,45364 BOOL isomorphic_interps(1931,46353 int interp_size(1969,47049 Term interp_comments(1985,47257 int *interp_table(2001,47488 long unsigned iso_checks(2022,47898 long unsigned iso_perms(2038,48128 BOOL evaluable_term(2053,48294 BOOL evaluable_atom(2084,48896 BOOL evaluable_literals(2115,49511 BOOL evaluable_formula(2134,49818 BOOL evaluable_topform(2157,50192 void update_interp_with_constant(2175,50497 BOOL eval_topform(2201,51060 Ordertype compare_interp(2221,51416 BOOL ident_interp(2254,52054 Ordertype compare_ints(2260,52165 void invert_perm(2271,52339 void copy_perm(2279,52462 Ordertype compare_permed_interps(2301,52814 void canon_recurse(2376,54556 Interp canon_interp(2426,55803 void assign_discriminator_counts(2460,56579 BOOL same_discriminator_counts(2484,57099 void update_profile(2503,57518 void create_profile(2538,58246 void p_interp_profile(2573,59022 Interp normal3_interp(2625,60257 BOOL same_profiles(2695,61897 long unsigned perms_required(2715,62230 long unsigned factorial(2750,62758 ../ladr/ioutil.c,1118 void fwrite_formula(39,1187 Topform read_clause(66,1781 Topform parse_clause_from_string(89,2167 BOOL end_of_list_clause(108,2509 Clist read_clause_clist(139,3248 Plist read_clause_list(168,3865 void sb_write_clause_jmap(185,4223 void sb_write_clause(245,5407 void sb_xml_write_clause_jmap(262,5747 void sb_tagged_write_clause_jmap(328,7779 void fwrite_clause_jmap(372,8576 void fwrite_clause(405,9332 void f_clause(421,9601 void fwrite_clause_clist(444,9974 void fwrite_demod_clist(470,10547 void fwrite_clause_list(510,11400 void f_clauses(535,11865 Formula read_formula(554,12238 BOOL end_of_list_formula(576,12553 Plist read_formula_list(605,13137 void fwrite_formula_list(639,13751 void zap_formula_list(665,14232 BOOL end_of_list_term(687,14559 BOOL end_of_commands_term(708,14905 Plist read_term_list(735,15512 void fwrite_term_list(769,16107 Term term_reader(801,16807 void term_writer(823,17271 Topform clause_reader(847,17767 void clause_writer(863,18187 Topform term_to_topform2(882,18466 Topform read_clause_or_formula(912,19033 Plist read_clause_or_formula_list(934,19379 ../ladr/ivy.c,790 #define DICT_SIZE 23,810 static char *Dict[27,895 char *dict_lookup(40,1177 void ivy_term_trans(57,1422 void ivy_clause_trans(78,1779 void sb_ivy_write_term(93,2012 void sb_ivy_write_pair(118,2462 void sb_ivy_write_pairs(136,2784 void sb_ivy_write_position(155,3113 void sb_ivy_write_lit(174,3445 void sb_ivy_write_literals(192,3766 void sb_ivy_write_just(217,4228 void sb_ivy_write_clause_jmap(275,5687 Topform instantiate_inference(299,6422 Topform renumber_inference(316,6902 Ilist ivy_lit_position(339,7358 Ilist ivy_para_position(368,8198 Plist paramod2_instances(396,8920 Topform flip_inference(481,11512 Plist resolve2_instances(524,12674 Plist factor2_instances(621,15016 Plist copy_proof_and_rename_symbols_for_ivy(682,16548 Plist expand_proof_ivy(704,16948 ../ladr/just.c,2701 #define PTRS_JUST 27,840 static unsigned Just_gets,28,884 static unsigned Just_gets, Just_frees;28,884 #define PTRS_PARAJUST 30,924 static unsigned Parajust_gets,31,976 static unsigned Parajust_gets, Parajust_frees;31,976 #define PTRS_INSTANCEJUST 33,1024 static unsigned Instancejust_gets,34,1084 static unsigned Instancejust_gets, Instancejust_frees;34,1084 #define PTRS_IVYJUST 36,1140 static unsigned Ivyjust_gets,37,1190 static unsigned Ivyjust_gets, Ivyjust_frees;37,1190 Just get_just(49,1329 void free_just(63,1493 Parajust get_parajust(79,1681 void free_parajust(93,1873 Instancejust get_instancejust(109,2089 void free_instancejust(123,2309 Ivyjust get_ivyjust(136,2508 void free_ivyjust(150,2692 void fprint_just_mem(169,3072 void p_just_mem(213,4385 Just ivy_just(232,4584 Just input_just(260,5122 Just goal_just(279,5399 Just deny_just(298,5672 Just clausify_just(318,5979 Just expand_def_just(338,6306 Just copy_just(358,6686 Just propositional_just(378,7011 Just new_symbol_just(398,7376 Just back_demod_just(418,7719 Just back_unit_deletion_just(438,8078 Just binary_res_just(460,8541 Just binary_res_just_by_id(484,9082 Just factor_just(508,9609 Just xxres_just(528,10030 Just resolve_just(549,10454 Just demod_just(568,10749 Just para_just(588,11095 Just instance_just(616,11650 Just para_just_rev_copy(640,12131 Just unit_del_just(660,12557 Just flip_just(680,12966 Just xx_just(700,13286 Just merge_just(721,13641 Just eval_just(741,13959 Just append_just(760,14220 Just copy_justification(781,14502 char *jstring(859,16592 int jstring_to_jtype(907,18115 char itoc(974,19897 int ctoi(993,20130 int jmap1(1015,20486 char *jmap2(1039,20998 void sb_append_id(1065,21403 void sb_write_res_just(1081,21733 void sb_write_position(1120,22565 void sb_write_ids(1142,22947 void sb_write_just(1164,23346 void sb_xml_write_just(1324,27317 void p_just(1371,28377 void zap_parajust(1387,28617 void zap_instancejust(1401,28813 void zap_ivyjust(1414,29000 void zap_just(1433,29300 Ilist get_parents(1491,30600 Topform first_negative_parent(1586,33386 Plist get_clanc(1607,33826 Plist get_clause_ancestors(1643,34667 int proof_length(1659,34894 int map_id(1671,35037 void map_just(1688,35301 int just_count(1780,37903 void mark_parents_as_used(1797,38119 I2list cl_level(1815,38451 int clause_level(1849,39245 int lit_string_to_int(1864,39488 Ilist args_to_ilist(1882,39739 Just term_to_just(1914,40333 BOOL primary_just_type(2078,43902 BOOL has_input_just(2094,44174 BOOL has_copy_just(2110,44409 BOOL has_copy_flip_just(2126,44670 void sb_tagged_write_res_just(2148,45325 void sb_tagged_write_just(2183,46015 ../ladr/lindex.c,409 #define PTRS_LINDEX 27,842 static unsigned Lindex_gets,28,890 static unsigned Lindex_gets, Lindex_frees;28,890 Lindex get_lindex(37,1004 void free_lindex(51,1182 void fprint_lindex_mem(70,1561 void p_lindex_mem(96,2170 Lindex lindex_init(126,2904 void lindex_destroy(149,3447 void lindex_update(167,3737 void lindex_update_first(189,4181 BOOL lindex_empty(212,4636 BOOL lindex_backtrack(229,4949 ../ladr/listterm.c,413 #define CONS_SYM 23,815 #define NIL_SYM 24,841 Term get_nil_term(37,998 Term listterm_cons(54,1249 BOOL cons_term(74,1584 BOOL nil_term(91,1856 BOOL proper_listterm(109,2165 Term listterm_append(137,2839 int listterm_length(158,3208 Term listterm_i(179,3547 BOOL listterm_member(200,3896 Plist listterm_to_tlist(224,4321 void listterm_zap(249,4709 Term rev2(266,4914 Term listterm_reverse(286,5279 ../ladr/literals.c,1875 #define PTRS_LITERALS 27,844 static unsigned Literals_gets,28,896 static unsigned Literals_gets, Literals_frees;28,896 Literals get_literals(40,1045 void free_literals(57,1264 void fprint_literals_mem(76,1655 void p_literals_mem(102,2284 void zap_literal(122,2527 void zap_literals(139,2754 Literals new_literal(159,3063 Literals copy_literal(177,3308 Literals append_literal(193,3572 Literals term_to_literals(213,3864 Term literal_to_term(248,4584 Term literals_to_term(270,4892 Term lits_to_term(297,5513 void free_lits_to_term(327,6046 int positive_literals(349,6449 int negative_literals(370,6832 BOOL positive_clause(391,7217 BOOL any_clause(407,7485 BOOL negative_clause(423,7719 BOOL mixed_clause(440,8008 int number_of_literals(457,8298 BOOL unit_clause(476,8604 BOOL horn_clause(492,8861 BOOL definite_clause(508,9129 int greatest_variable_in_clause(525,9443 Plist vars_in_clause(547,9888 Ilist varnums_in_clause(566,10233 int number_of_variables(590,10686 BOOL ground_clause(608,10947 Literals copy_literals(626,11272 Literals copy_literals_with_flags(652,11785 Literals copy_literals_with_flag(678,12334 int literal_number(704,12938 int atom_number(729,13444 Literals ith_literal(753,13853 BOOL true_clause(775,14233 BOOL complementary_scan(792,14506 BOOL tautology(815,15004 int symbol_occurrences_in_clause(839,15441 Literals remove_null_literals(859,15797 Literals first_literal_of_sign(885,16191 Ilist constants_in_clause(906,16590 BOOL clause_ident(927,16968 int clause_symbol_count(952,17478 int clause_depth(972,17872 BOOL pos_eq(995,18305 BOOL neg_eq(1012,18588 BOOL pos_eq_unit(1029,18899 BOOL neg_eq_unit(1047,19191 BOOL contains_pos_eq(1066,19539 BOOL contains_eq(1089,19959 BOOL only_eq(1111,20321 int literals_depth(1133,20707 Term term_at_position(1154,21010 Ilist pos_predicates(1175,21354 ../ladr/maximal.c,539 int Maximal_flag 23,814 int Maximal_signed_flag 24,886 int Selected_flag 25,961 void init_maximal(37,1118 BOOL greater_literals(53,1434 BOOL max_lit_test(83,2124 BOOL max_signed_lit_test(110,2672 void mark_maximal_literals(134,3148 BOOL maximal_literal(164,3873 BOOL maximal_signed_literal(184,4301 int number_of_maximal_literals(203,4706 void mark_selected_literal(224,5045 void mark_selected_literals(239,5265 BOOL selected_literal(270,5924 BOOL exists_selected_literal(285,6138 void copy_selected_literal_marks(304,6448 ../ladr/memory.c,816 #define MALLOC_MEGS 21,776 #define DEFAULT_MAX_MEGS 22,847 #define MAX_MEM_LISTS 23,912 static void ** M[25,985 static BOOL Max_megs_check 27,1019 static int Max_megs 28,1054 static int Malloc_calls 31,1206 static unsigned Bytes_palloced 33,1280 static void *Block 35,1317 static void *Block_pos 36,1397 static unsigned Mem_calls 38,1464 static unsigned Mem_calls_overflows 39,1495 #define BUMP_MEM_CALLS 41,1537 void *palloc(50,1728 void *get_cmem(96,2788 void *get_mem(134,3421 void free_mem(166,4013 int mlist_length(190,4401 void memory_report(207,4598 int megs_malloced(233,5277 void set_max_megs(251,5617 void set_max_megs_proc(268,5900 int bytes_palloced(285,6189 void *tp_alloc(302,6468 unsigned mega_mem_calls(321,6786 void disable_max_megs(338,7026 void enable_max_megs(353,7204 ../ladr/mindex.c,948 struct mindex_pos mindex_pos23,813 #define PTRS_MINDEX 53,1371 static unsigned Mindex_gets,54,1419 static unsigned Mindex_gets, Mindex_frees;54,1419 #define PTRS_MINDEX_POS 56,1463 static unsigned Mindex_pos_gets,57,1519 static unsigned Mindex_pos_gets, Mindex_pos_frees;57,1519 Mindex get_mindex(66,1641 void free_mindex(82,1862 Mindex_pos get_mindex_pos(95,2037 void free_mindex_pos(110,2265 void fprint_mindex_mem(129,2664 void p_mindex_mem(161,3522 Mindex mindex_init(204,4833 BOOL mindex_empty(234,5560 void mindex_free(263,6056 void mindex_destroy(295,6675 void linear_insert(324,7230 void linear_delete(343,7538 void linear_update(375,8158 void mindex_update(398,8628 Term mindex_retrieve_first(465,10746 Term next_candidate(510,11865 Term retrieve_next_backtrack(565,13185 Term mindex_retrieve_next(643,15321 void mindex_retrieve_cancel(733,17311 void fprint_linear_index(765,18162 void fprint_mindex(787,18560 ../ladr/multiset.c,98 int num_occurrences(30,883 Plist set_of_more_occurrences(48,1211 BOOL greater_multiset(83,2083 ../ladr/nonport.c,98 char *username(42,1117 char *hostname(64,1471 int my_process_id(87,1826 int get_bits(107,2093 ../ladr/options.c,2570 typedef enum { FLAGT,28,892 typedef enum { FLAGT, PARMT,28,892 typedef enum { FLAGT, PARMT, FLOATPARMT,28,892 typedef enum { FLAGT, PARMT, FLOATPARMT, STRINGPARMT 28,892 typedef enum { FLAGT, PARMT, FLOATPARMT, STRINGPARMT } Opttype;Opttype28,892 typedef struct optdep * Optdep;Optdep29,956 struct optdep optdep31,989 struct flag flag42,1544 struct parm parm49,1671 struct floatparm floatparm57,1858 struct stringparm stringparm65,2063 static struct flag Flags[74,2414 static struct parm Parms[75,2451 static struct floatparm Floatparms[76,2488 static struct stringparm Stringparms[77,2540 static int Next_flag 79,2596 static int Next_parm 80,2622 static int Next_floatparm 81,2648 static int Next_stringparm 82,2679 static int Option_updates 84,2712 static BOOL Ignore_dependencies 86,2774 #define PTRS_OPTDEP 92,2845 static unsigned Optdep_gets,93,2893 static unsigned Optdep_gets, Optdep_frees;93,2893 Optdep get_optdep(102,3007 void free_optdep(117,3191 void fprint_options_mem(137,3579 void p_options_mem(163,4192 void enable_option_dependencies(182,4418 void disable_option_dependencies(197,4633 BOOL option_dependencies_state(212,4847 int init_flag(232,5286 int init_parm(269,6140 int init_floatparm(304,6932 int init_stringparm(343,7903 void fprint_options(380,8848 void p_options(433,10186 int flag(451,10449 int parm(468,10715 BOOL at_parm_limit(484,10918 BOOL over_parm_limit(504,11245 double floatparm(525,11646 BOOL stringparm(542,11938 char *stringparm1(559,12207 void update_flag(576,12495 void set_flag(654,14482 void clear_flag(672,14825 void assign_parm(691,15219 void assign_floatparm(753,16903 void assign_stringparm(788,18079 int str_to_flag_id(827,19037 int str_to_parm_id(848,19417 int str_to_floatparm_id(869,19802 int str_to_stringparm_id(890,20214 char *flag_id_to_str(910,20562 char *parm_id_to_str(928,20873 char *floatparm_id_to_str(946,21199 char *stringparm_id_to_str(964,21553 Optdep append_dep(978,21803 void flag_flag_dependency(1001,22217 void flag_flag_dep_default(1024,22759 void flag_parm_dependency(1047,23298 void flag_floatparm_dependency(1070,23840 void flag_parm_dep_default(1093,24394 void flag_floatparm_dep_default(1116,24941 void parm_flag_dependency(1139,25497 void parm_parm_dependency(1160,25974 void flag_stringparm_dependency(1183,26530 void flag_stringparm_dep_default(1206,27104 int option_updates(1227,27582 int flag_default(1242,27751 int parm_default(1257,27935 int floatparm_default(1272,28124 char *stringparm1_default(1287,28340 ../ladr/order.c,116 void merge_sort_recurse(49,1403 void merge_sort(110,2752 Ordertype compare_vecs(129,3112 void copy_vec(151,3428 ../ladr/paramod.c,839 static BOOL Ordered_inference 23,814 static BOOL Positive_inference 24,854 static BOOL Para_from_vars 25,895 static BOOL Para_into_vars 26,931 static BOOL Para_from_small 27,968 static BOOL Check_instances 28,1006 static int Para_instance_prunes 30,1077 static int Basic_prunes 31,1132 void paramodulation_options(44,1291 int para_instance_prunes(73,1977 int basic_paramodulation_prunes(89,2248 BOOL basic_check(101,2413 Literals apply_lit_para(118,2656 Term apply_substitute_para(134,2960 Topform paramodulate(156,3402 BOOL para_from_right(200,4715 BOOL from_parent_test(221,5098 BOOL into_parent_test(245,5699 BOOL check_instance(287,6779 BOOL check_instances(319,7529 void para_into(341,7989 void para_into_lit(391,9296 void para_from_into(442,10931 Topform para_pos(479,11980 Topform para_pos2(529,13395 ../ladr/parautil.c,719 int Oriented_flag 23,815 int Renamable_flip_flag 24,893 void init_paramod(36,1064 void mark_renamable_flip(55,1452 BOOL renamable_flip_eq(74,1898 BOOL renamable_flip_eq_test(95,2333 void mark_oriented_eq(126,2933 BOOL oriented_eq(145,3347 BOOL same_term_structure(168,3792 void flip_eq(194,4304 void orient_equalities(218,4878 BOOL eq_tautology(295,7028 Term top_flip(320,7539 void zap_top_flip(343,7906 Literals literal_flip(358,8065 void zap_literal_flip(377,8355 Topform clause_with_new_constant(390,8537 Topform new_constant(422,9495 Topform fold_denial(453,10163 BOOL equational_def_2(486,10939 int equational_def(504,11256 Ordertype unfold_order(530,11691 Topform build_reflex_eq(555,12146 ../ladr/parse.c,3210 #define COMMENT_CHAR 23,812 static char Cons_char 25,838 static char Quote_char 26,867 static int Quantifier_precedence 27,898 static BOOL Parenthesize 29,978 static BOOL Check_for_illegal_symbols 30,1012 typedef enum {TOK_UNKNOWN,34,1078 TOK_ORDINARY,35,1143 TOK_SPECIAL,36,1190 TOK_STRING,37,1236 TOK_COMMENT,38,1280 TOK_PUNC 39,1326 } Toktype;Toktype40,1377 typedef enum {READ_BUF_OK,44,1425 typedef enum {READ_BUF_OK,READ_BUF_EOF,44,1425 READ_BUF_ERROR,45,1465 READ_BUF_ERROR,READ_BUF_QUOTE_ERROR}45,1465 READ_BUF_ERROR,READ_BUF_QUOTE_ERROR} Read_rc;Read_rc45,1465 typedef struct token * Token;Token49,1543 struct token token51,1574 typedef struct pterm * Pterm;Pterm61,1848 struct pterm pterm63,1879 typedef struct tok_pos *Tok_pos;Tok_pos71,2017 struct tok_pos tok_pos73,2051 static BOOL Translate_neg_equalities 81,2163 static Plist Multiple_char_special_syms 82,2211 #define PTRS_TOKEN 88,2290 static unsigned Token_gets,89,2336 static unsigned Token_gets, Token_frees;89,2336 #define PTRS_PTERM 91,2378 static unsigned Pterm_gets,92,2424 static unsigned Pterm_gets, Pterm_frees;92,2424 Token get_token(101,2534 void free_token(115,2705 Pterm get_pterm(128,2865 void free_pterm(142,3036 void fprint_parse_mem(161,3408 void p_parse_mem(193,4220 void p_tokens(210,4405 void translate_neg_equalities(238,4950 Term translate_neg_eq(250,5132 Term untranslate_neg_eq(276,5697 void free_pterm_list(302,6270 void free_token_list(321,6527 BOOL end_char(340,6788 BOOL comment_char(352,6920 BOOL quote_char(364,7067 BOOL punctuation_char(376,7214 BOOL ordinary_char(394,7496 BOOL special_char(410,7749 BOOL white_char(448,8430 BOOL all_whitespace(465,8733 int finish_comment(494,9236 int read_buf(545,10478 String_buf max_special_symbol(605,11583 Token tokenize(653,12639 int comma_terms(737,14469 void transfer_comma_term(752,14722 BOOL quantifier(771,15075 BOOL ordinary_constant_string(787,15320 BOOL ordinary_constant(801,15524 BOOL quant_prefix(816,15755 Term terms_to_term(836,16173 void next_token(985,20811 Term toks_to_set(1005,21119 Term make_a_list(1022,21443 Term toks_to_list(1043,21856 Pterm toks_to_terms(1107,23377 Term toks_to_term(1226,26058 void fprint_parse_error(1259,26820 Term sread_term(1296,27820 Term read_term(1347,29180 Term parse_term_from_string(1395,30120 void arrange_term(1410,30364 void sb_remove_some_space(1528,33570 void sb_write_term(1564,34452 void fwrite_term(1594,35155 void fwrite_term_nl(1617,35633 char *process_quoted_symbol(1633,35843 void remember_multiple_char_special_syms(1661,36447 void forget_multiple_char_special_syms(1681,36944 void look_for_illegal_symbols(1701,37433 void declare_parse_type(1721,37933 void declare_quantifier_precedence(1744,38457 void declare_standard_parse_types(1759,38684 BOOL redeclare_symbol_and_copy_parsetype(1815,40550 void skip_to_nl(1852,41549 Plist split_string(1872,41888 void set_cons_char(1902,42418 char get_cons_char(1917,42581 void set_quote_char(1932,42746 char get_quote_char(1947,42913 void parenthesize(1962,43079 void check_for_illegal_symbols(1977,43267 ../ladr/pindex.c,636 struct pair_index pair_index23,813 #define INT_LARGE 35,1259 #define IN_RANGE(IN_RANGE36,1332 #define PTRS_PAIR_INDEX 42,1430 static unsigned Pair_index_gets,43,1486 static unsigned Pair_index_gets, Pair_index_frees;43,1486 Pair_index get_pair_index(52,1616 void free_pair_index(68,1870 void fprint_pindex_mem(87,2269 void p_pindex_mem(113,2906 Pair_index init_pair_index(137,3368 void zap_pair_index(180,4129 int pairs_exhausted(210,4697 void init_pair(224,4894 void insert_pair_index(265,5757 void delete_pair_index(304,6619 void retrieve_pair(401,8657 void p_pair_index(514,11412 int pair_already_used(558,12222 ../ladr/random.c,224 Term random_term(45,1344 Term random_nonvariable_term(112,2549 Term random_complex_term(136,3110 Ilist random_path(161,3687 void random_permutation(194,4356 Topform random_clause(238,5072 Term random_op_term(265,5604 ../ladr/resolve.c,1076 static BOOL Ordered 24,834 static BOOL Check_instances 25,875 static int Ur_nucleus_limit 27,917 static BOOL Initial_nuclei 28,995 static BOOL Production_mode 29,1075 static int Res_instance_prunes 31,1117 void resolution_options(45,1271 int res_instance_prunes(70,1772 BOOL unit_check(82,1923 BOOL pos_hyper_sat_test(95,2118 BOOL neg_hyper_sat_test(111,2430 void hyper_sat_atom(127,2738 void hyper_satellite(191,4489 void hyper_nucleus(214,5115 void hyper_resolution(258,6158 BOOL target_check(276,6562 void ur_sat_atom(297,7005 void ur_satellite(364,8858 void ur_nucleus(385,9332 void ur_resolution(430,10391 void xx_res(446,10724 void binary_resolvent(479,11566 BOOL binary_parent_test(529,12788 Topform instantiate_clause(576,14334 BOOL check_instance(594,14738 BOOL check_instances(628,15574 void bin_res_lit(647,15930 void binary_resolution(681,16847 void binary_factors(716,17626 void merge_literals(759,18566 Topform copy_inference(795,19439 Topform resolve2(827,20231 Topform resolve3(883,21518 Topform xx_resolve2(903,21972 ../ladr/std_options.c,252 static int Prolog_style_variables 25,831 static int Ignore_option_dependencies 26,898 static int Clocks 27,967 void init_standard_options(39,1136 void process_standard_options(58,1559 int clocks_id(86,2038 int prolog_style_variables_id(101,2202 ../ladr/strbuf.c,953 struct string_buf string_buf25,817 #define CHUNK_SIZE 30,876 struct chunk chunk32,900 typedef struct chunk *Chunk;Chunk37,963 #define PTRS_CHUNK 43,1022 static unsigned Chunk_gets,44,1068 static unsigned Chunk_gets, Chunk_frees;44,1068 #define PTRS_STRING_BUF 46,1110 static unsigned String_buf_gets,47,1166 static unsigned String_buf_gets, String_buf_frees;47,1166 Chunk get_chunk(56,1286 void free_chunk(70,1457 String_buf get_string_buf(86,1654 void free_string_buf(100,1860 void fprint_strbuf_mem(119,2259 void p_strbuf_mem(151,3110 String_buf init_string_buf(173,3495 void fprint_sb(191,3762 void p_sb(218,4235 void sb_append(238,4549 void sb_append_char(273,5138 void sb_replace_char(312,6005 char sb_char(337,6493 void sb_cat_copy(363,6960 void sb_cat(386,7480 void zap_string_buf(404,7764 char *sb_to_malloc_string(438,8673 char *sb_to_malloc_char_array(469,9262 int sb_size(494,9618 void sb_append_int(510,9847 ../ladr/string.c,468 static char *Float_format 23,813 BOOL str_ident(36,1027 char *new_str_copy(53,1325 BOOL string_member(71,1585 int which_string_member(92,1983 BOOL initial_substring(112,2308 BOOL substring(131,2563 void reverse_chars(153,2935 int natural_string(171,3220 int char_occurrences(192,3479 char *escape_char(215,3849 BOOL str_to_int(243,4396 char *int_to_str(266,4802 BOOL str_to_double(286,5142 char *double_to_str(316,5653 BOOL string_of_repeated(349,6145 ../ladr/subsume.c,574 static int Nonunit_subsumption_tests 23,814 int nonunit_subsumption_tests(35,966 BOOL subsume_literals(53,1367 BOOL subsume_bt_literals(87,2046 BOOL subsumes(133,2991 BOOL subsumes_bt(158,3532 Topform forward_subsume(185,4008 Plist back_subsume(238,5526 Topform back_subsume_one(294,7039 void atom_conflict(343,8206 void unit_conflict_by_index(388,9345 Topform try_unit_conflict(413,9942 void unit_delete(445,10778 Plist back_unit_del_by_index(519,12836 void simplify_literals(566,13936 BOOL eq_removable_literal(604,14823 void simplify_literals2(646,15920 ../ladr/symbols.c,5368 struct symbol symbol23,813 #define SYM_TAB_SIZE 42,1707 static Plist By_id[44,1736 static Plist By_sym[45,1804 static unsigned Symbol_count;47,1874 static char *True_sym 51,1944 static char *False_sym 52,1977 static char *And_sym 53,2010 static char *Or_sym 54,2042 static char *Not_sym 55,2074 static char *Iff_sym 56,2106 static char *Imp_sym 57,2140 static char *Impby_sym 58,2173 static char *All_sym 59,2206 static char *Exists_sym 60,2240 static char *Quant_sym 61,2277 static char *Attrib_sym 65,2359 static char *Eq_sym 66,2434 static char *Neq_sym 67,2504 char *true_sym(79,2670 char *false_sym(94,2820 char *and_sym(109,2967 char *or_sym(124,3107 char *not_sym(139,3245 char *iff_sym(154,3386 char *imp_sym(169,3527 char *impby_sym(184,3670 char *all_sym(199,3817 char *exists_sym(214,3961 char *quant_sym(229,4118 char *attrib_sym(244,4273 char *eq_sym(259,4422 char *neq_sym(274,4560 void set_operation_symbol(289,4714 char *get_operation_symbol(335,6043 BOOL symbol_in_use(382,7339 Symbol get_symbol(427,8477 int new_symnum(457,9065 unsigned hash_sym(470,9212 unsigned hash_id(488,9464 Symbol lookup_by_id(500,9607 Symbol lookup_by_sym(518,9879 int str_to_sn(544,10557 void fprint_syms(580,11386 void p_syms(609,12018 void fprint_sym(626,12269 void sprint_sym(643,12568 void p_sym(660,12851 BOOL str_exists(678,13168 int greatest_symnum(705,13684 char *sn_to_str(725,14205 BOOL is_symbol(747,14552 int sn_to_arity(767,14966 int sn_to_occurrences(787,15289 void set_unfold_symbol(807,15626 BOOL is_unfold_symbol(823,15842 void declare_aux_symbols(839,16059 char *parse_type_to_str(862,16573 void clear_parse_type_for_all_symbols(887,17104 void clear_parse_type(910,17488 void check_diff_type_same_prec(932,17865 void set_parse_type(979,19088 BOOL binary_parse_type(1023,20238 BOOL unary_parse_type(1048,20824 int special_parse_type(1073,21340 static int Assoc_comm_symbols 1089,21815 static int Comm_symbols 1090,21873 void set_assoc_comm(1108,22278 void set_commutative(1135,22822 BOOL assoc_comm_symbols(1161,23274 BOOL comm_symbols(1178,23537 BOOL is_assoc_comm(1199,24000 BOOL is_commutative(1221,24518 static int Eq_symnum 1231,24896 static int Or_symnum 1232,24922 static int Not_symnum 1233,24948 BOOL is_eq_symbol(1248,25234 int not_symnum(1267,25529 int or_symnum(1285,25782 void declare_base_symbols(1302,26006 static Variable_style Var_style 1315,26405 void set_variable_style(1328,26616 Variable_style variable_style(1344,26855 BOOL variable_name(1362,27200 void symbol_for_variable(1387,27814 Ilist variable_symbols(1424,28651 Ilist remove_variable_symbols(1448,29133 void set_symbol_type(1471,29682 Symbol_type get_symbol_type(1489,29974 BOOL function_symbol(1507,30255 BOOL relation_symbol(1522,30464 BOOL function_or_relation_symbol(1537,30686 void declare_functions_and_relations(1553,30981 int function_or_relation_sn(1576,31540 Ilist all_function_symbols(1601,31983 Ilist all_relation_symbols(1626,32397 void set_lrpo_status(1655,33045 void all_symbols_lrpo_status(1673,33373 Lrpo_status sn_to_lrpo_status(1698,33908 static BOOL Zero_wt_kb 1708,34288 void set_kb_weight(1720,34455 BOOL zero_wt_kb(1750,35093 int sn_to_kb_wt(1766,35329 void print_kbo_weights(1785,35579 static char *Skolem_constant_prefix 1801,36121 static char *Skolem_function_prefix 1802,36164 static int Next_skolem_constant 1803,36207 static int Next_skolem_function 1804,36279 static BOOL Skolem_check 1805,36351 void set_skolem(1818,36591 void skolem_check(1835,36818 BOOL skolem_ok(1847,36957 int next_skolem_symbol(1876,37565 Ilist skolem_symbols(1910,38221 BOOL is_skolem(1935,38599 void skolem_reset(1952,38858 void decommission_skolem_symbols(1970,39178 void set_skolem_symbols(1995,39590 static Ilist Preliminary_prec_func 2010,40092 static Ilist Preliminary_prec_pred 2011,40135 void set_lex_val(2025,40387 int sn_to_lex_val(2047,40891 Ordertype sym_precedence(2066,41309 Ilist syms_with_lex_val(2099,41911 BOOL exists_preliminary_precedence(2124,42311 Ordertype preliminary_lex_compare(2150,42998 Ordertype lex_compare_base(2189,43968 Ordertype lex_compare_arity_0123(2278,46207 Ordertype lex_compare_arity_0213(2299,46616 void lex_order(2337,47653 Ilist insert_by_lex_val(2370,48473 Ilist sort_by_lex_val(2396,48902 Ilist remove_syms_without_lex_val(2412,49147 Ilist current_fsym_precedence(2438,49598 Ilist current_rsym_precedence(2456,49899 Ilist not_in_preliminary_precedence(2474,50206 void print_fsym_precedence(2500,50789 void print_rsym_precedence(2523,51210 int min_lex_val(2546,51623 int max_lex_val(2566,51921 void assign_greatest_precedence(2589,52261 BOOL has_greatest_precedence(2604,52489 void lex_insert_after_initial_constants(2619,52729 Ilist skolem_insert(2650,53369 void add_skolems_to_preliminary_precedence(2676,53990 static unsigned Mark_for_new_symbols 2695,54752 int fresh_symbol(2711,55152 int gen_new_symbol(2738,55564 void mark_for_new_symbols(2769,56107 I2list new_symbols_since_mark(2784,56336 void add_new_symbols(2806,56707 void new_constant_properties(2833,57314 Ilist collect_multiples(2855,57751 Ilist arity_check(2888,58425 int symbol_with_string(2905,58718 void process_skolem_list(2925,59051 void process_lex_list(2950,59593 Ilist symnums_of_arity(2992,60712 ../ladr/term.c,2866 static Term Shared_variables[59,2360 #define PTRS_TERM 65,2430 static unsigned Term_gets,66,2474 static unsigned Term_gets, Term_frees;66,2474 static unsigned Arg_mem;68,2514 Term get_term(77,2655 void free_term(114,3487 void fprint_term_mem(135,3937 void p_term_mem(165,4627 Term get_variable_term(187,4957 Term get_rigid_term_like(219,5707 Term get_rigid_term(240,6162 Term get_rigid_term_dangerously(274,7100 void zap_term(295,7514 BOOL term_ident(319,8002 Term copy_term(347,8545 BOOL ground_term(373,9027 int biggest_variable(398,9454 int term_depth(423,9882 int symbol_count(450,10328 BOOL occurs_in(475,10893 void fprint_term(499,11283 void sprint_term(535,11939 char *term_to_string(573,12641 void p_term(596,13110 BOOL all_args_vars(615,13409 Term build_binary_term(642,13867 Term build_binary_term_safe(665,14354 Term build_unary_term(683,14730 Term build_unary_term_safe(704,15159 Term subst_term(721,15501 Term subst_var_term(748,16050 int greatest_variable(775,16576 int greatest_symnum_in_term(802,17086 void upward_term_links(829,17592 BOOL check_upward_term_links(851,18011 int occurrences(877,18501 Term trm_set_vars_recurse(899,18882 void term_set_variables(945,19996 Term nat_to_term(978,20634 Term int_to_term(998,20964 Term bool_to_term(1020,21308 Term double_to_term(1038,21642 int natural_constant_term(1057,21999 int arg_position(1078,22377 BOOL is_term(1099,22694 BOOL is_constant(1115,22935 char *term_symbol(1132,23223 BOOL term_to_int(1153,23647 BOOL term_to_double(1186,24258 BOOL term_to_number(1207,24666 BOOL true_term(1230,24990 BOOL false_term(1245,25161 BOOL term_to_bool(1263,25461 I2list symbols_in_term(1289,25893 Ilist fsym_set_in_term(1310,26218 Term renum_vars_recurse(1335,26816 Term set_vars_recurse(1373,27707 I2list multiset_of_vars(1409,28397 I2list multiset_vars(1431,28748 Plist set_of_vars(1447,28955 Plist set_of_variables(1474,29395 int number_of_vars_in_term(1490,29631 Ilist set_of_ivars(1509,29907 Ilist set_of_ivariables(1536,30404 BOOL variables_subset(1551,30594 BOOL variables_multisubset(1571,30945 Term term_at_pos(1603,31527 Ilist pos_of_subterm(1622,31811 Ilist position_of_subterm(1653,32563 int symbol_occurrences(1674,32923 BOOL args_distinct_vars(1699,33383 unsigned hash_term(1750,34178 BOOL skolem_term(1773,34502 BOOL contains_skolem_term(1788,34682 BOOL contains_skolem_function(1813,35067 Term term0(1839,35480 Term term1(1855,35692 Term term2(1873,35949 BOOL symbol_in_term(1891,36190 BOOL same_structure(1917,36623 Plist copy_plist_of_terms(1942,37049 void zap_plist_of_terms(1966,37448 BOOL eq_term(1989,37848 Plist plist_of_subterms(2004,38032 BOOL tlist_member(2025,38416 int position_of_term_in_tlist(2045,38717 BOOL tlist_subset(2065,39018 BOOL tlist_set(2083,39271 Plist free_vars_term(2104,39673 ../ladr/termflag.c,410 #define TERM_BITS 25,842 #define SET_BIT(SET_BIT27,893 #define CLEAR_BIT(CLEAR_BIT28,949 static int bits_in_use[31,1058 int claim_term_flag(47,1414 void release_term_flag(73,1862 void term_flag_set(99,2602 void term_flag_clear(119,3045 BOOL term_flag(139,3489 int term_flags(162,3944 Term copy_term_with_flags(180,4242 Term copy_term_with_flag(209,4822 void term_flag_clear_recursively(236,5289 ../ladr/termorder.c,697 Order_method Ordering_method 24,838 void assign_order_method(36,1014 Ordertype term_compare_basic(55,1421 Ordertype term_compare_ncv(107,2712 Ordertype term_compare_vcp(155,3913 Ordertype term_compare_vr(203,5088 Ordertype flatterm_compare_vr(246,6030 BOOL lrpo_multiset(291,6920 BOOL lrpo_lex(306,7244 BOOL lrpo(354,8491 void init_kbo_weights(413,9891 int kbo_weight(454,10743 BOOL kbo(478,11082 BOOL term_greater(536,12612 Ordertype term_order(556,13071 int flat_kbo_weight(578,13455 BOOL flat_kbo(601,13814 BOOL flat_lrpo_multiset(659,15326 BOOL flat_lrpo_lex(677,15699 BOOL flat_lrpo(731,16764 BOOL flat_greater(796,18114 BOOL greater_multiset_current_ordering(828,18956 ../ladr/test.c,57 #define N 22,795 void compute_args(24,808 main(35,987 ../ladr/tlist.c,140 void zap_tlist(35,1035 Plist tlist_remove(56,1346 Plist tlist_union(87,1890 Ilist constants_in_term(114,2345 Plist tlist_copy(142,2788 ../ladr/top_input.c,1344 typedef struct readlist * Readlist;Readlist29,933 struct readlist readlist31,970 static Readlist Input_lists 39,1179 static Plist Lex_function_list 41,1216 static Plist Lex_predicate_list 42,1255 static Plist Skolem_list 43,1295 static char *Program_name 45,1372 #define PTRS_READLIST 51,1434 static unsigned Readlist_gets,52,1486 static unsigned Readlist_gets, Readlist_frees;52,1486 Readlist get_readlist(61,1608 void free_readlist(76,1806 void fprint_top_input_mem(96,2208 void p_top_input_mem(122,2844 void init_standard_ladr(142,3117 void fatal_input_error(161,3449 void set_program_name(186,3927 BOOL condition_is_true(198,4083 void process_op2(210,4246 void process_op(249,5317 void process_redeclare(298,6408 void execute_unknown_action(333,7283 void flag_handler(361,7923 void parm_handler(390,8658 void process_symbol_list(440,9806 Readlist readlist_member(468,10675 Readlist readlist_member_wild(485,10995 void accept_list(513,11772 void input_symbols(538,12219 void symbol_check_and_declare(582,13457 void read_from_file(697,16616 void read_all_input(880,22079 void check_formula_attributes(913,22828 Plist process_input_formulas(939,23499 Plist process_demod_formulas(992,25007 Plist process_goal_formulas(1032,26043 Term read_commands(1081,27281 Plist embed_formulas_in_topforms(1175,29840 ../ladr/topform.c,1249 #define PTRS_TOPFORM 27,843 static unsigned Topform_gets,28,893 static unsigned Topform_gets, Topform_frees;28,893 Topform get_topform(40,1038 void free_topform(54,1223 void fprint_topform_mem(73,1608 void p_topform_mem(99,2226 void zap_topform(124,2712 void fprint_clause(143,3010 void p_clause(184,3756 Topform term_to_clause(206,4271 Topform term_to_topform(233,4712 Term topform_to_term(269,5528 Term topform_to_term_without_attributes(304,6331 void clause_set_variables(338,7176 void renumber_variables(405,8912 void term_renumber_variables(453,10002 Plist renum_vars_map(482,10453 void upward_clause_links(526,11387 BOOL check_upward_clause_links(545,11754 Topform copy_clause(568,12208 Topform copy_clause_with_flags(589,12614 Topform copy_clause_with_flag(610,13056 void inherit_attributes(634,13587 void gather_symbols_in_topform(653,14047 void gather_symbols_in_topforms(674,14485 Ilist fsym_set_in_topforms(691,14791 Ilist rsym_set_in_topforms(713,15154 BOOL min_depth(736,15582 BOOL initial_clause(760,16026 BOOL negative_clause_possibly_compressed(777,16322 Term topform_properties(797,16764 void append_label_attribute(848,18000 Ordertype cl_id_compare(863,18250 Ordertype cl_wt_id_compare(883,18545 ../ladr/tptp_trans.c,562 void declare_tptp_input_types(152,4779 void declare_tptp_output_types(198,5945 Term tptp2_to_ladr_term(250,7493 Term tptp3_to_ladr_term(301,8629 Formula tptp_input_to_ladr_formula(418,11841 void rename_vars_to_upper(459,12889 Term ladr_term_to_tptp_term(482,13388 Plist ladr_list_to_tptp_list(564,15539 Ilist syms_in_form(613,16793 BOOL good_tptp_sym(667,18225 BOOL good_ladr_sym(697,18731 I2list map_for_bad_tptp_syms(712,18909 I2list map_for_bad_ladr_syms(752,19771 Term replace_bad_syms_term(793,20657 Term replace_bad_tptp_syms_form(824,21289 ../ladr/unify.c,1146 struct trail trail28,1016 #define BIND_TR(BIND_TR36,1258 #define MAX_MULTIPLIERS 41,1456 static BOOL Multipliers[45,1510 int next_available_multiplier(54,1669 #define PTRS_CONTEXT 70,2011 static unsigned Context_gets,71,2061 static unsigned Context_gets, Context_frees;71,2061 #define PTRS_TRAIL 73,2107 static unsigned Trail_gets,74,2153 static unsigned Trail_gets, Trail_frees;74,2153 Context get_context(86,2294 void free_context(104,2553 Trail get_trail(120,2853 void free_trail(134,3044 void fprint_unify_mem(153,3416 void p_unify_mem(185,4242 BOOL unify(241,5800 BOOL variant(333,7872 BOOL occur_check(370,8651 BOOL match(419,10170 Term apply(477,11462 Term apply_substitute(516,12530 Term apply_substitute2(546,13300 Term apply_demod(585,14289 void undo_subst(613,14835 void undo_subst_2(646,15760 void fprint_context(669,16166 void p_context(712,17023 void fprint_trail(728,17281 void p_trail(751,17676 BOOL match_weight(767,17874 Ilist vars_in_trail(824,19130 Plist context_to_pairs(842,19386 BOOL empty_substitution(873,19923 BOOL variable_substitution(893,20202 BOOL subst_changes_term(919,20673 ../ladr/weight.c,987 static Plist Rules;26,874 static double Constant_weight;28,895 static double Sk_constant_weight;29,926 static double Not_weight;30,960 static double Or_weight;31,986 static double Prop_atom_weight;32,1011 static double Variable_weight;33,1043 static double Nest_penalty;34,1074 static double Depth_penalty;35,1102 static double Var_penalty;36,1131 static double Complexity;37,1158 static BOOL Not_rules;38,1184 static BOOL Or_rules;39,1239 static int Eq_sn;43,1319 static int Weight_sn;44,1357 static int Sum_sn;46,1402 static int Prod_sn;47,1450 static int Neg_sn;48,1498 static int Div_sn;49,1546 static int Max_sn;50,1594 static int Min_sn;51,1642 static int Depth_sn;52,1690 static int Vars_sn;53,1725 static int Call_sn;54,1759 static int Avar_sn;55,1793 BOOL weight_beta_check(64,1912 BOOL weight_rule_check(100,2720 void init_weight(125,3224 int apply_depth(193,4832 double weight_calc(217,5280 double weight(301,7546 double clause_weight(358,8787 ../ladr/weight2.c,186 #define IMAX(IMAX39,1413 int char_array_ident(52,1612 int char_array_find(69,1954 double complexity_1(88,2316 double test1(141,3647 double call_weight(166,4182 int main(179,4426 ../ladr/xproofs.c,350 void check_parents_and_uplinks_in_proof(36,975 Topform xx_res2(65,1751 void xx_simp2(108,2678 Topform factor(134,3290 void merge1(171,4145 Topform proof_id_to_clause(201,4773 int greatest_id_in_proof(222,5088 Plist expand_proof(251,5910 void renumber_proof(539,14887 Plist copy_and_renumber_proof(568,15492 Plist proof_to_xproof(585,15778 ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/awk1 ================================================ { if ($1 != size) print ""; size = $1; print $0} ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/clausefilter.c ================================================ /* Copyright (C) 2006, 2007 William McCune This file is part of the LADR Deduction Library. The LADR Deduction Library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2. The LADR Deduction Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with the LADR Deduction Library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "../ladr/top_input.h" #include "../ladr/interp.h" #define PROGRAM_NAME "clausefilter" #include "../VERSION_DATE.h" static char Help_string[] = "\nThis program takes a file of interpretations (arg 1) and a stream of\n" "formulas (stdin). Formulas that pass the given test (arg 2) are sent\n" "to stdout. The tests are true_in_all, true_in_some, false_in_all,\n" "false_in_some.\n" "For example,\n\n" " clausefilter interps true_in_all < clauses.in > clauses.out\n\n"; static Ordertype interp_compare(Interp a, Interp b) { if (interp_size(a) < interp_size(b)) return LESS_THAN; else if (interp_size(a) > interp_size(b)) return GREATER_THAN; else return SAME_AS; } /* interp_compare */ /************* * * sort_interps() * *************/ static void sort_interps(Plist interps) { int n = plist_count(interps); void **a = malloc(n * sizeof(void *)); Plist p; int i = 0; for (p = interps; p; p = p->next) a[i++] = p->v; merge_sort(a, n, (Ordertype (*)(void*,void*)) interp_compare); i = 0; for (p = interps; p; p = p->next) p->v = a[i++]; } /* sort_interps */ /************* * * find_interp(clause, list-of-interpretations, models-flag) * * Look for an interpretation that models (or doesn't model) a given clause. * That is, return the first interpretation in which the clause is true * (not true); return NULL if the clause is false (true) in all the * interpretations. * *************/ Interp find_interp(Topform c, Plist interps, BOOL models, BOOL check_evaluable) { Plist p = interps; BOOL value; while (p != NULL) { if (check_evaluable && !evaluable_topform(c, p->v)) ; /* skip this evaluation */ else { value = eval_topform(c, p->v); /* works also for non-clauses */ if ((models && value) || (!models && !value)) return p->v; } p = p->next; } return NULL; } /* find_interp */ enum {TRUE_IN_ALL, TRUE_IN_SOME, FALSE_IN_ALL, FALSE_IN_SOME}; int main(int argc, char **argv) { FILE *interp_fp; Topform c; Term t; Interp interp; Plist interps = NULL; int operation = -1; BOOL commands = string_member("commands", argv, argc); BOOL ignore_nonevaluable = string_member("ignore_nonevaluable", argv, argc); unsigned long int checked = 0; unsigned long int passed = 0; int i; if (string_member("help", argv, argc) || string_member("-help", argv, argc) || argc < 3) { printf("\n%s, version %s, %s\n",PROGRAM_NAME,PROGRAM_VERSION,PROGRAM_DATE); printf("%s", Help_string); exit(1); } if (string_member("true_in_all", argv, argc)) operation = TRUE_IN_ALL; else if (string_member("true_in_some", argv, argc)) operation = TRUE_IN_SOME; else if (string_member("false_in_all", argv, argc)) operation = FALSE_IN_ALL; else if (string_member("false_in_some", argv, argc)) operation = FALSE_IN_SOME; else fatal_error("clausefilter, need argument {true,false}_in_{all,some}"); init_standard_ladr(); i = register_attribute("label", STRING_ATTRIBUTE); /* ignore these */ i = register_attribute("answer", TERM_ATTRIBUTE); /* ignore these */ interp_fp = fopen(argv[1], "r"); if (interp_fp == NULL) fatal_error("clausefilter, interp file cannot be opened for reading"); t = read_term(interp_fp, stderr); /* get first interpretation */ while (t != NULL) { interp = compile_interp(t, FALSE); interps = plist_append(interps, interp); zap_term(t); t = read_term(interp_fp, stderr); } fclose(interp_fp); sort_interps(interps); /* puts smallest ones first */ if (commands) { t = read_commands(stdin, stdout, FALSE, KILL_UNKNOWN); if (!is_term(t, "clauses", 1) && !is_term(t, "formulas", 1)) fatal_error("formulas(...) not found"); } /* Evaluate each formula/clause on stdin. */ c = read_clause_or_formula(stdin, stderr); while (c != NULL && !end_of_list_clause(c)) { checked++; interp = find_interp(c, interps, operation == TRUE_IN_SOME || operation == FALSE_IN_ALL, ignore_nonevaluable); if ((interp && (operation==TRUE_IN_SOME || operation==FALSE_IN_SOME)) || (!interp && (operation==TRUE_IN_ALL || operation==FALSE_IN_ALL))) { passed++; fwrite_clause(stdout, c, CL_FORM_BARE); /* ok for nonclausal formulas */ } zap_topform(c); c = read_clause_or_formula(stdin, stderr); } printf("%% %s %s %s: checked %lu, passed %lu, %.2f seconds.\n", PROGRAM_NAME, argv[1], argv[2], checked, passed, user_seconds()); exit(passed > 0 ? 0 : 1); } /* main */ ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/clausetester.c ================================================ /* Copyright (C) 2006, 2007 William McCune This file is part of the LADR Deduction Library. The LADR Deduction Library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2. The LADR Deduction Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with the LADR Deduction Library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "../ladr/top_input.h" #include "../ladr/interp.h" #define PROGRAM_NAME "clausetester" #include "../VERSION_DATE.h" static char Help_string[] = "\nThis program takes a file of interpretations (arg 1) and a stream of\n" "clauses (stdin). For each clause, it tells interpretations in which\n" "the clause is true.\n\n" "For example,\n\n" " clausetester interps < clauses.in\n\n"; int main(int argc, char **argv) { FILE *interp_fp; Topform c; Term t; Interp interp; Plist interps = NULL; int icount = 0; int ccount = 0; int *counters, i; BOOL commands = string_member("commands", argv, argc); if (string_member("help", argv, argc) || string_member("-help", argv, argc) || argc < 2) { printf("\n%s, version %s, %s\n",PROGRAM_NAME,PROGRAM_VERSION,PROGRAM_DATE); printf("%s", Help_string); exit(1); } interp_fp = fopen(argv[1], "r"); if (interp_fp == NULL) fatal_error("interpretation file cannot be opened for reading"); init_standard_ladr(); i = register_attribute("label", STRING_ATTRIBUTE); /* ignore these */ i = register_attribute("answer", TERM_ATTRIBUTE); /* ignore these */ t = read_term(interp_fp, stderr); /* get first interpretation */ while (t != NULL) { icount++; interp = compile_interp(t, FALSE); interps = plist_append(interps, interp); zap_term(t); t = read_term(interp_fp, stderr); } fclose(interp_fp); counters = calloc(icount, sizeof(int *)); if (commands) { t = read_commands(stdin, stdout, FALSE, KILL_UNKNOWN); if (!is_term(t, "clauses", 1) && !is_term(t, "formulas", 1)) fatal_error("formulas(...) not found"); } /* Evaluate each clause on stdin. */ c = read_clause_or_formula(stdin, stderr); while (c != NULL && !end_of_list_clause(c)) { Plist p = interps; Term t = topform_to_term(c); ccount++; fwrite_term(stdout, t); zap_term(t); printf(". %%"); i = 0; while (p != NULL) { if (eval_topform(c, p->v)) { /* works also for non-clauses */ counters[i]++; printf(" %2d", i+1); } i++; p = p->next; } printf("\n"); fflush(stdout); zap_topform(c); c = read_clause_or_formula(stdin, stderr); } for (i = 0; i < icount; i++) printf("%% interp %d models %d of %d clauses.\n", i+1, counters[i], ccount) ; exit(0); } /* main */ ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/complex.c ================================================ /* Copyright (C) 2006, 2007 William McCune This file is part of the LADR Deduction Library. The LADR Deduction Library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2. The LADR Deduction Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with the LADR Deduction Library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "../ladr/top_input.h" #define PROGRAM_NAME "complex" #include "../VERSION_DATE.h" /************* * * complex4_compare() * *************/ static void complex4_compare(Term a, Term b, int *n) { //printf("compare: "); p_term(a); //printf(" : "); p_term(b); if (VARIABLE(a) && VARIABLE(b)) { if (VARNUM(a) == VARNUM(b)) (*n)++; } else if (!VARIABLE(a) && !VARIABLE(b)) { if (SYMNUM(a) == SYMNUM(b)) { int i; (*n)++; for (i = 0; i < ARITY(a); i++) complex4_compare(ARG(a,i), ARG(b,i), n); } } } /* complex4_compare */ /************* * * complex4_p2() * *************/ static BOOL complex4_p2(Term s, Term t, int *n) { if (s == t) return FALSE; else { int i; BOOL go; for (i = 0, go = TRUE; i < ARITY(t) && go; i++) go = complex4_p2(s, ARG(t,i), n); complex4_compare(s, t, n); return go; } } /* complex4_p2 */ /************* * * complex4_p1() * *************/ static void complex4_p1(Term s, Term t, int *n) { BOOL dummy; int i; for (i = 0; i < ARITY(s); i++) complex4_p1(ARG(s,i), t, n); dummy = complex4_p2(s, t, n); } /* complex4_p1 */ /************* * * complex4() * *************/ /* DOCUMENTATION */ /* PUBLIC */ double complex4(Term t) { int n = 0; double d; int size = symbol_count(t); complex4_p1(t, t, &n); d = ((double) n) / (size*size); if (d >= 1.0) d = 0.999; printf("size= %2d n= %3d d2=%.3f ", size, n, d); p_term(t); return d; } /* complex4 */ int main(int argc, char **argv) { Term t; init_standard_ladr(); /* Evaluate each clause on stdin. */ t = read_term(stdin, stderr); while (t) { double d; /* term_set_variables(t, MAX_VARS); */ d = complex4(t); zap_term(t); t = read_term(stdin, stderr); } exit(0); } /* main */ ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/demods ================================================ % from x4.out a(K(x),y) = x # label(constant_functions). a(P1,p(x,y)) = x # label(projection_1). a(P2,p(x,y)) = y # label(projection_2). a(E,p(x,x)) = P1 # label(equality_1). a(A,a(A,a(A,x))) = a(A,x) # label(2_1_a). a(A,a(A,K(x))) = K(x) # label(2_1_b). a(A,K(K(x))) = K(K(x)) # label(2_1_c). K(p(x,y)) = p(K(x),K(y)) # label(2_2_b0). K(a(P1,x)) = a(P1,K(x)) # label(2_2_b1). K(a(P2,x)) = a(P2,K(x)) # label(2_2_b2). a(a(P1,x),y) = a(P1,a(x,y)). a(a(P2,x),y) = a(P2,a(x,y)). a(A,P1) = K(P1) # label(2_3_b1a). a(A,K(P1)) = P1 # label(2_3_b1b). a(A,P2) = K(P2) # label(2_3_b2a). a(A,K(P2)) = P2 # label(2_3_b2b). a(A,p(P1,P2)) = p(K(P1),K(P2)). a(A,p(K(P1),K(P2))) = p(P1,P2). a(a(p(P1,K(P2)),K(x)),x) = x. a(p(P1,P2),x) = x. a(E,a(p(x,x),y)) = P1. a(a(a(A,A),x),K(y)) = K(y). a(p(K(x),K(y)),z) = p(x,y). a(P1,a(p(x,y),z)) = a(x,z). a(P2,a(p(x,y),z)) = a(y,z). a(P2,a(A,p(x,y))) = a(A,y). a(p(K(x),A),P1) = p(x,K(P1)). a(p(A,K(x)),P1) = p(K(P1),x). a(p(K(x),A),K(P1)) = p(x,P1). a(p(A,K(x)),K(P1)) = p(P1,x). a(p(K(x),A),P2) = p(x,K(P2)). a(p(A,K(x)),P2) = p(K(P2),x). a(p(K(x),A),K(P2)) = p(x,P2). a(p(A,K(x)),K(P2)) = p(P2,x). a(E,a(A,p(x,x))) = P1. a(E,a(a(p(x,x),y),z)) = P1. a(E,a(A,a(p(x,x),y))) = P1. a(E,a(a(A,p(x,x)),y)) = P1. a(E,a(A,a(A,p(x,x)))) = P1. a(a(a(A,A),P1),p(P1,P2)) = P1. a(a(a(A,A),P2),p(P1,P2)) = P2. a(A,p(P1,P1)) = p(K(P1),K(P1)). a(A,p(P1,K(P1))) = p(K(P1),P1). a(A,p(P1,K(P2))) = p(K(P1),P2). a(A,p(K(P1),P1)) = p(P1,K(P1)). a(A,p(K(P1),K(P1))) = p(P1,P1). a(A,p(K(P1),P2)) = p(P1,K(P2)). a(a(a(A,A),E),p(P1,P2)) = P2. a(E,p(P1,P2)) = P2. a(A,p(P2,P1)) = p(K(P2),K(P1)). a(A,p(P2,K(P1))) = p(K(P2),P1). a(A,p(P2,P2)) = p(K(P2),K(P2)). a(A,p(P2,K(P2))) = p(K(P2),P2). a(A,p(K(P2),P1)) = p(P2,K(P1)). a(A,p(K(P2),K(P1))) = p(P2,P1). a(A,p(K(P2),P2)) = p(P2,K(P2)). a(A,p(K(P2),K(P2))) = p(P2,P2). a(E,p(P2,P1)) = P2. a(E,f(P1,P2)) = P2. a(E,f(P2,P1)) = P2. a(a(A,K(E)),p(x,x)) = K(P1). a(p(E,E),p(x,x)) = p(P1,P1). a(p(E,E),p(P1,P2)) = p(P2,P2). a(p(E,E),p(P2,P1)) = p(P2,P2). a(p(E,E),f(P1,P2)) = p(P2,P2). a(p(E,E),f(P2,P1)) = p(P2,P2). a(P2,a(A,a(A,p(x,P1)))) = P1. a(E,K(a(p(x,x),y))) = P1. a(E,K(a(A,p(x,x)))) = P1. a(P2,a(A,a(p(x,A),P1))) = P1. a(P2,a(A,a(A,p(x,P2)))) = P2. a(P2,a(A,a(p(x,A),P2))) = P2. a(E,K(K(a(p(x,x),y)))) = P1. a(E,K(K(a(A,p(x,x))))) = P1. a(a(p(P1,A),K(P2)),P2) = P2. a(p(P2,P2),p(x,x)) = p(x,x). a(p(P2,E),p(P1,P2)) = p(P2,P2). a(p(P2,P2),p(x,P1)) = p(P1,P1). a(p(P2,P2),p(x,P2)) = p(P2,P2). a(p(P1,P1),p(P1,x)) = p(P1,P1). a(p(P1,P1),p(P2,x)) = p(P2,P2). a(p(P1,P1),p(x,x)) = p(x,x). a(P1,a(A,x)) = a(A,a(P1,x)). a(A,a(P1,P1)) = a(P1,K(P1)). a(A,a(P1,K(P1))) = a(P1,P1). a(A,a(P1,P2)) = a(P1,K(P2)). a(A,a(P1,K(P2))) = a(P1,P2). a(a(A,a(A,E)),p(x,x)) = P1. a(p(P1,E),p(x,x)) = p(x,P1). a(p(P1,E),p(P1,P2)) = p(P1,P2). a(p(P1,E),p(P2,P1)) = p(P2,P2). a(p(P2,P1),p(x,y)) = p(y,x). a(p(P2,E),p(P2,P1)) = p(P1,P2). a(p(E,P2),p(P2,P1)) = p(P2,P1). a(p(E,P1),p(x,x)) = p(P1,x). a(p(E,P2),p(x,x)) = p(P1,x). a(a(p(A,P2),K(P1)),P1) = P1. a(A,a(P2,x)) = a(P2,a(A,x)). a(E,p(p(P1,P2),p(x,x))) = P2. a(E,a(p(P2,P1),f(P1,P2))) = P2. a(E,a(p(P2,P1),f(P2,P1))) = P2. a(E,p(p(x,x),p(P1,P2))) = P2. a(E,a(p(E,P1),p(x,P2))) = P2. a(E,a(p(P1,E),p(x,P2))) = P2. a(p(P2,P2),p(x,E)) = p(E,E). a(p(P1,P1),p(E,x)) = p(E,E). a(a(A,K(x)),p(P1,P2)) = x. a(p(P2,P2),p(x,A)) = p(A,A). a(p(P1,P1),p(A,x)) = p(A,A). a(E,p(A,p(x,x))) = P2. a(E,p(p(P2,P1),p(x,x))) = P2. a(E,p(f(P1,P2),p(x,x))) = P2. a(E,p(f(P2,P1),p(x,x))) = P2. a(E,p(p(E,P1),p(x,x))) = P2. a(E,p(p(E,P2),p(x,x))) = P2. a(E,p(p(P1,E),p(x,x))) = P2. a(E,p(p(P2,E),p(x,x))) = P2. a(E,p(p(P1,A),p(x,x))) = P2. a(E,p(p(A,P1),p(x,x))) = P2. a(E,p(p(P2,A),p(x,x))) = P2. a(E,p(p(A,P2),p(x,x))) = P2. a(E,p(P1,p(x,x))) = P2. a(E,p(P2,p(x,x))) = P2. a(E,a(A,p(A,p(x,x)))) = P2. a(E,a(p(A,p(x,x)),A)) = P2. a(E,p(E,p(x,x))) = P2. a(E,p(K(P2),p(x,x))) = P2. a(E,a(p(A,p(x,x)),P2)) = P2. a(E,a(A,p(P2,p(x,x)))) = P2. a(E,p(p(x,x),A)) = P2. a(E,p(p(x,x),p(P2,A))) = P2. a(E,p(p(x,x),p(A,P2))) = P2. a(E,p(p(x,x),p(P1,A))) = P2. a(E,p(p(x,x),P1)) = P2. a(E,p(p(x,x),P2)) = P2. a(E,p(p(x,x),p(A,P1))) = P2. a(E,p(p(x,x),p(E,P1))) = P2. a(E,p(p(x,x),p(P1,E))) = P2. a(E,p(p(x,x),p(E,P2))) = P2. a(E,p(p(x,x),p(P2,E))) = P2. a(E,p(p(x,x),f(P1,P2))) = P2. a(E,p(p(x,x),f(P2,P1))) = P2. a(E,p(p(x,x),p(P2,P1))) = P2. a(E,p(p(x,x),p(E,A))) = P2. a(E,p(p(x,x),K(P2))) = P2. a(E,p(p(x,x),E)) = P2. a(E,a(p(p(x,x),A),P2)) = P2. a(E,a(A,p(p(x,x),P2))) = P2. a(E,p(p(A,E),p(x,x))) = P2. a(E,p(p(x,x),p(A,E))) = P2. a(E,p(K(K(P2)),p(x,x))) = P2. a(E,p(p(x,x),K(K(P2)))) = P2. a(E,p(K(E),p(x,x))) = P2. a(E,p(K(P1),p(x,x))) = P2. a(E,p(K(A),p(x,x))) = P2. a(E,a(A,p(E,p(x,x)))) = P2. a(E,a(p(A,p(x,x)),E)) = P2. a(E,p(p(x,x),K(E))) = P2. a(E,p(p(x,x),K(P1))) = P2. a(E,p(p(x,x),K(A))) = P2. a(E,a(p(A,p(x,x)),P1)) = P2. a(E,a(A,p(P1,p(x,x)))) = P2. a(E,a(p(p(x,x),A),E)) = P2. a(E,a(A,p(p(x,x),E))) = P2. a(E,a(p(p(x,x),A),P1)) = P2. a(E,a(A,p(p(x,x),P1))) = P2. a(E,a(p(p(x,x),A),A)) = P2. a(E,a(A,p(p(x,x),A))) = P2. a(E,a(p(p(x,x),P2),A)) = P2. a(E,a(p(P2,p(x,x)),A)) = P2. a(E,p(p(E,A),p(x,x))) = P2. a(a(A,K(A)),P2) = a(P2,A). a(E,p(P2,E)) = P2. a(E,p(P2,A)) = P2. a(E,p(E,P2)) = P2. a(E,p(A,P2)) = P2. a(p(E,E),p(P2,E)) = p(P2,P2). a(p(P1,E),p(P2,E)) = p(P2,P2). a(p(P2,E),p(P2,E)) = p(E,P2). a(p(P1,E),p(E,P2)) = p(E,P2). a(p(P2,E),p(E,P2)) = p(P2,P2). a(p(E,E),p(P2,A)) = p(P2,P2). a(p(P1,E),p(P2,A)) = p(P2,P2). a(p(P2,E),p(P2,A)) = p(A,P2). a(p(P1,E),p(A,P2)) = p(A,P2). a(p(P2,E),p(A,P2)) = p(P2,P2). a(E,p(E,K(x))) = P2. a(E,p(A,K(x))) = P2. a(E,p(P1,K(x))) = P2. a(E,p(P2,K(x))) = P2. a(E,p(K(x),P2)) = P2. a(E,a(p(A,P2),K(P1))) = P2. a(E,a(p(A,P1),K(P1))) = P2. a(E,a(p(A,P2),K(P2))) = P2. a(E,a(p(A,P1),K(P2))) = P2. a(E,a(p(K(E),P1),K(x))) = P2. a(E,a(p(K(E),P2),K(x))) = P2. a(E,p(E,p(K(x),K(y)))) = P2. a(E,a(p(K(A),P1),K(x))) = P2. a(E,a(p(K(A),P2),K(x))) = P2. a(E,a(p(K(P1),P1),K(x))) = P2. a(E,p(K(x),E)) = P2. a(E,p(K(x),A)) = P2. a(E,p(K(x),P1)) = P2. a(E,a(p(P2,A),K(P1))) = P2. a(E,a(p(P1,A),K(P1))) = P2. a(E,a(p(K(P1),P2),K(x))) = P2. a(E,a(p(K(P2),P1),K(x))) = P2. a(E,a(p(K(P2),P2),K(x))) = P2. a(E,a(p(P1,K(P2)),K(x))) = P2. a(E,a(p(P1,A),K(P2))) = P2. a(E,a(p(P2,K(P2)),K(x))) = P2. a(E,a(p(P2,A),K(P2))) = P2. a(E,a(p(P1,K(E)),K(x))) = P2. a(E,p(K(P1),K(P2))) = P2. a(E,p(K(P2),K(P1))) = P2. a(E,a(p(P2,K(E)),K(x))) = P2. a(E,p(p(K(x),K(y)),E)) = P2. a(E,a(p(P1,K(A)),K(x))) = P2. a(E,a(p(P2,K(A)),K(x))) = P2. a(E,a(p(P1,K(P1)),K(x))) = P2. a(E,a(p(P2,K(P1)),K(x))) = P2. a(E,p(K(P2),K(E))) = P2. a(E,p(K(E),K(P2))) = P2. a(E,p(K(A),K(P2))) = P2. a(E,p(K(P2),K(A))) = P2. a(E,p(A,P1)) = P2. a(E,p(P1,A)) = P2. a(p(E,E),p(A,P1)) = p(P2,P2). a(p(P1,E),p(A,P1)) = p(A,P2). a(p(P2,E),p(A,P1)) = p(P1,P2). a(p(E,P1),p(A,P1)) = p(P2,A). a(p(E,P2),p(A,P1)) = p(P2,P1). a(E,p(p(P2,x),K(y))) = P2. a(E,p(K(x),p(P2,y))) = P2. a(E,p(E,P1)) = P2. a(E,p(P1,E)) = P2. a(p(E,E),p(P1,A)) = p(P2,P2). a(p(P1,E),p(P1,A)) = p(P1,P2). a(E,p(p(x,P2),K(y))) = P2. a(E,p(K(x),p(y,P2))) = P2. a(p(P2,E),p(P1,A)) = p(A,P2). a(p(E,P1),p(P1,A)) = p(P2,P1). a(p(E,P2),p(P1,A)) = p(P2,A). a(p(E,E),p(E,P1)) = p(P2,P2). a(p(P1,E),p(E,P1)) = p(E,P2). a(p(P2,E),p(E,P1)) = p(P1,P2). a(p(E,P1),p(E,P1)) = p(P2,E). a(p(E,P2),p(E,P1)) = p(P2,P1). a(p(E,E),p(P1,E)) = p(P2,P2). a(p(P1,E),p(P1,E)) = p(P1,P2). a(p(P2,E),p(P1,E)) = p(E,P2). a(p(E,P1),p(P1,E)) = p(P2,P1). a(p(E,P2),p(P1,E)) = p(P2,E). a(E,a(A,p(K(P2),A))) = P2. a(E,a(a(A,p(P2,A)),x)) = P2. a(E,a(A,p(K(P2),K(E)))) = P2. a(E,a(A,a(A,p(P2,E)))) = P2. a(E,a(A,a(A,p(P2,A)))) = P2. a(E,a(A,p(A,K(P2)))) = P2. a(E,a(a(A,p(A,P2)),x)) = P2. a(E,a(A,p(K(E),K(P2)))) = P2. a(E,a(A,a(A,p(E,P2)))) = P2. a(E,p(p(x,P2),P1)) = P2. a(E,p(p(P2,x),P1)) = P2. a(E,a(A,p(P2,A))) = P2. a(E,a(A,p(A,P2))) = P2. a(E,p(P1,p(x,P2))) = P2. a(E,p(P1,p(P2,x))) = P2. a(E,a(A,p(A,K(P1)))) = P2. a(E,a(A,p(E,K(P1)))) = P2. a(E,p(p(x,P1),P2)) = P2. a(E,p(p(P1,x),P2)) = P2. a(E,p(P2,p(x,P1))) = P2. a(E,p(P2,p(P1,x))) = P2. a(E,a(A,p(K(P1),A))) = P2. a(E,a(A,p(K(P1),E))) = P2. a(E,a(A,a(A,p(A,P2)))) = P2. a(E,a(a(A,p(A,P1)),x)) = P2. a(E,a(A,a(A,p(A,P1)))) = P2. a(E,a(A,a(A,p(E,P1)))) = P2. a(E,a(a(A,p(P1,A)),x)) = P2. a(E,a(A,a(A,p(P1,A)))) = P2. a(E,a(A,a(A,p(P1,E)))) = P2. a(E,p(K(P2),p(x,K(P1)))) = P2. a(E,p(p(x,K(P1)),K(P2))) = P2. a(E,p(K(P2),p(K(P1),x))) = P2. a(E,p(p(K(P1),x),K(P2))) = P2. a(E,p(A,E)) = P2. a(E,p(E,A)) = P2. a(E,p(p(P1,x),E)) = P2. a(E,p(p(x,P1),E)) = P2. a(E,p(E,p(P1,x))) = P2. a(E,p(E,p(x,P1))) = P2. a(E,p(P2,p(x,E))) = P2. a(E,p(p(x,E),P2)) = P2. a(E,p(P1,p(x,E))) = P2. a(E,p(p(x,E),P1)) = P2. a(E,a(p(A,K(E)),A)) = P2. a(E,a(p(K(E),A),A)) = P2. a(E,p(p(P2,x),E)) = P2. a(E,p(p(x,P2),E)) = P2. a(E,p(E,p(P2,x))) = P2. a(E,p(E,p(x,P2))) = P2. a(E,p(P2,p(E,x))) = P2. a(E,p(p(E,x),P2)) = P2. a(E,p(P1,p(E,x))) = P2. a(E,p(p(E,x),P1)) = P2. a(E,p(p(K(P1),x),E)) = P2. a(E,p(p(x,K(P1)),E)) = P2. a(E,p(p(K(E),x),E)) = P2. a(E,p(p(x,K(E)),E)) = P2. a(E,p(E,p(K(P1),x))) = P2. a(E,p(E,p(x,K(P1)))) = P2. a(E,p(E,p(K(E),x))) = P2. a(E,p(E,p(x,K(E)))) = P2. a(E,a(p(A,K(E)),E)) = P2. a(E,a(p(K(E),A),E)) = P2. a(E,p(K(P2),p(x,K(E)))) = P2. a(E,p(p(x,K(E)),K(P2))) = P2. a(E,p(K(P2),p(K(E),x))) = P2. a(E,p(p(K(E),x),K(P2))) = P2. a(E,a(p(A,p(P1,P2)),E)) = P2. a(E,a(p(p(P1,P2),A),E)) = P2. a(E,p(K(P2),K(K(x)))) = P2. a(E,p(K(K(x)),K(P2))) = P2. a(E,a(A,p(K(x),P2))) = P2. a(E,a(A,p(K(P2),K(A)))) = P2. a(E,a(A,p(K(A),K(P2)))) = P2. a(E,a(A,p(K(P1),K(A)))) = P2. a(E,a(A,p(K(A),K(P1)))) = P2. a(E,a(p(A,E),p(P2,A))) = P2. a(E,a(p(A,E),p(A,P2))) = P2. a(E,a(A,p(P2,K(x)))) = P2. a(p(E,E),p(A,E)) = p(P2,P2). a(p(P1,E),p(A,E)) = p(A,P2). a(p(P2,E),p(A,E)) = p(E,P2). a(p(E,P1),p(A,E)) = p(P2,A). a(p(E,P2),p(A,E)) = p(P2,E). a(p(E,E),p(E,A)) = p(P2,P2). a(p(P1,E),p(E,A)) = p(E,P2). a(p(P2,E),p(E,A)) = p(A,P2). a(p(E,P1),p(E,A)) = p(P2,E). a(p(E,P2),p(E,A)) = p(P2,A). a(E,a(A,p(P2,p(x,P1)))) = P2. a(E,a(A,p(p(x,P1),P2))) = P2. a(E,a(A,p(P2,p(P1,x)))) = P2. a(E,a(A,p(p(P1,x),P2))) = P2. a(E,p(K(a(A,A)),K(P2))) = P2. a(E,p(K(P2),K(a(A,A)))) = P2. a(E,a(a(A,p(E,P1)),P2)) = P2. a(E,a(a(A,p(P1,E)),P2)) = P2. a(E,a(a(A,p(E,P2)),P1)) = P2. a(E,a(A,p(P2,E))) = P2. a(E,a(A,p(E,P2))) = P2. a(E,a(a(A,p(P2,E)),P1)) = P2. a(E,p(p(x,K(P2)),E)) = P2. a(E,p(E,p(x,K(P2)))) = P2. a(E,p(p(K(P2),x),E)) = P2. a(E,p(E,p(K(P2),x))) = P2. a(E,a(p(P1,A),P2)) = P2. a(E,a(p(P2,A),P2)) = P2. a(E,a(p(A,P1),P2)) = P2. a(E,a(p(A,P2),P2)) = P2. a(E,a(a(A,p(E,P1)),P1)) = P2. a(E,a(a(A,p(P1,E)),P1)) = P2. a(E,a(a(A,p(E,P2)),P2)) = P2. a(E,a(a(A,p(P2,E)),P2)) = P2. a(E,a(p(A,p(x,P1)),P2)) = P2. a(E,a(p(p(x,P1),A),P2)) = P2. a(E,p(p(A,x),P2)) = P2. a(E,p(P2,p(A,x))) = P2. a(E,a(A,p(K(E),K(P1)))) = P2. a(E,p(E,p(K(A),x))) = P2. a(E,p(p(K(A),x),E)) = P2. a(E,p(K(P2),p(K(A),x))) = P2. a(E,p(p(K(A),x),K(P2))) = P2. a(E,a(p(K(A),A),A)) = P2. a(E,a(p(A,K(A)),A)) = P2. a(E,a(A,p(K(P1),K(E)))) = P2. a(E,a(p(A,p(x,P2)),P2)) = P2. a(E,a(p(p(x,P2),A),P2)) = P2. a(E,a(p(A,p(P1,x)),P2)) = P2. a(E,a(p(p(P1,x),A),P2)) = P2. a(E,a(A,p(P2,p(A,x)))) = P2. a(E,a(A,p(p(A,x),P2))) = P2. a(E,a(p(A,K(A)),E)) = P2. a(E,a(p(K(A),A),E)) = P2. a(E,p(p(A,x),P1)) = P2. a(E,p(P1,p(A,x))) = P2. a(E,p(p(x,A),P1)) = P2. a(E,p(P1,p(x,A))) = P2. a(E,p(p(x,A),P2)) = P2. a(E,p(P2,p(x,A))) = P2. a(E,p(E,p(x,K(A)))) = P2. a(E,p(p(x,K(A)),E)) = P2. a(E,p(K(P2),p(x,K(A)))) = P2. a(E,p(p(x,K(A)),K(P2))) = P2. a(E,p(K(K(x)),K(E))) = P2. a(E,p(K(K(x)),K(A))) = P2. a(E,p(K(K(x)),K(P1))) = P2. a(E,p(K(E),K(K(x)))) = P2. a(E,p(K(A),K(K(x)))) = P2. a(E,p(K(P1),K(K(x)))) = P2. a(E,p(K(K(P2)),K(K(P1)))) = P2. a(E,p(K(K(P1)),K(K(P2)))) = P2. a(E,p(K(K(E)),K(K(P2)))) = P2. a(E,p(K(K(P2)),K(K(E)))) = P2. a(E,p(K(K(P2)),K(K(A)))) = P2. a(E,p(K(K(A)),K(K(P2)))) = P2. a(E,p(p(P1,x),p(P2,y))) = P2. a(E,p(p(P2,x),p(P1,y))) = P2. a(E,p(p(x,P1),p(y,P2))) = P2. a(E,p(p(x,P2),p(y,P1))) = P2. a(E,p(A,p(x,E))) = P2. a(E,p(P2,p(x,P2))) = P2. a(E,p(P1,p(x,P1))) = P2. a(E,p(p(P1,x),P1)) = P2. a(E,p(p(P2,x),P2)) = P2. a(E,p(p(x,P1),P1)) = P2. a(E,p(p(x,P2),P2)) = P2. a(E,p(A,p(x,P1))) = P2. a(E,p(p(x,P1),A)) = P2. a(E,p(A,p(x,P2))) = P2. a(E,p(p(x,P2),A)) = P2. a(E,p(p(P1,x),A)) = P2. a(E,p(A,p(P1,x))) = P2. a(E,p(p(x,E),A)) = P2. a(E,p(P1,p(P1,x))) = P2. a(E,p(P2,p(P2,x))) = P2. a(E,p(E,p(E,x))) = P2. a(E,p(p(E,x),E)) = P2. a(E,p(E,p(x,E))) = P2. a(E,p(p(x,E),E)) = P2. a(E,p(K(K(E)),p(x,x))) = P2. a(E,p(K(K(P1)),p(x,x))) = P2. a(E,p(K(K(A)),p(x,x))) = P2. a(E,p(p(x,x),K(K(E)))) = P2. a(E,p(p(A,x),A)) = P2. a(E,p(p(x,A),A)) = P2. a(E,p(A,p(A,x))) = P2. a(E,p(A,p(x,A))) = P2. a(E,p(p(x,x),K(K(P1)))) = P2. a(E,p(p(x,x),K(K(A)))) = P2. a(E,p(p(x,K(P2)),K(P1))) = P2. a(E,p(p(K(P2),x),K(P1))) = P2. a(E,p(K(P1),p(x,K(P2)))) = P2. a(E,p(K(P1),p(K(P2),x))) = P2. a(E,p(p(K(P1),x),K(E))) = P2. a(E,p(p(x,K(P1)),K(E))) = P2. a(E,p(K(E),p(K(P1),x))) = P2. a(E,p(K(E),p(x,K(P1)))) = P2. a(E,p(K(P1),p(x,K(E)))) = P2. a(E,p(p(x,K(E)),K(P1))) = P2. a(E,p(p(K(P2),x),K(E))) = P2. a(E,p(p(x,K(P2)),K(E))) = P2. a(E,p(K(E),p(K(P2),x))) = P2. a(E,p(K(E),p(x,K(P2)))) = P2. a(E,p(K(P1),p(K(E),x))) = P2. a(E,p(p(K(E),x),K(P1))) = P2. a(E,p(p(K(A),x),K(P1))) = P2. a(E,p(K(P1),p(K(A),x))) = P2. a(E,p(p(x,K(A)),K(P1))) = P2. a(E,p(K(P1),p(x,K(A)))) = P2. a(E,p(K(P2),p(K(P2),x))) = P2. a(E,p(p(K(P2),x),K(P2))) = P2. a(E,p(K(P2),p(x,K(P2)))) = P2. a(E,p(p(x,K(P2)),K(P2))) = P2. a(E,a(A,p(P2,p(P2,x)))) = P2. a(E,a(A,p(p(P2,x),P2))) = P2. a(E,a(p(A,p(A,x)),P2)) = P2. a(E,a(p(p(A,x),A),P2)) = P2. a(E,a(A,p(P2,p(x,P2)))) = P2. a(E,a(A,p(p(x,P2),P2))) = P2. a(E,a(p(A,p(x,A)),P2)) = P2. a(E,a(p(p(x,A),A),P2)) = P2. a(E,p(K(P1),K(A))) = P2. a(E,p(K(A),K(P1))) = P2. a(E,p(K(E),K(P1))) = P2. a(E,p(K(P1),K(E))) = P2. a(E,p(K(P1),K(a(A,A)))) = P2. a(E,p(K(a(A,A)),K(P1))) = P2. a(E,p(K(A),p(x,K(E)))) = P2. a(E,p(p(x,K(E)),K(A))) = P2. a(E,p(K(P1),p(x,K(P1)))) = P2. a(E,p(p(x,K(P1)),K(P1))) = P2. a(E,p(p(K(P1),x),K(P1))) = P2. a(E,p(K(P1),p(K(P1),x))) = P2. a(E,p(K(A),p(x,K(P1)))) = P2. a(E,p(p(x,K(P1)),K(A))) = P2. a(E,p(K(A),p(x,K(P2)))) = P2. a(E,p(p(x,K(P2)),K(A))) = P2. a(E,p(p(K(P1),x),K(A))) = P2. a(E,p(K(A),p(K(P1),x))) = P2. a(E,p(K(E),p(K(E),x))) = P2. a(E,p(p(K(E),x),K(E))) = P2. a(E,p(K(E),p(x,K(E)))) = P2. a(E,p(p(x,K(E)),K(E))) = P2. a(E,p(p(K(A),x),K(A))) = P2. a(E,p(K(A),p(K(A),x))) = P2. a(E,p(p(x,K(A)),K(A))) = P2. a(E,p(K(A),p(x,K(A)))) = P2. a(a(p(P1,A),K(A)),P2) = A. a(E,a(p(A,P2),p(x,A))) = P2. a(E,a(p(A,P1),p(A,x))) = P2. a(E,a(p(P2,A),p(x,A))) = P2. a(E,a(p(P1,A),p(A,x))) = P2. a(E,a(A,p(E,K(K(x))))) = P2. a(E,a(A,p(A,K(K(x))))) = P2. a(E,a(A,p(E,P1))) = P2. a(E,a(A,p(K(K(x)),E))) = P2. a(E,a(A,p(K(K(x)),A))) = P2. a(E,a(A,p(P1,E))) = P2. a(E,a(a(A,p(E,P1)),A)) = P2. a(E,a(a(A,p(P1,E)),A)) = P2. a(E,a(a(A,p(E,P2)),A)) = P2. a(E,a(a(A,p(P2,E)),A)) = P2. a(E,a(p(A,K(E)),K(x))) = P2. a(E,a(p(P1,K(E)),P1)) = P2. a(E,a(p(P1,K(E)),P2)) = P2. a(E,a(p(P2,K(E)),P1)) = P2. a(E,a(p(P2,K(E)),P2)) = P2. a(E,a(p(K(E),A),K(x))) = P2. a(E,a(p(K(E),P1),P1)) = P2. a(E,a(p(K(E),P1),P2)) = P2. a(E,a(p(K(E),P2),P1)) = P2. a(E,a(p(K(E),P2),P2)) = P2. a(E,p(E,p(A,x))) = P2. a(E,p(p(A,x),E)) = P2. a(E,p(K(E),p(K(A),x))) = P2. a(E,p(p(K(A),x),K(E))) = P2. a(E,p(p(P2,x),A)) = P2. a(E,p(A,p(P2,x))) = P2. a(E,p(p(K(P2),x),K(A))) = P2. a(E,p(K(A),p(K(P2),x))) = P2. a(E,a(p(A,p(P2,x)),P2)) = P2. a(E,a(p(p(P2,x),A),P2)) = P2. a(E,a(A,p(p(x,P2),P1))) = P2. a(E,a(A,p(p(P2,x),P1))) = P2. a(E,a(A,p(P1,p(x,P2)))) = P2. a(E,a(A,p(P1,p(P2,x)))) = P2. a(E,a(p(A,p(x,A)),P1)) = P2. a(E,a(A,p(P1,p(x,P1)))) = P2. a(E,a(p(p(x,A),A),P1)) = P2. a(E,a(A,p(p(x,P1),P1))) = P2. a(E,a(p(p(A,x),A),P1)) = P2. a(E,a(A,p(p(P1,x),P1))) = P2. a(E,a(p(A,p(A,x)),P1)) = P2. a(E,a(A,p(P1,p(P1,x)))) = P2. a(E,p(E,p(x,A))) = P2. a(E,p(p(x,A),E)) = P2. a(E,p(K(E),p(x,K(A)))) = P2. a(E,p(p(x,K(A)),K(E))) = P2. a(E,a(A,p(P2,p(x,A)))) = P2. a(E,a(A,p(p(x,A),P2))) = P2. a(E,p(K(P2),K(a(A,E)))) = P2. a(E,p(K(a(A,E)),K(P2))) = P2. a(E,a(A,p(E,K(P2)))) = P2. a(E,a(A,p(K(P2),E))) = P2. a(E,p(K(E),K(A))) = P2. a(E,p(K(A),K(E))) = P2. a(E,p(K(K(A)),K(K(P1)))) = P2. a(E,p(K(K(P1)),K(K(A)))) = P2. a(E,p(K(K(P1)),K(K(E)))) = P2. a(E,p(K(K(E)),K(K(P1)))) = P2. a(E,p(K(K(A)),K(K(E)))) = P2. a(E,p(K(K(E)),K(K(A)))) = P2. a(E,p(K(a(A,E)),K(P1))) = P2. a(E,p(K(P1),K(a(A,E)))) = P2. a(E,p(K(E),K(a(A,A)))) = P2. a(E,p(K(E),K(a(A,E)))) = P2. a(E,p(K(a(A,A)),K(E))) = P2. a(E,p(K(a(A,E)),K(E))) = P2. a(E,a(p(K(P2),P2),A)) = P2. a(E,a(p(P2,K(P2)),A)) = P2. a(E,a(p(K(K(P2)),P1),A)) = P2. a(E,a(p(P1,K(K(P2))),A)) = P2. a(E,p(K(a(A,E)),K(A))) = P2. a(E,p(K(A),K(a(A,E)))) = P2. a(E,p(K(A),K(a(A,A)))) = P2. a(E,p(K(a(A,A)),K(A))) = P2. a(E,a(p(K(K(P2)),P2),A)) = P2. a(E,a(p(P2,K(K(P2))),A)) = P2. a(E,a(p(P1,K(P2)),A)) = P2. a(E,a(p(K(P2),P1),A)) = P2. a(E,p(A,p(E,x))) = P2. a(E,p(p(E,x),A)) = P2. a(E,p(K(A),p(K(E),x))) = P2. a(E,p(p(K(E),x),K(A))) = P2. a(E,a(p(E,A),p(P1,E))) = P2. a(E,a(p(A,E),p(P1,E))) = P2. a(E,a(p(A,E),p(E,P1))) = P2. a(E,a(p(A,K(A)),K(x))) = P2. a(E,a(p(P1,K(A)),P1)) = P2. a(E,a(p(P1,K(A)),P2)) = P2. a(E,a(p(P2,K(A)),P2)) = P2. a(E,a(p(K(A),A),K(x))) = P2. a(E,a(p(P2,K(A)),P1)) = P2. a(E,a(p(K(A),P1),P1)) = P2. a(E,a(p(K(A),P1),P2)) = P2. a(E,a(p(K(A),P2),P2)) = P2. a(E,a(p(K(A),P2),P1)) = P2. a(E,p(P2,p(x,p(y,E)))) = P2. a(E,p(p(x,p(y,E)),P2)) = P2. a(E,p(P2,p(x,p(E,y)))) = P2. a(E,p(p(x,p(E,y)),P2)) = P2. a(E,p(P2,p(p(x,E),y))) = P2. a(E,p(p(p(x,E),y),P2)) = P2. a(E,p(P2,p(p(E,x),y))) = P2. a(E,p(p(p(E,x),y),P2)) = P2. a(E,a(A,p(p(x,E),P2))) = P2. a(E,a(A,p(p(E,x),P2))) = P2. a(E,p(E,p(x,p(y,P1)))) = P2. a(E,p(p(x,p(y,P1)),E)) = P2. a(E,p(P2,p(x,p(y,P1)))) = P2. a(E,p(p(x,p(y,P1)),P2)) = P2. a(E,p(P1,p(x,p(y,E)))) = P2. a(E,p(p(x,p(y,E)),P1)) = P2. a(E,p(E,p(x,p(y,P2)))) = P2. a(E,p(p(x,p(y,P2)),E)) = P2. a(E,p(P1,p(x,p(y,P2)))) = P2. a(E,p(p(x,p(y,P2)),P1)) = P2. a(E,p(E,p(x,p(P1,y)))) = P2. a(E,p(p(x,p(P1,y)),E)) = P2. a(E,p(P2,p(x,p(P1,y)))) = P2. a(E,p(p(x,p(P1,y)),P2)) = P2. a(E,p(E,p(x,p(P2,y)))) = P2. a(E,p(p(x,p(P2,y)),E)) = P2. a(E,p(P1,p(x,p(P2,y)))) = P2. a(E,p(p(x,p(P2,y)),P1)) = P2. a(E,p(E,p(p(x,P1),y))) = P2. a(E,p(p(p(x,P1),y),E)) = P2. a(E,p(P2,p(p(x,P1),y))) = P2. a(E,p(p(p(x,P1),y),P2)) = P2. a(E,p(P1,p(p(x,E),y))) = P2. a(E,p(p(p(x,E),y),P1)) = P2. a(E,p(E,p(p(x,P2),y))) = P2. a(E,p(p(p(x,P2),y),E)) = P2. a(E,p(P1,p(p(x,P2),y))) = P2. a(E,p(p(p(x,P2),y),P1)) = P2. a(E,p(E,p(p(P1,x),y))) = P2. a(E,p(p(p(P1,x),y),E)) = P2. a(E,p(P2,p(p(P1,x),y))) = P2. a(E,p(p(p(P1,x),y),P2)) = P2. a(E,p(P1,p(p(E,x),y))) = P2. a(E,p(p(p(E,x),y),P1)) = P2. a(E,p(E,p(p(P2,x),y))) = P2. a(E,p(p(p(P2,x),y),E)) = P2. a(E,p(P1,p(p(P2,x),y))) = P2. a(E,p(p(p(P2,x),y),P1)) = P2. a(E,p(P1,p(x,p(E,y)))) = P2. a(E,p(p(x,p(E,y)),P1)) = P2. a(E,a(A,p(A,P1))) = P2. a(E,a(A,p(K(x),P1))) = P2. a(E,a(p(P1,A),P1)) = P2. a(E,a(p(P1,K(K(P1))),P2)) = P2. a(E,a(p(P2,K(K(P1))),P2)) = P2. a(E,a(p(P2,A),P1)) = P2. a(E,a(A,p(A,p(P1,P2)))) = P2. a(E,a(p(A,K(K(A))),E)) = P2. a(E,a(p(A,K(K(E))),E)) = P2. a(E,p(p(E,x),K(y))) = P2. a(E,p(p(A,x),K(y))) = P2. a(E,p(K(x),p(E,y))) = P2. a(E,p(K(x),p(A,y))) = P2. a(E,p(p(P1,x),K(y))) = P2. a(E,p(K(x),p(P1,y))) = P2. a(E,p(p(x,E),K(y))) = P2. a(E,p(p(x,A),K(y))) = P2. a(E,p(K(x),p(y,E))) = P2. a(E,p(K(x),p(y,A))) = P2. a(E,p(p(x,P1),K(y))) = P2. a(E,p(K(x),p(y,P1))) = P2. a(E,a(p(A,K(K(x))),A)) = P2. a(E,a(p(P1,K(K(E))),P2)) = P2. a(E,a(p(P2,K(K(E))),P2)) = P2. a(E,K(f(P1,P2))) = P2. a(E,K(f(P2,P1))) = P2. a(a(A,K(A)),P1) = a(P1,A). a(a(p(A,P2),K(A)),P1) = A. a(E,a(A,p(P2,p(x,E)))) = P2. a(E,a(A,p(P2,p(E,x)))) = P2. a(E,a(A,p(P1,A))) = P2. a(E,a(A,p(P1,K(x)))) = P2. a(E,a(p(A,P1),P1)) = P2. a(E,a(p(K(K(P1)),P1),P2)) = P2. a(E,a(p(K(K(P1)),P2),P2)) = P2. a(E,a(p(A,P2),P1)) = P2. a(E,a(A,p(p(P1,P2),A))) = P2. a(E,a(p(K(K(A)),A),E)) = P2. a(E,a(p(K(K(E)),A),E)) = P2. a(E,a(p(K(K(E)),P1),P2)) = P2. a(E,a(p(K(K(E)),P2),P2)) = P2. a(E,a(p(K(K(x)),A),A)) = P2. a(E,p(P2,p(x,p(P2,y)))) = P2. a(E,p(p(x,p(P2,y)),P2)) = P2. a(E,p(P2,p(p(P2,x),y))) = P2. a(E,p(p(p(P2,x),y),P2)) = P2. a(E,p(P1,p(x,p(P1,y)))) = P2. a(E,p(p(x,p(P1,y)),P1)) = P2. a(E,p(E,p(x,p(E,y)))) = P2. a(E,p(p(x,p(E,y)),E)) = P2. a(E,p(p(x,p(A,y)),A)) = P2. a(E,p(A,p(x,p(A,y)))) = P2. a(E,p(P1,p(p(P1,x),y))) = P2. a(E,p(p(p(P1,x),y),P1)) = P2. a(E,p(p(p(A,x),y),A)) = P2. a(E,p(A,p(p(A,x),y))) = P2. a(E,p(E,p(p(E,x),y))) = P2. a(E,p(p(p(E,x),y),E)) = P2. a(E,p(p(E,x),p(P1,y))) = P2. a(E,p(p(P1,x),p(E,y))) = P2. a(E,p(P2,p(x,p(y,P2)))) = P2. a(E,p(p(x,p(y,P2)),P2)) = P2. a(E,p(P2,p(p(x,P2),y))) = P2. a(E,p(p(p(x,P2),y),P2)) = P2. a(E,p(p(x,p(y,A)),A)) = P2. a(E,p(A,p(x,p(y,A)))) = P2. a(E,p(p(p(x,A),y),A)) = P2. a(E,p(A,p(p(x,A),y))) = P2. a(E,p(E,p(p(x,E),y))) = P2. a(E,p(p(p(x,E),y),E)) = P2. a(E,p(P1,p(x,p(y,P1)))) = P2. a(E,p(p(x,p(y,P1)),P1)) = P2. a(E,p(P1,p(p(x,P1),y))) = P2. a(E,p(p(p(x,P1),y),P1)) = P2. a(E,a(p(A,P1),K(E))) = P2. a(E,a(p(A,P2),K(E))) = P2. a(E,a(p(P1,A),K(E))) = P2. a(E,a(p(P2,A),K(E))) = P2. a(E,a(p(K(E),P1),A)) = P2. a(E,a(p(P1,K(E)),A)) = P2. a(E,a(p(A,p(P1,x)),P1)) = P2. a(E,a(p(p(P1,x),A),P1)) = P2. a(E,a(p(K(P1),P1),A)) = P2. a(E,a(p(P1,K(P1)),A)) = P2. a(E,a(p(K(P1),P2),A)) = P2. a(E,a(p(P2,K(P1)),A)) = P2. a(E,a(p(A,p(P2,x)),P1)) = P2. a(E,a(p(p(P2,x),A),P1)) = P2. a(E,p(p(x,E),p(y,P1))) = P2. a(E,p(p(x,P1),p(y,E))) = P2. a(E,p(p(x,p(y,E)),E)) = P2. a(E,p(E,p(x,p(y,E)))) = P2. a(E,a(p(K(P2),P1),P1)) = P2. a(E,a(p(P1,K(P2)),P1)) = P2. a(E,a(p(K(P1),P1),P2)) = P2. a(E,a(p(P1,K(P1)),P2)) = P2. a(E,a(p(K(P2),P2),P1)) = P2. a(E,a(p(P2,K(P2)),P1)) = P2. a(E,a(p(K(P1),P2),P2)) = P2. a(E,a(p(P2,K(P1)),P2)) = P2. a(E,a(p(p(x,P1),A),P1)) = P2. a(E,a(p(p(x,P2),A),P1)) = P2. a(E,a(A,p(p(E,x),P1))) = P2. a(E,a(A,p(p(x,E),P1))) = P2. a(E,a(p(A,p(x,P1)),P1)) = P2. a(E,a(p(A,p(x,P2)),P1)) = P2. a(E,a(A,p(P1,p(E,x)))) = P2. a(E,a(A,p(P1,p(x,E)))) = P2. a(E,a(p(K(P2),P1),P2)) = P2. a(E,a(p(p(P1,P2),P1),P2)) = P2. a(E,a(p(P1,K(P2)),P2)) = P2. a(E,a(p(P1,p(P1,P2)),P2)) = P2. a(E,a(a(A,p(P2,E)),E)) = P2. a(E,a(a(A,p(E,P2)),E)) = P2. a(E,a(a(A,p(P1,E)),E)) = P2. a(E,a(a(A,p(E,P1)),E)) = P2. a(E,a(p(K(P2),P2),P2)) = P2. a(E,a(p(P2,K(P2)),P2)) = P2. a(E,a(p(p(P1,P2),P2),P2)) = P2. a(E,a(p(P2,p(P1,P2)),P2)) = P2. a(E,a(p(A,P2),A)) = P2. a(E,a(p(P2,A),A)) = P2. a(E,a(p(A,P1),K(K(P2)))) = P2. a(E,a(p(P1,A),K(K(P2)))) = P2. a(E,a(p(A,P2),K(K(P2)))) = P2. a(E,a(p(P2,A),K(K(P2)))) = P2. a(E,a(p(A,P1),p(E,x))) = P2. a(E,a(p(P1,A),p(E,x))) = P2. a(E,p(P2,p(K(x),y))) = P2. a(E,p(p(K(x),y),P2)) = P2. a(E,p(E,p(K(K(x)),y))) = P2. a(E,p(p(K(K(x)),y),E)) = P2. a(E,a(p(P1,K(A)),A)) = P2. a(E,a(p(K(A),P1),A)) = P2. a(E,a(p(P1,p(P1,P2)),A)) = P2. a(E,a(p(p(P1,P2),P1),A)) = P2. a(E,a(p(P1,A),A)) = P2. a(E,a(p(A,P1),A)) = P2. a(E,a(p(P2,K(E)),A)) = P2. a(E,a(p(K(E),P2),A)) = P2. a(E,a(p(P2,K(A)),A)) = P2. a(E,a(p(K(A),P2),A)) = P2. a(E,a(p(P2,p(P1,P2)),A)) = P2. a(E,a(p(p(P1,P2),P2),A)) = P2. a(E,p(E,p(x,K(K(y))))) = P2. a(E,p(p(x,K(K(y))),E)) = P2. a(E,p(P2,p(x,K(y)))) = P2. a(E,p(p(x,K(y)),P2)) = P2. a(E,a(A,p(p(A,x),P1))) = P2. a(E,a(A,p(P1,p(A,x)))) = P2. a(E,K(a(p(P1,A),A))) = P2. a(E,K(a(p(A,P1),A))) = P2. a(E,K(a(p(P2,A),A))) = P2. a(E,K(a(p(A,P2),A))) = P2. a(E,a(A,p(p(x,A),P1))) = P2. a(E,a(A,p(P1,p(x,A)))) = P2. a(E,a(p(P1,p(x,x)),P1)) = P2. a(E,a(p(p(x,x),P1),P1)) = P2. a(E,a(p(A,p(P1,x)),A)) = P2. a(E,a(p(A,p(P2,x)),A)) = P2. a(E,a(p(p(P1,x),A),A)) = P2. a(E,a(p(p(P2,x),A),A)) = P2. a(E,a(A,p(A,p(P2,x)))) = P2. a(E,a(A,p(p(P2,x),A))) = P2. a(E,p(P1,p(p(A,x),y))) = P2. a(E,p(p(p(A,x),y),P1)) = P2. a(E,p(P2,p(p(A,x),y))) = P2. a(E,p(p(p(A,x),y),P2)) = P2. a(E,p(P1,p(x,p(A,y)))) = P2. a(E,p(p(x,p(A,y)),P1)) = P2. a(E,p(P2,p(x,p(A,y)))) = P2. a(E,p(p(x,p(A,y)),P2)) = P2. a(E,p(P1,p(p(x,A),y))) = P2. a(E,p(p(p(x,A),y),P1)) = P2. a(E,p(P2,p(p(x,A),y))) = P2. a(E,p(p(p(x,A),y),P2)) = P2. a(E,p(P1,p(x,p(y,A)))) = P2. a(E,p(p(x,p(y,A)),P1)) = P2. a(E,p(P2,p(x,p(y,A)))) = P2. a(E,p(p(x,p(y,A)),P2)) = P2. a(E,a(p(K(K(P1)),P2),A)) = P2. a(E,a(p(P2,K(K(P1))),A)) = P2. a(E,a(p(K(K(A)),P1),A)) = P2. a(E,a(p(K(K(A)),P2),A)) = P2. a(E,a(p(P1,K(K(A))),A)) = P2. a(E,a(p(P2,K(K(A))),A)) = P2. a(E,a(p(K(K(P1)),P1),A)) = P2. a(E,a(p(P1,K(K(P1))),A)) = P2. a(E,a(p(K(K(E)),P1),A)) = P2. a(E,a(p(K(K(E)),P2),A)) = P2. a(E,a(p(P1,K(K(E))),A)) = P2. a(E,a(p(P2,K(K(E))),A)) = P2. a(E,a(p(K(K(A)),P2),P2)) = P2. a(E,a(p(K(K(A)),P1),P2)) = P2. a(E,a(p(P2,K(K(A))),P2)) = P2. a(E,a(p(P1,K(K(A))),P2)) = P2. a(E,a(p(P1,K(K(x))),P1)) = P2. a(E,a(p(P2,K(K(x))),P1)) = P2. a(E,a(p(P2,p(A,A)),P1)) = P2. a(E,a(p(K(K(x)),P1),P1)) = P2. a(E,a(p(K(K(x)),P2),P1)) = P2. a(E,a(p(p(A,A),P2),P1)) = P2. a(E,p(p(x,P2),p(y,A))) = P2. a(E,p(p(x,A),p(y,P2))) = P2. a(E,p(p(x,P2),p(y,E))) = P2. a(E,p(p(x,E),p(y,P2))) = P2. a(E,p(p(P2,x),p(A,y))) = P2. a(E,p(p(A,x),p(P2,y))) = P2. a(E,p(p(P2,x),p(E,y))) = P2. a(E,p(p(E,x),p(P2,y))) = P2. a(E,p(p(x,p(y,y)),A)) = P2. a(E,p(A,p(x,p(y,y)))) = P2. a(E,p(p(x,p(y,y)),P1)) = P2. a(E,p(P1,p(x,p(y,y)))) = P2. a(E,p(p(x,p(y,y)),P2)) = P2. a(E,p(P2,p(x,p(y,y)))) = P2. a(E,p(E,p(x,p(y,y)))) = P2. a(E,p(p(x,p(y,y)),E)) = P2. a(E,a(A,p(E,p(P1,P2)))) = P2. a(E,a(A,p(p(P1,P2),E))) = P2. a(E,a(p(P2,E),f(P2,E))) = P2. a(E,a(p(E,P2),f(P2,E))) = P2. a(E,a(p(P2,E),f(E,P2))) = P2. a(E,a(p(E,P2),f(E,P2))) = P2. a(E,a(A,p(E,p(P2,P1)))) = P2. a(E,a(A,p(p(P2,P1),E))) = P2. a(E,a(p(A,P2),f(P2,A))) = P2. a(E,a(p(P2,A),f(P2,A))) = P2. a(E,a(p(A,P2),f(A,P2))) = P2. a(E,a(p(P2,A),f(A,P2))) = P2. a(E,a(p(A,P2),p(x,E))) = P2. a(E,a(p(P2,A),p(x,E))) = P2. a(E,p(p(K(x),y),P1)) = P2. a(E,p(P1,p(K(x),y))) = P2. a(E,p(p(x,K(y)),P1)) = P2. a(E,p(P1,p(x,K(y)))) = P2. a(E,p(A,p(K(x),y))) = P2. a(E,p(p(K(x),y),A)) = P2. a(E,p(p(A,x),p(P1,y))) = P2. a(E,p(p(P1,x),p(A,y))) = P2. a(E,p(A,p(x,K(y)))) = P2. a(E,p(p(x,K(y)),A)) = P2. a(E,p(p(x,A),p(y,P1))) = P2. a(E,p(p(x,P1),p(y,A))) = P2. a(E,p(A,p(x,p(y,P1)))) = P2. a(E,p(A,p(x,p(y,E)))) = P2. a(E,p(A,p(x,p(E,y)))) = P2. a(E,p(A,p(x,p(P1,y)))) = P2. a(E,p(A,p(x,p(P2,y)))) = P2. a(E,p(A,p(x,p(y,P2)))) = P2. a(E,p(p(x,p(y,P1)),A)) = P2. a(E,p(p(x,p(y,E)),A)) = P2. a(E,p(p(x,p(E,y)),A)) = P2. a(E,p(p(x,p(P1,y)),A)) = P2. a(E,p(p(x,p(P2,y)),A)) = P2. a(E,p(p(x,p(y,P2)),A)) = P2. a(E,a(A,p(K(A),A))) = P2. a(E,a(A,p(K(E),A))) = P2. a(E,a(A,p(p(x,A),A))) = P2. a(E,a(A,p(p(A,x),A))) = P2. a(E,a(A,p(E,A))) = P2. a(E,a(A,p(A,K(A)))) = P2. a(E,a(A,p(A,K(E)))) = P2. a(E,a(A,p(p(x,P1),A))) = P2. a(E,a(p(p(x,A),A),A)) = P2. a(E,a(A,p(A,p(x,A)))) = P2. a(E,a(A,p(A,p(A,x)))) = P2. a(E,a(A,p(A,p(x,P1)))) = P2. a(E,a(A,p(A,E))) = P2. a(E,a(p(p(A,x),A),A)) = P2. a(E,a(p(A,p(x,A)),A)) = P2. a(E,a(p(A,p(A,x)),A)) = P2. a(E,a(p(p(x,P2),A),A)) = P2. a(E,a(p(A,p(x,P2)),A)) = P2. a(E,p(p(p(P1,x),y),A)) = P2. a(E,p(p(p(x,x),y),A)) = P2. a(E,p(p(p(P2,x),y),A)) = P2. a(E,p(p(p(x,P2),y),A)) = P2. a(E,p(p(p(x,P1),y),A)) = P2. a(E,p(A,p(p(P1,x),y))) = P2. a(E,p(A,p(p(x,x),y))) = P2. a(E,p(A,p(p(P2,x),y))) = P2. a(E,p(A,p(p(x,P2),y))) = P2. a(E,p(A,p(p(x,P1),y))) = P2. a(E,p(P1,p(p(x,x),y))) = P2. a(E,p(p(p(x,x),y),P1)) = P2. a(E,p(P2,p(p(x,x),y))) = P2. a(E,p(p(p(x,x),y),P2)) = P2. a(E,p(E,p(p(x,x),y))) = P2. a(E,p(p(p(x,x),y),E)) = P2. a(E,K(A)) = P2. a(E,K(K(a(A,A)))) = P2. a(E,K(a(a(A,A),x))) = P2. a(p(E,E),K(A)) = p(P2,P2). a(E,K(a(a(A,K(A)),A))) = P2. a(E,p(p(x,A),p(y,E))) = P2. a(E,p(p(x,E),p(y,A))) = P2. a(E,p(p(A,x),p(E,y))) = P2. a(E,p(p(E,x),p(A,y))) = P2. a(p(K(x),E),K(A)) = p(x,P2). a(a(p(P1,E),K(A)),A) = A. a(p(E,K(x)),K(A)) = p(P2,x). a(E,a(p(E,P1),K(A))) = P2. a(E,a(p(E,P2),K(A))) = P2. a(E,a(p(P1,E),K(A))) = P2. a(E,a(p(P2,E),K(A))) = P2. a(a(A,a(A,E)),a(A,A)) = P2. a(E,p(p(p(E,x),y),A)) = P2. a(E,p(p(p(x,E),y),A)) = P2. a(E,p(A,p(p(E,x),y))) = P2. a(E,p(A,p(p(x,E),y))) = P2. a(E,K(E)) = P2. a(p(E,E),K(E)) = p(P2,P2). a(p(K(x),E),K(E)) = p(x,P2). a(a(p(P1,E),K(E)),E) = E. a(p(E,K(x)),K(E)) = p(P2,x). a(E,a(p(E,P1),K(E))) = P2. a(E,a(p(E,P2),K(E))) = P2. a(E,a(p(P1,E),K(E))) = P2. a(E,a(p(P2,E),K(E))) = P2. a(E,K(P1)) = P2. a(E,K(P2)) = P2. a(E,K(a(A,A))) = P2. a(E,K(a(A,K(A)))) = P2. a(p(E,E),K(P1)) = p(P2,P2). a(E,a(p(P2,E),K(P1))) = P2. a(E,a(p(E,P2),K(P1))) = P2. a(E,a(p(P1,E),K(P1))) = P2. a(E,a(p(E,P1),K(P1))) = P2. a(p(E,A),K(P1)) = p(P2,P1). a(p(A,E),K(P1)) = p(P1,P2). a(p(K(x),E),K(P1)) = p(x,P2). a(p(E,K(x)),K(P1)) = p(P2,x). a(E,p(p(x,p(y,A)),E)) = P2. a(E,p(E,p(x,p(y,A)))) = P2. a(E,p(p(p(A,x),y),E)) = P2. a(E,p(E,p(p(A,x),y))) = P2. a(E,p(p(p(x,A),y),E)) = P2. a(E,p(E,p(p(x,A),y))) = P2. a(E,p(p(x,p(A,y)),E)) = P2. a(E,p(E,p(x,p(A,y)))) = P2. a(E,a(p(K(P2),P1),E)) = P2. a(E,a(p(P1,K(P2)),E)) = P2. a(E,a(p(K(P2),P2),E)) = P2. a(E,a(p(P2,K(P2)),E)) = P2. a(E,K(K(P2))) = P2. a(p(E,E),K(K(P2))) = p(P2,P2). a(E,a(p(E,P1),K(K(P2)))) = P2. a(E,a(p(E,P2),K(K(P2)))) = P2. a(E,a(p(P1,E),K(K(P2)))) = P2. a(E,a(p(P2,E),K(K(P2)))) = P2. a(E,K(a(a(A,E),P1))) = P2. a(E,K(a(a(A,E),P2))) = P2. a(E,a(p(P2,K(A)),E)) = P2. a(E,a(p(P1,K(K(P2))),E)) = P2. a(E,a(p(P2,K(K(P2))),E)) = P2. a(E,a(p(K(K(P2)),P1),E)) = P2. a(E,a(p(K(K(P2)),P2),E)) = P2. a(E,a(p(K(A),P2),E)) = P2. a(E,a(p(K(E),P2),E)) = P2. a(E,a(p(p(P1,P2),P2),E)) = P2. a(E,a(p(P2,K(E)),E)) = P2. a(E,a(p(P2,p(P1,P2)),E)) = P2. a(E,a(a(p(A,P1),A),P1)) = P2. a(E,a(a(p(P1,A),A),P1)) = P2. a(E,a(p(P1,K(A)),E)) = P2. a(E,a(p(K(A),P1),E)) = P2. a(E,a(p(K(E),P1),E)) = P2. a(E,a(p(p(P1,P2),P1),E)) = P2. a(E,a(p(P1,K(E)),E)) = P2. a(E,a(p(P1,p(P1,P2)),E)) = P2. ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/demods2 ================================================ % from x4.out a(K(x),y) = x # label(constant_functions). a(P1,p(x,y)) = x # label(projection_1). a(P2,p(x,y)) = y # label(projection_2). a(E,p(x,x)) = P1 # label(equality_1). a(A,a(A,a(A,x))) = a(A,x) # label(2_1_a). a(A,a(A,K(x))) = K(x) # label(2_1_b). a(A,K(K(x))) = K(K(x)) # label(2_1_c). K(p(x,y)) = p(K(x),K(y)) # label(2_2_b0). K(a(P1,x)) = a(P1,K(x)) # label(2_2_b1). K(a(P2,x)) = a(P2,K(x)) # label(2_2_b2). a(a(P1,x),y) = a(P1,a(x,y)). a(a(P2,x),y) = a(P2,a(x,y)). a(A,P1) = K(P1) # label(2_3_b1a). a(A,K(P1)) = P1 # label(2_3_b1b). a(A,P2) = K(P2) # label(2_3_b2a). a(A,K(P2)) = P2 # label(2_3_b2b). a(A,p(P1,P2)) = p(K(P1),K(P2)). a(A,p(K(P1),K(P2))) = p(P1,P2). a(a(p(P1,K(P2)),K(x)),x) = x. a(p(P1,P2),x) = x. a(E,a(p(x,x),y)) = P1. a(a(a(A,A),x),K(y)) = K(y). a(p(K(x),K(y)),z) = p(x,y). a(P1,a(p(x,y),z)) = a(x,z). a(P2,a(p(x,y),z)) = a(y,z). a(P2,a(A,p(x,y))) = a(A,y). a(p(K(x),A),P1) = p(x,K(P1)). a(p(A,K(x)),P1) = p(K(P1),x). a(p(K(x),A),K(P1)) = p(x,P1). a(p(A,K(x)),K(P1)) = p(P1,x). a(p(K(x),A),P2) = p(x,K(P2)). a(p(A,K(x)),P2) = p(K(P2),x). a(p(K(x),A),K(P2)) = p(x,P2). a(p(A,K(x)),K(P2)) = p(P2,x). a(E,a(A,p(x,x))) = P1. a(E,a(a(p(x,x),y),z)) = P1. a(E,a(A,a(p(x,x),y))) = P1. a(E,a(a(A,p(x,x)),y)) = P1. a(E,a(A,a(A,p(x,x)))) = P1. a(a(a(A,A),P1),p(P1,P2)) = P1. a(a(a(A,A),P2),p(P1,P2)) = P2. a(A,p(P1,P1)) = p(K(P1),K(P1)). a(A,p(P1,K(P1))) = p(K(P1),P1). a(A,p(P1,K(P2))) = p(K(P1),P2). a(A,p(K(P1),P1)) = p(P1,K(P1)). a(A,p(K(P1),K(P1))) = p(P1,P1). a(A,p(K(P1),P2)) = p(P1,K(P2)). a(a(a(A,A),E),p(P1,P2)) = P2. a(E,p(P1,P2)) = P2. a(A,p(P2,P1)) = p(K(P2),K(P1)). a(A,p(P2,K(P1))) = p(K(P2),P1). a(A,p(P2,P2)) = p(K(P2),K(P2)). a(A,p(P2,K(P2))) = p(K(P2),P2). a(A,p(K(P2),P1)) = p(P2,K(P1)). a(A,p(K(P2),K(P1))) = p(P2,P1). a(A,p(K(P2),P2)) = p(P2,K(P2)). a(A,p(K(P2),K(P2))) = p(P2,P2). a(E,p(P2,P1)) = P2. a(E,f(P1,P2)) = P2. a(E,f(P2,P1)) = P2. a(a(A,K(E)),p(x,x)) = K(P1). a(p(E,E),p(x,x)) = p(P1,P1). a(p(E,E),p(P1,P2)) = p(P2,P2). a(p(E,E),p(P2,P1)) = p(P2,P2). a(p(E,E),f(P1,P2)) = p(P2,P2). a(p(E,E),f(P2,P1)) = p(P2,P2). a(P2,a(A,a(A,p(x,P1)))) = P1. a(E,K(a(p(x,x),y))) = P1. a(E,K(a(A,p(x,x)))) = P1. a(P2,a(A,a(p(x,A),P1))) = P1. a(P2,a(A,a(A,p(x,P2)))) = P2. a(P2,a(A,a(p(x,A),P2))) = P2. a(E,K(K(a(p(x,x),y)))) = P1. a(E,K(K(a(A,p(x,x))))) = P1. a(a(p(P1,A),K(P2)),P2) = P2. a(p(P2,P2),p(x,x)) = p(x,x). a(p(P2,E),p(P1,P2)) = p(P2,P2). a(p(P2,P2),p(x,P1)) = p(P1,P1). a(p(P2,P2),p(x,P2)) = p(P2,P2). a(p(P1,P1),p(P1,x)) = p(P1,P1). a(p(P1,P1),p(P2,x)) = p(P2,P2). a(p(P1,P1),p(x,x)) = p(x,x). a(P1,a(A,x)) = a(A,a(P1,x)). a(A,a(P1,P1)) = a(P1,K(P1)). a(A,a(P1,K(P1))) = a(P1,P1). a(A,a(P1,P2)) = a(P1,K(P2)). a(A,a(P1,K(P2))) = a(P1,P2). a(a(A,a(A,E)),p(x,x)) = P1. a(p(P1,E),p(x,x)) = p(x,P1). a(p(P1,E),p(P1,P2)) = p(P1,P2). a(p(P1,E),p(P2,P1)) = p(P2,P2). a(p(P2,P1),p(x,y)) = p(y,x). a(p(P2,E),p(P2,P1)) = p(P1,P2). a(p(E,P2),p(P2,P1)) = p(P2,P1). a(p(E,P1),p(x,x)) = p(P1,x). a(p(E,P2),p(x,x)) = p(P1,x). a(a(p(A,P2),K(P1)),P1) = P1. a(A,a(P2,x)) = a(P2,a(A,x)). a(E,p(p(P1,P2),p(x,x))) = P2. a(E,a(p(P2,P1),f(P1,P2))) = P2. a(E,a(p(P2,P1),f(P2,P1))) = P2. a(E,p(p(x,x),p(P1,P2))) = P2. a(E,a(p(E,P1),p(x,P2))) = P2. a(E,a(p(P1,E),p(x,P2))) = P2. a(p(P2,P2),p(x,E)) = p(E,E). a(p(P1,P1),p(E,x)) = p(E,E). a(a(A,K(x)),p(P1,P2)) = x. a(p(P2,P2),p(x,A)) = p(A,A). a(p(P1,P1),p(A,x)) = p(A,A). a(E,p(A,p(x,x))) = P2. a(E,p(p(P2,P1),p(x,x))) = P2. a(E,p(f(P1,P2),p(x,x))) = P2. a(E,p(f(P2,P1),p(x,x))) = P2. a(E,p(p(E,P1),p(x,x))) = P2. a(E,p(p(E,P2),p(x,x))) = P2. a(E,p(p(P1,E),p(x,x))) = P2. a(E,p(p(P2,E),p(x,x))) = P2. a(E,p(p(P1,A),p(x,x))) = P2. a(E,p(p(A,P1),p(x,x))) = P2. a(E,p(p(P2,A),p(x,x))) = P2. a(E,p(p(A,P2),p(x,x))) = P2. a(E,p(P1,p(x,x))) = P2. a(E,p(P2,p(x,x))) = P2. a(E,a(A,p(A,p(x,x)))) = P2. a(E,a(p(A,p(x,x)),A)) = P2. a(E,p(E,p(x,x))) = P2. a(E,p(K(P2),p(x,x))) = P2. a(E,a(p(A,p(x,x)),P2)) = P2. a(E,a(A,p(P2,p(x,x)))) = P2. a(E,p(p(x,x),A)) = P2. a(E,p(p(x,x),p(P2,A))) = P2. a(E,p(p(x,x),p(A,P2))) = P2. a(E,p(p(x,x),p(P1,A))) = P2. a(E,p(p(x,x),P1)) = P2. a(E,p(p(x,x),P2)) = P2. a(E,p(p(x,x),p(A,P1))) = P2. a(E,p(p(x,x),p(E,P1))) = P2. a(E,p(p(x,x),p(P1,E))) = P2. a(E,p(p(x,x),p(E,P2))) = P2. a(E,p(p(x,x),p(P2,E))) = P2. a(E,p(p(x,x),f(P1,P2))) = P2. a(E,p(p(x,x),f(P2,P1))) = P2. a(E,p(p(x,x),p(P2,P1))) = P2. a(E,p(p(x,x),p(E,A))) = P2. a(E,p(p(x,x),K(P2))) = P2. a(E,p(p(x,x),E)) = P2. a(E,a(p(p(x,x),A),P2)) = P2. a(E,a(A,p(p(x,x),P2))) = P2. a(E,p(p(A,E),p(x,x))) = P2. a(E,p(p(x,x),p(A,E))) = P2. a(E,p(K(K(P2)),p(x,x))) = P2. a(E,p(p(x,x),K(K(P2)))) = P2. a(E,p(K(E),p(x,x))) = P2. a(E,p(K(P1),p(x,x))) = P2. a(E,p(K(A),p(x,x))) = P2. a(E,a(A,p(E,p(x,x)))) = P2. a(E,a(p(A,p(x,x)),E)) = P2. a(E,p(p(x,x),K(E))) = P2. a(E,p(p(x,x),K(P1))) = P2. a(E,p(p(x,x),K(A))) = P2. a(E,a(p(A,p(x,x)),P1)) = P2. a(E,a(A,p(P1,p(x,x)))) = P2. a(E,a(p(p(x,x),A),E)) = P2. a(E,a(A,p(p(x,x),E))) = P2. a(E,a(p(p(x,x),A),P1)) = P2. a(E,a(A,p(p(x,x),P1))) = P2. a(E,a(p(p(x,x),A),A)) = P2. a(E,a(A,p(p(x,x),A))) = P2. a(E,a(p(p(x,x),P2),A)) = P2. a(E,a(p(P2,p(x,x)),A)) = P2. a(E,p(p(E,A),p(x,x))) = P2. a(a(A,K(A)),P2) = a(P2,A). a(E,p(P2,E)) = P2. a(E,p(P2,A)) = P2. a(E,p(E,P2)) = P2. a(E,p(A,P2)) = P2. a(p(E,E),p(P2,E)) = p(P2,P2). a(p(P1,E),p(P2,E)) = p(P2,P2). a(p(P2,E),p(P2,E)) = p(E,P2). a(p(P1,E),p(E,P2)) = p(E,P2). a(p(P2,E),p(E,P2)) = p(P2,P2). a(p(E,E),p(P2,A)) = p(P2,P2). a(p(P1,E),p(P2,A)) = p(P2,P2). a(p(P2,E),p(P2,A)) = p(A,P2). a(p(P1,E),p(A,P2)) = p(A,P2). a(p(P2,E),p(A,P2)) = p(P2,P2). a(E,p(E,K(x))) = P2. a(E,p(A,K(x))) = P2. a(E,p(P1,K(x))) = P2. a(E,p(P2,K(x))) = P2. a(E,p(K(x),P2)) = P2. a(E,a(p(A,P2),K(P1))) = P2. a(E,a(p(A,P1),K(P1))) = P2. a(E,a(p(A,P2),K(P2))) = P2. a(E,a(p(A,P1),K(P2))) = P2. a(E,a(p(K(E),P1),K(x))) = P2. a(E,a(p(K(E),P2),K(x))) = P2. a(E,p(E,p(K(x),K(y)))) = P2. a(E,a(p(K(A),P1),K(x))) = P2. a(E,a(p(K(A),P2),K(x))) = P2. a(E,a(p(K(P1),P1),K(x))) = P2. a(E,p(K(x),E)) = P2. a(E,p(K(x),A)) = P2. a(E,p(K(x),P1)) = P2. a(E,a(p(P2,A),K(P1))) = P2. a(E,a(p(P1,A),K(P1))) = P2. a(E,a(p(K(P1),P2),K(x))) = P2. a(E,a(p(K(P2),P1),K(x))) = P2. a(E,a(p(K(P2),P2),K(x))) = P2. a(E,a(p(P1,K(P2)),K(x))) = P2. a(E,a(p(P1,A),K(P2))) = P2. a(E,a(p(P2,K(P2)),K(x))) = P2. a(E,a(p(P2,A),K(P2))) = P2. a(E,a(p(P1,K(E)),K(x))) = P2. a(E,p(K(P1),K(P2))) = P2. a(E,p(K(P2),K(P1))) = P2. a(E,a(p(P2,K(E)),K(x))) = P2. a(E,p(p(K(x),K(y)),E)) = P2. a(E,a(p(P1,K(A)),K(x))) = P2. a(E,a(p(P2,K(A)),K(x))) = P2. a(E,a(p(P1,K(P1)),K(x))) = P2. a(E,a(p(P2,K(P1)),K(x))) = P2. a(E,p(K(P2),K(E))) = P2. a(E,p(K(E),K(P2))) = P2. a(E,p(K(A),K(P2))) = P2. a(E,p(K(P2),K(A))) = P2. a(E,p(A,P1)) = P2. a(E,p(P1,A)) = P2. a(p(E,E),p(A,P1)) = p(P2,P2). a(p(P1,E),p(A,P1)) = p(A,P2). a(p(P2,E),p(A,P1)) = p(P1,P2). a(p(E,P1),p(A,P1)) = p(P2,A). a(p(E,P2),p(A,P1)) = p(P2,P1). a(E,p(p(P2,x),K(y))) = P2. a(E,p(K(x),p(P2,y))) = P2. a(E,p(E,P1)) = P2. a(E,p(P1,E)) = P2. a(p(E,E),p(P1,A)) = p(P2,P2). a(p(P1,E),p(P1,A)) = p(P1,P2). a(E,p(p(x,P2),K(y))) = P2. a(E,p(K(x),p(y,P2))) = P2. a(p(P2,E),p(P1,A)) = p(A,P2). a(p(E,P1),p(P1,A)) = p(P2,P1). a(p(E,P2),p(P1,A)) = p(P2,A). a(p(E,E),p(E,P1)) = p(P2,P2). a(p(P1,E),p(E,P1)) = p(E,P2). a(p(P2,E),p(E,P1)) = p(P1,P2). a(p(E,P1),p(E,P1)) = p(P2,E). a(p(E,P2),p(E,P1)) = p(P2,P1). a(p(E,E),p(P1,E)) = p(P2,P2). a(p(P1,E),p(P1,E)) = p(P1,P2). a(p(P2,E),p(P1,E)) = p(E,P2). a(p(E,P1),p(P1,E)) = p(P2,P1). a(p(E,P2),p(P1,E)) = p(P2,E). a(E,a(A,p(K(P2),A))) = P2. a(E,a(a(A,p(P2,A)),x)) = P2. a(E,a(A,p(K(P2),K(E)))) = P2. a(E,a(A,a(A,p(P2,E)))) = P2. a(E,a(A,a(A,p(P2,A)))) = P2. a(E,a(A,p(A,K(P2)))) = P2. a(E,a(a(A,p(A,P2)),x)) = P2. a(E,a(A,p(K(E),K(P2)))) = P2. a(E,a(A,a(A,p(E,P2)))) = P2. a(E,p(p(x,P2),P1)) = P2. a(E,p(p(P2,x),P1)) = P2. a(E,a(A,p(P2,A))) = P2. a(E,a(A,p(A,P2))) = P2. a(E,p(P1,p(x,P2))) = P2. a(E,p(P1,p(P2,x))) = P2. a(E,a(A,p(A,K(P1)))) = P2. a(E,a(A,p(E,K(P1)))) = P2. a(E,p(p(x,P1),P2)) = P2. a(E,p(p(P1,x),P2)) = P2. a(E,p(P2,p(x,P1))) = P2. a(E,p(P2,p(P1,x))) = P2. a(E,a(A,p(K(P1),A))) = P2. a(E,a(A,p(K(P1),E))) = P2. a(E,a(A,a(A,p(A,P2)))) = P2. a(E,a(a(A,p(A,P1)),x)) = P2. a(E,a(A,a(A,p(A,P1)))) = P2. a(E,a(A,a(A,p(E,P1)))) = P2. a(E,a(a(A,p(P1,A)),x)) = P2. a(E,a(A,a(A,p(P1,A)))) = P2. a(E,a(A,a(A,p(P1,E)))) = P2. a(E,p(K(P2),p(x,K(P1)))) = P2. a(E,p(p(x,K(P1)),K(P2))) = P2. a(E,p(K(P2),p(K(P1),x))) = P2. a(E,p(p(K(P1),x),K(P2))) = P2. a(E,p(A,E)) = P2. a(E,p(E,A)) = P2. a(E,p(p(P1,x),E)) = P2. a(E,p(p(x,P1),E)) = P2. a(E,p(E,p(P1,x))) = P2. a(E,p(E,p(x,P1))) = P2. a(E,p(P2,p(x,E))) = P2. a(E,p(p(x,E),P2)) = P2. a(E,p(P1,p(x,E))) = P2. a(E,p(p(x,E),P1)) = P2. a(E,a(p(A,K(E)),A)) = P2. a(E,a(p(K(E),A),A)) = P2. a(E,p(p(P2,x),E)) = P2. a(E,p(p(x,P2),E)) = P2. a(E,p(E,p(P2,x))) = P2. a(E,p(E,p(x,P2))) = P2. a(E,p(P2,p(E,x))) = P2. a(E,p(p(E,x),P2)) = P2. a(E,p(P1,p(E,x))) = P2. a(E,p(p(E,x),P1)) = P2. a(E,p(p(K(P1),x),E)) = P2. a(E,p(p(x,K(P1)),E)) = P2. a(E,p(p(K(E),x),E)) = P2. a(E,p(p(x,K(E)),E)) = P2. a(E,p(E,p(K(P1),x))) = P2. a(E,p(E,p(x,K(P1)))) = P2. a(E,p(E,p(K(E),x))) = P2. a(E,p(E,p(x,K(E)))) = P2. a(E,a(p(A,K(E)),E)) = P2. a(E,a(p(K(E),A),E)) = P2. a(E,p(K(P2),p(x,K(E)))) = P2. a(E,p(p(x,K(E)),K(P2))) = P2. a(E,p(K(P2),p(K(E),x))) = P2. a(E,p(p(K(E),x),K(P2))) = P2. a(E,a(p(A,p(P1,P2)),E)) = P2. a(E,a(p(p(P1,P2),A),E)) = P2. a(E,p(K(P2),K(K(x)))) = P2. a(E,p(K(K(x)),K(P2))) = P2. a(E,a(A,p(K(x),P2))) = P2. a(E,a(A,p(K(P2),K(A)))) = P2. a(E,a(A,p(K(A),K(P2)))) = P2. a(E,a(A,p(K(P1),K(A)))) = P2. a(E,a(A,p(K(A),K(P1)))) = P2. a(E,a(p(A,E),p(P2,A))) = P2. a(E,a(p(A,E),p(A,P2))) = P2. a(E,a(A,p(P2,K(x)))) = P2. a(p(E,E),p(A,E)) = p(P2,P2). a(p(P1,E),p(A,E)) = p(A,P2). a(p(P2,E),p(A,E)) = p(E,P2). a(p(E,P1),p(A,E)) = p(P2,A). a(p(E,P2),p(A,E)) = p(P2,E). a(p(E,E),p(E,A)) = p(P2,P2). a(p(P1,E),p(E,A)) = p(E,P2). a(p(P2,E),p(E,A)) = p(A,P2). a(p(E,P1),p(E,A)) = p(P2,E). a(p(E,P2),p(E,A)) = p(P2,A). a(E,a(A,p(P2,p(x,P1)))) = P2. a(E,a(A,p(p(x,P1),P2))) = P2. a(E,a(A,p(P2,p(P1,x)))) = P2. a(E,a(A,p(p(P1,x),P2))) = P2. a(E,p(K(a(A,A)),K(P2))) = P2. a(E,p(K(P2),K(a(A,A)))) = P2. a(E,a(a(A,p(E,P1)),P2)) = P2. a(E,a(a(A,p(P1,E)),P2)) = P2. a(E,a(a(A,p(E,P2)),P1)) = P2. a(E,a(A,p(P2,E))) = P2. a(E,a(A,p(E,P2))) = P2. a(E,a(a(A,p(P2,E)),P1)) = P2. a(E,p(p(x,K(P2)),E)) = P2. a(E,p(E,p(x,K(P2)))) = P2. a(E,p(p(K(P2),x),E)) = P2. a(E,p(E,p(K(P2),x))) = P2. a(E,a(p(P1,A),P2)) = P2. a(E,a(p(P2,A),P2)) = P2. a(E,a(p(A,P1),P2)) = P2. a(E,a(p(A,P2),P2)) = P2. a(E,a(a(A,p(E,P1)),P1)) = P2. a(E,a(a(A,p(P1,E)),P1)) = P2. a(E,a(a(A,p(E,P2)),P2)) = P2. a(E,a(a(A,p(P2,E)),P2)) = P2. a(E,a(p(A,p(x,P1)),P2)) = P2. a(E,a(p(p(x,P1),A),P2)) = P2. a(E,p(p(A,x),P2)) = P2. a(E,p(P2,p(A,x))) = P2. a(E,a(A,p(K(E),K(P1)))) = P2. a(E,p(E,p(K(A),x))) = P2. a(E,p(p(K(A),x),E)) = P2. a(E,p(K(P2),p(K(A),x))) = P2. a(E,p(p(K(A),x),K(P2))) = P2. a(E,a(p(K(A),A),A)) = P2. a(E,a(p(A,K(A)),A)) = P2. a(E,a(A,p(K(P1),K(E)))) = P2. a(E,a(p(A,p(x,P2)),P2)) = P2. a(E,a(p(p(x,P2),A),P2)) = P2. a(E,a(p(A,p(P1,x)),P2)) = P2. a(E,a(p(p(P1,x),A),P2)) = P2. a(E,a(A,p(P2,p(A,x)))) = P2. a(E,a(A,p(p(A,x),P2))) = P2. a(E,a(p(A,K(A)),E)) = P2. a(E,a(p(K(A),A),E)) = P2. a(E,p(p(A,x),P1)) = P2. a(E,p(P1,p(A,x))) = P2. a(E,p(p(x,A),P1)) = P2. a(E,p(P1,p(x,A))) = P2. a(E,p(p(x,A),P2)) = P2. a(E,p(P2,p(x,A))) = P2. a(E,p(E,p(x,K(A)))) = P2. a(E,p(p(x,K(A)),E)) = P2. a(E,p(K(P2),p(x,K(A)))) = P2. a(E,p(p(x,K(A)),K(P2))) = P2. a(E,p(K(K(x)),K(E))) = P2. a(E,p(K(K(x)),K(A))) = P2. a(E,p(K(K(x)),K(P1))) = P2. a(E,p(K(E),K(K(x)))) = P2. a(E,p(K(A),K(K(x)))) = P2. a(E,p(K(P1),K(K(x)))) = P2. a(E,p(K(K(P2)),K(K(P1)))) = P2. a(E,p(K(K(P1)),K(K(P2)))) = P2. a(E,p(K(K(E)),K(K(P2)))) = P2. a(E,p(K(K(P2)),K(K(E)))) = P2. a(E,p(K(K(P2)),K(K(A)))) = P2. a(E,p(K(K(A)),K(K(P2)))) = P2. a(E,p(p(P1,x),p(P2,y))) = P2. a(E,p(p(P2,x),p(P1,y))) = P2. a(E,p(p(x,P1),p(y,P2))) = P2. a(E,p(p(x,P2),p(y,P1))) = P2. a(E,p(A,p(x,E))) = P2. a(E,p(P2,p(x,P2))) = P2. a(E,p(P1,p(x,P1))) = P2. a(E,p(p(P1,x),P1)) = P2. a(E,p(p(P2,x),P2)) = P2. a(E,p(p(x,P1),P1)) = P2. a(E,p(p(x,P2),P2)) = P2. a(E,p(A,p(x,P1))) = P2. a(E,p(p(x,P1),A)) = P2. a(E,p(A,p(x,P2))) = P2. a(E,p(p(x,P2),A)) = P2. a(E,p(p(P1,x),A)) = P2. a(E,p(A,p(P1,x))) = P2. a(E,p(p(x,E),A)) = P2. a(E,p(P1,p(P1,x))) = P2. a(E,p(P2,p(P2,x))) = P2. a(E,p(E,p(E,x))) = P2. a(E,p(p(E,x),E)) = P2. a(E,p(E,p(x,E))) = P2. a(E,p(p(x,E),E)) = P2. a(E,p(K(K(E)),p(x,x))) = P2. a(E,p(K(K(P1)),p(x,x))) = P2. a(E,p(K(K(A)),p(x,x))) = P2. a(E,p(p(x,x),K(K(E)))) = P2. a(E,p(p(A,x),A)) = P2. a(E,p(p(x,A),A)) = P2. a(E,p(A,p(A,x))) = P2. a(E,p(A,p(x,A))) = P2. a(E,p(p(x,x),K(K(P1)))) = P2. a(E,p(p(x,x),K(K(A)))) = P2. a(E,p(p(x,K(P2)),K(P1))) = P2. a(E,p(p(K(P2),x),K(P1))) = P2. a(E,p(K(P1),p(x,K(P2)))) = P2. a(E,p(K(P1),p(K(P2),x))) = P2. a(E,p(p(K(P1),x),K(E))) = P2. a(E,p(p(x,K(P1)),K(E))) = P2. a(E,p(K(E),p(K(P1),x))) = P2. a(E,p(K(E),p(x,K(P1)))) = P2. a(E,p(K(P1),p(x,K(E)))) = P2. a(E,p(p(x,K(E)),K(P1))) = P2. a(E,p(p(K(P2),x),K(E))) = P2. a(E,p(p(x,K(P2)),K(E))) = P2. a(E,p(K(E),p(K(P2),x))) = P2. a(E,p(K(E),p(x,K(P2)))) = P2. a(E,p(K(P1),p(K(E),x))) = P2. a(E,p(p(K(E),x),K(P1))) = P2. a(E,p(p(K(A),x),K(P1))) = P2. a(E,p(K(P1),p(K(A),x))) = P2. a(E,p(p(x,K(A)),K(P1))) = P2. a(E,p(K(P1),p(x,K(A)))) = P2. a(E,p(K(P2),p(K(P2),x))) = P2. a(E,p(p(K(P2),x),K(P2))) = P2. a(E,p(K(P2),p(x,K(P2)))) = P2. a(E,p(p(x,K(P2)),K(P2))) = P2. a(E,a(A,p(P2,p(P2,x)))) = P2. a(E,a(A,p(p(P2,x),P2))) = P2. a(E,a(p(A,p(A,x)),P2)) = P2. a(E,a(p(p(A,x),A),P2)) = P2. a(E,a(A,p(P2,p(x,P2)))) = P2. a(E,a(A,p(p(x,P2),P2))) = P2. a(E,a(p(A,p(x,A)),P2)) = P2. a(E,a(p(p(x,A),A),P2)) = P2. a(E,p(K(P1),K(A))) = P2. a(E,p(K(A),K(P1))) = P2. a(E,p(K(E),K(P1))) = P2. a(E,p(K(P1),K(E))) = P2. a(E,p(K(P1),K(a(A,A)))) = P2. a(E,p(K(a(A,A)),K(P1))) = P2. a(E,p(K(A),p(x,K(E)))) = P2. a(E,p(p(x,K(E)),K(A))) = P2. a(E,p(K(P1),p(x,K(P1)))) = P2. a(E,p(p(x,K(P1)),K(P1))) = P2. a(E,p(p(K(P1),x),K(P1))) = P2. a(E,p(K(P1),p(K(P1),x))) = P2. a(E,p(K(A),p(x,K(P1)))) = P2. a(E,p(p(x,K(P1)),K(A))) = P2. a(E,p(K(A),p(x,K(P2)))) = P2. a(E,p(p(x,K(P2)),K(A))) = P2. a(E,p(p(K(P1),x),K(A))) = P2. a(E,p(K(A),p(K(P1),x))) = P2. a(E,p(K(E),p(K(E),x))) = P2. a(E,p(p(K(E),x),K(E))) = P2. a(E,p(K(E),p(x,K(E)))) = P2. a(E,p(p(x,K(E)),K(E))) = P2. ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/directproof.c ================================================ /* Copyright (C) 2006, 2007 William McCune This file is part of the LADR Deduction Library. The LADR Deduction Library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2. The LADR Deduction Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with the LADR Deduction Library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Format proofs in various ways */ #include "../ladr/top_input.h" #include "../ladr/xproofs.h" #include "../ladr/ivy.h" #include "../ladr/banner.h" #define PROGRAM_NAME "directproof" #include "../VERSION_DATE.h" static char Help_string[] = ""; static int Transformations = 0; #define BUF_MAX 1000 /************* * * read_heading() * *************/ static String_buf read_heading(FILE *fp) { char line[BUF_MAX], *s; /* the first BUF_MAX-1 chars of the line */ String_buf sb = get_string_buf(); int i = 0; s = fgets(line, BUF_MAX, fp); while (s && !substring("= end of head =", s)) { if (i != 0) { sb_append(sb, s); } i++; s = fgets(line, BUF_MAX, fp); } if (!s) fatal_error("read_heading, \"= end of head =\" not found"); return sb; } /* read_heading */ /************* * * read_program_input() * *************/ static void read_program_input(FILE *fp) { char line[BUF_MAX], *s; /* the first BUF_MAX-1 chars of the line */ BOOL in_list = FALSE; /* parsing list of clauses, formulas, or terms? */ Plist lang_commands = NULL; /* in case of multiple identical commands */ s = fgets(line, BUF_MAX, fp); while (s && !substring("= end of input =", s)) { if (in_list) in_list = !initial_substring("end_of_list.", line); else if (initial_substring("clauses(", line) || initial_substring("formulas(", line) || initial_substring("terms(", line)) in_list = TRUE; else if (initial_substring("op(", line) || initial_substring("redeclare(", line)) { Term cmd = parse_term_from_string(line); if (initial_substring("op(", line)) process_op(cmd, FALSE, stdout); else process_redeclare(cmd, FALSE, stdout); if (!tlist_member(cmd, lang_commands)) { /* don't print duplicates */ fwrite_term_nl(stdout, cmd); lang_commands = plist_prepend(lang_commands, cmd); } } else if (substring("set(prolog_style_variables)", line)) { set_variable_style(PROLOG_STYLE); } s = fgets(line, BUF_MAX, fp); } if (!s) fatal_error("read_program_input, \"= end of input =\" not found"); zap_plist_of_terms(lang_commands); } /* read_program_input */ /************* * * read_to_line() * *************/ static BOOL read_to_line(FILE *fp, char *str) { char line[BUF_MAX], *s; /* the first BUF_MAX-1 chars of the line */ s = fgets(line, BUF_MAX, fp); while (s && !substring(str, line)) s = fgets(line, BUF_MAX, fp); return s != NULL; } /* read_to_line */ /************* * * print_proof() * *************/ static void print_proof(FILE *fp, Plist proof, String_buf comment, int format, I3list jmap, int number) { Plist p; int length = proof_length(proof); int max_count = max_clause_symbol_count(proof); if (format == CL_FORM_XML) { fprintf(fp, "\n\n", number, length, max_count); if (comment) { fprintf(fp, "\n\n"); } } else if (format == CL_FORM_IVY) { fprintf(fp, "\n;; BEGINNING OF PROOF OBJECT\n"); fprintf(fp, "(\n"); } else { print_separator(stdout, "PROOF", TRUE); if (comment) { fprintf(fp, "\n%% -------- Comments from original proof --------\n"); fprint_sb(stdout, comment); fprintf(fp, "\n"); } } for (p = proof; p; p = p->next) fwrite_clause_jmap(stdout, p->v, format, jmap); if (format == CL_FORM_XML) fprintf(fp, "\n\n"); else if (format == CL_FORM_IVY) { fprintf(fp, ")\n"); fprintf(fp, ";; END OF PROOF OBJECT\n"); } else print_separator(stdout, "end of proof", TRUE); } /* print_proof */ /************* * * horn_eq_clauses() * *************/ /* DOCUMENTATION Is every clause in the Plist an equality unit (pos or neg)? */ /* PUBLIC */ BOOL horn_eq_clauses(Plist l) { Plist p; for (p = l; p; p = p->next) { Topform c = p->v; if (!string_attribute_member(c->attributes, label_att(), "non_clause") && c->literals) { if (!horn_clause(c->literals) || !only_eq(c->literals)) { return FALSE; } } } return TRUE; } /* horn_eq_clauses */ /************* * * pos_bin_res() * *************/ /* DOCUMENTATION If it is a resolution (binary, hyper, ur), is it positive binary? */ /* PUBLIC */ BOOL pos_bin_res(Topform c, Plist proof) { if (!c->justification) return TRUE; else if (c->justification->type == HYPER_RES_JUST || c->justification->type == UR_RES_JUST) return FALSE; else if (c->justification->type != BINARY_RES_JUST) return TRUE; else { Ilist parents = get_parents(c->justification, FALSE); Topform a = proof_id_to_clause(proof, parents->i); Topform b = proof_id_to_clause(proof, parents->next->i); BOOL ok = (positive_clause(a->literals) || positive_clause(b->literals)); zap_ilist(parents); return ok; } } /* pos_bin_res */ /************* * * all_resolutions_pos_binary() * *************/ /* DOCUMENTATION */ /* PUBLIC */ BOOL all_resolutions_pos_binary(Plist proof) { Plist p; for (p = proof; p; p = p->next) { if (!pos_bin_res(p->v, proof)) return FALSE; } return TRUE; } /* all_resolutions_pos_binary */ /************* * * all_paramodulations_unit() * *************/ /* DOCUMENTATION */ /* PUBLIC */ BOOL all_paramodulations_unit(Plist proof) { Plist p; for (p = proof; p; p = p->next) { Topform c = p->v; if (c->justification->type == PARA_JUST && number_of_literals(c->literals) != 1) return FALSE; } return TRUE; } /* all_paramodulations_unit */ /************* * * first_pos_parent() * *************/ static Topform first_pos_parent(Topform c, Plist proof) { Ilist parents = get_parents(c->justification, FALSE); Ilist p; for (p = parents; p; p = p->next) { Topform c = proof_id_to_clause(proof, p->i); if (positive_clause(c->literals)) return c; } return NULL; } /* first_pos_parent */ /************* * * first_neg_parent() * *************/ static Topform first_neg_parent(Topform c, Plist proof) { Ilist parents = get_parents(c->justification, FALSE); Ilist p; for (p = parents; p; p = p->next) { Topform c = proof_id_to_clause(proof, p->i); if (negative_clause(c->literals)) return c; } return NULL; } /* first_neg_parent */ /************* * * bidirectional() * *************/ static BOOL bidirectional(Plist proof) { Topform e = plist_last(proof); Topform n1 = first_neg_parent(e, proof); if (n1 && !n1->is_formula) { Topform n2 = first_neg_parent(n1, proof); return n2 && !n1->is_formula; } else return FALSE; } /* bidirectional */ /************* * * last_two_steps() * *************/ static void last_two_steps(Plist proof, Topform *e, Topform *p1, Topform *n1, Topform *p2, Topform *n2) { *e = plist_last(proof); *p1 = first_pos_parent(*e, proof); *n1 = first_neg_parent(*e, proof); *p2 = first_pos_parent(*n1, proof); *n2 = first_neg_parent(*n1, proof); } /* last_two_steps */ /************* * * xx_recurse() * *************/ static Term xx_recurse(Term t, Ilist pos, int *n) { if (pos == NULL) { Term v = get_variable_term(*n); (*n)++; return v; } else { int i; Term new = get_rigid_term_like(t); for (i = 0; i < ARITY(t); i++) { Term arg; if (i == pos->i-1) arg = xx_recurse(ARG(t,i), pos->next, n); else { arg = get_variable_term(*n); (*n)++; } ARG(new,i) = arg; } return new; } } /* xx_recurse */ /************* * * xx_instance() * *************/ static Topform xx_instance(Literals lits, Ilist pos) { Topform new = get_topform(); int n = 0; Literals lit = ith_literal(lits, pos->i); Term t1 = xx_recurse(ARG(lit->atom, pos->next->i-1), pos->next->next, &n); Term e = get_rigid_term_like(lit->atom); ARG(e,0) = t1; ARG(e,1) = copy_term(t1); new->literals = append_literal(new->literals, new_literal(1, e)); new->justification = input_just(); return new; } /* xx_instance */ /************* * * instance_from_position_recurse() * *************/ static Term instance_from_position_recurse(Term t1, Term t2, Ilist pos, int n) { if (VARIABLE(t1)) { Term s = xx_recurse(t2, pos, &n); return listterm_cons(copy_term(t1), s); } else { return instance_from_position_recurse(ARG(t1,pos->i-1), ARG(t2,pos->i-1), pos->next, n); } } /* instance_from_position_recurse */ /************* * * instance_from_position() * *************/ static Term instance_from_position(Topform c1, Topform c2, Ilist pos) { Term t1 = ith_literal(c1->literals, pos->i)->atom; Term t2 = ith_literal(c2->literals, pos->i)->atom; int n = greatest_variable_in_clause(c1->literals) + 1; return instance_from_position_recurse(t1, t2, pos->next, n); } /* instance_from_position */ /************* * * forward_proof() * *************/ static Plist forward_proof(Plist proof) { int next_id; if (!horn_eq_clauses(proof)) fatal_error("forward_proof, all clauses must be Horn equality"); else if (!all_paramodulations_unit(proof)) fatal_error("forward_proof, all paramodulations must be unit"); else if (!all_resolutions_pos_binary(proof)) fatal_error("forward_proof, all resolutions must be positive binary"); next_id = greatest_id_in_proof(proof) + 1; while (bidirectional(proof)) { Topform e, p1, n1, p2, n2; Transformations++; /* print_proof(stdout, proof, NULL, CL_FORM_STD, NULL, 0); */ last_two_steps(proof, &e, &p1, &n1, &p2, &n2); if (!p1 && has_copy_flip_just(n1)) { /* CASE 0: flip neg clause, then conflict with x=x. */ /* We can simply remove the flip inference. */ proof = plist_remove(proof, n1); /* Change justification on empty clause. */ e->justification->u.id = n2->id; } else if (p1 && has_copy_flip_just(n1)) { /* CASE 1: flip negative clause, then unit conflict. */ if (e->justification->u.lst->next->i == -1 || e->justification->u.lst->next->next->next->i == -1) { /* CASE 1a: Unit conflict has an implicit flip. double flips cancel, so we can just remove n1. */ Topform empty = try_unit_conflict(p1, n2); if (!empty) fatal_error("forward_proof, case 1a failed"); empty->id = next_id++; proof = plist_remove(proof, n1); proof = plist_remove(proof, e); delete_clause(n1); delete_clause(e); proof = plist_append(proof, empty); } else { /* CASE 1b: change flip from neg to pos clause. */ Topform flipped_pos, empty; int n = n1->justification->next->u.id; /* flipped literal */ flipped_pos = copy_inference(p1); flip_eq(flipped_pos->literals->atom, n); flipped_pos->id = next_id++; /* Now, flipped_pos and n2 should give unit conflict. */ empty = try_unit_conflict(flipped_pos, n2); if (!empty) fatal_error("forward_proof, case 1b failed"); empty->id = next_id++; /* Remove 2 clauses and append 2 clauses. */ proof = plist_remove(proof, n1); proof = plist_remove(proof, e); delete_clause(n1); delete_clause(e); proof = plist_append(proof, flipped_pos); proof = plist_append(proof, empty); } } else if (p1 && n1->justification->type == PARA_JUST && n1->justification->next == NULL) { /* CASE 3: para into negative clause, then unit conflict. */ Ilist p2_pos; Ilist n2_pos; Term target; Topform new1, empty; Ilist from_pos; if (e->justification->u.lst->next->i == -1 || e->justification->u.lst->next->next->next->i == -1) { /* The unit conflict involved an implicit flip. We'll handle that by explicitly flipping the positive equality first. */ Topform flipped_pos = copy_inference(p1); flip_eq(flipped_pos->literals->atom, 1); flipped_pos->id = next_id++; proof = plist_append(proof, flipped_pos); p1 = flipped_pos; } p2_pos = n1->justification->u.para->from_pos; n2_pos = n1->justification->u.para->into_pos; target = term_at_position(p1->literals, n2_pos); if (!target) { /* Into_term does not exist, so we have to instantiate p1. */ Term pair = instance_from_position(p1, n1, n2_pos); Topform p1i = copy_clause(p1); p1i->literals->atom = subst_term(p1i->literals->atom, ARG(pair,0), ARG(pair,1)); upward_clause_links(p1i); p1i->justification = instance_just(p1, plist_append(NULL,pair)); p1i->id = next_id++; proof = plist_append(proof, p1i); p1 = p1i; } from_pos = copy_ilist(p2_pos); from_pos->next->i = (p2_pos->next->i == 1 ? 2 : 1); new1 = para_pos2(p2, from_pos, p1, n2_pos); zap_ilist(from_pos); new1->id = next_id++; empty = try_unit_conflict(new1, n2); if (!empty) { fatal_error("directproof failed (unit conflict case 3)"); } empty->id = next_id++; proof = plist_remove(proof, n1); proof = plist_remove(proof, e); delete_clause(n1); delete_clause(e); proof = plist_append(proof, new1); proof = plist_append(proof, empty); } /* case 3 */ else if (!p1 && e->justification->type == COPY_JUST && e->justification->next && e->justification->next->type == XX_JUST) { /* CASE 2: conflict with x=x. */ Ilist p2_pos = n1->justification->u.para->from_pos; Ilist n2_pos = n1->justification->u.para->into_pos; Topform positive, empty; if (ilist_count(n2_pos) > 2) { /* into subterm */ Topform xxi = xx_instance(n2->literals, n1->justification->u.para->into_pos); Topform new1, empty; Ilist from_pos = copy_ilist(p2_pos); from_pos->next->i = (p2_pos->next->i == 1 ? 2 : 1); xxi->id = next_id++; new1 = para_pos2(p2, from_pos, xxi, n2_pos); zap_ilist(from_pos); new1->id = next_id++; empty = try_unit_conflict(new1, n2); if (!empty) fatal_error("directproof failed (unit conflict case 3a)"); empty->id = next_id++; proof = plist_remove(proof, n1); proof = plist_remove(proof, e); delete_clause(n1); delete_clause(e); proof = plist_append(proof, xxi); proof = plist_append(proof, new1); proof = plist_append(proof, empty); } else { /* into top */ if (p2_pos->next->i != n2_pos->next->i) { /* left->right or right->left, so we flip the positive parent. */ Topform flipped_pos = copy_inference(p2); flip_eq(flipped_pos->literals->atom, 1); flipped_pos->id = next_id++; proof = plist_append(proof, flipped_pos); positive = flipped_pos; } else positive = p2; /* Now, positive and n2 should give unit conflict. */ empty = try_unit_conflict(positive, n2); if (!empty) fatal_error("directproof failed (unit conflict case 3b)"); empty->id = next_id++; /* replace empty. */ proof = plist_remove(proof, n1); proof = plist_remove(proof, e); delete_clause(n1); delete_clause(e); proof = plist_append(proof, empty); } } /* case 2 */ else { fprintf(stderr, "CASE not handled, transformation incomplete.\n"); printf("CASE not handled:\n"); if (p2) { printf("p2: "); f_clause(p2); } if (n2) { printf("n2: "); f_clause(n2); } if (p1) { printf("p1: "); f_clause(p1); } if (n1) { printf("n1: "); f_clause(n1); } if (e) { printf("e: "); f_clause(e); } fatal_error("forward_proof, case not handled"); } } return proof; } /* forward_proof */ /************* * * main() * *************/ int main(int argc, char **argv) { int rc, n, number_of_proofs; BOOL found; Plist p, c; int label_attr, answer_attr, props_attr; FILE *fin = stdin; char *filename = NULL; String_buf heading; /* first few lines of the file */ Plist proofs = NULL; /* all of the proofs */ Plist comments = NULL; /* the corresponding comments */ if (string_member("help", argv, argc) || string_member("-help", argv, argc)) { printf("%s", Help_string); exit(1); } n = which_string_member("-f", argv, argc); if (n == -1) fin = stdin; else if (n+1 >= argc) fatal_error("file name missing"); else { filename = argv[n+1]; fin = fopen(filename, "r"); if (fin == NULL) { char s[100]; sprintf(s, "file %s not found", argv[n+1]); fatal_error(s); } } init_standard_ladr(); label_attr = register_attribute("label", STRING_ATTRIBUTE); answer_attr = register_attribute("answer", TERM_ATTRIBUTE); props_attr = register_attribute("props", TERM_ATTRIBUTE); declare_term_attribute_inheritable(answer_attr); /* Ok, start reading the input. */ heading = read_heading(fin); print_separator(stdout, PROGRAM_NAME, FALSE); fprint_sb(stdout, heading); print_separator(stdout, "end of head", FALSE); read_program_input(fin); print_separator(stdout, "end of input", TRUE); found = read_to_line(fin, "= PROOF ="); /* finishes line */ number_of_proofs = 0; while (found) { /* ok, we have a proof */ String_buf comment = get_string_buf(); char s[BUF_MAX]; Plist proof = NULL; number_of_proofs++; rc = fscanf(fin, "%s", s); /* "%" or clause id */ while (str_ident(s, "%")) { fgets(s, BUF_MAX, fin); /* in case prooftrans is run multiple times */ if (!substring("Comments from original proof", s)) { sb_append(comment, "%"); sb_append(comment, s); } /* in case there are any long comment lines (answers) */ if (s[strlen(s)] != '\n') { char c; do { c = fgetc(fin); sb_append_char(comment, c); } while (c != '\n'); } rc = fscanf(fin, "%s", s); /* "%" or clause id */ } while (!substring("==========", s)) { /* separator at end of proof */ Term clause_term = read_term(fin, stderr); Term just_term = read_term(fin, stderr); int id; Topform cl = term_to_clause(clause_term); clause_set_variables(cl, MAX_VARS); cl->justification = term_to_just(just_term); if (str_to_int(s, &id)) cl->id = id; else fatal_error("clause id is not an integer"); proof = plist_prepend(proof, cl); rc = fscanf(fin, "%s", s); /* clause id */ } proof = reverse_plist(proof); proofs = plist_append(proofs, proof); comments = plist_append(comments, comment); found = read_to_line(fin, "= PROOF ="); } for (p = proofs, c = comments, n = 1; p; p = p->next, c = c->next, n++) { I3list jmap = NULL; Plist proof = p->v; String_buf comment = c->v; Plist xproof = expand_proof(proof, &jmap); Plist xnproof; /* delete_clauses(xproof); */ Plist xnfproof; zap_i3list(jmap); /* delete_clauses(proof); */ xnproof = copy_and_renumber_proof(xproof, 1); /* delete_clauses(xproof); */ xnfproof = forward_proof(xnproof); /* delete_clauses(xnproof); */ print_proof(stdout, xnfproof, comment, CL_FORM_STD, NULL, n); /* delete_clauses(xnfproof); */ } if (number_of_proofs > 0) { printf("\n%% Directproof did %d transformation(s) on %d proof(s).\n", Transformations, number_of_proofs); exit(0); } else exit(2); } /* main */ ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/dprofiles.c ================================================ /* Copyright (C) 2006, 2007 William McCune This file is part of the LADR Deduction Library. The LADR Deduction Library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2. The LADR Deduction Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with the LADR Deduction Library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Take a stream of interpretations and remove the isomorphic ones. */ #include "../ladr/top_input.h" #include "../ladr/interp.h" #define PROGRAM_NAME "profiles" #include "../VERSION_DATE.h" static char Help_string[] = "\nThis program reads a stream of interpretations (from stdin)\n" "and shows the profiles." "Argument \"discrim ''\" is accepted.\n"; int main(int argc, char **argv) { Term t; Plist discriminators = NULL; int rc; init_standard_ladr(); if (string_member("help", argv, argc) || string_member("-help", argv, argc)) { printf("\n%s, version %s, %s\n",PROGRAM_NAME,PROGRAM_VERSION,PROGRAM_DATE); printf("%s", Help_string); exit(1); } rc = which_string_member("discrim", argv, argc); if (rc == -1) rc = which_string_member("-discrim", argv, argc); if (rc > 0) { if (rc+1 >= argc) fatal_error("isofilter: missing \"discrim\" argument"); else { FILE *fp = fopen(argv[rc+1], "r"); if (fp == NULL) fatal_error("discrim file cannot be opened for reading"); discriminators = read_clause_list(fp, stderr, TRUE); } } /* Input is a stream of interpretations. */ t = read_term(stdin, stderr); while (t != NULL) { Interp a, c; a = compile_interp(t, FALSE); c = normal3_interp(a, discriminators); p_interp_profile(c, discriminators); zap_interp(a); zap_interp(c); zap_term(t); t = read_term(stdin, stderr); } exit(0); } /* main */ ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/g2.model ================================================ interpretation( 6, [number = 1,seconds = 0], [ function(*(_,_), [ 0,1,2,3,4,5, 1,0,3,2,5,4, 2,4,0,5,1,3, 3,5,1,4,0,2, 4,2,5,0,3,1, 5,3,4,1,2,0]), function(c1, [0]), function(c2, [1]), function(c3, [2]), function(f1(_), [0,1,2,4,3,5])]). interpretation( 4, [number = 1,seconds = 0], [ function(*(_,_), [ 0,1,2,3, 1,0,3,2, 2,3,0,1, 3,2,1,0]), function(c1, [0]), function(f1(_), [0,1,2,3])]). ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/gen_trc_defs.c ================================================ /* Copyright (C) 2006, 2007 William McCune This file is part of the LADR Deduction Library. The LADR Deduction Library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2. The LADR Deduction Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with the LADR Deduction Library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. */ #include #include "../ladr/top_input.h" #include "../ladr/flatdemod.h" #define PROGRAM_NAME "genterms" #include "../VERSION_DATE.h" // static char Help_string[] = ""; static Mindex Demod_index; /* demodulator index */ static unsigned Generated = 0; static unsigned Kept = 0; #define N0 4 /* 4 constants */ #define N1 1 /* 1 unary op */ #define N2 3 /* 3 binary ops */ struct syms { int s0[N0], c0[N0]; int s1[N1], c1[N1]; int s2[N2], c2[N2]; }; /************* * * catalan() * *************/ static Plist catalan(int n) { if (n == 1) { Term t = get_rigid_term("_", 0); return plist_append(NULL, t); } else { Plist results = NULL; /* collect results */ int i, j; for (i = 1, j = n-1; i < n; i++, j--) { Plist l, r; Plist left = catalan(i); Plist right = catalan(j); for (l = left; l; l = l->next) { for (r = right; r; r = r->next) { Term c = build_binary_term_safe("o", copy_term(l->v), copy_term(r->v)); results = plist_prepend(results, c); } } zap_plist_of_terms(left); zap_plist_of_terms(right); } return reverse_plist(results); } } /* catalan */ /************* * * rewritable_top() * *************/ static BOOL rewritable_top(Flatterm f) { if (ARITY(f) == 0) return FALSE; else { Context subst = get_context(); Discrim_pos dpos; Term t = discrim_flat_retrieve_first(f, Demod_index->discrim_tree, subst, &dpos); if (t) discrim_flat_cancel(dpos); free_context(subst); return t != NULL; } } /* rewritable_top */ /************* * * rewritable() * *************/ static BOOL rewritable(Flatterm head) { Flatterm f; for (f = head; f != head->end->next; f = f->next) { if (rewritable_top(f)) return TRUE; } return FALSE; } /* rewritable */ /************* * * candidate() * *************/ static void candidate(Flatterm f) { Generated++; if (!rewritable(f)) { Kept++; print_flatterm(f); printf(" = C.\n"); fflush(stdout); } } /* candidate */ /************* * * genterms() * *************/ static void genterms(Flatterm f, Flatterm head, struct syms s) { if (ARITY(f) == 0) { int i; for (i = 0; i < N0; i++) { if (s.c0[i] > 0) { s.c0[i]--; f->private_symbol = -s.s0[i]; if (f->next == NULL) candidate(head); else genterms(f->next, head, s); s.c0[i]++; } } } else if (ARITY(f) == 1) { int i; for (i = 0; i < N1; i++) { if (s.c1[i] > 0) { s.c1[i]--; f->private_symbol = -s.s1[i]; genterms(f->next, head, s); s.c1[i]++; } } } else if (ARITY(f) == 2) { int i; for (i = 0; i < N2; i++) { if (s.c2[i] > 0) { s.c2[i]--; f->private_symbol = -s.s2[i]; genterms(f->next, head, s); s.c2[i]++; } } } else fatal_error("genterms, bad arity"); } /* genterms */ /************* * * num_constants() * *************/ static int num_constants(struct syms s) { int n = 0; int i; for (i = 0; i < N0; i++) n += s.c0[i]; return n; } /* num_constants */ /************* * * num_binaries() * *************/ static int num_binaries(struct syms s) { int n = 0; int i; for (i = 0; i < N2; i++) n += s.c2[i]; return n; } /* num_constants */ /************* * * check_counts() * *************/ static void check_counts(struct syms s) { if (num_constants(s) != num_binaries(s) + 1) fatal_error("check_counts, number of constants and binaries do not match"); } /* check_counts */ /************* * * unary_occurrences() * *************/ static int unary_occurrences(struct syms s) { int i; int n = 0; for (i = 0; i < N1; i++) n += s.c1[i]; return n; } /* unary_occurrences */ /************* * * insert_unaries() * *************/ static void insert_unaries(Flatterm f, int n, struct syms s) { if (n == 0) { Flatterm x = f; while (x->prev) x = x->prev; /* printf("genterms: "); p_flatterm(x); */ genterms(x, x, s); } else { Flatterm u = get_flatterm(); u->arity = 1; u->private_symbol = -str_to_sn("unary", 1); u->end = f->end; u->next = f; u->prev = f->prev; if (f->prev) f->prev->next = u; f->prev = u; insert_unaries(f, n-1, s); if (u->prev) u->prev->next = f; f->prev = u->prev; free_flatterm(u); if (f->next) insert_unaries(f->next, n, s); } } /* insert_unaries */ /************* * * unary_gen() * *************/ static void unary_gen(Term t, struct syms s) { Flatterm f = term_to_flatterm(t); insert_unaries(f, unary_occurrences(s), s); zap_flatterm(f); } /* unary_gen */ /************* * * lookfor() * *************/ static int lookfor(char *s, int argc, char **argv) { int n; int i = which_string_member(s, argv, argc); if (i == -1) return 0; else if (argc > i+1 && str_to_int(argv[i+1], &n)) return n; else { fatal_error("lookfor: bad arg list"); return 0; } } /* lookfor */ int main(int argc, char **argv) { struct syms s; int n, i; Plist demods; init_standard_ladr(); i = register_attribute("label", STRING_ATTRIBUTE); /* ignore these */ n = lookfor("-A", argc, argv); s.s0[0] = str_to_sn("A", 0); s.c0[0] = n; n = lookfor("-E", argc, argv); s.s0[1] = str_to_sn("E", 0); s.c0[1] = n; n = lookfor("-P1", argc, argv); s.s0[2] = str_to_sn("P1", 0); s.c0[2] = n; n = lookfor("-P2", argc, argv); s.s0[3] = str_to_sn("P2", 0); s.c0[3] = n; n = lookfor("-K", argc, argv); s.s1[0] = str_to_sn("K", 1); s.c1[0] = n; n = lookfor("-a", argc, argv); s.s2[0] = str_to_sn("a", 2); s.c2[0] = n; n = lookfor("-p", argc, argv); s.s2[1] = str_to_sn("p", 2); s.c2[1] = n; n = lookfor("-f", argc, argv); s.s2[2] = str_to_sn("f", 2); s.c2[2] = n; check_counts(s); Demod_index = mindex_init(DISCRIM_BIND, ORDINARY_UNIF, 0); i = which_string_member("-demod", argv, argc); if (i == -1) demods = NULL; else { FILE *head_fp = fopen(argv[i+1], "r"); if (head_fp == NULL) fatal_error("demod file cannot be opened for reading"); demods = read_clause_list(head_fp, stderr, TRUE); fclose(head_fp); Plist p; for (p = demods; p != NULL; p = p->next) { /* assume positive equality unit */ Topform d = p->v; Literals lit = d->literals; Term alpha = lit->atom->args[0]; mark_oriented_eq(lit->atom); /* do not check for termination */ mindex_update(Demod_index, alpha, INSERT); } } Plist forms = catalan(num_constants(s)); n = 0; Plist p; for (p = forms; p; p = p->next) { n++; Term t = p->v; unary_gen(t, s); } printf("%% Generated=%u, Kept=%u.\n", Generated, Kept); exit(0); } /* main */ ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/h1.in ================================================ % Language Options op(500, infix, "+"). %addition op(490, infix, ";"). %multiplication op(490, infix, "*"). %concurrent op(480, postfix, "^"). %omega op(490, infix, "||"). %disjoint parallel op(490, infix, "/\"). %meet op(490, infix, "!!"). %alternation if(Prover9). % Options for Prover9 assign(max_seconds, 60). end_if. if(Mace4). % Options for Mace4 assign(max_seconds, 60). end_if. formulas(assumptions). %commutative additive monoid x + y = y + x. x + 0 = x. x+(y+z) = (x+y)+z. %multiplicative monoid x;1 = x & 1;x = x. x;(y;z) = (x;y);z. %multiplicative monoid x*1 = x & 1*x = x. x*(y*z) = (x*y)*z. %distributivity (x + y);z = x;z + y;z. (x + y)*z = x*z + y*z. z;(x + y) = z;x + z;y. z*(x + y) = z*x + z*y. %annihilation 0;x = 0. x;0 = 0. 0*x = 0. x*0 = 0. %idempotence x + x = x. %subsumption order x <= y <-> x+y=y. %exchange (x*x1);(y*y1) <= (x1;y)*(x;y1). %meet x/\y <= x. x/\y <= y. z <= x & z<= y -> z<= x/\y. x||y = (x;y)/\(y;x). x!!y = (x/\1);y + x;(y/\1). end_of_list. formulas(goals). x!!y=y!!x. end_of_list. ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/h1.out ================================================ ============================== Mace4 ================================= Mace4 (32) version 2009-02A, February 2009. Process 20734 was started by mccune on cleo, Tue Mar 17 10:49:28 2009 The command was "mace4 -f h1.in". ============================== end of head =========================== ============================== INPUT ================================= % Reading from file h1.in op(500,infix,"+"). op(490,infix,";"). op(490,infix,"*"). op(480,postfix,"^"). op(490,infix,"||"). op(490,infix,"/\"). op(490,infix,"!!"). if(Prover9). % Conditional input omitted. end_if. if(Mace4). % Conditional input included. assign(max_seconds,60). end_if. formulas(assumptions). x + y = y + x. x + 0 = x. x + (y + z) = (x + y) + z. x ; 1 = x & 1 ; x = x. x ; (y ; z) = (x ; y) ; z. x * 1 = x & 1 * x = x. x * (y * z) = (x * y) * z. (x + y) ; z = x ; z + y ; z. (x + y) * z = x * z + y * z. z ; (x + y) = z ; x + z ; y. z * (x + y) = z * x + z * y. 0 ; x = 0. x ; 0 = 0. 0 * x = 0. x * 0 = 0. x + x = x. x <= y <-> x + y = y. (x * x1) ; (y * y1) <= (x1 ; y) * (x ; y1). x /\ y <= x. x /\ y <= y. z <= x & z <= y -> z <= x /\ y. x || y = (x ; y) /\ (y ; x). x !! y = (x /\ 1) ; y + x ; (y /\ 1). end_of_list. formulas(goals). x !! y = y !! x. end_of_list. ============================== end of input ========================== ============================== PROCESS NON-CLAUSAL FORMULAS ========== % Formulas that are not ordinary clauses: 1 x ; 1 = x & 1 ; x = x # label(non_clause). [assumption]. 2 x * 1 = x & 1 * x = x # label(non_clause). [assumption]. 3 x <= y <-> x + y = y # label(non_clause). [assumption]. 4 z <= x & z <= y -> z <= x /\ y # label(non_clause). [assumption]. 5 x !! y = y !! x # label(non_clause) # label(goal). [goal]. ============================== end of process non-clausal formulas === ============================== CLAUSES FOR SEARCH ==================== formulas(mace4_clauses). x + y = y + x. x + 0 = x. x + (y + z) = (x + y) + z. x ; 1 = x. 1 ; x = x. x ; (y ; z) = (x ; y) ; z. x * 1 = x. 1 * x = x. x * (y * z) = (x * y) * z. (x + y) ; z = x ; z + y ; z. (x + y) * z = x * z + y * z. x ; (y + z) = x ; y + x ; z. x * (y + z) = x * y + x * z. 0 ; x = 0. x ; 0 = 0. 0 * x = 0. x * 0 = 0. x + x = x. -(x <= y) | x + y = y. x <= y | x + y != y. (x * y) ; (z * u) <= (y ; z) * (x ; u). x /\ y <= x. x /\ y <= y. -(x <= y) | -(x <= z) | x <= y /\ z. x || y = (x ; y) /\ (y ; x). x !! y = (x /\ 1) ; y + x ; (y /\ 1). c2 !! c1 != c1 !! c2. end_of_list. ============================== end of clauses for search ============= % The largest natural number in the input is 1. ============================== DOMAIN SIZE 2 ========================= ============================== STATISTICS ============================ For domain size 2. Current CPU time: 0.00 seconds (total CPU time: 0.01 seconds). Ground clauses: seen=129, kept=58. Selections=3, assignments=6, propagations=28, current_models=0. Rewrite_terms=121, rewrite_bools=61, indexes=0. Rules_from_neg_clauses=6, cross_offs=6. ============================== end of statistics ===================== ============================== DOMAIN SIZE 3 ========================= ============================== STATISTICS ============================ For domain size 3. Current CPU time: 0.00 seconds (total CPU time: 0.12 seconds). Ground clauses: seen=391, kept=251. Selections=2425, assignments=7275, propagations=14992, current_models=0. Rewrite_terms=458623, rewrite_bools=164648, indexes=14310. Rules_from_neg_clauses=4543, cross_offs=12388. ============================== end of statistics ===================== ============================== DOMAIN SIZE 4 ========================= ============================== MODEL ================================= interpretation( 4, [number=1, seconds=4], [ function(c1, [ 2 ]), function(c2, [ 3 ]), function(!!(_,_), [ 0, 0, 0, 0, 0, 1, 2, 3, 0, 2, 0, 0, 0, 3, 2, 3 ]), function(*(_,_), [ 0, 0, 0, 0, 0, 1, 2, 3, 0, 2, 0, 2, 0, 3, 2, 3 ]), function(+(_,_), [ 0, 1, 2, 3, 1, 1, 1, 1, 2, 1, 2, 3, 3, 1, 3, 3 ]), function(/\(_,_), [ 0, 0, 0, 0, 0, 1, 2, 3, 0, 2, 2, 2, 0, 3, 2, 3 ]), function(;(_,_), [ 0, 0, 0, 0, 0, 1, 2, 3, 0, 2, 0, 0, 0, 3, 2, 3 ]), function(||(_,_), [ 0, 0, 0, 0, 0, 1, 2, 3, 0, 2, 0, 0, 0, 3, 0, 3 ]), relation(<=(_,_), [ 1, 1, 1, 1, 0, 1, 0, 0, 0, 1, 1, 1, 0, 1, 0, 1 ]) ]). ============================== end of model ========================== ============================== STATISTICS ============================ For domain size 4. Current CPU time: 0.00 seconds (total CPU time: 4.83 seconds). Ground clauses: seen=921, kept=696. Selections=36759, assignments=147005, propagations=665193, current_models=1. Rewrite_terms=18503894, rewrite_bools=6591134, indexes=1533814. Rules_from_neg_clauses=132667, cross_offs=660041. ============================== end of statistics ===================== User_CPU=4.83, System_CPU=0.01, Wall_clock=5. Exiting with 1 model. Process 20734 exit (max_models) Tue Mar 17 10:49:33 2009 The process finished Tue Mar 17 10:49:33 2009 ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/idfilter.c ================================================ /* Copyright (C) 2006, 2007 William McCune This file is part of the LADR Deduction Library. The LADR Deduction Library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2. The LADR Deduction Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with the LADR Deduction Library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "../ladr/top_input.h" #include "../ladr/demod.h" #define PROGRAM_NAME "idfilter" #include "../VERSION_DATE.h" static char Help_string[] = "\nThis program takes a file of demodulators (arg 1) and a\n" "stream of equations (stdin). Each equation is rewritten.\n" "If it rewrites to an instance of x=x, it is discarded;\n" "otherwise it (in the unrewritten form) is send to stdout.\n" "For example,\n\n" " idfilter demods < terms.in > terms.out\n\n" "The file of demodulators contains optional commands\n" "then a list of demodulators. The commands can be used to\n" "declare infix operations and associativity/commutativity.\n" "Example file of demodulators:\n\n" " op(400, infix, ^).\n" " op(400, infix, v).\n" " assoc_comm(^).\n" " assoc_comm(v).\n" " formulas(demodulator).\n" " x ^ x = x.\n" " x ^ (x v y) = x.\n" " x v x = x.\n" " x v (x ^ y) = x.\n" " end_of_list.\n\n"; int main(int argc, char **argv) { FILE *head_fp; Ilist just; Plist demodulators, p; Mindex idx; Term t; int tested = 0; int passed = 0; Uniftype unification_type; BOOL fast_parse = string_member("fast", argv, argc); BOOL backward = string_member("x", argv, argc); BOOL verbose = string_member("verbose", argv, argc);; if (string_member("help", argv, argc) || string_member("-help", argv, argc) || argc < 2) { printf("\n%s, version %s, %s\n",PROGRAM_NAME,PROGRAM_VERSION,PROGRAM_DATE); printf("%s", Help_string); exit(1); } init_standard_ladr(); if (fast_parse) fast_set_defaults(); /* Declare the symbols for fastparse. */ head_fp = fopen(argv[1], "r"); if (head_fp == NULL) fatal_error("demodulator file can't be opened for reading"); t = read_commands(head_fp, stderr, FALSE, KILL_UNKNOWN); if (!is_term(t, "clauses", 1) && !is_term(t, "formulas", 1)) fatal_error("formulas(demodulators) not found"); if (assoc_comm_symbols() || comm_symbols()) unification_type = BACKTRACK_UNIF; else unification_type = ORDINARY_UNIF; /* Read list of demodulators. */ demodulators = read_clause_list(head_fp, stderr, TRUE); fclose(head_fp); /* AC-canonicalize and index the demodulators. */ idx = mindex_init(DISCRIM_WILD, unification_type, 0); for (p = demodulators; p != NULL; p = p->next) { /* assume positive equality unit */ Topform d = p->v; Literals lit = d->literals; Term alpha = lit->atom->args[0]; mark_oriented_eq(lit->atom); /* don not check for termination */ if (assoc_comm_symbols()) ac_canonical(lit->atom, -1); mindex_update(idx, alpha, INSERT); } if (verbose) fwrite_clause_list(stdout, demodulators, "demodulators", CL_FORM_BARE); /* Read and demodulate terms. */ t = term_reader(fast_parse); while (t != NULL) { Term tcopy = copy_term(t); BOOL ident; tested++; if (verbose) { fprintf(stdout, "\nBefore: "); fwrite_term_nl(stdout, t); } if (assoc_comm_symbols()) ac_canonical(tcopy, -1); just = NULL; tcopy = demodulate(tcopy, idx, &just, FALSE); if (verbose) { fprintf(stdout, "After: "); fwrite_term_nl(stdout, tcopy); } ident = (is_term(t, "=", 2) && term_ident(ARG(tcopy,0),ARG(tcopy,1))); if ((ident && !backward) || (!ident && backward)) { passed++; term_writer(t, fast_parse); fflush(stdout); } zap_ilist(just); zap_term(t); zap_term(tcopy); t = term_reader(fast_parse); } printf("%% %s %s %s: tested %d, passed %d in %.2f seconds.\n", PROGRAM_NAME, argv[1], backward ? "x" : "", tested, passed, user_seconds()); exit(0); } /* main */ ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/interp3.dtd ================================================ ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/interp3.xsl ================================================

Mace4 Job

  
  

This page was generated from file .


Constraints

  
  
=

Interpretation , =

Constant =

Unary

Binary

-ary

tuplevalue
================================================ FILE: models/symbolic_solvers/Prover9/apps.src/interpfilter.c ================================================ /* Copyright (C) 2006, 2007 William McCune This file is part of the LADR Deduction Library. The LADR Deduction Library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2. The LADR Deduction Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with the LADR Deduction Library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "../ladr/top_input.h" #include "../ladr/interp.h" #define PROGRAM_NAME "interpfilter" #include "../VERSION_DATE.h" static char Help_string[] = "\nThis program takes a file of clauses/formulas (arg 1), a test to\n" "apply (arg 2), and a stream of interpretations (from stdin).\n" "The tests are [all_true,some_true,all_false,some_false. We print\n" "(to stdout) the interpretations that satisfy the test.\n\n" "For example, if the set of claues consists of associativity \n" "and commutativity (AC), we can remove AC models by using the\n" "some_false test.\n" "For example,\n\n" " interpfilter clauses some_false < interps.in > interps.out\n\n"; /************* * * find_clause(topforms, interp) * * Return the first clause that has the requested value (TRUE or FALSE) * in the interpretation. Return NULL on failure. * *************/ static Topform find_clause(Plist topforms, Interp interp, BOOL requested_val) { Plist p = topforms; while (p != NULL) { BOOL val = eval_topform(p->v, interp); if (val == requested_val) return p->v; else p = p->next; } return NULL; } /* find_clause */ enum {ALL_TRUE, SOME_TRUE, ALL_FALSE, SOME_FALSE}; int main(int argc, char **argv) { FILE *clause_fp; Term t; int i; Interp interp; unsigned long int checked = 0; unsigned long int passed = 0; Plist topforms; int operation = -1; BOOL commands = string_member("commands", argv, argc); if (string_member("help", argv, argc) || string_member("help", argv, argc) || argc < 3) { printf("\n%s, version %s, %s\n",PROGRAM_NAME,PROGRAM_VERSION,PROGRAM_DATE); printf("%s", Help_string); exit(1); } if (string_member("all_true", argv, argc)) operation = ALL_TRUE; else if (string_member("some_true", argv, argc)) operation = SOME_TRUE; else if (string_member("all_false", argv, argc)) operation = ALL_FALSE; else if (string_member("some_false", argv, argc)) operation = SOME_FALSE; else fatal_error("interpfilter: operation should be {all,some}_{true,false}"); clause_fp = fopen(argv[1], "r"); if (clause_fp == NULL) fatal_error("interpfilter: clause file cannot be opened for reading"); init_standard_ladr(); i = register_attribute("label", STRING_ATTRIBUTE); /* ignore these */ i = register_attribute("answer", TERM_ATTRIBUTE); /* ignore these */ if (commands) { t = read_commands(clause_fp, stderr, FALSE, KILL_UNKNOWN); if (!is_term(t, "topforms", 1) && !is_term(t, "formulas", 1)) fatal_error("interpfilter: formulas(...) not found"); } topforms = read_clause_or_formula_list(clause_fp, stderr); fclose(clause_fp); /* Print each interpretation on stdin that satisfies the query. */ t = read_term(stdin, stderr); while (t != NULL) { Topform c; checked++; interp = compile_interp(t, FALSE); c = find_clause(topforms, interp, operation == SOME_TRUE || operation == ALL_FALSE); if ((c && (operation == SOME_TRUE || operation == SOME_FALSE)) || (!c && (operation == ALL_TRUE || operation == ALL_FALSE ))) { passed++; fprint_interp_standard(stdout, interp); } zap_interp(interp); zap_term(t); t = read_term(stdin, stderr); } printf("%% %s %s %s: checked %lu, passed %lu, %.2f seconds.\n", PROGRAM_NAME, argv[1], argv[2], checked, passed, user_seconds()); exit(passed > 0 ? 0 : 1); } /* main */ ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/interpformat.c ================================================ /* Copyright (C) 2006, 2007 William McCune This file is part of the LADR Deduction Library. The LADR Deduction Library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2. The LADR Deduction Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with the LADR Deduction Library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Format an interpretation in various ways */ #include "../ladr/top_input.h" #include "../ladr/interp.h" #include "../ladr/banner.h" #define PROGRAM_NAME "modelformat" #include "../VERSION_DATE.h" static char Help_string[] = "\nThis program reads interpretations in standard format\n" "(from stdin or with -f ). The input can be just interps\n" "(with or without list(interpretations)) or a Mace4 output file.\n" "It and takes a command-line argument saying how to print the interps:\n\n" " standard : one line per operation\n" " standard2 : standard, with binary operations in a square (default)\n" " portable : list of lists, suitable for parsing by Python, GAP, etc.\n" " tabular : as nice tables\n" " raw : similar to standard, but without punctuation\n" " cooked : as terms, e.g., f(0,1)=2\n" " tex : formatted for LaTeX\n" " xml : XML\n\n" "Also, argument \"output ''\" is accepted.\n\n"; enum {STANDARD, STANDARD2, PORTABLE, TABULAR, RAW, COOKED, TEX, XML}; /************* * * read_next_section() * *************/ static String_buf read_next_section(FILE *fp) { char line[1000], *s; /* the first 999 chars of the line */ String_buf sb = get_string_buf(); BOOL ok = FALSE; s = fgets(line, 1000, fp); while (s && !substring("==== end of ", s)) { if (ok) sb_append(sb, s); else if (initial_substring("====", s)) ok = TRUE; s = fgets(line, 1000, fp); } if (!s) fatal_error("read_next_section, \"==== end of \" not found"); return sb; } /* read_next_section */ /************* * * read_mace4_input() * *************/ static String_buf read_mace4_input(FILE *fp) { char line[1000], *s; /* the first 999 chars of the line */ String_buf sb = get_string_buf(); BOOL ok = FALSE; s = fgets(line, 1000, fp); while (s && !substring("==== end of input", s)) { if (!ok && (initial_substring("clauses(", s) || initial_substring("formulas(", s))) { if (sb_size(sb) != 0) sb_append(sb, "\n"); /* no newline before first list */ ok = TRUE; } if (ok) { sb_append(sb, s); if (initial_substring("end_of_list.", s)) ok = FALSE; } s = fgets(line, 1000, fp); } if (!s) fatal_error("read_mace4_input, \"==== end of input\" not found"); return sb; } /* read_mace4_input */ /************* * * read_to_line() * *************/ static BOOL read_to_line(FILE *fp, char *str) { char line[1000], *s; /* the first 999 chars of the line */ s = fgets(line, 1000, fp); while (s && !substring(str, line)) s = fgets(line, 1000, fp); return s != NULL; } /* read_to_line */ /************* * * next_interp() * *************/ static Term next_interp(FILE *fp, BOOL mace4_file) { if (mace4_file) { if (read_to_line(fp, "= MODEL =")) return read_term(fp, stderr); else return NULL; } else { Term t = read_term(fp, stderr); if (t == NULL) return NULL; else if (is_term(t, "terms", 1) || is_term(t, "list", 1) || end_of_list_term(t)) { zap_term(t); return next_interp(fp, FALSE); } else return t; } } /* next_interp */ int main(int argc, char **argv) { BOOL mace4_file; /* list of interps or mace4 output */ BOOL wrap; /* enclose output in list(interpretations). */ int type, rc, count; Term t; String_buf heading, mace4_input; FILE *fin = stdin; char *filename = NULL; Plist output_strings = NULL; if (string_member("help", argv, argc) || string_member("-help", argv, argc)) { printf("\n%s, version %s, %s\n",PROGRAM_NAME,PROGRAM_VERSION,PROGRAM_DATE); printf("%s", Help_string); exit(1); } else if (string_member("standard", argv, argc)) type = STANDARD; else if (string_member("standard2", argv, argc)) type = STANDARD2; else if (string_member("portable", argv, argc)) type = PORTABLE; else if (string_member("tabular", argv, argc)) type = TABULAR; else if (string_member("raw", argv, argc)) type = RAW; else if (string_member("cooked", argv, argc)) type = COOKED; else if (string_member("tex", argv, argc)) type = TEX; else if (string_member("xml", argv, argc)) type = XML; else { type = STANDARD2; /* default */ } wrap = string_member("wrap", argv, argc); rc = which_string_member ("output", argv, argc); if (rc == -1) rc = which_string_member ("-output", argv, argc); if (rc > 0) { if (rc+1 >= argc) fatal_error("interpformat: missing \"output\" argument"); else output_strings = split_string(argv[rc+1]); } rc = which_string_member("-f", argv, argc); if (rc == -1) fin = stdin; else if (rc+1 >= argc) fatal_error("file name missing"); else { filename = argv[rc+1]; fin = fopen(filename, "r"); if (fin == NULL) { char s[100]; sprintf(s, "file %s not found", argv[rc+1]); fatal_error(s); } } /* Input can be any of 3 types: 1. stream of interps 2. list of interps, surrounded by list(interpretations) .. end_of_list 3. Mace4 output file, with "= MODEL =" ... "= end of model =" See next_interp(). */ rc = getc(fin); mace4_file = (rc == '='); if (!mace4_file) ungetc(rc, fin); init_standard_ladr(); simple_parse(TRUE); if (mace4_file) { heading = read_next_section(fin); mace4_input = read_mace4_input(fin); } else { heading = NULL; mace4_input = NULL; } /* Okay, read and format the interps. */ if (type == XML) { printf("\n"); printf("\n\n"); printf("\n\n"); printf("\n\n"); if (fin != stdin) printf("\n%s\n", filename); if (heading) { printf("\n\n"); } if (mace4_input) { printf("\n\n"); } } if (wrap) printf("list(interpretations).\n"); t = next_interp(fin, mace4_file); count = 0; while (t != NULL) { Interp a; count++; if (output_strings != NULL) interp_remove_others(t, output_strings); a = compile_interp(t, TRUE); if (type == STANDARD) fprint_interp_standard(stdout, a); else if (type == STANDARD2) fprint_interp_standard2(stdout, a); else if (type == PORTABLE) { printf("%s\n", count == 1 ? "[" : ","); fprint_interp_portable(stdout, a); } else if (type == TABULAR) fprint_interp_tabular(stdout, a); else if (type == COOKED) fprint_interp_cooked(stdout, a); else if (type == RAW) fprint_interp_raw(stdout, a); else if (type == TEX) fprint_interp_tex(stdout, a); else if (type == XML) fprint_interp_xml(stdout, a); else fprint_interp_standard2(stdout, a); zap_interp(a); zap_term(t); t = next_interp(fin, mace4_file); } if (type == XML) printf("\n\n"); else if (type == PORTABLE) printf("\n]\n"); if (wrap) printf("end_of_list.\n"); exit(count > 0 ? 0 : 2); } /* main */ ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/isofilter.c ================================================ /* Copyright (C) 2006, 2007 William McCune This file is part of the LADR Deduction Library. The LADR Deduction Library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2. The LADR Deduction Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with the LADR Deduction Library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Take a stream of interpretations and remove the isomorphic ones. */ #include "../ladr/top_input.h" #include "../ladr/interp.h" #define PROGRAM_NAME "isofilter" #include "../VERSION_DATE.h" static char Help_string[] = "\nThis program reads a stream of interpretations (from stdin) and removes\n" "isomorphic ones.\n\n" "Interpretations look like this:\n\n" "interpretation(2, [\n" " function(A, [1]),\n" " function(e(_,_), [1,0,0,1]),\n" " relation(P(_), [0,1])]).\n\n" "Argument \"ignore_constants\" is accepted.\n" "Argument \"wrap\" is accepted.\n" "Argument \"check ''\" is accepted.\n" "Argument \"output ''\" is accepted.\n" "Argument \"discrim ''\" is accepted.\n"; static BOOL iso_member(Interp a, Plist interps) { if (interps == NULL) return FALSE; else if (isomorphic_interps(a, interps->v, TRUE)) return TRUE; else return iso_member(a, interps->next); } /* iso_member */ int main(int argc, char **argv) { Term t; Plist interps = NULL; int interps_read = 0; int interps_kept = 0; BOOL ignore_constants = FALSE; BOOL wrap = FALSE; /* surround output with list(interpretations) */ Plist check_strings = NULL; Plist output_strings = NULL; Plist discriminators = NULL; int rc, i; init_standard_ladr(); simple_parse(TRUE); if (string_member("help", argv, argc) || string_member("-help", argv, argc)) { printf("\n%s, version %s, %s\n",PROGRAM_NAME,PROGRAM_VERSION,PROGRAM_DATE); printf("%s", Help_string); exit(1); } if (string_member("ignore_constants", argv, argc) || string_member("-ignore_constants", argv, argc)) ignore_constants = TRUE; rc = which_string_member("check", argv, argc); if (rc == -1) rc = which_string_member("-check", argv, argc); if (rc > 0) { if (rc+1 >= argc) fatal_error("isofilter: missing \"check\" argument"); else check_strings = split_string(argv[rc+1]); } rc = which_string_member("output", argv, argc); if (rc == -1) rc = which_string_member("-output", argv, argc); if (rc > 0) { if (rc+1 >= argc) fatal_error("isofilter: missing \"output\" argument"); else output_strings = split_string(argv[rc+1]); } rc = which_string_member("discrim", argv, argc); if (rc == -1) rc = which_string_member("-discrim", argv, argc); if (rc > 0) { if (rc+1 >= argc) fatal_error("isofilter: missing \"discrim\" argument"); else { FILE *fp = fopen(argv[rc+1], "r"); if (fp == NULL) fatal_error("discrim file cannot be opened for reading"); discriminators = read_clause_list(fp, stderr, TRUE); } } if (string_member("wrap", argv, argc) || string_member("-wrap", argv, argc)) wrap = TRUE; /* Input is a stream of interpretations. */ if (wrap) printf("list(interpretations).\n\n"); t = read_term(stdin, stderr); while (t != NULL) { Interp a, c; Term twork; interps_read++; if (ignore_constants) interp_remove_constants(t); /* constants not checked or output */ twork = copy_term(t); if (check_strings) interp_remove_others(twork, check_strings); a = compile_interp(twork, FALSE); c = normal3_interp(a, discriminators); /* p_interp_profile(c, discriminators); */ if (iso_member(c, interps)) zap_interp(c); else { /* print the original interp */ Interp b; if (output_strings) interp_remove_others(t, output_strings); b = compile_interp(t, FALSE); fprint_interp_standard2(stdout, b); fflush(stdout); zap_interp(b); interps = plist_append(interps, c); /* keep the normal interp */ interps_kept++; } zap_interp(a); zap_term(t); zap_term(twork); t = read_term(stdin, stderr); if (interps_read % 1000 == 0) fprintf(stderr, "%s: %d interps read, %d kept\n", PROGRAM_NAME, interps_read, interps_kept); } printf("%% %s", PROGRAM_NAME); for(i = 1; i < argc; i++) printf(" %s", argv[i]); printf(": input=%d, kept=%d, ", interps_read, interps_kept); printf("checks=%lu, perms=%lu, ", iso_checks(), iso_perms()); printf("%.2f seconds.\n", user_seconds()); if (wrap) printf("\nend_of_list.\n"); exit(0); } /* main */ ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/isofilter0.c ================================================ /* Copyright (C) 2006, 2007 William McCune This file is part of the LADR Deduction Library. The LADR Deduction Library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2. The LADR Deduction Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with the LADR Deduction Library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Take a stream of interpretations and remove the isomorphic ones. */ #include "../ladr/top_input.h" #include "../ladr/interp.h" #define PROGRAM_NAME "isofilter0" #include "../VERSION_DATE.h" static char Help_string[] = "\nThis program reads a stream of interpretations (from stdin) and removes\n" "isomorphic ones.\n\n" "Interpretations look like this:\n\n" "interpretation(2, [\n" " function(A, [1]),\n" " function(e(_,_), [1,0,0,1]),\n" " relation(P(_), [0,1])]).\n\n" "Argument \"ignore_constants\" is accepted.\n" "Argument \"wrap\" is accepted.\n" "Argument \"check ''\" is accepted.\n" "Argument \"output ''\" is accepted.\n"; static BOOL iso_member(Interp a, Plist interps) { if (interps == NULL) return FALSE; else if (isomorphic_interps(a, interps->v, TRUE)) return TRUE; else return iso_member(a, interps->next); } /* iso_member */ int main(int argc, char **argv) { Term t; Plist interps = NULL; int interps_read = 0; int interps_kept = 0; BOOL ignore_constants = FALSE; BOOL wrap = FALSE; /* surround output with list(interpretations) */ Plist check_strings = NULL; Plist output_strings = NULL; int rc, i; init_standard_ladr(); if (string_member("help", argv, argc) || string_member("-help", argv, argc)) { printf("\n%s, version %s, %s\n",PROGRAM_NAME,PROGRAM_VERSION,PROGRAM_DATE); printf("%s", Help_string); exit(1); } if (string_member("ignore_constants", argv, argc) || string_member("-ignore_constants", argv, argc)) ignore_constants = TRUE; rc = which_string_member("check", argv, argc); if (rc == -1) rc = which_string_member("-check", argv, argc); if (rc > 0) { if (rc+1 >= argc) fatal_error("isofilter: missing \"check\" argument"); else check_strings = split_string(argv[rc+1]); } rc = which_string_member("output", argv, argc); if (rc == -1) rc = which_string_member("-output", argv, argc); if (rc > 0) { if (rc+1 >= argc) fatal_error("isofilter: missing \"output\" argument"); else output_strings = split_string(argv[rc+1]); } if (string_member("wrap", argv, argc) || string_member("-wrap", argv, argc)) wrap = TRUE; /* Input is a stream of interpretations. */ if (wrap) printf("list(interpretations).\n\n"); t = read_term(stdin, stderr); while (t != NULL) { Interp a, c; Term twork; interps_read++; if (ignore_constants) interp_remove_constants(t); /* constants not checked or output */ twork = copy_term(t); if (check_strings) interp_remove_others(twork, check_strings); a = compile_interp(twork, FALSE); c = normal_interp(a); if (iso_member(c, interps)) zap_interp(c); else { /* print the original interp */ Interp b; if (output_strings) interp_remove_others(t, output_strings); b = compile_interp(t, FALSE); fprint_interp_standard2(stdout, b); fflush(stdout); zap_interp(b); interps = plist_append(interps, c); /* keep the normal interp */ interps_kept++; } zap_interp(a); zap_term(t); zap_term(twork); t = read_term(stdin, stderr); if (interps_read % 1000 == 0) fprintf(stderr, "%s: %d interps read, %d kept\n", PROGRAM_NAME, interps_read, interps_kept); } printf("%% %s", PROGRAM_NAME); for(i = 1; i < argc; i++) printf(" %s", argv[i]); printf(": input=%d, kept=%d, ", interps_read, interps_kept); printf("checks=%lu, perms=%lu, ", iso_checks(), iso_perms()); printf("%.2f seconds.\n", user_seconds()); if (wrap) printf("\nend_of_list.\n"); exit(0); } /* main */ ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/isofilter2.c ================================================ /* Copyright (C) 2006, 2007 William McCune This file is part of the LADR Deduction Library. The LADR Deduction Library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2. The LADR Deduction Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with the LADR Deduction Library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Take a stream of interpretations and remove the isomorphic ones. */ #include "../ladr/top_input.h" #include "../ladr/interp.h" #define PROGRAM_NAME "isofilter2" #include "../VERSION_DATE.h" static char Help_string[] = "\nThis program reads a stream of interpretations (from stdin) and removes\n" "isomorphic ones.\n\n" "Interpretations look like this:\n\n" "interpretation(2, [\n" " function(A, [1]),\n" " function(e(_,_), [1,0,0,1]),\n" " relation(P(_), [0,1])]).\n\n" "Argument \"ignore_constants\" is accepted.\n" "Argument \"wrap\" is accepted.\n" "Argument \"check ''\" is accepted.\n" "Argument \"output ''\" is accepted.\n" "Argument \"discrim ''\" is accepted.\n"; static BOOL interp_member(Interp a, Plist interps) { if (interps == NULL) return FALSE; else if (ident_interp(a, interps->v)) return TRUE; else return interp_member(a, interps->next); } /* interp_member */ int main(int argc, char **argv) { Term t; Plist interps = NULL; int interps_read = 0; int interps_kept = 0; BOOL ignore_constants = FALSE; BOOL wrap = FALSE; /* surround output with list(interpretations) */ Plist check_strings = NULL; Plist output_strings = NULL; Plist discriminators = NULL; int rc, i; init_standard_ladr(); if (string_member("help", argv, argc) || string_member("-help", argv, argc)) { printf("\n%s, version %s, %s\n",PROGRAM_NAME,PROGRAM_VERSION,PROGRAM_DATE); printf("%s", Help_string); exit(1); } if (string_member("ignore_constants", argv, argc) || string_member("-ignore_constants", argv, argc)) ignore_constants = TRUE; rc = which_string_member("check", argv, argc); if (rc == -1) rc = which_string_member("-check", argv, argc); if (rc > 0) { if (rc+1 >= argc) fatal_error("isofilter: missing \"check\" argument"); else check_strings = split_string(argv[rc+1]); } rc = which_string_member("output", argv, argc); if (rc == -1) rc = which_string_member("-output", argv, argc); if (rc > 0) { if (rc+1 >= argc) fatal_error("isofilter: missing \"output\" argument"); else output_strings = split_string(argv[rc+1]); } rc = which_string_member("discrim", argv, argc); if (rc == -1) rc = which_string_member("-discrim", argv, argc); if (rc > 0) { if (rc+1 >= argc) fatal_error("isofilter: missing \"discrim\" argument"); else { FILE *fp = fopen(argv[rc+1], "r"); if (fp == NULL) fatal_error("discrim file cannot be opened for reading"); discriminators = read_clause_list(fp, stderr, TRUE); } } if (string_member("wrap", argv, argc) || string_member("-wrap", argv, argc)) wrap = TRUE; /* Input is a stream of interpretations. */ if (wrap) printf("list(interpretations).\n\n"); t = read_term(stdin, stderr); while (t != NULL) { Interp a, b, c; Term twork; interps_read++; if (ignore_constants) interp_remove_constants(t); /* constants not checked or output */ twork = copy_term(t); if (check_strings) interp_remove_others(twork, check_strings); a = compile_interp(twork, FALSE); b = normal3_interp(a, discriminators); c = canon_interp(b); if (interp_member(c, interps)) zap_interp(c); else { /* print the original interp */ Interp d; if (output_strings) interp_remove_others(t, output_strings); d = compile_interp(t, FALSE); fprint_interp_standard2(stdout, d); fflush(stdout); zap_interp(d); interps = plist_append(interps, c); /* keep the canon interp */ interps_kept++; } zap_interp(a); zap_interp(b); zap_term(t); zap_term(twork); t = read_term(stdin, stderr); if (interps_read % 1000 == 0) fprintf(stderr, "%s: %d interps read, %d kept\n", PROGRAM_NAME, interps_read, interps_kept); } printf("%% %s", PROGRAM_NAME); for(i = 1; i < argc; i++) printf(" %s", argv[i]); printf(": input=%d, kept=%d, ", interps_read, interps_kept); printf("checks=%lu, perms=%lu, ", iso_checks(), iso_perms()); printf("%.2f seconds.\n", user_seconds()); if (wrap) printf("\nend_of_list.\n"); exit(0); } /* main */ ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/latfilter.c ================================================ /* Copyright (C) 2006, 2007 William McCune This file is part of the LADR Deduction Library. The LADR Deduction Library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2. The LADR Deduction Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with the LADR Deduction Library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "../ladr/top_input.h" #define PROGRAM_NAME "latfilter" #include "../VERSION_DATE.h" static char Help_string[] = "\nThis program takes a stream of meet/join equations (from stdin)\n" "and writes (to stdout) those that are lattice identities.\n" "Whitman's procedure is used. An optional argument 'fast' says\n" "to read and write the clauses in fastparse form (e.g., =mxxx.).\n" "The base terms can be either constants or variables.\n\n" "Example LT identities.\n\n" " ordinary: 'x ^ (x v y) = x.'\n" " fastparse: '=mxjxyx.' (exactly one per line, without spaces)\n\n" "Another optional argument 'x' says to output the equations that are\n" "*not* OL identities.\n\n"; /* We cache the important symbol numbers to avoid symbol table lookups. */ int Meet_sym; /* ^ */ int Join_sym; /* v */ int M_sym; /* m */ int J_sym; /* j */ /************* * * meet_term() * *************/ BOOL meet_term(Term t) { return (SYMNUM(t) == Meet_sym || SYMNUM(t) == M_sym); } /* meet_term */ /************* * * join_term() * *************/ BOOL join_term(Term t) { return (SYMNUM(t) == Join_sym || SYMNUM(t) == J_sym); } /* join_term */ /************* * * lattice_leq() * *************/ /* DOCUMENTATION Given lattice terms S and T, this routine checks if S <= T. It is assumed that S and T are in terms of binary operations meet ("^", "meet", or "m") and join ("v", "join", or "j").

Whitman's algorithm (from the 1930s) is used, as described in "Free Lattices", by Freese, Jezek, and Nation, AMS Mathematical Surveys and Monographs, Vol. 42 (1991).

Solutions to subproblems are not cached, so the behavior of this implementation can be exponential. */ BOOL lattice_leq(Term s, Term t) { if (VARIABLE(s) && (VARIABLE(t))) /* (1) */ return (VARNUM(s) == VARNUM(t)); else if (CONSTANT(s) && (CONSTANT(t))) /* (1) */ return (SYMNUM(s) == SYMNUM(t)); else if (join_term(s)) /* (2) */ return (lattice_leq(ARG(s,0), t) && lattice_leq(ARG(s,1), t)); else if (meet_term(t)) /* (3) */ return (lattice_leq(s, ARG(t,0)) && lattice_leq(s, ARG(t,1))); else if ((VARIABLE(s) || CONSTANT(s)) && join_term(t)) /* (4) */ return (lattice_leq(s, ARG(t,0)) || lattice_leq(s, ARG(t,1))); else if (meet_term(s) && (VARIABLE(t) || CONSTANT(t))) /* (5) */ return (lattice_leq(ARG(s,0), t) || lattice_leq(ARG(s,1), t)); else if (meet_term(s) && join_term(t)) /* (6) */ return (lattice_leq(s, ARG(t,0)) || lattice_leq(s, ARG(t,1)) || lattice_leq(ARG(s,0), t) || lattice_leq(ARG(s,1), t)); else return FALSE; } /* lattice_leq */ /************* * * lattice_identity() * *************/ int lattice_identity(Term atom) { return (atom != NULL && is_symbol(SYMNUM(atom), "=", 2) && lattice_leq(ARG(atom,0), ARG(atom,1)) && lattice_leq(ARG(atom,1), ARG(atom,0))); } /* lattice_identity */ /************* * * main() * *************/ int main(int argc, char **argv) { Term t; unsigned long int checked = 0; unsigned long int passed = 0; BOOL fast_parse; BOOL output_non_identities; if (string_member("help", argv, argc) || string_member("-help", argv, argc)) { printf("\n%s, version %s, %s\n",PROGRAM_NAME,PROGRAM_VERSION,PROGRAM_DATE); printf("%s", Help_string); exit(1); } fast_parse = string_member("fast", argv, argc); output_non_identities = string_member("x", argv, argc); /* Assume stdin contains equality units. For each, if it is a lattice identity, print it to stdout. Note that if we're not using fastparse, we use read_term which does not "set_variables"; that is, the terms that you expect to be variables are still constants. That's okay, because the lattice identity checker doesn't care. */ if (fast_parse) { /* Declare the symbols for fastparse. */ fast_set_defaults(); } else { init_standard_ladr(); } /* Cache the symbol numbers for decision procedure lattice_leq. */ M_sym = str_to_sn("m", 2); J_sym = str_to_sn("j", 2); Meet_sym = str_to_sn("^", 2); /* not used for fastparse */ Join_sym = str_to_sn("v", 2); /* not used for fastparse */ t = term_reader(fast_parse); while (t != NULL) { BOOL ident = lattice_identity(t); checked++; if ((!output_non_identities && ident) || (output_non_identities && !ident)) { passed++; term_writer(t, fast_parse); fflush(stdout); } zap_term(t); t = term_reader(fast_parse); } printf("%% latfilter%s: checked %lu, passed %lu, user %.2f, system %.2f.\n", output_non_identities ? " x" : "", checked, passed, user_seconds(), system_seconds()); exit(0); } /* main */ ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/lt.dist ================================================ x ^ (y v z) = (x ^ y) v (x ^ z). ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/lt.m3 ================================================ interpretation( 5, [number = 1,seconds = 0], [ function(^(_,_), [ 0,0,0,0,0, 0,1,2,3,4, 0,2,2,0,0, 0,3,0,3,0, 0,4,0,0,4]), function(v(_,_), [ 0,1,2,3,4, 1,1,1,1,1, 2,1,2,1,1, 3,1,1,3,1, 4,1,1,1,4])]). ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/miniscope.c ================================================ /* Copyright (C) 2006, 2007 William McCune This file is part of the LADR Deduction Library. The LADR Deduction Library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2. The LADR Deduction Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with the LADR Deduction Library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "../ladr/top_input.h" #include "../ladr/cnf.h" #define PROGRAM_NAME "miniscope" #include "../VERSION_DATE.h" /************* * * main() * *************/ int main(int argc, char **argv) { Plist formulas; Formula f; init_standard_ladr(); formulas = read_formula_list(stdin, stderr); f = formulas_to_conjunction(formulas); printf("\n------------------------\n"); printf("\nbefore (denial): "); p_formula(f); f = nnf(negate(f)); printf("\nnnf (positive): "); p_formula(f); f = miniscope_formula(f, 0); if (f->type == AND_FORM) { int i; printf("result is %d subproblems\n", f->arity); for (i = 0; i < f->arity; i++) { printf("\nproblem %d: ", i+1); p_formula(negate(f->kids[i])); } } else { printf("\nresult indivisible\n\n"); p_formula(negate(f)); } printf("exiting %s\n", PROGRAM_NAME); exit(0); } /* main */ ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/mirror-flip.c ================================================ /* Copyright (C) 2006, 2007 William McCune This file is part of the LADR Deduction Library. The LADR Deduction Library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2. The LADR Deduction Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with the LADR Deduction Library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "../ladr/top_input.h" #define PROGRAM_NAME "mirror-flip" #include "../VERSION_DATE.h" static char Help_string[] = "\nThis program ... \n"; static BOOL Debug = FALSE; /************* * * mirror_term() * *************/ static Term mirror_term(Term t) { if (ARITY(t) == 2) { Term alpha = ARG(t,0); Term beta = ARG(t,1); ARG(t,0) = mirror_term(beta); ARG(t,1) = mirror_term(alpha); } else if (ARITY(t) == 3) { Term alpha = ARG(t,0); Term beta = ARG(t,1); Term gamma = ARG(t,2); ARG(t,0) = mirror_term(gamma); ARG(t,1) = mirror_term(beta); ARG(t,2) = mirror_term(alpha); } return t; } /* mirror_term */ /************* * * mirror() * *************/ static Topform mirror(Topform c) { Topform m = copy_clause(c); Term atom = m->literals->atom; ARG(atom,0) = mirror_term(ARG(atom, 0)); ARG(atom,1) = mirror_term(ARG(atom, 1)); renumber_variables(m, MAX_VARS); return m; } /* mirror */ /************* * * flip() * *************/ static Topform flip(Topform c) { Topform f = copy_clause(c); Term atom = f->literals->atom; Term alpha = ARG(atom,0); ARG(atom,0) = ARG(atom,1); ARG(atom,1) = alpha; renumber_variables(f, MAX_VARS); return f; } /* flip */ /************* * * contains_mirror_flip() * *************/ static BOOL contains_mirror_flip(Topform c, Plist kept) { Topform f = flip(c); Topform m = mirror(c); Topform fm = flip(m); Plist p; BOOL found; if (Debug) { printf("\ntesting: "); f_clause(c); printf("flip: "); f_clause(f); printf("mirror: "); f_clause(m); printf("fm: "); f_clause(fm); } for (p = kept, found = FALSE; p && !found; p = p->next) { Topform k = p->v; if (clause_ident(k->literals, c->literals) || clause_ident(k->literals, f->literals) || clause_ident(k->literals, m->literals) || clause_ident(k->literals, fm->literals)) found = TRUE; } delete_clause(f); delete_clause(m); delete_clause(fm); return found; } /* contains_mirror_flip */ int main(int argc, char **argv) { Topform c; int i; int number_read = 0; int number_kept = 0; Plist kept = NULL; if (string_member("help", argv, argc) || string_member("-help", argv, argc)) { printf("\n%s, version %s, %s\n",PROGRAM_NAME,PROGRAM_VERSION,PROGRAM_DATE); printf("%s", Help_string); exit(1); } init_standard_ladr(); i = register_attribute("label", STRING_ATTRIBUTE); /* ignore these */ i = register_attribute("answer", TERM_ATTRIBUTE); /* ignore these */ c = read_clause(stdin, stderr); while (c != NULL && !end_of_list_clause(c)) { number_read++; if (!contains_mirror_flip(c, kept)) { number_kept++; kept = plist_prepend(kept, c); fwrite_clause(stdout, c, CL_FORM_BARE); } c = read_clause(stdin, stderr); } printf("%% mirror-flip: %d read, %d kept, %.2f seconds.\n", number_read, number_kept, user_seconds()); exit(0); } /* main */ ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/notes ================================================ Directproof. This applies to Horn sets in which the only relation is equality, and the denial is a unit. It starts with a Prover9 proof. If there are nonunit clauses in the proof, they must be used with hyperresolution, or positive resolution (e.g, no UR or paramodulation). Def bidirectional(proof): a proof is bidirectional if a negative clause is used for something (including flipping) other than unit conflict. Algorithm: While the proof is bidirectional: eliminate the last backward step. Note that if a proof is bidirectional, there is a backward step right at the end, so all of the transformations are at the end of the proof (involve the empty clause). Cases handled so far: Case 1: Flip negative clause then apply unit conflict: 1. a != b. [ ... ] 2. b != a. [1,flip] 3. b = a. [ ... ] 4. $F [resolve,2,3] Transform this in the obvious way by removing steps 2 and 4, flipping 3, and then applying unit conflict. Case 2: Para into negative clause to get an instance of x != x. Case 2a: Para into top of negative clause 1. a = b. [ ... ] 2. a != b. [ ... ] 5. b != b. [para,1,3] 6. $F [3,xx_res] (1 and 2 give unit conflict, but the proof can be as shown.) Transform this by simply doing a unit conflict between 1 and 2 If para goes from or into the other side, we might have to flip the positive one first. Case 2b: Para into proper subterm of neg clause. 1. a = b. [ ... ] 2. f(g(a)) != f(g(b)). [ ... ] 3. f(g(b)) != f(g(b)). [para,1(left),2] 4. $F [3,xx_res] Transformation: We have to derive f(g(a)) = f(g(b)) from a=b. First assume f(g(x)) = f(g(x)), then para the *opposite* side of a=b into the position in f(g(x)) = f(g(x)) that corresponds to the into position of 2, that is the first occurrence of x. Result: 1. a = b. [ ... ] 2. f(g(a)) != f(g(b)). [ ... ] 5. f(g(x)) = f(g(x)). [assumption] 6. f(g(a)) = f(g(b)). [para,1(right),5] 7. $F [resolve,2,6] (Instead we could have an inference rule that takes a=b and derives g(a) = g(b), and then apply it again to get f(g(a))=f(g(b)). I have two objections to this: first, the IVY proof checker cannot handle inferences like that; second: you have to build up the equality you need one step at a time.) Case 3: Para into a neg clause, then unit conflict with some positive clause. 1. a = b1. [ ... ] 2. f[a] != c. [ ... ] 3. f[b2] = c. [ ... ] 4. f[b1] != c. [para,1(left),2] 5. $F [resolve,3,4] (b1 and b2 unify) Case 3a: In clause 3, term b2 exists. Transformation: Para opposite side of 1 into position in 3 (b2) corresponding to the into position of 2. Then unit conflict with 2. Result: 1. a = b1. [ ... ] 2. f[a] != c. [ ... ] 3. f[b2] = c. [ ... ] 6. f[a] = c. [para,1(right),3] 7. $F [resolve 2,6] Case 3b: In clause 3, term at position b2 does not exist. Transformation: Instantiate clause 3 (minimally) so that the position exists, then proceed as in case 3a. An example of case 3b: Bidirectional: 1 a = b. [assumption]. 2 f(c,g(h(g(a),d))) != g(h(g(b),d)). [assumption]. 3 f(c,x) = x. [assumption]. 4 f(c,g(h(g(b),d))) != g(h(g(b),d)). [para(1(a,1),2(a,1,2,1,1,1))]. 5 $F. [resolve(3,a,4,a)]. Transformed: 1 a = b. [assumption]. 2 f(c,g(h(g(a),d))) != g(h(g(b),d)). [assumption]. 3 f(c,x) = x. [assumption]. 6 f(c,g(h(g(y),z))) = g(h(g(y),z)). [instantiate(3,[[x:g(h(g(y),z))]])]. 7 f(c,g(h(g(a),x))) = g(h(g(b),x)). [para(1(a,2),6(a,1,2,1,1,1))]. 8 $F. [resolve(7,a,2,a)]. ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/old/README ================================================ % prover9 -f t1.in > t1.out % mace4 -f t1.in > t1.mout % prooftrans xml -f t1.out > t1.xml % modelformat xml < t1.mout > t1.xml % clausefilter interps true_in_all fast < clauses.in > clauses.out Filter clauses based on interps % clausetester interps < clauses.in Interps in which each clause is true. % interpfilter clauses some_false < interps.in > interps.out Filter interps based on clauses. % isofilter < interps.in > interps.out % renamer < clauses.in > clauses.out Renumbers variables. % rewriter demods < terms.in > terms.out % hints_rewriter demods < terms.in > terms.out % upper-covers < lattices.in > lattices.out =============================================== % idfilter demods < terms.in > terms.out Try to rewrite equations to x=x. % latfilter < eqs.in > eqs.out % olfilter < eqs.in > eqs.out % unfast < terms.in > terms.out % miniscope ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/old/cdprover.c ================================================ #include "../ladr/top_input.h" #include "../ladr/subsume.h" #include "../ladr/clause2.h" #define PROGRAM_NAME "cdprover" #define PROGRAM_VERSION "2005-A" #include "../PROGRAM_DATE.h" /************* * * first_lightest() * *************/ static Clause first_lightest(Plist p) { if (p == NULL) return NULL; else { Clause a = p->v; Clause b = first_lightest(p->next); if (b == NULL) return a; else return (a->weight <= b->weight ? a : b); } } /* first_lightest */ /************* * * extract_given_clause() * *************/ static Clause extract_given_clause(Plist *lst) { Clause c = first_lightest(*lst); *lst = plist_remove(*lst, c); return c; } /* extract_given_clause */ /************* * * subsumed_by_member() * *************/ static BOOL subsumed_by_member(Clause c, Plist p) { if (p == NULL) return FALSE; else if (subsumes(p->v, c)) return TRUE; else return subsumed_by_member(c, p->next); } /* subsumed_by_member */ /************* * * conflicts() * *************/ static Clause conflicts(Clause a, Clause b) { if (!unit_clause(a) || !unit_clause(b)) return NULL; else if (a->literals->sign == b->literals->sign) return NULL; else { Clause empty = NULL; Term a_atom = a->literals->atom; Term b_atom = b->literals->atom; Context ca = get_context(); Context cb = get_context(); Trail tr = NULL; if (unify(a_atom, ca, b_atom, cb, &tr)) { Ilist j = NULL; undo_subst(tr); empty = get_clause(); j = ilist_append(j, a->id); j = ilist_append(j, 1); j = ilist_append(j, b->id); j = ilist_append(j, 1); empty->justification = resolve_just(j, BINARY_RES_JUST); upward_clause_links(empty); assign_clause_id(empty); } free_context(ca); free_context(cb); return empty; } } /* conflicts */ /************* * * conflicts_with_member() * *************/ static Clause conflicts_with_member(Clause c, Plist p) { if (p == NULL) return NULL; else { Clause empty = conflicts(c, p->v); if (empty) return empty; else return conflicts_with_member(c, p->next); } } /* conflicts_with_member */ /************* * * cd() * *************/ static Clause cd(Clause maj, Clause min) { if (!unit_clause(maj) || !unit_clause(min)) return NULL; else if (!maj->literals->sign || !min->literals->sign) return NULL; else { Term a = ARG(maj->literals->atom,0); Term b = ARG(min->literals->atom,0); if (ARITY(a) != 2) return NULL; else { Clause resolvent = NULL; Term a0 = ARG(a,0); Term a1 = ARG(a,1); Context ca = get_context(); Context cb = get_context(); Trail tr = NULL; if (unify(a0, ca, b, cb, &tr)) { Term r = apply(a1, ca); Term r_atom = build_unary_term(SYMNUM(maj->literals->atom), r); Literal r_literal = get_literal(); Ilist j = NULL; r_literal->sign = TRUE; r_literal->atom = r_atom; resolvent = get_clause(); append_literal(resolvent, r_literal); j = ilist_append(j, maj->id); j = ilist_append(j, 1); j = ilist_append(j, min->id); j = ilist_append(j, 1); resolvent->justification = resolve_just(j, BINARY_RES_JUST); upward_clause_links(resolvent); renumber_variables(resolvent, MAX_VARS); undo_subst(tr); } free_context(ca); free_context(cb); return resolvent; } } } /* cd */ /************* * * cd_given() * *************/ static Plist cd_given(Clause given, Plist lst) { Plist resolvents = NULL; Plist p; for (p = lst; p != NULL; p = p->next) { Clause other = p->v; Clause result = cd(given, other); if (result) resolvents = plist_append(resolvents, result); result = cd(other, given); if (result) resolvents = plist_append(resolvents, result); } return resolvents; } /* cd_given */ /************* * * main() * *************/ int main(int argc, char **argv) { Plist sos, goals, usable, p; int given_count = 0; int generated_count = 0; int kept_count = 0; int just_att_id; init_standard_ladr(); just_att_id = register_attribute("just", TERM_ATTRIBUTE); sos = read_clause_list(stdin, stderr, TRUE); goals = read_clause_list(stdin, stderr, TRUE); usable = NULL; fwrite_clause_list(stdout, sos, "sos", CL_FORM_BARE); fwrite_clause_list(stdout, goals, "goals", CL_FORM_BARE); for (p = sos; p; p = p->next) { Clause c = p->v; Term just = get_term_attribute(c->attributes, just_att_id, 1); c->weight = clause_symbol_count(c); if (just) { int i; for (i = 0; i < ARITY(just); i++) { Term arg = ARG(just,i); int val; if (term_to_int(arg, &val)) { printf("justfication arg = %d\n", val); } } } } while (sos != NULL) { Plist resolvents, p; Clause given = extract_given_clause(&sos); /* updates sos */ given_count++; printf("given #%d (wt=%d): ", given_count, given->weight); fwrite_clause(stdout, given, CL_FORM_STD); usable = plist_append(usable, given); resolvents = cd_given(given, usable); for (p = resolvents; p; p = p->next) { Clause res = p->v; generated_count++; if (subsumed_by_member(res, usable) || subsumed_by_member(res, sos)) delete_clause(res); else { Clause empty_clause; kept_count++; assign_clause_id(res); res->weight = clause_symbol_count(res); sos = plist_append(sos, res); printf("kept (wt=%d): ", res->weight); fwrite_clause(stdout, res, CL_FORM_BARE); empty_clause = conflicts_with_member(res, goals); if (empty_clause) { Plist proof = get_clause_ancestors(empty_clause); printf("\n-------- PROOF --------\n"); for (p = proof; p; p = p->next) fwrite_clause(stdout, p->v, CL_FORM_BARE); printf("\n-------- end of proof -------\n"); zap_plist(proof); /* shallow */ exit(0); } } } } printf("exiting %s\n", PROGRAM_NAME); exit(0); } /* main */ ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/old/deny.c ================================================ #include "../ladr/top_input.h" #include "../ladr/clausify.h" #define PROGRAM_NAME "deny" #include "../VERSION_DATE.h" static char Help_string[] = "\nThis program takes a sequence of clauses and for each, it outputs\n" "the denial. This works for nonunit clauses, but it might not make\n" "much sense for them.\n" "\n" "Input is taken from stdin.\n" "\n" "Argument -c says to read commands and a list of clauses (mainly\n" "so you can give 'op' commands); otherwise a simple stream of clauses\n" "is read.\n\n"; int main(int argc, char **argv) { Formula f; BOOL commands; if (string_member("help", argv, argc) || string_member("-help", argv, argc) || string_member("-h", argv, argc)) { printf("\n%s, version %s, %s\n",PROGRAM_NAME,PROGRAM_VERSION,PROGRAM_DATE); printf("%s", Help_string); exit(1); } commands = string_member("-c", argv, argc); init_standard_ladr(); skolem_check(FALSE); /* don't check if Skolem symbols are already in use. */ if (commands) { Term t = read_commands(stdin, stderr, FALSE, KILL_UNKNOWN); if (!(is_term(t, "clauses", 1) || is_term(t, "formulas", 1))) fatal_error("deny: expecting clauses(...) or formulas(...)"); } /* Process each term on stdin. */ f = read_formula(stdin, stderr); while (f != NULL && (!commands || !end_of_list_formula(f))) { Plist clauses, p; f = universal_closure(f); f = negate(f); clauses = clausify_formula(f); for (p = clauses; p; p = p->next) { fwrite_clause(stdout, p->v, CL_FORM_BARE); zap_clause(p->v); } zap_plist(p); zap_formula(f); /* The following causes Skolem symbol numbering to restart at 1 for the next clause. */ skolem_reset(); f = read_formula(stdin, stderr); } exit(0); } /* main */ ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/old/latgen.c ================================================ #include "../ladr/header.h" #include "../ladr/ioutil.h" #include "../ladr/commands.h" #include "../ladr/mindex.h" #include "../ladr/demod.h" #include "../ladr/interp.h" #define PROGRAM_NAME "latgen" #define PROGRAM_VERSION "2004-F" #define PROGRAM_DATE "Aug 2004" /* Flag IDs */ #define VERBOSE 0 /* Global vars */ static int Meet_sym, Join_sym; static Term procterm(Term t, Mindex idx) { Ilist just = NULL; ac_canonical(t, -1); t = demodulate(t, idx, &just); zap_ilist(just); if (is_term(t, "junk", 0)) { zap_term(t); return NULL; } else return t; } /* procterm */ static Plist gen_terms(Mindex idx, int max) { Plist usable, sos; usable = NULL; sos = NULL; /* sos = plist_append(sos, get_rigid_term("u", 0)); */ sos = plist_append(sos, get_rigid_term("z", 0)); sos = plist_append(sos, get_rigid_term("y", 0)); sos = plist_append(sos, get_rigid_term("x", 0)); while (sos) { Plist p = sos; Term s = p->v; sos = sos->next; free_plist(p); for (p = usable; p; p = p->next) { Term u = p->v; if (symbol_count(s) + symbol_count(u) + 1 <= max) { Term new; new = procterm(build_binary_term(Meet_sym, copy_term(s), copy_term(u)), idx); if (new) sos = plist_prepend(sos, new); new = procterm(build_binary_term(Join_sym, copy_term(s), copy_term(u)), idx); if (new) sos = plist_prepend(sos, new); } } usable = plist_prepend(usable, s); } return usable; } /* gen_terms */ static Term variablize(Term t) { if (CONSTANT(t)) { if (is_term(t, "x", 0)) { zap_term(t); t = get_variable_term(0); t->private_flags = 1; } else if (is_term(t, "y", 0)){ zap_term(t); t = get_variable_term(1); t->private_flags = 2; } else if (is_term(t, "z", 0)){ zap_term(t); t = get_variable_term(2); t->private_flags = 4; } else if (is_term(t, "u", 0)){ zap_term(t); t = get_variable_term(3); t->private_flags = 8; } return t; } else { int i; for (i = 0; i < ARITY(t); i++) { ARG(t,i) = variablize(ARG(t,i)); t->private_flags = t->private_flags | ARG(t,i)->private_flags; } return t; } } /* variablize */ int main(int argc, char **argv) { FILE *head_fp; Clist demodulators; Clist_pos cp; Mindex idx; Term t; int max, generated, ba; Plist lat_terms, top_terms, p, q; Interp interp; declare_standard_parse_types(); translate_neg_equalities(TRUE); init_options(); init_flag(VERBOSE, "verbose", FALSE); max = atoi(argv[2]); head_fp = fopen(argv[1], "r"); if (head_fp == NULL) fatal_error("demodulator file can't be opened for reading"); /* for building terms */ Meet_sym = str_to_sn("m", 2); Join_sym = str_to_sn("j", 2); /* for writing terms */ fast_set_defaults(); t = read_commands(head_fp, stderr, FALSE, KILL_UNKNOWN); if (!is_term(t, "clauses", 1)) fatal_error("clauses(demodulators) not found"); /* Read list of demodulators. */ demodulators = read_clause_list(head_fp, stderr, "demodulators", TRUE); /* Read interpretation. */ t = read_term(head_fp, stderr); /* get first interpretation */ interp = compile_interp(t); zap_term(t); fclose(head_fp); /* AC-canonicalize and index the demodulators. */ idx = mindex_init(DISCRIM, BACKTRACK_UNIF, 0); for (cp = demodulators->first; cp != NULL; cp = cp->next) { /* assume positive equality unit */ Literal lit = cp->c->literals; Term alpha = lit->atom->args[0]; mark_oriented_eq(lit->atom); /* don not check for termination */ if (assoc_comm_symbols()) ac_canonical(lit->atom, -1); mindex_update(idx, alpha, INSERT); } lat_terms = gen_terms(idx, max); #if 0 fwrite_term_list(stdout, lat_terms, "lattice"); #endif top_terms = NULL; for (q = lat_terms; q; q = q->next) { Term t = q->v; t = variablize(t); /* printf("%d: ", t->private_flags); p_term(t); */ if (t->private_flags == 7) top_terms = plist_prepend(top_terms, q->v); } /* printf("lat_terms=%d, top_terms=%d.\n", plist_count(lat_terms), plist_count(top_terms)); */ generated = ba = 0; { Term eq = get_rigid_term("=", 2); Literal lit = new_literal(TRUE, eq); Clause c = get_clause(); append_literal(c, lit); for (p = top_terms; p; p = p->next) { /* top of left side must be join */ Term t = p->v; if (SYMNUM(t) == Join_sym) { for (q = p->next; q; q = q->next) { ARG(eq,0) = p->v; ARG(eq,1) = q->v; generated++; if (eval_clause(c, interp)) { fast_fwrite_term_nl(stdout,eq); ba++; } } } } } fprintf(stdout, "%% latgen %s %s, gen=%d, output=%d, %.2f seconds.\n", argv[1], argv[2], generated, ba, user_time() / 1000.0); } /* main */ ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/old/modelformat.c ================================================ /* Format an interpretation in various ways */ #include "../ladr/top_input.h" #include "../ladr/interp.h" #define PROGRAM_NAME "modelformat" #include "../VERSION_DATE.h" static char Help_string[] = "\nThis program reads a stream containing interpretations in portable format\n" "(from stdin) and takes a command-line argument saying how to print them:\n\n" " portable : one line per operation\n" " portable2 : portable, with binary operations in a square\n" " tabular : as nice tables\n" " raw : similar to portable, but without punctuation\n" " cooked : as terms, e.g., f(0,1)=2\n" " tex : formatted for LaTeX\n" " xml : XML\n\n"; enum {PORTABLE, PORTABLE2, TABULAR, RAW, COOKED, TEX, XML}; /************* * * circ() * *************/ static BOOL circ(char *b, int n, int j, char *str) { int i; for (i = 0; i < n; i++, j++) { if (b[j % n] != str[i]) return FALSE; } return TRUE; } /* circ */ /************* * * read_to_string() * *************/ /* DOCUMENTATION */ /* PUBLIC */ int read_to_string(FILE *fp, char *str) { int n = strlen(str); char *b = calloc(n, 1); BOOL found = FALSE; int i = 0; int c; c = getc(fp); while (c != EOF && !found) { b[i % n] = c; i++; found = circ(b, n, i, str); if (!found) c = getc(fp); } free(b); return c; } /* read_to_string */ int main(int argc, char **argv) { int type, rc; if (string_member("help", argv, argc) || string_member("-help", argv, argc)) { printf("\n%s, version %s, %s\n",PROGRAM_NAME,PROGRAM_VERSION,PROGRAM_DATE); printf("%s", Help_string); exit(1); } else if (string_member("portable", argv, argc)) type = PORTABLE; else if (string_member("portable2", argv, argc)) type = PORTABLE2; else if (string_member("tabular", argv, argc)) type = TABULAR; else if (string_member("raw", argv, argc)) type = RAW; else if (string_member("cooked", argv, argc)) type = COOKED; else if (string_member("tex", argv, argc)) type = TEX; else if (string_member("xml", argv, argc)) type = XML; else { printf("%s", Help_string); exit(1); } init_standard_ladr(); if (type == XML) { printf("\n"); printf("\n\n"); printf("\n\n"); printf("\n\n"); } rc = read_to_string(stdin, "interpretation("); while (rc != EOF) { /* ok, we have an interpretation */ Term t, interp; Interp a; int n; rc = scanf("%d", &n); /* get domain size */ rc = read_to_string(stdin, ","); /* get past comma */ ungetc('(', stdin); /* so that we can read a complete term */ t = read_term(stdin, stderr); interp = build_binary_term(str_to_sn("interpretation", 2), nat_to_term(n), t); a = compile_interp(interp, TRUE); if (type == PORTABLE) fprint_interp(stdout, a); else if (type == PORTABLE2) fprint_interp_2(stdout, a); else if (type == TABULAR) fprint_interp_tabular(stdout, a); else if (type == COOKED) fprint_interp_cooked(stdout, a); else if (type == RAW) fprint_interp_raw(stdout, a); else if (type == TEX) fprint_interp_tex(stdout, a); else if (type == XML) fprint_interp_xml(stdout, a); zap_interp(a); zap_term(interp); rc = read_to_string(stdin, "interpretation("); } if (type == XML) { printf("\n\n"); } exit(0); } /* main */ ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/old/undeny.c ================================================ #include "../ladr/top_input.h" #include "../ladr/clausify.h" #define PROGRAM_NAME "undeny" #include "../VERSION_DATE.h" static char Help_string[] = "\nThis program takes a sequence of clauses and for each negative ground\n" "unit, it outputs the positive form, replacing constants with variables.\n" "\n" "Input is taken from stdin.\n" "\n" "Argument -c says to read commands and a list of clauses (mainly\n" "so you can give 'op' commands); otherwise a simple stream of clauses\n" "is read.\n\n"; /************* * * constants_to_variables() * *************/ static Term constants_to_variables(Term t) { if (VARIABLE(t)) return t; else if (CONSTANT(t)) { /* This is a bit of a shortcut. Use the symnum of the constant as the variable number. This will fail if there are too many consants (> 1000). Assume variables will be renumbered later. */ Term v = get_variable_term(SYMNUM(t)); zap_term(t); return v; } else { int i; for (i = 0; i < ARITY(t); i++) ARG(t,i) = constants_to_variables(ARG(t,i)); return t; } } /* constants_to_variables */ /************* * * undeny_clause() * *************/ static void undeny_clause(Clause c) { /* Replace constants with variables, and negate each literal. */ Literal lit; for (lit = c->literals; lit; lit = lit->next) { lit->atom = constants_to_variables(lit->atom); lit->sign = (lit->sign ? FALSE : TRUE); } renumber_variables(c, MAX_VARS); } /* undeny_clause */ int main(int argc, char **argv) { Clause c; BOOL commands; int i; if (string_member("help", argv, argc) || string_member("-help", argv, argc) || string_member("-h", argv, argc)) { printf("\n%s, version %s, %s\n",PROGRAM_NAME,PROGRAM_VERSION,PROGRAM_DATE); printf("%s", Help_string); exit(1); } commands = string_member("-c", argv, argc); init_standard_ladr(); i = register_attribute("label", STRING_ATTRIBUTE); /* ignore these */ i = register_attribute("answer", TERM_ATTRIBUTE); /* ignore these */ skolem_check(FALSE); /* don't check if Skolem symbols are already in use. */ if (commands) { Term t = read_commands(stdin, stderr, FALSE, KILL_UNKNOWN); if (!(is_term(t, "clauses", 1) || is_term(t, "formulas", 1))) fatal_error("undeny: expecting clauses(...)"); } /* Process each clause on stdin. */ c = read_clause(stdin, stderr); while (c != NULL && (!commands || !end_of_list_clause(c))) { if (unit_clause(c) && negative_clause(c)) undeny_clause(c); fwrite_clause(stdout, c, CL_FORM_BARE); zap_clause(c); c = read_clause(stdin, stderr); } exit(0); } /* main */ ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/olfilter.c ================================================ /* Copyright (C) 2006, 2007 William McCune This file is part of the LADR Deduction Library. The LADR Deduction Library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2. The LADR Deduction Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with the LADR Deduction Library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "../ladr/top_input.h" #define PROGRAM_NAME "olfilter" #include "../VERSION_DATE.h" static char Help_string[] = "\nThis program takes a stream of meet/join/complement/0/1/sheffer\n" "equations (from stdin) and writes (to stdout) those that are\n" "ortholattice (OL) identities. Bruns's procedure is used. An optional\n" "argument 'fast' says to read and write the clauses in fastparse form\n" "(e.g., =mxxx.). The base terms can be either constants or variables.\n\n" "Example OL identities (f is Sheffer stroke).\n\n" " ordinary: 'c(x ^ 0) = f(x,c(x v x)).'\n" " fastparse: '=cmx0fxcmxx.' (exactly one per line, without spaces)\n\n" "Another optional argument 'x' says to output the equations that are\n" "*not* OL identities.\n\n" ; /* * Take a stream of equations, and for each, decide if it is an * ortholattice identity. Use the procedure outlined in * * Bruns, Gunter. Free ortholattices. * Canad. J. Math. 28 (1976), no. 5, 977--985. * * I'm not sure this is correct, because there are few things * about the paper I don't understand. */ /* Cache the important symbol numbers to avoid symbol table lookups. */ int Meet_sym; int Join_sym; int Comp_sym; int Zero_sym; int One_sym; int Sheffer_sym; #define MEET_TERM(t) (SYMNUM(t) == Meet_sym) #define JOIN_TERM(t) (SYMNUM(t) == Join_sym) #define COMPLEMENT_TERM(t) (SYMNUM(t) == Comp_sym) #define ZERO_TERM(t) (SYMNUM(t) == Zero_sym) #define ONE_TERM(t) (SYMNUM(t) == One_sym) #define SHEFFER_TERM(t) (SYMNUM(t) == Sheffer_sym) /************* * * complement() - complement a term. * * This is a destructive operation. That is, if you call it as * a = complement(b), then you should never again refer to b. * So a good way to call it is b = complement(b). * *************/ static Term complement(Term t) { return build_unary_term(Comp_sym, t); } /* complement */ /************* * * neg_norm_form(t) - destructively transform t. * * Negation normal form (NNF). * * Apply the following rules as much as possible (sound for OL). * c(x ^ y) -> c(x) v c(y) * c(x v y) -> c(x) ^ c(y) * c(c(x)) -> x * c(0) -> 1 * c(1) -> 0 * * The Bruns paper doesn't say anything about this, but parts * of it seem to assume that all complements are applied to * simple terms. So we'll use this to make it so. * *************/ static Term neg_norm_form(Term t) { if (VARIABLE(t) || (CONSTANT(t))) return t; else if (JOIN_TERM(t) || MEET_TERM(t)) { ARG(t,0) = neg_norm_form(ARG(t,0)); ARG(t,1) = neg_norm_form(ARG(t,1)); return t; } else if (COMPLEMENT_TERM(t)) { Term s = ARG(t,0); if (ZERO_TERM(s) || ONE_TERM(s)) { zap_term(t); return get_rigid_term_dangerously(ZERO_TERM(s) ? One_sym : Zero_sym, 0); } else if (VARIABLE(s) || CONSTANT(s)) return t; else if (COMPLEMENT_TERM(s)) { Term a = ARG(s,0); free_term(t); free_term(s); return neg_norm_form(a); } else if (MEET_TERM(s) || JOIN_TERM(s)) { int dual_sym = MEET_TERM(s) ? Join_sym : Meet_sym; Term a0 = ARG(s,0); Term a1 = ARG(s,1); free_term(t); free_term(s); return build_binary_term(dual_sym, neg_norm_form(build_unary_term(Comp_sym, a0)), neg_norm_form(build_unary_term(Comp_sym, a1))); } else { fatal_error("neg_norm_form: bad term"); return NULL; } } else { fatal_error("neg_norm_form: bad term"); return NULL; } } /* neg_norm_form */ /************* * * simplify_01(t) - destructively transform t. * * Get rid of 0 and 1 by the ordinary rules * (unless, of course, the top is 0 or 1). * *************/ static Term simplify_01(Term t) { if (VARIABLE(t) || (CONSTANT(t))) return t; else if (COMPLEMENT_TERM(t)) { Term s0; ARG(t, 0) = simplify_01(ARG(t,0)); s0 = ARG(t, 0); if (ONE_TERM(s0)) { zap_term(t); return get_rigid_term_dangerously(Zero_sym, 0); } else if (ZERO_TERM(s0)) { zap_term(t); return get_rigid_term_dangerously(One_sym, 0); } else return t; } else if (JOIN_TERM(t) || MEET_TERM(t)) { Term s0, s1; ARG(t, 0) = simplify_01(ARG(t,0)); ARG(t, 1) = simplify_01(ARG(t,1)); s0 = ARG(t, 0); s1 = ARG(t, 1); if (MEET_TERM(t) && (ZERO_TERM(s0) || ZERO_TERM(s1))) { zap_term(t); return get_rigid_term_dangerously(Zero_sym, 0); } else if (JOIN_TERM(t) && (ONE_TERM(s0) || ONE_TERM(s1))) { zap_term(t); return get_rigid_term_dangerously(One_sym, 0); } else if ((JOIN_TERM(t) && ZERO_TERM(s0)) || (MEET_TERM(t) && ONE_TERM(s0))) { free_term(t); /* frees top node only */ zap_term(s0); /* frees entire term */ return s1; } else if ((JOIN_TERM(t) && ZERO_TERM(s1)) || (MEET_TERM(t) && ONE_TERM(s1))) { free_term(t); zap_term(s1); return s0; } else return t; } else return t; } /* simplify_01 */ /************* * * ol_leq() * *************/ /* DOCUMENTATION Given OL terms S and T, which have already been preprocessed by the beta() operation, this routine checks if S <= T. It is assumed that S and T are in terms of operations \{meet,join,complement,0,1\}.

This is an extension of Whitman's procedure for lattice theory, and it should work also as a decision procedure for LT {meet,join} terms.

Solutions to subproblems are not cached, so the behavior of this implementation can be exponential. */ BOOL ol_leq(Term s, Term t) { BOOL result; if (VARIABLE(s) && (VARIABLE(t))) result = (VARNUM(s) == VARNUM(t)); else if (ZERO_TERM(s)) result = TRUE; else if (ONE_TERM(t)) result = TRUE; #if 0 else if (ZERO_TERM(t)) result = FALSE; else if (ONE_TERM(s)) result = FALSE; #endif else if (CONSTANT(s) && (CONSTANT(t))) result = (SYMNUM(s) == SYMNUM(t)); else if (JOIN_TERM(s)) result = (ol_leq(ARG(s,0), t) && ol_leq(ARG(s,1), t)); else if (MEET_TERM(t)) result = (ol_leq(s, ARG(t,0)) && ol_leq(s, ARG(t,1))); else if (MEET_TERM(s) && JOIN_TERM(t)) result = (ol_leq(s, ARG(t,0)) || ol_leq(s, ARG(t,1)) || ol_leq(ARG(s,0), t) || ol_leq(ARG(s,1), t)); else if (JOIN_TERM(t)) result = (ol_leq(s, ARG(t,0)) || ol_leq(s, ARG(t,1))); else if (MEET_TERM(s)) result = (ol_leq(ARG(s,0), t) || ol_leq(ARG(s,1), t)); else if (COMPLEMENT_TERM(s) && COMPLEMENT_TERM(t)) result = term_ident(ARG(s,0), ARG(t,0)); else result = FALSE; #if 0 printf("ol_leq %d: ", result); fwrite_term(stdout, s); printf(" --- "); fwrite_term_nl(stdout, t); #endif return result; } /* ol_leq */ /************* * * reduced_join(t) * *************/ static BOOL reduced_join(Term a, Term t) { Term ca = neg_norm_form(complement(copy_term(a))); BOOL ok = !ol_leq(ca, t); zap_term(ca); return ok; } /* reduced_join */ /************* * * reduced_meet(t) * *************/ static BOOL reduced_meet(Term a, Term t) { Term ca = neg_norm_form(complement(copy_term(a))); BOOL ok = !ol_leq(t, ca); zap_term(ca); return ok; } /* reduced_meet */ /************* * * reduced(t) * * As in the Bruns paper, page 979. * *************/ static BOOL reduced(Term t) { BOOL result = TRUE; if (VARIABLE(t) || (CONSTANT(t))) result = TRUE; else if (COMPLEMENT_TERM(t)) { if (VARIABLE(ARG(t,0)) || (CONSTANT(ARG(t,0)))) result = TRUE; else fatal_error("reduced gets complemented complex term"); } else if (JOIN_TERM(t)) result = (reduced(ARG(t,0)) && reduced(ARG(t,1)) && reduced_join(ARG(t,0), t) && reduced_join(ARG(t,1), t)); else if (MEET_TERM(t)) result = (reduced(ARG(t,0)) && reduced(ARG(t,1)) && reduced_meet(ARG(t,0), t) && reduced_meet(ARG(t,1), t)); else fatal_error("reduced gets unrecognized term"); #if 0 printf("reduced=%d: ", result); fwrite_term_nl(stdout, t); #endif return result; } /* reduced */ /************* * * beta(t) -- destructively transform t. * * As in the Bruns paper, page 980. * *************/ static Term beta(Term t) { if (JOIN_TERM(t)) { Term a0, a1; ARG(t,0) = simplify_01(beta(ARG(t,0))); ARG(t,1) = simplify_01(beta(ARG(t,1))); a0 = ARG(t,0); a1 = ARG(t,1); if (reduced(t) || ZERO_TERM(a0) || ZERO_TERM(a1)) return t; else { zap_term(t); return get_rigid_term_dangerously(One_sym, 0); } } else if (MEET_TERM(t)) { Term a0, a1; ARG(t,0) = simplify_01(beta(ARG(t,0))); ARG(t,1) = simplify_01(beta(ARG(t,1))); a0 = ARG(t,0); a1 = ARG(t,1); if (reduced(t) || ONE_TERM(a0) || ONE_TERM(a1)) return t; else { zap_term(t); return get_rigid_term_dangerously(Zero_sym, 0); } } else return t; } /* beta */ /************* * * ol_identity() * * Given an equality, check if it is an ortholattice (OL) identity. * *************/ BOOL ol_identity(Term equality) { if (equality == NULL || !is_symbol(SYMNUM(equality), "=", 2)) return FALSE; else { Term b0 = beta(simplify_01(neg_norm_form(copy_term(ARG(equality,0))))); Term b1 = beta(simplify_01(neg_norm_form(copy_term(ARG(equality,1))))); BOOL ok1 = ol_leq(b0, b1); BOOL ok2 = ol_leq(b1, b0); BOOL ok = ok1 && ok2; #if 0 printf("-----------------\n"); printf(" "); fwrite_term_nl(stdout, equality); printf("b0: "); fwrite_term_nl(stdout, b0); printf("b1: "); fwrite_term_nl(stdout, b1); printf("b0-le=%d, b1-le=%d\n", ok1, ok2); #endif zap_term(b0); zap_term(b1); return ok; } } /* ol_identity */ /************* * * expand_defs() - expand definitions. * * This is not destructive. It creates an entirely new copy. * *************/ static Term expand_defs(Term t) { if (SHEFFER_TERM(t)) { Term a0 = expand_defs(ARG(t,0)); Term a1 = expand_defs(ARG(t,1)); return build_binary_term(Join_sym, build_unary_term(Comp_sym, a0), build_unary_term(Comp_sym, a1)); } else if VARIABLE(t) return copy_term(t); else { int i; Term s = get_rigid_term_like(t); for (i = 0; i < ARITY(t); i++) ARG(s,i) = expand_defs(ARG(t,i)); return s; } } /* expand_defs */ /************* * * main() * *************/ int main(int argc, char **argv) { Term t; unsigned long int checked = 0; unsigned long int passed = 0; BOOL fast_parse; BOOL output_non_identities; if (string_member("help", argv, argc) || string_member("-help", argv, argc)) { printf("\n%s, version %s, %s\n",PROGRAM_NAME,PROGRAM_VERSION,PROGRAM_DATE); printf("%s", Help_string); exit(1); } fast_parse = string_member("fast", argv, argc); output_non_identities = string_member("x", argv, argc); /* Assume stdin contains equality units. Note that if we're not using fastparse, we use read_term which does not "set_variables"; that is, the terms that you expect to be variables are still constants. That's okay, because the ol identity checker doesn't care whether the "base" terms are constants, variables, or mixed. */ if (fast_parse) { /* Declare the symbols for fastparse. */ fast_set_defaults(); /* Cache symbol IDs. */ Meet_sym = str_to_sn("m", 2); Join_sym = str_to_sn("j", 2); Comp_sym = str_to_sn("c", 1); Zero_sym = str_to_sn("0", 0); One_sym = str_to_sn("1", 0); Sheffer_sym = str_to_sn("f", 2); } else { init_standard_ladr(); /* Cache symbol IDs. */ Meet_sym = str_to_sn("^", 2); Join_sym = str_to_sn("v", 2); Comp_sym = str_to_sn("c", 1); Zero_sym = str_to_sn("0", 0); One_sym = str_to_sn("1", 0); Sheffer_sym = str_to_sn("f", 2); } /* Read the first equation. */ t = term_reader(fast_parse); while (t != NULL) { Term expanded = expand_defs(t); BOOL ident = ol_identity(expanded); checked++; if ((!output_non_identities && ident) || (output_non_identities && !ident)) { passed++; term_writer(t, fast_parse); } zap_term(t); zap_term(expanded); t = term_reader(fast_parse); } printf("%% olfilter%s: checked %lu, passed %lu, user %.2f, system %.2f.\n", output_non_identities ? " x" : "", checked, passed, user_seconds(), system_seconds()); #if 0 p_term_mem(); #endif exit(0); } /* main */ ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/perm3.c ================================================ /* Copyright (C) 2006, 2007 William McCune This file is part of the LADR Deduction Library. The LADR Deduction Library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2. The LADR Deduction Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with the LADR Deduction Library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "../ladr/top_input.h" #define PROGRAM_NAME "perm3" #include "../VERSION_DATE.h" static char Help_string[] = "\nThis program ... \n"; static BOOL Debug = TRUE; /************* * * perm3_term() * *************/ static Term perm3_term(Term t, int *p) { if (ARITY(t) == 3) { Term alpha = ARG(t,0); Term beta = ARG(t,1); Term gamma = ARG(t,2); ARG(t,p[0]) = perm3_term(alpha, p); ARG(t,p[1]) = perm3_term(beta, p); ARG(t,p[2]) = perm3_term(gamma, p); } return t; } /* perm3_term */ /************* * * perm3() * *************/ static Topform perm3(Topform c, int *p) { Topform m = copy_clause(c); Term atom = m->literals->atom; ARG(atom,0) = perm3_term(ARG(atom, 0), p); ARG(atom,1) = perm3_term(ARG(atom, 1), p); renumber_variables(m, MAX_VARS); return m; } /* perm3 */ /************* * * contains_perm3() * *************/ static BOOL contains_perm3(Topform c, Plist kept) { int p[3]; Topform p1, p2, p3, p4, p5, p6; Plist a; BOOL found; p[0] = 0; p[1] = 1; p[2] = 2; p1 = perm3(c, p); p[0] = 0; p[1] = 2; p[2] = 1; p2 = perm3(c, p); p[0] = 1; p[1] = 0; p[2] = 2; p3 = perm3(c, p); p[0] = 1; p[1] = 2; p[2] = 0; p4 = perm3(c, p); p[0] = 2; p[1] = 0; p[2] = 1; p5 = perm3(c, p); p[0] = 2; p[1] = 1; p[2] = 0; p6 = perm3(c, p); if (Debug) { printf("\ntesting: "); f_clause(c); printf("p1: "); f_clause(p1); printf("p2: "); f_clause(p2); printf("p3: "); f_clause(p3); printf("p4: "); f_clause(p4); printf("p5: "); f_clause(p5); printf("p6: "); f_clause(p6); } for (a = kept, found = FALSE; a && !found; a = a->next) { Topform k = a->v; if (clause_ident(k->literals, p1->literals) || clause_ident(k->literals, p2->literals) || clause_ident(k->literals, p3->literals) || clause_ident(k->literals, p4->literals) || clause_ident(k->literals, p5->literals) || clause_ident(k->literals, p6->literals)) found = TRUE; } delete_clause(p1); delete_clause(p2); delete_clause(p3); delete_clause(p4); delete_clause(p5); delete_clause(p6); return found; } /* contains_perm3 */ int main(int argc, char **argv) { Topform c; int i; int number_read = 0; int number_kept = 0; Plist kept = NULL; if (string_member("help", argv, argc) || string_member("-help", argv, argc)) { printf("\n%s, version %s, %s\n",PROGRAM_NAME,PROGRAM_VERSION,PROGRAM_DATE); printf("%s", Help_string); exit(1); } init_standard_ladr(); i = register_attribute("label", STRING_ATTRIBUTE); /* ignore these */ i = register_attribute("answer", TERM_ATTRIBUTE); /* ignore these */ c = read_clause(stdin, stderr); while (c != NULL && !end_of_list_clause(c)) { number_read++; if (!contains_perm3(c, kept)) { number_kept++; kept = plist_prepend(kept, c); fwrite_clause(stdout, c, CL_FORM_BARE); } c = read_clause(stdin, stderr); } printf("%% perm3: %d read, %d kept, %.2f seconds.\n", number_read, number_kept, user_seconds()); exit(0); } /* main */ ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/problems ================================================ BA1.result:The result of the check is (NIL). BA2.result:The result of the check is (NIL). H27d.result:The result of the check is (NIL). H42.result:The result of the check is (NIL). H49.result:The result of the check is (NIL). H65d.result:The result of the check is (NIL). H78b.result:The result of the check is (NIL). H7b.result:The result of the check is (NIL). MOL-A.result:The result of the check is (NIL). MOL-M.result:The result of the check is (NIL). na-ring-1.result:The result of the check is (NIL). na-ring-3.result:The result of the check is (NIL). qg1.result:The result of the check is (NIL). x3-ring.result:The result of the check is (NIL). ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/proof3.dtd ================================================ ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/proof3.xsl ================================================

Prover9 Job

  
  

This page was generated from file .

Number of proofs here: .


Proof

  
  
| | | | # [ , ] ================================================ FILE: models/symbolic_solvers/Prover9/apps.src/prooftrans.c ================================================ /* Copyright (C) 2006, 2007 William McCune This file is part of the LADR Deduction Library. The LADR Deduction Library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2. The LADR Deduction Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with the LADR Deduction Library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Transform and format proofs in various ways. */ #include "../ladr/top_input.h" #include "../ladr/xproofs.h" #include "../ladr/ivy.h" #include "../ladr/banner.h" #define PROGRAM_NAME "prooftrans" #include "../VERSION_DATE.h" static char Help_string[] = "\nprooftrans [expand] [renumber] [striplabels] [-f ]\n" "prooftrans parents_only [expand] [renumber] [striplabels] [-f ]\n" "prooftrans xml [expand] [renumber] [striplabels] [-f ]\n" "prooftrans ivy [renumber] [-f ]\n" "prooftrans hints [-label